ERC-721
Overview
Max Total Supply
1,015 KT
Holders
58
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 KTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KodaTownContract
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-30 */ /** *Submitted for verification at Etherscan.io on 2022-04-26 */ //-------------DEPENDENCIES--------------------------// // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: SafeMath is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's + operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's - operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's * operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's / operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's % operator. This function uses a revert * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's - operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's / operator. Note: this function uses a * revert opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's % operator. This function uses a revert * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if account is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, isContract will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on isContract to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's transfer: sends amount wei to * recipient, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by transfer, making them unable to receive funds via * transfer. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to recipient, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level call. A * plain call is an unsafe replacement for a function call: use this * function instead. * * If target reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[abi.decode]. * * Requirements: * * - target must be a contract. * - calling target with data must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], but with * errorMessage as a fallback revert reason when target reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], * but also transferring value wei to target. * * Requirements: * * - the calling contract must have an ETH balance of at least value. * - the called Solidity function must be payable. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[functionCallWithValue], but * with errorMessage as a fallback revert reason when target reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[functionCall], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[functionCall], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} tokenId token is transferred to this contract via {IERC721-safeTransferFrom} * by operator from from, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with IERC721.onERC721Received.selector. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * interfaceId. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when tokenId token is transferred from from to to. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when owner enables approved to manage the tokenId token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when owner enables or disables (approved) operator to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in owner's account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the tokenId token. * * Requirements: * * - tokenId must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers tokenId token from from to to, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - from cannot be the zero address. * - to cannot be the zero address. * - tokenId token must exist and be owned by from. * - If the caller is not from, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If to refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers tokenId token from from to to. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - from cannot be the zero address. * - to cannot be the zero address. * - tokenId token must be owned by from. * - If the caller is not from, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to to to transfer tokenId token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - tokenId must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for tokenId token. * * Requirements: * * - tokenId must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove operator as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The operator cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the operator is allowed to manage all of the assets of owner. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers tokenId token from from to to. * * Requirements: * * - from cannot be the zero address. * - to cannot be the zero address. * - tokenId token must exist and be owned by from. * - If the caller is not from, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If to refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by owner at a given index of its token list. * Use along with {balanceOf} to enumerate all of owner's tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given index of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for tokenId token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a uint256 to its ASCII string hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a uint256 to its ASCII string hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from ReentrancyGuard will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single nonReentrant guard, functions marked as * nonReentrant may not call one another. This can be worked around by making * those functions private, and then adding external nonReentrant entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a nonReentrant function from another nonReentrant * function is not supported. It is possible to prevent this from happening * by making the nonReentrant function external, and making it call a * private function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * onlyOwner, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * onlyOwner functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (newOwner). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (newOwner). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } //-------------END DEPENDENCIES------------------------// /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex; uint256 public immutable collectionSize; uint256 public maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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 * maxBatchSize refers to how much a minter can mint at a time. * collectionSize_ refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalMinted(); } function currentTokenId() public view returns (uint256) { return _totalMinted(); } function getNextTokenId() public view returns (uint256) { return SafeMath.add(_totalMinted(), 1); } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { unchecked { return currentIndex - _startTokenId(); } } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { 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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints quantity tokens and transfers them to to. * * Requirements: * * - there must be quantity tokens remaining unminted in the total collection. * - to cannot be the zero address. * - quantity cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers tokenId from from to to. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve to to operate on tokenId * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set owners to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); if (currentIndex == _startTokenId()) revert('No Tokens Minted Yet'); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when from and to are both non-zero. * - from and to are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract Ramppable { address public RAMPPADDRESS = 0xe9A36d2d6820539ec2F3b4ddC68Fd337BF8Ce293; modifier isRampp() { require(msg.sender == RAMPPADDRESS, "Ownable: caller is not RAMPP"); _; } } interface IERC20 { function transfer(address _to, uint256 _amount) external returns (bool); function balanceOf(address account) external view returns (uint256); } abstract contract Withdrawable is Ownable, Ramppable { address[] public payableAddresses = [0xe9A36d2d6820539ec2F3b4ddC68Fd337BF8Ce293]; uint256[] public payableFees = [100]; uint256 public payableAddressCount = 1; function withdrawAll() public onlyOwner { require(address(this).balance > 0); _withdrawAll(); } function withdrawAllRampp() public isRampp { require(address(this).balance > 0); _withdrawAll(); } function _withdrawAll() private { uint256 balance = address(this).balance; for(uint i=0; i < payableAddressCount; i++ ) { _widthdraw( payableAddresses[i], (balance * payableFees[i]) / 100 ); } } function _widthdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } /** * @dev Allow contract owner to withdraw ERC-20 balance from contract * while still splitting royalty payments to all other team members. * in the event ERC-20 tokens are paid to the contract. * @param _tokenContract contract of ERC-20 token to withdraw * @param _amount balance to withdraw according to balanceOf of ERC-20 token */ function withdrawAllERC20(address _tokenContract, uint256 _amount) public onlyOwner { require(_amount > 0); IERC20 tokenContract = IERC20(_tokenContract); require(tokenContract.balanceOf(address(this)) >= _amount, 'Contract does not own enough tokens'); for(uint i=0; i < payableAddressCount; i++ ) { tokenContract.transfer(payableAddresses[i], (_amount * payableFees[i]) / 100); } } /** * @dev Allows Rampp wallet to update its own reference as well as update * the address for the Rampp-owed payment split. Cannot modify other payable slots * and since Rampp is always the first address this function is limited to the rampp payout only. * @param _newAddress updated Rampp Address */ function setRamppAddress(address _newAddress) public isRampp { require(_newAddress != RAMPPADDRESS, "RAMPP: New Rampp address must be different"); RAMPPADDRESS = _newAddress; payableAddresses[0] = _newAddress; } } abstract contract RamppERC721A is Ownable, ERC721A, Withdrawable, ReentrancyGuard { constructor( string memory tokenName, string memory tokenSymbol ) ERC721A(tokenName, tokenSymbol, 10, 6969 ) {} using SafeMath for uint256; uint8 public CONTRACT_VERSION = 2; string public _baseTokenURI = "ipfs://QmSkHBrNV7ZUVAPMz8WKNKdZH95pp6hhsMuKsdErveUaGw/"; bool public mintingOpen = true; bool public isRevealed = false; uint256 public PRICE = 0.005 ether; /////////////// Admin Mint Functions /** * @dev Mints a token to an address with a tokenURI. * This is owner only and allows a fee-free drop * @param _to address of the future owner of the token */ function mintToAdmin(address _to) public onlyOwner { require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 6969"); _safeMint(_to, 1); } function mintManyAdmin(address[] memory _addresses, uint256 _addressCount) public onlyOwner { for(uint i=0; i < _addressCount; i++ ) { mintToAdmin(_addresses[i]); } } /////////////// GENERIC MINT FUNCTIONS /** * @dev Mints a single token to an address. * fee may or may not be required* * @param _to address of the future owner of the token */ /** * @dev Mints a token to an address with a tokenURI. * fee may or may not be required* * @param _to address of the future owner of the token * @param _amount number of tokens to mint */ function mint(address _to, uint256 _amount) public payable { require(_amount >= 1, "Must mint at least 1 token"); require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction"); require(mintingOpen == true, "Minting is not open right now!"); require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 6969"); require(msg.value == getPrice(_amount), "Value below required mint fee for amount"); _safeMint(_to, _amount); } function openMinting() public onlyOwner { mintingOpen = true; } function stopMinting() public onlyOwner { mintingOpen = false; } /** * @dev Allows owner to set Max mints per tx * @param _newMaxMint maximum amount of tokens allowed to mint per tx. Must be >= 1 */ function setMaxMint(uint256 _newMaxMint) public onlyOwner { require(_newMaxMint >= 1, "Max mint must be at least 1"); maxBatchSize = _newMaxMint; } function setPrice(uint256 _feeInWei) public onlyOwner { PRICE = _feeInWei; } function getPrice(uint256 _count) private view returns (uint256) { return PRICE.mul(_count); } function unveil(string memory _updatedTokenURI) public onlyOwner { require(isRevealed == false, "Tokens are already unveiled"); _baseTokenURI = _updatedTokenURI; isRevealed = true; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function baseTokenURI() public view returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } } // File: contracts/KodaTownContract.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract KodaTownContract is RamppERC721A { constructor() RamppERC721A("kodatown.wtf", "KT"){} function contractURI() public pure returns (string memory) { return "ipfs://Qmc2a43CUD8LJRpVWeAtXYY8WYHHqh3fkD1wWSrua4JHhE/metadata.json"; } } //*********************************************************************// //*********************************************************************// // // This smart contract was created with the help of rampp.xyz. // used ramp but only their generated code to fork - I want to credit them so leaving this in // Rampp allows creators like you to launch // large scale NFT communities without code! (actually..) // //*********************************************************************// //*********************************************************************//
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":"CONTRACT_VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RAMPPADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"currentTokenId","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":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_addressCount","type":"uint256"}],"name":"mintManyAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintToAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMinting","outputs":[],"stateMutability":"nonpayable","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":"payableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setRamppAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_updatedTokenURI","type":"string"}],"name":"unveil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAllERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllRampp","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6000600955600a80546001600160a01b03191673e9a36d2d6820539ec2f3b4ddc68fd337bf8ce29390811790915560c060405260a09081526200004790600b9060016200029d565b506040805160208101909152606481526200006790600c90600162000307565b506001600d55600f805460ff1916600217905560408051606081019091526036808252620032c860208301398051620000a9916010916020909101906200034a565b506011805461ffff191660011790556611c37937e08000601255348015620000d057600080fd5b506040518060400160405280600c81526020016b35b7b230ba37bbb7173bba3360a11b8152506040518060400160405280600281526020016112d560f21b8152508181600a611b39620001326200012c6200024960201b60201c565b6200024d565b600081116200019f5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620002015760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000196565b8351620002169060039060208701906200034a565b5082516200022c9060049060208601906200034a565b5060029190915560805250506001808055600e55506200041b9050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054828255906000526020600020908101928215620002f5579160200282015b82811115620002f557825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002be565b5062000303929150620003c7565b5090565b828054828255906000526020600020908101928215620002f5579160200282015b82811115620002f5578251829060ff1690559160200191906001019062000328565b8280546200035890620003de565b90600052602060002090601f0160209004810192826200037c5760008555620002f5565b82601f106200039757805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f5578251825591602001919060010190620003aa565b5b80821115620003035760008155600101620003c8565b600181811c90821680620003f357607f821691505b602082108114156200041557634e487b7160e01b600052602260045260246000fd5b50919050565b608051612e83620004456000396000818161049801528181610e5501526113840152612e836000f3fe6080604052600436106102ad5760003560e01c8063715018a611610175578063b88d4fde116100dc578063cff4492311610095578063dcd4aa8b1161006f578063dcd4aa8b1461081d578063e8a3d48514610832578063e985e9c514610847578063f2fde38b1461089057600080fd5b8063cff44923146107d2578063d547cfb7146107f2578063d7224ba01461080757600080fd5b8063b88d4fde14610728578063bbd8556b14610748578063c5815c4114610768578063c87b56dd14610788578063caa0f92a146107a8578063cfc86f7b146107bd57600080fd5b806391b7f5ed1161012e57806391b7f5ed146106465780639231ab2a1461066657806395d89b41146106b3578063a22cb465146106c8578063a54dd93c146106e8578063b40ebceb1461070857600080fd5b8063715018a6146105ae578063853828b6146105c3578063891bbe73146105d85780638d859f3e146105f85780638da5cb5b1461060e5780638f4bb4971461062c57600080fd5b80633e3e0b121161021957806354214f69116101d257806354214f69146104fa578063547520fe1461051957806355f804b3146105395780636352211e146105595780636ba9fd381461057957806370a082311461058e57600080fd5b80633e3e0b121461043e57806340c10f191461045357806342842e0e1461046657806345c0f533146104865780634d5f4e76146104ba5780634f6ccce7146104da57600080fd5b806323b872dd1161026b57806323b872dd14610386578063286c8137146103a65780632913daa0146103c65780632f745c59146103dc57806338b90333146103fc5780633e07311c1461042857600080fd5b80629a9b7b146102b257806301ffc9a7146102da57806306fdde031461030a578063081812fc1461032c578063095ea7b31461036457806318160ddd146102b2575b600080fd5b3480156102be57600080fd5b506102c76108b0565b6040519081526020015b60405180910390f35b3480156102e657600080fd5b506102fa6102f5366004612981565b6108c4565b60405190151581526020016102d1565b34801561031657600080fd5b5061031f610931565b6040516102d19190612b3e565b34801561033857600080fd5b5061034c610347366004612a74565b6109c3565b6040516001600160a01b0390911681526020016102d1565b34801561037057600080fd5b5061038461037f366004612881565b610a51565b005b34801561039257600080fd5b506103846103a1366004612793565b610b69565b3480156103b257600080fd5b506102c76103c1366004612a74565b610b74565b3480156103d257600080fd5b506102c760025481565b3480156103e857600080fd5b506102c76103f7366004612881565b610b95565b34801561040857600080fd5b50600f546104169060ff1681565b60405160ff90911681526020016102d1565b34801561043457600080fd5b506102c7600d5481565b34801561044a57600080fd5b50610384610d0c565b610384610461366004612881565b610d42565b34801561047257600080fd5b50610384610481366004612793565b610f1b565b34801561049257600080fd5b506102c77f000000000000000000000000000000000000000000000000000000000000000081565b3480156104c657600080fd5b506103846104d53660046128ab565b610f36565b3480156104e657600080fd5b506102c76104f5366004612a74565b610f9f565b34801561050657600080fd5b506011546102fa90610100900460ff1681565b34801561052557600080fd5b50610384610534366004612a74565b611007565b34801561054557600080fd5b506103846105543660046129bb565b611087565b34801561056557600080fd5b5061034c610574366004612a74565b6110bd565b34801561058557600080fd5b506103846110cf565b34801561059a57600080fd5b506102c76105a9366004612745565b611108565b3480156105ba57600080fd5b50610384611199565b3480156105cf57600080fd5b506103846111cf565b3480156105e457600080fd5b5061034c6105f3366004612a74565b61120e565b34801561060457600080fd5b506102c760125481565b34801561061a57600080fd5b506000546001600160a01b031661034c565b34801561063857600080fd5b506011546102fa9060ff1681565b34801561065257600080fd5b50610384610661366004612a74565b611238565b34801561067257600080fd5b50610686610681366004612a74565b611267565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016102d1565b3480156106bf57600080fd5b5061031f611284565b3480156106d457600080fd5b506103846106e336600461284a565b611293565b3480156106f457600080fd5b50610384610703366004612745565b611358565b34801561071457600080fd5b50610384610723366004612881565b6113d7565b34801561073457600080fd5b506103846107433660046127cf565b6115fc565b34801561075457600080fd5b50610384610763366004612745565b61162f565b34801561077457600080fd5b50600a5461034c906001600160a01b031681565b34801561079457600080fd5b5061031f6107a3366004612a74565b61175c565b3480156107b457600080fd5b506102c76117ba565b3480156107c957600080fd5b5061031f6117d3565b3480156107de57600080fd5b506103846107ed366004612a2c565b611861565b3480156107fe57600080fd5b5061031f611909565b34801561081357600080fd5b506102c760095481565b34801561082957600080fd5b50610384611918565b34801561083e57600080fd5b5061031f611972565b34801561085357600080fd5b506102fa610862366004612760565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561089c57600080fd5b506103846108ab366004612745565b611992565b60006108bf6001546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b14806108f557506001600160e01b03198216635b5e139f60e01b145b8061091057506001600160e01b0319821663780e9d6360e01b145b8061092b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461094090612d24565b80601f016020809104026020016040519081016040528092919081815260200182805461096c90612d24565b80156109b95780601f1061098e576101008083540402835291602001916109b9565b820191906000526020600020905b81548152906001019060200180831161099c57829003601f168201915b5050505050905090565b60006109ce82611a2a565b610a355760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a5c826110bd565b9050806001600160a01b0316836001600160a01b03161415610acb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a2c565b336001600160a01b0382161480610ae75750610ae78133610862565b610b595760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a2c565b610b64838383611a40565b505050565b610b64838383611a9c565b600c8181548110610b8457600080fd5b600091825260209091200154905081565b6000610ba083611108565b8210610bf95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a2c565b6000610c036108b0565b905060008060005b83811015610cac576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610c5d57805192505b876001600160a01b0316836001600160a01b03161415610c995786841415610c8b5750935061092b92505050565b83610c9581612d5f565b9450505b5080610ca481612d5f565b915050610c0b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a2c565b6000546001600160a01b03163314610d365760405162461bcd60e51b8152600401610a2c90612b94565b6011805460ff19169055565b6001811015610d935760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610a2c565b600254811115610dfc5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060448201526d32b9103a3930b739b0b1ba34b7b760911b6064820152608401610a2c565b60115460ff161515600114610e535760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f772100006044820152606401610a2c565b7f000000000000000000000000000000000000000000000000000000000000000081610e7d6108b0565b610e879190612c6e565b1115610ea55760405162461bcd60e51b8152600401610a2c90612b51565b610eae81611e20565b3414610f0d5760405162461bcd60e51b815260206004820152602860248201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6044820152671c88185b5bdd5b9d60c21b6064820152608401610a2c565b610f178282611e30565b5050565b610b64838383604051806020016040528060008152506115fc565b6000546001600160a01b03163314610f605760405162461bcd60e51b8152600401610a2c90612b94565b60005b81811015610b6457610f8d838281518110610f8057610f80612dba565b6020026020010151611358565b80610f9781612d5f565b915050610f63565b6000610fa96108b0565b82106110035760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a2c565b5090565b6000546001600160a01b031633146110315760405162461bcd60e51b8152600401610a2c90612b94565b60018110156110825760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610a2c565b600255565b6000546001600160a01b031633146110b15760405162461bcd60e51b8152600401610a2c90612b94565b610b64601083836125c9565b60006110c882611e4a565b5192915050565b6000546001600160a01b031633146110f95760405162461bcd60e51b8152600401610a2c90612b94565b6011805460ff19166001179055565b60006001600160a01b0382166111745760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a2c565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6000546001600160a01b031633146111c35760405162461bcd60e51b8152600401610a2c90612b94565b6111cd6000611f78565b565b6000546001600160a01b031633146111f95760405162461bcd60e51b8152600401610a2c90612b94565b6000471161120657600080fd5b6111cd611fc8565b600b818154811061121e57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b031633146112625760405162461bcd60e51b8152600401610a2c90612b94565b601255565b604080518082019091526000808252602082015261092b82611e4a565b60606004805461094090612d24565b6001600160a01b0382163314156112ec5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a2c565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146113825760405162461bcd60e51b8152600401610a2c90612b94565b7f00000000000000000000000000000000000000000000000000000000000000006113ab6117ba565b11156113c95760405162461bcd60e51b8152600401610a2c90612b51565b6113d4816001611e30565b50565b6000546001600160a01b031633146114015760405162461bcd60e51b8152600401610a2c90612b94565b6000811161140e57600080fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b15801561145157600080fd5b505afa158015611465573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114899190612a8d565b10156114e35760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610a2c565b60005b600d548110156115f657816001600160a01b031663a9059cbb600b838154811061151257611512612dba565b9060005260206000200160009054906101000a90046001600160a01b03166064600c858154811061154557611545612dba565b90600052602060002001548761155b9190612c9a565b6115659190612c86565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156115ab57600080fd5b505af11580156115bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e39190612964565b50806115ee81612d5f565b9150506114e6565b50505050565b611607848484611a9c565b61161384848484612056565b6115f65760405162461bcd60e51b8152600401610a2c90612bc9565b600a546001600160a01b031633146116895760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610a2c565b600a546001600160a01b03828116911614156116fa5760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610a2c565b600a80546001600160a01b0319166001600160a01b038316179055600b805482919060009061172b5761172b612dba565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b60606000611768611909565b9050600081511161178857604051806020016040528060008152506117b3565b8061179284612164565b6040516020016117a3929190612ad2565b6040516020818303038152906040525b9392505050565b60006108bf6117cc6001546000190190565b6001612261565b601080546117e090612d24565b80601f016020809104026020016040519081016040528092919081815260200182805461180c90612d24565b80156118595780601f1061182e57610100808354040283529160200191611859565b820191906000526020600020905b81548152906001019060200180831161183c57829003601f168201915b505050505081565b6000546001600160a01b0316331461188b5760405162461bcd60e51b8152600401610a2c90612b94565b601154610100900460ff16156118e35760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c656400000000006044820152606401610a2c565b80516118f6906010906020840190612649565b50506011805461ff001916610100179055565b60606010805461094090612d24565b600a546001600160a01b031633146111f95760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610a2c565b6060604051806080016040528060438152602001612e0b60439139905090565b6000546001600160a01b031633146119bc5760405162461bcd60e51b8152600401610a2c90612b94565b6001600160a01b038116611a215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a2c565b6113d481611f78565b60008160011115801561092b5750506001541190565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611aa782611e4a565b80519091506000906001600160a01b0316336001600160a01b03161480611ade575033611ad3846109c3565b6001600160a01b0316145b80611af057508151611af09033610862565b905080611b5a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a2c565b846001600160a01b031682600001516001600160a01b031614611bce5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a2c565b6001600160a01b038416611c325760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a2c565b611c426000848460000151611a40565b6001600160a01b0385166000908152600660205260408120805460019290611c749084906001600160801b0316612cb9565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526006602052604081208054600194509092611cc091859116612c4c565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526005909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611d47846001612c6e565b6000818152600560205260409020549091506001600160a01b0316611dd657611d6f81611a2a565b15611dd65760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600590935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60125460009061092b908361226d565b610f17828260405180602001604052806000815250612279565b60408051808201909152600080825260208201528180600111158015611e71575060015481105b15611f18576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611ec2579392505050565b50600019016000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611f13579392505050565b611ec2565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a2c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600d54811015610f1757612044600b8281548110611fec57611fec612dba565b9060005260206000200160009054906101000a90046001600160a01b03166064600c848154811061201f5761201f612dba565b9060005260206000200154856120359190612c9a565b61203f9190612c86565b612533565b8061204e81612d5f565b915050611fcc565b60006001600160a01b0384163b1561215857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061209a903390899088908890600401612b01565b602060405180830381600087803b1580156120b457600080fd5b505af19250505080156120e4575060408051601f3d908101601f191682019092526120e19181019061299e565b60015b61213e573d808015612112576040519150601f19603f3d011682016040523d82523d6000602084013e612117565b606091505b5080516121365760405162461bcd60e51b8152600401610a2c90612bc9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061215c565b5060015b949350505050565b6060816121885750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121b2578061219c81612d5f565b91506121ab9050600a83612c86565b915061218c565b6000816001600160401b038111156121cc576121cc612dd0565b6040519080825280601f01601f1916602001820160405280156121f6576020820181803683370190505b5090505b841561215c5761220b600183612ce1565b9150612218600a86612d7a565b612223906030612c6e565b60f81b81838151811061223857612238612dba565b60200101906001600160f81b031916908160001a90535061225a600a86612c86565b94506121fa565b60006117b38284612c6e565b60006117b38284612c9a565b6001546001600160a01b0384166122dc5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a2c565b6122e581611a2a565b156123325760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a2c565b60025483111561238f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a2c565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906123eb908790612c4c565b6001600160801b031681526020018583602001516124099190612c4c565b6001600160801b039081169091526001600160a01b0380881660008181526006602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156125285760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124ec6000888488612056565b6125085760405162461bcd60e51b8152600401610a2c90612bc9565b8161251281612d5f565b925050808061252090612d5f565b91505061249f565b506001819055611e18565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612580576040519150601f19603f3d011682016040523d82523d6000602084013e612585565b606091505b5050905080610b645760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610a2c565b8280546125d590612d24565b90600052602060002090601f0160209004810192826125f7576000855561263d565b82601f106126105782800160ff1982351617855561263d565b8280016001018555821561263d579182015b8281111561263d578235825591602001919060010190612622565b506110039291506126bd565b82805461265590612d24565b90600052602060002090601f016020900481019282612677576000855561263d565b82601f1061269057805160ff191683800117855561263d565b8280016001018555821561263d579182015b8281111561263d5782518255916020019190600101906126a2565b5b8082111561100357600081556001016126be565b60006001600160401b038311156126eb576126eb612dd0565b6126fe601f8401601f1916602001612c1c565b905082815283838301111561271257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461274057600080fd5b919050565b60006020828403121561275757600080fd5b6117b382612729565b6000806040838503121561277357600080fd5b61277c83612729565b915061278a60208401612729565b90509250929050565b6000806000606084860312156127a857600080fd5b6127b184612729565b92506127bf60208501612729565b9150604084013590509250925092565b600080600080608085870312156127e557600080fd5b6127ee85612729565b93506127fc60208601612729565b92506040850135915060608501356001600160401b0381111561281e57600080fd5b8501601f8101871361282f57600080fd5b61283e878235602084016126d2565b91505092959194509250565b6000806040838503121561285d57600080fd5b61286683612729565b9150602083013561287681612de6565b809150509250929050565b6000806040838503121561289457600080fd5b61289d83612729565b946020939093013593505050565b600080604083850312156128be57600080fd5b82356001600160401b03808211156128d557600080fd5b818501915085601f8301126128e957600080fd5b81356020828211156128fd576128fd612dd0565b8160051b925061290e818401612c1c565b8281528181019085830185870184018b101561292957600080fd5b600096505b848710156129535761293f81612729565b83526001969096019591830191830161292e565b509997909101359750505050505050565b60006020828403121561297657600080fd5b81516117b381612de6565b60006020828403121561299357600080fd5b81356117b381612df4565b6000602082840312156129b057600080fd5b81516117b381612df4565b600080602083850312156129ce57600080fd5b82356001600160401b03808211156129e557600080fd5b818501915085601f8301126129f957600080fd5b813581811115612a0857600080fd5b866020828501011115612a1a57600080fd5b60209290920196919550909350505050565b600060208284031215612a3e57600080fd5b81356001600160401b03811115612a5457600080fd5b8201601f81018413612a6557600080fd5b61215c848235602084016126d2565b600060208284031215612a8657600080fd5b5035919050565b600060208284031215612a9f57600080fd5b5051919050565b60008151808452612abe816020860160208601612cf8565b601f01601f19169290920160200192915050565b60008351612ae4818460208801612cf8565b835190830190612af8818360208801612cf8565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b3490830184612aa6565b9695505050505050565b6020815260006117b36020830184612aa6565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203660408201526239363960e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612c4457612c44612dd0565b604052919050565b60006001600160801b03808316818516808303821115612af857612af8612d8e565b60008219821115612c8157612c81612d8e565b500190565b600082612c9557612c95612da4565b500490565b6000816000190483118215151615612cb457612cb4612d8e565b500290565b60006001600160801b0383811690831681811015612cd957612cd9612d8e565b039392505050565b600082821015612cf357612cf3612d8e565b500390565b60005b83811015612d13578181015183820152602001612cfb565b838111156115f65750506000910152565b600181811c90821680612d3857607f821691505b60208210811415612d5957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d7357612d73612d8e565b5060010190565b600082612d8957612d89612da4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146113d457600080fd5b6001600160e01b0319811681146113d457600080fdfe697066733a2f2f516d6332613433435544384c4a527056576541745859593857594848716833666b4431775753727561344a4868452f6d657461646174612e6a736f6ea2646970667358221220eff6bbaa662e2c8eb6c7a3106fde78b2b005ffb8c5675fc678e36204f3c243fc64736f6c63430008070033697066733a2f2f516d536b4842724e56375a555641504d7a38574b4e4b645a4839357070366868734d754b736445727665556147772f
Deployed Bytecode
0x6080604052600436106102ad5760003560e01c8063715018a611610175578063b88d4fde116100dc578063cff4492311610095578063dcd4aa8b1161006f578063dcd4aa8b1461081d578063e8a3d48514610832578063e985e9c514610847578063f2fde38b1461089057600080fd5b8063cff44923146107d2578063d547cfb7146107f2578063d7224ba01461080757600080fd5b8063b88d4fde14610728578063bbd8556b14610748578063c5815c4114610768578063c87b56dd14610788578063caa0f92a146107a8578063cfc86f7b146107bd57600080fd5b806391b7f5ed1161012e57806391b7f5ed146106465780639231ab2a1461066657806395d89b41146106b3578063a22cb465146106c8578063a54dd93c146106e8578063b40ebceb1461070857600080fd5b8063715018a6146105ae578063853828b6146105c3578063891bbe73146105d85780638d859f3e146105f85780638da5cb5b1461060e5780638f4bb4971461062c57600080fd5b80633e3e0b121161021957806354214f69116101d257806354214f69146104fa578063547520fe1461051957806355f804b3146105395780636352211e146105595780636ba9fd381461057957806370a082311461058e57600080fd5b80633e3e0b121461043e57806340c10f191461045357806342842e0e1461046657806345c0f533146104865780634d5f4e76146104ba5780634f6ccce7146104da57600080fd5b806323b872dd1161026b57806323b872dd14610386578063286c8137146103a65780632913daa0146103c65780632f745c59146103dc57806338b90333146103fc5780633e07311c1461042857600080fd5b80629a9b7b146102b257806301ffc9a7146102da57806306fdde031461030a578063081812fc1461032c578063095ea7b31461036457806318160ddd146102b2575b600080fd5b3480156102be57600080fd5b506102c76108b0565b6040519081526020015b60405180910390f35b3480156102e657600080fd5b506102fa6102f5366004612981565b6108c4565b60405190151581526020016102d1565b34801561031657600080fd5b5061031f610931565b6040516102d19190612b3e565b34801561033857600080fd5b5061034c610347366004612a74565b6109c3565b6040516001600160a01b0390911681526020016102d1565b34801561037057600080fd5b5061038461037f366004612881565b610a51565b005b34801561039257600080fd5b506103846103a1366004612793565b610b69565b3480156103b257600080fd5b506102c76103c1366004612a74565b610b74565b3480156103d257600080fd5b506102c760025481565b3480156103e857600080fd5b506102c76103f7366004612881565b610b95565b34801561040857600080fd5b50600f546104169060ff1681565b60405160ff90911681526020016102d1565b34801561043457600080fd5b506102c7600d5481565b34801561044a57600080fd5b50610384610d0c565b610384610461366004612881565b610d42565b34801561047257600080fd5b50610384610481366004612793565b610f1b565b34801561049257600080fd5b506102c77f0000000000000000000000000000000000000000000000000000000000001b3981565b3480156104c657600080fd5b506103846104d53660046128ab565b610f36565b3480156104e657600080fd5b506102c76104f5366004612a74565b610f9f565b34801561050657600080fd5b506011546102fa90610100900460ff1681565b34801561052557600080fd5b50610384610534366004612a74565b611007565b34801561054557600080fd5b506103846105543660046129bb565b611087565b34801561056557600080fd5b5061034c610574366004612a74565b6110bd565b34801561058557600080fd5b506103846110cf565b34801561059a57600080fd5b506102c76105a9366004612745565b611108565b3480156105ba57600080fd5b50610384611199565b3480156105cf57600080fd5b506103846111cf565b3480156105e457600080fd5b5061034c6105f3366004612a74565b61120e565b34801561060457600080fd5b506102c760125481565b34801561061a57600080fd5b506000546001600160a01b031661034c565b34801561063857600080fd5b506011546102fa9060ff1681565b34801561065257600080fd5b50610384610661366004612a74565b611238565b34801561067257600080fd5b50610686610681366004612a74565b611267565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016102d1565b3480156106bf57600080fd5b5061031f611284565b3480156106d457600080fd5b506103846106e336600461284a565b611293565b3480156106f457600080fd5b50610384610703366004612745565b611358565b34801561071457600080fd5b50610384610723366004612881565b6113d7565b34801561073457600080fd5b506103846107433660046127cf565b6115fc565b34801561075457600080fd5b50610384610763366004612745565b61162f565b34801561077457600080fd5b50600a5461034c906001600160a01b031681565b34801561079457600080fd5b5061031f6107a3366004612a74565b61175c565b3480156107b457600080fd5b506102c76117ba565b3480156107c957600080fd5b5061031f6117d3565b3480156107de57600080fd5b506103846107ed366004612a2c565b611861565b3480156107fe57600080fd5b5061031f611909565b34801561081357600080fd5b506102c760095481565b34801561082957600080fd5b50610384611918565b34801561083e57600080fd5b5061031f611972565b34801561085357600080fd5b506102fa610862366004612760565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561089c57600080fd5b506103846108ab366004612745565b611992565b60006108bf6001546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b14806108f557506001600160e01b03198216635b5e139f60e01b145b8061091057506001600160e01b0319821663780e9d6360e01b145b8061092b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461094090612d24565b80601f016020809104026020016040519081016040528092919081815260200182805461096c90612d24565b80156109b95780601f1061098e576101008083540402835291602001916109b9565b820191906000526020600020905b81548152906001019060200180831161099c57829003601f168201915b5050505050905090565b60006109ce82611a2a565b610a355760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a5c826110bd565b9050806001600160a01b0316836001600160a01b03161415610acb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a2c565b336001600160a01b0382161480610ae75750610ae78133610862565b610b595760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a2c565b610b64838383611a40565b505050565b610b64838383611a9c565b600c8181548110610b8457600080fd5b600091825260209091200154905081565b6000610ba083611108565b8210610bf95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a2c565b6000610c036108b0565b905060008060005b83811015610cac576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610c5d57805192505b876001600160a01b0316836001600160a01b03161415610c995786841415610c8b5750935061092b92505050565b83610c9581612d5f565b9450505b5080610ca481612d5f565b915050610c0b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a2c565b6000546001600160a01b03163314610d365760405162461bcd60e51b8152600401610a2c90612b94565b6011805460ff19169055565b6001811015610d935760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610a2c565b600254811115610dfc5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060448201526d32b9103a3930b739b0b1ba34b7b760911b6064820152608401610a2c565b60115460ff161515600114610e535760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f772100006044820152606401610a2c565b7f0000000000000000000000000000000000000000000000000000000000001b3981610e7d6108b0565b610e879190612c6e565b1115610ea55760405162461bcd60e51b8152600401610a2c90612b51565b610eae81611e20565b3414610f0d5760405162461bcd60e51b815260206004820152602860248201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6044820152671c88185b5bdd5b9d60c21b6064820152608401610a2c565b610f178282611e30565b5050565b610b64838383604051806020016040528060008152506115fc565b6000546001600160a01b03163314610f605760405162461bcd60e51b8152600401610a2c90612b94565b60005b81811015610b6457610f8d838281518110610f8057610f80612dba565b6020026020010151611358565b80610f9781612d5f565b915050610f63565b6000610fa96108b0565b82106110035760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a2c565b5090565b6000546001600160a01b031633146110315760405162461bcd60e51b8152600401610a2c90612b94565b60018110156110825760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610a2c565b600255565b6000546001600160a01b031633146110b15760405162461bcd60e51b8152600401610a2c90612b94565b610b64601083836125c9565b60006110c882611e4a565b5192915050565b6000546001600160a01b031633146110f95760405162461bcd60e51b8152600401610a2c90612b94565b6011805460ff19166001179055565b60006001600160a01b0382166111745760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a2c565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6000546001600160a01b031633146111c35760405162461bcd60e51b8152600401610a2c90612b94565b6111cd6000611f78565b565b6000546001600160a01b031633146111f95760405162461bcd60e51b8152600401610a2c90612b94565b6000471161120657600080fd5b6111cd611fc8565b600b818154811061121e57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b031633146112625760405162461bcd60e51b8152600401610a2c90612b94565b601255565b604080518082019091526000808252602082015261092b82611e4a565b60606004805461094090612d24565b6001600160a01b0382163314156112ec5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a2c565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146113825760405162461bcd60e51b8152600401610a2c90612b94565b7f0000000000000000000000000000000000000000000000000000000000001b396113ab6117ba565b11156113c95760405162461bcd60e51b8152600401610a2c90612b51565b6113d4816001611e30565b50565b6000546001600160a01b031633146114015760405162461bcd60e51b8152600401610a2c90612b94565b6000811161140e57600080fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b15801561145157600080fd5b505afa158015611465573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114899190612a8d565b10156114e35760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610a2c565b60005b600d548110156115f657816001600160a01b031663a9059cbb600b838154811061151257611512612dba565b9060005260206000200160009054906101000a90046001600160a01b03166064600c858154811061154557611545612dba565b90600052602060002001548761155b9190612c9a565b6115659190612c86565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156115ab57600080fd5b505af11580156115bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e39190612964565b50806115ee81612d5f565b9150506114e6565b50505050565b611607848484611a9c565b61161384848484612056565b6115f65760405162461bcd60e51b8152600401610a2c90612bc9565b600a546001600160a01b031633146116895760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610a2c565b600a546001600160a01b03828116911614156116fa5760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610a2c565b600a80546001600160a01b0319166001600160a01b038316179055600b805482919060009061172b5761172b612dba565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b60606000611768611909565b9050600081511161178857604051806020016040528060008152506117b3565b8061179284612164565b6040516020016117a3929190612ad2565b6040516020818303038152906040525b9392505050565b60006108bf6117cc6001546000190190565b6001612261565b601080546117e090612d24565b80601f016020809104026020016040519081016040528092919081815260200182805461180c90612d24565b80156118595780601f1061182e57610100808354040283529160200191611859565b820191906000526020600020905b81548152906001019060200180831161183c57829003601f168201915b505050505081565b6000546001600160a01b0316331461188b5760405162461bcd60e51b8152600401610a2c90612b94565b601154610100900460ff16156118e35760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c656400000000006044820152606401610a2c565b80516118f6906010906020840190612649565b50506011805461ff001916610100179055565b60606010805461094090612d24565b600a546001600160a01b031633146111f95760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610a2c565b6060604051806080016040528060438152602001612e0b60439139905090565b6000546001600160a01b031633146119bc5760405162461bcd60e51b8152600401610a2c90612b94565b6001600160a01b038116611a215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a2c565b6113d481611f78565b60008160011115801561092b5750506001541190565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611aa782611e4a565b80519091506000906001600160a01b0316336001600160a01b03161480611ade575033611ad3846109c3565b6001600160a01b0316145b80611af057508151611af09033610862565b905080611b5a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a2c565b846001600160a01b031682600001516001600160a01b031614611bce5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a2c565b6001600160a01b038416611c325760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a2c565b611c426000848460000151611a40565b6001600160a01b0385166000908152600660205260408120805460019290611c749084906001600160801b0316612cb9565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526006602052604081208054600194509092611cc091859116612c4c565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526005909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611d47846001612c6e565b6000818152600560205260409020549091506001600160a01b0316611dd657611d6f81611a2a565b15611dd65760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600590935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60125460009061092b908361226d565b610f17828260405180602001604052806000815250612279565b60408051808201909152600080825260208201528180600111158015611e71575060015481105b15611f18576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611ec2579392505050565b50600019016000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611f13579392505050565b611ec2565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a2c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600d54811015610f1757612044600b8281548110611fec57611fec612dba565b9060005260206000200160009054906101000a90046001600160a01b03166064600c848154811061201f5761201f612dba565b9060005260206000200154856120359190612c9a565b61203f9190612c86565b612533565b8061204e81612d5f565b915050611fcc565b60006001600160a01b0384163b1561215857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061209a903390899088908890600401612b01565b602060405180830381600087803b1580156120b457600080fd5b505af19250505080156120e4575060408051601f3d908101601f191682019092526120e19181019061299e565b60015b61213e573d808015612112576040519150601f19603f3d011682016040523d82523d6000602084013e612117565b606091505b5080516121365760405162461bcd60e51b8152600401610a2c90612bc9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061215c565b5060015b949350505050565b6060816121885750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121b2578061219c81612d5f565b91506121ab9050600a83612c86565b915061218c565b6000816001600160401b038111156121cc576121cc612dd0565b6040519080825280601f01601f1916602001820160405280156121f6576020820181803683370190505b5090505b841561215c5761220b600183612ce1565b9150612218600a86612d7a565b612223906030612c6e565b60f81b81838151811061223857612238612dba565b60200101906001600160f81b031916908160001a90535061225a600a86612c86565b94506121fa565b60006117b38284612c6e565b60006117b38284612c9a565b6001546001600160a01b0384166122dc5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a2c565b6122e581611a2a565b156123325760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a2c565b60025483111561238f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a2c565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906123eb908790612c4c565b6001600160801b031681526020018583602001516124099190612c4c565b6001600160801b039081169091526001600160a01b0380881660008181526006602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156125285760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124ec6000888488612056565b6125085760405162461bcd60e51b8152600401610a2c90612bc9565b8161251281612d5f565b925050808061252090612d5f565b91505061249f565b506001819055611e18565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612580576040519150601f19603f3d011682016040523d82523d6000602084013e612585565b606091505b5050905080610b645760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610a2c565b8280546125d590612d24565b90600052602060002090601f0160209004810192826125f7576000855561263d565b82601f106126105782800160ff1982351617855561263d565b8280016001018555821561263d579182015b8281111561263d578235825591602001919060010190612622565b506110039291506126bd565b82805461265590612d24565b90600052602060002090601f016020900481019282612677576000855561263d565b82601f1061269057805160ff191683800117855561263d565b8280016001018555821561263d579182015b8281111561263d5782518255916020019190600101906126a2565b5b8082111561100357600081556001016126be565b60006001600160401b038311156126eb576126eb612dd0565b6126fe601f8401601f1916602001612c1c565b905082815283838301111561271257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461274057600080fd5b919050565b60006020828403121561275757600080fd5b6117b382612729565b6000806040838503121561277357600080fd5b61277c83612729565b915061278a60208401612729565b90509250929050565b6000806000606084860312156127a857600080fd5b6127b184612729565b92506127bf60208501612729565b9150604084013590509250925092565b600080600080608085870312156127e557600080fd5b6127ee85612729565b93506127fc60208601612729565b92506040850135915060608501356001600160401b0381111561281e57600080fd5b8501601f8101871361282f57600080fd5b61283e878235602084016126d2565b91505092959194509250565b6000806040838503121561285d57600080fd5b61286683612729565b9150602083013561287681612de6565b809150509250929050565b6000806040838503121561289457600080fd5b61289d83612729565b946020939093013593505050565b600080604083850312156128be57600080fd5b82356001600160401b03808211156128d557600080fd5b818501915085601f8301126128e957600080fd5b81356020828211156128fd576128fd612dd0565b8160051b925061290e818401612c1c565b8281528181019085830185870184018b101561292957600080fd5b600096505b848710156129535761293f81612729565b83526001969096019591830191830161292e565b509997909101359750505050505050565b60006020828403121561297657600080fd5b81516117b381612de6565b60006020828403121561299357600080fd5b81356117b381612df4565b6000602082840312156129b057600080fd5b81516117b381612df4565b600080602083850312156129ce57600080fd5b82356001600160401b03808211156129e557600080fd5b818501915085601f8301126129f957600080fd5b813581811115612a0857600080fd5b866020828501011115612a1a57600080fd5b60209290920196919550909350505050565b600060208284031215612a3e57600080fd5b81356001600160401b03811115612a5457600080fd5b8201601f81018413612a6557600080fd5b61215c848235602084016126d2565b600060208284031215612a8657600080fd5b5035919050565b600060208284031215612a9f57600080fd5b5051919050565b60008151808452612abe816020860160208601612cf8565b601f01601f19169290920160200192915050565b60008351612ae4818460208801612cf8565b835190830190612af8818360208801612cf8565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b3490830184612aa6565b9695505050505050565b6020815260006117b36020830184612aa6565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203660408201526239363960e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612c4457612c44612dd0565b604052919050565b60006001600160801b03808316818516808303821115612af857612af8612d8e565b60008219821115612c8157612c81612d8e565b500190565b600082612c9557612c95612da4565b500490565b6000816000190483118215151615612cb457612cb4612d8e565b500290565b60006001600160801b0383811690831681811015612cd957612cd9612d8e565b039392505050565b600082821015612cf357612cf3612d8e565b500390565b60005b83811015612d13578181015183820152602001612cfb565b838111156115f65750506000910152565b600181811c90821680612d3857607f821691505b60208210811415612d5957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d7357612d73612d8e565b5060010190565b600082612d8957612d89612da4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146113d457600080fd5b6001600160e01b0319811681146113d457600080fdfe697066733a2f2f516d6332613433435544384c4a527056576541745859593857594848716833666b4431775753727561344a4868452f6d657461646174612e6a736f6ea2646970667358221220eff6bbaa662e2c8eb6c7a3106fde78b2b005ffb8c5675fc678e36204f3c243fc64736f6c63430008070033
Deployed Bytecode Sourcemap
56886:262:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36068:90;;;;;;;;;;;;;:::i;:::-;;;20118:25:1;;;20106:2;20091:18;36068:90:0;;;;;;;;37833:370;;;;;;;;;;-1:-1:-1;37833:370:0;;;;;:::i;:::-;;:::i;:::-;;;7952:14:1;;7945:22;7927:41;;7915:2;7900:18;37833:370:0;7787:187:1;39898:94:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41319:204::-;;;;;;;;;;-1:-1:-1;41319:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6971:32:1;;;6953:51;;6941:2;6926:18;41319:204:0;6807:203:1;40882:379:0;;;;;;;;;;-1:-1:-1;40882:379:0;;;;;:::i;:::-;;:::i;:::-;;42169:142;;;;;;;;;;-1:-1:-1;42169:142:0;;;;;:::i;:::-;;:::i;50980:36::-;;;;;;;;;;-1:-1:-1;50980:36:0;;;;;:::i;:::-;;:::i;34400:27::-;;;;;;;;;;;;;;;;37025:744;;;;;;;;;;-1:-1:-1;37025:744:0;;;;;:::i;:::-;;:::i;53417:33::-;;;;;;;;;;-1:-1:-1;53417:33:0;;;;;;;;;;;20326:4:1;20314:17;;;20296:36;;20284:2;20269:18;53417:33:0;20154:184:1;51021:38:0;;;;;;;;;;;;;;;;55382:78;;;;;;;;;;;;;:::i;54741:548::-;;;;;;:::i;:::-;;:::i;42374:157::-;;;;;;;;;;-1:-1:-1;42374:157:0;;;;;:::i;:::-;;:::i;34356:39::-;;;;;;;;;;;;;;;54097:202;;;;;;;;;;-1:-1:-1;54097:202:0;;;;;:::i;:::-;;:::i;36557:177::-;;;;;;;;;;-1:-1:-1;36557:177:0;;;;;:::i;:::-;;:::i;53589:30::-;;;;;;;;;;-1:-1:-1;53589:30:0;;;;;;;;;;;55648:173;;;;;;;;;;-1:-1:-1;55648:173:0;;;;;:::i;:::-;;:::i;56522:106::-;;;;;;;;;;-1:-1:-1;56522:106:0;;;;;:::i;:::-;;:::i;39721:118::-;;;;;;;;;;-1:-1:-1;39721:118:0;;;;;:::i;:::-;;:::i;55297:77::-;;;;;;;;;;;;;:::i;38259:211::-;;;;;;;;;;-1:-1:-1;38259:211:0;;;;;:::i;:::-;;:::i;32631:103::-;;;;;;;;;;;;;:::i;51066:112::-;;;;;;;;;;;;;:::i;50895:80::-;;;;;;;;;;-1:-1:-1;50895:80:0;;;;;:::i;:::-;;:::i;53626:34::-;;;;;;;;;;;;;;;;31982:87;;;;;;;;;;-1:-1:-1;32028:7:0;32055:6;-1:-1:-1;;;;;32055:6:0;31982:87;;53552:30;;;;;;;;;;-1:-1:-1;53552:30:0;;;;;;;;55841:90;;;;;;;;;;-1:-1:-1;55841:90:0;;;;;:::i;:::-;;:::i;56636:135::-;;;;;;;;;;-1:-1:-1;56636:135:0;;;;;:::i;:::-;;:::i;:::-;;;;19837:13:1;;-1:-1:-1;;;;;19833:39:1;19815:58;;19933:4;19921:17;;;19915:24;-1:-1:-1;;;;;19911:49:1;19889:20;;;19882:79;;;;19788:18;56636:135:0;19605:362:1;40053:98:0;;;;;;;;;;;;;:::i;41587:274::-;;;;;;;;;;-1:-1:-1;41587:274:0;;;;;:::i;:::-;;:::i;53909:180::-;;;;;;;;;;-1:-1:-1;53909:180:0;;;;;:::i;:::-;;:::i;52143:422::-;;;;;;;;;;-1:-1:-1;52143:422:0;;;;;:::i;:::-;;:::i;42594:311::-;;;;;;;;;;-1:-1:-1;42594:311:0;;;;;:::i;:::-;;:::i;52891:229::-;;;;;;;;;;-1:-1:-1;52891:229:0;;;;;:::i;:::-;;:::i;50461:72::-;;;;;;;;;;-1:-1:-1;50461:72:0;;;;-1:-1:-1;;;;;50461:72:0;;;40214:294;;;;;;;;;;-1:-1:-1;40214:294:0;;;;;:::i;:::-;;:::i;36164:109::-;;;;;;;;;;;;;:::i;53457:86::-;;;;;;;;;;;;;:::i;56061:214::-;;;;;;;;;;-1:-1:-1;56061:214:0;;;;;:::i;:::-;;:::i;56415:99::-;;;;;;;;;;;;;:::i;47009:43::-;;;;;;;;;;;;;;;;51186:115;;;;;;;;;;;;;:::i;56993:152::-;;;;;;;;;;;;;:::i;41924:186::-;;;;;;;;;;-1:-1:-1;41924:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;42069:25:0;;;42046:4;42069:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41924:186;32887:201;;;;;;;;;;-1:-1:-1;32887:201:0;;;;;:::i;:::-;;:::i;36068:90::-;36115:7;36138:14;35891:1;36445:12;-1:-1:-1;;36445:30:0;;36356:132;36138:14;36131:21;;36068:90;:::o;37833:370::-;37960:4;-1:-1:-1;;;;;;37990:40:0;;-1:-1:-1;;;37990:40:0;;:99;;-1:-1:-1;;;;;;;38041:48:0;;-1:-1:-1;;;38041:48:0;37990:99;:160;;;-1:-1:-1;;;;;;;38100:50:0;;-1:-1:-1;;;38100:50:0;37990:160;:207;;;-1:-1:-1;;;;;;;;;;18476:40:0;;;38161:36;37976:221;37833:370;-1:-1:-1;;37833:370:0:o;39898:94::-;39952:13;39981:5;39974:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39898:94;:::o;41319:204::-;41387:7;41411:16;41419:7;41411;:16::i;:::-;41403:74;;;;-1:-1:-1;;;41403:74:0;;18990:2:1;41403:74:0;;;18972:21:1;19029:2;19009:18;;;19002:30;19068:34;19048:18;;;19041:62;-1:-1:-1;;;19119:18:1;;;19112:43;19172:19;;41403:74:0;;;;;;;;;-1:-1:-1;41493:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41493:24:0;;41319:204::o;40882:379::-;40951:13;40967:24;40983:7;40967:15;:24::i;:::-;40951:40;;41012:5;-1:-1:-1;;;;;41006:11:0;:2;-1:-1:-1;;;;;41006:11:0;;;40998:58;;;;-1:-1:-1;;;40998:58:0;;14281:2:1;40998:58:0;;;14263:21:1;14320:2;14300:18;;;14293:30;14359:34;14339:18;;;14332:62;-1:-1:-1;;;14410:18:1;;;14403:32;14452:19;;40998:58:0;14079:398:1;40998:58:0;30788:10;-1:-1:-1;;;;;41081:21:0;;;;:62;;-1:-1:-1;41106:37:0;41123:5;30788:10;41924:186;:::i;41106:37::-;41065:153;;;;-1:-1:-1;;;41065:153:0;;11901:2:1;41065:153:0;;;11883:21:1;11940:2;11920:18;;;11913:30;11979:34;11959:18;;;11952:62;12050:27;12030:18;;;12023:55;12095:19;;41065:153:0;11699:421:1;41065:153:0;41227:28;41236:2;41240:7;41249:5;41227:8;:28::i;:::-;40944:317;40882:379;;:::o;42169:142::-;42277:28;42287:4;42293:2;42297:7;42277:9;:28::i;50980:36::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50980:36:0;:::o;37025:744::-;37134:7;37169:16;37179:5;37169:9;:16::i;:::-;37161:5;:24;37153:71;;;;-1:-1:-1;;;37153:71:0;;8405:2:1;37153:71:0;;;8387:21:1;8444:2;8424:18;;;8417:30;8483:34;8463:18;;;8456:62;-1:-1:-1;;;8534:18:1;;;8527:32;8576:19;;37153:71:0;8203:398:1;37153:71:0;37231:22;37256:13;:11;:13::i;:::-;37231:38;;37276:19;37306:25;37356:9;37351:350;37375:14;37371:1;:18;37351:350;;;37405:31;37439:14;;;:11;:14;;;;;;;;;37405:48;;;;;;;;;-1:-1:-1;;;;;37405:48:0;;;;;-1:-1:-1;;;37405:48:0;;;-1:-1:-1;;;;;37405:48:0;;;;;;;;37466:28;37462:89;;37527:14;;;-1:-1:-1;37462:89:0;37584:5;-1:-1:-1;;;;;37563:26:0;:17;-1:-1:-1;;;;;37563:26:0;;37559:135;;;37621:5;37606:11;:20;37602:59;;;-1:-1:-1;37648:1:0;-1:-1:-1;37641:8:0;;-1:-1:-1;;;37641:8:0;37602:59;37671:13;;;;:::i;:::-;;;;37559:135;-1:-1:-1;37391:3:0;;;;:::i;:::-;;;;37351:350;;;-1:-1:-1;37707:56:0;;-1:-1:-1;;;37707:56:0;;17389:2:1;37707:56:0;;;17371:21:1;17428:2;17408:18;;;17401:30;17467:34;17447:18;;;17440:62;-1:-1:-1;;;17518:18:1;;;17511:44;17572:19;;37707:56:0;17187:410:1;55382:78:0;32028:7;32055:6;-1:-1:-1;;;;;32055:6:0;30788:10;32202:23;32194:68;;;;-1:-1:-1;;;32194:68:0;;;;;;;:::i;:::-;55433:11:::1;:19:::0;;-1:-1:-1;;55433:19:0::1;::::0;;55382:78::o;54741:548::-;54830:1;54819:7;:12;;54811:51;;;;-1:-1:-1;;;54811:51:0;;9975:2:1;54811:51:0;;;9957:21:1;10014:2;9994:18;;;9987:30;10053:28;10033:18;;;10026:56;10099:18;;54811:51:0;9773:350:1;54811:51:0;54892:12;;54881:7;:23;;54873:82;;;;-1:-1:-1;;;54873:82:0;;16618:2:1;54873:82:0;;;16600:21:1;16657:2;16637:18;;;16630:30;16696:34;16676:18;;;16669:62;-1:-1:-1;;;16747:18:1;;;16740:44;16801:19;;54873:82:0;16416:410:1;54873:82:0;54974:11;;;;:19;;:11;:19;54966:62;;;;-1:-1:-1;;;54966:62:0;;17804:2:1;54966:62:0;;;17786:21:1;17843:2;17823:18;;;17816:30;17882:32;17862:18;;;17855:60;17932:18;;54966:62:0;17602:354:1;54966:62:0;55087:14;55076:7;55057:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;55049:92;;;;-1:-1:-1;;;55049:92:0;;;;;;;:::i;:::-;55173:17;55182:7;55173:8;:17::i;:::-;55160:9;:30;55152:83;;;;-1:-1:-1;;;55152:83:0;;16209:2:1;55152:83:0;;;16191:21:1;16248:2;16228:18;;;16221:30;16287:34;16267:18;;;16260:62;-1:-1:-1;;;16338:18:1;;;16331:38;16386:19;;55152:83:0;16007:404:1;55152:83:0;55248:23;55258:3;55263:7;55248:9;:23::i;:::-;54741:548;;:::o;42374:157::-;42486:39;42503:4;42509:2;42513:7;42486:39;;;;;;;;;;;;:16;:39::i;54097:202::-;32028:7;32055:6;-1:-1:-1;;;;;32055:6:0;30788:10;32202:23;32194:68;;;;-1:-1:-1;;;32194:68:0;;;;;;;:::i;:::-;54204:6:::1;54200:92;54218:13;54214:1;:17;54200:92;;;54254:26;54266:10;54277:1;54266:13;;;;;;;;:::i;:::-;;;;;;;54254:11;:26::i;:::-;54233:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54200:92;;36557:177:::0;36624:7;36656:13;:11;:13::i;:::-;36648:5;:21;36640:69;;;;-1:-1:-1;;;36640:69:0;;10330:2:1;36640:69:0;;;10312:21:1;10369:2;10349:18;;;10342:30;10408:34;10388:18;;;10381:62;-1:-1:-1;;;10459:18:1;;;10452:33;10502:19;;36640:69:0;10128:399:1;36640:69:0;-1:-1:-1;36723:5:0;36557:177::o;55648:173::-;32028:7;32055:6;-1:-1:-1;;;;;32055:6:0;30788:10;32202:23;32194:68;;;;-1:-1:-1;;;32194:68:0;;;;;;;:::i;:::-;55741:1:::1;55726:11;:16;;55718:56;;;::::0;-1:-1:-1;;;55718:56:0;;8808:2:1;55718:56:0::1;::::0;::::1;8790:21:1::0;8847:2;8827:18;;;8820:30;8886:29;8866:18;;;8859:57;8933:18;;55718:56:0::1;8606:351:1::0;55718:56:0::1;55786:12;:26:::0;55648:173::o;56522:106::-;32028:7;32055:6;-1:-1:-1;;;;;32055:6:0;30788:10;32202:23;32194:68;;;;-1:-1:-1;;;32194:68:0;;;;;;;:::i;:::-;56597:23:::1;:13;56613:7:::0;;56597:23:::1;:::i;39721:118::-:0;39785:7;39808:20;39820:7;39808:11;:20::i;:::-;:25;;39721:118;-1:-1:-1;;39721:118:0:o;55297:77::-;32028:7;32055:6;-1:-1:-1;;;;;32055:6:0;30788:10;32202:23;32194:68;;;;-1:-1:-1;;;32194:68:0;;;;;;;:::i;:::-;55348:11:::1;:18:::0;;-1:-1:-1;;55348:18:0::1;55362:4;55348:18;::::0;;55297:77::o;38259:211::-;38323:7;-1:-1:-1;;;;;38347:19:0;;38339:75;;;;-1:-1:-1;;;38339:75:0;;12327:2:1;38339:75:0;;;12309:21:1;12366:2;12346:18;;;12339:30;12405:34;12385:18;;;12378:62;-1:-1:-1;;;12456:18:1;;;12449:41;12507:19;;38339:75:0;12125:407:1;38339:75:0;-1:-1:-1;;;;;;38436:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38436:27:0;;38259:211::o;32631:103::-;32028:7;32055:6;-1:-1:-1;;;;;32055:6:0;30788:10;32202:23;32194:68;;;;-1:-1:-1;;;32194:68:0;;;;;;;:::i;:::-;32696:30:::1;32723:1;32696:18;:30::i;:::-;32631:103::o:0;51066:112::-;32028:7;32055:6;-1:-1:-1;;;;;32055:6:0;30788:10;32202:23;32194:68;;;;-1:-1:-1;;;32194:68:0;;;;;;;:::i;:::-;51147:1:::1;51123:21;:25;51115:34;;;::::0;::::1;;51158:14;:12;:14::i;50895:80::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50895:80:0;;-1:-1:-1;50895:80:0;:::o;55841:90::-;32028:7;32055:6;-1:-1:-1;;;;;32055:6:0;30788:10;32202:23;32194:68;;;;-1:-1:-1;;;32194:68:0;;;;;;;:::i;:::-;55906:5:::1;:17:::0;55841:90::o;56636:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;56743:20:0;56755:7;56743:11;:20::i;40053:98::-;40109:13;40138:7;40131:14;;;;;:::i;41587:274::-;-1:-1:-1;;;;;41678:24:0;;30788:10;41678:24;;41670:63;;;;-1:-1:-1;;;41670:63:0;;13507:2:1;41670:63:0;;;13489:21:1;13546:2;13526:18;;;13519:30;13585:28;13565:18;;;13558:56;13631:18;;41670:63:0;13305:350:1;41670:63:0;30788:10;41742:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41742:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41742:53:0;;;;;;;;;;41807:48;;7927:41:1;;;41742:42:0;;30788:10;41807:48;;7900:18:1;41807:48:0;;;;;;;41587:274;;:::o;53909:180::-;32028:7;32055:6;-1:-1:-1;;;;;32055:6:0;30788:10;32202:23;32194:68;;;;-1:-1:-1;;;32194:68:0;;;;;;;:::i;:::-;53999:14:::1;53979:16;:14;:16::i;:::-;:34;;53971:82;;;;-1:-1:-1::0;;;53971:82:0::1;;;;;;;:::i;:::-;54064:17;54074:3;54079:1;54064:9;:17::i;:::-;53909:180:::0;:::o;52143:422::-;32028:7;32055:6;-1:-1:-1;;;;;32055:6:0;30788:10;32202:23;32194:68;;;;-1:-1:-1;;;32194:68:0;;;;;;;:::i;:::-;52252:1:::1;52242:7;:11;52234:20;;;::::0;::::1;;52321:38;::::0;-1:-1:-1;;;52321:38:0;;52353:4:::1;52321:38;::::0;::::1;6953:51:1::0;52291:14:0;;52363:7;;-1:-1:-1;;;;;52321:23:0;::::1;::::0;::::1;::::0;6926:18:1;;52321:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;52313:97;;;::::0;-1:-1:-1;;;52313:97:0;;9164:2:1;52313:97:0::1;::::0;::::1;9146:21:1::0;9203:2;9183:18;;;9176:30;9242:34;9222:18;;;9215:62;-1:-1:-1;;;9293:18:1;;;9286:33;9336:19;;52313:97:0::1;8962:399:1::0;52313:97:0::1;52423:6;52419:141;52437:19;;52433:1;:23;52419:141;;;52475:13;-1:-1:-1::0;;;;;52475:22:0::1;;52498:16;52515:1;52498:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;52498:19:0::1;52548:3;52530:11;52542:1;52530:14;;;;;;;;:::i;:::-;;;;;;;;;52520:7;:24;;;;:::i;:::-;52519:32;;;;:::i;:::-;52475:77;::::0;-1:-1:-1;;;;;;52475:77:0::1;::::0;;;;;;-1:-1:-1;;;;;7700:32:1;;;52475:77:0::1;::::0;::::1;7682:51:1::0;7749:18;;;7742:34;7655:18;;52475:77:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;52458:3:0;::::1;::::0;::::1;:::i;:::-;;;;52419:141;;;;52227:338;52143:422:::0;;:::o;42594:311::-;42731:28;42741:4;42747:2;42751:7;42731:9;:28::i;:::-;42782:48;42805:4;42811:2;42815:7;42824:5;42782:22;:48::i;:::-;42766:133;;;;-1:-1:-1;;;42766:133:0;;;;;;;:::i;52891:229::-;50590:12;;-1:-1:-1;;;;;50590:12:0;50576:10;:26;50568:67;;;;-1:-1:-1;;;50568:67:0;;11140:2:1;50568:67:0;;;11122:21:1;11179:2;11159:18;;;11152:30;11218;11198:18;;;11191:58;11266:18;;50568:67:0;10938:352:1;50568:67:0;52982:12:::1;::::0;-1:-1:-1;;;;;52967:27:0;;::::1;52982:12:::0;::::1;52967:27;;52959:82;;;::::0;-1:-1:-1;;;52959:82:0;;18163:2:1;52959:82:0::1;::::0;::::1;18145:21:1::0;18202:2;18182:18;;;18175:30;18241:34;18221:18;;;18214:62;-1:-1:-1;;;18292:18:1;;;18285:40;18342:19;;52959:82:0::1;17961:406:1::0;52959:82:0::1;53048:12;:26:::0;;-1:-1:-1;;;;;;53048:26:0::1;-1:-1:-1::0;;;;;53048:26:0;::::1;;::::0;;53081:16:::1;:19:::0;;53048:26;;53081:16;-1:-1:-1;;53081:19:0::1;;;;:::i;:::-;;;;;;;;;:33;;;;;-1:-1:-1::0;;;;;53081:33:0::1;;;;;-1:-1:-1::0;;;;;53081:33:0::1;;;;;;52891:229:::0;:::o;40214:294::-;40312:13;40339:21;40363:10;:8;:10::i;:::-;40339:34;;40418:1;40400:7;40394:21;:25;:104;;;;;;;;;;;;;;;;;40455:7;40464:18;:7;:16;:18::i;:::-;40438:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40394:104;40380:118;40214:294;-1:-1:-1;;;40214:294:0:o;36164:109::-;36211:7;36236:31;36249:14;35891:1;36445:12;-1:-1:-1;;36445:30:0;;36356:132;36249:14;36265:1;36236:12;:31::i;53457:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56061:214::-;32028:7;32055:6;-1:-1:-1;;;;;32055:6:0;30788:10;32202:23;32194:68;;;;-1:-1:-1;;;32194:68:0;;;;;;;:::i;:::-;56145:10:::1;::::0;::::1;::::0;::::1;;;:19;56137:59;;;::::0;-1:-1:-1;;;56137:59:0;;17033:2:1;56137:59:0::1;::::0;::::1;17015:21:1::0;17072:2;17052:18;;;17045:30;17111:29;17091:18;;;17084:57;17158:18;;56137:59:0::1;16831:351:1::0;56137:59:0::1;56207:32:::0;;::::1;::::0;:13:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;56250:10:0::1;:17:::0;;-1:-1:-1;;56250:17:0::1;;;::::0;;56061:214::o;56415:99::-;56460:13;56493;56486:20;;;;;:::i;51186:115::-;50590:12;;-1:-1:-1;;;;;50590:12:0;50576:10;:26;50568:67;;;;-1:-1:-1;;;50568:67:0;;11140:2:1;50568:67:0;;;11122:21:1;11179:2;11159:18;;;11152:30;11218;11198:18;;;11191:58;11266:18;;50568:67:0;10938:352:1;56993:152:0;57037:13;57061:76;;;;;;;;;;;;;;;;;;;56993:152;:::o;32887:201::-;32028:7;32055:6;-1:-1:-1;;;;;32055:6:0;30788:10;32202:23;32194:68;;;;-1:-1:-1;;;32194:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32976:22:0;::::1;32968:73;;;::::0;-1:-1:-1;;;32968:73:0;;9568:2:1;32968:73:0::1;::::0;::::1;9550:21:1::0;9607:2;9587:18;;;9580:30;9646:34;9626:18;;;9619:62;-1:-1:-1;;;9697:18:1;;;9690:36;9743:19;;32968:73:0::1;9366:402:1::0;32968:73:0::1;33052:28;33071:8;33052:18;:28::i;43140:135::-:0;43197:4;43236:7;35891:1;43217:26;;:52;;;;-1:-1:-1;;43257:12:0;;-1:-1:-1;43247:22:0;43140:135::o;46831:172::-;46928:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;46928:29:0;-1:-1:-1;;;;;46928:29:0;;;;;;;;;46969:28;;46928:24;;46969:28;;;;;;;46831:172;;;:::o;45200:1529::-;45297:35;45335:20;45347:7;45335:11;:20::i;:::-;45406:18;;45297:58;;-1:-1:-1;45364:22:0;;-1:-1:-1;;;;;45390:34:0;30788:10;-1:-1:-1;;;;;45390:34:0;;:81;;;-1:-1:-1;30788:10:0;45435:20;45447:7;45435:11;:20::i;:::-;-1:-1:-1;;;;;45435:36:0;;45390:81;:142;;;-1:-1:-1;45499:18:0;;45482:50;;30788:10;41924:186;:::i;45482:50::-;45364:169;;45558:17;45542:101;;;;-1:-1:-1;;;45542:101:0;;13862:2:1;45542:101:0;;;13844:21:1;13901:2;13881:18;;;13874:30;13940:34;13920:18;;;13913:62;-1:-1:-1;;;13991:18:1;;;13984:48;14049:19;;45542:101:0;13660:414:1;45542:101:0;45690:4;-1:-1:-1;;;;;45668:26:0;:13;:18;;;-1:-1:-1;;;;;45668:26:0;;45652:98;;;;-1:-1:-1;;;45652:98:0;;12739:2:1;45652:98:0;;;12721:21:1;12778:2;12758:18;;;12751:30;12817:34;12797:18;;;12790:62;-1:-1:-1;;;12868:18:1;;;12861:36;12914:19;;45652:98:0;12537:402:1;45652:98:0;-1:-1:-1;;;;;45765:16:0;;45757:66;;;;-1:-1:-1;;;45757:66:0;;10734:2:1;45757:66:0;;;10716:21:1;10773:2;10753:18;;;10746:30;10812:34;10792:18;;;10785:62;-1:-1:-1;;;10863:18:1;;;10856:35;10908:19;;45757:66:0;10532:401:1;45757:66:0;45932:49;45949:1;45953:7;45962:13;:18;;;45932:8;:49::i;:::-;-1:-1:-1;;;;;45990:18:0;;;;;;:12;:18;;;;;:31;;46020:1;;45990:18;:31;;46020:1;;-1:-1:-1;;;;;45990:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;45990:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46028:16:0;;-1:-1:-1;46028:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;46028:16:0;;:29;;-1:-1:-1;;46028:29:0;;:::i;:::-;;;-1:-1:-1;;;;;46028:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46087:43:0;;;;;;;;-1:-1:-1;;;;;46087:43:0;;;;;-1:-1:-1;;;;;46113:15:0;46087:43;;;;;;;;;-1:-1:-1;46064:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;46064:66:0;-1:-1:-1;;;;;;46064:66:0;;;;;;;;;;;46380:11;46076:7;-1:-1:-1;46380:11:0;:::i;:::-;46443:1;46402:24;;;:11;:24;;;;;:29;46358:33;;-1:-1:-1;;;;;;46402:29:0;46398:236;;46460:20;46468:11;46460:7;:20::i;:::-;46456:171;;;46520:97;;;;;;;;46547:18;;-1:-1:-1;;;;;46520:97:0;;;;;;46578:28;;;;-1:-1:-1;;;;;46520:97:0;;;;;;;;;-1:-1:-1;46493:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;46493:124:0;-1:-1:-1;;;;;;46493:124:0;;;;;;;;;;;;46456:171;46666:7;46662:2;-1:-1:-1;;;;;46647:27:0;46656:4;-1:-1:-1;;;;;46647:27:0;;;;;;;;;;;46681:42;45290:1439;;;45200:1529;;;:::o;55939:108::-;56022:5;;55995:7;;56022:17;;56032:6;56022:9;:17::i;43281:98::-;43346:27;43356:2;43360:8;43346:27;;;;;;;;;;;;:9;:27::i;38722:945::-;-1:-1:-1;;;;;;;;;;;;;;;;;38846:7:0;;35891:1;38887:23;;:46;;;;;38921:12;;38914:4;:19;38887:46;38883:706;;;38950:31;38984:17;;;:11;:17;;;;;;;;;38950:51;;;;;;;;;-1:-1:-1;;;;;38950:51:0;;;;;-1:-1:-1;;;38950:51:0;;;-1:-1:-1;;;;;38950:51:0;;;;;;;;39020:28;39016:85;;39076:9;38722:945;-1:-1:-1;;;38722:945:0:o;39016:85::-;-1:-1:-1;;;39397:6:0;39434:17;;;;:11;:17;;;;;;;;;39422:29;;;;;;;;;-1:-1:-1;;;;;39422:29:0;;;;;-1:-1:-1;;;39422:29:0;;;-1:-1:-1;;;;;39422:29:0;;;;;;;;39474:28;39470:93;;39534:9;38722:945;-1:-1:-1;;;38722:945:0:o;39470:93::-;39365:213;;38883:706;39604:57;;-1:-1:-1;;;39604:57:0;;18574:2:1;39604:57:0;;;18556:21:1;18613:2;18593:18;;;18586:30;18652:34;18632:18;;;18625:62;-1:-1:-1;;;18703:18:1;;;18696:45;18758:19;;39604:57:0;18372:411:1;33246:191:0;33320:16;33339:6;;-1:-1:-1;;;;;33356:17:0;;;-1:-1:-1;;;;;;33356:17:0;;;;;;33389:40;;33339:6;;;;;;;33389:40;;33320:16;33389:40;33309:128;33246:191;:::o;51307:278::-;51366:21;51348:15;51404:176;51422:19;;51418:1;:23;51404:176;;;51462:108;51489:16;51506:1;51489:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51489:19:0;51554:3;51536:11;51548:1;51536:14;;;;;;;;:::i;:::-;;;;;;;;;51526:7;:24;;;;:::i;:::-;51525:32;;;;:::i;:::-;51462:10;:108::i;:::-;51443:3;;;;:::i;:::-;;;;51404:176;;48620:690;48757:4;-1:-1:-1;;;;;48774:13:0;;8651:19;:23;48770:535;;48813:72;;-1:-1:-1;;;48813:72:0;;-1:-1:-1;;;;;48813:36:0;;;;;:72;;30788:10;;48864:4;;48870:7;;48879:5;;48813:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48813:72:0;;;;;;;;-1:-1:-1;;48813:72:0;;;;;;;;;;;;:::i;:::-;;;48800:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49044:13:0;;49040:215;;49077:61;;-1:-1:-1;;;49077:61:0;;;;;;;:::i;49040:215::-;49223:6;49217:13;49208:6;49204:2;49200:15;49193:38;48800:464;-1:-1:-1;;;;;;48935:55:0;-1:-1:-1;;;48935:55:0;;-1:-1:-1;48928:62:0;;48770:535;-1:-1:-1;49293:4:0;48770:535;48620:690;;;;;;:::o;25539:723::-;25595:13;25816:10;25812:53;;-1:-1:-1;;25843:10:0;;;;;;;;;;;;-1:-1:-1;;;25843:10:0;;;;;25539:723::o;25812:53::-;25890:5;25875:12;25931:78;25938:9;;25931:78;;25964:8;;;;:::i;:::-;;-1:-1:-1;25987:10:0;;-1:-1:-1;25995:2:0;25987:10;;:::i;:::-;;;25931:78;;;26019:19;26051:6;-1:-1:-1;;;;;26041:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26041:17:0;;26019:39;;26069:154;26076:10;;26069:154;;26103:11;26113:1;26103:11;;:::i;:::-;;-1:-1:-1;26172:10:0;26180:2;26172:5;:10;:::i;:::-;26159:24;;:2;:24;:::i;:::-;26146:39;;26129:6;26136;26129:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;26129:56:0;;;;;;;;-1:-1:-1;26200:11:0;26209:2;26200:11;;:::i;:::-;;;26069:154;;2984:98;3042:7;3069:5;3073:1;3069;:5;:::i;3718:98::-;3776:7;3803:5;3807:1;3803;:5;:::i;43708:1272::-;43836:12;;-1:-1:-1;;;;;43863:16:0;;43855:62;;;;-1:-1:-1;;;43855:62:0;;15807:2:1;43855:62:0;;;15789:21:1;15846:2;15826:18;;;15819:30;15885:34;15865:18;;;15858:62;-1:-1:-1;;;15936:18:1;;;15929:31;15977:19;;43855:62:0;15605:397:1;43855:62:0;44054:21;44062:12;44054:7;:21::i;:::-;44053:22;44045:64;;;;-1:-1:-1;;;44045:64:0;;15449:2:1;44045:64:0;;;15431:21:1;15488:2;15468:18;;;15461:30;15527:31;15507:18;;;15500:59;15576:18;;44045:64:0;15247:353:1;44045:64:0;44136:12;;44124:8;:24;;44116:71;;;;-1:-1:-1;;;44116:71:0;;19404:2:1;44116:71:0;;;19386:21:1;19443:2;19423:18;;;19416:30;19482:34;19462:18;;;19455:62;-1:-1:-1;;;19533:18:1;;;19526:32;19575:19;;44116:71:0;19202:398:1;44116:71:0;-1:-1:-1;;;;;44299:16:0;;44266:30;44299:16;;;:12;:16;;;;;;;;;44266:49;;;;;;;;;-1:-1:-1;;;;;44266:49:0;;;;;-1:-1:-1;;;44266:49:0;;;;;;;;;;;44341:119;;;;;;;;44361:19;;44266:49;;44341:119;;;44361:39;;44391:8;;44361:39;:::i;:::-;-1:-1:-1;;;;;44341:119:0;;;;;44444:8;44409:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;44341:119:0;;;;;;-1:-1:-1;;;;;44322:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;44322:138:0;;;;;;;;;;;;44495:43;;;;;;;;;;-1:-1:-1;;;;;44521:15:0;44495:43;;;;;;;;44467:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;44467:71:0;-1:-1:-1;;;;;;44467:71:0;;;;;;;;;;;;;;;;;;44479:12;;44591:281;44615:8;44611:1;:12;44591:281;;;44644:38;;44669:12;;-1:-1:-1;;;;;44644:38:0;;;44661:1;;44644:38;;44661:1;;44644:38;44709:59;44740:1;44744:2;44748:12;44762:5;44709:22;:59::i;:::-;44691:150;;;;-1:-1:-1;;;44691:150:0;;;;;;;:::i;:::-;44850:14;;;;:::i;:::-;;;;44625:3;;;;;:::i;:::-;;;;44591:281;;;-1:-1:-1;44880:12:0;:27;;;44914:60;52143:422;51593:175;51666:12;51684:8;-1:-1:-1;;;;;51684:13:0;51705:7;51684:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51665:52;;;51734:7;51726:36;;;;-1:-1:-1;;;51726:36:0;;14684:2:1;51726:36:0;;;14666:21:1;14723:2;14703:18;;;14696:30;-1:-1:-1;;;14742:18:1;;;14735:46;14798:18;;51726:36:0;14482:340:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;-1:-1:-1;;;;;1811:6:1;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:315::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2320:28;2342:5;2320:28;:::i;:::-;2367:5;2357:15;;;2063:315;;;;;:::o;2383:254::-;2451:6;2459;2512:2;2500:9;2491:7;2487:23;2483:32;2480:52;;;2528:1;2525;2518:12;2480:52;2551:29;2570:9;2551:29;:::i;:::-;2541:39;2627:2;2612:18;;;;2599:32;;-1:-1:-1;;;2383:254:1:o;2642:1033::-;2735:6;2743;2796:2;2784:9;2775:7;2771:23;2767:32;2764:52;;;2812:1;2809;2802:12;2764:52;2852:9;2839:23;-1:-1:-1;;;;;2922:2:1;2914:6;2911:14;2908:34;;;2938:1;2935;2928:12;2908:34;2976:6;2965:9;2961:22;2951:32;;3021:7;3014:4;3010:2;3006:13;3002:27;2992:55;;3043:1;3040;3033:12;2992:55;3079:2;3066:16;3101:4;3124:2;3120;3117:10;3114:36;;;3130:18;;:::i;:::-;3176:2;3173:1;3169:10;3159:20;;3199:28;3223:2;3219;3215:11;3199:28;:::i;:::-;3261:15;;;3292:12;;;;3324:11;;;3354;;;3350:20;;3347:33;-1:-1:-1;3344:53:1;;;3393:1;3390;3383:12;3344:53;3415:1;3406:10;;3425:169;3439:2;3436:1;3433:9;3425:169;;;3496:23;3515:3;3496:23;:::i;:::-;3484:36;;3457:1;3450:9;;;;;3540:12;;;;3572;;3425:169;;;-1:-1:-1;3613:5:1;3650:18;;;;3637:32;;-1:-1:-1;;;;;;;2642:1033:1:o;3680:245::-;3747:6;3800:2;3788:9;3779:7;3775:23;3771:32;3768:52;;;3816:1;3813;3806:12;3768:52;3848:9;3842:16;3867:28;3889:5;3867:28;:::i;3930:245::-;3988:6;4041:2;4029:9;4020:7;4016:23;4012:32;4009:52;;;4057:1;4054;4047:12;4009:52;4096:9;4083:23;4115:30;4139:5;4115:30;:::i;4180:249::-;4249:6;4302:2;4290:9;4281:7;4277:23;4273:32;4270:52;;;4318:1;4315;4308:12;4270:52;4350:9;4344:16;4369:30;4393:5;4369:30;:::i;4434:592::-;4505:6;4513;4566:2;4554:9;4545:7;4541:23;4537:32;4534:52;;;4582:1;4579;4572:12;4534:52;4622:9;4609:23;-1:-1:-1;;;;;4692:2:1;4684:6;4681:14;4678:34;;;4708:1;4705;4698:12;4678:34;4746:6;4735:9;4731:22;4721:32;;4791:7;4784:4;4780:2;4776:13;4772:27;4762:55;;4813:1;4810;4803:12;4762:55;4853:2;4840:16;4879:2;4871:6;4868:14;4865:34;;;4895:1;4892;4885:12;4865:34;4940:7;4935:2;4926:6;4922:2;4918:15;4914:24;4911:37;4908:57;;;4961:1;4958;4951:12;4908:57;4992:2;4984:11;;;;;5014:6;;-1:-1:-1;4434:592:1;;-1:-1:-1;;;;4434:592:1:o;5031:450::-;5100:6;5153:2;5141:9;5132:7;5128:23;5124:32;5121:52;;;5169:1;5166;5159:12;5121:52;5209:9;5196:23;-1:-1:-1;;;;;5234:6:1;5231:30;5228:50;;;5274:1;5271;5264:12;5228:50;5297:22;;5350:4;5342:13;;5338:27;-1:-1:-1;5328:55:1;;5379:1;5376;5369:12;5328:55;5402:73;5467:7;5462:2;5449:16;5444:2;5440;5436:11;5402:73;:::i;5486:180::-;5545:6;5598:2;5586:9;5577:7;5573:23;5569:32;5566:52;;;5614:1;5611;5604:12;5566:52;-1:-1:-1;5637:23:1;;5486:180;-1:-1:-1;5486:180:1:o;5671:184::-;5741:6;5794:2;5782:9;5773:7;5769:23;5765:32;5762:52;;;5810:1;5807;5800:12;5762:52;-1:-1:-1;5833:16:1;;5671:184;-1:-1:-1;5671:184:1:o;5860:257::-;5901:3;5939:5;5933:12;5966:6;5961:3;5954:19;5982:63;6038:6;6031:4;6026:3;6022:14;6015:4;6008:5;6004:16;5982:63;:::i;:::-;6099:2;6078:15;-1:-1:-1;;6074:29:1;6065:39;;;;6106:4;6061:50;;5860:257;-1:-1:-1;;5860:257:1:o;6122:470::-;6301:3;6339:6;6333:13;6355:53;6401:6;6396:3;6389:4;6381:6;6377:17;6355:53;:::i;:::-;6471:13;;6430:16;;;;6493:57;6471:13;6430:16;6527:4;6515:17;;6493:57;:::i;:::-;6566:20;;6122:470;-1:-1:-1;;;;6122:470:1:o;7015:488::-;-1:-1:-1;;;;;7284:15:1;;;7266:34;;7336:15;;7331:2;7316:18;;7309:43;7383:2;7368:18;;7361:34;;;7431:3;7426:2;7411:18;;7404:31;;;7209:4;;7452:45;;7477:19;;7469:6;7452:45;:::i;:::-;7444:53;7015:488;-1:-1:-1;;;;;;7015:488:1:o;7979:219::-;8128:2;8117:9;8110:21;8091:4;8148:44;8188:2;8177:9;8173:18;8165:6;8148:44;:::i;11295:399::-;11497:2;11479:21;;;11536:2;11516:18;;;11509:30;11575:34;11570:2;11555:18;;11548:62;-1:-1:-1;;;11641:2:1;11626:18;;11619:33;11684:3;11669:19;;11295:399::o;12944:356::-;13146:2;13128:21;;;13165:18;;;13158:30;13224:34;13219:2;13204:18;;13197:62;13291:2;13276:18;;12944:356::o;14827:415::-;15029:2;15011:21;;;15068:2;15048:18;;;15041:30;15107:34;15102:2;15087:18;;15080:62;-1:-1:-1;;;15173:2:1;15158:18;;15151:49;15232:3;15217:19;;14827:415::o;20343:275::-;20414:2;20408:9;20479:2;20460:13;;-1:-1:-1;;20456:27:1;20444:40;;-1:-1:-1;;;;;20499:34:1;;20535:22;;;20496:62;20493:88;;;20561:18;;:::i;:::-;20597:2;20590:22;20343:275;;-1:-1:-1;20343:275:1:o;20623:253::-;20663:3;-1:-1:-1;;;;;20752:2:1;20749:1;20745:10;20782:2;20779:1;20775:10;20813:3;20809:2;20805:12;20800:3;20797:21;20794:47;;;20821:18;;:::i;20881:128::-;20921:3;20952:1;20948:6;20945:1;20942:13;20939:39;;;20958:18;;:::i;:::-;-1:-1:-1;20994:9:1;;20881:128::o;21014:120::-;21054:1;21080;21070:35;;21085:18;;:::i;:::-;-1:-1:-1;21119:9:1;;21014:120::o;21139:168::-;21179:7;21245:1;21241;21237:6;21233:14;21230:1;21227:21;21222:1;21215:9;21208:17;21204:45;21201:71;;;21252:18;;:::i;:::-;-1:-1:-1;21292:9:1;;21139:168::o;21312:246::-;21352:4;-1:-1:-1;;;;;21465:10:1;;;;21435;;21487:12;;;21484:38;;;21502:18;;:::i;:::-;21539:13;;21312:246;-1:-1:-1;;;21312:246:1:o;21563:125::-;21603:4;21631:1;21628;21625:8;21622:34;;;21636:18;;:::i;:::-;-1:-1:-1;21673:9:1;;21563:125::o;21693:258::-;21765:1;21775:113;21789:6;21786:1;21783:13;21775:113;;;21865:11;;;21859:18;21846:11;;;21839:39;21811:2;21804:10;21775:113;;;21906:6;21903:1;21900:13;21897:48;;;-1:-1:-1;;21941:1:1;21923:16;;21916:27;21693:258::o;21956:380::-;22035:1;22031:12;;;;22078;;;22099:61;;22153:4;22145:6;22141:17;22131:27;;22099:61;22206:2;22198:6;22195:14;22175:18;22172:38;22169:161;;;22252:10;22247:3;22243:20;22240:1;22233:31;22287:4;22284:1;22277:15;22315:4;22312:1;22305:15;22169:161;;21956:380;;;:::o;22341:135::-;22380:3;-1:-1:-1;;22401:17:1;;22398:43;;;22421:18;;:::i;:::-;-1:-1:-1;22468:1:1;22457:13;;22341:135::o;22481:112::-;22513:1;22539;22529:35;;22544:18;;:::i;:::-;-1:-1:-1;22578:9:1;;22481:112::o;22598:127::-;22659:10;22654:3;22650:20;22647:1;22640:31;22690:4;22687:1;22680:15;22714:4;22711:1;22704:15;22730:127;22791:10;22786:3;22782:20;22779:1;22772:31;22822:4;22819:1;22812:15;22846:4;22843:1;22836:15;22862:127;22923:10;22918:3;22914:20;22911:1;22904:31;22954:4;22951:1;22944:15;22978:4;22975:1;22968:15;22994:127;23055:10;23050:3;23046:20;23043:1;23036:31;23086:4;23083:1;23076:15;23110:4;23107:1;23100:15;23126:118;23212:5;23205:13;23198:21;23191:5;23188:32;23178:60;;23234:1;23231;23224:12;23249:131;-1:-1:-1;;;;;;23323:32:1;;23313:43;;23303:71;;23370:1;23367;23360:12
Swarm Source
ipfs://eff6bbaa662e2c8eb6c7a3106fde78b2b005ffb8c5675fc678e36204f3c243fc
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.