Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0.0500005 ETH
Eth Value
$82.89 (@ $1,657.87/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Multi Chain
Multichain Addresses
6 addresses found via
Latest 25 from a total of 112 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
Buy NFT | 17772115 | 65 days 1 hr ago | IN | 0.0000001 ETH | 0.00441505 | ||||
Set Approval For... | 17672544 | 79 days 30 mins ago | IN | 0 ETH | 0.0012668 | ||||
Transfer From | 17672497 | 79 days 40 mins ago | IN | 0 ETH | 0.00168362 | ||||
Buy NFT | 17672486 | 79 days 42 mins ago | IN | 0.0000001 ETH | 0.00325942 | ||||
Transfer From | 17281514 | 134 days 27 mins ago | IN | 0 ETH | 0.00495137 | ||||
Buy NFT | 17281468 | 134 days 36 mins ago | IN | 0.0000001 ETH | 0.00687904 | ||||
Buy NFT | 17139746 | 154 days 17 mins ago | IN | 0.0000001 ETH | 0.0049 | ||||
Buy NFT | 17132257 | 155 days 1 hr ago | IN | 0.0000001 ETH | 0.00506825 | ||||
Buy NFT | 17123516 | 156 days 7 hrs ago | IN | 0.05 ETH | 0.00632765 | ||||
Set Nft Cost | 17123501 | 156 days 7 hrs ago | IN | 0 ETH | 0.00152516 | ||||
Mint | 16989212 | 175 days 9 hrs ago | IN | 0 ETH | 0.00619766 | ||||
Mint | 16989207 | 175 days 9 hrs ago | IN | 0 ETH | 0.00569256 | ||||
Mint | 16989202 | 175 days 9 hrs ago | IN | 0 ETH | 0.00603027 | ||||
Mint | 16989198 | 175 days 9 hrs ago | IN | 0 ETH | 0.00545983 | ||||
Mint | 16989195 | 175 days 9 hrs ago | IN | 0 ETH | 0.00577771 | ||||
Mint | 16989180 | 175 days 9 hrs ago | IN | 0 ETH | 0.00563554 | ||||
Mint | 16989176 | 175 days 9 hrs ago | IN | 0 ETH | 0.00607235 | ||||
Mint | 16989172 | 175 days 9 hrs ago | IN | 0 ETH | 0.00554905 | ||||
Mint | 16989168 | 175 days 9 hrs ago | IN | 0 ETH | 0.00545622 | ||||
Mint | 16989165 | 175 days 9 hrs ago | IN | 0 ETH | 0.00552115 | ||||
Mint | 16989152 | 175 days 9 hrs ago | IN | 0 ETH | 0.00548609 | ||||
Mint | 16989148 | 175 days 9 hrs ago | IN | 0 ETH | 0.00532474 | ||||
Mint | 16989144 | 175 days 9 hrs ago | IN | 0 ETH | 0.00534176 | ||||
Mint | 16989140 | 175 days 9 hrs ago | IN | 0 ETH | 0.00562858 | ||||
Mint | 16989136 | 175 days 9 hrs ago | IN | 0 ETH | 0.00555661 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Cryptovreneli
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-01 */ // SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.7.0 <0.9.0; 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); } library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } 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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @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; } 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); } 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); } /* * @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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } 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}. 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //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 Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } contract Cryptovreneli is ERC721Enumerable, Ownable { using Strings for uint256; using SafeMath for uint256; string private baseURI; bool public isSaleStarted = true; string public notRevealedUri; uint256 private totalMinted; uint256 public cost = 0.00005 ether; uint256 public maxSupply = 100; bool public paused = false; bool public revealed = true; event BuyNFT(address indexed user, uint256 tokenId); constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) payable{ setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mint(uint256 numberOfNFT) public onlyOwner{ require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(supply + numberOfNFT <= maxSupply, "Exceeds maximum Originators supply"); uint256 _mintedSupply = totalMinted; if(!isApprovedForAll(msg.sender, address(this))){ setApprovalForAll(address(this), true); } for (uint256 i = 1; i <= numberOfNFT; i++) { _safeMint(msg.sender, _mintedSupply + i); totalMinted++; } } function buyNFT(uint256 tokenId) external payable{ require(this.ownerOf(tokenId) == owner(), "NFT not available in seller wallet"); require(msg.value >= cost, "insufficient fund for purchase"); this.safeTransferFrom(owner(), msg.sender, tokenId); emit BuyNFT(msg.sender, tokenId); } function multiTransfer(address[] memory _address, uint256[] memory _tokenIds) external{ for (uint256 i; i < _tokenIds.length; i++) { safeTransferFrom(msg.sender,_address[i],_tokenIds[i]); } } function Burn(uint256 tokenId) public { address owner = ERC721.ownerOf(tokenId); require(msg.sender == owner, "Caller is not onwer"); _burn(tokenId); } function walletOfOwner(address _owner) public view returns (uint256[] memory){ uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function getMintFees(uint _mintAmount) public view returns(uint256) { return cost * _mintAmount; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory){ require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return string(abi.encodePacked(notRevealedUri, tokenId.toString())); } string memory currentBaseURI = _baseURI(); return string(abi.encodePacked(currentBaseURI, tokenId.toString())); } function setNftCost(uint price) public onlyOwner { cost = price; } function setMaxSupply(uint _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function reveal(bool _reveal) public onlyOwner { revealed = _reveal; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw(uint256 amount) public onlyOwner { payable(msg.sender).transfer(amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"payable","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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"BuyNFT","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"buyNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"cost","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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"getMintFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNFT","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setNftCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040819052600c805460ff19166001179055652d79883d2000600f5560646010556011805461ffff191661010017905562002e3438819003908190833981016040819052620000509162000275565b83836000620000608382620003bd565b5060016200006f8282620003bd565b505050600062000084620000f260201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000dd82620000f6565b620000e88162000157565b5050505062000489565b3390565b600a546001600160a01b03163314620001455760405162461bcd60e51b8152602060048201819052602482015260008051602062002e1483398151915260448201526064015b60405180910390fd5b600b620001538282620003bd565b5050565b600a546001600160a01b03163314620001a25760405162461bcd60e51b8152602060048201819052602482015260008051602062002e1483398151915260448201526064016200013c565b600d620001538282620003bd565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d857600080fd5b81516001600160401b0380821115620001f557620001f5620001b0565b604051601f8301601f19908116603f01168101908282118183101715620002205762000220620001b0565b816040528381526020925086838588010111156200023d57600080fd5b600091505b8382101562000261578582018301518183018401529082019062000242565b600093810190920192909252949350505050565b600080600080608085870312156200028c57600080fd5b84516001600160401b0380821115620002a457600080fd5b620002b288838901620001c6565b95506020870151915080821115620002c957600080fd5b620002d788838901620001c6565b94506040870151915080821115620002ee57600080fd5b620002fc88838901620001c6565b935060608701519150808211156200031357600080fd5b506200032287828801620001c6565b91505092959194509250565b600181811c908216806200034357607f821691505b6020821081036200036457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003b857600081815260208120601f850160051c81016020861015620003935750805b601f850160051c820191505b81811015620003b4578281556001016200039f565b5050505b505050565b81516001600160401b03811115620003d957620003d9620001b0565b620003f181620003ea84546200032e565b846200036a565b602080601f831160018114620004295760008415620004105750858301515b600019600386901b1c1916600185901b178555620003b4565b600085815260208120601f198616915b828110156200045a5788860151825594840194600190910190840162000439565b5085821015620004795787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61297b80620004996000396000f3fe6080604052600436106102255760003560e01c80635c975abb11610123578063a0712d68116100ab578063d5abeb011161006f578063d5abeb0114610644578063e985e9c51461065a578063f2c4ce1e1461067a578063f2fde38b1461069a578063f606faea146106ba57600080fd5b8063a0712d68146105a4578063a22cb465146105c4578063b88d4fde146105e4578063b90306ad14610604578063c87b56dd1461062457600080fd5b806370a08231116100f257806370a082311461051c578063715018a61461053c5780638da5cb5b14610551578063940cd05b1461056f57806395d89b411461058f57600080fd5b80635c975abb146104a25780636352211e146104bc57806367f14133146104dc5780636f8b44b0146104fc57600080fd5b806323b872dd116101b1578063438b630011610175578063438b6300146104035780634f6ccce714610430578063518302271461045057806351ed82881461046f57806355f804b31461048257600080fd5b806323b872dd146103695780632e1a7d4d146103895780632f745c59146103a95780633b80b7d3146103c957806342842e0e146103e357600080fd5b8063081c8c44116101f8578063081c8c44146102db578063095ea7b3146102f057806313faede61461031057806318160ddd146103345780631e89d5451461034957600080fd5b806301ffc9a71461022a57806302329a291461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004612051565b6106da565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a36600461208a565b610705565b005b34801561028d57600080fd5b5061029661074b565b60405161025691906120f5565b3480156102af57600080fd5b506102c36102be366004612108565b6107dd565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b50610296610872565b3480156102fc57600080fd5b5061027f61030b366004612136565b610900565b34801561031c57600080fd5b50610326600f5481565b604051908152602001610256565b34801561034057600080fd5b50600854610326565b34801561035557600080fd5b5061027f610364366004612238565b610a15565b34801561037557600080fd5b5061027f6103843660046122fa565b610a70565b34801561039557600080fd5b5061027f6103a4366004612108565b610aa1565b3480156103b557600080fd5b506103266103c4366004612136565b610afc565b3480156103d557600080fd5b50600c5461024a9060ff1681565b3480156103ef57600080fd5b5061027f6103fe3660046122fa565b610b92565b34801561040f57600080fd5b5061042361041e36600461233b565b610bad565b6040516102569190612358565b34801561043c57600080fd5b5061032661044b366004612108565b610c4f565b34801561045c57600080fd5b5060115461024a90610100900460ff1681565b61027f61047d366004612108565b610ce2565b34801561048e57600080fd5b5061027f61049d3660046123f4565b610ec4565b3480156104ae57600080fd5b5060115461024a9060ff1681565b3480156104c857600080fd5b506102c36104d7366004612108565b610efa565b3480156104e857600080fd5b506103266104f7366004612108565b610f71565b34801561050857600080fd5b5061027f610517366004612108565b610f81565b34801561052857600080fd5b5061032661053736600461233b565b610fb0565b34801561054857600080fd5b5061027f611037565b34801561055d57600080fd5b50600a546001600160a01b03166102c3565b34801561057b57600080fd5b5061027f61058a36600461208a565b6110ab565b34801561059b57600080fd5b506102966110ef565b3480156105b057600080fd5b5061027f6105bf366004612108565b6110fe565b3480156105d057600080fd5b5061027f6105df36600461243d565b61124f565b3480156105f057600080fd5b5061027f6105ff366004612472565b611313565b34801561061057600080fd5b5061027f61061f366004612108565b611345565b34801561063057600080fd5b5061029661063f366004612108565b6113a9565b34801561065057600080fd5b5061032660105481565b34801561066657600080fd5b5061024a6106753660046124f2565b6114ac565b34801561068657600080fd5b5061027f6106953660046123f4565b6114da565b3480156106a657600080fd5b5061027f6106b536600461233b565b611510565b3480156106c657600080fd5b5061027f6106d5366004612108565b6115fb565b60006001600160e01b0319821663780e9d6360e01b14806106ff57506106ff8261162a565b92915050565b600a546001600160a01b031633146107385760405162461bcd60e51b815260040161072f9061252b565b60405180910390fd5b6011805460ff1916911515919091179055565b60606000805461075a90612560565b80601f016020809104026020016040519081016040528092919081815260200182805461078690612560565b80156107d35780601f106107a8576101008083540402835291602001916107d3565b820191906000526020600020905b8154815290600101906020018083116107b657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161072f565b506000908152600460205260409020546001600160a01b031690565b600d805461087f90612560565b80601f01602080910402602001604051908101604052809291908181526020018280546108ab90612560565b80156108f85780601f106108cd576101008083540402835291602001916108f8565b820191906000526020600020905b8154815290600101906020018083116108db57829003601f168201915b505050505081565b600061090b82610efa565b9050806001600160a01b0316836001600160a01b0316036109785760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161072f565b336001600160a01b0382161480610994575061099481336114ac565b610a065760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161072f565b610a10838361167a565b505050565b60005b8151811015610a1057610a5e33848381518110610a3757610a3761259a565b6020026020010151848481518110610a5157610a5161259a565b6020026020010151610b92565b80610a68816125c6565b915050610a18565b610a7a33826116e8565b610a965760405162461bcd60e51b815260040161072f906125df565b610a108383836117bf565b600a546001600160a01b03163314610acb5760405162461bcd60e51b815260040161072f9061252b565b604051339082156108fc029083906000818181858888f19350505050158015610af8573d6000803e3d6000fd5b5050565b6000610b0783610fb0565b8210610b695760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161072f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a1083838360405180602001604052806000815250611313565b60606000610bba83610fb0565b905060008167ffffffffffffffff811115610bd757610bd7612162565b604051908082528060200260200182016040528015610c00578160200160208202803683370190505b50905060005b82811015610c4757610c188582610afc565b828281518110610c2a57610c2a61259a565b602090810291909101015280610c3f816125c6565b915050610c06565b509392505050565b6000610c5a60085490565b8210610cbd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161072f565b60088281548110610cd057610cd061259a565b90600052602060002001549050919050565b600a546001600160a01b03166040516331a9108f60e11b8152600481018390526001600160a01b0391909116903090636352211e90602401602060405180830381865afa158015610d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5b9190612630565b6001600160a01b031614610dbc5760405162461bcd60e51b815260206004820152602260248201527f4e4654206e6f7420617661696c61626c6520696e2073656c6c65722077616c6c604482015261195d60f21b606482015260840161072f565b600f54341015610e0e5760405162461bcd60e51b815260206004820152601e60248201527f696e73756666696369656e742066756e6420666f722070757263686173650000604482015260640161072f565b306342842e0e610e26600a546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260448101849052606401600060405180830381600087803b158015610e7457600080fd5b505af1158015610e88573d6000803e3d6000fd5b50506040518381523392507fccc0714a22497a22dd0f50922822d7002a7f07860d62eaf2fd93608e140ce13e915060200160405180910390a250565b600a546001600160a01b03163314610eee5760405162461bcd60e51b815260040161072f9061252b565b600b610af8828261269b565b6000818152600260205260408120546001600160a01b0316806106ff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161072f565b600081600f546106ff919061275b565b600a546001600160a01b03163314610fab5760405162461bcd60e51b815260040161072f9061252b565b601055565b60006001600160a01b03821661101b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161072f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110615760405162461bcd60e51b815260040161072f9061252b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146110d55760405162461bcd60e51b815260040161072f9061252b565b601180549115156101000261ff0019909216919091179055565b60606001805461075a90612560565b600a546001600160a01b031633146111285760405162461bcd60e51b815260040161072f9061252b565b60115460ff16156111745760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161072f565b600061117f60085490565b60105490915061118f8383612772565b11156111e85760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d6178696d756d204f726967696e61746f727320737570706044820152616c7960f01b606482015260840161072f565b600e546111f533306114ac565b6112045761120430600161124f565b60015b838111611249576112213361121c8385612772565b61196a565b600e8054906000611231836125c6565b91905055508080611241906125c6565b915050611207565b50505050565b336001600160a01b038316036112a75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161072f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61131d33836116e8565b6113395760405162461bcd60e51b815260040161072f906125df565b61124984848484611984565b600061135082610efa565b9050336001600160a01b038216146113a05760405162461bcd60e51b815260206004820152601360248201527221b0b63632b91034b9903737ba1037b73bb2b960691b604482015260640161072f565b610af8826119b7565b6000818152600260205260409020546060906001600160a01b03166114285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161072f565b601154610100900460ff16151560000361146e57600d61144783611a5e565b604051602001611458929190612785565b6040516020818303038152906040529050919050565b6000611478611b5f565b90508061148484611a5e565b60405160200161149592919061280c565b604051602081830303815290604052915050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146115045760405162461bcd60e51b815260040161072f9061252b565b600d610af8828261269b565b600a546001600160a01b0316331461153a5760405162461bcd60e51b815260040161072f9061252b565b6001600160a01b03811661159f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072f565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146116255760405162461bcd60e51b815260040161072f9061252b565b600f55565b60006001600160e01b031982166380ac58cd60e01b148061165b57506001600160e01b03198216635b5e139f60e01b145b806106ff57506301ffc9a760e01b6001600160e01b03198316146106ff565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116af82610efa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161072f565b600061176c83610efa565b9050806001600160a01b0316846001600160a01b031614806117a75750836001600160a01b031661179c846107dd565b6001600160a01b0316145b806117b757506117b781856114ac565b949350505050565b826001600160a01b03166117d282610efa565b6001600160a01b03161461183a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161072f565b6001600160a01b03821661189c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161072f565b6118a7838383611b6e565b6118b260008261167a565b6001600160a01b03831660009081526003602052604081208054600192906118db908490612832565b90915550506001600160a01b0382166000908152600360205260408120805460019290611909908490612772565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610af8828260405180602001604052806000815250611c26565b61198f8484846117bf565b61199b84848484611c59565b6112495760405162461bcd60e51b815260040161072f90612845565b60006119c282610efa565b90506119d081600084611b6e565b6119db60008361167a565b6001600160a01b0381166000908152600360205260408120805460019290611a04908490612832565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081600003611a855750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aaf5780611a99816125c6565b9150611aa89050600a836128ad565b9150611a89565b60008167ffffffffffffffff811115611aca57611aca612162565b6040519080825280601f01601f191660200182016040528015611af4576020820181803683370190505b5090505b84156117b757611b09600183612832565b9150611b16600a866128c1565b611b21906030612772565b60f81b818381518110611b3657611b3661259a565b60200101906001600160f81b031916908160001a905350611b58600a866128ad565b9450611af8565b6060600b805461075a90612560565b6001600160a01b038316611bc957611bc481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bec565b816001600160a01b0316836001600160a01b031614611bec57611bec8382611d5a565b6001600160a01b038216611c0357610a1081611df7565b826001600160a01b0316826001600160a01b031614610a1057610a108282611ea6565b611c308383611eea565b611c3d6000848484611c59565b610a105760405162461bcd60e51b815260040161072f90612845565b60006001600160a01b0384163b15611d4f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c9d9033908990889088906004016128d5565b6020604051808303816000875af1925050508015611cd8575060408051601f3d908101601f19168201909252611cd591810190612912565b60015b611d35573d808015611d06576040519150601f19603f3d011682016040523d82523d6000602084013e611d0b565b606091505b508051600003611d2d5760405162461bcd60e51b815260040161072f90612845565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117b7565b506001949350505050565b60006001611d6784610fb0565b611d719190612832565b600083815260076020526040902054909150808214611dc4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e0990600190612832565b60008381526009602052604081205460088054939450909284908110611e3157611e3161259a565b906000526020600020015490508060088381548110611e5257611e5261259a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e8a57611e8a61292f565b6001900381819060005260206000200160009055905550505050565b6000611eb183610fb0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161072f565b6000818152600260205260409020546001600160a01b031615611fa55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161072f565b611fb160008383611b6e565b6001600160a01b0382166000908152600360205260408120805460019290611fda908490612772565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461204e57600080fd5b50565b60006020828403121561206357600080fd5b813561206e81612038565b9392505050565b8035801515811461208557600080fd5b919050565b60006020828403121561209c57600080fd5b61206e82612075565b60005b838110156120c05781810151838201526020016120a8565b50506000910152565b600081518084526120e18160208601602086016120a5565b601f01601f19169290920160200192915050565b60208152600061206e60208301846120c9565b60006020828403121561211a57600080fd5b5035919050565b6001600160a01b038116811461204e57600080fd5b6000806040838503121561214957600080fd5b823561215481612121565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156121a1576121a1612162565b604052919050565b600067ffffffffffffffff8211156121c3576121c3612162565b5060051b60200190565b600082601f8301126121de57600080fd5b813560206121f36121ee836121a9565b612178565b82815260059290921b8401810191818101908684111561221257600080fd5b8286015b8481101561222d5780358352918301918301612216565b509695505050505050565b6000806040838503121561224b57600080fd5b823567ffffffffffffffff8082111561226357600080fd5b818501915085601f83011261227757600080fd5b813560206122876121ee836121a9565b82815260059290921b840181019181810190898411156122a657600080fd5b948201945b838610156122cd5785356122be81612121565b825294820194908201906122ab565b965050860135925050808211156122e357600080fd5b506122f0858286016121cd565b9150509250929050565b60008060006060848603121561230f57600080fd5b833561231a81612121565b9250602084013561232a81612121565b929592945050506040919091013590565b60006020828403121561234d57600080fd5b813561206e81612121565b6020808252825182820181905260009190848201906040850190845b8181101561239057835183529284019291840191600101612374565b50909695505050505050565b600067ffffffffffffffff8311156123b6576123b6612162565b6123c9601f8401601f1916602001612178565b90508281528383830111156123dd57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561240657600080fd5b813567ffffffffffffffff81111561241d57600080fd5b8201601f8101841361242e57600080fd5b6117b78482356020840161239c565b6000806040838503121561245057600080fd5b823561245b81612121565b915061246960208401612075565b90509250929050565b6000806000806080858703121561248857600080fd5b843561249381612121565b935060208501356124a381612121565b925060408501359150606085013567ffffffffffffffff8111156124c657600080fd5b8501601f810187136124d757600080fd5b6124e68782356020840161239c565b91505092959194509250565b6000806040838503121561250557600080fd5b823561251081612121565b9150602083013561252081612121565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061257457607f821691505b60208210810361259457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016125d8576125d86125b0565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60006020828403121561264257600080fd5b815161206e81612121565b601f821115610a1057600081815260208120601f850160051c810160208610156126745750805b601f850160051c820191505b8181101561269357828155600101612680565b505050505050565b815167ffffffffffffffff8111156126b5576126b5612162565b6126c9816126c38454612560565b8461264d565b602080601f8311600181146126fe57600084156126e65750858301515b600019600386901b1c1916600185901b178555612693565b600085815260208120601f198616915b8281101561272d5788860151825594840194600190910190840161270e565b508582101561274b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176106ff576106ff6125b0565b808201808211156106ff576106ff6125b0565b600080845461279381612560565b600182811680156127ab57600181146127c0576127ef565b60ff19841687528215158302870194506127ef565b8860005260208060002060005b858110156127e65781548a8201529084019082016127cd565b50505082870194505b5050505083516128038183602088016120a5565b01949350505050565b6000835161281e8184602088016120a5565b8351908301906128038183602088016120a5565b818103818111156106ff576106ff6125b0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826128bc576128bc612897565b500490565b6000826128d0576128d0612897565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612908908301846120c9565b9695505050505050565b60006020828403121561292457600080fd5b815161206e81612038565b634e487b7160e01b600052603160045260246000fdfea264697066735822122044b6f90b3944669beb6d6787dc02961f10d09bfdd39a57631bcf7034cc97e9eb64736f6c634300081200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e43727970746f205672656e656c6900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035041430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f63727970746f7672656e656c69646173682e63683a383038332f6e66742f6d657461646174612f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f63727970746f7672656e656c69646173682e63683a383038332f6e66742f6d657461646174612f0000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c80635c975abb11610123578063a0712d68116100ab578063d5abeb011161006f578063d5abeb0114610644578063e985e9c51461065a578063f2c4ce1e1461067a578063f2fde38b1461069a578063f606faea146106ba57600080fd5b8063a0712d68146105a4578063a22cb465146105c4578063b88d4fde146105e4578063b90306ad14610604578063c87b56dd1461062457600080fd5b806370a08231116100f257806370a082311461051c578063715018a61461053c5780638da5cb5b14610551578063940cd05b1461056f57806395d89b411461058f57600080fd5b80635c975abb146104a25780636352211e146104bc57806367f14133146104dc5780636f8b44b0146104fc57600080fd5b806323b872dd116101b1578063438b630011610175578063438b6300146104035780634f6ccce714610430578063518302271461045057806351ed82881461046f57806355f804b31461048257600080fd5b806323b872dd146103695780632e1a7d4d146103895780632f745c59146103a95780633b80b7d3146103c957806342842e0e146103e357600080fd5b8063081c8c44116101f8578063081c8c44146102db578063095ea7b3146102f057806313faede61461031057806318160ddd146103345780631e89d5451461034957600080fd5b806301ffc9a71461022a57806302329a291461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004612051565b6106da565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a36600461208a565b610705565b005b34801561028d57600080fd5b5061029661074b565b60405161025691906120f5565b3480156102af57600080fd5b506102c36102be366004612108565b6107dd565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b50610296610872565b3480156102fc57600080fd5b5061027f61030b366004612136565b610900565b34801561031c57600080fd5b50610326600f5481565b604051908152602001610256565b34801561034057600080fd5b50600854610326565b34801561035557600080fd5b5061027f610364366004612238565b610a15565b34801561037557600080fd5b5061027f6103843660046122fa565b610a70565b34801561039557600080fd5b5061027f6103a4366004612108565b610aa1565b3480156103b557600080fd5b506103266103c4366004612136565b610afc565b3480156103d557600080fd5b50600c5461024a9060ff1681565b3480156103ef57600080fd5b5061027f6103fe3660046122fa565b610b92565b34801561040f57600080fd5b5061042361041e36600461233b565b610bad565b6040516102569190612358565b34801561043c57600080fd5b5061032661044b366004612108565b610c4f565b34801561045c57600080fd5b5060115461024a90610100900460ff1681565b61027f61047d366004612108565b610ce2565b34801561048e57600080fd5b5061027f61049d3660046123f4565b610ec4565b3480156104ae57600080fd5b5060115461024a9060ff1681565b3480156104c857600080fd5b506102c36104d7366004612108565b610efa565b3480156104e857600080fd5b506103266104f7366004612108565b610f71565b34801561050857600080fd5b5061027f610517366004612108565b610f81565b34801561052857600080fd5b5061032661053736600461233b565b610fb0565b34801561054857600080fd5b5061027f611037565b34801561055d57600080fd5b50600a546001600160a01b03166102c3565b34801561057b57600080fd5b5061027f61058a36600461208a565b6110ab565b34801561059b57600080fd5b506102966110ef565b3480156105b057600080fd5b5061027f6105bf366004612108565b6110fe565b3480156105d057600080fd5b5061027f6105df36600461243d565b61124f565b3480156105f057600080fd5b5061027f6105ff366004612472565b611313565b34801561061057600080fd5b5061027f61061f366004612108565b611345565b34801561063057600080fd5b5061029661063f366004612108565b6113a9565b34801561065057600080fd5b5061032660105481565b34801561066657600080fd5b5061024a6106753660046124f2565b6114ac565b34801561068657600080fd5b5061027f6106953660046123f4565b6114da565b3480156106a657600080fd5b5061027f6106b536600461233b565b611510565b3480156106c657600080fd5b5061027f6106d5366004612108565b6115fb565b60006001600160e01b0319821663780e9d6360e01b14806106ff57506106ff8261162a565b92915050565b600a546001600160a01b031633146107385760405162461bcd60e51b815260040161072f9061252b565b60405180910390fd5b6011805460ff1916911515919091179055565b60606000805461075a90612560565b80601f016020809104026020016040519081016040528092919081815260200182805461078690612560565b80156107d35780601f106107a8576101008083540402835291602001916107d3565b820191906000526020600020905b8154815290600101906020018083116107b657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161072f565b506000908152600460205260409020546001600160a01b031690565b600d805461087f90612560565b80601f01602080910402602001604051908101604052809291908181526020018280546108ab90612560565b80156108f85780601f106108cd576101008083540402835291602001916108f8565b820191906000526020600020905b8154815290600101906020018083116108db57829003601f168201915b505050505081565b600061090b82610efa565b9050806001600160a01b0316836001600160a01b0316036109785760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161072f565b336001600160a01b0382161480610994575061099481336114ac565b610a065760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161072f565b610a10838361167a565b505050565b60005b8151811015610a1057610a5e33848381518110610a3757610a3761259a565b6020026020010151848481518110610a5157610a5161259a565b6020026020010151610b92565b80610a68816125c6565b915050610a18565b610a7a33826116e8565b610a965760405162461bcd60e51b815260040161072f906125df565b610a108383836117bf565b600a546001600160a01b03163314610acb5760405162461bcd60e51b815260040161072f9061252b565b604051339082156108fc029083906000818181858888f19350505050158015610af8573d6000803e3d6000fd5b5050565b6000610b0783610fb0565b8210610b695760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161072f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a1083838360405180602001604052806000815250611313565b60606000610bba83610fb0565b905060008167ffffffffffffffff811115610bd757610bd7612162565b604051908082528060200260200182016040528015610c00578160200160208202803683370190505b50905060005b82811015610c4757610c188582610afc565b828281518110610c2a57610c2a61259a565b602090810291909101015280610c3f816125c6565b915050610c06565b509392505050565b6000610c5a60085490565b8210610cbd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161072f565b60088281548110610cd057610cd061259a565b90600052602060002001549050919050565b600a546001600160a01b03166040516331a9108f60e11b8152600481018390526001600160a01b0391909116903090636352211e90602401602060405180830381865afa158015610d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5b9190612630565b6001600160a01b031614610dbc5760405162461bcd60e51b815260206004820152602260248201527f4e4654206e6f7420617661696c61626c6520696e2073656c6c65722077616c6c604482015261195d60f21b606482015260840161072f565b600f54341015610e0e5760405162461bcd60e51b815260206004820152601e60248201527f696e73756666696369656e742066756e6420666f722070757263686173650000604482015260640161072f565b306342842e0e610e26600a546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260448101849052606401600060405180830381600087803b158015610e7457600080fd5b505af1158015610e88573d6000803e3d6000fd5b50506040518381523392507fccc0714a22497a22dd0f50922822d7002a7f07860d62eaf2fd93608e140ce13e915060200160405180910390a250565b600a546001600160a01b03163314610eee5760405162461bcd60e51b815260040161072f9061252b565b600b610af8828261269b565b6000818152600260205260408120546001600160a01b0316806106ff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161072f565b600081600f546106ff919061275b565b600a546001600160a01b03163314610fab5760405162461bcd60e51b815260040161072f9061252b565b601055565b60006001600160a01b03821661101b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161072f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110615760405162461bcd60e51b815260040161072f9061252b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146110d55760405162461bcd60e51b815260040161072f9061252b565b601180549115156101000261ff0019909216919091179055565b60606001805461075a90612560565b600a546001600160a01b031633146111285760405162461bcd60e51b815260040161072f9061252b565b60115460ff16156111745760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161072f565b600061117f60085490565b60105490915061118f8383612772565b11156111e85760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d6178696d756d204f726967696e61746f727320737570706044820152616c7960f01b606482015260840161072f565b600e546111f533306114ac565b6112045761120430600161124f565b60015b838111611249576112213361121c8385612772565b61196a565b600e8054906000611231836125c6565b91905055508080611241906125c6565b915050611207565b50505050565b336001600160a01b038316036112a75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161072f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61131d33836116e8565b6113395760405162461bcd60e51b815260040161072f906125df565b61124984848484611984565b600061135082610efa565b9050336001600160a01b038216146113a05760405162461bcd60e51b815260206004820152601360248201527221b0b63632b91034b9903737ba1037b73bb2b960691b604482015260640161072f565b610af8826119b7565b6000818152600260205260409020546060906001600160a01b03166114285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161072f565b601154610100900460ff16151560000361146e57600d61144783611a5e565b604051602001611458929190612785565b6040516020818303038152906040529050919050565b6000611478611b5f565b90508061148484611a5e565b60405160200161149592919061280c565b604051602081830303815290604052915050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146115045760405162461bcd60e51b815260040161072f9061252b565b600d610af8828261269b565b600a546001600160a01b0316331461153a5760405162461bcd60e51b815260040161072f9061252b565b6001600160a01b03811661159f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072f565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146116255760405162461bcd60e51b815260040161072f9061252b565b600f55565b60006001600160e01b031982166380ac58cd60e01b148061165b57506001600160e01b03198216635b5e139f60e01b145b806106ff57506301ffc9a760e01b6001600160e01b03198316146106ff565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116af82610efa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161072f565b600061176c83610efa565b9050806001600160a01b0316846001600160a01b031614806117a75750836001600160a01b031661179c846107dd565b6001600160a01b0316145b806117b757506117b781856114ac565b949350505050565b826001600160a01b03166117d282610efa565b6001600160a01b03161461183a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161072f565b6001600160a01b03821661189c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161072f565b6118a7838383611b6e565b6118b260008261167a565b6001600160a01b03831660009081526003602052604081208054600192906118db908490612832565b90915550506001600160a01b0382166000908152600360205260408120805460019290611909908490612772565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610af8828260405180602001604052806000815250611c26565b61198f8484846117bf565b61199b84848484611c59565b6112495760405162461bcd60e51b815260040161072f90612845565b60006119c282610efa565b90506119d081600084611b6e565b6119db60008361167a565b6001600160a01b0381166000908152600360205260408120805460019290611a04908490612832565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081600003611a855750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aaf5780611a99816125c6565b9150611aa89050600a836128ad565b9150611a89565b60008167ffffffffffffffff811115611aca57611aca612162565b6040519080825280601f01601f191660200182016040528015611af4576020820181803683370190505b5090505b84156117b757611b09600183612832565b9150611b16600a866128c1565b611b21906030612772565b60f81b818381518110611b3657611b3661259a565b60200101906001600160f81b031916908160001a905350611b58600a866128ad565b9450611af8565b6060600b805461075a90612560565b6001600160a01b038316611bc957611bc481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bec565b816001600160a01b0316836001600160a01b031614611bec57611bec8382611d5a565b6001600160a01b038216611c0357610a1081611df7565b826001600160a01b0316826001600160a01b031614610a1057610a108282611ea6565b611c308383611eea565b611c3d6000848484611c59565b610a105760405162461bcd60e51b815260040161072f90612845565b60006001600160a01b0384163b15611d4f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c9d9033908990889088906004016128d5565b6020604051808303816000875af1925050508015611cd8575060408051601f3d908101601f19168201909252611cd591810190612912565b60015b611d35573d808015611d06576040519150601f19603f3d011682016040523d82523d6000602084013e611d0b565b606091505b508051600003611d2d5760405162461bcd60e51b815260040161072f90612845565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117b7565b506001949350505050565b60006001611d6784610fb0565b611d719190612832565b600083815260076020526040902054909150808214611dc4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e0990600190612832565b60008381526009602052604081205460088054939450909284908110611e3157611e3161259a565b906000526020600020015490508060088381548110611e5257611e5261259a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e8a57611e8a61292f565b6001900381819060005260206000200160009055905550505050565b6000611eb183610fb0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161072f565b6000818152600260205260409020546001600160a01b031615611fa55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161072f565b611fb160008383611b6e565b6001600160a01b0382166000908152600360205260408120805460019290611fda908490612772565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461204e57600080fd5b50565b60006020828403121561206357600080fd5b813561206e81612038565b9392505050565b8035801515811461208557600080fd5b919050565b60006020828403121561209c57600080fd5b61206e82612075565b60005b838110156120c05781810151838201526020016120a8565b50506000910152565b600081518084526120e18160208601602086016120a5565b601f01601f19169290920160200192915050565b60208152600061206e60208301846120c9565b60006020828403121561211a57600080fd5b5035919050565b6001600160a01b038116811461204e57600080fd5b6000806040838503121561214957600080fd5b823561215481612121565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156121a1576121a1612162565b604052919050565b600067ffffffffffffffff8211156121c3576121c3612162565b5060051b60200190565b600082601f8301126121de57600080fd5b813560206121f36121ee836121a9565b612178565b82815260059290921b8401810191818101908684111561221257600080fd5b8286015b8481101561222d5780358352918301918301612216565b509695505050505050565b6000806040838503121561224b57600080fd5b823567ffffffffffffffff8082111561226357600080fd5b818501915085601f83011261227757600080fd5b813560206122876121ee836121a9565b82815260059290921b840181019181810190898411156122a657600080fd5b948201945b838610156122cd5785356122be81612121565b825294820194908201906122ab565b965050860135925050808211156122e357600080fd5b506122f0858286016121cd565b9150509250929050565b60008060006060848603121561230f57600080fd5b833561231a81612121565b9250602084013561232a81612121565b929592945050506040919091013590565b60006020828403121561234d57600080fd5b813561206e81612121565b6020808252825182820181905260009190848201906040850190845b8181101561239057835183529284019291840191600101612374565b50909695505050505050565b600067ffffffffffffffff8311156123b6576123b6612162565b6123c9601f8401601f1916602001612178565b90508281528383830111156123dd57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561240657600080fd5b813567ffffffffffffffff81111561241d57600080fd5b8201601f8101841361242e57600080fd5b6117b78482356020840161239c565b6000806040838503121561245057600080fd5b823561245b81612121565b915061246960208401612075565b90509250929050565b6000806000806080858703121561248857600080fd5b843561249381612121565b935060208501356124a381612121565b925060408501359150606085013567ffffffffffffffff8111156124c657600080fd5b8501601f810187136124d757600080fd5b6124e68782356020840161239c565b91505092959194509250565b6000806040838503121561250557600080fd5b823561251081612121565b9150602083013561252081612121565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061257457607f821691505b60208210810361259457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016125d8576125d86125b0565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60006020828403121561264257600080fd5b815161206e81612121565b601f821115610a1057600081815260208120601f850160051c810160208610156126745750805b601f850160051c820191505b8181101561269357828155600101612680565b505050505050565b815167ffffffffffffffff8111156126b5576126b5612162565b6126c9816126c38454612560565b8461264d565b602080601f8311600181146126fe57600084156126e65750858301515b600019600386901b1c1916600185901b178555612693565b600085815260208120601f198616915b8281101561272d5788860151825594840194600190910190840161270e565b508582101561274b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176106ff576106ff6125b0565b808201808211156106ff576106ff6125b0565b600080845461279381612560565b600182811680156127ab57600181146127c0576127ef565b60ff19841687528215158302870194506127ef565b8860005260208060002060005b858110156127e65781548a8201529084019082016127cd565b50505082870194505b5050505083516128038183602088016120a5565b01949350505050565b6000835161281e8184602088016120a5565b8351908301906128038183602088016120a5565b818103818111156106ff576106ff6125b0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826128bc576128bc612897565b500490565b6000826128d0576128d0612897565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612908908301846120c9565b9695505050505050565b60006020828403121561292457600080fd5b815161206e81612038565b634e487b7160e01b600052603160045260246000fdfea264697066735822122044b6f90b3944669beb6d6787dc02961f10d09bfdd39a57631bcf7034cc97e9eb64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e43727970746f205672656e656c6900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035041430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f63727970746f7672656e656c69646173682e63683a383038332f6e66742f6d657461646174612f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f63727970746f7672656e656c69646173682e63683a383038332f6e66742f6d657461646174612f0000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Crypto Vreneli
Arg [1] : _symbol (string): PAC
Arg [2] : _initBaseURI (string): https://cryptovrenelidash.ch:8083/nft/metadata/
Arg [3] : _initNotRevealedUri (string): https://cryptovrenelidash.ch:8083/nft/metadata/
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 43727970746f205672656e656c69000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5041430000000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [9] : 68747470733a2f2f63727970746f7672656e656c69646173682e63683a383038
Arg [10] : 332f6e66742f6d657461646174612f0000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [12] : 68747470733a2f2f63727970746f7672656e656c69646173682e63683a383038
Arg [13] : 332f6e66742f6d657461646174612f0000000000000000000000000000000000
Deployed Bytecode Sourcemap
46718:3767:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40589:237;;;;;;;;;;-1:-1:-1;40589:237:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;40589:237:0;;;;;;;;50293:73;;;;;;;;;;-1:-1:-1;50293:73:0;;;;;:::i;:::-;;:::i;:::-;;29108:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30568:221::-;;;;;;;;;;-1:-1:-1;30568:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2047:32:1;;;2029:51;;2017:2;2002:18;30568:221:0;1883:203:1;46900:28:0;;;;;;;;;;;;;:::i;30105:397::-;;;;;;;;;;-1:-1:-1;30105:397:0;;;;;:::i;:::-;;:::i;46967:35::-;;;;;;;;;;;;;;;;;;;2693:25:1;;;2681:2;2666:18;46967:35:0;2547:177:1;41242:113:0;;;;;;;;;;-1:-1:-1;41330:10:0;:17;41242:113;;48481:227;;;;;;;;;;-1:-1:-1;48481:227:0;;;;;:::i;:::-;;:::i;31458:305::-;;;;;;;;;;-1:-1:-1;31458:305:0;;;;;:::i;:::-;;:::i;50376:106::-;;;;;;;;;;-1:-1:-1;50376:106:0;;;;;:::i;:::-;;:::i;40910:256::-;;;;;;;;;;-1:-1:-1;40910:256:0;;;;;:::i;:::-;;:::i;46863:32::-;;;;;;;;;;-1:-1:-1;46863:32:0;;;;;;;;31834:151;;;;;;;;;;-1:-1:-1;31834:151:0;;;;;:::i;:::-;;:::i;48906:329::-;;;;;;;;;;-1:-1:-1;48906:329:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41432:233::-;;;;;;;;;;-1:-1:-1;41432:233:0;;;;;:::i;:::-;;:::i;47079:27::-;;;;;;;;;;-1:-1:-1;47079:27:0;;;;;;;;;;;48148:325;;;;;;:::i;:::-;;:::i;50061:98::-;;;;;;;;;;-1:-1:-1;50061:98:0;;;;;:::i;:::-;;:::i;47048:26::-;;;;;;;;;;-1:-1:-1;47048:26:0;;;;;;;;28802:239;;;;;;;;;;-1:-1:-1;28802:239:0;;;;;:::i;:::-;;:::i;49241:110::-;;;;;;;;;;-1:-1:-1;49241:110:0;;;;;:::i;:::-;;:::i;49874:93::-;;;;;;;;;;-1:-1:-1;49874:93:0;;;;;:::i;:::-;;:::i;28532:208::-;;;;;;;;;;-1:-1:-1;28532:208:0;;;;;:::i;:::-;;:::i;18913:148::-;;;;;;;;;;;;;:::i;18262:87::-;;;;;;;;;;-1:-1:-1;18335:6:0;;-1:-1:-1;;;;;18335:6:0;18262:87;;49973:80;;;;;;;;;;-1:-1:-1;49973:80:0;;;;;:::i;:::-;;:::i;29277:104::-;;;;;;;;;;;;;:::i;47562:578::-;;;;;;;;;;-1:-1:-1;47562:578:0;;;;;:::i;:::-;;:::i;30861:295::-;;;;;;;;;;-1:-1:-1;30861:295:0;;;;;:::i;:::-;;:::i;32056:285::-;;;;;;;;;;-1:-1:-1;32056:285:0;;;;;:::i;:::-;;:::i;48716:184::-;;;;;;;;;;-1:-1:-1;48716:184:0;;;;;:::i;:::-;;:::i;49361:421::-;;;;;;;;;;-1:-1:-1;49361:421:0;;;;;:::i;:::-;;:::i;47007:30::-;;;;;;;;;;;;;;;;31227:164;;;;;;;;;;-1:-1:-1;31227:164:0;;;;;:::i;:::-;;:::i;50165:120::-;;;;;;;;;;-1:-1:-1;50165:120:0;;;;;:::i;:::-;;:::i;19216:244::-;;;;;;;;;;-1:-1:-1;19216:244:0;;;;;:::i;:::-;;:::i;49790:76::-;;;;;;;;;;-1:-1:-1;49790:76:0;;;;;:::i;:::-;;:::i;40589:237::-;40691:4;-1:-1:-1;;;;;;40715:50:0;;-1:-1:-1;;;40715:50:0;;:103;;;40782:36;40806:11;40782:23;:36::i;:::-;40708:110;40589:237;-1:-1:-1;;40589:237:0:o;50293:73::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;;;;;;;;;50345:6:::1;:15:::0;;-1:-1:-1;;50345:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50293:73::o;29108:100::-;29162:13;29195:5;29188:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29108:100;:::o;30568:221::-;30644:7;33897:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33897:16:0;30664:73;;;;-1:-1:-1;;;30664:73:0;;9895:2:1;30664:73:0;;;9877:21:1;9934:2;9914:18;;;9907:30;9973:34;9953:18;;;9946:62;-1:-1:-1;;;10024:18:1;;;10017:42;10076:19;;30664:73:0;9693:408:1;30664:73:0;-1:-1:-1;30757:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30757:24:0;;30568:221::o;46900:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30105:397::-;30186:13;30202:23;30217:7;30202:14;:23::i;:::-;30186:39;;30250:5;-1:-1:-1;;;;;30244:11:0;:2;-1:-1:-1;;;;;30244:11:0;;30236:57;;;;-1:-1:-1;;;30236:57:0;;10308:2:1;30236:57:0;;;10290:21:1;10347:2;10327:18;;;10320:30;10386:34;10366:18;;;10359:62;-1:-1:-1;;;10437:18:1;;;10430:31;10478:19;;30236:57:0;10106:397:1;30236:57:0;16986:10;-1:-1:-1;;;;;30314:21:0;;;;:62;;-1:-1:-1;30339:37:0;30356:5;16986:10;31227:164;:::i;30339:37::-;30306:154;;;;-1:-1:-1;;;30306:154:0;;10710:2:1;30306:154:0;;;10692:21:1;10749:2;10729:18;;;10722:30;10788:34;10768:18;;;10761:62;10859:26;10839:18;;;10832:54;10903:19;;30306:154:0;10508:420:1;30306:154:0;30473:21;30482:2;30486:7;30473:8;:21::i;:::-;30175:327;30105:397;;:::o;48481:227::-;48583:9;48578:123;48598:9;:16;48594:1;:20;48578:123;;;48636:53;48653:10;48664:8;48673:1;48664:11;;;;;;;;:::i;:::-;;;;;;;48676:9;48686:1;48676:12;;;;;;;;:::i;:::-;;;;;;;48636:16;:53::i;:::-;48616:3;;;;:::i;:::-;;;;48578:123;;31458:305;31619:41;16986:10;31652:7;31619:18;:41::i;:::-;31611:103;;;;-1:-1:-1;;;31611:103:0;;;;;;;:::i;:::-;31727:28;31737:4;31743:2;31747:7;31727:9;:28::i;50376:106::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;50438:36:::1;::::0;50446:10:::1;::::0;50438:36;::::1;;;::::0;50467:6;;50438:36:::1;::::0;;;50467:6;50446:10;50438:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50376:106:::0;:::o;40910:256::-;41007:7;41043:23;41060:5;41043:16;:23::i;:::-;41035:5;:31;41027:87;;;;-1:-1:-1;;;41027:87:0;;11957:2:1;41027:87:0;;;11939:21:1;11996:2;11976:18;;;11969:30;12035:34;12015:18;;;12008:62;-1:-1:-1;;;12086:18:1;;;12079:41;12137:19;;41027:87:0;11755:407:1;41027:87:0;-1:-1:-1;;;;;;41132:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40910:256::o;31834:151::-;31938:39;31955:4;31961:2;31965:7;31938:39;;;;;;;;;;;;:16;:39::i;48906:329::-;48966:16;48990:23;49016:17;49026:6;49016:9;:17::i;:::-;48990:43;;49040:25;49082:15;49068:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49068:30:0;;49040:58;;49110:9;49105:103;49125:15;49121:1;:19;49105:103;;;49170:30;49190:6;49198:1;49170:19;:30::i;:::-;49156:8;49165:1;49156:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;49142:3;;;;:::i;:::-;;;;49105:103;;;-1:-1:-1;49221:8:0;48906:329;-1:-1:-1;;;48906:329:0:o;41432:233::-;41507:7;41543:30;41330:10;:17;;41242:113;41543:30;41535:5;:38;41527:95;;;;-1:-1:-1;;;41527:95:0;;12369:2:1;41527:95:0;;;12351:21:1;12408:2;12388:18;;;12381:30;12447:34;12427:18;;;12420:62;-1:-1:-1;;;12498:18:1;;;12491:42;12550:19;;41527:95:0;12167:408:1;41527:95:0;41640:10;41651:5;41640:17;;;;;;;;:::i;:::-;;;;;;;;;41633:24;;41432:233;;;:::o;48148:325::-;18335:6;;-1:-1:-1;;;;;18335:6:0;48216:21;;-1:-1:-1;;;48216:21:0;;;;;2693:25:1;;;-1:-1:-1;;;;;48216:32:0;;;;;:4;;:12;;2666:18:1;;48216:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;48216:32:0;;48208:79;;;;-1:-1:-1;;;48208:79:0;;13038:2:1;48208:79:0;;;13020:21:1;13077:2;13057:18;;;13050:30;13116:34;13096:18;;;13089:62;-1:-1:-1;;;13167:18:1;;;13160:32;13209:19;;48208:79:0;12836:398:1;48208:79:0;48319:4;;48306:9;:17;;48298:60;;;;-1:-1:-1;;;48298:60:0;;13441:2:1;48298:60:0;;;13423:21:1;13480:2;13460:18;;;13453:30;13519:32;13499:18;;;13492:60;13569:18;;48298:60:0;13239:354:1;48298:60:0;48369:4;:21;48391:7;18335:6;;-1:-1:-1;;;;;18335:6:0;;18262:87;48391:7;48369:51;;-1:-1:-1;;;;;;48369:51:0;;;;;;;-1:-1:-1;;;;;13856:15:1;;;48369:51:0;;;13838:34:1;48400:10:0;13888:18:1;;;13881:43;13940:18;;;13933:34;;;13773:18;;48369:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48436:27:0;;2693:25:1;;;48443:10:0;;-1:-1:-1;48436:27:0;;-1:-1:-1;2681:2:1;2666:18;48436:27:0;;;;;;;48148:325;:::o;50061:98::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;50132:7:::1;:21;50142:11:::0;50132:7;:21:::1;:::i;28802:239::-:0;28874:7;28910:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28910:16:0;;28937:73;;;;-1:-1:-1;;;28937:73:0;;16384:2:1;28937:73:0;;;16366:21:1;16423:2;16403:18;;;16396:30;16462:34;16442:18;;;16435:62;-1:-1:-1;;;16513:18:1;;;16506:39;16562:19;;28937:73:0;16182:405:1;49241:110:0;49300:7;49334:11;49327:4;;:18;;;;:::i;49874:93::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;49939:9:::1;:22:::0;49874:93::o;28532:208::-;28604:7;-1:-1:-1;;;;;28632:19:0;;28624:74;;;;-1:-1:-1;;;28624:74:0;;16967:2:1;28624:74:0;;;16949:21:1;17006:2;16986:18;;;16979:30;17045:34;17025:18;;;17018:62;-1:-1:-1;;;17096:18:1;;;17089:40;17146:19;;28624:74:0;16765:406:1;28624:74:0;-1:-1:-1;;;;;;28716:16:0;;;;;:9;:16;;;;;;;28532:208::o;18913:148::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;19004:6:::1;::::0;18983:40:::1;::::0;19020:1:::1;::::0;-1:-1:-1;;;;;19004:6:0::1;::::0;18983:40:::1;::::0;19020:1;;18983:40:::1;19034:6;:19:::0;;-1:-1:-1;;;;;;19034:19:0::1;::::0;;18913:148::o;49973:80::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;50029:8:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;50029:18:0;;::::1;::::0;;;::::1;::::0;;49973:80::o;29277:104::-;29333:13;29366:7;29359:14;;;;;:::i;47562:578::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;47634:6:::1;::::0;::::1;;47633:7;47625:42;;;::::0;-1:-1:-1;;;47625:42:0;;17378:2:1;47625:42:0::1;::::0;::::1;17360:21:1::0;17417:2;17397:18;;;17390:30;-1:-1:-1;;;17436:18:1;;;17429:52;17498:18;;47625:42:0::1;17176:346:1::0;47625:42:0::1;47678:14;47695:13;41330:10:::0;:17;;41242:113;47695:13:::1;47751:9;::::0;47678:30;;-1:-1:-1;47727:20:0::1;47736:11:::0;47678:30;47727:20:::1;:::i;:::-;:33;;47719:80;;;::::0;-1:-1:-1;;;47719:80:0;;17859:2:1;47719:80:0::1;::::0;::::1;17841:21:1::0;17898:2;17878:18;;;17871:30;17937:34;17917:18;;;17910:62;-1:-1:-1;;;17988:18:1;;;17981:32;18030:19;;47719:80:0::1;17657:398:1::0;47719:80:0::1;47834:11;::::0;47860:43:::1;47877:10;47897:4;47860:16;:43::i;:::-;47856:113;;47919:38;47945:4;47952;47919:17;:38::i;:::-;47996:1;47979:154;48004:11;47999:1;:16;47979:154;;48052:40;48062:10;48074:17;48090:1:::0;48074:13;:17:::1;:::i;:::-;48052:9;:40::i;:::-;48108:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;48017:3;;;;;:::i;:::-;;;;47979:154;;;;47614:526;;47562:578:::0;:::o;30861:295::-;16986:10;-1:-1:-1;;;;;30964:24:0;;;30956:62;;;;-1:-1:-1;;;30956:62:0;;18262:2:1;30956:62:0;;;18244:21:1;18301:2;18281:18;;;18274:30;18340:27;18320:18;;;18313:55;18385:18;;30956:62:0;18060:349:1;30956:62:0;16986:10;31031:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31031:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31031:53:0;;;;;;;;;;31100:48;;540:41:1;;;31031:42:0;;16986:10;31100:48;;513:18:1;31100:48:0;;;;;;;30861:295;;:::o;32056:285::-;32188:41;16986:10;32221:7;32188:18;:41::i;:::-;32180:103;;;;-1:-1:-1;;;32180:103:0;;;;;;;:::i;:::-;32294:39;32308:4;32314:2;32318:7;32327:5;32294:13;:39::i;48716:184::-;48765:13;48781:23;48796:7;48781:14;:23::i;:::-;48765:39;-1:-1:-1;48823:10:0;-1:-1:-1;;;;;48823:20:0;;;48815:52;;;;-1:-1:-1;;;48815:52:0;;18616:2:1;48815:52:0;;;18598:21:1;18655:2;18635:18;;;18628:30;-1:-1:-1;;;18674:18:1;;;18667:49;18733:18;;48815:52:0;18414:343:1;48815:52:0;48878:14;48884:7;48878:5;:14::i;49361:421::-;33873:4;33897:16;;;:7;:16;;;;;;49434:13;;-1:-1:-1;;;;;33897:16:0;49461:75;;;;-1:-1:-1;;;49461:75:0;;18964:2:1;49461:75:0;;;18946:21:1;19003:2;18983:18;;;18976:30;19042:34;19022:18;;;19015:62;-1:-1:-1;;;19093:18:1;;;19086:45;19148:19;;49461:75:0;18762:411:1;49461:75:0;49550:8;;;;;;;:17;;49562:5;49550:17;49547:108;;49611:14;49627:18;:7;:16;:18::i;:::-;49594:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49580:67;;49361:421;;;:::o;49547:108::-;49661:28;49692:10;:8;:10::i;:::-;49661:41;;49740:14;49756:18;:7;:16;:18::i;:::-;49723:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49709:67;;;49361:421;;;:::o;31227:164::-;-1:-1:-1;;;;;31348:25:0;;;31324:4;31348:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31227:164::o;50165:120::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;50247:14:::1;:32;50264:15:::0;50247:14;:32:::1;:::i;19216:244::-:0;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19305:22:0;::::1;19297:73;;;::::0;-1:-1:-1;;;19297:73:0;;20906:2:1;19297:73:0::1;::::0;::::1;20888:21:1::0;20945:2;20925:18;;;20918:30;20984:34;20964:18;;;20957:62;-1:-1:-1;;;21035:18:1;;;21028:36;21081:19;;19297:73:0::1;20704:402:1::0;19297:73:0::1;19407:6;::::0;19386:38:::1;::::0;-1:-1:-1;;;;;19386:38:0;;::::1;::::0;19407:6:::1;::::0;19386:38:::1;::::0;19407:6:::1;::::0;19386:38:::1;19435:6;:17:::0;;-1:-1:-1;;;;;;19435:17:0::1;-1:-1:-1::0;;;;;19435:17:0;;;::::1;::::0;;;::::1;::::0;;19216:244::o;49790:76::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;49848:4:::1;:12:::0;49790:76::o;28176:292::-;28278:4;-1:-1:-1;;;;;;28302:40:0;;-1:-1:-1;;;28302:40:0;;:105;;-1:-1:-1;;;;;;;28359:48:0;;-1:-1:-1;;;28359:48:0;28302:105;:158;;;-1:-1:-1;;;;;;;;;;10559:40:0;;;28424:36;10450:157;37685:174;37760:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37760:29:0;-1:-1:-1;;;;;37760:29:0;;;;;;;;:24;;37814:23;37760:24;37814:14;:23::i;:::-;-1:-1:-1;;;;;37805:46:0;;;;;;;;;;;37685:174;;:::o;34102:348::-;34195:4;33897:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33897:16:0;34212:73;;;;-1:-1:-1;;;34212:73:0;;21313:2:1;34212:73:0;;;21295:21:1;21352:2;21332:18;;;21325:30;21391:34;21371:18;;;21364:62;-1:-1:-1;;;21442:18:1;;;21435:42;21494:19;;34212:73:0;21111:408:1;34212:73:0;34296:13;34312:23;34327:7;34312:14;:23::i;:::-;34296:39;;34365:5;-1:-1:-1;;;;;34354:16:0;:7;-1:-1:-1;;;;;34354:16:0;;:51;;;;34398:7;-1:-1:-1;;;;;34374:31:0;:20;34386:7;34374:11;:20::i;:::-;-1:-1:-1;;;;;34374:31:0;;34354:51;:87;;;;34409:32;34426:5;34433:7;34409:16;:32::i;:::-;34346:96;34102:348;-1:-1:-1;;;;34102:348:0:o;37023:544::-;37148:4;-1:-1:-1;;;;;37121:31:0;:23;37136:7;37121:14;:23::i;:::-;-1:-1:-1;;;;;37121:31:0;;37113:85;;;;-1:-1:-1;;;37113:85:0;;21726:2:1;37113:85:0;;;21708:21:1;21765:2;21745:18;;;21738:30;21804:34;21784:18;;;21777:62;-1:-1:-1;;;21855:18:1;;;21848:39;21904:19;;37113:85:0;21524:405:1;37113:85:0;-1:-1:-1;;;;;37217:16:0;;37209:65;;;;-1:-1:-1;;;37209:65:0;;22136:2:1;37209:65:0;;;22118:21:1;22175:2;22155:18;;;22148:30;22214:34;22194:18;;;22187:62;-1:-1:-1;;;22265:18:1;;;22258:34;22309:19;;37209:65:0;21934:400:1;37209:65:0;37287:39;37308:4;37314:2;37318:7;37287:20;:39::i;:::-;37391:29;37408:1;37412:7;37391:8;:29::i;:::-;-1:-1:-1;;;;;37433:15:0;;;;;;:9;:15;;;;;:20;;37452:1;;37433:15;:20;;37452:1;;37433:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37464:13:0;;;;;;:9;:13;;;;;:18;;37481:1;;37464:13;:18;;37481:1;;37464:18;:::i;:::-;;;;-1:-1:-1;;37493:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37493:21:0;-1:-1:-1;;;;;37493:21:0;;;;;;;;;37532:27;;37493:16;;37532:27;;;;;;;37023:544;;;:::o;34792:110::-;34868:26;34878:2;34882:7;34868:26;;;;;;;;;;;;:9;:26::i;33223:272::-;33337:28;33347:4;33353:2;33357:7;33337:9;:28::i;:::-;33384:48;33407:4;33413:2;33417:7;33426:5;33384:22;:48::i;:::-;33376:111;;;;-1:-1:-1;;;33376:111:0;;;;;;;:::i;36326:360::-;36386:13;36402:23;36417:7;36402:14;:23::i;:::-;36386:39;;36438:48;36459:5;36474:1;36478:7;36438:20;:48::i;:::-;36527:29;36544:1;36548:7;36527:8;:29::i;:::-;-1:-1:-1;;;;;36569:16:0;;;;;;:9;:16;;;;;:21;;36589:1;;36569:16;:21;;36589:1;;36569:21;:::i;:::-;;;;-1:-1:-1;;36608:16:0;;;;:7;:16;;;;;;36601:23;;-1:-1:-1;;;;;;36601:23:0;;;36642:36;36616:7;;36608:16;-1:-1:-1;;;;;36642:36:0;;;;;36608:16;;36642:36;36375:311;36326:360;:::o;717:723::-;773:13;994:5;1003:1;994:10;990:53;;-1:-1:-1;;1021:10:0;;;;;;;;;;;;-1:-1:-1;;;1021:10:0;;;;;717:723::o;990:53::-;1068:5;1053:12;1109:78;1116:9;;1109:78;;1142:8;;;;:::i;:::-;;-1:-1:-1;1165:10:0;;-1:-1:-1;1173:2:0;1165:10;;:::i;:::-;;;1109:78;;;1197:19;1229:6;1219:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1219:17:0;;1197:39;;1247:154;1254:10;;1247:154;;1281:11;1291:1;1281:11;;:::i;:::-;;-1:-1:-1;1350:10:0;1358:2;1350:5;:10;:::i;:::-;1337:24;;:2;:24;:::i;:::-;1324:39;;1307:6;1314;1307:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1307:56:0;;;;;;;;-1:-1:-1;1378:11:0;1387:2;1378:11;;:::i;:::-;;;1247:154;;47450:102;47510:13;47539:7;47532:14;;;;;:::i;42278:555::-;-1:-1:-1;;;;;42450:18:0;;42446:187;;42485:40;42517:7;43660:10;:17;;43633:24;;;;:15;:24;;;;;:44;;;43688:24;;;;;;;;;;;;43556:164;42485:40;42446:187;;;42555:2;-1:-1:-1;;;;;42547:10:0;:4;-1:-1:-1;;;;;42547:10:0;;42543:90;;42574:47;42607:4;42613:7;42574:32;:47::i;:::-;-1:-1:-1;;;;;42647:16:0;;42643:183;;42680:45;42717:7;42680:36;:45::i;42643:183::-;42753:4;-1:-1:-1;;;;;42747:10:0;:2;-1:-1:-1;;;;;42747:10:0;;42743:83;;42774:40;42802:2;42806:7;42774:27;:40::i;35129:250::-;35225:18;35231:2;35235:7;35225:5;:18::i;:::-;35262:54;35293:1;35297:2;35301:7;35310:5;35262:22;:54::i;:::-;35254:117;;;;-1:-1:-1;;;35254:117:0;;;;;;;:::i;38424:843::-;38545:4;-1:-1:-1;;;;;38571:13:0;;3451:20;3490:8;38567:693;;38607:72;;-1:-1:-1;;;38607:72:0;;-1:-1:-1;;;;;38607:36:0;;;;;:72;;16986:10;;38658:4;;38664:7;;38673:5;;38607:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38607:72:0;;;;;;;;-1:-1:-1;;38607:72:0;;;;;;;;;;;;:::i;:::-;;;38603:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38853:6;:13;38870:1;38853:18;38849:341;;38896:60;;-1:-1:-1;;;38896:60:0;;;;;;;:::i;38849:341::-;39140:6;39134:13;39125:6;39121:2;39117:15;39110:38;38603:602;-1:-1:-1;;;;;;38730:55:0;-1:-1:-1;;;38730:55:0;;-1:-1:-1;38723:62:0;;38567:693;-1:-1:-1;39244:4:0;38424:843;;;;;;:::o;44347:988::-;44613:22;44663:1;44638:22;44655:4;44638:16;:22::i;:::-;:26;;;;:::i;:::-;44675:18;44696:26;;;:17;:26;;;;;;44613:51;;-1:-1:-1;44829:28:0;;;44825:328;;-1:-1:-1;;;;;44896:18:0;;44874:19;44896:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44947:30;;;;;;:44;;;45064:30;;:17;:30;;;;;:43;;;44825:328;-1:-1:-1;45249:26:0;;;;:17;:26;;;;;;;;45242:33;;;-1:-1:-1;;;;;45293:18:0;;;;;:12;:18;;;;;:34;;;;;;;45286:41;44347:988::o;45630:1079::-;45908:10;:17;45883:22;;45908:21;;45928:1;;45908:21;:::i;:::-;45940:18;45961:24;;;:15;:24;;;;;;46334:10;:26;;45883:46;;-1:-1:-1;45961:24:0;;45883:46;;46334:26;;;;;;:::i;:::-;;;;;;;;;46312:48;;46398:11;46373:10;46384;46373:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46478:28;;;:15;:28;;;;;;;:41;;;46650:24;;;;;46643:31;46685:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45701:1008;;;45630:1079;:::o;43134:221::-;43219:14;43236:20;43253:2;43236:16;:20::i;:::-;-1:-1:-1;;;;;43267:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43312:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43134:221:0:o;35715:382::-;-1:-1:-1;;;;;35795:16:0;;35787:61;;;;-1:-1:-1;;;35787:61:0;;24347:2:1;35787:61:0;;;24329:21:1;;;24366:18;;;24359:30;24425:34;24405:18;;;24398:62;24477:18;;35787:61:0;24145:356:1;35787:61:0;33873:4;33897:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33897:16:0;:30;35859:58;;;;-1:-1:-1;;;35859:58:0;;24708:2:1;35859:58:0;;;24690:21:1;24747:2;24727:18;;;24720:30;24786;24766:18;;;24759:58;24834:18;;35859:58:0;24506:352:1;35859:58:0;35930:45;35959:1;35963:2;35967:7;35930:20;:45::i;:::-;-1:-1:-1;;;;;35988:13:0;;;;;;:9;:13;;;;;:18;;36005:1;;35988:13;:18;;36005:1;;35988:18;:::i;:::-;;;;-1:-1:-1;;36017:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36017:21:0;-1:-1:-1;;;;;36017:21:0;;;;;;;;36056:33;;36017:16;;;36056:33;;36017:16;;36056:33;35715:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;68:71;14:131;:::o;150:245::-;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:250::-;1027:1;1037:113;1051:6;1048:1;1045:13;1037:113;;;1127:11;;;1121:18;1108:11;;;1101:39;1073:2;1066:10;1037:113;;;-1:-1:-1;;1184:1:1;1166:16;;1159:27;942:250::o;1197:271::-;1239:3;1277:5;1271:12;1304:6;1299:3;1292:19;1320:76;1389:6;1382:4;1377:3;1373:14;1366:4;1359:5;1355:16;1320:76;:::i;:::-;1450:2;1429:15;-1:-1:-1;;1425:29:1;1416:39;;;;1457:4;1412:50;;1197:271;-1:-1:-1;;1197:271:1:o;1473:220::-;1622:2;1611:9;1604:21;1585:4;1642:45;1683:2;1672:9;1668:18;1660:6;1642:45;:::i;1698:180::-;1757:6;1810:2;1798:9;1789:7;1785:23;1781:32;1778:52;;;1826:1;1823;1816:12;1778:52;-1:-1:-1;1849:23:1;;1698:180;-1:-1:-1;1698:180:1:o;2091:131::-;-1:-1:-1;;;;;2166:31:1;;2156:42;;2146:70;;2212:1;2209;2202:12;2227:315;2295:6;2303;2356:2;2344:9;2335:7;2331:23;2327:32;2324:52;;;2372:1;2369;2362:12;2324:52;2411:9;2398:23;2430:31;2455:5;2430:31;:::i;:::-;2480:5;2532:2;2517:18;;;;2504:32;;-1:-1:-1;;;2227:315:1:o;2729:127::-;2790:10;2785:3;2781:20;2778:1;2771:31;2821:4;2818:1;2811:15;2845:4;2842:1;2835:15;2861:275;2932:2;2926:9;2997:2;2978:13;;-1:-1:-1;;2974:27:1;2962:40;;3032:18;3017:34;;3053:22;;;3014:62;3011:88;;;3079:18;;:::i;:::-;3115:2;3108:22;2861:275;;-1:-1:-1;2861:275:1:o;3141:183::-;3201:4;3234:18;3226:6;3223:30;3220:56;;;3256:18;;:::i;:::-;-1:-1:-1;3301:1:1;3297:14;3313:4;3293:25;;3141:183::o;3329:662::-;3383:5;3436:3;3429:4;3421:6;3417:17;3413:27;3403:55;;3454:1;3451;3444:12;3403:55;3490:6;3477:20;3516:4;3540:60;3556:43;3596:2;3556:43;:::i;:::-;3540:60;:::i;:::-;3634:15;;;3720:1;3716:10;;;;3704:23;;3700:32;;;3665:12;;;;3744:15;;;3741:35;;;3772:1;3769;3762:12;3741:35;3808:2;3800:6;3796:15;3820:142;3836:6;3831:3;3828:15;3820:142;;;3902:17;;3890:30;;3940:12;;;;3853;;3820:142;;;-1:-1:-1;3980:5:1;3329:662;-1:-1:-1;;;;;;3329:662:1:o;3996:1215::-;4114:6;4122;4175:2;4163:9;4154:7;4150:23;4146:32;4143:52;;;4191:1;4188;4181:12;4143:52;4231:9;4218:23;4260:18;4301:2;4293:6;4290:14;4287:34;;;4317:1;4314;4307:12;4287:34;4355:6;4344:9;4340:22;4330:32;;4400:7;4393:4;4389:2;4385:13;4381:27;4371:55;;4422:1;4419;4412:12;4371:55;4458:2;4445:16;4480:4;4504:60;4520:43;4560:2;4520:43;:::i;4504:60::-;4598:15;;;4680:1;4676:10;;;;4668:19;;4664:28;;;4629:12;;;;4704:19;;;4701:39;;;4736:1;4733;4726:12;4701:39;4760:11;;;;4780:217;4796:6;4791:3;4788:15;4780:217;;;4876:3;4863:17;4893:31;4918:5;4893:31;:::i;:::-;4937:18;;4813:12;;;;4975;;;;4780:217;;;5016:5;-1:-1:-1;;5059:18:1;;5046:32;;-1:-1:-1;;5090:16:1;;;5087:36;;;5119:1;5116;5109:12;5087:36;;5142:63;5197:7;5186:8;5175:9;5171:24;5142:63;:::i;:::-;5132:73;;;3996:1215;;;;;:::o;5216:456::-;5293:6;5301;5309;5362:2;5350:9;5341:7;5337:23;5333:32;5330:52;;;5378:1;5375;5368:12;5330:52;5417:9;5404:23;5436:31;5461:5;5436:31;:::i;:::-;5486:5;-1:-1:-1;5543:2:1;5528:18;;5515:32;5556:33;5515:32;5556:33;:::i;:::-;5216:456;;5608:7;;-1:-1:-1;;;5662:2:1;5647:18;;;;5634:32;;5216:456::o;5677:247::-;5736:6;5789:2;5777:9;5768:7;5764:23;5760:32;5757:52;;;5805:1;5802;5795:12;5757:52;5844:9;5831:23;5863:31;5888:5;5863:31;:::i;5929:632::-;6100:2;6152:21;;;6222:13;;6125:18;;;6244:22;;;6071:4;;6100:2;6323:15;;;;6297:2;6282:18;;;6071:4;6366:169;6380:6;6377:1;6374:13;6366:169;;;6441:13;;6429:26;;6510:15;;;;6475:12;;;;6402:1;6395:9;6366:169;;;-1:-1:-1;6552:3:1;;5929:632;-1:-1:-1;;;;;;5929:632:1:o;6566:407::-;6631:5;6665:18;6657:6;6654:30;6651:56;;;6687:18;;:::i;:::-;6725:57;6770:2;6749:15;;-1:-1:-1;;6745:29:1;6776:4;6741:40;6725:57;:::i;:::-;6716:66;;6805:6;6798:5;6791:21;6845:3;6836:6;6831:3;6827:16;6824:25;6821:45;;;6862:1;6859;6852:12;6821:45;6911:6;6906:3;6899:4;6892:5;6888:16;6875:43;6965:1;6958:4;6949:6;6942:5;6938:18;6934:29;6927:40;6566:407;;;;;:::o;6978:451::-;7047:6;7100:2;7088:9;7079:7;7075:23;7071:32;7068:52;;;7116:1;7113;7106:12;7068:52;7156:9;7143:23;7189:18;7181:6;7178:30;7175:50;;;7221:1;7218;7211:12;7175:50;7244:22;;7297:4;7289:13;;7285:27;-1:-1:-1;7275:55:1;;7326:1;7323;7316:12;7275:55;7349:74;7415:7;7410:2;7397:16;7392:2;7388;7384:11;7349:74;:::i;7434:315::-;7499:6;7507;7560:2;7548:9;7539:7;7535:23;7531:32;7528:52;;;7576:1;7573;7566:12;7528:52;7615:9;7602:23;7634:31;7659:5;7634:31;:::i;:::-;7684:5;-1:-1:-1;7708:35:1;7739:2;7724:18;;7708:35;:::i;:::-;7698:45;;7434:315;;;;;:::o;7754:795::-;7849:6;7857;7865;7873;7926:3;7914:9;7905:7;7901:23;7897:33;7894:53;;;7943:1;7940;7933:12;7894:53;7982:9;7969:23;8001:31;8026:5;8001:31;:::i;:::-;8051:5;-1:-1:-1;8108:2:1;8093:18;;8080:32;8121:33;8080:32;8121:33;:::i;:::-;8173:7;-1:-1:-1;8227:2:1;8212:18;;8199:32;;-1:-1:-1;8282:2:1;8267:18;;8254:32;8309:18;8298:30;;8295:50;;;8341:1;8338;8331:12;8295:50;8364:22;;8417:4;8409:13;;8405:27;-1:-1:-1;8395:55:1;;8446:1;8443;8436:12;8395:55;8469:74;8535:7;8530:2;8517:16;8512:2;8508;8504:11;8469:74;:::i;:::-;8459:84;;;7754:795;;;;;;;:::o;8554:388::-;8622:6;8630;8683:2;8671:9;8662:7;8658:23;8654:32;8651:52;;;8699:1;8696;8689:12;8651:52;8738:9;8725:23;8757:31;8782:5;8757:31;:::i;:::-;8807:5;-1:-1:-1;8864:2:1;8849:18;;8836:32;8877:33;8836:32;8877:33;:::i;:::-;8929:7;8919:17;;;8554:388;;;;;:::o;8947:356::-;9149:2;9131:21;;;9168:18;;;9161:30;9227:34;9222:2;9207:18;;9200:62;9294:2;9279:18;;8947:356::o;9308:380::-;9387:1;9383:12;;;;9430;;;9451:61;;9505:4;9497:6;9493:17;9483:27;;9451:61;9558:2;9550:6;9547:14;9527:18;9524:38;9521:161;;9604:10;9599:3;9595:20;9592:1;9585:31;9639:4;9636:1;9629:15;9667:4;9664:1;9657:15;9521:161;;9308:380;;;:::o;10933:127::-;10994:10;10989:3;10985:20;10982:1;10975:31;11025:4;11022:1;11015:15;11049:4;11046:1;11039:15;11065:127;11126:10;11121:3;11117:20;11114:1;11107:31;11157:4;11154:1;11147:15;11181:4;11178:1;11171:15;11197:135;11236:3;11257:17;;;11254:43;;11277:18;;:::i;:::-;-1:-1:-1;11324:1:1;11313:13;;11197:135::o;11337:413::-;11539:2;11521:21;;;11578:2;11558:18;;;11551:30;11617:34;11612:2;11597:18;;11590:62;-1:-1:-1;;;11683:2:1;11668:18;;11661:47;11740:3;11725:19;;11337:413::o;12580:251::-;12650:6;12703:2;12691:9;12682:7;12678:23;12674:32;12671:52;;;12719:1;12716;12709:12;12671:52;12751:9;12745:16;12770:31;12795:5;12770:31;:::i;14104:545::-;14206:2;14201:3;14198:11;14195:448;;;14242:1;14267:5;14263:2;14256:17;14312:4;14308:2;14298:19;14382:2;14370:10;14366:19;14363:1;14359:27;14353:4;14349:38;14418:4;14406:10;14403:20;14400:47;;;-1:-1:-1;14441:4:1;14400:47;14496:2;14491:3;14487:12;14484:1;14480:20;14474:4;14470:31;14460:41;;14551:82;14569:2;14562:5;14559:13;14551:82;;;14614:17;;;14595:1;14584:13;14551:82;;;14555:3;;;14104:545;;;:::o;14825:1352::-;14951:3;14945:10;14978:18;14970:6;14967:30;14964:56;;;15000:18;;:::i;:::-;15029:97;15119:6;15079:38;15111:4;15105:11;15079:38;:::i;:::-;15073:4;15029:97;:::i;:::-;15181:4;;15245:2;15234:14;;15262:1;15257:663;;;;15964:1;15981:6;15978:89;;;-1:-1:-1;16033:19:1;;;16027:26;15978:89;-1:-1:-1;;14782:1:1;14778:11;;;14774:24;14770:29;14760:40;14806:1;14802:11;;;14757:57;16080:81;;15227:944;;15257:663;14051:1;14044:14;;;14088:4;14075:18;;-1:-1:-1;;15293:20:1;;;15411:236;15425:7;15422:1;15419:14;15411:236;;;15514:19;;;15508:26;15493:42;;15606:27;;;;15574:1;15562:14;;;;15441:19;;15411:236;;;15415:3;15675:6;15666:7;15663:19;15660:201;;;15736:19;;;15730:26;-1:-1:-1;;15819:1:1;15815:14;;;15831:3;15811:24;15807:37;15803:42;15788:58;15773:74;;15660:201;-1:-1:-1;;;;;15907:1:1;15891:14;;;15887:22;15874:36;;-1:-1:-1;14825:1352:1:o;16592:168::-;16665:9;;;16696;;16713:15;;;16707:22;;16693:37;16683:71;;16734:18;;:::i;17527:125::-;17592:9;;;17613:10;;;17610:36;;;17626:18;;:::i;19178:1020::-;19354:3;19383:1;19416:6;19410:13;19446:36;19472:9;19446:36;:::i;:::-;19501:1;19518:18;;;19545:133;;;;19692:1;19687:356;;;;19511:532;;19545:133;-1:-1:-1;;19578:24:1;;19566:37;;19651:14;;19644:22;19632:35;;19623:45;;;-1:-1:-1;19545:133:1;;19687:356;19718:6;19715:1;19708:17;19748:4;19793:2;19790:1;19780:16;19818:1;19832:165;19846:6;19843:1;19840:13;19832:165;;;19924:14;;19911:11;;;19904:35;19967:16;;;;19861:10;;19832:165;;;19836:3;;;20026:6;20021:3;20017:16;20010:23;;19511:532;;;;;20074:6;20068:13;20090:68;20149:8;20144:3;20137:4;20129:6;20125:17;20090:68;:::i;:::-;20174:18;;19178:1020;-1:-1:-1;;;;19178:1020:1:o;20203:496::-;20382:3;20420:6;20414:13;20436:66;20495:6;20490:3;20483:4;20475:6;20471:17;20436:66;:::i;:::-;20565:13;;20524:16;;;;20587:70;20565:13;20524:16;20634:4;20622:17;;20587:70;:::i;22339:128::-;22406:9;;;22427:11;;;22424:37;;;22441:18;;:::i;22472:414::-;22674:2;22656:21;;;22713:2;22693:18;;;22686:30;22752:34;22747:2;22732:18;;22725:62;-1:-1:-1;;;22818:2:1;22803:18;;22796:48;22876:3;22861:19;;22472:414::o;22891:127::-;22952:10;22947:3;22943:20;22940:1;22933:31;22983:4;22980:1;22973:15;23007:4;23004:1;22997:15;23023:120;23063:1;23089;23079:35;;23094:18;;:::i;:::-;-1:-1:-1;23128:9:1;;23023:120::o;23148:112::-;23180:1;23206;23196:35;;23211:18;;:::i;:::-;-1:-1:-1;23245:9:1;;23148:112::o;23265:489::-;-1:-1:-1;;;;;23534:15:1;;;23516:34;;23586:15;;23581:2;23566:18;;23559:43;23633:2;23618:18;;23611:34;;;23681:3;23676:2;23661:18;;23654:31;;;23459:4;;23702:46;;23728:19;;23720:6;23702:46;:::i;:::-;23694:54;23265:489;-1:-1:-1;;;;;;23265:489:1:o;23759:249::-;23828:6;23881:2;23869:9;23860:7;23856:23;23852:32;23849:52;;;23897:1;23894;23887:12;23849:52;23929:9;23923:16;23948:30;23972:5;23948:30;:::i;24013:127::-;24074:10;24069:3;24065:20;24062:1;24055:31;24105:4;24102:1;24095:15;24129:4;24126:1;24119:15
Swarm Source
ipfs://44b6f90b3944669beb6d6787dc02961f10d09bfdd39a57631bcf7034cc97e9eb
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.