ERC-721
NFT
Overview
Max Total Supply
3,000 CB3000
Holders
1,628
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CB3000Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFT_Token
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-21 */ // SPDX-License-Identifier: MIT /* ...... ....... .cx0XX0kxoolc:,. .:dOKXXKOxdollc;.. ;0WMXx;... ...,;;;,,. 'OWMNko:'.. ...';:;,,. '0MMK; .'''. .kMMXc .'''.. :NMWl .... ,KMMx. ..... ;XMN: .... '0MMo .... .OMWo ..';cddllllc:;'. .xMMx. ...........,;,........ lWMO. .':ok0XNWMMMMMMMMMMNKkl. :XMK, ,OKKKKKKKKKXKXNXKXKKKKK0Oxo;. .kMWl .cx0NMMMMMMMMMMMMMMMMMMMMMK:.dWWd. ,0MMMMMMMMMMMMMMMMMMMMMMMMMMW0, '0MX: .:kXMMMMMMMMMNXXXNWMMMMMMMMMMM0'.kMNl. ,KMMMMMMMMMMMMMMMMMMMMMMMMMMMMMx. ,0MK; .oKWMMMMMMWKxl;'....,lKMMMMMMMMMX; .OMX0c ,KMMMMMMMNxccccccccclxXMMMMMMMMWo ,0MK: .oXMMMMMMMXd;. :NMMMWWXXKx. .kWMXl ,KMMMMMMMNl .xMMMMMMMWx. .kWXk0MMMMMMMXo. .llc:;'..''. .dXWNd. ;KMMMMMMMNo..........':kNMMMMMWXo. .xWMMMMMMMWx' .. ..lXWk';KMMMMMMMMWK0000000KKXWMMMMMMXk:... 'OWMMMMMMNo. .'. ,OWXNMMMMMMMMMMMMMMMMMMMMMMMMMMW0; .'. 'OMMMMMMMWo '' .kMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWO, .' .xWMMMMMMMNl ,lc;'. .,,. ;KMMMMMMMNxlolllooooox0WMMMMMMMMMd .'. :NMMMMMMMMMNx, ,xNMMMNKOx; .,;lKMMMMMMMNl .xMMMMMMMMWl ,' oMMMMMMMMMWXNXd' .:kNMMMMMMMXo. cNMMMMMMMMWk, .:0MMMMMMMNd. ,, oWMMMMMMMMWXNMMXd:cokXWMMMMMMWKo. ;xKMMMMMMMWXNMNx:,,,;;cld0NMMMMMMW0: ,; 'OMMMMMMMMMMMMMMMMMMMMMMMMMXk:. ;KMMMMMMMMMMWWMMMMWWWMMMMMMMMMMMW0c. :: .dXMMMMMMMMMMMMMMMMMMMNKxc. ;KMMMMMMMMMMMMMMMMMMMMMMMMMMMMN0d;. .o: .cdOKNWWMMMWWNXK0XMWO; ;0WWWWWWWWMWWWWWWWWWWWWMMMW0xo:'. :k' ..',;;;,,'....l0NXd;. .''''''''lXx,''''''''',cONWO:. .Oo .;xXN0o,. ,Kx. ,dKWKd;. .kO' .ckNN0o;. cNO. .:xXWKd:. ;XK, .ckXWKkl;. .cXMk. .:xKWXko:'. :0M0' .:d0NWX0xol::;;::cd0WMX: .;oOXWN0kdlc:;;:coONMNo ':okKNWMMMMMMMMMNk, .;lx0XWMMMMMMMMNO: ..,:loooool:' ..,:cloool:' */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.4; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ abstract contract IERC20 { function insRewardOnPurchase(address _user, uint256 _tokenId) virtual public; function stopRewardOnPurchase(address _user, uint256 _tokenId) virtual public; function claimTokenNftRewardMint (address _owner) public virtual returns (uint256 reward); //function claimTokenRewardBuyingExtras (address _owner, uint256 priceInTokens) public virtual returns (bool exito); } contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. // bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. //uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. //uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. //uint256 internal _burnCounter; // 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; /* CUSTOM VARS */ address public admin; uint256 constant public MAX_SUPPLY = 3000; string public baseURI = "ipfs://QmW8bM5G712LwthWgHSsG3YcsoyFDT3CBJ3yxaFip4GmPe/"; mapping (address => uint256 []) internal tokenIdsOwnedBy; mapping(address => bool) private whiteList; bool public whiteListIsOn = true; bool public mintingIsLive = false; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); admin = msg.sender; } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _startTokenId();//- _burnCounter } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } */ /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } */ /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } */ /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; // if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } //} } revert OwnerQueryForNonexistentToken(); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); //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 baseURI; } */ /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _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 virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex; // && !_ownerships[tokenId].burned; } 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; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { //RIO tokenIdsOwnedBy[to].push(updatedIndex); // Cyber reward are not active on minting // cyberToken.insRewardOnPurchase(to, updatedIndex); emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } //RIO delete preview ownership array for(uint index = 0;index < tokenIdsOwnedBy[from].length;index++){ if(tokenIdsOwnedBy[from][index]==tokenId){ delete tokenIdsOwnedBy[from][index]; break; } } tokenIdsOwnedBy[to].push(tokenId); if(cyberIsLive==true){ cyberToken.stopRewardOnPurchase(from,tokenId); cyberToken.insRewardOnPurchase(to, tokenId); } 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 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { 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 TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * 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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ 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. * And also called after one token has been burned. * * 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` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} function mintTokenNFT () external returns (bool success){ require((mintingIsLive) ,"Minting is not yet available"); require(totalSupply()+1 <= MAX_SUPPLY,"Collection is not more available"); if(whiteListIsOn==true){ require (whiteList[msg.sender],"Address is not whiteListed"); require ((tokenIdsOwnedBy[msg.sender].length + 1) <= 1,"WhiteListed can get only one NFT"); } else { require ((tokenIdsOwnedBy[msg.sender].length + 1) <= 2,"Can get only 2 NFT"); } _safeMint(msg.sender,1,''); return true; } function mintTokenAdmin (uint256 _numTokens) external returns (bool success){ require(msg.sender == admin,"Only admin can act here"); _safeMint(msg.sender,_numTokens,''); return true; } /* CONTRACT CUSTOM FUNCTIONS */ function includeToWhiteList(address[] memory _wallets ) public { require(msg.sender == admin,"Only admin can act here"); for(uint8 i = 0; i < _wallets.length; i++) { whiteList[_wallets[i]] = true; } } function setWhitelistStatus(bool _status) public { require(msg.sender == admin,"Only admin can act here"); whiteListIsOn = _status; mintingIsLive = true; } /* Reveal the collection*/ function setBaseURIpfs (string memory _baseUri) external returns (bool success){ require(msg.sender == admin,"Only Admin can act this operation"); baseURI = _baseUri; return true; } function getTokenIdsOwnedBy(address _owner) virtual public view returns (uint256 [] memory){ return tokenIdsOwnedBy[_owner]; } /** * Cyber token interactions : each NFT Ownership permits to claim daily $Cyber **/ bool public cyberIsLive = false; IERC20 public cyberToken; function setCyberAddress(address cyber) public { require(msg.sender == admin,"Only admin can act here"); cyberToken = IERC20(cyber); } function setCyberClaimable() public { require(msg.sender == admin,"Only admin can act here"); cyberIsLive = true; } function claimTokenNftRewardMint() virtual public{ require(cyberIsLive,"Claim Not yet available"); cyberToken.claimTokenNftRewardMint(msg.sender); } } contract NFT_Token is ERC721A { //Name symbol constructor() ERC721A("CyberBoyz3000", "CB3000") { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimTokenNftRewardMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cyberIsLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cyberToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIdsOwnedBy","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"includeToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mintTokenAdmin","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintTokenNFT","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingIsLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"setBaseURIpfs","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"cyber","type":"address"}],"name":"setCyberAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setCyberClaimable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListIsOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e06040526036608081815290620020a460a03980516200002991600891602090910190620000d0565b50600b805462ffffff191660011790553480156200004657600080fd5b50604080518082018252600d81526c04379626572426f797a3330303609c1b60208083019182528351808501909452600684526504342333030360d41b9084015281519192916200009a91600191620000d0565b508051620000b0906002906020840190620000d0565b5060016000555050600780546001600160a01b03191633179055620001b3565b828054620000de9062000176565b90600052602060002090601f0160209004810192826200010257600085556200014d565b82601f106200011d57805160ff19168380011785556200014d565b828001600101855582156200014d579182015b828111156200014d57825182559160200191906001019062000130565b506200015b9291506200015f565b5090565b5b808211156200015b576000815560010162000160565b600181811c908216806200018b57607f821691505b60208210811415620001ad57634e487b7160e01b600052602260045260246000fd5b50919050565b611ee180620001c36000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806363318f85116101045780639b62579b116100a2578063c87b56dd11610071578063c87b56dd146103cd578063e2e21501146103e0578063e985e9c5146103f3578063f851a4401461042f57600080fd5b80639b62579b1461038c578063a22cb46514610394578063a8917171146103a7578063b88d4fde146103ba57600080fd5b806370a08231116100de57806370a0823114610357578063816958e41461036a57806382c2d9201461037c57806395d89b411461038457600080fd5b806363318f851461031c5780636352211e1461033c5780636c0360eb1461034f57600080fd5b80631fcc806c1161017c57806342842e0e1161014b57806342842e0e146102c9578063448b8be8146102dc5780634a999118146102f65780634e60cd081461030957600080fd5b80631fcc806c1461029857806323b872dd146102a557806332cb6b0c146102b85780633b799e3b146102c157600080fd5b8063095ea7b3116101b8578063095ea7b3146102475780630b6bb6f51461025c57806312ae4ea61461026f57806318160ddd1461028257600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611aa4565b610442565b60405190151581526020015b60405180910390f35b61020f610494565b6040516101fe9190611cc9565b61022f61022a366004611b27565b610526565b6040516001600160a01b0390911681526020016101fe565b61025a6102553660046119ab565b61056a565b005b61025a61026a3660046119d5565b6105f8565b61025a61027d366004611874565b61069d565b600054600019015b6040519081526020016101fe565b600b546101f29060ff1681565b61025a6102b33660046118c9565b6106f3565b61028a610bb881565b6101f26106fe565b61025a6102d73660046118c9565b610922565b600b5461022f90630100000090046001600160a01b031681565b61025a610304366004611a89565b61093d565b600b546101f29062010000900460ff1681565b61032f61032a366004611874565b610989565b6040516101fe9190611c85565b61022f61034a366004611b27565b6109f5565b61020f610a07565b61028a610365366004611874565b610a95565b600b546101f290610100900460ff1681565b61025a610ae4565b61020f610bc2565b61025a610bd1565b61025a6103a2366004611981565b610c0e565b6101f26103b5366004611ade565b610ca4565b61025a6103c8366004611905565b610d27565b61020f6103db366004611b27565b610d78565b6101f26103ee366004611b27565b610dfb565b6101f2610401366004611896565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60075461022f906001600160a01b031681565b60006001600160e01b031982166380ac58cd60e01b148061047357506001600160e01b03198216635b5e139f60e01b145b8061048e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546104a390611db3565b80601f01602080910402602001604051908101604052809291908181526020018280546104cf90611db3565b801561051c5780601f106104f15761010080835404028352916020019161051c565b820191906000526020600020905b8154815290600101906020018083116104ff57829003601f168201915b5050505050905090565b600061053182610e4a565b61054e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610575826109f5565b9050806001600160a01b0316836001600160a01b031614156105aa5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105ca57506105c88133610401565b155b156105e8576040516367d9dca160e11b815260040160405180910390fd5b6105f3838383610e60565b505050565b6007546001600160a01b0316331461062b5760405162461bcd60e51b815260040161062290611cdc565b60405180910390fd5b60005b81518160ff161015610699576001600a6000848460ff168151811061065557610655611e69565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061069181611e09565b91505061062e565b5050565b6007546001600160a01b031633146106c75760405162461bcd60e51b815260040161062290611cdc565b600b80546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6105f3838383610ebc565b600b54600090610100900460ff166107585760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e67206973206e6f742079657420617661696c61626c65000000006044820152606401610622565b610bb86107686000546000190190565b610773906001611d44565b11156107c15760405162461bcd60e51b815260206004820181905260248201527f436f6c6c656374696f6e206973206e6f74206d6f726520617661696c61626c656044820152606401610622565b600b5460ff161515600114156108a057336000908152600a602052604090205460ff166108305760405162461bcd60e51b815260206004820152601a60248201527f41646472657373206973206e6f742077686974654c69737465640000000000006044820152606401610622565b3360009081526009602052604090205460019061084d9082611d44565b111561089b5760405162461bcd60e51b815260206004820181905260248201527f57686974654c69737465642063616e20676574206f6e6c79206f6e65204e46546044820152606401610622565b610901565b336000908152600960205260409020546002906108be906001611d44565b11156109015760405162461bcd60e51b815260206004820152601260248201527110d85b8819d95d081bdb9b1e480c8813919560721b6044820152606401610622565b61091c33600160405180602001604052806000815250611279565b50600190565b6105f383838360405180602001604052806000815250610d27565b6007546001600160a01b031633146109675760405162461bcd60e51b815260040161062290611cdc565b600b805461ff00199215159290921661ffff1990921691909117610100179055565b6001600160a01b0381166000908152600960209081526040918290208054835181840281018401909452808452606093928301828280156109e957602002820191906000526020600020905b8154815260200190600101908083116109d5575b50505050509050919050565b6000610a0082611286565b5192915050565b60088054610a1490611db3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4090611db3565b8015610a8d5780601f10610a6257610100808354040283529160200191610a8d565b820191906000526020600020905b815481529060010190602001808311610a7057829003601f168201915b505050505081565b60006001600160a01b038216610abe576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b600b5462010000900460ff16610b3c5760405162461bcd60e51b815260206004820152601760248201527f436c61696d204e6f742079657420617661696c61626c650000000000000000006044820152606401610622565b600b5460405163c766653760e01b815233600482015263010000009091046001600160a01b03169063c766653790602401602060405180830381600087803b158015610b8757600080fd5b505af1158015610b9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbf9190611b40565b50565b6060600280546104a390611db3565b6007546001600160a01b03163314610bfb5760405162461bcd60e51b815260040161062290611cdc565b600b805462ff0000191662010000179055565b6001600160a01b038216331415610c385760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546000906001600160a01b03163314610d0b5760405162461bcd60e51b815260206004820152602160248201527f4f6e6c792041646d696e2063616e206163742074686973206f7065726174696f6044820152603760f91b6064820152608401610622565b8151610d1e906008906020850190611757565b50600192915050565b610d32848484610ebc565b6001600160a01b0383163b15158015610d545750610d528484848461136f565b155b15610d72576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d8382610e4a565b610da057604051630a14c4b560e41b815260040160405180910390fd5b60088054610dad90611db3565b15159050610dca576040518060200160405280600081525061048e565b6008610dd583611467565b604051602001610de6929190611ba1565b60405160208183030381529060405292915050565b6007546000906001600160a01b03163314610e285760405162461bcd60e51b815260040161062290611cdc565b610e42338360405180602001604052806000815250611279565b506001919050565b60008160011115801561048e5750506000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ec782611286565b9050836001600160a01b031681600001516001600160a01b031614610efe5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f1c5750610f1c8533610401565b80610f37575033610f2c84610526565b6001600160a01b0316145b905080610f5757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f7e57604051633a954ecd60e21b815260040160405180910390fd5b610f8a60008487610e60565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611060576000548214611060578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505060005b6001600160a01b038616600090815260096020526040902054811015611110576001600160a01b03861660009081526009602052604090208054859190839081106110b3576110b3611e69565b906000526020600020015414156110fe576001600160a01b03861660009081526009602052604090208054829081106110ee576110ee611e69565b6000918252602082200155611110565b8061110881611dee565b915050611066565b506001600160a01b038416600090815260096020908152604082208054600180820183559184529190922001849055600b5462010000900460ff161515141561123057600b546040516305ff57cd60e51b81526001600160a01b0387811660048301526024820186905263010000009092049091169063bfeaf9a090604401600060405180830381600087803b1580156111a957600080fd5b505af11580156111bd573d6000803e3d6000fd5b5050600b546040516330c0d5fb60e11b81526001600160a01b0388811660048301526024820188905263010000009092049091169250636181abf69150604401600060405180830381600087803b15801561121757600080fd5b505af115801561122b573d6000803e3d6000fd5b505050505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6105f38383836001611565565b604080518082019091526000808252602082015281806001111580156112ad575060005481105b15611356576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156112ff579392505050565b50600019016000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611351579392505050565b6112ff565b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113a4903390899088908890600401611c48565b602060405180830381600087803b1580156113be57600080fd5b505af19250505080156113ee575060408051601f3d908101601f191682019092526113eb91810190611ac1565b60015b611449573d80801561141c576040519150601f19603f3d011682016040523d82523d6000602084013e611421565b606091505b508051611441576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161148b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114b5578061149f81611dee565b91506114ae9050600a83611d5c565b915061148f565b60008167ffffffffffffffff8111156114d0576114d0611e7f565b6040519080825280601f01601f1916602001820160405280156114fa576020820181803683370190505b5090505b841561145f5761150f600183611d70565b915061151c600a86611e29565b611527906030611d44565b60f81b81838151811061153c5761153c611e69565b60200101906001600160f81b031916908160001a90535061155e600a86611d5c565b94506114fe565b6000546001600160a01b03851661158e57604051622e076360e81b815260040160405180910390fd5b836115ac5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600390925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561165e57506001600160a01b0387163b15155b156116e7575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116af600088848060010195508861136f565b6116cc576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116645782600054146116e257600080fd5b61174e565b5b6001600160a01b038716600081815260096020908152604080832080546001818101835591855292842090920186905551908501949291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156116e8575b50600055611272565b82805461176390611db3565b90600052602060002090601f01602090048101928261178557600085556117cb565b82601f1061179e57805160ff19168380011785556117cb565b828001600101855582156117cb579182015b828111156117cb5782518255916020019190600101906117b0565b506117d79291506117db565b5090565b5b808211156117d757600081556001016117dc565b600067ffffffffffffffff83111561180a5761180a611e7f565b61181d601f8401601f1916602001611d13565b905082815283838301111561183157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461185f57600080fd5b919050565b8035801515811461185f57600080fd5b60006020828403121561188657600080fd5b61188f82611848565b9392505050565b600080604083850312156118a957600080fd5b6118b283611848565b91506118c060208401611848565b90509250929050565b6000806000606084860312156118de57600080fd5b6118e784611848565b92506118f560208501611848565b9150604084013590509250925092565b6000806000806080858703121561191b57600080fd5b61192485611848565b935061193260208601611848565b925060408501359150606085013567ffffffffffffffff81111561195557600080fd5b8501601f8101871361196657600080fd5b611975878235602084016117f0565b91505092959194509250565b6000806040838503121561199457600080fd5b61199d83611848565b91506118c060208401611864565b600080604083850312156119be57600080fd5b6119c783611848565b946020939093013593505050565b600060208083850312156119e857600080fd5b823567ffffffffffffffff80821115611a0057600080fd5b818501915085601f830112611a1457600080fd5b813581811115611a2657611a26611e7f565b8060051b9150611a37848301611d13565b8181528481019084860184860187018a1015611a5257600080fd5b600095505b83861015611a7c57611a6881611848565b835260019590950194918601918601611a57565b5098975050505050505050565b600060208284031215611a9b57600080fd5b61188f82611864565b600060208284031215611ab657600080fd5b813561188f81611e95565b600060208284031215611ad357600080fd5b815161188f81611e95565b600060208284031215611af057600080fd5b813567ffffffffffffffff811115611b0757600080fd5b8201601f81018413611b1857600080fd5b61145f848235602084016117f0565b600060208284031215611b3957600080fd5b5035919050565b600060208284031215611b5257600080fd5b5051919050565b60008151808452611b71816020860160208601611d87565b601f01601f19169290920160200192915050565b60008151611b97818560208601611d87565b9290920192915050565b600080845481600182811c915080831680611bbd57607f831692505b6020808410821415611bdd57634e487b7160e01b86526022600452602486fd5b818015611bf15760018114611c0257611c2f565b60ff19861689528489019650611c2f565b60008b81526020902060005b86811015611c275781548b820152908501908301611c0e565b505084890196505b505050505050611c3f8185611b85565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c7b90830184611b59565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611cbd57835183529284019291840191600101611ca1565b50909695505050505050565b60208152600061188f6020830184611b59565b60208082526017908201527f4f6e6c792061646d696e2063616e206163742068657265000000000000000000604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611d3c57611d3c611e7f565b604052919050565b60008219821115611d5757611d57611e3d565b500190565b600082611d6b57611d6b611e53565b500490565b600082821015611d8257611d82611e3d565b500390565b60005b83811015611da2578181015183820152602001611d8a565b83811115610d725750506000910152565b600181811c90821680611dc757607f821691505b60208210811415611de857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e0257611e02611e3d565b5060010190565b600060ff821660ff811415611e2057611e20611e3d565b60010192915050565b600082611e3857611e38611e53565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bbf57600080fdfea2646970667358221220d00d6725a8472927afc2222efbf03a0dcbc17cdb45979fd756ac0b4df7f549cc64736f6c63430008070033697066733a2f2f516d5738624d35473731324c777468576748537347335963736f794644543343424a3379786146697034476d50652f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806363318f85116101045780639b62579b116100a2578063c87b56dd11610071578063c87b56dd146103cd578063e2e21501146103e0578063e985e9c5146103f3578063f851a4401461042f57600080fd5b80639b62579b1461038c578063a22cb46514610394578063a8917171146103a7578063b88d4fde146103ba57600080fd5b806370a08231116100de57806370a0823114610357578063816958e41461036a57806382c2d9201461037c57806395d89b411461038457600080fd5b806363318f851461031c5780636352211e1461033c5780636c0360eb1461034f57600080fd5b80631fcc806c1161017c57806342842e0e1161014b57806342842e0e146102c9578063448b8be8146102dc5780634a999118146102f65780634e60cd081461030957600080fd5b80631fcc806c1461029857806323b872dd146102a557806332cb6b0c146102b85780633b799e3b146102c157600080fd5b8063095ea7b3116101b8578063095ea7b3146102475780630b6bb6f51461025c57806312ae4ea61461026f57806318160ddd1461028257600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611aa4565b610442565b60405190151581526020015b60405180910390f35b61020f610494565b6040516101fe9190611cc9565b61022f61022a366004611b27565b610526565b6040516001600160a01b0390911681526020016101fe565b61025a6102553660046119ab565b61056a565b005b61025a61026a3660046119d5565b6105f8565b61025a61027d366004611874565b61069d565b600054600019015b6040519081526020016101fe565b600b546101f29060ff1681565b61025a6102b33660046118c9565b6106f3565b61028a610bb881565b6101f26106fe565b61025a6102d73660046118c9565b610922565b600b5461022f90630100000090046001600160a01b031681565b61025a610304366004611a89565b61093d565b600b546101f29062010000900460ff1681565b61032f61032a366004611874565b610989565b6040516101fe9190611c85565b61022f61034a366004611b27565b6109f5565b61020f610a07565b61028a610365366004611874565b610a95565b600b546101f290610100900460ff1681565b61025a610ae4565b61020f610bc2565b61025a610bd1565b61025a6103a2366004611981565b610c0e565b6101f26103b5366004611ade565b610ca4565b61025a6103c8366004611905565b610d27565b61020f6103db366004611b27565b610d78565b6101f26103ee366004611b27565b610dfb565b6101f2610401366004611896565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60075461022f906001600160a01b031681565b60006001600160e01b031982166380ac58cd60e01b148061047357506001600160e01b03198216635b5e139f60e01b145b8061048e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546104a390611db3565b80601f01602080910402602001604051908101604052809291908181526020018280546104cf90611db3565b801561051c5780601f106104f15761010080835404028352916020019161051c565b820191906000526020600020905b8154815290600101906020018083116104ff57829003601f168201915b5050505050905090565b600061053182610e4a565b61054e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610575826109f5565b9050806001600160a01b0316836001600160a01b031614156105aa5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105ca57506105c88133610401565b155b156105e8576040516367d9dca160e11b815260040160405180910390fd5b6105f3838383610e60565b505050565b6007546001600160a01b0316331461062b5760405162461bcd60e51b815260040161062290611cdc565b60405180910390fd5b60005b81518160ff161015610699576001600a6000848460ff168151811061065557610655611e69565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061069181611e09565b91505061062e565b5050565b6007546001600160a01b031633146106c75760405162461bcd60e51b815260040161062290611cdc565b600b80546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6105f3838383610ebc565b600b54600090610100900460ff166107585760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e67206973206e6f742079657420617661696c61626c65000000006044820152606401610622565b610bb86107686000546000190190565b610773906001611d44565b11156107c15760405162461bcd60e51b815260206004820181905260248201527f436f6c6c656374696f6e206973206e6f74206d6f726520617661696c61626c656044820152606401610622565b600b5460ff161515600114156108a057336000908152600a602052604090205460ff166108305760405162461bcd60e51b815260206004820152601a60248201527f41646472657373206973206e6f742077686974654c69737465640000000000006044820152606401610622565b3360009081526009602052604090205460019061084d9082611d44565b111561089b5760405162461bcd60e51b815260206004820181905260248201527f57686974654c69737465642063616e20676574206f6e6c79206f6e65204e46546044820152606401610622565b610901565b336000908152600960205260409020546002906108be906001611d44565b11156109015760405162461bcd60e51b815260206004820152601260248201527110d85b8819d95d081bdb9b1e480c8813919560721b6044820152606401610622565b61091c33600160405180602001604052806000815250611279565b50600190565b6105f383838360405180602001604052806000815250610d27565b6007546001600160a01b031633146109675760405162461bcd60e51b815260040161062290611cdc565b600b805461ff00199215159290921661ffff1990921691909117610100179055565b6001600160a01b0381166000908152600960209081526040918290208054835181840281018401909452808452606093928301828280156109e957602002820191906000526020600020905b8154815260200190600101908083116109d5575b50505050509050919050565b6000610a0082611286565b5192915050565b60088054610a1490611db3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4090611db3565b8015610a8d5780601f10610a6257610100808354040283529160200191610a8d565b820191906000526020600020905b815481529060010190602001808311610a7057829003601f168201915b505050505081565b60006001600160a01b038216610abe576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b600b5462010000900460ff16610b3c5760405162461bcd60e51b815260206004820152601760248201527f436c61696d204e6f742079657420617661696c61626c650000000000000000006044820152606401610622565b600b5460405163c766653760e01b815233600482015263010000009091046001600160a01b03169063c766653790602401602060405180830381600087803b158015610b8757600080fd5b505af1158015610b9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbf9190611b40565b50565b6060600280546104a390611db3565b6007546001600160a01b03163314610bfb5760405162461bcd60e51b815260040161062290611cdc565b600b805462ff0000191662010000179055565b6001600160a01b038216331415610c385760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546000906001600160a01b03163314610d0b5760405162461bcd60e51b815260206004820152602160248201527f4f6e6c792041646d696e2063616e206163742074686973206f7065726174696f6044820152603760f91b6064820152608401610622565b8151610d1e906008906020850190611757565b50600192915050565b610d32848484610ebc565b6001600160a01b0383163b15158015610d545750610d528484848461136f565b155b15610d72576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d8382610e4a565b610da057604051630a14c4b560e41b815260040160405180910390fd5b60088054610dad90611db3565b15159050610dca576040518060200160405280600081525061048e565b6008610dd583611467565b604051602001610de6929190611ba1565b60405160208183030381529060405292915050565b6007546000906001600160a01b03163314610e285760405162461bcd60e51b815260040161062290611cdc565b610e42338360405180602001604052806000815250611279565b506001919050565b60008160011115801561048e5750506000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ec782611286565b9050836001600160a01b031681600001516001600160a01b031614610efe5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f1c5750610f1c8533610401565b80610f37575033610f2c84610526565b6001600160a01b0316145b905080610f5757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f7e57604051633a954ecd60e21b815260040160405180910390fd5b610f8a60008487610e60565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611060576000548214611060578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505060005b6001600160a01b038616600090815260096020526040902054811015611110576001600160a01b03861660009081526009602052604090208054859190839081106110b3576110b3611e69565b906000526020600020015414156110fe576001600160a01b03861660009081526009602052604090208054829081106110ee576110ee611e69565b6000918252602082200155611110565b8061110881611dee565b915050611066565b506001600160a01b038416600090815260096020908152604082208054600180820183559184529190922001849055600b5462010000900460ff161515141561123057600b546040516305ff57cd60e51b81526001600160a01b0387811660048301526024820186905263010000009092049091169063bfeaf9a090604401600060405180830381600087803b1580156111a957600080fd5b505af11580156111bd573d6000803e3d6000fd5b5050600b546040516330c0d5fb60e11b81526001600160a01b0388811660048301526024820188905263010000009092049091169250636181abf69150604401600060405180830381600087803b15801561121757600080fd5b505af115801561122b573d6000803e3d6000fd5b505050505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6105f38383836001611565565b604080518082019091526000808252602082015281806001111580156112ad575060005481105b15611356576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156112ff579392505050565b50600019016000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611351579392505050565b6112ff565b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113a4903390899088908890600401611c48565b602060405180830381600087803b1580156113be57600080fd5b505af19250505080156113ee575060408051601f3d908101601f191682019092526113eb91810190611ac1565b60015b611449573d80801561141c576040519150601f19603f3d011682016040523d82523d6000602084013e611421565b606091505b508051611441576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161148b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114b5578061149f81611dee565b91506114ae9050600a83611d5c565b915061148f565b60008167ffffffffffffffff8111156114d0576114d0611e7f565b6040519080825280601f01601f1916602001820160405280156114fa576020820181803683370190505b5090505b841561145f5761150f600183611d70565b915061151c600a86611e29565b611527906030611d44565b60f81b81838151811061153c5761153c611e69565b60200101906001600160f81b031916908160001a90535061155e600a86611d5c565b94506114fe565b6000546001600160a01b03851661158e57604051622e076360e81b815260040160405180910390fd5b836115ac5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600390925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561165e57506001600160a01b0387163b15155b156116e7575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116af600088848060010195508861136f565b6116cc576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116645782600054146116e257600080fd5b61174e565b5b6001600160a01b038716600081815260096020908152604080832080546001818101835591855292842090920186905551908501949291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156116e8575b50600055611272565b82805461176390611db3565b90600052602060002090601f01602090048101928261178557600085556117cb565b82601f1061179e57805160ff19168380011785556117cb565b828001600101855582156117cb579182015b828111156117cb5782518255916020019190600101906117b0565b506117d79291506117db565b5090565b5b808211156117d757600081556001016117dc565b600067ffffffffffffffff83111561180a5761180a611e7f565b61181d601f8401601f1916602001611d13565b905082815283838301111561183157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461185f57600080fd5b919050565b8035801515811461185f57600080fd5b60006020828403121561188657600080fd5b61188f82611848565b9392505050565b600080604083850312156118a957600080fd5b6118b283611848565b91506118c060208401611848565b90509250929050565b6000806000606084860312156118de57600080fd5b6118e784611848565b92506118f560208501611848565b9150604084013590509250925092565b6000806000806080858703121561191b57600080fd5b61192485611848565b935061193260208601611848565b925060408501359150606085013567ffffffffffffffff81111561195557600080fd5b8501601f8101871361196657600080fd5b611975878235602084016117f0565b91505092959194509250565b6000806040838503121561199457600080fd5b61199d83611848565b91506118c060208401611864565b600080604083850312156119be57600080fd5b6119c783611848565b946020939093013593505050565b600060208083850312156119e857600080fd5b823567ffffffffffffffff80821115611a0057600080fd5b818501915085601f830112611a1457600080fd5b813581811115611a2657611a26611e7f565b8060051b9150611a37848301611d13565b8181528481019084860184860187018a1015611a5257600080fd5b600095505b83861015611a7c57611a6881611848565b835260019590950194918601918601611a57565b5098975050505050505050565b600060208284031215611a9b57600080fd5b61188f82611864565b600060208284031215611ab657600080fd5b813561188f81611e95565b600060208284031215611ad357600080fd5b815161188f81611e95565b600060208284031215611af057600080fd5b813567ffffffffffffffff811115611b0757600080fd5b8201601f81018413611b1857600080fd5b61145f848235602084016117f0565b600060208284031215611b3957600080fd5b5035919050565b600060208284031215611b5257600080fd5b5051919050565b60008151808452611b71816020860160208601611d87565b601f01601f19169290920160200192915050565b60008151611b97818560208601611d87565b9290920192915050565b600080845481600182811c915080831680611bbd57607f831692505b6020808410821415611bdd57634e487b7160e01b86526022600452602486fd5b818015611bf15760018114611c0257611c2f565b60ff19861689528489019650611c2f565b60008b81526020902060005b86811015611c275781548b820152908501908301611c0e565b505084890196505b505050505050611c3f8185611b85565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c7b90830184611b59565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611cbd57835183529284019291840191600101611ca1565b50909695505050505050565b60208152600061188f6020830184611b59565b60208082526017908201527f4f6e6c792061646d696e2063616e206163742068657265000000000000000000604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611d3c57611d3c611e7f565b604052919050565b60008219821115611d5757611d57611e3d565b500190565b600082611d6b57611d6b611e53565b500490565b600082821015611d8257611d82611e3d565b500390565b60005b83811015611da2578181015183820152602001611d8a565b83811115610d725750506000910152565b600181811c90821680611dc757607f821691505b60208210811415611de857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e0257611e02611e3d565b5060010190565b600060ff821660ff811415611e2057611e20611e3d565b60010192915050565b600082611e3857611e38611e53565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bbf57600080fdfea2646970667358221220d00d6725a8472927afc2222efbf03a0dcbc17cdb45979fd756ac0b4df7f549cc64736f6c63430008070033
Deployed Bytecode Sourcemap
47102:126:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28948:305;;;;;;:::i;:::-;;:::i;:::-;;;8645:14:1;;8638:22;8620:41;;8608:2;8593:18;28948:305:0;;;;;;;;32077:100;;;:::i;:::-;;;;;;;:::i;33593:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7027:32:1;;;7009:51;;6997:2;6982:18;33593:204:0;6863:203:1;33156:371:0;;;;;;:::i;:::-;;:::i;:::-;;45592:245;;;;;;:::i;:::-;;:::i;46632:152::-;;;;;;:::i;:::-;;:::i;28195:305::-;28239:7;28433:13;-1:-1:-1;;28433:32:0;28195:305;;;12151:25:1;;;12139:2;12124:18;28195:305:0;12005:177:1;27606:32:0;;;;;;;;;34458:170;;;;;;:::i;:::-;;:::i;27359:41::-;;27396:4;27359:41;;44698:626;;;:::i;34699:185::-;;;;;;:::i;:::-;;:::i;46595:24::-;;;;;;;;-1:-1:-1;;;;;46595:24:0;;;45849:187;;;;;;:::i;:::-;;:::i;46557:31::-;;;;;;;;;;;;46301:134;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;31885:125::-;;;;;;:::i;:::-;;:::i;27407:80::-;;;:::i;29317:206::-;;;;;;:::i;:::-;;:::i;27645:33::-;;;;;;;;;;;;46930:165;;;:::i;32246:104::-;;;:::i;46792:132::-;;;:::i;33869:287::-;;;;;;:::i;:::-;;:::i;46078:215::-;;;;;;:::i;:::-;;:::i;34955:369::-;;;;;;:::i;:::-;;:::i;32421:320::-;;;;;;:::i;:::-;;:::i;45330:218::-;;;;;;:::i;:::-;;:::i;34227:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;34348:25:0;;;34324:4;34348:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34227:164;27332:20;;;;;-1:-1:-1;;;;;27332:20:0;;;28948:305;29050:4;-1:-1:-1;;;;;;29087:40:0;;-1:-1:-1;;;29087:40:0;;:105;;-1:-1:-1;;;;;;;29144:48:0;;-1:-1:-1;;;29144:48:0;29087:105;:158;;;-1:-1:-1;;;;;;;;;;18283:40:0;;;29209:36;29067:178;28948:305;-1:-1:-1;;28948:305:0:o;32077:100::-;32131:13;32164:5;32157:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32077:100;:::o;33593:204::-;33661:7;33686:16;33694:7;33686;:16::i;:::-;33681:64;;33711:34;;-1:-1:-1;;;33711:34:0;;;;;;;;;;;33681:64;-1:-1:-1;33765:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33765:24:0;;33593:204::o;33156:371::-;33229:13;33245:24;33261:7;33245:15;:24::i;:::-;33229:40;;33290:5;-1:-1:-1;;;;;33284:11:0;:2;-1:-1:-1;;;;;33284:11:0;;33280:48;;;33304:24;;-1:-1:-1;;;33304:24:0;;;;;;;;;;;33280:48;6850:10;-1:-1:-1;;;;;33345:21:0;;;;;;:63;;-1:-1:-1;33371:37:0;33388:5;6850:10;34227:164;:::i;33371:37::-;33370:38;33345:63;33341:138;;;33432:35;;-1:-1:-1;;;33432:35:0;;;;;;;;;;;33341:138;33491:28;33500:2;33504:7;33513:5;33491:8;:28::i;:::-;33218:309;33156:371;;:::o;45592:245::-;45688:5;;-1:-1:-1;;;;;45688:5:0;45674:10;:19;45666:54;;;;-1:-1:-1;;;45666:54:0;;;;;;;:::i;:::-;;;;;;;;;45735:7;45731:99;45752:8;:15;45748:1;:19;;;45731:99;;;45814:4;45789:9;:22;45799:8;45808:1;45799:11;;;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;45789:22:0;;;;;;;;;;;-1:-1:-1;45789:22:0;:29;;-1:-1:-1;;45789:29:0;;;;;;;;;;45769:3;;;;:::i;:::-;;;;45731:99;;;;45592:245;:::o;46632:152::-;46710:5;;-1:-1:-1;;;;;46710:5:0;46696:10;:19;46688:54;;;;-1:-1:-1;;;46688:54:0;;;;;;;:::i;:::-;46750:10;:26;;-1:-1:-1;;;;;46750:26:0;;;;;-1:-1:-1;;;;;;46750:26:0;;;;;;;;;46632:152::o;34458:170::-;34592:28;34602:4;34608:2;34612:7;34592:9;:28::i;44698:626::-;44776:13;;44742:12;;44776:13;;;;;44767:56;;;;-1:-1:-1;;;44767:56:0;;11137:2:1;44767:56:0;;;11119:21:1;11176:2;11156:18;;;11149:30;11215;11195:18;;;11188:58;11263:18;;44767:56:0;10935:352:1;44767:56:0;27396:4;44843:13;28239:7;28433:13;-1:-1:-1;;28433:32:0;;28195:305;44843:13;:15;;44857:1;44843:15;:::i;:::-;:29;;44835:73;;;;-1:-1:-1;;;44835:73:0;;11846:2:1;44835:73:0;;;11828:21:1;;;11865:18;;;11858:30;11924:34;11904:18;;;11897:62;11976:18;;44835:73:0;11644:356:1;44835:73:0;44926:13;;;;:19;;:13;:19;44923:324;;;44980:10;44970:21;;;;:9;:21;;;;;;;;44961:60;;;;-1:-1:-1;;;44961:60:0;;10782:2:1;44961:60:0;;;10764:21:1;10821:2;10801:18;;;10794:30;10860:28;10840:18;;;10833:56;10906:18;;44961:60:0;10580:350:1;44961:60:0;45062:10;45046:27;;;;:15;:27;;;;;:34;45089:1;;45046:38;;45089:1;45046:38;:::i;:::-;45045:45;;45036:90;;;;-1:-1:-1;;;45036:90:0;;9320:2:1;45036:90:0;;;9302:21:1;;;9339:18;;;9332:30;9398:34;9378:18;;;9371:62;9450:18;;45036:90:0;9118:356:1;45036:90:0;44923:324;;;45185:10;45169:27;;;;:15;:27;;;;;:34;45212:1;;45169:38;;45206:1;45169:38;:::i;:::-;45168:45;;45159:76;;;;-1:-1:-1;;;45159:76:0;;10435:2:1;45159:76:0;;;10417:21:1;10474:2;10454:18;;;10447:30;-1:-1:-1;;;10493:18:1;;;10486:48;10551:18;;45159:76:0;10233:342:1;45159:76:0;45257:26;45267:10;45278:1;45257:26;;;;;;;;;;;;:9;:26::i;:::-;-1:-1:-1;45312:4:0;;44698:626::o;34699:185::-;34837:39;34854:4;34860:2;34864:7;34837:39;;;;;;;;;;;;:16;:39::i;45849:187::-;45931:5;;-1:-1:-1;;;;;45931:5:0;45917:10;:19;45909:54;;;;-1:-1:-1;;;45909:54:0;;;;;;;:::i;:::-;45974:13;:23;;-1:-1:-1;;45974:23:0;;;46008:20;;;;-1:-1:-1;;46008:20:0;;;;;;;45974:23;46008:20;;;45849:187::o;46301:134::-;-1:-1:-1;;;;;46407:23:0;;;;;;:15;:23;;;;;;;;;46400:30;;;;;;;;;;;;;;;;;46375:17;;46400:30;;;46407:23;46400:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46301:134;;;:::o;31885:125::-;31949:7;31976:21;31989:7;31976:12;:21::i;:::-;:26;;31885:125;-1:-1:-1;;31885:125:0:o;27407:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29317:206::-;29381:7;-1:-1:-1;;;;;29405:19:0;;29401:60;;29433:28;;-1:-1:-1;;;29433:28:0;;;;;;;;;;;29401:60;-1:-1:-1;;;;;;29487:19:0;;;;;:12;:19;;;;;:27;;;;29317:206::o;46930:165::-;46998:11;;;;;;;46990:46;;;;-1:-1:-1;;;46990:46:0;;11494:2:1;46990:46:0;;;11476:21:1;11533:2;11513:18;;;11506:30;11572:25;11552:18;;;11545:53;11615:18;;46990:46:0;11292:347:1;46990:46:0;47044:10;;:46;;-1:-1:-1;;;47044:46:0;;47079:10;47044:46;;;7009:51:1;47044:10:0;;;;-1:-1:-1;;;;;47044:10:0;;:34;;6982:18:1;;47044:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46930:165::o;32246:104::-;32302:13;32335:7;32328:14;;;;;:::i;46792:132::-;46859:5;;-1:-1:-1;;;;;46859:5:0;46845:10;:19;46837:54;;;;-1:-1:-1;;;46837:54:0;;;;;;;:::i;:::-;46898:11;:18;;-1:-1:-1;;46898:18:0;;;;;46792:132::o;33869:287::-;-1:-1:-1;;;;;33968:24:0;;6850:10;33968:24;33964:54;;;34001:17;;-1:-1:-1;;;34001:17:0;;;;;;;;;;;33964:54;6850:10;34031:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34031:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34031:53:0;;;;;;;;;;34100:48;;8620:41:1;;;34031:42:0;;6850:10;34100:48;;8593:18:1;34100:48:0;;;;;;;33869:287;;:::o;46078:215::-;46192:5;;46146:12;;-1:-1:-1;;;;;46192:5:0;46178:10;:19;46170:64;;;;-1:-1:-1;;;46170:64:0;;10033:2:1;46170:64:0;;;10015:21:1;10072:2;10052:18;;;10045:30;10111:34;10091:18;;;10084:62;-1:-1:-1;;;10162:18:1;;;10155:31;10203:19;;46170:64:0;9831:397:1;46170:64:0;46245:18;;;;:7;;:18;;;;;:::i;:::-;-1:-1:-1;46281:4:0;;46078:215;-1:-1:-1;;46078:215:0:o;34955:369::-;35122:28;35132:4;35138:2;35142:7;35122:9;:28::i;:::-;-1:-1:-1;;;;;35165:13:0;;8481:19;:23;;35165:76;;;;;35185:56;35216:4;35222:2;35226:7;35235:5;35185:30;:56::i;:::-;35184:57;35165:76;35161:156;;;35265:40;;-1:-1:-1;;;35265:40:0;;;;;;;;;;;35161:156;34955:369;;;;:::o;32421:320::-;32494:13;32525:16;32533:7;32525;:16::i;:::-;32520:59;;32550:29;;-1:-1:-1;;;32550:29:0;;;;;;;;;;;32520:59;32652:7;32646:21;;;;;:::i;:::-;:26;;;-1:-1:-1;32646:87:0;;;;;;;;;;;;;;;;;32699:7;32708:18;:7;:16;:18::i;:::-;32682:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32639:94;32421:320;-1:-1:-1;;32421:320:0:o;45330:218::-;45440:5;;45394:12;;-1:-1:-1;;;;;45440:5:0;45426:10;:19;45418:54;;;;-1:-1:-1;;;45418:54:0;;;;;;;:::i;:::-;45483:35;45493:10;45504;45483:35;;;;;;;;;;;;:9;:35::i;:::-;-1:-1:-1;45536:4:0;;45330:218;-1:-1:-1;45330:218:0:o;35579:190::-;35636:4;35679:7;28052:1;35660:26;;:53;;;;-1:-1:-1;;35700:13:0;;-1:-1:-1;35690:23:0;35579:190::o;41706:196::-;41821:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41821:29:0;-1:-1:-1;;;;;41821:29:0;;;;;;;;;41866:28;;41821:24;;41866:28;;;;;;;41706:196;;;:::o;38924:2658::-;39039:35;39077:21;39090:7;39077:12;:21::i;:::-;39039:59;;39137:4;-1:-1:-1;;;;;39115:26:0;:13;:18;;;-1:-1:-1;;;;;39115:26:0;;39111:67;;39150:28;;-1:-1:-1;;;39150:28:0;;;;;;;;;;;39111:67;39191:22;6850:10;-1:-1:-1;;;;;39217:20:0;;;;:73;;-1:-1:-1;39254:36:0;39271:4;6850:10;34227:164;:::i;39254:36::-;39217:126;;;-1:-1:-1;6850:10:0;39307:20;39319:7;39307:11;:20::i;:::-;-1:-1:-1;;;;;39307:36:0;;39217:126;39191:153;;39362:17;39357:66;;39388:35;;-1:-1:-1;;;39388:35:0;;;;;;;;;;;39357:66;-1:-1:-1;;;;;39438:16:0;;39434:52;;39463:23;;-1:-1:-1;;;39463:23:0;;;;;;;;;;;39434:52;39607:35;39624:1;39628:7;39637:4;39607:8;:35::i;:::-;-1:-1:-1;;;;;39938:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39938:31:0;;;;;;;-1:-1:-1;;39938:31:0;;;;;;;39984:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39984:29:0;;;;;;;;;;;40064:20;;;:11;:20;;;;;;40099:18;;-1:-1:-1;;;;;;40132:49:0;;;;-1:-1:-1;;;40165:15:0;40132:49;;;;;;;;;;40455:11;;40515:24;;;;;40558:13;;40064:20;;40515:24;;40558:13;40554:384;;40768:13;;40753:11;:28;40749:174;;40806:20;;40875:28;;;;40849:54;;-1:-1:-1;;;40849:54:0;-1:-1:-1;;;;;;40849:54:0;;;-1:-1:-1;;;;;40806:20:0;;40849:54;;;;40749:174;39913:1057;;;41038:10;41034:228;-1:-1:-1;;;;;41061:21:0;;;;;;:15;:21;;;;;:28;41053:36;;41034:228;;;-1:-1:-1;;;;;41120:21:0;;;;;;:15;:21;;;;;:28;;41150:7;;41120:21;41142:5;;41120:28;;;;;;:::i;:::-;;;;;;;;;:37;41117:131;;;-1:-1:-1;;;;;41184:21:0;;;;;;:15;:21;;;;;:28;;41206:5;;41184:28;;;;;;:::i;:::-;;;;;;;;;41177:35;41227:5;;41117:131;41090:7;;;;:::i;:::-;;;;41034:228;;;-1:-1:-1;;;;;;41276:19:0;;;;;;:15;:19;;;;;;;:33;;;;;;;;;;;;;;;;;;;41327:11;;;;;;;:17;;;41324:155;;;41360:10;;:45;;-1:-1:-1;;;41360:45:0;;-1:-1:-1;;;;;7756:32:1;;;41360:45:0;;;7738:51:1;7805:18;;;7798:34;;;41360:10:0;;;;;;;;:31;;7711:18:1;;41360:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41420:10:0;;:43;;-1:-1:-1;;;41420:43:0;;-1:-1:-1;;;;;7756:32:1;;;41420:43:0;;;7738:51:1;7805:18;;;7798:34;;;41420:10:0;;;;;;;;-1:-1:-1;41420:30:0;;-1:-1:-1;7711:18:1;;41420:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41324:155;41513:7;41509:2;-1:-1:-1;;;;;41494:27:0;41503:4;-1:-1:-1;;;;;41494:27:0;;;;;;;;;;;41532:42;39028:2554;;38924:2658;;;:::o;36244:163::-;36367:32;36373:2;36377:8;36387:5;36394:4;36367:5;:32::i;30710:1113::-;-1:-1:-1;;;;;;;;;;;;;;;;;30821:7:0;;28052:1;30870:23;;:47;;;;;30904:13;;30897:4;:20;30870:47;30866:873;;;30938:31;30972:17;;;:11;:17;;;;;;;;;30938:51;;;;;;;;;-1:-1:-1;;;;;30938:51:0;;;;;-1:-1:-1;;;30938:51:0;;;;;;;;;;;;31060:28;31056:101;;31124:9;30710:1113;-1:-1:-1;;;30710:1113:0:o;31056:101::-;-1:-1:-1;;;31499:6:0;31544:17;;;;:11;:17;;;;;;;;;31532:29;;;;;;;;;-1:-1:-1;;;;;31532:29:0;;;;;-1:-1:-1;;;31532:29:0;;;;;;;;;;;;31592:28;31588:109;;31660:9;30710:1113;-1:-1:-1;;;30710:1113:0:o;31588:109::-;31459:261;;30866:873;31784:31;;-1:-1:-1;;;31784:31:0;;;;;;;;;;;42394:667;42578:72;;-1:-1:-1;;;42578:72:0;;42557:4;;-1:-1:-1;;;;;42578:36:0;;;;;:72;;6850:10;;42629:4;;42635:7;;42644:5;;42578:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42578:72:0;;;;;;;;-1:-1:-1;;42578:72:0;;;;;;;;;;;;:::i;:::-;;;42574:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42812:13:0;;42808:235;;42858:40;;-1:-1:-1;;;42858:40:0;;;;;;;;;;;42808:235;43001:6;42995:13;42986:6;42982:2;42978:15;42971:38;42574:480;-1:-1:-1;;;;;;42697:55:0;-1:-1:-1;;;42697:55:0;;-1:-1:-1;42574:480:0;42394:667;;;;;;:::o;4365:723::-;4421:13;4642:10;4638:53;;-1:-1:-1;;4669:10:0;;;;;;;;;;;;-1:-1:-1;;;4669:10:0;;;;;4365:723::o;4638:53::-;4716:5;4701:12;4757:78;4764:9;;4757:78;;4790:8;;;;:::i;:::-;;-1:-1:-1;4813:10:0;;-1:-1:-1;4821:2:0;4813:10;;:::i;:::-;;;4757:78;;;4845:19;4877:6;4867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4867:17:0;;4845:39;;4895:154;4902:10;;4895:154;;4929:11;4939:1;4929:11;;:::i;:::-;;-1:-1:-1;4998:10:0;5006:2;4998:5;:10;:::i;:::-;4985:24;;:2;:24;:::i;:::-;4972:39;;4955:6;4962;4955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4955:56:0;;;;;;;;-1:-1:-1;5026:11:0;5035:2;5026:11;;:::i;:::-;;;4895:154;;36666:2004;36805:20;36828:13;-1:-1:-1;;;;;36856:16:0;;36852:48;;36881:19;;-1:-1:-1;;;36881:19:0;;;;;;;;;;;36852:48;36915:13;36911:44;;36937:18;;-1:-1:-1;;;36937:18:0;;;;;;;;;;;36911:44;-1:-1:-1;;;;;37306:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37365:49:0;;37306:44;;;;;;;;37365:49;;;;-1:-1:-1;;37306:44:0;;;;;;37365:49;;;;;;;;;;;;;;;;37431:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37481:66:0;;;;-1:-1:-1;;;37531:15:0;37481:66;;;;;;;;;;37431:25;37628:23;;;37672:4;:23;;;;-1:-1:-1;;;;;;37680:13:0;;8481:19;:23;;37680:15;37668:870;;;37716:314;37747:38;;37772:12;;-1:-1:-1;;;;;37747:38:0;;;37764:1;;37747:38;;37764:1;;37747:38;37813:69;37852:1;37856:2;37860:14;;;;;;37876:5;37813:30;:69::i;:::-;37808:174;;37918:40;;-1:-1:-1;;;37918:40:0;;;;;;;;;;;37808:174;38025:3;38009:12;:19;;37716:314;;38111:12;38094:13;;:29;38090:43;;38125:8;;;38090:43;37668:870;;;38174:349;-1:-1:-1;;;;;38228:19:0;;;;;;:15;:19;;;;;;;;:38;;;;;;;;;;;;;;;;;;;;38432:40;38457:14;;;;38253:12;38228:19;;38432:40;;38228:19;;38432:40;38518:3;38502:12;:19;;38174:349;;37668:870;-1:-1:-1;38552:13:0;:28;38602:60;34955:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;:::-;909:39;768:186;-1:-1:-1;;;768:186:1:o;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:184::-;5113:6;5166:2;5154:9;5145:7;5141:23;5137:32;5134:52;;;5182:1;5179;5172:12;5134:52;-1:-1:-1;5205:16:1;;5043:184;-1:-1:-1;5043:184:1:o;5232:257::-;5273:3;5311:5;5305:12;5338:6;5333:3;5326:19;5354:63;5410:6;5403:4;5398:3;5394:14;5387:4;5380:5;5376:16;5354:63;:::i;:::-;5471:2;5450:15;-1:-1:-1;;5446:29:1;5437:39;;;;5478:4;5433:50;;5232:257;-1:-1:-1;;5232:257:1:o;5494:185::-;5536:3;5574:5;5568:12;5589:52;5634:6;5629:3;5622:4;5615:5;5611:16;5589:52;:::i;:::-;5657:16;;;;;5494:185;-1:-1:-1;;5494:185:1:o;5684:1174::-;5860:3;5889:1;5922:6;5916:13;5952:3;5974:1;6002:9;5998:2;5994:18;5984:28;;6062:2;6051:9;6047:18;6084;6074:61;;6128:4;6120:6;6116:17;6106:27;;6074:61;6154:2;6202;6194:6;6191:14;6171:18;6168:38;6165:165;;;-1:-1:-1;;;6229:33:1;;6285:4;6282:1;6275:15;6315:4;6236:3;6303:17;6165:165;6346:18;6373:104;;;;6491:1;6486:320;;;;6339:467;;6373:104;-1:-1:-1;;6406:24:1;;6394:37;;6451:16;;;;-1:-1:-1;6373:104:1;;6486:320;12540:1;12533:14;;;12577:4;12564:18;;6581:1;6595:165;6609:6;6606:1;6603:13;6595:165;;;6687:14;;6674:11;;;6667:35;6730:16;;;;6624:10;;6595:165;;;6599:3;;6789:6;6784:3;6780:16;6773:23;;6339:467;;;;;;;6822:30;6848:3;6840:6;6822:30;:::i;:::-;6815:37;5684:1174;-1:-1:-1;;;;;5684:1174:1:o;7071:488::-;-1:-1:-1;;;;;7340:15:1;;;7322:34;;7392:15;;7387:2;7372:18;;7365:43;7439:2;7424:18;;7417:34;;;7487:3;7482:2;7467:18;;7460:31;;;7265:4;;7508:45;;7533:19;;7525:6;7508:45;:::i;:::-;7500:53;7071:488;-1:-1:-1;;;;;;7071:488:1:o;7843:632::-;8014:2;8066:21;;;8136:13;;8039:18;;;8158:22;;;7985:4;;8014:2;8237:15;;;;8211:2;8196:18;;;7985:4;8280:169;8294:6;8291:1;8288:13;8280:169;;;8355:13;;8343:26;;8424:15;;;;8389:12;;;;8316:1;8309:9;8280:169;;;-1:-1:-1;8466:3:1;;7843:632;-1:-1:-1;;;;;;7843:632:1:o;8894:219::-;9043:2;9032:9;9025:21;9006:4;9063:44;9103:2;9092:9;9088:18;9080:6;9063:44;:::i;9479:347::-;9681:2;9663:21;;;9720:2;9700:18;;;9693:30;9759:25;9754:2;9739:18;;9732:53;9817:2;9802:18;;9479:347::o;12187:275::-;12258:2;12252:9;12323:2;12304:13;;-1:-1:-1;;12300:27:1;12288:40;;12358:18;12343:34;;12379:22;;;12340:62;12337:88;;;12405:18;;:::i;:::-;12441:2;12434:22;12187:275;;-1:-1:-1;12187:275:1:o;12593:128::-;12633:3;12664:1;12660:6;12657:1;12654:13;12651:39;;;12670:18;;:::i;:::-;-1:-1:-1;12706:9:1;;12593:128::o;12726:120::-;12766:1;12792;12782:35;;12797:18;;:::i;:::-;-1:-1:-1;12831:9:1;;12726:120::o;12851:125::-;12891:4;12919:1;12916;12913:8;12910:34;;;12924:18;;:::i;:::-;-1:-1:-1;12961:9:1;;12851:125::o;12981:258::-;13053:1;13063:113;13077:6;13074:1;13071:13;13063:113;;;13153:11;;;13147:18;13134:11;;;13127:39;13099:2;13092:10;13063:113;;;13194:6;13191:1;13188:13;13185:48;;;-1:-1:-1;;13229:1:1;13211:16;;13204:27;12981:258::o;13244:380::-;13323:1;13319:12;;;;13366;;;13387:61;;13441:4;13433:6;13429:17;13419:27;;13387:61;13494:2;13486:6;13483:14;13463:18;13460:38;13457:161;;;13540:10;13535:3;13531:20;13528:1;13521:31;13575:4;13572:1;13565:15;13603:4;13600:1;13593:15;13457:161;;13244:380;;;:::o;13629:135::-;13668:3;-1:-1:-1;;13689:17:1;;13686:43;;;13709:18;;:::i;:::-;-1:-1:-1;13756:1:1;13745:13;;13629:135::o;13769:175::-;13806:3;13850:4;13843:5;13839:16;13879:4;13870:7;13867:17;13864:43;;;13887:18;;:::i;:::-;13936:1;13923:15;;13769:175;-1:-1:-1;;13769:175:1:o;13949:112::-;13981:1;14007;13997:35;;14012:18;;:::i;:::-;-1:-1:-1;14046:9:1;;13949:112::o;14066:127::-;14127:10;14122:3;14118:20;14115:1;14108:31;14158:4;14155:1;14148:15;14182:4;14179:1;14172:15;14198:127;14259:10;14254:3;14250:20;14247:1;14240:31;14290:4;14287:1;14280:15;14314:4;14311:1;14304:15;14330:127;14391:10;14386:3;14382:20;14379:1;14372:31;14422:4;14419:1;14412:15;14446:4;14443:1;14436:15;14462:127;14523:10;14518:3;14514:20;14511:1;14504:31;14554:4;14551:1;14544:15;14578:4;14575:1;14568:15;14594:131;-1:-1:-1;;;;;;14668:32:1;;14658:43;;14648:71;;14715:1;14712;14705:12
Swarm Source
ipfs://d00d6725a8472927afc2222efbf03a0dcbc17cdb45979fd756ac0b4df7f549cc
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.