ERC-721
Overview
Max Total Supply
1,312 BRats
Holders
59
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
1 BRatsLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
BassmentRatsNFT
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-02-01 */ pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT /*** * ____________ ____________ _______ ______________________ * /_ \_____ \/_ \_____ \ \ \ \_ _____/\__ ___/ * | | _(__ < | |/ ____/ / | \ | __) | | * | |/ \| / \ / | \| \ | | * |___/______ /|___\_______ \ \____|__ /\___ / |____| * \/ \/ \/ \/ * _________ .__ .__ __ ._____. .__ * \_ ___ \ ____ | | | | ____ _____/ |_|__\_ |__ | | ____ ______ * / \ \/ / _ \| | | | _/ __ \_/ ___\ __\ || __ \| | _/ __ \ / ___/ * \ \___( <_> ) |_| |_\ ___/\ \___| | | || \_\ \ |_\ ___/ \___ \ * \______ /\____/|____/____/\___ >\___ >__| |__||___ /____/\___ >____ > * \/ \/ \/ \/ \/ \/ **/ // Bassment Rats ERC721 Edition // 1312 - All Cats Are Bastards /*** * 1312ats straight from the bassment into the streets of ghetto and on a rocket to the metaverse. * There are 1312 Bassment Rats (BRats). All of them are designed & created by @bassmentrats. * From the 1312 BRats, 13 of them are notoriously rare, 12 of them are notoriously legendary and * 1287 are notoriously unique by being randomly generated according to the rarity weight of their traits * creating huge variation of uniqueness of each BRat respectavely. * * All Bassment Rats Are Unique and A.C.A.B. Certified. * * https://www.instagram.com/bassmentrats * https://twitter.com/bassmentrats * https://twitter.com/BassmentRatsNFT * * Thanks for all the support ! * Peace and love <3 **/ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) /** * @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: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) /** * @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/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) /** * @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 { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || 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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) /** * @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/BassmentRatsCollectibles.sol 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 _totalSupply; /// Instanciate the contract /// @param totalSupply_ how many tokens this collection should hold constructor (uint256 totalSupply_) { _totalSupply = totalSupply_; } /// @dev Get the max Supply /// @return the maximum token count function MaxSupply() public view returns (uint256) { return _totalSupply; } /// @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"); _; } } 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 _totalSupply how many tokens this collection should hold /// @param _startFrom the tokenID with which to start counting constructor (uint256 _totalSupply, uint256 _startFrom) WithLimitedSupply(_totalSupply) { 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; } } contract BassmentRatsNFT is ERC721Enumerable, Ownable { using Strings for uint256; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public constant MAX_SUPPLY = 1312; uint256 public constant MAX_MINT_PER_TX = 13; uint256 public constant FIXED_COST = 25 ether; // Fixed mint price bool public paused = false; bool public revealed = false; address public constant PAYOUT_ADDRESS = 0x7eA594921E1174CED1dc6A11B44131C51E4237af; constructor() ERC721("Bassment Rats", "BRats") { hiddenMetadataUri = "ipfs://QmNubF41npQcSjJDkUJ1fmrp3kNEQ9dptSYNfL71cmU4xx/shady.json"; // Owner mints initial 45 for the team (free) for (uint256 i = 1; i <= 45; i++) { _safeMint(msg.sender, i); } } function mint(address _to, uint256 _mintAmount) external payable { require(!paused, "Minting is paused"); require(_mintAmount > 0, "Must mint at least 1 NFT"); require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds max supply"); // Owner can mint for free if (msg.sender != owner()) { require(_mintAmount <= MAX_MINT_PER_TX, "Exceeds max mint per transaction"); require(msg.value >= FIXED_COST * _mintAmount, "Insufficient funds"); } for (uint256 i = 0; i < _mintAmount; i++) { uint256 tokenId = totalSupply() + 1; _safeMint(_to, tokenId); } } function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i = 0; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (!revealed) { return hiddenMetadataUri; } return string(abi.encodePacked(uriPrefix, _tokenId.toString(), uriSuffix)); } // Admin functions function setRevealed(bool _state) external onlyOwner { revealed = _state; } function setPaused(bool _state) external onlyOwner { paused = _state; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) external onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) external onlyOwner { uriSuffix = _uriSuffix; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "No funds to withdraw"); (bool success, ) = payable(PAYOUT_ADDRESS).call{value: balance}(""); require(success, "Withdraw failed"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FIXED_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYOUT_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405260006080908152600b90610018908261080e565b50604080518082019091526005815264173539b7b760d91b6020820152600c90610042908261080e565b50600e805461ffff1916905534801561005a57600080fd5b506040518060400160405280600d81526020016c426173736d656e74205261747360981b81525060405180604001604052806005815260200164425261747360d81b81525081600090816100ae919061080e565b5060016100bb828261080e565b5050506100d46100cf61012860201b60201c565b61012c565b604051806060016040528060408152602001612f9860409139600d906100fa908261080e565b5060015b602d811161012257610110338261017e565b8061011a816108e2565b9150506100fe565b506109f5565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61019e8282604051806020016040528060008152506101a260201b60201c565b5050565b6101ac8383610218565b6101b96000848484610366565b6102135760405162461bcd60e51b81526020600482015260326024820152600080516020612f7883398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b03821661026e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161020a565b6000818152600260205260409020546001600160a01b0316156102d35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161020a565b6102df600083836104a1565b6001600160a01b03821660009081526003602052604081208054600192906103089084906108fb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561049557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906103aa903390899088908890600401610914565b6020604051808303816000875af19250505080156103e5575060408051601f3d908101601f191682019092526103e291810190610985565b60015b61047b573d808015610413576040519150601f19603f3d011682016040523d82523d6000602084013e610418565b606091505b5080516000036104735760405162461bcd60e51b81526020600482015260326024820152600080516020612f7883398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161020a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610499565b5060015b949350505050565b6001600160a01b0383166104fc576104f781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61051f565b816001600160a01b0316836001600160a01b03161461051f5761051f8382610559565b6001600160a01b03821661053657610213816105f6565b826001600160a01b0316826001600160a01b0316146102135761021382826106a5565b60006001610566846106e9565b61057091906109b6565b6000838152600760205260409020549091508082146105c3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090610608906001906109b6565b60008381526009602052604081205460088054939450909284908110610630576106306109c9565b906000526020600020015490508060088381548110610651576106516109c9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480610689576106896109df565b6001900381819060005260206000200160009055905550505050565b60006106b0836106e9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b0382166107545760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161020a565b506001600160a01b031660009081526003602052604090205490565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168061079a57607f821691505b6020821081036107ba57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561021357806000526020600020601f840160051c810160208510156107e75750805b601f840160051c820191505b8181101561080757600081556001016107f3565b5050505050565b81516001600160401b0381111561082757610827610770565b61083b816108358454610786565b846107c0565b6020601f82116001811461086f57600083156108575750848201515b600019600385901b1c1916600184901b178455610807565b600084815260208120601f198516915b8281101561089f578785015182556020948501946001909201910161087f565b50848210156108bd5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000600182016108f4576108f46108cc565b5060010190565b8082018082111561090e5761090e6108cc565b92915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190528251908201819052600090815b8181101561096257602081860181015160a0868401015201610945565b50600060a0828501015260a0601f19601f83011684010191505095945050505050565b60006020828403121561099757600080fd5b81516001600160e01b0319811681146109af57600080fd5b9392505050565b8181038181111561090e5761090e6108cc565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b61257480610a046000396000f3fe60806040526004361061020f5760003560e01c80635c975abb1161011857806395d89b41116100a0578063bc2038c61161006f578063bc2038c6146105c1578063c87b56dd146105e9578063e0a8085314610609578063e985e9c514610629578063f2fde38b1461067257600080fd5b806395d89b4114610557578063a22cb4651461056c578063a45ba8e71461058c578063b88d4fde146105a157600080fd5b806370a08231116100e757806370a08231146104cf578063715018a6146104ef5780637ec4a659146105045780638da5cb5b146105245780638ecad7211461054257600080fd5b80635c975abb1461046357806362b99ad41461047d5780636352211e146104925780636f76ae84146104b257600080fd5b806332cb6b0c1161019b578063438b63001161016a578063438b6300146103c25780634f6ccce7146103ef5780634fdd43cb1461040f578063518302271461042f5780635503a0e81461044e57600080fd5b806332cb6b0c146103645780633ccfd60b1461037a57806340c10f191461038f57806342842e0e146103a257600080fd5b806316ba10e0116101e257806316ba10e0146102c557806316c38b3c146102e557806318160ddd1461030557806323b872dd146103245780632f745c591461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611dec565b610692565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106bd565b6040516102409190611e60565b34801561027757600080fd5b5061028b610286366004611e73565b61074f565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611ea8565b6107e9565b005b3480156102d157600080fd5b506102c36102e0366004611f62565b6108fe565b3480156102f157600080fd5b506102c3610300366004611fbb565b610938565b34801561031157600080fd5b506008545b604051908152602001610240565b34801561033057600080fd5b506102c361033f366004611fd6565b610975565b34801561035057600080fd5b5061031661035f366004611ea8565b6109a6565b34801561037057600080fd5b5061031661052081565b34801561038657600080fd5b506102c3610a3c565b6102c361039d366004611ea8565b610b49565b3480156103ae57600080fd5b506102c36103bd366004611fd6565b610d2a565b3480156103ce57600080fd5b506103e26103dd366004612013565b610d45565b604051610240919061202e565b3480156103fb57600080fd5b5061031661040a366004611e73565b610ddd565b34801561041b57600080fd5b506102c361042a366004611f62565b610e70565b34801561043b57600080fd5b50600e5461023490610100900460ff1681565b34801561045a57600080fd5b5061025e610ea6565b34801561046f57600080fd5b50600e546102349060ff1681565b34801561048957600080fd5b5061025e610f34565b34801561049e57600080fd5b5061028b6104ad366004611e73565b610f41565b3480156104be57600080fd5b5061031668015af1d78b58c4000081565b3480156104db57600080fd5b506103166104ea366004612013565b610fb8565b3480156104fb57600080fd5b506102c361103f565b34801561051057600080fd5b506102c361051f366004611f62565b611075565b34801561053057600080fd5b50600a546001600160a01b031661028b565b34801561054e57600080fd5b50610316600d81565b34801561056357600080fd5b5061025e6110ab565b34801561057857600080fd5b506102c3610587366004612071565b6110ba565b34801561059857600080fd5b5061025e6110c5565b3480156105ad57600080fd5b506102c36105bc3660046120a4565b6110d2565b3480156105cd57600080fd5b5061028b737ea594921e1174ced1dc6a11b44131c51e4237af81565b3480156105f557600080fd5b5061025e610604366004611e73565b61110a565b34801561061557600080fd5b506102c3610624366004611fbb565b61125f565b34801561063557600080fd5b50610234610644366004612120565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067e57600080fd5b506102c361068d366004612013565b6112a3565b60006001600160e01b0319821663780e9d6360e01b14806106b757506106b78261133e565b92915050565b6060600080546106cc9061214a565b80601f01602080910402602001604051908101604052809291908181526020018280546106f89061214a565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107cd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107f482610f41565b9050806001600160a01b0316836001600160a01b0316036108615760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c4565b336001600160a01b038216148061087d575061087d8133610644565b6108ef5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c4565b6108f9838361138e565b505050565b600a546001600160a01b031633146109285760405162461bcd60e51b81526004016107c490612184565b600c6109348282612207565b5050565b600a546001600160a01b031633146109625760405162461bcd60e51b81526004016107c490612184565b600e805460ff1916911515919091179055565b61097f33826113fc565b61099b5760405162461bcd60e51b81526004016107c4906122c6565b6108f98383836114f3565b60006109b183610fb8565b8210610a135760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107c4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a665760405162461bcd60e51b81526004016107c490612184565b4780610aab5760405162461bcd60e51b81526020600482015260146024820152734e6f2066756e647320746f20776974686472617760601b60448201526064016107c4565b604051600090737ea594921e1174ced1dc6a11b44131c51e4237af9083908381818185875af1925050503d8060008114610b01576040519150601f19603f3d011682016040523d82523d6000602084013e610b06565b606091505b50509050806109345760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b60448201526064016107c4565b600e5460ff1615610b905760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b60448201526064016107c4565b60008111610be05760405162461bcd60e51b815260206004820152601860248201527f4d757374206d696e74206174206c656173742031204e4654000000000000000060448201526064016107c4565b61052081610bed60085490565b610bf7919061232d565b1115610c3a5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107c4565b600a546001600160a01b03163314610cf457600d811115610c9d5760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d6178206d696e7420706572207472616e73616374696f6e60448201526064016107c4565b610cb08168015af1d78b58c40000612340565b341015610cf45760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016107c4565b60005b818110156108f9576000610d0a60085490565b610d1590600161232d565b9050610d21848261169e565b50600101610cf7565b6108f9838383604051806020016040528060008152506110d2565b60606000610d5283610fb8565b905060008167ffffffffffffffff811115610d6f57610d6f611ed2565b604051908082528060200260200182016040528015610d98578160200160208202803683370190505b50905060005b82811015610dd557610db085826109a6565b828281518110610dc257610dc2612357565b6020908102919091010152600101610d9e565b509392505050565b6000610de860085490565b8210610e4b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107c4565b60088281548110610e5e57610e5e612357565b90600052602060002001549050919050565b600a546001600160a01b03163314610e9a5760405162461bcd60e51b81526004016107c490612184565b600d6109348282612207565b600c8054610eb39061214a565b80601f0160208091040260200160405190810160405280929190818152602001828054610edf9061214a565b8015610f2c5780601f10610f0157610100808354040283529160200191610f2c565b820191906000526020600020905b815481529060010190602001808311610f0f57829003601f168201915b505050505081565b600b8054610eb39061214a565b6000818152600260205260408120546001600160a01b0316806106b75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c4565b60006001600160a01b0382166110235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110695760405162461bcd60e51b81526004016107c490612184565b61107360006116b8565b565b600a546001600160a01b0316331461109f5760405162461bcd60e51b81526004016107c490612184565b600b6109348282612207565b6060600180546106cc9061214a565b61093433838361170a565b600d8054610eb39061214a565b6110dc33836113fc565b6110f85760405162461bcd60e51b81526004016107c4906122c6565b611104848484846117d8565b50505050565b6000818152600260205260409020546060906001600160a01b03166111895760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c4565b600e54610100900460ff1661122a57600d80546111a59061214a565b80601f01602080910402602001604051908101604052809291908181526020018280546111d19061214a565b801561121e5780601f106111f35761010080835404028352916020019161121e565b820191906000526020600020905b81548152906001019060200180831161120157829003601f168201915b50505050509050919050565b600b6112358361180b565b600c604051602001611249939291906123df565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146112895760405162461bcd60e51b81526004016107c490612184565b600e80549115156101000261ff0019909216919091179055565b600a546001600160a01b031633146112cd5760405162461bcd60e51b81526004016107c490612184565b6001600160a01b0381166113325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c4565b61133b816116b8565b50565b60006001600160e01b031982166380ac58cd60e01b148061136f57506001600160e01b03198216635b5e139f60e01b145b806106b757506301ffc9a760e01b6001600160e01b03198316146106b7565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113c382610f41565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c4565b600061148083610f41565b9050806001600160a01b0316846001600160a01b031614806114bb5750836001600160a01b03166114b08461074f565b6001600160a01b0316145b806114eb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661150682610f41565b6001600160a01b03161461156e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c4565b6001600160a01b0382166115d05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c4565b6115db83838361190c565b6115e660008261138e565b6001600160a01b038316600090815260036020526040812080546001929061160f908490612412565b90915550506001600160a01b038216600090815260036020526040812080546001929061163d90849061232d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109348282604051806020016040528060008152506119c4565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03160361176b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117e38484846114f3565b6117ef848484846119f7565b6111045760405162461bcd60e51b81526004016107c490612425565b6060816000036118325750506040805180820190915260018152600360fc1b602082015290565b8160005b811561185c578061184681612477565b91506118559050600a836124a6565b9150611836565b60008167ffffffffffffffff81111561187757611877611ed2565b6040519080825280601f01601f1916602001820160405280156118a1576020820181803683370190505b5090505b84156114eb576118b6600183612412565b91506118c3600a866124ba565b6118ce90603061232d565b60f81b8183815181106118e3576118e3612357565b60200101906001600160f81b031916908160001a905350611905600a866124a6565b94506118a5565b6001600160a01b0383166119675761196281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61198a565b816001600160a01b0316836001600160a01b03161461198a5761198a8382611af8565b6001600160a01b0382166119a1576108f981611b95565b826001600160a01b0316826001600160a01b0316146108f9576108f98282611c44565b6119ce8383611c88565b6119db60008484846119f7565b6108f95760405162461bcd60e51b81526004016107c490612425565b60006001600160a01b0384163b15611aed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a3b9033908990889088906004016124ce565b6020604051808303816000875af1925050508015611a76575060408051601f3d908101601f19168201909252611a739181019061250b565b60015b611ad3573d808015611aa4576040519150601f19603f3d011682016040523d82523d6000602084013e611aa9565b606091505b508051600003611acb5760405162461bcd60e51b81526004016107c490612425565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114eb565b506001949350505050565b60006001611b0584610fb8565b611b0f9190612412565b600083815260076020526040902054909150808214611b62576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ba790600190612412565b60008381526009602052604081205460088054939450909284908110611bcf57611bcf612357565b906000526020600020015490508060088381548110611bf057611bf0612357565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c2857611c28612528565b6001900381819060005260206000200160009055905550505050565b6000611c4f83610fb8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611cde5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c4565b6000818152600260205260409020546001600160a01b031615611d435760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c4565b611d4f6000838361190c565b6001600160a01b0382166000908152600360205260408120805460019290611d7890849061232d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461133b57600080fd5b600060208284031215611dfe57600080fd5b8135611e0981611dd6565b9392505050565b60005b83811015611e2b578181015183820152602001611e13565b50506000910152565b60008151808452611e4c816020860160208601611e10565b601f01601f19169290920160200192915050565b602081526000611e096020830184611e34565b600060208284031215611e8557600080fd5b5035919050565b80356001600160a01b0381168114611ea357600080fd5b919050565b60008060408385031215611ebb57600080fd5b611ec483611e8c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60008067ffffffffffffffff841115611f0357611f03611ed2565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff82111715611f3257611f32611ed2565b604052838152905080828401851015611f4a57600080fd5b83836020830137600060208583010152509392505050565b600060208284031215611f7457600080fd5b813567ffffffffffffffff811115611f8b57600080fd5b8201601f81018413611f9c57600080fd5b6114eb84823560208401611ee8565b80358015158114611ea357600080fd5b600060208284031215611fcd57600080fd5b611e0982611fab565b600080600060608486031215611feb57600080fd5b611ff484611e8c565b925061200260208501611e8c565b929592945050506040919091013590565b60006020828403121561202557600080fd5b611e0982611e8c565b602080825282518282018190526000918401906040840190835b81811015612066578351835260209384019390920191600101612048565b509095945050505050565b6000806040838503121561208457600080fd5b61208d83611e8c565b915061209b60208401611fab565b90509250929050565b600080600080608085870312156120ba57600080fd5b6120c385611e8c565b93506120d160208601611e8c565b925060408501359150606085013567ffffffffffffffff8111156120f457600080fd5b8501601f8101871361210557600080fd5b61211487823560208401611ee8565b91505092959194509250565b6000806040838503121561213357600080fd5b61213c83611e8c565b915061209b60208401611e8c565b600181811c9082168061215e57607f821691505b60208210810361217e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156108f957806000526020600020601f840160051c810160208510156121e05750805b601f840160051c820191505b8181101561220057600081556001016121ec565b5050505050565b815167ffffffffffffffff81111561222157612221611ed2565b6122358161222f845461214a565b846121b9565b6020601f82116001811461226957600083156122515750848201515b600019600385901b1c1916600184901b178455612200565b600084815260208120601f198516915b828110156122995787850151825560209485019460019092019101612279565b50848210156122b75786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156106b7576106b7612317565b80820281158282048414176106b7576106b7612317565b634e487b7160e01b600052603260045260246000fd5b6000815461237a8161214a565b60018216801561239157600181146123a6576123d6565b60ff19831686528115158202860193506123d6565b84600052602060002060005b838110156123ce578154888201526001909101906020016123b2565b505081860193505b50505092915050565b60006123eb828661236d565b84516123fb818360208901611e10565b6124078183018661236d565b979650505050505050565b818103818111156106b7576106b7612317565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006001820161248957612489612317565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124b5576124b5612490565b500490565b6000826124c9576124c9612490565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061250190830184611e34565b9695505050505050565b60006020828403121561251d57600080fd5b8151611e0981611dd6565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b5133265d4b552af520595b9944fd99da12370cc05a0c3bbe962761eca1c630a64736f6c634300081a00334552433732313a207472616e7366657220746f206e6f6e204552433732315265697066733a2f2f516d4e75624634316e705163536a4a446b554a31666d7270336b4e45513964707453594e664c3731636d553478782f73686164792e6a736f6e
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80635c975abb1161011857806395d89b41116100a0578063bc2038c61161006f578063bc2038c6146105c1578063c87b56dd146105e9578063e0a8085314610609578063e985e9c514610629578063f2fde38b1461067257600080fd5b806395d89b4114610557578063a22cb4651461056c578063a45ba8e71461058c578063b88d4fde146105a157600080fd5b806370a08231116100e757806370a08231146104cf578063715018a6146104ef5780637ec4a659146105045780638da5cb5b146105245780638ecad7211461054257600080fd5b80635c975abb1461046357806362b99ad41461047d5780636352211e146104925780636f76ae84146104b257600080fd5b806332cb6b0c1161019b578063438b63001161016a578063438b6300146103c25780634f6ccce7146103ef5780634fdd43cb1461040f578063518302271461042f5780635503a0e81461044e57600080fd5b806332cb6b0c146103645780633ccfd60b1461037a57806340c10f191461038f57806342842e0e146103a257600080fd5b806316ba10e0116101e257806316ba10e0146102c557806316c38b3c146102e557806318160ddd1461030557806323b872dd146103245780632f745c591461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611dec565b610692565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106bd565b6040516102409190611e60565b34801561027757600080fd5b5061028b610286366004611e73565b61074f565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611ea8565b6107e9565b005b3480156102d157600080fd5b506102c36102e0366004611f62565b6108fe565b3480156102f157600080fd5b506102c3610300366004611fbb565b610938565b34801561031157600080fd5b506008545b604051908152602001610240565b34801561033057600080fd5b506102c361033f366004611fd6565b610975565b34801561035057600080fd5b5061031661035f366004611ea8565b6109a6565b34801561037057600080fd5b5061031661052081565b34801561038657600080fd5b506102c3610a3c565b6102c361039d366004611ea8565b610b49565b3480156103ae57600080fd5b506102c36103bd366004611fd6565b610d2a565b3480156103ce57600080fd5b506103e26103dd366004612013565b610d45565b604051610240919061202e565b3480156103fb57600080fd5b5061031661040a366004611e73565b610ddd565b34801561041b57600080fd5b506102c361042a366004611f62565b610e70565b34801561043b57600080fd5b50600e5461023490610100900460ff1681565b34801561045a57600080fd5b5061025e610ea6565b34801561046f57600080fd5b50600e546102349060ff1681565b34801561048957600080fd5b5061025e610f34565b34801561049e57600080fd5b5061028b6104ad366004611e73565b610f41565b3480156104be57600080fd5b5061031668015af1d78b58c4000081565b3480156104db57600080fd5b506103166104ea366004612013565b610fb8565b3480156104fb57600080fd5b506102c361103f565b34801561051057600080fd5b506102c361051f366004611f62565b611075565b34801561053057600080fd5b50600a546001600160a01b031661028b565b34801561054e57600080fd5b50610316600d81565b34801561056357600080fd5b5061025e6110ab565b34801561057857600080fd5b506102c3610587366004612071565b6110ba565b34801561059857600080fd5b5061025e6110c5565b3480156105ad57600080fd5b506102c36105bc3660046120a4565b6110d2565b3480156105cd57600080fd5b5061028b737ea594921e1174ced1dc6a11b44131c51e4237af81565b3480156105f557600080fd5b5061025e610604366004611e73565b61110a565b34801561061557600080fd5b506102c3610624366004611fbb565b61125f565b34801561063557600080fd5b50610234610644366004612120565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067e57600080fd5b506102c361068d366004612013565b6112a3565b60006001600160e01b0319821663780e9d6360e01b14806106b757506106b78261133e565b92915050565b6060600080546106cc9061214a565b80601f01602080910402602001604051908101604052809291908181526020018280546106f89061214a565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107cd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107f482610f41565b9050806001600160a01b0316836001600160a01b0316036108615760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c4565b336001600160a01b038216148061087d575061087d8133610644565b6108ef5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c4565b6108f9838361138e565b505050565b600a546001600160a01b031633146109285760405162461bcd60e51b81526004016107c490612184565b600c6109348282612207565b5050565b600a546001600160a01b031633146109625760405162461bcd60e51b81526004016107c490612184565b600e805460ff1916911515919091179055565b61097f33826113fc565b61099b5760405162461bcd60e51b81526004016107c4906122c6565b6108f98383836114f3565b60006109b183610fb8565b8210610a135760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107c4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a665760405162461bcd60e51b81526004016107c490612184565b4780610aab5760405162461bcd60e51b81526020600482015260146024820152734e6f2066756e647320746f20776974686472617760601b60448201526064016107c4565b604051600090737ea594921e1174ced1dc6a11b44131c51e4237af9083908381818185875af1925050503d8060008114610b01576040519150601f19603f3d011682016040523d82523d6000602084013e610b06565b606091505b50509050806109345760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b60448201526064016107c4565b600e5460ff1615610b905760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b60448201526064016107c4565b60008111610be05760405162461bcd60e51b815260206004820152601860248201527f4d757374206d696e74206174206c656173742031204e4654000000000000000060448201526064016107c4565b61052081610bed60085490565b610bf7919061232d565b1115610c3a5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107c4565b600a546001600160a01b03163314610cf457600d811115610c9d5760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d6178206d696e7420706572207472616e73616374696f6e60448201526064016107c4565b610cb08168015af1d78b58c40000612340565b341015610cf45760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016107c4565b60005b818110156108f9576000610d0a60085490565b610d1590600161232d565b9050610d21848261169e565b50600101610cf7565b6108f9838383604051806020016040528060008152506110d2565b60606000610d5283610fb8565b905060008167ffffffffffffffff811115610d6f57610d6f611ed2565b604051908082528060200260200182016040528015610d98578160200160208202803683370190505b50905060005b82811015610dd557610db085826109a6565b828281518110610dc257610dc2612357565b6020908102919091010152600101610d9e565b509392505050565b6000610de860085490565b8210610e4b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107c4565b60088281548110610e5e57610e5e612357565b90600052602060002001549050919050565b600a546001600160a01b03163314610e9a5760405162461bcd60e51b81526004016107c490612184565b600d6109348282612207565b600c8054610eb39061214a565b80601f0160208091040260200160405190810160405280929190818152602001828054610edf9061214a565b8015610f2c5780601f10610f0157610100808354040283529160200191610f2c565b820191906000526020600020905b815481529060010190602001808311610f0f57829003601f168201915b505050505081565b600b8054610eb39061214a565b6000818152600260205260408120546001600160a01b0316806106b75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c4565b60006001600160a01b0382166110235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110695760405162461bcd60e51b81526004016107c490612184565b61107360006116b8565b565b600a546001600160a01b0316331461109f5760405162461bcd60e51b81526004016107c490612184565b600b6109348282612207565b6060600180546106cc9061214a565b61093433838361170a565b600d8054610eb39061214a565b6110dc33836113fc565b6110f85760405162461bcd60e51b81526004016107c4906122c6565b611104848484846117d8565b50505050565b6000818152600260205260409020546060906001600160a01b03166111895760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c4565b600e54610100900460ff1661122a57600d80546111a59061214a565b80601f01602080910402602001604051908101604052809291908181526020018280546111d19061214a565b801561121e5780601f106111f35761010080835404028352916020019161121e565b820191906000526020600020905b81548152906001019060200180831161120157829003601f168201915b50505050509050919050565b600b6112358361180b565b600c604051602001611249939291906123df565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146112895760405162461bcd60e51b81526004016107c490612184565b600e80549115156101000261ff0019909216919091179055565b600a546001600160a01b031633146112cd5760405162461bcd60e51b81526004016107c490612184565b6001600160a01b0381166113325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c4565b61133b816116b8565b50565b60006001600160e01b031982166380ac58cd60e01b148061136f57506001600160e01b03198216635b5e139f60e01b145b806106b757506301ffc9a760e01b6001600160e01b03198316146106b7565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113c382610f41565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c4565b600061148083610f41565b9050806001600160a01b0316846001600160a01b031614806114bb5750836001600160a01b03166114b08461074f565b6001600160a01b0316145b806114eb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661150682610f41565b6001600160a01b03161461156e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c4565b6001600160a01b0382166115d05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c4565b6115db83838361190c565b6115e660008261138e565b6001600160a01b038316600090815260036020526040812080546001929061160f908490612412565b90915550506001600160a01b038216600090815260036020526040812080546001929061163d90849061232d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109348282604051806020016040528060008152506119c4565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03160361176b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117e38484846114f3565b6117ef848484846119f7565b6111045760405162461bcd60e51b81526004016107c490612425565b6060816000036118325750506040805180820190915260018152600360fc1b602082015290565b8160005b811561185c578061184681612477565b91506118559050600a836124a6565b9150611836565b60008167ffffffffffffffff81111561187757611877611ed2565b6040519080825280601f01601f1916602001820160405280156118a1576020820181803683370190505b5090505b84156114eb576118b6600183612412565b91506118c3600a866124ba565b6118ce90603061232d565b60f81b8183815181106118e3576118e3612357565b60200101906001600160f81b031916908160001a905350611905600a866124a6565b94506118a5565b6001600160a01b0383166119675761196281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61198a565b816001600160a01b0316836001600160a01b03161461198a5761198a8382611af8565b6001600160a01b0382166119a1576108f981611b95565b826001600160a01b0316826001600160a01b0316146108f9576108f98282611c44565b6119ce8383611c88565b6119db60008484846119f7565b6108f95760405162461bcd60e51b81526004016107c490612425565b60006001600160a01b0384163b15611aed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a3b9033908990889088906004016124ce565b6020604051808303816000875af1925050508015611a76575060408051601f3d908101601f19168201909252611a739181019061250b565b60015b611ad3573d808015611aa4576040519150601f19603f3d011682016040523d82523d6000602084013e611aa9565b606091505b508051600003611acb5760405162461bcd60e51b81526004016107c490612425565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114eb565b506001949350505050565b60006001611b0584610fb8565b611b0f9190612412565b600083815260076020526040902054909150808214611b62576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ba790600190612412565b60008381526009602052604081205460088054939450909284908110611bcf57611bcf612357565b906000526020600020015490508060088381548110611bf057611bf0612357565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c2857611c28612528565b6001900381819060005260206000200160009055905550505050565b6000611c4f83610fb8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611cde5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c4565b6000818152600260205260409020546001600160a01b031615611d435760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c4565b611d4f6000838361190c565b6001600160a01b0382166000908152600360205260408120805460019290611d7890849061232d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461133b57600080fd5b600060208284031215611dfe57600080fd5b8135611e0981611dd6565b9392505050565b60005b83811015611e2b578181015183820152602001611e13565b50506000910152565b60008151808452611e4c816020860160208601611e10565b601f01601f19169290920160200192915050565b602081526000611e096020830184611e34565b600060208284031215611e8557600080fd5b5035919050565b80356001600160a01b0381168114611ea357600080fd5b919050565b60008060408385031215611ebb57600080fd5b611ec483611e8c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60008067ffffffffffffffff841115611f0357611f03611ed2565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff82111715611f3257611f32611ed2565b604052838152905080828401851015611f4a57600080fd5b83836020830137600060208583010152509392505050565b600060208284031215611f7457600080fd5b813567ffffffffffffffff811115611f8b57600080fd5b8201601f81018413611f9c57600080fd5b6114eb84823560208401611ee8565b80358015158114611ea357600080fd5b600060208284031215611fcd57600080fd5b611e0982611fab565b600080600060608486031215611feb57600080fd5b611ff484611e8c565b925061200260208501611e8c565b929592945050506040919091013590565b60006020828403121561202557600080fd5b611e0982611e8c565b602080825282518282018190526000918401906040840190835b81811015612066578351835260209384019390920191600101612048565b509095945050505050565b6000806040838503121561208457600080fd5b61208d83611e8c565b915061209b60208401611fab565b90509250929050565b600080600080608085870312156120ba57600080fd5b6120c385611e8c565b93506120d160208601611e8c565b925060408501359150606085013567ffffffffffffffff8111156120f457600080fd5b8501601f8101871361210557600080fd5b61211487823560208401611ee8565b91505092959194509250565b6000806040838503121561213357600080fd5b61213c83611e8c565b915061209b60208401611e8c565b600181811c9082168061215e57607f821691505b60208210810361217e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156108f957806000526020600020601f840160051c810160208510156121e05750805b601f840160051c820191505b8181101561220057600081556001016121ec565b5050505050565b815167ffffffffffffffff81111561222157612221611ed2565b6122358161222f845461214a565b846121b9565b6020601f82116001811461226957600083156122515750848201515b600019600385901b1c1916600184901b178455612200565b600084815260208120601f198516915b828110156122995787850151825560209485019460019092019101612279565b50848210156122b75786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156106b7576106b7612317565b80820281158282048414176106b7576106b7612317565b634e487b7160e01b600052603260045260246000fd5b6000815461237a8161214a565b60018216801561239157600181146123a6576123d6565b60ff19831686528115158202860193506123d6565b84600052602060002060005b838110156123ce578154888201526001909101906020016123b2565b505081860193505b50505092915050565b60006123eb828661236d565b84516123fb818360208901611e10565b6124078183018661236d565b979650505050505050565b818103818111156106b7576106b7612317565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006001820161248957612489612317565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124b5576124b5612490565b500490565b6000826124c9576124c9612490565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061250190830184611e34565b9695505050505050565b60006020828403121561251d57600080fd5b8151611e0981611dd6565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b5133265d4b552af520595b9944fd99da12370cc05a0c3bbe962761eca1c630a64736f6c634300081a0033
Deployed Bytecode Sourcemap
51243:3118:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41208:224;;;;;;;;;;-1:-1:-1;41208:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;41208:224:0;;;;;;;;28733:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30292:221::-;;;;;;;;;;-1:-1:-1;30292:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1743:32:1;;;1725:51;;1713:2;1698:18;30292:221:0;1579:203:1;29815:411:0;;;;;;;;;;-1:-1:-1;29815:411:0;;;;;:::i;:::-;;:::i;:::-;;53964:108;;;;;;;;;;-1:-1:-1;53964:108:0;;;;;:::i;:::-;;:::i;53607:85::-;;;;;;;;;;-1:-1:-1;53607:85:0;;;;;:::i;:::-;;:::i;41848:113::-;;;;;;;;;;-1:-1:-1;41936:10:0;:17;41848:113;;;4075:25:1;;;4063:2;4048:18;41848:113:0;3929:177:1;31042:339:0;;;;;;;;;;-1:-1:-1;31042:339:0;;;;;:::i;:::-;;:::i;41516:256::-;;;;;;;;;;-1:-1:-1;41516:256:0;;;;;:::i;:::-;;:::i;51453:41::-;;;;;;;;;;;;51490:4;51453:41;;54080:278;;;;;;;;;;;;;:::i;52077:681::-;;;;;;:::i;:::-;;:::i;31452:185::-;;;;;;;;;;-1:-1:-1;31452:185:0;;;;;:::i;:::-;;:::i;52766:364::-;;;;;;;;;;-1:-1:-1;52766:364:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42038:233::-;;;;;;;;;;-1:-1:-1;42038:233:0;;;;;:::i;:::-;;:::i;53700:140::-;;;;;;;;;;-1:-1:-1;53700:140:0;;;;;:::i;:::-;;:::i;51660:28::-;;;;;;;;;;-1:-1:-1;51660:28:0;;;;;;;;;;;51373:33;;;;;;;;;;;;;:::i;51627:26::-;;;;;;;;;;-1:-1:-1;51627:26:0;;;;;;;;51338:28;;;;;;;;;;;;;:::i;28427:239::-;;;;;;;;;;-1:-1:-1;28427:239:0;;;;;:::i;:::-;;:::i;51552:45::-;;;;;;;;;;;;51589:8;51552:45;;28157:208;;;;;;;;;;-1:-1:-1;28157:208:0;;;;;:::i;:::-;;:::i;7941:103::-;;;;;;;;;;;;;:::i;53848:108::-;;;;;;;;;;-1:-1:-1;53848:108:0;;;;;:::i;:::-;;:::i;7290:87::-;;;;;;;;;;-1:-1:-1;7363:6:0;;-1:-1:-1;;;;;7363:6:0;7290:87;;51501:44;;;;;;;;;;;;51543:2;51501:44;;28902:104;;;;;;;;;;;;;:::i;30585:155::-;;;;;;;;;;-1:-1:-1;30585:155:0;;;;;:::i;:::-;;:::i;51413:31::-;;;;;;;;;;;;;:::i;31708:328::-;;;;;;;;;;-1:-1:-1;31708:328:0;;;;;:::i;:::-;;:::i;51697:83::-;;;;;;;;;;;;51738:42;51697:83;;53138:340;;;;;;;;;;-1:-1:-1;53138:340:0;;;;;:::i;:::-;;:::i;53510:89::-;;;;;;;;;;-1:-1:-1;53510:89:0;;;;;:::i;:::-;;:::i;30811:164::-;;;;;;;;;;-1:-1:-1;30811:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30932:25:0;;;30908:4;30932:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30811:164;8199:201;;;;;;;;;;-1:-1:-1;8199:201:0;;;;;:::i;:::-;;:::i;41208:224::-;41310:4;-1:-1:-1;;;;;;41334:50:0;;-1:-1:-1;;;41334:50:0;;:90;;;41388:36;41412:11;41388:23;:36::i;:::-;41327:97;41208:224;-1:-1:-1;;41208:224:0:o;28733:100::-;28787:13;28820:5;28813:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28733:100;:::o;30292:221::-;30368:7;33635:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33635:16:0;30388:73;;;;-1:-1:-1;;;30388:73:0;;7126:2:1;30388:73:0;;;7108:21:1;7165:2;7145:18;;;7138:30;7204:34;7184:18;;;7177:62;-1:-1:-1;;;7255:18:1;;;7248:42;7307:19;;30388:73:0;;;;;;;;;-1:-1:-1;30481:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30481:24:0;;30292:221::o;29815:411::-;29896:13;29912:23;29927:7;29912:14;:23::i;:::-;29896:39;;29960:5;-1:-1:-1;;;;;29954:11:0;:2;-1:-1:-1;;;;;29954:11:0;;29946:57;;;;-1:-1:-1;;;29946:57:0;;7539:2:1;29946:57:0;;;7521:21:1;7578:2;7558:18;;;7551:30;7617:34;7597:18;;;7590:62;-1:-1:-1;;;7668:18:1;;;7661:31;7709:19;;29946:57:0;7337:397:1;29946:57:0;6125:10;-1:-1:-1;;;;;30038:21:0;;;;:62;;-1:-1:-1;30063:37:0;30080:5;6125:10;30811:164;:::i;30063:37::-;30016:168;;;;-1:-1:-1;;;30016:168:0;;7941:2:1;30016:168:0;;;7923:21:1;7980:2;7960:18;;;7953:30;8019:34;7999:18;;;7992:62;8090:26;8070:18;;;8063:54;8134:19;;30016:168:0;7739:420:1;30016:168:0;30197:21;30206:2;30210:7;30197:8;:21::i;:::-;29885:341;29815:411;;:::o;53964:108::-;7363:6;;-1:-1:-1;;;;;7363:6:0;6125:10;7510:23;7502:68;;;;-1:-1:-1;;;7502:68:0;;;;;;;:::i;:::-;54042:9:::1;:22;54054:10:::0;54042:9;:22:::1;:::i;:::-;;53964:108:::0;:::o;53607:85::-;7363:6;;-1:-1:-1;;;;;7363:6:0;6125:10;7510:23;7502:68;;;;-1:-1:-1;;;7502:68:0;;;;;;;:::i;:::-;53669:6:::1;:15:::0;;-1:-1:-1;;53669:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53607:85::o;31042:339::-;31237:41;6125:10;31270:7;31237:18;:41::i;:::-;31229:103;;;;-1:-1:-1;;;31229:103:0;;;;;;;:::i;:::-;31345:28;31355:4;31361:2;31365:7;31345:9;:28::i;41516:256::-;41613:7;41649:23;41666:5;41649:16;:23::i;:::-;41641:5;:31;41633:87;;;;-1:-1:-1;;;41633:87:0;;11269:2:1;41633:87:0;;;11251:21:1;11308:2;11288:18;;;11281:30;11347:34;11327:18;;;11320:62;-1:-1:-1;;;11398:18:1;;;11391:41;11449:19;;41633:87:0;11067:407:1;41633:87:0;-1:-1:-1;;;;;;41738:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41516:256::o;54080:278::-;7363:6;;-1:-1:-1;;;;;7363:6:0;6125:10;7510:23;7502:68;;;;-1:-1:-1;;;7502:68:0;;;;;;;:::i;:::-;54148:21:::1;54188:11:::0;54180:44:::1;;;::::0;-1:-1:-1;;;54180:44:0;;11681:2:1;54180:44:0::1;::::0;::::1;11663:21:1::0;11720:2;11700:18;;;11693:30;-1:-1:-1;;;11739:18:1;;;11732:50;11799:18;;54180:44:0::1;11479:344:1::0;54180:44:0::1;54256:48;::::0;54238:12:::1;::::0;51738:42:::1;::::0;54292:7;;54238:12;54256:48;54238:12;54256:48;54292:7;51738:42;54256:48:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54237:67;;;54323:7;54315:35;;;::::0;-1:-1:-1;;;54315:35:0;;12240:2:1;54315:35:0::1;::::0;::::1;12222:21:1::0;12279:2;12259:18;;;12252:30;-1:-1:-1;;;12298:18:1;;;12291:45;12353:18;;54315:35:0::1;12038:339:1::0;52077:681:0;52162:6;;;;52161:7;52153:37;;;;-1:-1:-1;;;52153:37:0;;12584:2:1;52153:37:0;;;12566:21:1;12623:2;12603:18;;;12596:30;-1:-1:-1;;;12642:18:1;;;12635:47;12699:18;;52153:37:0;12382:341:1;52153:37:0;52223:1;52209:11;:15;52201:52;;;;-1:-1:-1;;;52201:52:0;;12930:2:1;52201:52:0;;;12912:21:1;12969:2;12949:18;;;12942:30;13008:26;12988:18;;;12981:54;13052:18;;52201:52:0;12728:348:1;52201:52:0;51490:4;52288:11;52272:13;41936:10;:17;;41848:113;52272:13;:27;;;;:::i;:::-;:41;;52264:72;;;;-1:-1:-1;;;52264:72:0;;13545:2:1;52264:72:0;;;13527:21:1;13584:2;13564:18;;;13557:30;-1:-1:-1;;;13603:18:1;;;13596:48;13661:18;;52264:72:0;13343:342:1;52264:72:0;7363:6;;-1:-1:-1;;;;;7363:6:0;52389:10;:21;52385:212;;51543:2;52435:11;:30;;52427:75;;;;-1:-1:-1;;;52427:75:0;;13892:2:1;52427:75:0;;;13874:21:1;;;13911:18;;;13904:30;13970:34;13950:18;;;13943:62;14022:18;;52427:75:0;13690:356:1;52427:75:0;52538:24;52551:11;51589:8;52538:24;:::i;:::-;52525:9;:37;;52517:68;;;;-1:-1:-1;;;52517:68:0;;14426:2:1;52517:68:0;;;14408:21:1;14465:2;14445:18;;;14438:30;-1:-1:-1;;;14484:18:1;;;14477:48;14542:18;;52517:68:0;14224:342:1;52517:68:0;52614:9;52609:142;52633:11;52629:1;:15;52609:142;;;52666:15;52684:13;41936:10;:17;;41848:113;52684:13;:17;;52700:1;52684:17;:::i;:::-;52666:35;;52716:23;52726:3;52731:7;52716:9;:23::i;:::-;-1:-1:-1;52646:3:0;;52609:142;;31452:185;31590:39;31607:4;31613:2;31617:7;31590:39;;;;;;;;;;;;:16;:39::i;52766:364::-;52828:16;52857:23;52883:17;52893:6;52883:9;:17::i;:::-;52857:43;;52911:25;52953:15;52939:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52939:30:0;;52911:58;;52985:9;52980:117;53004:15;53000:1;:19;52980:117;;;53055:30;53075:6;53083:1;53055:19;:30::i;:::-;53041:8;53050:1;53041:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;53021:3;;52980:117;;;-1:-1:-1;53114:8:0;52766:364;-1:-1:-1;;;52766:364:0:o;42038:233::-;42113:7;42149:30;41936:10;:17;;41848:113;42149:30;42141:5;:38;42133:95;;;;-1:-1:-1;;;42133:95:0;;14905:2:1;42133:95:0;;;14887:21:1;14944:2;14924:18;;;14917:30;14983:34;14963:18;;;14956:62;-1:-1:-1;;;15034:18:1;;;15027:42;15086:19;;42133:95:0;14703:408:1;42133:95:0;42246:10;42257:5;42246:17;;;;;;;;:::i;:::-;;;;;;;;;42239:24;;42038:233;;;:::o;53700:140::-;7363:6;;-1:-1:-1;;;;;7363:6:0;6125:10;7510:23;7502:68;;;;-1:-1:-1;;;7502:68:0;;;;;;;:::i;:::-;53794:17:::1;:38;53814:18:::0;53794:17;:38:::1;:::i;51373:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51338:28::-;;;;;;;:::i;28427:239::-;28499:7;28535:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28535:16:0;;28562:73;;;;-1:-1:-1;;;28562:73:0;;15318:2:1;28562:73:0;;;15300:21:1;15357:2;15337:18;;;15330:30;15396:34;15376:18;;;15369:62;-1:-1:-1;;;15447:18:1;;;15440:39;15496:19;;28562:73:0;15116:405:1;28157:208:0;28229:7;-1:-1:-1;;;;;28257:19:0;;28249:74;;;;-1:-1:-1;;;28249:74:0;;15728:2:1;28249:74:0;;;15710:21:1;15767:2;15747:18;;;15740:30;15806:34;15786:18;;;15779:62;-1:-1:-1;;;15857:18:1;;;15850:40;15907:19;;28249:74:0;15526:406:1;28249:74:0;-1:-1:-1;;;;;;28341:16:0;;;;;:9;:16;;;;;;;28157:208::o;7941:103::-;7363:6;;-1:-1:-1;;;;;7363:6:0;6125:10;7510:23;7502:68;;;;-1:-1:-1;;;7502:68:0;;;;;;;:::i;:::-;8006:30:::1;8033:1;8006:18;:30::i;:::-;7941:103::o:0;53848:108::-;7363:6;;-1:-1:-1;;;;;7363:6:0;6125:10;7510:23;7502:68;;;;-1:-1:-1;;;7502:68:0;;;;;;;:::i;:::-;53926:9:::1;:22;53938:10:::0;53926:9;:22:::1;:::i;28902:104::-:0;28958:13;28991:7;28984:14;;;;;:::i;30585:155::-;30680:52;6125:10;30713:8;30723;30680:18;:52::i;51413:31::-;;;;;;;:::i;31708:328::-;31883:41;6125:10;31916:7;31883:18;:41::i;:::-;31875:103;;;;-1:-1:-1;;;31875:103:0;;;;;;;:::i;:::-;31989:39;32003:4;32009:2;32013:7;32022:5;31989:13;:39::i;:::-;31708:328;;;;:::o;53138:340::-;33611:4;33635:16;;;:7;:16;;;;;;53204:13;;-1:-1:-1;;;;;33635:16:0;53230:77;;;;-1:-1:-1;;;53230:77:0;;16139:2:1;53230:77:0;;;16121:21:1;16178:2;16158:18;;;16151:30;16217:34;16197:18;;;16190:62;-1:-1:-1;;;16268:18:1;;;16261:45;16323:19;;53230:77:0;15937:411:1;53230:77:0;53325:8;;;;;;;53320:66;;53357:17;53350:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53138:340;;;:::o;53320:66::-;53427:9;53438:19;:8;:17;:19::i;:::-;53459:9;53410:59;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53396:74;;53138:340;;;:::o;53510:89::-;7363:6;;-1:-1:-1;;;;;7363:6:0;6125:10;7510:23;7502:68;;;;-1:-1:-1;;;7502:68:0;;;;;;;:::i;:::-;53574:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;53574:17:0;;::::1;::::0;;;::::1;::::0;;53510:89::o;8199:201::-;7363:6;;-1:-1:-1;;;;;7363:6:0;6125:10;7510:23;7502:68;;;;-1:-1:-1;;;7502:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8288:22:0;::::1;8280:73;;;::::0;-1:-1:-1;;;8280:73:0;;17711:2:1;8280:73:0::1;::::0;::::1;17693:21:1::0;17750:2;17730:18;;;17723:30;17789:34;17769:18;;;17762:62;-1:-1:-1;;;17840:18:1;;;17833:36;17886:19;;8280:73:0::1;17509:402:1::0;8280:73:0::1;8364:28;8383:8;8364:18;:28::i;:::-;8199:201:::0;:::o;27788:305::-;27890:4;-1:-1:-1;;;;;;27927:40:0;;-1:-1:-1;;;27927:40:0;;:105;;-1:-1:-1;;;;;;;27984:48:0;;-1:-1:-1;;;27984:48:0;27927:105;:158;;;-1:-1:-1;;;;;;;;;;19721:40:0;;;28049:36;19612:157;37528:174;37603:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37603:29:0;-1:-1:-1;;;;;37603:29:0;;;;;;;;:24;;37657:23;37603:24;37657:14;:23::i;:::-;-1:-1:-1;;;;;37648:46:0;;;;;;;;;;;37528:174;;:::o;33840:348::-;33933:4;33635:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33635:16:0;33950:73;;;;-1:-1:-1;;;33950:73:0;;18118:2:1;33950:73:0;;;18100:21:1;18157:2;18137:18;;;18130:30;18196:34;18176:18;;;18169:62;-1:-1:-1;;;18247:18:1;;;18240:42;18299:19;;33950:73:0;17916:408:1;33950:73:0;34034:13;34050:23;34065:7;34050:14;:23::i;:::-;34034:39;;34103:5;-1:-1:-1;;;;;34092:16:0;:7;-1:-1:-1;;;;;34092:16:0;;:51;;;;34136:7;-1:-1:-1;;;;;34112:31:0;:20;34124:7;34112:11;:20::i;:::-;-1:-1:-1;;;;;34112:31:0;;34092:51;:87;;;-1:-1:-1;;;;;;30932:25:0;;;30908:4;30932:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34147:32;34084:96;33840:348;-1:-1:-1;;;;33840:348:0:o;36832:578::-;36991:4;-1:-1:-1;;;;;36964:31:0;:23;36979:7;36964:14;:23::i;:::-;-1:-1:-1;;;;;36964:31:0;;36956:85;;;;-1:-1:-1;;;36956:85:0;;18531:2:1;36956:85:0;;;18513:21:1;18570:2;18550:18;;;18543:30;18609:34;18589:18;;;18582:62;-1:-1:-1;;;18660:18:1;;;18653:39;18709:19;;36956:85:0;18329:405:1;36956:85:0;-1:-1:-1;;;;;37060:16:0;;37052:65;;;;-1:-1:-1;;;37052:65:0;;18941:2:1;37052:65:0;;;18923:21:1;18980:2;18960:18;;;18953:30;19019:34;18999:18;;;18992:62;-1:-1:-1;;;19070:18:1;;;19063:34;19114:19;;37052:65:0;18739:400:1;37052:65:0;37130:39;37151:4;37157:2;37161:7;37130:20;:39::i;:::-;37234:29;37251:1;37255:7;37234:8;:29::i;:::-;-1:-1:-1;;;;;37276:15:0;;;;;;:9;:15;;;;;:20;;37295:1;;37276:15;:20;;37295:1;;37276:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37307:13:0;;;;;;:9;:13;;;;;:18;;37324:1;;37307:13;:18;;37324:1;;37307:18;:::i;:::-;;;;-1:-1:-1;;37336:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37336:21:0;-1:-1:-1;;;;;37336:21:0;;;;;;;;;37375:27;;37336:16;;37375:27;;;;;;;36832:578;;;:::o;34530:110::-;34606:26;34616:2;34620:7;34606:26;;;;;;;;;;;;:9;:26::i;8560:191::-;8653:6;;;-1:-1:-1;;;;;8670:17:0;;;-1:-1:-1;;;;;;8670:17:0;;;;;;;8703:40;;8653:6;;;8670:17;8653:6;;8703:40;;8634:16;;8703:40;8623:128;8560:191;:::o;37844:315::-;37999:8;-1:-1:-1;;;;;37990:17:0;:5;-1:-1:-1;;;;;37990:17:0;;37982:55;;;;-1:-1:-1;;;37982:55:0;;19479:2:1;37982:55:0;;;19461:21:1;19518:2;19498:18;;;19491:30;19557:27;19537:18;;;19530:55;19602:18;;37982:55:0;19277:349:1;37982:55:0;-1:-1:-1;;;;;38048:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38048:46:0;;;;;;;;;;38110:41;;540::1;;;38110::0;;513:18:1;38110:41:0;;;;;;;37844:315;;;:::o;32918:::-;33075:28;33085:4;33091:2;33095:7;33075:9;:28::i;:::-;33122:48;33145:4;33151:2;33155:7;33164:5;33122:22;:48::i;:::-;33114:111;;;;-1:-1:-1;;;33114:111:0;;;;;;;:::i;3636:723::-;3692:13;3913:5;3922:1;3913:10;3909:53;;-1:-1:-1;;3940:10:0;;;;;;;;;;;;-1:-1:-1;;;3940:10:0;;;;;3636:723::o;3909:53::-;3987:5;3972:12;4028:78;4035:9;;4028:78;;4061:8;;;;:::i;:::-;;-1:-1:-1;4084:10:0;;-1:-1:-1;4092:2:0;4084:10;;:::i;:::-;;;4028:78;;;4116:19;4148:6;4138:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4138:17:0;;4116:39;;4166:154;4173:10;;4166:154;;4200:11;4210:1;4200:11;;:::i;:::-;;-1:-1:-1;4269:10:0;4277:2;4269:5;:10;:::i;:::-;4256:24;;:2;:24;:::i;:::-;4243:39;;4226:6;4233;4226:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4226:56:0;;;;;;;;-1:-1:-1;4297:11:0;4306:2;4297:11;;:::i;:::-;;;4166:154;;42884:589;-1:-1:-1;;;;;43090:18:0;;43086:187;;43125:40;43157:7;44300:10;:17;;44273:24;;;;:15;:24;;;;;:44;;;44328:24;;;;;;;;;;;;44196:164;43125:40;43086:187;;;43195:2;-1:-1:-1;;;;;43187:10:0;:4;-1:-1:-1;;;;;43187:10:0;;43183:90;;43214:47;43247:4;43253:7;43214:32;:47::i;:::-;-1:-1:-1;;;;;43287:16:0;;43283:183;;43320:45;43357:7;43320:36;:45::i;43283:183::-;43393:4;-1:-1:-1;;;;;43387:10:0;:2;-1:-1:-1;;;;;43387:10:0;;43383:83;;43414:40;43442:2;43446:7;43414:27;:40::i;34867:321::-;34997:18;35003:2;35007:7;34997:5;:18::i;:::-;35048:54;35079:1;35083:2;35087:7;35096:5;35048:22;:54::i;:::-;35026:154;;;;-1:-1:-1;;;35026:154:0;;;;;;;:::i;38724:799::-;38879:4;-1:-1:-1;;;;;38900:13:0;;9874:20;9922:8;38896:620;;38936:72;;-1:-1:-1;;;38936:72:0;;-1:-1:-1;;;;;38936:36:0;;;;;:72;;6125:10;;38987:4;;38993:7;;39002:5;;38936:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38936:72:0;;;;;;;;-1:-1:-1;;38936:72:0;;;;;;;;;;;;:::i;:::-;;;38932:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39178:6;:13;39195:1;39178:18;39174:272;;39221:60;;-1:-1:-1;;;39221:60:0;;;;;;;:::i;39174:272::-;39396:6;39390:13;39381:6;39377:2;39373:15;39366:38;38932:529;-1:-1:-1;;;;;;39059:51:0;-1:-1:-1;;;39059:51:0;;-1:-1:-1;39052:58:0;;38896:620;-1:-1:-1;39500:4:0;38724:799;;;;;;:::o;44987:988::-;45253:22;45303:1;45278:22;45295:4;45278:16;:22::i;:::-;:26;;;;:::i;:::-;45315:18;45336:26;;;:17;:26;;;;;;45253:51;;-1:-1:-1;45469:28:0;;;45465:328;;-1:-1:-1;;;;;45536:18:0;;45514:19;45536:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45587:30;;;;;;:44;;;45704:30;;:17;:30;;;;;:43;;;45465:328;-1:-1:-1;45889:26:0;;;;:17;:26;;;;;;;;45882:33;;;-1:-1:-1;;;;;45933:18:0;;;;;:12;:18;;;;;:34;;;;;;;45926:41;44987:988::o;46270:1079::-;46548:10;:17;46523:22;;46548:21;;46568:1;;46548:21;:::i;:::-;46580:18;46601:24;;;:15;:24;;;;;;46974:10;:26;;46523:46;;-1:-1:-1;46601:24:0;;46523:46;;46974:26;;;;;;:::i;:::-;;;;;;;;;46952:48;;47038:11;47013:10;47024;47013:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47118:28;;;:15;:28;;;;;;;:41;;;47290:24;;;;;47283:31;47325:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46341:1008;;;46270:1079;:::o;43774:221::-;43859:14;43876:20;43893:2;43876:16;:20::i;:::-;-1:-1:-1;;;;;43907:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43952:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43774:221:0:o;35524:382::-;-1:-1:-1;;;;;35604:16:0;;35596:61;;;;-1:-1:-1;;;35596:61:0;;21642:2:1;35596:61:0;;;21624:21:1;;;21661:18;;;21654:30;21720:34;21700:18;;;21693:62;21772:18;;35596:61:0;21440:356:1;35596:61:0;33611:4;33635:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33635:16:0;:30;35668:58;;;;-1:-1:-1;;;35668:58:0;;22003:2:1;35668:58:0;;;21985:21:1;22042:2;22022:18;;;22015:30;22081;22061:18;;;22054:58;22129:18;;35668:58:0;21801:352:1;35668:58:0;35739:45;35768:1;35772:2;35776:7;35739:20;:45::i;:::-;-1:-1:-1;;;;;35797:13:0;;;;;;:9;:13;;;;;:18;;35814:1;;35797:13;:18;;35814:1;;35797:18;:::i;:::-;;;;-1:-1:-1;;35826:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35826:21:0;-1:-1:-1;;;;;35826:21:0;;;;;;;;35865:33;;35826:16;;;35865:33;;35826:16;;35865:33;35524:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:226::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1521:23:1;;1348:226;-1:-1:-1;1348:226:1:o;1787:173::-;1855:20;;-1:-1:-1;;;;;1904:31:1;;1894:42;;1884:70;;1950:1;1947;1940:12;1884:70;1787:173;;;:::o;1965:300::-;2033:6;2041;2094:2;2082:9;2073:7;2069:23;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;2133:29;2152:9;2133:29;:::i;:::-;2123:39;2231:2;2216:18;;;;2203:32;;-1:-1:-1;;;1965:300:1:o;2270:127::-;2331:10;2326:3;2322:20;2319:1;2312:31;2362:4;2359:1;2352:15;2386:4;2383:1;2376:15;2402:716;2467:5;2499:1;2523:18;2515:6;2512:30;2509:56;;;2545:18;;:::i;:::-;-1:-1:-1;2700:2:1;2694:9;-1:-1:-1;;2613:2:1;2592:15;;2588:29;;2758:2;2746:15;2742:29;2730:42;;2823:22;;;2802:18;2787:34;;2784:62;2781:88;;;2849:18;;:::i;:::-;2885:2;2878:22;2933;;;2918:6;-1:-1:-1;2918:6:1;2970:16;;;2967:25;-1:-1:-1;2964:45:1;;;3005:1;3002;2995:12;2964:45;3055:6;3050:3;3043:4;3035:6;3031:17;3018:44;3110:1;3103:4;3094:6;3086;3082:19;3078:30;3071:41;;2402:716;;;;;:::o;3123:451::-;3192:6;3245:2;3233:9;3224:7;3220:23;3216:32;3213:52;;;3261:1;3258;3251:12;3213:52;3301:9;3288:23;3334:18;3326:6;3323:30;3320:50;;;3366:1;3363;3356:12;3320:50;3389:22;;3442:4;3434:13;;3430:27;-1:-1:-1;3420:55:1;;3471:1;3468;3461:12;3420:55;3494:74;3560:7;3555:2;3542:16;3537:2;3533;3529:11;3494:74;:::i;3579:160::-;3644:20;;3700:13;;3693:21;3683:32;;3673:60;;3729:1;3726;3719:12;3744:180;3800:6;3853:2;3841:9;3832:7;3828:23;3824:32;3821:52;;;3869:1;3866;3859:12;3821:52;3892:26;3908:9;3892:26;:::i;4111:374::-;4188:6;4196;4204;4257:2;4245:9;4236:7;4232:23;4228:32;4225:52;;;4273:1;4270;4263:12;4225:52;4296:29;4315:9;4296:29;:::i;:::-;4286:39;;4344:38;4378:2;4367:9;4363:18;4344:38;:::i;:::-;4111:374;;4334:48;;-1:-1:-1;;;4451:2:1;4436:18;;;;4423:32;;4111:374::o;4490:186::-;4549:6;4602:2;4590:9;4581:7;4577:23;4573:32;4570:52;;;4618:1;4615;4608:12;4570:52;4641:29;4660:9;4641:29;:::i;4681:611::-;4871:2;4883:21;;;4953:13;;4856:18;;;4975:22;;;4823:4;;5054:15;;;5028:2;5013:18;;;4823:4;5097:169;5111:6;5108:1;5105:13;5097:169;;;5172:13;;5160:26;;5215:2;5241:15;;;;5206:12;;;;5133:1;5126:9;5097:169;;;-1:-1:-1;5283:3:1;;4681:611;-1:-1:-1;;;;;4681:611:1:o;5297:254::-;5362:6;5370;5423:2;5411:9;5402:7;5398:23;5394:32;5391:52;;;5439:1;5436;5429:12;5391:52;5462:29;5481:9;5462:29;:::i;:::-;5452:39;;5510:35;5541:2;5530:9;5526:18;5510:35;:::i;:::-;5500:45;;5297:254;;;;;:::o;5556:713::-;5651:6;5659;5667;5675;5728:3;5716:9;5707:7;5703:23;5699:33;5696:53;;;5745:1;5742;5735:12;5696:53;5768:29;5787:9;5768:29;:::i;:::-;5758:39;;5816:38;5850:2;5839:9;5835:18;5816:38;:::i;:::-;5806:48;-1:-1:-1;5923:2:1;5908:18;;5895:32;;-1:-1:-1;6002:2:1;5987:18;;5974:32;6029:18;6018:30;;6015:50;;;6061:1;6058;6051:12;6015:50;6084:22;;6137:4;6129:13;;6125:27;-1:-1:-1;6115:55:1;;6166:1;6163;6156:12;6115:55;6189:74;6255:7;6250:2;6237:16;6232:2;6228;6224:11;6189:74;:::i;:::-;6179:84;;;5556:713;;;;;;;:::o;6274:260::-;6342:6;6350;6403:2;6391:9;6382:7;6378:23;6374:32;6371:52;;;6419:1;6416;6409:12;6371:52;6442:29;6461:9;6442:29;:::i;:::-;6432:39;;6490:38;6524:2;6513:9;6509:18;6490:38;:::i;6539:380::-;6618:1;6614:12;;;;6661;;;6682:61;;6736:4;6728:6;6724:17;6714:27;;6682:61;6789:2;6781:6;6778:14;6758:18;6755:38;6752:161;;6835:10;6830:3;6826:20;6823:1;6816:31;6870:4;6867:1;6860:15;6898:4;6895:1;6888:15;6752:161;;6539:380;;;:::o;8164:356::-;8366:2;8348:21;;;8385:18;;;8378:30;8444:34;8439:2;8424:18;;8417:62;8511:2;8496:18;;8164:356::o;8651:518::-;8753:2;8748:3;8745:11;8742:421;;;8789:5;8786:1;8779:16;8833:4;8830:1;8820:18;8903:2;8891:10;8887:19;8884:1;8880:27;8874:4;8870:38;8939:4;8927:10;8924:20;8921:47;;;-1:-1:-1;8962:4:1;8921:47;9017:2;9012:3;9008:12;9005:1;9001:20;8995:4;8991:31;8981:41;;9072:81;9090:2;9083:5;9080:13;9072:81;;;9149:1;9135:16;;9116:1;9105:13;9072:81;;;9076:3;;8651:518;;;:::o;9345:1299::-;9471:3;9465:10;9498:18;9490:6;9487:30;9484:56;;;9520:18;;:::i;:::-;9549:97;9639:6;9599:38;9631:4;9625:11;9599:38;:::i;:::-;9593:4;9549:97;:::i;:::-;9695:4;9726:2;9715:14;;9743:1;9738:649;;;;10431:1;10448:6;10445:89;;;-1:-1:-1;10500:19:1;;;10494:26;10445:89;-1:-1:-1;;9302:1:1;9298:11;;;9294:24;9290:29;9280:40;9326:1;9322:11;;;9277:57;10547:81;;9708:930;;9738:649;8598:1;8591:14;;;8635:4;8622:18;;-1:-1:-1;;9774:20:1;;;9892:222;9906:7;9903:1;9900:14;9892:222;;;9988:19;;;9982:26;9967:42;;10095:4;10080:20;;;;10048:1;10036:14;;;;9922:12;9892:222;;;9896:3;10142:6;10133:7;10130:19;10127:201;;;10203:19;;;10197:26;-1:-1:-1;;10286:1:1;10282:14;;;10298:3;10278:24;10274:37;10270:42;10255:58;10240:74;;10127:201;-1:-1:-1;;;;10374:1:1;10358:14;;;10354:22;10341:36;;-1:-1:-1;9345:1299:1:o;10649:413::-;10851:2;10833:21;;;10890:2;10870:18;;;10863:30;10929:34;10924:2;10909:18;;10902:62;-1:-1:-1;;;10995:2:1;10980:18;;10973:47;11052:3;11037:19;;10649:413::o;13081:127::-;13142:10;13137:3;13133:20;13130:1;13123:31;13173:4;13170:1;13163:15;13197:4;13194:1;13187:15;13213:125;13278:9;;;13299:10;;;13296:36;;;13312:18;;:::i;14051:168::-;14124:9;;;14155;;14172:15;;;14166:22;;14152:37;14142:71;;14193:18;;:::i;14571:127::-;14632:10;14627:3;14623:20;14620:1;14613:31;14663:4;14660:1;14653:15;14687:4;14684:1;14677:15;16353:677;16403:3;16444:5;16438:12;16473:36;16499:9;16473:36;:::i;:::-;16540:1;16525:17;;16551:133;;;;16698:1;16693:331;;;;16518:506;;16551:133;-1:-1:-1;;16584:24:1;;16572:37;;16657:14;;16650:22;16638:35;;16629:45;;;-1:-1:-1;16551:133:1;;16693:331;16724:5;16721:1;16714:16;16771:4;16768:1;16758:18;16798:1;16812:166;16826:6;16823:1;16820:13;16812:166;;;16906:14;;16893:11;;;16886:35;16962:1;16949:15;;;;16848:4;16841:12;16812:166;;;16816:3;;17007:6;17002:3;16998:16;16991:23;;16518:506;;;;16353:677;;;;:::o;17035:469::-;17256:3;17284:38;17318:3;17310:6;17284:38;:::i;:::-;17351:6;17345:13;17367:65;17425:6;17421:2;17414:4;17406:6;17402:17;17367:65;:::i;:::-;17448:50;17490:6;17486:2;17482:15;17474:6;17448:50;:::i;:::-;17441:57;17035:469;-1:-1:-1;;;;;;;17035:469:1:o;19144:128::-;19211:9;;;19232:11;;;19229:37;;;19246:18;;:::i;19631:414::-;19833:2;19815:21;;;19872:2;19852:18;;;19845:30;19911:34;19906:2;19891:18;;19884:62;-1:-1:-1;;;19977:2:1;19962:18;;19955:48;20035:3;20020:19;;19631:414::o;20050:135::-;20089:3;20110:17;;;20107:43;;20130:18;;:::i;:::-;-1:-1:-1;20177:1:1;20166:13;;20050:135::o;20190:127::-;20251:10;20246:3;20242:20;20239:1;20232:31;20282:4;20279:1;20272:15;20306:4;20303:1;20296:15;20322:120;20362:1;20388;20378:35;;20393:18;;:::i;:::-;-1:-1:-1;20427:9:1;;20322:120::o;20447:112::-;20479:1;20505;20495:35;;20510:18;;:::i;:::-;-1:-1:-1;20544:9:1;;20447:112::o;20564:485::-;-1:-1:-1;;;;;20795:32:1;;;20777:51;;20864:32;;20859:2;20844:18;;20837:60;20928:2;20913:18;;20906:34;;;20976:3;20971:2;20956:18;;20949:31;;;-1:-1:-1;;20997:46:1;;21023:19;;21015:6;20997:46;:::i;:::-;20989:54;20564:485;-1:-1:-1;;;;;;20564:485:1:o;21054:249::-;21123:6;21176:2;21164:9;21155:7;21151:23;21147:32;21144:52;;;21192:1;21189;21182:12;21144:52;21224:9;21218:16;21243:30;21267:5;21243:30;:::i;21308:127::-;21369:10;21364:3;21360:20;21357:1;21350:31;21400:4;21397:1;21390:15;21424:4;21421:1;21414:15
Swarm Source
ipfs://b5133265d4b552af520595b9944fd99da12370cc05a0c3bbe962761eca1c630a
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.