ERC-721
NFT
Overview
Max Total Supply
2,612 GOD
Holders
412
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
30 GODLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GhozaliOneDay
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-12 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: GhozaliOneDay.sol pragma solidity ^0.8.0; contract GhozaliOneDay is ERC721, Ownable { uint constant public MAX_SUPPLY = 10000; uint constant public PRICE = 0.01 ether; string public baseURI = "https://storage.googleapis.com/ghozali/meta/"; uint public maxMintsPerWallet = 50; uint public freeMints = 2000; uint public totalSupply; mapping(address => uint) public mintedNFTs; constructor() ERC721("Ghozali One Day", "GOD") { _mint(msg.sender, ++totalSupply); } // Setters region function setBaseURI(string memory _baseURIArg) external onlyOwner { baseURI = _baseURIArg; } function setMaxMintsPerWallet(uint _maxMintsPerWallet) external onlyOwner { maxMintsPerWallet = _maxMintsPerWallet; } function setFreeMints(uint _freeMints) external onlyOwner { freeMints = _freeMints; } // endregion function _baseURI() internal view override returns (string memory) { return baseURI; } // Mint and Claim functions function mintPrice(uint amount) public view returns (uint) { uint remainingFreeMints = totalSupply < freeMints ? freeMints - totalSupply : 0; if (remainingFreeMints >= amount) { return 0; } else { return (amount - remainingFreeMints) * PRICE; } } function mint(uint amount) external payable { require(amount > 0 && amount <= 10, "Wrong amount"); require(totalSupply + amount <= MAX_SUPPLY, "Tokens supply reached limit"); require(mintedNFTs[msg.sender] + amount <= maxMintsPerWallet, "maxMintsPerWallet constraint violation"); require(mintPrice(amount) == msg.value, "Wrong ethers value"); mintedNFTs[msg.sender] += amount; uint fromToken = totalSupply + 1; totalSupply += amount; for (uint i = 0; i < amount; i++) { _mint(msg.sender, fromToken + i); } } receive() external payable { } function withdraw() external onlyOwner { uint balance = address(this).balance; // Ghozali contract payable(0xc1E05E98466908547F30fcFc34E405B9C84DFCb7).transfer(balance * 15 / 100); payable(0x39f527e945ac1c2f74dC5d049e1f67848652e7e7).transfer(balance / 10); payable(0x0d1c527539a8ADa2C490241DC2E47a9351E8b5EA).transfer(balance / 10); payable(0x612DBBe0f90373ec00cabaEED679122AF9C559BE).transfer(balance / 20); payable(0x216F2Cf67561ED5e9A2F31482158BFc4996037AE).transfer(balance * 60 / 100); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURIArg","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMints","type":"uint256"}],"name":"setFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintsPerWallet","type":"uint256"}],"name":"setMaxMintsPerWallet","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e0604052602c6080818152906200226460a0398051620000299160079160209091019062000291565b5060326008556107d06009553480156200004257600080fd5b50604080518082018252600f81526e47686f7a616c69204f6e652044617960881b60208083019182528351808501909452600384526211d3d160ea1b908401528151919291620000959160009162000291565b508051620000ab90600190602084019062000291565b505050620000c8620000c2620000ef60201b60201c565b620000f3565b620000e933600a60008154620000de906200038f565b918290555062000145565b620003c3565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001a15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600260205260409020546001600160a01b031615620002085760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000198565b6001600160a01b03821660009081526003602052604081208054600192906200023390849062000337565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546200029f9062000352565b90600052602060002090601f016020900481019282620002c357600085556200030e565b82601f10620002de57805160ff19168380011785556200030e565b828001600101855582156200030e579182015b828111156200030e578251825591602001919060010190620002f1565b506200031c92915062000320565b5090565b5b808211156200031c576000815560010162000321565b600082198211156200034d576200034d620003ad565b500190565b600181811c908216806200036757607f821691505b602082108114156200038957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620003a657620003a6620003ad565b5060010190565b634e487b7160e01b600052601160045260246000fd5b611e9180620003d36000396000f3fe6080604052600436106101c65760003560e01c806380b17335116100f7578063b88d4fde11610095578063e7db8fb011610064578063e7db8fb0146104e0578063e985e9c514610500578063f2fde38b14610549578063f516a2e61461056957600080fd5b8063b88d4fde14610453578063ba060bed14610473578063c87b56dd146104a0578063e6a72acf146104c057600080fd5b806395d89b41116100d157806395d89b41146103eb578063963c354614610400578063a0712d6814610420578063a22cb4651461043357600080fd5b806380b173351461039c5780638d859f3e146103b25780638da5cb5b146103cd57600080fd5b80633ccfd60b116101645780636352211e1161013e5780636352211e146103325780636c0360eb1461035257806370a0823114610367578063715018a61461038757600080fd5b80633ccfd60b146102dd57806342842e0e146102f257806355f804b31461031257600080fd5b8063095ea7b3116101a0578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a757806332cb6b0c146102c757600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc1461022957600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101f26101ed366004611adc565b61057f565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105d1565b6040516101fe9190611c10565b34801561023557600080fd5b50610249610244366004611b5f565b610663565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611ab2565b6106fd565b005b34801561028f57600080fd5b50610299600a5481565b6040519081526020016101fe565b3480156102b357600080fd5b506102816102c23660046119be565b610813565b3480156102d357600080fd5b5061029961271081565b3480156102e957600080fd5b50610281610844565b3480156102fe57600080fd5b5061028161030d3660046119be565b610a06565b34801561031e57600080fd5b5061028161032d366004611b16565b610a21565b34801561033e57600080fd5b5061024961034d366004611b5f565b610a5e565b34801561035e57600080fd5b5061021c610ad5565b34801561037357600080fd5b50610299610382366004611970565b610b63565b34801561039357600080fd5b50610281610bea565b3480156103a857600080fd5b5061029960095481565b3480156103be57600080fd5b50610299662386f26fc1000081565b3480156103d957600080fd5b506006546001600160a01b0316610249565b3480156103f757600080fd5b5061021c610c20565b34801561040c57600080fd5b5061028161041b366004611b5f565b610c2f565b61028161042e366004611b5f565b610c5e565b34801561043f57600080fd5b5061028161044e366004611a76565b610e4f565b34801561045f57600080fd5b5061028161046e3660046119fa565b610e5a565b34801561047f57600080fd5b5061029961048e366004611970565b600b6020526000908152604090205481565b3480156104ac57600080fd5b5061021c6104bb366004611b5f565b610e92565b3480156104cc57600080fd5b506102996104db366004611b5f565b610f6d565b3480156104ec57600080fd5b506102816104fb366004611b5f565b610fc6565b34801561050c57600080fd5b506101f261051b36600461198b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055557600080fd5b50610281610564366004611970565b610ff5565b34801561057557600080fd5b5061029960085481565b60006001600160e01b031982166380ac58cd60e01b14806105b057506001600160e01b03198216635b5e139f60e01b145b806105cb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105e090611d89565b80601f016020809104026020016040519081016040528092919081815260200182805461060c90611d89565b80156106595780601f1061062e57610100808354040283529160200191610659565b820191906000526020600020905b81548152906001019060200180831161063c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106e15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061070882610a5e565b9050806001600160a01b0316836001600160a01b031614156107765760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d8565b336001600160a01b03821614806107925750610792813361051b565b6108045760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d8565b61080e8383611090565b505050565b61081d33826110fe565b6108395760405162461bcd60e51b81526004016106d890611caa565b61080e8383836111f5565b6006546001600160a01b0316331461086e5760405162461bcd60e51b81526004016106d890611c75565b4773c1e05e98466908547f30fcfc34e405b9c84dfcb76108fc606461089484600f611d27565b61089e9190611d13565b6040518115909202916000818181858888f193505050501580156108c6573d6000803e3d6000fd5b507339f527e945ac1c2f74dc5d049e1f67848652e7e76108fc6108ea600a84611d13565b6040518115909202916000818181858888f19350505050158015610912573d6000803e3d6000fd5b50730d1c527539a8ada2c490241dc2e47a9351e8b5ea6108fc610936600a84611d13565b6040518115909202916000818181858888f1935050505015801561095e573d6000803e3d6000fd5b5073612dbbe0f90373ec00cabaeed679122af9c559be6108fc610982601484611d13565b6040518115909202916000818181858888f193505050501580156109aa573d6000803e3d6000fd5b5073216f2cf67561ed5e9a2f31482158bfc4996037ae6108fc60646109d084603c611d27565b6109da9190611d13565b6040518115909202916000818181858888f19350505050158015610a02573d6000803e3d6000fd5b5050565b61080e83838360405180602001604052806000815250610e5a565b6006546001600160a01b03163314610a4b5760405162461bcd60e51b81526004016106d890611c75565b8051610a02906007906020840190611845565b6000818152600260205260408120546001600160a01b0316806105cb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d8565b60078054610ae290611d89565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0e90611d89565b8015610b5b5780601f10610b3057610100808354040283529160200191610b5b565b820191906000526020600020905b815481529060010190602001808311610b3e57829003601f168201915b505050505081565b60006001600160a01b038216610bce5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c145760405162461bcd60e51b81526004016106d890611c75565b610c1e6000611395565b565b6060600180546105e090611d89565b6006546001600160a01b03163314610c595760405162461bcd60e51b81526004016106d890611c75565b600855565b600081118015610c6f5750600a8111155b610caa5760405162461bcd60e51b815260206004820152600c60248201526b15dc9bdb99c8185b5bdd5b9d60a21b60448201526064016106d8565b61271081600a54610cbb9190611cfb565b1115610d095760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e7320737570706c792072656163686564206c696d6974000000000060448201526064016106d8565b600854336000908152600b6020526040902054610d27908390611cfb565b1115610d845760405162461bcd60e51b815260206004820152602660248201527f6d61784d696e747350657257616c6c657420636f6e73747261696e742076696f6044820152653630ba34b7b760d11b60648201526084016106d8565b34610d8e82610f6d565b14610dd05760405162461bcd60e51b815260206004820152601260248201527157726f6e67206574686572732076616c756560701b60448201526064016106d8565b336000908152600b602052604081208054839290610def908490611cfb565b9091555050600a54600090610e05906001611cfb565b905081600a6000828254610e199190611cfb565b90915550600090505b8281101561080e57610e3d33610e388385611cfb565b6113e7565b80610e4781611dbe565b915050610e22565b610a02338383611529565b610e6433836110fe565b610e805760405162461bcd60e51b81526004016106d890611caa565b610e8c848484846115f8565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d8565b6000610f1b61162b565b90506000815111610f3b5760405180602001604052806000815250610f66565b80610f458461163a565b604051602001610f56929190611ba4565b6040516020818303038152906040525b9392505050565b600080600954600a5410610f82576000610f92565b600a54600954610f929190611d46565b9050828110610fa45750600092915050565b662386f26fc10000610fb68285611d46565b610f669190611d27565b50919050565b6006546001600160a01b03163314610ff05760405162461bcd60e51b81526004016106d890611c75565b600955565b6006546001600160a01b0316331461101f5760405162461bcd60e51b81526004016106d890611c75565b6001600160a01b0381166110845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d8565b61108d81611395565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110c582610a5e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d8565b600061118283610a5e565b9050806001600160a01b0316846001600160a01b031614806111bd5750836001600160a01b03166111b284610663565b6001600160a01b0316145b806111ed57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661120882610a5e565b6001600160a01b0316146112705760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106d8565b6001600160a01b0382166112d25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d8565b6112dd600082611090565b6001600160a01b0383166000908152600360205260408120805460019290611306908490611d46565b90915550506001600160a01b0382166000908152600360205260408120805460019290611334908490611cfb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661143d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d8565b6000818152600260205260409020546001600160a01b0316156114a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d8565b6001600160a01b03821660009081526003602052604081208054600192906114cb908490611cfb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316141561158b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116038484846111f5565b61160f84848484611738565b610e8c5760405162461bcd60e51b81526004016106d890611c23565b6060600780546105e090611d89565b60608161165e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611688578061167281611dbe565b91506116819050600a83611d13565b9150611662565b60008167ffffffffffffffff8111156116a3576116a3611e2f565b6040519080825280601f01601f1916602001820160405280156116cd576020820181803683370190505b5090505b84156111ed576116e2600183611d46565b91506116ef600a86611dd9565b6116fa906030611cfb565b60f81b81838151811061170f5761170f611e19565b60200101906001600160f81b031916908160001a905350611731600a86611d13565b94506116d1565b60006001600160a01b0384163b1561183a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061177c903390899088908890600401611bd3565b602060405180830381600087803b15801561179657600080fd5b505af19250505080156117c6575060408051601f3d908101601f191682019092526117c391810190611af9565b60015b611820573d8080156117f4576040519150601f19603f3d011682016040523d82523d6000602084013e6117f9565b606091505b5080516118185760405162461bcd60e51b81526004016106d890611c23565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111ed565b506001949350505050565b82805461185190611d89565b90600052602060002090601f01602090048101928261187357600085556118b9565b82601f1061188c57805160ff19168380011785556118b9565b828001600101855582156118b9579182015b828111156118b957825182559160200191906001019061189e565b506118c59291506118c9565b5090565b5b808211156118c557600081556001016118ca565b600067ffffffffffffffff808411156118f9576118f9611e2f565b604051601f8501601f19908116603f0116810190828211818310171561192157611921611e2f565b8160405280935085815286868601111561193a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461196b57600080fd5b919050565b60006020828403121561198257600080fd5b610f6682611954565b6000806040838503121561199e57600080fd5b6119a783611954565b91506119b560208401611954565b90509250929050565b6000806000606084860312156119d357600080fd5b6119dc84611954565b92506119ea60208501611954565b9150604084013590509250925092565b60008060008060808587031215611a1057600080fd5b611a1985611954565b9350611a2760208601611954565b925060408501359150606085013567ffffffffffffffff811115611a4a57600080fd5b8501601f81018713611a5b57600080fd5b611a6a878235602084016118de565b91505092959194509250565b60008060408385031215611a8957600080fd5b611a9283611954565b915060208301358015158114611aa757600080fd5b809150509250929050565b60008060408385031215611ac557600080fd5b611ace83611954565b946020939093013593505050565b600060208284031215611aee57600080fd5b8135610f6681611e45565b600060208284031215611b0b57600080fd5b8151610f6681611e45565b600060208284031215611b2857600080fd5b813567ffffffffffffffff811115611b3f57600080fd5b8201601f81018413611b5057600080fd5b6111ed848235602084016118de565b600060208284031215611b7157600080fd5b5035919050565b60008151808452611b90816020860160208601611d5d565b601f01601f19169290920160200192915050565b60008351611bb6818460208801611d5d565b835190830190611bca818360208801611d5d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c0690830184611b78565b9695505050505050565b602081526000610f666020830184611b78565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611d0e57611d0e611ded565b500190565b600082611d2257611d22611e03565b500490565b6000816000190483118215151615611d4157611d41611ded565b500290565b600082821015611d5857611d58611ded565b500390565b60005b83811015611d78578181015183820152602001611d60565b83811115610e8c5750506000910152565b600181811c90821680611d9d57607f821691505b60208210811415610fc057634e487b7160e01b600052602260045260246000fd5b6000600019821415611dd257611dd2611ded565b5060010190565b600082611de857611de8611e03565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461108d57600080fdfea26469706673582212205cd08dd295dddb3e0761875cebdb1a4afaabc96420bc1eb189240db58d16980764736f6c6343000806003368747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f67686f7a616c692f6d6574612f
Deployed Bytecode
0x6080604052600436106101c65760003560e01c806380b17335116100f7578063b88d4fde11610095578063e7db8fb011610064578063e7db8fb0146104e0578063e985e9c514610500578063f2fde38b14610549578063f516a2e61461056957600080fd5b8063b88d4fde14610453578063ba060bed14610473578063c87b56dd146104a0578063e6a72acf146104c057600080fd5b806395d89b41116100d157806395d89b41146103eb578063963c354614610400578063a0712d6814610420578063a22cb4651461043357600080fd5b806380b173351461039c5780638d859f3e146103b25780638da5cb5b146103cd57600080fd5b80633ccfd60b116101645780636352211e1161013e5780636352211e146103325780636c0360eb1461035257806370a0823114610367578063715018a61461038757600080fd5b80633ccfd60b146102dd57806342842e0e146102f257806355f804b31461031257600080fd5b8063095ea7b3116101a0578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a757806332cb6b0c146102c757600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc1461022957600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101f26101ed366004611adc565b61057f565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105d1565b6040516101fe9190611c10565b34801561023557600080fd5b50610249610244366004611b5f565b610663565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611ab2565b6106fd565b005b34801561028f57600080fd5b50610299600a5481565b6040519081526020016101fe565b3480156102b357600080fd5b506102816102c23660046119be565b610813565b3480156102d357600080fd5b5061029961271081565b3480156102e957600080fd5b50610281610844565b3480156102fe57600080fd5b5061028161030d3660046119be565b610a06565b34801561031e57600080fd5b5061028161032d366004611b16565b610a21565b34801561033e57600080fd5b5061024961034d366004611b5f565b610a5e565b34801561035e57600080fd5b5061021c610ad5565b34801561037357600080fd5b50610299610382366004611970565b610b63565b34801561039357600080fd5b50610281610bea565b3480156103a857600080fd5b5061029960095481565b3480156103be57600080fd5b50610299662386f26fc1000081565b3480156103d957600080fd5b506006546001600160a01b0316610249565b3480156103f757600080fd5b5061021c610c20565b34801561040c57600080fd5b5061028161041b366004611b5f565b610c2f565b61028161042e366004611b5f565b610c5e565b34801561043f57600080fd5b5061028161044e366004611a76565b610e4f565b34801561045f57600080fd5b5061028161046e3660046119fa565b610e5a565b34801561047f57600080fd5b5061029961048e366004611970565b600b6020526000908152604090205481565b3480156104ac57600080fd5b5061021c6104bb366004611b5f565b610e92565b3480156104cc57600080fd5b506102996104db366004611b5f565b610f6d565b3480156104ec57600080fd5b506102816104fb366004611b5f565b610fc6565b34801561050c57600080fd5b506101f261051b36600461198b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055557600080fd5b50610281610564366004611970565b610ff5565b34801561057557600080fd5b5061029960085481565b60006001600160e01b031982166380ac58cd60e01b14806105b057506001600160e01b03198216635b5e139f60e01b145b806105cb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105e090611d89565b80601f016020809104026020016040519081016040528092919081815260200182805461060c90611d89565b80156106595780601f1061062e57610100808354040283529160200191610659565b820191906000526020600020905b81548152906001019060200180831161063c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106e15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061070882610a5e565b9050806001600160a01b0316836001600160a01b031614156107765760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d8565b336001600160a01b03821614806107925750610792813361051b565b6108045760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d8565b61080e8383611090565b505050565b61081d33826110fe565b6108395760405162461bcd60e51b81526004016106d890611caa565b61080e8383836111f5565b6006546001600160a01b0316331461086e5760405162461bcd60e51b81526004016106d890611c75565b4773c1e05e98466908547f30fcfc34e405b9c84dfcb76108fc606461089484600f611d27565b61089e9190611d13565b6040518115909202916000818181858888f193505050501580156108c6573d6000803e3d6000fd5b507339f527e945ac1c2f74dc5d049e1f67848652e7e76108fc6108ea600a84611d13565b6040518115909202916000818181858888f19350505050158015610912573d6000803e3d6000fd5b50730d1c527539a8ada2c490241dc2e47a9351e8b5ea6108fc610936600a84611d13565b6040518115909202916000818181858888f1935050505015801561095e573d6000803e3d6000fd5b5073612dbbe0f90373ec00cabaeed679122af9c559be6108fc610982601484611d13565b6040518115909202916000818181858888f193505050501580156109aa573d6000803e3d6000fd5b5073216f2cf67561ed5e9a2f31482158bfc4996037ae6108fc60646109d084603c611d27565b6109da9190611d13565b6040518115909202916000818181858888f19350505050158015610a02573d6000803e3d6000fd5b5050565b61080e83838360405180602001604052806000815250610e5a565b6006546001600160a01b03163314610a4b5760405162461bcd60e51b81526004016106d890611c75565b8051610a02906007906020840190611845565b6000818152600260205260408120546001600160a01b0316806105cb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d8565b60078054610ae290611d89565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0e90611d89565b8015610b5b5780601f10610b3057610100808354040283529160200191610b5b565b820191906000526020600020905b815481529060010190602001808311610b3e57829003601f168201915b505050505081565b60006001600160a01b038216610bce5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c145760405162461bcd60e51b81526004016106d890611c75565b610c1e6000611395565b565b6060600180546105e090611d89565b6006546001600160a01b03163314610c595760405162461bcd60e51b81526004016106d890611c75565b600855565b600081118015610c6f5750600a8111155b610caa5760405162461bcd60e51b815260206004820152600c60248201526b15dc9bdb99c8185b5bdd5b9d60a21b60448201526064016106d8565b61271081600a54610cbb9190611cfb565b1115610d095760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e7320737570706c792072656163686564206c696d6974000000000060448201526064016106d8565b600854336000908152600b6020526040902054610d27908390611cfb565b1115610d845760405162461bcd60e51b815260206004820152602660248201527f6d61784d696e747350657257616c6c657420636f6e73747261696e742076696f6044820152653630ba34b7b760d11b60648201526084016106d8565b34610d8e82610f6d565b14610dd05760405162461bcd60e51b815260206004820152601260248201527157726f6e67206574686572732076616c756560701b60448201526064016106d8565b336000908152600b602052604081208054839290610def908490611cfb565b9091555050600a54600090610e05906001611cfb565b905081600a6000828254610e199190611cfb565b90915550600090505b8281101561080e57610e3d33610e388385611cfb565b6113e7565b80610e4781611dbe565b915050610e22565b610a02338383611529565b610e6433836110fe565b610e805760405162461bcd60e51b81526004016106d890611caa565b610e8c848484846115f8565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d8565b6000610f1b61162b565b90506000815111610f3b5760405180602001604052806000815250610f66565b80610f458461163a565b604051602001610f56929190611ba4565b6040516020818303038152906040525b9392505050565b600080600954600a5410610f82576000610f92565b600a54600954610f929190611d46565b9050828110610fa45750600092915050565b662386f26fc10000610fb68285611d46565b610f669190611d27565b50919050565b6006546001600160a01b03163314610ff05760405162461bcd60e51b81526004016106d890611c75565b600955565b6006546001600160a01b0316331461101f5760405162461bcd60e51b81526004016106d890611c75565b6001600160a01b0381166110845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d8565b61108d81611395565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110c582610a5e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d8565b600061118283610a5e565b9050806001600160a01b0316846001600160a01b031614806111bd5750836001600160a01b03166111b284610663565b6001600160a01b0316145b806111ed57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661120882610a5e565b6001600160a01b0316146112705760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106d8565b6001600160a01b0382166112d25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d8565b6112dd600082611090565b6001600160a01b0383166000908152600360205260408120805460019290611306908490611d46565b90915550506001600160a01b0382166000908152600360205260408120805460019290611334908490611cfb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661143d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d8565b6000818152600260205260409020546001600160a01b0316156114a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d8565b6001600160a01b03821660009081526003602052604081208054600192906114cb908490611cfb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316141561158b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116038484846111f5565b61160f84848484611738565b610e8c5760405162461bcd60e51b81526004016106d890611c23565b6060600780546105e090611d89565b60608161165e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611688578061167281611dbe565b91506116819050600a83611d13565b9150611662565b60008167ffffffffffffffff8111156116a3576116a3611e2f565b6040519080825280601f01601f1916602001820160405280156116cd576020820181803683370190505b5090505b84156111ed576116e2600183611d46565b91506116ef600a86611dd9565b6116fa906030611cfb565b60f81b81838151811061170f5761170f611e19565b60200101906001600160f81b031916908160001a905350611731600a86611d13565b94506116d1565b60006001600160a01b0384163b1561183a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061177c903390899088908890600401611bd3565b602060405180830381600087803b15801561179657600080fd5b505af19250505080156117c6575060408051601f3d908101601f191682019092526117c391810190611af9565b60015b611820573d8080156117f4576040519150601f19603f3d011682016040523d82523d6000602084013e6117f9565b606091505b5080516118185760405162461bcd60e51b81526004016106d890611c23565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111ed565b506001949350505050565b82805461185190611d89565b90600052602060002090601f01602090048101928261187357600085556118b9565b82601f1061188c57805160ff19168380011785556118b9565b828001600101855582156118b9579182015b828111156118b957825182559160200191906001019061189e565b506118c59291506118c9565b5090565b5b808211156118c557600081556001016118ca565b600067ffffffffffffffff808411156118f9576118f9611e2f565b604051601f8501601f19908116603f0116810190828211818310171561192157611921611e2f565b8160405280935085815286868601111561193a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461196b57600080fd5b919050565b60006020828403121561198257600080fd5b610f6682611954565b6000806040838503121561199e57600080fd5b6119a783611954565b91506119b560208401611954565b90509250929050565b6000806000606084860312156119d357600080fd5b6119dc84611954565b92506119ea60208501611954565b9150604084013590509250925092565b60008060008060808587031215611a1057600080fd5b611a1985611954565b9350611a2760208601611954565b925060408501359150606085013567ffffffffffffffff811115611a4a57600080fd5b8501601f81018713611a5b57600080fd5b611a6a878235602084016118de565b91505092959194509250565b60008060408385031215611a8957600080fd5b611a9283611954565b915060208301358015158114611aa757600080fd5b809150509250929050565b60008060408385031215611ac557600080fd5b611ace83611954565b946020939093013593505050565b600060208284031215611aee57600080fd5b8135610f6681611e45565b600060208284031215611b0b57600080fd5b8151610f6681611e45565b600060208284031215611b2857600080fd5b813567ffffffffffffffff811115611b3f57600080fd5b8201601f81018413611b5057600080fd5b6111ed848235602084016118de565b600060208284031215611b7157600080fd5b5035919050565b60008151808452611b90816020860160208601611d5d565b601f01601f19169290920160200192915050565b60008351611bb6818460208801611d5d565b835190830190611bca818360208801611d5d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c0690830184611b78565b9695505050505050565b602081526000610f666020830184611b78565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611d0e57611d0e611ded565b500190565b600082611d2257611d22611e03565b500490565b6000816000190483118215151615611d4157611d41611ded565b500290565b600082821015611d5857611d58611ded565b500390565b60005b83811015611d78578181015183820152602001611d60565b83811115610e8c5750506000910152565b600181811c90821680611d9d57607f821691505b60208210811415610fc057634e487b7160e01b600052602260045260246000fd5b6000600019821415611dd257611dd2611ded565b5060010190565b600082611de857611de8611e03565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461108d57600080fdfea26469706673582212205cd08dd295dddb3e0761875cebdb1a4afaabc96420bc1eb189240db58d16980764736f6c63430008060033
Deployed Bytecode Sourcemap
36268:2576:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21245:293;;;;;;;;;;-1:-1:-1;21245:293:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;21245:293:0;;;;;;;;22178:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23737:221::-;;;;;;;;;;-1:-1:-1;23737:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;23737:221:0;4881:102:1;23260:411:0;;;;;;;;;;-1:-1:-1;23260:411:0;;;;;:::i;:::-;;:::i;:::-;;36568:23;;;;;;;;;;;;;;;;;;;13876:25:1;;;13864:2;13849:18;36568:23:0;13831:76:1;24487:339:0;;;;;;;;;;-1:-1:-1;24487:339:0;;;;;:::i;:::-;;:::i;36319:39::-;;;;;;;;;;;;36353:5;36319:39;;38279:560;;;;;;;;;;;;;:::i;24897:185::-;;;;;;;;;;-1:-1:-1;24897:185:0;;;;;:::i;:::-;;:::i;36778:106::-;;;;;;;;;;-1:-1:-1;36778:106:0;;;;;:::i;:::-;;:::i;21872:239::-;;;;;;;;;;-1:-1:-1;21872:239:0;;;;;:::i;:::-;;:::i;36413:70::-;;;;;;;;;;;;;:::i;21602:208::-;;;;;;;;;;-1:-1:-1;21602:208:0;;;;;:::i;:::-;;:::i;35386:103::-;;;;;;;;;;;;;:::i;36531:28::-;;;;;;;;;;;;;;;;36365:39;;;;;;;;;;;;36394:10;36365:39;;34735:87;;;;;;;;;;-1:-1:-1;34808:6:0;;-1:-1:-1;;;;;34808:6:0;34735:87;;22347:104;;;;;;;;;;;;;:::i;36892:131::-;;;;;;;;;;-1:-1:-1;36892:131:0;;;;;:::i;:::-;;:::i;37618:608::-;;;;;;:::i;:::-;;:::i;24030:155::-;;;;;;;;;;-1:-1:-1;24030:155:0;;;;;:::i;:::-;;:::i;25153:328::-;;;;;;;;;;-1:-1:-1;25153:328:0;;;;;:::i;:::-;;:::i;36598:42::-;;;;;;;;;;-1:-1:-1;36598:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;22522:334;;;;;;;;;;-1:-1:-1;22522:334:0;;;;;:::i;:::-;;:::i;37297:313::-;;;;;;;;;;-1:-1:-1;37297:313:0;;;;;:::i;:::-;;:::i;37031:99::-;;;;;;;;;;-1:-1:-1;37031:99:0;;;;;:::i;:::-;;:::i;24256:164::-;;;;;;;;;;-1:-1:-1;24256:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24377:25:0;;;24353:4;24377:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24256:164;35644:201;;;;;;;;;;-1:-1:-1;35644:201:0;;;;;:::i;:::-;;:::i;36490:34::-;;;;;;;;;;;;;;;;21245:293;21347:4;-1:-1:-1;;;;;;21380:40:0;;-1:-1:-1;;;21380:40:0;;:101;;-1:-1:-1;;;;;;;21433:48:0;;-1:-1:-1;;;21433:48:0;21380:101;:150;;;-1:-1:-1;;;;;;;;;;19798:40:0;;;21494:36;21364:166;21245:293;-1:-1:-1;;21245:293:0:o;22178:100::-;22232:13;22265:5;22258:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22178:100;:::o;23737:221::-;23813:7;27080:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27080:16:0;23833:73;;;;-1:-1:-1;;;23833:73:0;;10417:2:1;23833:73:0;;;10399:21:1;10456:2;10436:18;;;10429:30;10495:34;10475:18;;;10468:62;-1:-1:-1;;;10546:18:1;;;10539:42;10598:19;;23833:73:0;;;;;;;;;-1:-1:-1;23926:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23926:24:0;;23737:221::o;23260:411::-;23341:13;23357:23;23372:7;23357:14;:23::i;:::-;23341:39;;23405:5;-1:-1:-1;;;;;23399:11:0;:2;-1:-1:-1;;;;;23399:11:0;;;23391:57;;;;-1:-1:-1;;;23391:57:0;;12017:2:1;23391:57:0;;;11999:21:1;12056:2;12036:18;;;12029:30;12095:34;12075:18;;;12068:62;-1:-1:-1;;;12146:18:1;;;12139:31;12187:19;;23391:57:0;11989:223:1;23391:57:0;16566:10;-1:-1:-1;;;;;23483:21:0;;;;:62;;-1:-1:-1;23508:37:0;23525:5;16566:10;24256:164;:::i;23508:37::-;23461:168;;;;-1:-1:-1;;;23461:168:0;;8454:2:1;23461:168:0;;;8436:21:1;8493:2;8473:18;;;8466:30;8532:34;8512:18;;;8505:62;8603:26;8583:18;;;8576:54;8647:19;;23461:168:0;8426:246:1;23461:168:0;23642:21;23651:2;23655:7;23642:8;:21::i;:::-;23330:341;23260:411;;:::o;24487:339::-;24682:41;16566:10;24715:7;24682:18;:41::i;:::-;24674:103;;;;-1:-1:-1;;;24674:103:0;;;;;;;:::i;:::-;24790:28;24800:4;24806:2;24810:7;24790:9;:28::i;38279:560::-;34808:6;;-1:-1:-1;;;;;34808:6:0;16566:10;34955:23;34947:68;;;;-1:-1:-1;;;34947:68:0;;;;;;;:::i;:::-;38344:21:::1;38413:42;38405:80;38481:3;38466:12;38344:21:::0;38476:2:::1;38466:12;:::i;:::-;:18;;;;:::i;:::-;38405:80;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;38504:42:0::1;38496:74;38557:12;38567:2;38557:7:::0;:12:::1;:::i;:::-;38496:74;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;38589:42:0::1;38581:74;38642:12;38652:2;38642:7:::0;:12:::1;:::i;:::-;38581:74;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;38674:42:0::1;38666:74;38727:12;38737:2;38727:7:::0;:12:::1;:::i;:::-;38666:74;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;38759:42:0::1;38751:80;38827:3;38812:12;:7:::0;38822:2:::1;38812:12;:::i;:::-;:18;;;;:::i;:::-;38751:80;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;38318:521;38279:560::o:0;24897:185::-;25035:39;25052:4;25058:2;25062:7;25035:39;;;;;;;;;;;;:16;:39::i;36778:106::-;34808:6;;-1:-1:-1;;;;;34808:6:0;16566:10;34955:23;34947:68;;;;-1:-1:-1;;;34947:68:0;;;;;;;:::i;:::-;36855:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;21872:239::-:0;21944:7;21980:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21980:16:0;22015:19;22007:73;;;;-1:-1:-1;;;22007:73:0;;9290:2:1;22007:73:0;;;9272:21:1;9329:2;9309:18;;;9302:30;9368:34;9348:18;;;9341:62;-1:-1:-1;;;9419:18:1;;;9412:39;9468:19;;22007:73:0;9262:231:1;36413:70:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21602:208::-;21674:7;-1:-1:-1;;;;;21702:19:0;;21694:74;;;;-1:-1:-1;;;21694:74:0;;8879:2:1;21694:74:0;;;8861:21:1;8918:2;8898:18;;;8891:30;8957:34;8937:18;;;8930:62;-1:-1:-1;;;9008:18:1;;;9001:40;9058:19;;21694:74:0;8851:232:1;21694:74:0;-1:-1:-1;;;;;;21786:16:0;;;;;:9;:16;;;;;;;21602:208::o;35386:103::-;34808:6;;-1:-1:-1;;;;;34808:6:0;16566:10;34955:23;34947:68;;;;-1:-1:-1;;;34947:68:0;;;;;;;:::i;:::-;35451:30:::1;35478:1;35451:18;:30::i;:::-;35386:103::o:0;22347:104::-;22403:13;22436:7;22429:14;;;;;:::i;36892:131::-;34808:6;;-1:-1:-1;;;;;34808:6:0;16566:10;34955:23;34947:68;;;;-1:-1:-1;;;34947:68:0;;;;;;;:::i;:::-;36977:17:::1;:38:::0;36892:131::o;37618:608::-;37690:1;37681:6;:10;:26;;;;;37705:2;37695:6;:12;;37681:26;37673:51;;;;-1:-1:-1;;;37673:51:0;;13591:2:1;37673:51:0;;;13573:21:1;13630:2;13610:18;;;13603:30;-1:-1:-1;;;13649:18:1;;;13642:42;13701:18;;37673:51:0;13563:162:1;37673:51:0;36353:5;37757:6;37743:11;;:20;;;;:::i;:::-;:34;;37735:74;;;;-1:-1:-1;;;37735:74:0;;9700:2:1;37735:74:0;;;9682:21:1;9739:2;9719:18;;;9712:30;9778:29;9758:18;;;9751:57;9825:18;;37735:74:0;9672:177:1;37735:74:0;37863:17;;37839:10;37828:22;;;;:10;:22;;;;;;:31;;37853:6;;37828:31;:::i;:::-;:52;;37820:103;;;;-1:-1:-1;;;37820:103:0;;12419:2:1;37820:103:0;;;12401:21:1;12458:2;12438:18;;;12431:30;12497:34;12477:18;;;12470:62;-1:-1:-1;;;12548:18:1;;;12541:36;12594:19;;37820:103:0;12391:228:1;37820:103:0;37963:9;37942:17;37952:6;37942:9;:17::i;:::-;:30;37934:61;;;;-1:-1:-1;;;37934:61:0;;13244:2:1;37934:61:0;;;13226:21:1;13283:2;13263:18;;;13256:30;-1:-1:-1;;;13302:18:1;;;13295:48;13360:18;;37934:61:0;13216:168:1;37934:61:0;38017:10;38006:22;;;;:10;:22;;;;;:32;;38032:6;;38006:22;:32;;38032:6;;38006:32;:::i;:::-;;;;-1:-1:-1;;38068:11:0;;38051:14;;38068:15;;38082:1;38068:15;:::i;:::-;38051:32;;38109:6;38094:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;38131:6:0;;-1:-1:-1;38126:93:0;38147:6;38143:1;:10;38126:93;;;38175:32;38181:10;38193:13;38205:1;38193:9;:13;:::i;:::-;38175:5;:32::i;:::-;38155:3;;;;:::i;:::-;;;;38126:93;;24030:155;24125:52;16566:10;24158:8;24168;24125:18;:52::i;25153:328::-;25328:41;16566:10;25361:7;25328:18;:41::i;:::-;25320:103;;;;-1:-1:-1;;;25320:103:0;;;;;;;:::i;:::-;25434:39;25448:4;25454:2;25458:7;25467:5;25434:13;:39::i;:::-;25153:328;;;;:::o;22522:334::-;27056:4;27080:16;;;:7;:16;;;;;;22595:13;;-1:-1:-1;;;;;27080:16:0;22621:76;;;;-1:-1:-1;;;22621:76:0;;11601:2:1;22621:76:0;;;11583:21:1;11640:2;11620:18;;;11613:30;11679:34;11659:18;;;11652:62;-1:-1:-1;;;11730:18:1;;;11723:45;11785:19;;22621:76:0;11573:237:1;22621:76:0;22710:21;22734:10;:8;:10::i;:::-;22710:34;;22786:1;22768:7;22762:21;:25;:86;;;;;;;;;;;;;;;;;22814:7;22823:18;:7;:16;:18::i;:::-;22797:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22762:86;22755:93;22522:334;-1:-1:-1;;;22522:334:0:o;37297:313::-;37350:4;37367:23;37407:9;;37393:11;;:23;:53;;37445:1;37393:53;;;37431:11;;37419:9;;:23;;;;:::i;:::-;37367:79;;37483:6;37461:18;:28;37457:146;;-1:-1:-1;37513:1:0;;37297:313;-1:-1:-1;;37297:313:0:o;37457:146::-;36394:10;37555:27;37564:18;37555:6;:27;:::i;:::-;37554:37;;;;:::i;37457:146::-;37356:254;37297:313;;;:::o;37031:99::-;34808:6;;-1:-1:-1;;;;;34808:6:0;16566:10;34955:23;34947:68;;;;-1:-1:-1;;;34947:68:0;;;;;;;:::i;:::-;37100:9:::1;:22:::0;37031:99::o;35644:201::-;34808:6;;-1:-1:-1;;;;;34808:6:0;16566:10;34955:23;34947:68;;;;-1:-1:-1;;;34947:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35733:22:0;::::1;35725:73;;;::::0;-1:-1:-1;;;35725:73:0;;6518:2:1;35725:73:0::1;::::0;::::1;6500:21:1::0;6557:2;6537:18;;;6530:30;6596:34;6576:18;;;6569:62;-1:-1:-1;;;6647:18:1;;;6640:36;6693:19;;35725:73:0::1;6490:228:1::0;35725:73:0::1;35809:28;35828:8;35809:18;:28::i;:::-;35644:201:::0;:::o;30973:174::-;31048:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31048:29:0;-1:-1:-1;;;;;31048:29:0;;;;;;;;:24;;31102:23;31048:24;31102:14;:23::i;:::-;-1:-1:-1;;;;;31093:46:0;;;;;;;;;;;30973:174;;:::o;27285:348::-;27378:4;27080:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27080:16:0;27395:73;;;;-1:-1:-1;;;27395:73:0;;8041:2:1;27395:73:0;;;8023:21:1;8080:2;8060:18;;;8053:30;8119:34;8099:18;;;8092:62;-1:-1:-1;;;8170:18:1;;;8163:42;8222:19;;27395:73:0;8013:234:1;27395:73:0;27479:13;27495:23;27510:7;27495:14;:23::i;:::-;27479:39;;27548:5;-1:-1:-1;;;;;27537:16:0;:7;-1:-1:-1;;;;;27537:16:0;;:51;;;;27581:7;-1:-1:-1;;;;;27557:31:0;:20;27569:7;27557:11;:20::i;:::-;-1:-1:-1;;;;;27557:31:0;;27537:51;:87;;;-1:-1:-1;;;;;;24377:25:0;;;24353:4;24377:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27592:32;27529:96;27285:348;-1:-1:-1;;;;27285:348:0:o;30277:578::-;30436:4;-1:-1:-1;;;;;30409:31:0;:23;30424:7;30409:14;:23::i;:::-;-1:-1:-1;;;;;30409:31:0;;30401:85;;;;-1:-1:-1;;;30401:85:0;;11191:2:1;30401:85:0;;;11173:21:1;11230:2;11210:18;;;11203:30;11269:34;11249:18;;;11242:62;-1:-1:-1;;;11320:18:1;;;11313:39;11369:19;;30401:85:0;11163:231:1;30401:85:0;-1:-1:-1;;;;;30505:16:0;;30497:65;;;;-1:-1:-1;;;30497:65:0;;7282:2:1;30497:65:0;;;7264:21:1;7321:2;7301:18;;;7294:30;7360:34;7340:18;;;7333:62;-1:-1:-1;;;7411:18:1;;;7404:34;7455:19;;30497:65:0;7254:226:1;30497:65:0;30679:29;30696:1;30700:7;30679:8;:29::i;:::-;-1:-1:-1;;;;;30721:15:0;;;;;;:9;:15;;;;;:20;;30740:1;;30721:15;:20;;30740:1;;30721:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30752:13:0;;;;;;:9;:13;;;;;:18;;30769:1;;30752:13;:18;;30769:1;;30752:18;:::i;:::-;;;;-1:-1:-1;;30781:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30781:21:0;-1:-1:-1;;;;;30781:21:0;;;;;;;;;30820:27;;30781:16;;30820:27;;;;;;;30277:578;;;:::o;36005:191::-;36098:6;;;-1:-1:-1;;;;;36115:17:0;;;-1:-1:-1;;;;;;36115:17:0;;;;;;;36148:40;;36098:6;;;36115:17;36098:6;;36148:40;;36079:16;;36148:40;36068:128;36005:191;:::o;28969:382::-;-1:-1:-1;;;;;29049:16:0;;29041:61;;;;-1:-1:-1;;;29041:61:0;;10056:2:1;29041:61:0;;;10038:21:1;;;10075:18;;;10068:30;10134:34;10114:18;;;10107:62;10186:18;;29041:61:0;10028:182:1;29041:61:0;27056:4;27080:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27080:16:0;:30;29113:58;;;;-1:-1:-1;;;29113:58:0;;6925:2:1;29113:58:0;;;6907:21:1;6964:2;6944:18;;;6937:30;7003;6983:18;;;6976:58;7051:18;;29113:58:0;6897:178:1;29113:58:0;-1:-1:-1;;;;;29242:13:0;;;;;;:9;:13;;;;;:18;;29259:1;;29242:13;:18;;29259:1;;29242:18;:::i;:::-;;;;-1:-1:-1;;29271:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29271:21:0;-1:-1:-1;;;;;29271:21:0;;;;;;;;29310:33;;29271:16;;;29310:33;;29271:16;;29310:33;28969:382;;:::o;31289:315::-;31444:8;-1:-1:-1;;;;;31435:17:0;:5;-1:-1:-1;;;;;31435:17:0;;;31427:55;;;;-1:-1:-1;;;31427:55:0;;7687:2:1;31427:55:0;;;7669:21:1;7726:2;7706:18;;;7699:30;7765:27;7745:18;;;7738:55;7810:18;;31427:55:0;7659:175:1;31427:55:0;-1:-1:-1;;;;;31493:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31493:46:0;;;;;;;;;;31555:41;;5621::1;;;31555::0;;5594:18:1;31555:41:0;;;;;;;31289:315;;;:::o;26363:::-;26520:28;26530:4;26536:2;26540:7;26520:9;:28::i;:::-;26567:48;26590:4;26596:2;26600:7;26609:5;26567:22;:48::i;:::-;26559:111;;;;-1:-1:-1;;;26559:111:0;;;;;;;:::i;37156:100::-;37208:13;37241:7;37234:14;;;;;:::i;17065:723::-;17121:13;17342:10;17338:53;;-1:-1:-1;;17369:10:0;;;;;;;;;;;;-1:-1:-1;;;17369:10:0;;;;;17065:723::o;17338:53::-;17416:5;17401:12;17457:78;17464:9;;17457:78;;17490:8;;;;:::i;:::-;;-1:-1:-1;17513:10:0;;-1:-1:-1;17521:2:0;17513:10;;:::i;:::-;;;17457:78;;;17545:19;17577:6;17567:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17567:17:0;;17545:39;;17595:154;17602:10;;17595:154;;17629:11;17639:1;17629:11;;:::i;:::-;;-1:-1:-1;17698:10:0;17706:2;17698:5;:10;:::i;:::-;17685:24;;:2;:24;:::i;:::-;17672:39;;17655:6;17662;17655:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17655:56:0;;;;;;;;-1:-1:-1;17726:11:0;17735:2;17726:11;;:::i;:::-;;;17595:154;;32169:799;32324:4;-1:-1:-1;;;;;32345:13:0;;8799:20;8847:8;32341:620;;32381:72;;-1:-1:-1;;;32381:72:0;;-1:-1:-1;;;;;32381:36:0;;;;;:72;;16566:10;;32432:4;;32438:7;;32447:5;;32381:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32381:72:0;;;;;;;;-1:-1:-1;;32381:72:0;;;;;;;;;;;;:::i;:::-;;;32377:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32623:13:0;;32619:272;;32666:60;;-1:-1:-1;;;32666:60:0;;;;;;;:::i;32619:272::-;32841:6;32835:13;32826:6;32822:2;32818:15;32811:38;32377:529;-1:-1:-1;;;;;;32504:51:0;-1:-1:-1;;;32504:51:0;;-1:-1:-1;32497:58:0;;32341:620;-1:-1:-1;32945:4:0;32169:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;956:1;953;946:12;908:2;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1164:1;1161;1154:12;1116:2;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1106:173;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1446:1;1443;1436:12;1398:2;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1388:224;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:2;;;1806:1;1803;1796:12;1757:2;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:2;;;2076:1;2073;2066:12;2030:2;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:2:1;;2181:1;2178;2171:12;2130:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1747:536;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2430:1;2427;2420:12;2382:2;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:2;;2601:1;2598;2591:12;2545:2;2624:5;2614:15;;;2372:263;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:2;;;2785:1;2782;2775:12;2737:2;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2727:167:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:2;;;3026:1;3023;3016:12;2978:2;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:2;;;3287:1;3284;3277:12;3239:2;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:2;;;3541:1;3538;3531:12;3493:2;3581:9;3568:23;3614:18;3606:6;3603:30;3600:2;;;3646:1;3643;3636:12;3600:2;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:2:1;;3751:1;3748;3741:12;3700:2;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:2;;;3986:1;3983;3976:12;3938:2;-1:-1:-1;4009:23:1;;3928:110;-1:-1:-1;3928:110:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4092:208;-1:-1:-1;;4092:208:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4492:283;-1:-1:-1;;;;4492:283:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;5191:285;-1:-1:-1;;;;;;5191:285:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;5897:414::-;6099:2;6081:21;;;6138:2;6118:18;;;6111:30;6177:34;6172:2;6157:18;;6150:62;-1:-1:-1;;;6243:2:1;6228:18;;6221:48;6301:3;6286:19;;6071:240::o;10628:356::-;10830:2;10812:21;;;10849:18;;;10842:30;10908:34;10903:2;10888:18;;10881:62;10975:2;10960:18;;10802:182::o;12624:413::-;12826:2;12808:21;;;12865:2;12845:18;;;12838:30;12904:34;12899:2;12884:18;;12877:62;-1:-1:-1;;;12970:2:1;12955:18;;12948:47;13027:3;13012:19;;12798:239::o;13912:128::-;13952:3;13983:1;13979:6;13976:1;13973:13;13970:2;;;13989:18;;:::i;:::-;-1:-1:-1;14025:9:1;;13960:80::o;14045:120::-;14085:1;14111;14101:2;;14116:18;;:::i;:::-;-1:-1:-1;14150:9:1;;14091:74::o;14170:168::-;14210:7;14276:1;14272;14268:6;14264:14;14261:1;14258:21;14253:1;14246:9;14239:17;14235:45;14232:2;;;14283:18;;:::i;:::-;-1:-1:-1;14323:9:1;;14222:116::o;14343:125::-;14383:4;14411:1;14408;14405:8;14402:2;;;14416:18;;:::i;:::-;-1:-1:-1;14453:9:1;;14392:76::o;14473:258::-;14545:1;14555:113;14569:6;14566:1;14563:13;14555:113;;;14645:11;;;14639:18;14626:11;;;14619:39;14591:2;14584:10;14555:113;;;14686:6;14683:1;14680:13;14677:2;;;-1:-1:-1;;14721:1:1;14703:16;;14696:27;14526:205::o;14736:380::-;14815:1;14811:12;;;;14858;;;14879:2;;14933:4;14925:6;14921:17;14911:27;;14879:2;14986;14978:6;14975:14;14955:18;14952:38;14949:2;;;15032:10;15027:3;15023:20;15020:1;15013:31;15067:4;15064:1;15057:15;15095:4;15092:1;15085:15;15121:135;15160:3;-1:-1:-1;;15181:17:1;;15178:2;;;15201:18;;:::i;:::-;-1:-1:-1;15248:1:1;15237:13;;15168:88::o;15261:112::-;15293:1;15319;15309:2;;15324:18;;:::i;:::-;-1:-1:-1;15358:9:1;;15299:74::o;15378:127::-;15439:10;15434:3;15430:20;15427:1;15420:31;15470:4;15467:1;15460:15;15494:4;15491:1;15484:15;15510:127;15571:10;15566:3;15562:20;15559:1;15552:31;15602:4;15599:1;15592:15;15626:4;15623:1;15616:15;15642:127;15703:10;15698:3;15694:20;15691:1;15684:31;15734:4;15731:1;15724:15;15758:4;15755:1;15748:15;15774:127;15835:10;15830:3;15826:20;15823:1;15816:31;15866:4;15863:1;15856:15;15890:4;15887:1;15880:15;15906:131;-1:-1:-1;;;;;;15980:32:1;;15970:43;;15960:2;;16027:1;16024;16017:12
Swarm Source
ipfs://5cd08dd295dddb3e0761875cebdb1a4afaabc96420bc1eb189240db58d169807
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.