ERC-721
Overview
Max Total Supply
1,640 VDPE
Holders
376
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 VDPELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Creature
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Tradable.sol"; /** * @title Creature * Creature - a contract for my non-fungible creatures. */ contract Creature is ERC721Tradable { constructor(address _proxyRegistryAddress) ERC721Tradable("Villa de vendome", "VDPE", _proxyRegistryAddress) {} function baseTokenURI() override public pure returns (string memory) { return "https://villadevendome.com/metadata/"; } function contractURI() public pure returns (string memory) { return "https://creatures-api.opensea.io/contract/opensea-creatures"; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "openzeppelin-solidity/contracts/token/ERC721/ERC721.sol"; import "openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "openzeppelin-solidity/contracts/access/Ownable.sol"; import "openzeppelin-solidity/contracts/utils/math/SafeMath.sol"; import "openzeppelin-solidity/contracts/utils/Strings.sol"; import "./common/meta-transactions/ContentMixin.sol"; import "./common/meta-transactions/NativeMetaTransaction.sol"; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** * @title ERC721Tradable * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality. */ abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable { using SafeMath for uint256; address proxyRegistryAddress; uint256 private _currentTokenId = 0; uint256 public creaturePrice = 0.09 ether; bool public isOpen = false; string private _baseUrl; address constant private myAddress = 0x69975C0F87d66D0507Aa63464814fC8Cf45fB771; constructor( string memory _name, string memory _symbol, address _proxyRegistryAddress ) ERC721(_name, _symbol) { proxyRegistryAddress = _proxyRegistryAddress; _initializeEIP712(_name); } /** * @dev Mints a token to an address with a tokenURI. * @param _to address of the future owner of the token */ function mintTo(address _to) public onlyOwner { uint256 newTokenId = _getNextTokenId(); _mint(_to, newTokenId); _incrementTokenId(); } function mintVdv(address _to, uint256 _nb) public payable{ require(msg.value + 200 >= creaturePrice * _nb, "not enough money"); require((_nb>=1) && (_nb<21), "too many items"); require(_currentTokenId.add(_nb) <= 10000, "out of stock"); for (uint i=0; i< _nb; i++){ uint256 newTokenId = _getNextTokenId(); _mint(_to, newTokenId); _incrementTokenId(); } address payable wallet = payable(address(myAddress)); wallet.transfer(msg.value); } /* function setCreaturePrice(uint _price) external onlyOwner { creaturePrice = _price; }*/ function setOpen(bool _isopen) external onlyOwner { isOpen = _isopen; } function setBaseUrl(string memory _url) external onlyOwner { _baseUrl = _url; } function getUrl() external view returns(string memory) { return _baseUrl; } /** * @dev calculates the next token ID based on value of _currentTokenId * @return uint256 for the next token ID */ function _getNextTokenId() private view returns (uint256) { return _currentTokenId.add(1); } /** * @dev increments the value of _currentTokenId */ function _incrementTokenId() private { _currentTokenId++; } function baseTokenURI() virtual public pure returns (string memory); function tokenURI(uint256 _tokenId) override public view returns (string memory) { //return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId), ".json")); if (!isOpen) return string(abi.encodePacked(baseTokenURI(), Strings.toString(1), ".json")); //return _token2urls[_tokenId]; _baseUrl return string(abi.encodePacked(_baseUrl, Strings.toString(_tokenId), ".json")); } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } /** * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea. */ function _msgSender() internal override view returns (address sender) { return ContextMixin.msgSender(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {SafeMath} from "openzeppelin-solidity/contracts/utils/math/SafeMath.sol"; import {EIP712Base} from "./EIP712Base.sol"; contract NativeMetaTransaction is EIP712Base { using SafeMath for uint256; bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256( bytes( "MetaTransaction(uint256 nonce,address from,bytes functionSignature)" ) ); event MetaTransactionExecuted( address userAddress, address payable relayerAddress, bytes functionSignature ); mapping(address => uint256) nonces; /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } function executeMetaTransaction( address userAddress, bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV ) public payable returns (bytes memory) { MetaTransaction memory metaTx = MetaTransaction({ nonce: nonces[userAddress], from: userAddress, functionSignature: functionSignature }); require( verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match" ); // increase nonce for user (to avoid re-use) nonces[userAddress] = nonces[userAddress].add(1); emit MetaTransactionExecuted( userAddress, payable(msg.sender), functionSignature ); // Append userAddress and relayer address at the end to extract it from calling context (bool success, bytes memory returnData) = address(this).call( abi.encodePacked(functionSignature, userAddress) ); require(success, "Function call not successful"); return returnData; } function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) { return keccak256( abi.encode( META_TRANSACTION_TYPEHASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature) ) ); } function getNonce(address user) public view returns (uint256 nonce) { nonce = nonces[user]; } function verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns (bool) { require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); return signer == ecrecover( toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = payable(msg.sender); } return sender; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is 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. 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; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ 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(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { 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 { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {Initializable} from "./Initializable.sol"; contract EIP712Base is Initializable { struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } string constant public ERC712_VERSION = "1"; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256( bytes( "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)" ) ); bytes32 internal domainSeperator; // supposed to be called once while initializing. // one of the contracts that inherits this contract follows proxy pattern // so it is not possible to do this in a constructor function _initializeEIP712( string memory name ) internal initializer { _setDomainSeperator(name); } function _setDomainSeperator(string memory name) internal { domainSeperator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(ERC712_VERSION)), address(this), bytes32(getChainId()) ) ); } function getDomainSeperator() public view returns (bytes32) { return domainSeperator; } function getChainId() public view returns (uint256) { uint256 id; assembly { id := chainid() } return id; } /** * Accept message hash and returns hash message in EIP712 compatible form * So that it can be used to recover signer from signature signed using EIP712 formatted data * https://eips.ethereum.org/EIPS/eip-712 * "\\x19" makes the encoding deterministic * "\\x01" is the version byte to make it compatible to EIP-191 */ function toTypedMessageHash(bytes32 messageHash) internal view returns (bytes32) { return keccak256( abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash) ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract Initializable { bool inited = false; modifier initializer() { require(!inited, "already inited"); _; inited = true; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"creaturePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_nb","type":"uint256"}],"name":"mintVdv","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_url","type":"string"}],"name":"setBaseUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isopen","type":"bool"}],"name":"setOpen","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"}]
Contract Creation Code
60806040526000600a60006101000a81548160ff0219169083151502179055506000600f5567013fbe85edc900006010556000601160006101000a81548160ff0219169083151502179055503480156200005857600080fd5b50604051620052cf380380620052cf83398181016040528101906200007e919062000537565b6040518060400160405280601081526020017f56696c6c612064652076656e646f6d65000000000000000000000000000000008152506040518060400160405280600481526020017f564450450000000000000000000000000000000000000000000000000000000081525082828281600090805190602001906200010592919062000470565b5080600190805190602001906200011e92919062000470565b50505062000141620001356200019d60201b60201c565b620001b960201b60201c565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000193836200027f60201b60201c565b5050505062000722565b6000620001b46200030160201b62001ada1760201c565b905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60009054906101000a900460ff1615620002d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c99062000609565b60405180910390fd5b620002e381620003b460201b60201c565b6001600a60006101000a81548160ff02191690831515021790555050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415620003ad57600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050620003b1565b3390505b90565b6040518060800160405280604f815260200162005280604f91398051906020012081805190602001206040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525080519060200120306200042b6200046360201b60201c565b60001b60405160200162000444959493929190620005ac565b60405160208183030381529060405280519060200120600b8190555050565b6000804690508091505090565b8280546200047e906200067a565b90600052602060002090601f016020900481019282620004a25760008555620004ee565b82601f10620004bd57805160ff1916838001178555620004ee565b82800160010185558215620004ee579182015b82811115620004ed578251825591602001919060010190620004d0565b5b509050620004fd919062000501565b5090565b5b808211156200051c57600081600090555060010162000502565b5090565b600081519050620005318162000708565b92915050565b6000602082840312156200054a57600080fd5b60006200055a8482850162000520565b91505092915050565b6200056e816200063c565b82525050565b6200057f8162000650565b82525050565b600062000594600e836200062b565b9150620005a182620006df565b602082019050919050565b600060a082019050620005c3600083018862000574565b620005d2602083018762000574565b620005e1604083018662000574565b620005f0606083018562000563565b620005ff608083018462000574565b9695505050505050565b60006020820190508181036000830152620006248162000585565b9050919050565b600082825260208201905092915050565b600062000649826200065a565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200069357607f821691505b60208210811415620006aa57620006a9620006b0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f616c726561647920696e69746564000000000000000000000000000000000000600082015250565b62000713816200063c565b81146200071f57600080fd5b50565b614b4e80620007326000396000f3fe6080604052600436106101ee5760003560e01c80636dcb95221161010d578063b88d4fde116100a0578063d568f8d21161006f578063d568f8d214610718578063d6bd872714610734578063e8a3d4851461075f578063e985e9c51461078a578063f2fde38b146107c7576101ee565b8063b88d4fde1461065e578063c7c3268b14610687578063c87b56dd146106b0578063d547cfb7146106ed576101ee565b8063755edd17116100dc578063755edd17146105b65780638da5cb5b146105df57806395d89b411461060a578063a22cb46514610635576101ee565b80636dcb95221461050e5780636fdca5e01461053957806370a0823114610562578063715018a61461059f576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e1461044057806347535d7b146104695780634f6ccce7146104945780636352211e146104d1576101ee565b806323b872dd146103725780632d0335ab1461039b5780632f745c59146103d85780633408e47014610415576101ee565b80630c53c51c116101c15780630c53c51c146102c15780630f7e5970146102f157806318160ddd1461031c57806320379ee514610347576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613322565b6107f0565b6040516102279190613ac6565b60405180910390f35b34801561023c57600080fd5b5061024561086a565b6040516102529190613ba8565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906133de565b6108fc565b60405161028f9190613a21565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906132bd565b610981565b005b6102db60048036038101906102d6919061322e565b610a99565b6040516102e89190613b86565b60405180910390f35b3480156102fd57600080fd5b50610306610d0b565b6040516103139190613ba8565b60405180910390f35b34801561032857600080fd5b50610331610d44565b60405161033e9190613eaa565b60405180910390f35b34801561035357600080fd5b5061035c610d51565b6040516103699190613ae1565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190613128565b610d5b565b005b3480156103a757600080fd5b506103c260048036038101906103bd91906130c3565b610dbb565b6040516103cf9190613eaa565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906132bd565b610e04565b60405161040c9190613eaa565b60405180910390f35b34801561042157600080fd5b5061042a610ea9565b6040516104379190613eaa565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190613128565b610eb6565b005b34801561047557600080fd5b5061047e610ed6565b60405161048b9190613ac6565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906133de565b610ee9565b6040516104c89190613eaa565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f391906133de565b610f80565b6040516105059190613a21565b60405180910390f35b34801561051a57600080fd5b50610523611032565b6040516105309190613eaa565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b91906132f9565b611038565b005b34801561056e57600080fd5b50610589600480360381019061058491906130c3565b6110d1565b6040516105969190613eaa565b60405180910390f35b3480156105ab57600080fd5b506105b4611189565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906130c3565b611211565b005b3480156105eb57600080fd5b506105f46112af565b6040516106019190613a21565b60405180910390f35b34801561061657600080fd5b5061061f6112d9565b60405161062c9190613ba8565b60405180910390f35b34801561064157600080fd5b5061065c600480360381019061065791906131f2565b61136b565b005b34801561066a57600080fd5b5061068560048036038101906106809190613177565b6114ec565b005b34801561069357600080fd5b506106ae60048036038101906106a9919061339d565b61154e565b005b3480156106bc57600080fd5b506106d760048036038101906106d291906133de565b6115e4565b6040516106e49190613ba8565b60405180910390f35b3480156106f957600080fd5b50610702611666565b60405161070f9190613ba8565b60405180910390f35b610732600480360381019061072d91906132bd565b611686565b005b34801561074057600080fd5b5061074961182e565b6040516107569190613ba8565b60405180910390f35b34801561076b57600080fd5b506107746118c0565b6040516107819190613ba8565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac91906130ec565b6118e0565b6040516107be9190613ac6565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e991906130c3565b6119e2565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610863575061086282611b8b565b5b9050919050565b606060008054610879906141b5565b80601f01602080910402602001604051908101604052809291908181526020018280546108a5906141b5565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b600061090782611c6d565b610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d90613d6a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098c82610f80565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490613e0a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1c611cd9565b73ffffffffffffffffffffffffffffffffffffffff161480610a4b5750610a4a81610a45611cd9565b6118e0565b5b610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8190613cea565b60405180910390fd5b610a948383611ce8565b505050565b606060006040518060600160405280600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610b1c8782878787611da1565b610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5290613dca565b60405180910390fd5b610bae6001600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eaa90919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610c2493929190613a3c565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610c59929190613964565b604051602081830303815290604052604051610c75919061394d565b6000604051808303816000865af19150503d8060008114610cb2576040519150601f19603f3d011682016040523d82523d6000602084013e610cb7565b606091505b509150915081610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf390613c2a565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b6000600880549050905090565b6000600b54905090565b610d6c610d66611cd9565b82611ec0565b610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290613e2a565b60405180910390fd5b610db6838383611f9e565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610e0f836110d1565b8210610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790613bca565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000804690508091505090565b610ed1838383604051806020016040528060008152506114ec565b505050565b601160009054906101000a900460ff1681565b6000610ef3610d44565b8210610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90613e6a565b60405180910390fd5b60088281548110610f6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090613d2a565b60405180910390fd5b80915050919050565b60105481565b611040611cd9565b73ffffffffffffffffffffffffffffffffffffffff1661105e6112af565b73ffffffffffffffffffffffffffffffffffffffff16146110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90613d8a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990613d0a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611191611cd9565b73ffffffffffffffffffffffffffffffffffffffff166111af6112af565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613d8a565b60405180910390fd5b61120f60006121fa565b565b611219611cd9565b73ffffffffffffffffffffffffffffffffffffffff166112376112af565b73ffffffffffffffffffffffffffffffffffffffff161461128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613d8a565b60405180910390fd5b60006112976122c0565b90506112a382826122dd565b6112ab6124ab565b5050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112e8906141b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611314906141b5565b80156113615780601f1061133657610100808354040283529160200191611361565b820191906000526020600020905b81548152906001019060200180831161134457829003601f168201915b5050505050905090565b611373611cd9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890613c8a565b60405180910390fd5b80600560006113ee611cd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149b611cd9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e09190613ac6565b60405180910390a35050565b6114fd6114f7611cd9565b83611ec0565b61153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613e2a565b60405180910390fd5b611548848484846124c5565b50505050565b611556611cd9565b73ffffffffffffffffffffffffffffffffffffffff166115746112af565b73ffffffffffffffffffffffffffffffffffffffff16146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613d8a565b60405180910390fd5b80601290805190602001906115e0929190612ea8565b5050565b6060601160009054906101000a900460ff1661163357611602611666565b61160c6001612521565b60405160200161161d92919061398c565b6040516020818303038152906040529050611661565b601261163e83612521565b60405160200161164f9291906139bb565b60405160208183030381529060405290505b919050565b6060604051806060016040528060248152602001614af560249139905090565b806010546116949190614036565b60c8346116a19190613faf565b10156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613dea565b60405180910390fd5b600181101580156116f35750601581105b611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990613e4a565b60405180910390fd5b61271061174a82600f54611eaa90919063ffffffff16565b111561178b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178290613e8a565b60405180910390fd5b60005b818110156117c85760006117a06122c0565b90506117ac84826122dd565b6117b46124ab565b5080806117c090614218565b91505061178e565b5060007369975c0f87d66d0507aa63464814fc8cf45fb77190508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611828573d6000803e3d6000fd5b50505050565b60606012805461183d906141b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611869906141b5565b80156118b65780601f1061188b576101008083540402835291602001916118b6565b820191906000526020600020905b81548152906001019060200180831161189957829003601f168201915b5050505050905090565b60606040518060600160405280603b8152602001614a77603b9139905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119589190613a21565b60206040518083038186803b15801561197057600080fd5b505afa158015611984573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a89190613374565b73ffffffffffffffffffffffffffffffffffffffff1614156119ce5760019150506119dc565b6119d884846126ce565b9150505b92915050565b6119ea611cd9565b73ffffffffffffffffffffffffffffffffffffffff16611a086112af565b73ffffffffffffffffffffffffffffffffffffffff1614611a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5590613d8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590613c0a565b60405180910390fd5b611ad7816121fa565b50565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611b8457600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050611b88565b3390505b90565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c5657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c665750611c6582612762565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611ce3611ada565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d5b83610f80565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0990613cca565b60405180910390fd5b6001611e25611e20876127cc565b612834565b83868660405160008152602001604052604051611e459493929190613b41565b6020604051602081039080840390855afa158015611e67573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60008183611eb89190613faf565b905092915050565b6000611ecb82611c6d565b611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0190613caa565b60405180910390fd5b6000611f1583610f80565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f8457508373ffffffffffffffffffffffffffffffffffffffff16611f6c846108fc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f955750611f9481856118e0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fbe82610f80565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90613daa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90613c6a565b60405180910390fd5b61208f83838361286d565b61209a600082611ce8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120ea9190614090565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121419190613faf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006122d86001600f54611eaa90919063ffffffff16565b905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561234d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234490613d4a565b60405180910390fd5b61235681611c6d565b15612396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238d90613c4a565b60405180910390fd5b6123a26000838361286d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f29190613faf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600f60008154809291906124be90614218565b9190505550565b6124d0848484611f9e565b6124dc84848484612981565b61251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290613bea565b60405180910390fd5b50505050565b60606000821415612569576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126c9565b600082905060005b6000821461259b57808061258490614218565b915050600a826125949190614005565b9150612571565b60008167ffffffffffffffff8111156125dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561260f5781602001600182028036833780820191505090505b5090505b600085146126c2576001826126289190614090565b9150600a85612637919061428f565b60306126439190613faf565b60f81b81838151811061267f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126bb9190614005565b9450612613565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000604051806080016040528060438152602001614ab26043913980519060200120826000015183602001518460400151805190602001206040516020016128179493929190613afc565b604051602081830303815290604052805190602001209050919050565b600061283e610d51565b826040516020016128509291906139ea565b604051602081830303815290604052805190602001209050919050565b612878838383612b18565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128bb576128b681612b1d565b6128fa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146128f9576128f88382612b66565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561293d5761293881612cd3565b61297c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461297b5761297a8282612e16565b5b5b505050565b60006129a28473ffffffffffffffffffffffffffffffffffffffff16612e95565b15612b0b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129cb611cd9565b8786866040518563ffffffff1660e01b81526004016129ed9493929190613a7a565b602060405180830381600087803b158015612a0757600080fd5b505af1925050508015612a3857506040513d601f19601f82011682018060405250810190612a35919061334b565b60015b612abb573d8060008114612a68576040519150601f19603f3d011682016040523d82523d6000602084013e612a6d565b606091505b50600081511415612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa90613bea565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b10565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b73846110d1565b612b7d9190614090565b9050600060076000848152602001908152602001600020549050818114612c62576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ce79190614090565b9050600060096000848152602001908152602001600020549050600060088381548110612d3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612d85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612dfa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612e21836110d1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612eb4906141b5565b90600052602060002090601f016020900481019282612ed65760008555612f1d565b82601f10612eef57805160ff1916838001178555612f1d565b82800160010185558215612f1d579182015b82811115612f1c578251825591602001919060010190612f01565b5b509050612f2a9190612f2e565b5090565b5b80821115612f47576000816000905550600101612f2f565b5090565b6000612f5e612f5984613eea565b613ec5565b905082815260208101848484011115612f7657600080fd5b612f81848285614173565b509392505050565b6000612f9c612f9784613f1b565b613ec5565b905082815260208101848484011115612fb457600080fd5b612fbf848285614173565b509392505050565b600081359050612fd6816149d5565b92915050565b600081359050612feb816149ec565b92915050565b60008135905061300081614a03565b92915050565b60008135905061301581614a1a565b92915050565b60008151905061302a81614a1a565b92915050565b600082601f83011261304157600080fd5b8135613051848260208601612f4b565b91505092915050565b60008151905061306981614a31565b92915050565b600082601f83011261308057600080fd5b8135613090848260208601612f89565b91505092915050565b6000813590506130a881614a48565b92915050565b6000813590506130bd81614a5f565b92915050565b6000602082840312156130d557600080fd5b60006130e384828501612fc7565b91505092915050565b600080604083850312156130ff57600080fd5b600061310d85828601612fc7565b925050602061311e85828601612fc7565b9150509250929050565b60008060006060848603121561313d57600080fd5b600061314b86828701612fc7565b935050602061315c86828701612fc7565b925050604061316d86828701613099565b9150509250925092565b6000806000806080858703121561318d57600080fd5b600061319b87828801612fc7565b94505060206131ac87828801612fc7565b93505060406131bd87828801613099565b925050606085013567ffffffffffffffff8111156131da57600080fd5b6131e687828801613030565b91505092959194509250565b6000806040838503121561320557600080fd5b600061321385828601612fc7565b925050602061322485828601612fdc565b9150509250929050565b600080600080600060a0868803121561324657600080fd5b600061325488828901612fc7565b955050602086013567ffffffffffffffff81111561327157600080fd5b61327d88828901613030565b945050604061328e88828901612ff1565b935050606061329f88828901612ff1565b92505060806132b0888289016130ae565b9150509295509295909350565b600080604083850312156132d057600080fd5b60006132de85828601612fc7565b92505060206132ef85828601613099565b9150509250929050565b60006020828403121561330b57600080fd5b600061331984828501612fdc565b91505092915050565b60006020828403121561333457600080fd5b600061334284828501613006565b91505092915050565b60006020828403121561335d57600080fd5b600061336b8482850161301b565b91505092915050565b60006020828403121561338657600080fd5b60006133948482850161305a565b91505092915050565b6000602082840312156133af57600080fd5b600082013567ffffffffffffffff8111156133c957600080fd5b6133d58482850161306f565b91505092915050565b6000602082840312156133f057600080fd5b60006133fe84828501613099565b91505092915050565b613410816140d6565b82525050565b61341f816140c4565b82525050565b613436613431826140c4565b614261565b82525050565b613445816140e8565b82525050565b613454816140f4565b82525050565b61346b613466826140f4565b614273565b82525050565b600061347c82613f61565b6134868185613f77565b9350613496818560208601614182565b61349f8161437c565b840191505092915050565b60006134b582613f61565b6134bf8185613f88565b93506134cf818560208601614182565b80840191505092915050565b60006134e682613f6c565b6134f08185613f93565b9350613500818560208601614182565b6135098161437c565b840191505092915050565b600061351f82613f6c565b6135298185613fa4565b9350613539818560208601614182565b80840191505092915050565b60008154613552816141b5565b61355c8186613fa4565b945060018216600081146135775760018114613588576135bb565b60ff198316865281860193506135bb565b61359185613f4c565b60005b838110156135b357815481890152600182019150602081019050613594565b838801955050505b50505092915050565b60006135d1602b83613f93565b91506135dc8261439a565b604082019050919050565b60006135f4603283613f93565b91506135ff826143e9565b604082019050919050565b6000613617602683613f93565b915061362282614438565b604082019050919050565b600061363a601c83613f93565b915061364582614487565b602082019050919050565b600061365d601c83613f93565b9150613668826144b0565b602082019050919050565b6000613680600283613fa4565b915061368b826144d9565b600282019050919050565b60006136a3602483613f93565b91506136ae82614502565b604082019050919050565b60006136c6601983613f93565b91506136d182614551565b602082019050919050565b60006136e9602c83613f93565b91506136f48261457a565b604082019050919050565b600061370c602583613f93565b9150613717826145c9565b604082019050919050565b600061372f603883613f93565b915061373a82614618565b604082019050919050565b6000613752602a83613f93565b915061375d82614667565b604082019050919050565b6000613775602983613f93565b9150613780826146b6565b604082019050919050565b6000613798602083613f93565b91506137a382614705565b602082019050919050565b60006137bb602c83613f93565b91506137c68261472e565b604082019050919050565b60006137de600583613fa4565b91506137e98261477d565b600582019050919050565b6000613801602083613f93565b915061380c826147a6565b602082019050919050565b6000613824602983613f93565b915061382f826147cf565b604082019050919050565b6000613847602183613f93565b91506138528261481e565b604082019050919050565b600061386a601083613f93565b91506138758261486d565b602082019050919050565b600061388d602183613f93565b915061389882614896565b604082019050919050565b60006138b0603183613f93565b91506138bb826148e5565b604082019050919050565b60006138d3600e83613f93565b91506138de82614934565b602082019050919050565b60006138f6602c83613f93565b91506139018261495d565b604082019050919050565b6000613919600c83613f93565b9150613924826149ac565b602082019050919050565b6139388161415c565b82525050565b61394781614166565b82525050565b600061395982846134aa565b915081905092915050565b600061397082856134aa565b915061397c8284613425565b6014820191508190509392505050565b60006139988285613514565b91506139a48284613514565b91506139af826137d1565b91508190509392505050565b60006139c78285613545565b91506139d38284613514565b91506139de826137d1565b91508190509392505050565b60006139f582613673565b9150613a01828561345a565b602082019150613a11828461345a565b6020820191508190509392505050565b6000602082019050613a366000830184613416565b92915050565b6000606082019050613a516000830186613416565b613a5e6020830185613407565b8181036040830152613a708184613471565b9050949350505050565b6000608082019050613a8f6000830187613416565b613a9c6020830186613416565b613aa9604083018561392f565b8181036060830152613abb8184613471565b905095945050505050565b6000602082019050613adb600083018461343c565b92915050565b6000602082019050613af6600083018461344b565b92915050565b6000608082019050613b11600083018761344b565b613b1e602083018661392f565b613b2b6040830185613416565b613b38606083018461344b565b95945050505050565b6000608082019050613b56600083018761344b565b613b63602083018661393e565b613b70604083018561344b565b613b7d606083018461344b565b95945050505050565b60006020820190508181036000830152613ba08184613471565b905092915050565b60006020820190508181036000830152613bc281846134db565b905092915050565b60006020820190508181036000830152613be3816135c4565b9050919050565b60006020820190508181036000830152613c03816135e7565b9050919050565b60006020820190508181036000830152613c238161360a565b9050919050565b60006020820190508181036000830152613c438161362d565b9050919050565b60006020820190508181036000830152613c6381613650565b9050919050565b60006020820190508181036000830152613c8381613696565b9050919050565b60006020820190508181036000830152613ca3816136b9565b9050919050565b60006020820190508181036000830152613cc3816136dc565b9050919050565b60006020820190508181036000830152613ce3816136ff565b9050919050565b60006020820190508181036000830152613d0381613722565b9050919050565b60006020820190508181036000830152613d2381613745565b9050919050565b60006020820190508181036000830152613d4381613768565b9050919050565b60006020820190508181036000830152613d638161378b565b9050919050565b60006020820190508181036000830152613d83816137ae565b9050919050565b60006020820190508181036000830152613da3816137f4565b9050919050565b60006020820190508181036000830152613dc381613817565b9050919050565b60006020820190508181036000830152613de38161383a565b9050919050565b60006020820190508181036000830152613e038161385d565b9050919050565b60006020820190508181036000830152613e2381613880565b9050919050565b60006020820190508181036000830152613e43816138a3565b9050919050565b60006020820190508181036000830152613e63816138c6565b9050919050565b60006020820190508181036000830152613e83816138e9565b9050919050565b60006020820190508181036000830152613ea38161390c565b9050919050565b6000602082019050613ebf600083018461392f565b92915050565b6000613ecf613ee0565b9050613edb82826141e7565b919050565b6000604051905090565b600067ffffffffffffffff821115613f0557613f0461434d565b5b613f0e8261437c565b9050602081019050919050565b600067ffffffffffffffff821115613f3657613f3561434d565b5b613f3f8261437c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fba8261415c565b9150613fc58361415c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ffa57613ff96142c0565b5b828201905092915050565b60006140108261415c565b915061401b8361415c565b92508261402b5761402a6142ef565b5b828204905092915050565b60006140418261415c565b915061404c8361415c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614085576140846142c0565b5b828202905092915050565b600061409b8261415c565b91506140a68361415c565b9250828210156140b9576140b86142c0565b5b828203905092915050565b60006140cf8261413c565b9050919050565b60006140e18261413c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614135826140c4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156141a0578082015181840152602081019050614185565b838111156141af576000848401525b50505050565b600060028204905060018216806141cd57607f821691505b602082108114156141e1576141e061431e565b5b50919050565b6141f08261437c565b810181811067ffffffffffffffff8211171561420f5761420e61434d565b5b80604052505050565b60006142238261415c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614256576142556142c0565b5b600182019050919050565b600061426c8261427d565b9050919050565b6000819050919050565b60006142888261438d565b9050919050565b600061429a8261415c565b91506142a58361415c565b9250826142b5576142b46142ef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d6f6e657900000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f746f6f206d616e79206974656d73000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6f7574206f662073746f636b0000000000000000000000000000000000000000600082015250565b6149de816140c4565b81146149e957600080fd5b50565b6149f5816140e8565b8114614a0057600080fd5b50565b614a0c816140f4565b8114614a1757600080fd5b50565b614a23816140fe565b8114614a2e57600080fd5b50565b614a3a8161412a565b8114614a4557600080fd5b50565b614a518161415c565b8114614a5c57600080fd5b50565b614a6881614166565b8114614a7357600080fd5b5056fe68747470733a2f2f6372656174757265732d6170692e6f70656e7365612e696f2f636f6e74726163742f6f70656e7365612d6372656174757265734d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f76696c6c61646576656e646f6d652e636f6d2f6d657461646174612fa26469706673582212204bd037dd377b77cccc452d04418b3de9a0a71e6495cdf6d1575df7382f9361e664736f6c63430008040033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000ade6b7e7f094c20250422472b4d5086f0840c9f8
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80636dcb95221161010d578063b88d4fde116100a0578063d568f8d21161006f578063d568f8d214610718578063d6bd872714610734578063e8a3d4851461075f578063e985e9c51461078a578063f2fde38b146107c7576101ee565b8063b88d4fde1461065e578063c7c3268b14610687578063c87b56dd146106b0578063d547cfb7146106ed576101ee565b8063755edd17116100dc578063755edd17146105b65780638da5cb5b146105df57806395d89b411461060a578063a22cb46514610635576101ee565b80636dcb95221461050e5780636fdca5e01461053957806370a0823114610562578063715018a61461059f576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e1461044057806347535d7b146104695780634f6ccce7146104945780636352211e146104d1576101ee565b806323b872dd146103725780632d0335ab1461039b5780632f745c59146103d85780633408e47014610415576101ee565b80630c53c51c116101c15780630c53c51c146102c15780630f7e5970146102f157806318160ddd1461031c57806320379ee514610347576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613322565b6107f0565b6040516102279190613ac6565b60405180910390f35b34801561023c57600080fd5b5061024561086a565b6040516102529190613ba8565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906133de565b6108fc565b60405161028f9190613a21565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906132bd565b610981565b005b6102db60048036038101906102d6919061322e565b610a99565b6040516102e89190613b86565b60405180910390f35b3480156102fd57600080fd5b50610306610d0b565b6040516103139190613ba8565b60405180910390f35b34801561032857600080fd5b50610331610d44565b60405161033e9190613eaa565b60405180910390f35b34801561035357600080fd5b5061035c610d51565b6040516103699190613ae1565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190613128565b610d5b565b005b3480156103a757600080fd5b506103c260048036038101906103bd91906130c3565b610dbb565b6040516103cf9190613eaa565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906132bd565b610e04565b60405161040c9190613eaa565b60405180910390f35b34801561042157600080fd5b5061042a610ea9565b6040516104379190613eaa565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190613128565b610eb6565b005b34801561047557600080fd5b5061047e610ed6565b60405161048b9190613ac6565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906133de565b610ee9565b6040516104c89190613eaa565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f391906133de565b610f80565b6040516105059190613a21565b60405180910390f35b34801561051a57600080fd5b50610523611032565b6040516105309190613eaa565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b91906132f9565b611038565b005b34801561056e57600080fd5b50610589600480360381019061058491906130c3565b6110d1565b6040516105969190613eaa565b60405180910390f35b3480156105ab57600080fd5b506105b4611189565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906130c3565b611211565b005b3480156105eb57600080fd5b506105f46112af565b6040516106019190613a21565b60405180910390f35b34801561061657600080fd5b5061061f6112d9565b60405161062c9190613ba8565b60405180910390f35b34801561064157600080fd5b5061065c600480360381019061065791906131f2565b61136b565b005b34801561066a57600080fd5b5061068560048036038101906106809190613177565b6114ec565b005b34801561069357600080fd5b506106ae60048036038101906106a9919061339d565b61154e565b005b3480156106bc57600080fd5b506106d760048036038101906106d291906133de565b6115e4565b6040516106e49190613ba8565b60405180910390f35b3480156106f957600080fd5b50610702611666565b60405161070f9190613ba8565b60405180910390f35b610732600480360381019061072d91906132bd565b611686565b005b34801561074057600080fd5b5061074961182e565b6040516107569190613ba8565b60405180910390f35b34801561076b57600080fd5b506107746118c0565b6040516107819190613ba8565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac91906130ec565b6118e0565b6040516107be9190613ac6565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e991906130c3565b6119e2565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610863575061086282611b8b565b5b9050919050565b606060008054610879906141b5565b80601f01602080910402602001604051908101604052809291908181526020018280546108a5906141b5565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b600061090782611c6d565b610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d90613d6a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098c82610f80565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490613e0a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1c611cd9565b73ffffffffffffffffffffffffffffffffffffffff161480610a4b5750610a4a81610a45611cd9565b6118e0565b5b610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8190613cea565b60405180910390fd5b610a948383611ce8565b505050565b606060006040518060600160405280600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610b1c8782878787611da1565b610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5290613dca565b60405180910390fd5b610bae6001600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eaa90919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610c2493929190613a3c565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610c59929190613964565b604051602081830303815290604052604051610c75919061394d565b6000604051808303816000865af19150503d8060008114610cb2576040519150601f19603f3d011682016040523d82523d6000602084013e610cb7565b606091505b509150915081610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf390613c2a565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b6000600880549050905090565b6000600b54905090565b610d6c610d66611cd9565b82611ec0565b610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290613e2a565b60405180910390fd5b610db6838383611f9e565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610e0f836110d1565b8210610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790613bca565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000804690508091505090565b610ed1838383604051806020016040528060008152506114ec565b505050565b601160009054906101000a900460ff1681565b6000610ef3610d44565b8210610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90613e6a565b60405180910390fd5b60088281548110610f6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090613d2a565b60405180910390fd5b80915050919050565b60105481565b611040611cd9565b73ffffffffffffffffffffffffffffffffffffffff1661105e6112af565b73ffffffffffffffffffffffffffffffffffffffff16146110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90613d8a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990613d0a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611191611cd9565b73ffffffffffffffffffffffffffffffffffffffff166111af6112af565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613d8a565b60405180910390fd5b61120f60006121fa565b565b611219611cd9565b73ffffffffffffffffffffffffffffffffffffffff166112376112af565b73ffffffffffffffffffffffffffffffffffffffff161461128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613d8a565b60405180910390fd5b60006112976122c0565b90506112a382826122dd565b6112ab6124ab565b5050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112e8906141b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611314906141b5565b80156113615780601f1061133657610100808354040283529160200191611361565b820191906000526020600020905b81548152906001019060200180831161134457829003601f168201915b5050505050905090565b611373611cd9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890613c8a565b60405180910390fd5b80600560006113ee611cd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149b611cd9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e09190613ac6565b60405180910390a35050565b6114fd6114f7611cd9565b83611ec0565b61153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613e2a565b60405180910390fd5b611548848484846124c5565b50505050565b611556611cd9565b73ffffffffffffffffffffffffffffffffffffffff166115746112af565b73ffffffffffffffffffffffffffffffffffffffff16146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613d8a565b60405180910390fd5b80601290805190602001906115e0929190612ea8565b5050565b6060601160009054906101000a900460ff1661163357611602611666565b61160c6001612521565b60405160200161161d92919061398c565b6040516020818303038152906040529050611661565b601261163e83612521565b60405160200161164f9291906139bb565b60405160208183030381529060405290505b919050565b6060604051806060016040528060248152602001614af560249139905090565b806010546116949190614036565b60c8346116a19190613faf565b10156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613dea565b60405180910390fd5b600181101580156116f35750601581105b611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990613e4a565b60405180910390fd5b61271061174a82600f54611eaa90919063ffffffff16565b111561178b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178290613e8a565b60405180910390fd5b60005b818110156117c85760006117a06122c0565b90506117ac84826122dd565b6117b46124ab565b5080806117c090614218565b91505061178e565b5060007369975c0f87d66d0507aa63464814fc8cf45fb77190508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611828573d6000803e3d6000fd5b50505050565b60606012805461183d906141b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611869906141b5565b80156118b65780601f1061188b576101008083540402835291602001916118b6565b820191906000526020600020905b81548152906001019060200180831161189957829003601f168201915b5050505050905090565b60606040518060600160405280603b8152602001614a77603b9139905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119589190613a21565b60206040518083038186803b15801561197057600080fd5b505afa158015611984573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a89190613374565b73ffffffffffffffffffffffffffffffffffffffff1614156119ce5760019150506119dc565b6119d884846126ce565b9150505b92915050565b6119ea611cd9565b73ffffffffffffffffffffffffffffffffffffffff16611a086112af565b73ffffffffffffffffffffffffffffffffffffffff1614611a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5590613d8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590613c0a565b60405180910390fd5b611ad7816121fa565b50565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611b8457600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050611b88565b3390505b90565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c5657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c665750611c6582612762565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611ce3611ada565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d5b83610f80565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0990613cca565b60405180910390fd5b6001611e25611e20876127cc565b612834565b83868660405160008152602001604052604051611e459493929190613b41565b6020604051602081039080840390855afa158015611e67573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60008183611eb89190613faf565b905092915050565b6000611ecb82611c6d565b611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0190613caa565b60405180910390fd5b6000611f1583610f80565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f8457508373ffffffffffffffffffffffffffffffffffffffff16611f6c846108fc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f955750611f9481856118e0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fbe82610f80565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90613daa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90613c6a565b60405180910390fd5b61208f83838361286d565b61209a600082611ce8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120ea9190614090565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121419190613faf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006122d86001600f54611eaa90919063ffffffff16565b905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561234d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234490613d4a565b60405180910390fd5b61235681611c6d565b15612396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238d90613c4a565b60405180910390fd5b6123a26000838361286d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f29190613faf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600f60008154809291906124be90614218565b9190505550565b6124d0848484611f9e565b6124dc84848484612981565b61251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290613bea565b60405180910390fd5b50505050565b60606000821415612569576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126c9565b600082905060005b6000821461259b57808061258490614218565b915050600a826125949190614005565b9150612571565b60008167ffffffffffffffff8111156125dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561260f5781602001600182028036833780820191505090505b5090505b600085146126c2576001826126289190614090565b9150600a85612637919061428f565b60306126439190613faf565b60f81b81838151811061267f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126bb9190614005565b9450612613565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000604051806080016040528060438152602001614ab26043913980519060200120826000015183602001518460400151805190602001206040516020016128179493929190613afc565b604051602081830303815290604052805190602001209050919050565b600061283e610d51565b826040516020016128509291906139ea565b604051602081830303815290604052805190602001209050919050565b612878838383612b18565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128bb576128b681612b1d565b6128fa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146128f9576128f88382612b66565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561293d5761293881612cd3565b61297c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461297b5761297a8282612e16565b5b5b505050565b60006129a28473ffffffffffffffffffffffffffffffffffffffff16612e95565b15612b0b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129cb611cd9565b8786866040518563ffffffff1660e01b81526004016129ed9493929190613a7a565b602060405180830381600087803b158015612a0757600080fd5b505af1925050508015612a3857506040513d601f19601f82011682018060405250810190612a35919061334b565b60015b612abb573d8060008114612a68576040519150601f19603f3d011682016040523d82523d6000602084013e612a6d565b606091505b50600081511415612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa90613bea565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b10565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b73846110d1565b612b7d9190614090565b9050600060076000848152602001908152602001600020549050818114612c62576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ce79190614090565b9050600060096000848152602001908152602001600020549050600060088381548110612d3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612d85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612dfa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612e21836110d1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612eb4906141b5565b90600052602060002090601f016020900481019282612ed65760008555612f1d565b82601f10612eef57805160ff1916838001178555612f1d565b82800160010185558215612f1d579182015b82811115612f1c578251825591602001919060010190612f01565b5b509050612f2a9190612f2e565b5090565b5b80821115612f47576000816000905550600101612f2f565b5090565b6000612f5e612f5984613eea565b613ec5565b905082815260208101848484011115612f7657600080fd5b612f81848285614173565b509392505050565b6000612f9c612f9784613f1b565b613ec5565b905082815260208101848484011115612fb457600080fd5b612fbf848285614173565b509392505050565b600081359050612fd6816149d5565b92915050565b600081359050612feb816149ec565b92915050565b60008135905061300081614a03565b92915050565b60008135905061301581614a1a565b92915050565b60008151905061302a81614a1a565b92915050565b600082601f83011261304157600080fd5b8135613051848260208601612f4b565b91505092915050565b60008151905061306981614a31565b92915050565b600082601f83011261308057600080fd5b8135613090848260208601612f89565b91505092915050565b6000813590506130a881614a48565b92915050565b6000813590506130bd81614a5f565b92915050565b6000602082840312156130d557600080fd5b60006130e384828501612fc7565b91505092915050565b600080604083850312156130ff57600080fd5b600061310d85828601612fc7565b925050602061311e85828601612fc7565b9150509250929050565b60008060006060848603121561313d57600080fd5b600061314b86828701612fc7565b935050602061315c86828701612fc7565b925050604061316d86828701613099565b9150509250925092565b6000806000806080858703121561318d57600080fd5b600061319b87828801612fc7565b94505060206131ac87828801612fc7565b93505060406131bd87828801613099565b925050606085013567ffffffffffffffff8111156131da57600080fd5b6131e687828801613030565b91505092959194509250565b6000806040838503121561320557600080fd5b600061321385828601612fc7565b925050602061322485828601612fdc565b9150509250929050565b600080600080600060a0868803121561324657600080fd5b600061325488828901612fc7565b955050602086013567ffffffffffffffff81111561327157600080fd5b61327d88828901613030565b945050604061328e88828901612ff1565b935050606061329f88828901612ff1565b92505060806132b0888289016130ae565b9150509295509295909350565b600080604083850312156132d057600080fd5b60006132de85828601612fc7565b92505060206132ef85828601613099565b9150509250929050565b60006020828403121561330b57600080fd5b600061331984828501612fdc565b91505092915050565b60006020828403121561333457600080fd5b600061334284828501613006565b91505092915050565b60006020828403121561335d57600080fd5b600061336b8482850161301b565b91505092915050565b60006020828403121561338657600080fd5b60006133948482850161305a565b91505092915050565b6000602082840312156133af57600080fd5b600082013567ffffffffffffffff8111156133c957600080fd5b6133d58482850161306f565b91505092915050565b6000602082840312156133f057600080fd5b60006133fe84828501613099565b91505092915050565b613410816140d6565b82525050565b61341f816140c4565b82525050565b613436613431826140c4565b614261565b82525050565b613445816140e8565b82525050565b613454816140f4565b82525050565b61346b613466826140f4565b614273565b82525050565b600061347c82613f61565b6134868185613f77565b9350613496818560208601614182565b61349f8161437c565b840191505092915050565b60006134b582613f61565b6134bf8185613f88565b93506134cf818560208601614182565b80840191505092915050565b60006134e682613f6c565b6134f08185613f93565b9350613500818560208601614182565b6135098161437c565b840191505092915050565b600061351f82613f6c565b6135298185613fa4565b9350613539818560208601614182565b80840191505092915050565b60008154613552816141b5565b61355c8186613fa4565b945060018216600081146135775760018114613588576135bb565b60ff198316865281860193506135bb565b61359185613f4c565b60005b838110156135b357815481890152600182019150602081019050613594565b838801955050505b50505092915050565b60006135d1602b83613f93565b91506135dc8261439a565b604082019050919050565b60006135f4603283613f93565b91506135ff826143e9565b604082019050919050565b6000613617602683613f93565b915061362282614438565b604082019050919050565b600061363a601c83613f93565b915061364582614487565b602082019050919050565b600061365d601c83613f93565b9150613668826144b0565b602082019050919050565b6000613680600283613fa4565b915061368b826144d9565b600282019050919050565b60006136a3602483613f93565b91506136ae82614502565b604082019050919050565b60006136c6601983613f93565b91506136d182614551565b602082019050919050565b60006136e9602c83613f93565b91506136f48261457a565b604082019050919050565b600061370c602583613f93565b9150613717826145c9565b604082019050919050565b600061372f603883613f93565b915061373a82614618565b604082019050919050565b6000613752602a83613f93565b915061375d82614667565b604082019050919050565b6000613775602983613f93565b9150613780826146b6565b604082019050919050565b6000613798602083613f93565b91506137a382614705565b602082019050919050565b60006137bb602c83613f93565b91506137c68261472e565b604082019050919050565b60006137de600583613fa4565b91506137e98261477d565b600582019050919050565b6000613801602083613f93565b915061380c826147a6565b602082019050919050565b6000613824602983613f93565b915061382f826147cf565b604082019050919050565b6000613847602183613f93565b91506138528261481e565b604082019050919050565b600061386a601083613f93565b91506138758261486d565b602082019050919050565b600061388d602183613f93565b915061389882614896565b604082019050919050565b60006138b0603183613f93565b91506138bb826148e5565b604082019050919050565b60006138d3600e83613f93565b91506138de82614934565b602082019050919050565b60006138f6602c83613f93565b91506139018261495d565b604082019050919050565b6000613919600c83613f93565b9150613924826149ac565b602082019050919050565b6139388161415c565b82525050565b61394781614166565b82525050565b600061395982846134aa565b915081905092915050565b600061397082856134aa565b915061397c8284613425565b6014820191508190509392505050565b60006139988285613514565b91506139a48284613514565b91506139af826137d1565b91508190509392505050565b60006139c78285613545565b91506139d38284613514565b91506139de826137d1565b91508190509392505050565b60006139f582613673565b9150613a01828561345a565b602082019150613a11828461345a565b6020820191508190509392505050565b6000602082019050613a366000830184613416565b92915050565b6000606082019050613a516000830186613416565b613a5e6020830185613407565b8181036040830152613a708184613471565b9050949350505050565b6000608082019050613a8f6000830187613416565b613a9c6020830186613416565b613aa9604083018561392f565b8181036060830152613abb8184613471565b905095945050505050565b6000602082019050613adb600083018461343c565b92915050565b6000602082019050613af6600083018461344b565b92915050565b6000608082019050613b11600083018761344b565b613b1e602083018661392f565b613b2b6040830185613416565b613b38606083018461344b565b95945050505050565b6000608082019050613b56600083018761344b565b613b63602083018661393e565b613b70604083018561344b565b613b7d606083018461344b565b95945050505050565b60006020820190508181036000830152613ba08184613471565b905092915050565b60006020820190508181036000830152613bc281846134db565b905092915050565b60006020820190508181036000830152613be3816135c4565b9050919050565b60006020820190508181036000830152613c03816135e7565b9050919050565b60006020820190508181036000830152613c238161360a565b9050919050565b60006020820190508181036000830152613c438161362d565b9050919050565b60006020820190508181036000830152613c6381613650565b9050919050565b60006020820190508181036000830152613c8381613696565b9050919050565b60006020820190508181036000830152613ca3816136b9565b9050919050565b60006020820190508181036000830152613cc3816136dc565b9050919050565b60006020820190508181036000830152613ce3816136ff565b9050919050565b60006020820190508181036000830152613d0381613722565b9050919050565b60006020820190508181036000830152613d2381613745565b9050919050565b60006020820190508181036000830152613d4381613768565b9050919050565b60006020820190508181036000830152613d638161378b565b9050919050565b60006020820190508181036000830152613d83816137ae565b9050919050565b60006020820190508181036000830152613da3816137f4565b9050919050565b60006020820190508181036000830152613dc381613817565b9050919050565b60006020820190508181036000830152613de38161383a565b9050919050565b60006020820190508181036000830152613e038161385d565b9050919050565b60006020820190508181036000830152613e2381613880565b9050919050565b60006020820190508181036000830152613e43816138a3565b9050919050565b60006020820190508181036000830152613e63816138c6565b9050919050565b60006020820190508181036000830152613e83816138e9565b9050919050565b60006020820190508181036000830152613ea38161390c565b9050919050565b6000602082019050613ebf600083018461392f565b92915050565b6000613ecf613ee0565b9050613edb82826141e7565b919050565b6000604051905090565b600067ffffffffffffffff821115613f0557613f0461434d565b5b613f0e8261437c565b9050602081019050919050565b600067ffffffffffffffff821115613f3657613f3561434d565b5b613f3f8261437c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fba8261415c565b9150613fc58361415c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ffa57613ff96142c0565b5b828201905092915050565b60006140108261415c565b915061401b8361415c565b92508261402b5761402a6142ef565b5b828204905092915050565b60006140418261415c565b915061404c8361415c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614085576140846142c0565b5b828202905092915050565b600061409b8261415c565b91506140a68361415c565b9250828210156140b9576140b86142c0565b5b828203905092915050565b60006140cf8261413c565b9050919050565b60006140e18261413c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614135826140c4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156141a0578082015181840152602081019050614185565b838111156141af576000848401525b50505050565b600060028204905060018216806141cd57607f821691505b602082108114156141e1576141e061431e565b5b50919050565b6141f08261437c565b810181811067ffffffffffffffff8211171561420f5761420e61434d565b5b80604052505050565b60006142238261415c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614256576142556142c0565b5b600182019050919050565b600061426c8261427d565b9050919050565b6000819050919050565b60006142888261438d565b9050919050565b600061429a8261415c565b91506142a58361415c565b9250826142b5576142b46142ef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d6f6e657900000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f746f6f206d616e79206974656d73000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6f7574206f662073746f636b0000000000000000000000000000000000000000600082015250565b6149de816140c4565b81146149e957600080fd5b50565b6149f5816140e8565b8114614a0057600080fd5b50565b614a0c816140f4565b8114614a1757600080fd5b50565b614a23816140fe565b8114614a2e57600080fd5b50565b614a3a8161412a565b8114614a4557600080fd5b50565b614a518161415c565b8114614a5c57600080fd5b50565b614a6881614166565b8114614a7357600080fd5b5056fe68747470733a2f2f6372656174757265732d6170692e6f70656e7365612e696f2f636f6e74726163742f6f70656e7365612d6372656174757265734d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f76696c6c61646576656e646f6d652e636f6d2f6d657461646174612fa26469706673582212204bd037dd377b77cccc452d04418b3de9a0a71e6495cdf6d1575df7382f9361e664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ade6b7e7f094c20250422472b4d5086f0840c9f8
-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xADE6B7E7f094c20250422472B4D5086f0840c9F8
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ade6b7e7f094c20250422472b4d5086f0840c9f8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.