ERC-721
Overview
Max Total Supply
104 MTLHDZ1
Holders
93
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MTLHDZ1Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MetalHead
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-06 */ // File: creatures/common/meta-transactions/Initializable.sol pragma solidity ^0.8.0; contract Initializable { bool inited = false; modifier initializer() { require(!inited, "already inited"); _; inited = true; } } // File: creatures/common/meta-transactions/EIP712Base.sol pragma solidity ^0.8.0; 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) ); } } // File: creatures/common/meta-transactions/ContentMixin.sol 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; } } // File: openzeppelin-solidity/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) 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 generally not needed starting with Solidity 0.8, since 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; } } } // File: creatures/common/meta-transactions/NativeMetaTransaction.sol pragma solidity ^0.8.0; 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 ); } } // File: openzeppelin-solidity/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: openzeppelin-solidity/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: openzeppelin-solidity/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: openzeppelin-solidity/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: openzeppelin-solidity/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: openzeppelin-solidity/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: openzeppelin-solidity/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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); } // File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: openzeppelin-solidity/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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(); } } // File: creatures/ERC721Tradable.sol pragma solidity ^0.8.0; 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; 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(); } /** * @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 view returns (string memory); function tokenURI(uint256 _tokenId) override virtual public view returns (string memory) { return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId))); } /** * 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(); } } // File: creatures/MetalHead.sol pragma solidity ^0.8.0; contract MetalHead is ERC721Tradable { string baseURI; constructor(address _proxyRegistryAddress, string memory _initBaseURI) ERC721Tradable("theMETALHEADZ-vol1", "MTLHDZ1", _proxyRegistryAddress) { setBaseURI(_initBaseURI); } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function baseTokenURI() override public view returns (string memory) { return baseURI; } function tokenURI(uint256 _tokenId) override virtual public view returns (string memory) { return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId), ".json")); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"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":"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","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
6080604052600a805460ff191690556000600f553480156200002057600080fd5b50604051620029653803806200296583398101604081905262000043916200042f565b604051806040016040528060128152602001717468654d4554414c484541445a2d766f6c3160701b815250604051806040016040528060078152602001664d544c48445a3160c81b8152508382828160009080519060200190620000a992919062000389565b508051620000bf90600190602084019062000389565b505050620000dc620000d66200011e60201b60201c565b6200013a565b600e80546001600160a01b0319166001600160a01b03831617905562000102836200018c565b5050506200011681620001f160201b60201c565b505062000582565b6000620001356200028860201b62000f3e1760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620001d65760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b60448201526064015b60405180910390fd5b620001e181620002e7565b50600a805460ff19166001179055565b620001fb6200011e565b6001600160a01b031662000217600d546001600160a01b031690565b6001600160a01b0316146200026f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001cd565b80516200028490601090602084019062000389565b5050565b600033301415620002e157600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002e49050565b50335b90565b6040518060800160405280604f815260200162002916604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b82805462000397906200052f565b90600052602060002090601f016020900481019282620003bb576000855562000406565b82601f10620003d657805160ff191683800117855562000406565b8280016001018555821562000406579182015b8281111562000406578251825591602001919060010190620003e9565b506200041492915062000418565b5090565b5b8082111562000414576000815560010162000419565b600080604083850312156200044357600080fd5b82516001600160a01b03811681146200045b57600080fd5b602084810151919350906001600160401b03808211156200047b57600080fd5b818601915086601f8301126200049057600080fd5b815181811115620004a557620004a56200056c565b604051601f8201601f19908116603f01168101908382118183101715620004d057620004d06200056c565b816040528281528986848701011115620004e957600080fd5b600093505b828410156200050d5784840186015181850187015292850192620004ee565b828411156200051f5760008684830101525b8096505050505050509250929050565b600181811c908216806200054457607f821691505b602082108114156200056657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61238480620005926000396000f3fe60806040526004361061019c5760003560e01c80634f6ccce7116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610497578063d547cfb7146104b7578063e985e9c5146104cc578063f2fde38b146104ec57600080fd5b806395d89b4114610442578063a22cb46514610457578063b88d4fde1461047757600080fd5b806370a08231116100c657806370a08231146103cf578063715018a6146103ef578063755edd17146104045780638da5cb5b1461042457600080fd5b80634f6ccce71461036f57806355f804b31461038f5780636352211e146103af57600080fd5b806318160ddd116101595780632d0335ab116101335780632d0335ab146102e65780632f745c591461031c5780633408e4701461033c57806342842e0e1461034f57600080fd5b806318160ddd1461029257806320379ee5146102b157806323b872dd146102c657600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b3146102305780630c53c51c146102525780630f7e597014610265575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611ec5565b61050c565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610537565b6040516101cd91906120ae565b34801561020457600080fd5b50610218610213366004611f65565b6105c9565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611e99565b610663565b005b6101eb610260366004611e1b565b61078b565b34801561027157600080fd5b506101eb604051806040016040528060018152602001603160f81b81525081565b34801561029e57600080fd5b506008545b6040519081526020016101cd565b3480156102bd57600080fd5b50600b546102a3565b3480156102d257600080fd5b506102506102e1366004611d3b565b610975565b3480156102f257600080fd5b506102a3610301366004611ce5565b6001600160a01b03166000908152600c602052604090205490565b34801561032857600080fd5b506102a3610337366004611e99565b6109ad565b34801561034857600080fd5b50466102a3565b34801561035b57600080fd5b5061025061036a366004611d3b565b610a43565b34801561037b57600080fd5b506102a361038a366004611f65565b610a5e565b34801561039b57600080fd5b506102506103aa366004611f1c565b610af1565b3480156103bb57600080fd5b506102186103ca366004611f65565b610b51565b3480156103db57600080fd5b506102a36103ea366004611ce5565b610bc8565b3480156103fb57600080fd5b50610250610c4f565b34801561041057600080fd5b5061025061041f366004611ce5565b610ca4565b34801561043057600080fd5b50600d546001600160a01b0316610218565b34801561044e57600080fd5b506101eb610d0b565b34801561046357600080fd5b50610250610472366004611de8565b610d1a565b34801561048357600080fd5b50610250610492366004611d7c565b610d2c565b3480156104a357600080fd5b506101eb6104b2366004611f65565b610d6b565b3480156104c357600080fd5b506101eb610da5565b3480156104d857600080fd5b506101c16104e7366004611d02565b610db4565b3480156104f857600080fd5b50610250610507366004611ce5565b610e84565b60006001600160e01b0319821663780e9d6360e01b1480610531575061053182610f9b565b92915050565b60606000805461054690612208565b80601f016020809104026020016040519081016040528092919081815260200182805461057290612208565b80156105bf5780601f10610594576101008083540402835291602001916105bf565b820191906000526020600020905b8154815290600101906020018083116105a257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061066e82610b51565b9050806001600160a01b0316836001600160a01b031614156106dc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161063e565b806001600160a01b03166106ee610feb565b6001600160a01b0316148061070a575061070a816104e7610feb565b61077c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161063e565b6107868383610ffa565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526107c98782878787611068565b61081f5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161063e565b6001600160a01b0387166000908152600c6020526040902054610843906001611158565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061089390899033908a9061203c565b60405180910390a1600080306001600160a01b0316888a6040516020016108bb929190611fc6565b60408051601f19818403018152908290526108d591611faa565b6000604051808303816000865af19150503d8060008114610912576040519150601f19603f3d011682016040523d82523d6000602084013e610917565b606091505b5091509150816109695760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161063e565b98975050505050505050565b610986610980610feb565b8261116b565b6109a25760405162461bcd60e51b815260040161063e90612148565b61078683838361123a565b60006109b883610bc8565b8210610a1a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161063e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61078683838360405180602001604052806000815250610d2c565b6000610a6960085490565b8210610acc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161063e565b60088281548110610adf57610adf6122b4565b90600052602060002001549050919050565b610af9610feb565b6001600160a01b0316610b14600d546001600160a01b031690565b6001600160a01b031614610b3a5760405162461bcd60e51b815260040161063e90612113565b8051610b4d906010906020840190611bb6565b5050565b6000818152600260205260408120546001600160a01b0316806105315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161063e565b60006001600160a01b038216610c335760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161063e565b506001600160a01b031660009081526003602052604090205490565b610c57610feb565b6001600160a01b0316610c72600d546001600160a01b031690565b6001600160a01b031614610c985760405162461bcd60e51b815260040161063e90612113565b610ca260006113e5565b565b610cac610feb565b6001600160a01b0316610cc7600d546001600160a01b031690565b6001600160a01b031614610ced5760405162461bcd60e51b815260040161063e90612113565b6000610cf7611437565b9050610d038282611448565b610b4d611596565b60606001805461054690612208565b610b4d610d25610feb565b83836115ad565b610d3d610d37610feb565b8361116b565b610d595760405162461bcd60e51b815260040161063e90612148565b610d658484848461167c565b50505050565b6060610d75610da5565b610d7e836116af565b604051602001610d8f929190611ffd565b6040516020818303038152906040529050919050565b60606010805461054690612208565b600e5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015610e0157600080fd5b505afa158015610e15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e399190611eff565b6001600160a01b03161415610e52576001915050610531565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b610e8c610feb565b6001600160a01b0316610ea7600d546001600160a01b031690565b6001600160a01b031614610ecd5760405162461bcd60e51b815260040161063e90612113565b6001600160a01b038116610f325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161063e565b610f3b816113e5565b50565b600033301415610f9557600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150610f989050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b1480610fcc57506001600160e01b03198216635b5e139f60e01b145b8061053157506301ffc9a760e01b6001600160e01b0319831614610531565b6000610ff5610f3e565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061102f82610b51565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166110ce5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b606482015260840161063e565b60016110e16110dc876117ad565b61182a565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561112f573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006111648284612199565b9392505050565b6000818152600260205260408120546001600160a01b03166111e45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161063e565b60006111ef83610b51565b9050806001600160a01b0316846001600160a01b0316148061122a5750836001600160a01b031661121f846105c9565b6001600160a01b0316145b80610e7c5750610e7c8185610db4565b826001600160a01b031661124d82610b51565b6001600160a01b0316146112b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161063e565b6001600160a01b0382166113175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161063e565b61132283838361185a565b61132d600082610ffa565b6001600160a01b03831660009081526003602052604081208054600192906113569084906121c5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611384908490612199565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f54600090610ff5906001611158565b6001600160a01b03821661149e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161063e565b6000818152600260205260409020546001600160a01b0316156115035760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161063e565b61150f6000838361185a565b6001600160a01b0382166000908152600360205260408120805460019290611538908490612199565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f80549060006115a683612243565b9190505550565b816001600160a01b0316836001600160a01b0316141561160f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161063e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61168784848461123a565b61169384848484611912565b610d655760405162461bcd60e51b815260040161063e906120c1565b6060816116d35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116fd57806116e781612243565b91506116f69050600a836121b1565b91506116d7565b60008167ffffffffffffffff811115611718576117186122ca565b6040519080825280601f01601f191660200182016040528015611742576020820181803683370190505b5090505b8415610e7c576117576001836121c5565b9150611764600a8661225e565b61176f906030612199565b60f81b818381518110611784576117846122b4565b60200101906001600160f81b031916908160001a9053506117a6600a866121b1565b9450611746565b600060405180608001604052806043815260200161230c604391398051602091820120835184830151604080870151805190860120905161180d950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611835600b5490565b60405161190160f01b602082015260228101919091526042810183905260620161180d565b6001600160a01b0383166118b5576118b081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118d8565b816001600160a01b0316836001600160a01b0316146118d8576118d88382611a26565b6001600160a01b0382166118ef5761078681611ac3565b826001600160a01b0316826001600160a01b031614610786576107868282611b72565b60006001600160a01b0384163b15611a1b57836001600160a01b031663150b7a0261193b610feb565b8786866040518563ffffffff1660e01b815260040161195d9493929190612071565b602060405180830381600087803b15801561197757600080fd5b505af19250505080156119a7575060408051601f3d908101601f191682019092526119a491810190611ee2565b60015b611a01573d8080156119d5576040519150601f19603f3d011682016040523d82523d6000602084013e6119da565b606091505b5080516119f95760405162461bcd60e51b815260040161063e906120c1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e7c565b506001949350505050565b60006001611a3384610bc8565b611a3d91906121c5565b600083815260076020526040902054909150808214611a90576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ad5906001906121c5565b60008381526009602052604081205460088054939450909284908110611afd57611afd6122b4565b906000526020600020015490508060088381548110611b1e57611b1e6122b4565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b5657611b5661229e565b6001900381819060005260206000200160009055905550505050565b6000611b7d83610bc8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611bc290612208565b90600052602060002090601f016020900481019282611be45760008555611c2a565b82601f10611bfd57805160ff1916838001178555611c2a565b82800160010185558215611c2a579182015b82811115611c2a578251825591602001919060010190611c0f565b50611c36929150611c3a565b5090565b5b80821115611c365760008155600101611c3b565b600067ffffffffffffffff80841115611c6a57611c6a6122ca565b604051601f8501601f19908116603f01168101908282118183101715611c9257611c926122ca565b81604052809350858152868686011115611cab57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611cd657600080fd5b61116483833560208501611c4f565b600060208284031215611cf757600080fd5b8135611164816122e0565b60008060408385031215611d1557600080fd5b8235611d20816122e0565b91506020830135611d30816122e0565b809150509250929050565b600080600060608486031215611d5057600080fd5b8335611d5b816122e0565b92506020840135611d6b816122e0565b929592945050506040919091013590565b60008060008060808587031215611d9257600080fd5b8435611d9d816122e0565b93506020850135611dad816122e0565b925060408501359150606085013567ffffffffffffffff811115611dd057600080fd5b611ddc87828801611cc5565b91505092959194509250565b60008060408385031215611dfb57600080fd5b8235611e06816122e0565b915060208301358015158114611d3057600080fd5b600080600080600060a08688031215611e3357600080fd5b8535611e3e816122e0565b9450602086013567ffffffffffffffff811115611e5a57600080fd5b611e6688828901611cc5565b9450506040860135925060608601359150608086013560ff81168114611e8b57600080fd5b809150509295509295909350565b60008060408385031215611eac57600080fd5b8235611eb7816122e0565b946020939093013593505050565b600060208284031215611ed757600080fd5b8135611164816122f5565b600060208284031215611ef457600080fd5b8151611164816122f5565b600060208284031215611f1157600080fd5b8151611164816122e0565b600060208284031215611f2e57600080fd5b813567ffffffffffffffff811115611f4557600080fd5b8201601f81018413611f5657600080fd5b610e7c84823560208401611c4f565b600060208284031215611f7757600080fd5b5035919050565b60008151808452611f968160208601602086016121dc565b601f01601f19169290920160200192915050565b60008251611fbc8184602087016121dc565b9190910192915050565b60008351611fd88184602088016121dc565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6000835161200f8184602088016121dc565b8351908301906120238183602088016121dc565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0384811682528316602082015260606040820181905260009061206890830184611f7e565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120a490830184611f7e565b9695505050505050565b6020815260006111646020830184611f7e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121ac576121ac612272565b500190565b6000826121c0576121c0612288565b500490565b6000828210156121d7576121d7612272565b500390565b60005b838110156121f75781810151838201526020016121df565b83811115610d655750506000910152565b600181811c9082168061221c57607f821691505b6020821081141561223d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561225757612257612272565b5060010190565b60008261226d5761226d612288565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f3b57600080fd5b6001600160e01b031981168114610f3b57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212206c470c8f94cb9225ddb31895f79734c159e2c1c240d28c2e86282f73bd9923b964736f6c63430008070033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66514e706f413146734a5a47515745736f4c785463616138573473795a38367963464670313937416b4869592f00000000000000000000
Deployed Bytecode
0x60806040526004361061019c5760003560e01c80634f6ccce7116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610497578063d547cfb7146104b7578063e985e9c5146104cc578063f2fde38b146104ec57600080fd5b806395d89b4114610442578063a22cb46514610457578063b88d4fde1461047757600080fd5b806370a08231116100c657806370a08231146103cf578063715018a6146103ef578063755edd17146104045780638da5cb5b1461042457600080fd5b80634f6ccce71461036f57806355f804b31461038f5780636352211e146103af57600080fd5b806318160ddd116101595780632d0335ab116101335780632d0335ab146102e65780632f745c591461031c5780633408e4701461033c57806342842e0e1461034f57600080fd5b806318160ddd1461029257806320379ee5146102b157806323b872dd146102c657600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b3146102305780630c53c51c146102525780630f7e597014610265575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611ec5565b61050c565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610537565b6040516101cd91906120ae565b34801561020457600080fd5b50610218610213366004611f65565b6105c9565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611e99565b610663565b005b6101eb610260366004611e1b565b61078b565b34801561027157600080fd5b506101eb604051806040016040528060018152602001603160f81b81525081565b34801561029e57600080fd5b506008545b6040519081526020016101cd565b3480156102bd57600080fd5b50600b546102a3565b3480156102d257600080fd5b506102506102e1366004611d3b565b610975565b3480156102f257600080fd5b506102a3610301366004611ce5565b6001600160a01b03166000908152600c602052604090205490565b34801561032857600080fd5b506102a3610337366004611e99565b6109ad565b34801561034857600080fd5b50466102a3565b34801561035b57600080fd5b5061025061036a366004611d3b565b610a43565b34801561037b57600080fd5b506102a361038a366004611f65565b610a5e565b34801561039b57600080fd5b506102506103aa366004611f1c565b610af1565b3480156103bb57600080fd5b506102186103ca366004611f65565b610b51565b3480156103db57600080fd5b506102a36103ea366004611ce5565b610bc8565b3480156103fb57600080fd5b50610250610c4f565b34801561041057600080fd5b5061025061041f366004611ce5565b610ca4565b34801561043057600080fd5b50600d546001600160a01b0316610218565b34801561044e57600080fd5b506101eb610d0b565b34801561046357600080fd5b50610250610472366004611de8565b610d1a565b34801561048357600080fd5b50610250610492366004611d7c565b610d2c565b3480156104a357600080fd5b506101eb6104b2366004611f65565b610d6b565b3480156104c357600080fd5b506101eb610da5565b3480156104d857600080fd5b506101c16104e7366004611d02565b610db4565b3480156104f857600080fd5b50610250610507366004611ce5565b610e84565b60006001600160e01b0319821663780e9d6360e01b1480610531575061053182610f9b565b92915050565b60606000805461054690612208565b80601f016020809104026020016040519081016040528092919081815260200182805461057290612208565b80156105bf5780601f10610594576101008083540402835291602001916105bf565b820191906000526020600020905b8154815290600101906020018083116105a257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061066e82610b51565b9050806001600160a01b0316836001600160a01b031614156106dc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161063e565b806001600160a01b03166106ee610feb565b6001600160a01b0316148061070a575061070a816104e7610feb565b61077c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161063e565b6107868383610ffa565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526107c98782878787611068565b61081f5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161063e565b6001600160a01b0387166000908152600c6020526040902054610843906001611158565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061089390899033908a9061203c565b60405180910390a1600080306001600160a01b0316888a6040516020016108bb929190611fc6565b60408051601f19818403018152908290526108d591611faa565b6000604051808303816000865af19150503d8060008114610912576040519150601f19603f3d011682016040523d82523d6000602084013e610917565b606091505b5091509150816109695760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161063e565b98975050505050505050565b610986610980610feb565b8261116b565b6109a25760405162461bcd60e51b815260040161063e90612148565b61078683838361123a565b60006109b883610bc8565b8210610a1a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161063e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61078683838360405180602001604052806000815250610d2c565b6000610a6960085490565b8210610acc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161063e565b60088281548110610adf57610adf6122b4565b90600052602060002001549050919050565b610af9610feb565b6001600160a01b0316610b14600d546001600160a01b031690565b6001600160a01b031614610b3a5760405162461bcd60e51b815260040161063e90612113565b8051610b4d906010906020840190611bb6565b5050565b6000818152600260205260408120546001600160a01b0316806105315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161063e565b60006001600160a01b038216610c335760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161063e565b506001600160a01b031660009081526003602052604090205490565b610c57610feb565b6001600160a01b0316610c72600d546001600160a01b031690565b6001600160a01b031614610c985760405162461bcd60e51b815260040161063e90612113565b610ca260006113e5565b565b610cac610feb565b6001600160a01b0316610cc7600d546001600160a01b031690565b6001600160a01b031614610ced5760405162461bcd60e51b815260040161063e90612113565b6000610cf7611437565b9050610d038282611448565b610b4d611596565b60606001805461054690612208565b610b4d610d25610feb565b83836115ad565b610d3d610d37610feb565b8361116b565b610d595760405162461bcd60e51b815260040161063e90612148565b610d658484848461167c565b50505050565b6060610d75610da5565b610d7e836116af565b604051602001610d8f929190611ffd565b6040516020818303038152906040529050919050565b60606010805461054690612208565b600e5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015610e0157600080fd5b505afa158015610e15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e399190611eff565b6001600160a01b03161415610e52576001915050610531565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b610e8c610feb565b6001600160a01b0316610ea7600d546001600160a01b031690565b6001600160a01b031614610ecd5760405162461bcd60e51b815260040161063e90612113565b6001600160a01b038116610f325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161063e565b610f3b816113e5565b50565b600033301415610f9557600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150610f989050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b1480610fcc57506001600160e01b03198216635b5e139f60e01b145b8061053157506301ffc9a760e01b6001600160e01b0319831614610531565b6000610ff5610f3e565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061102f82610b51565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166110ce5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b606482015260840161063e565b60016110e16110dc876117ad565b61182a565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561112f573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006111648284612199565b9392505050565b6000818152600260205260408120546001600160a01b03166111e45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161063e565b60006111ef83610b51565b9050806001600160a01b0316846001600160a01b0316148061122a5750836001600160a01b031661121f846105c9565b6001600160a01b0316145b80610e7c5750610e7c8185610db4565b826001600160a01b031661124d82610b51565b6001600160a01b0316146112b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161063e565b6001600160a01b0382166113175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161063e565b61132283838361185a565b61132d600082610ffa565b6001600160a01b03831660009081526003602052604081208054600192906113569084906121c5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611384908490612199565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f54600090610ff5906001611158565b6001600160a01b03821661149e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161063e565b6000818152600260205260409020546001600160a01b0316156115035760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161063e565b61150f6000838361185a565b6001600160a01b0382166000908152600360205260408120805460019290611538908490612199565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f80549060006115a683612243565b9190505550565b816001600160a01b0316836001600160a01b0316141561160f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161063e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61168784848461123a565b61169384848484611912565b610d655760405162461bcd60e51b815260040161063e906120c1565b6060816116d35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116fd57806116e781612243565b91506116f69050600a836121b1565b91506116d7565b60008167ffffffffffffffff811115611718576117186122ca565b6040519080825280601f01601f191660200182016040528015611742576020820181803683370190505b5090505b8415610e7c576117576001836121c5565b9150611764600a8661225e565b61176f906030612199565b60f81b818381518110611784576117846122b4565b60200101906001600160f81b031916908160001a9053506117a6600a866121b1565b9450611746565b600060405180608001604052806043815260200161230c604391398051602091820120835184830151604080870151805190860120905161180d950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611835600b5490565b60405161190160f01b602082015260228101919091526042810183905260620161180d565b6001600160a01b0383166118b5576118b081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118d8565b816001600160a01b0316836001600160a01b0316146118d8576118d88382611a26565b6001600160a01b0382166118ef5761078681611ac3565b826001600160a01b0316826001600160a01b031614610786576107868282611b72565b60006001600160a01b0384163b15611a1b57836001600160a01b031663150b7a0261193b610feb565b8786866040518563ffffffff1660e01b815260040161195d9493929190612071565b602060405180830381600087803b15801561197757600080fd5b505af19250505080156119a7575060408051601f3d908101601f191682019092526119a491810190611ee2565b60015b611a01573d8080156119d5576040519150601f19603f3d011682016040523d82523d6000602084013e6119da565b606091505b5080516119f95760405162461bcd60e51b815260040161063e906120c1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e7c565b506001949350505050565b60006001611a3384610bc8565b611a3d91906121c5565b600083815260076020526040902054909150808214611a90576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ad5906001906121c5565b60008381526009602052604081205460088054939450909284908110611afd57611afd6122b4565b906000526020600020015490508060088381548110611b1e57611b1e6122b4565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b5657611b5661229e565b6001900381819060005260206000200160009055905550505050565b6000611b7d83610bc8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611bc290612208565b90600052602060002090601f016020900481019282611be45760008555611c2a565b82601f10611bfd57805160ff1916838001178555611c2a565b82800160010185558215611c2a579182015b82811115611c2a578251825591602001919060010190611c0f565b50611c36929150611c3a565b5090565b5b80821115611c365760008155600101611c3b565b600067ffffffffffffffff80841115611c6a57611c6a6122ca565b604051601f8501601f19908116603f01168101908282118183101715611c9257611c926122ca565b81604052809350858152868686011115611cab57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611cd657600080fd5b61116483833560208501611c4f565b600060208284031215611cf757600080fd5b8135611164816122e0565b60008060408385031215611d1557600080fd5b8235611d20816122e0565b91506020830135611d30816122e0565b809150509250929050565b600080600060608486031215611d5057600080fd5b8335611d5b816122e0565b92506020840135611d6b816122e0565b929592945050506040919091013590565b60008060008060808587031215611d9257600080fd5b8435611d9d816122e0565b93506020850135611dad816122e0565b925060408501359150606085013567ffffffffffffffff811115611dd057600080fd5b611ddc87828801611cc5565b91505092959194509250565b60008060408385031215611dfb57600080fd5b8235611e06816122e0565b915060208301358015158114611d3057600080fd5b600080600080600060a08688031215611e3357600080fd5b8535611e3e816122e0565b9450602086013567ffffffffffffffff811115611e5a57600080fd5b611e6688828901611cc5565b9450506040860135925060608601359150608086013560ff81168114611e8b57600080fd5b809150509295509295909350565b60008060408385031215611eac57600080fd5b8235611eb7816122e0565b946020939093013593505050565b600060208284031215611ed757600080fd5b8135611164816122f5565b600060208284031215611ef457600080fd5b8151611164816122f5565b600060208284031215611f1157600080fd5b8151611164816122e0565b600060208284031215611f2e57600080fd5b813567ffffffffffffffff811115611f4557600080fd5b8201601f81018413611f5657600080fd5b610e7c84823560208401611c4f565b600060208284031215611f7757600080fd5b5035919050565b60008151808452611f968160208601602086016121dc565b601f01601f19169290920160200192915050565b60008251611fbc8184602087016121dc565b9190910192915050565b60008351611fd88184602088016121dc565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6000835161200f8184602088016121dc565b8351908301906120238183602088016121dc565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0384811682528316602082015260606040820181905260009061206890830184611f7e565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120a490830184611f7e565b9695505050505050565b6020815260006111646020830184611f7e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121ac576121ac612272565b500190565b6000826121c0576121c0612288565b500490565b6000828210156121d7576121d7612272565b500390565b60005b838110156121f75781810151838201526020016121df565b83811115610d655750506000910152565b600181811c9082168061221c57607f821691505b6020821081141561223d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561225757612257612272565b5060010190565b60008261226d5761226d612288565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f3b57600080fd5b6001600160e01b031981168114610f3b57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212206c470c8f94cb9225ddb31895f79734c159e2c1c240d28c2e86282f73bd9923b964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66514e706f413146734a5a47515745736f4c785463616138573473795a38367963464670313937416b4869592f00000000000000000000
-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _initBaseURI (string): ipfs://QmfQNpoA1FsJZGQWEsoLxTcaa8W4syZ86ycFFp197AkHiY/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d66514e706f413146734a5a47515745736f4c7854636161
Arg [4] : 38573473795a38367963464670313937416b4869592f00000000000000000000
Deployed Bytecode Sourcemap
60672:691:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51767:224;;;;;;;;;;-1:-1:-1;51767:224:0;;;;;:::i;:::-;;:::i;:::-;;;8886:14:1;;8879:22;8861:41;;8849:2;8834:18;51767:224:0;;;;;;;;39253:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40812:221::-;;;;;;;;;;-1:-1:-1;40812:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7748:32:1;;;7730:51;;7718:2;7703:18;40812:221:0;7584:203:1;40335:411:0;;;;;;;;;;-1:-1:-1;40335:411:0;;;;;:::i;:::-;;:::i;:::-;;11220:1151;;;;;;:::i;:::-;;:::i;554:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;554:43:0;;;;;52407:113;;;;;;;;;;-1:-1:-1;52495:10:0;:17;52407:113;;;9059:25:1;;;9047:2;9032:18;52407:113:0;8913:177:1;1563:101:0;;;;;;;;;;-1:-1:-1;1641:15:0;;1563:101;;41562:339;;;;;;;;;;-1:-1:-1;41562:339:0;;;;;:::i;:::-;;:::i;12797:107::-;;;;;;;;;;-1:-1:-1;12797:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;12884:12:0;12850:13;12884:12;;;:6;:12;;;;;;;12797:107;52075:256;;;;;;;;;;-1:-1:-1;52075:256:0;;;;;:::i;:::-;;:::i;1672:161::-;;;;;;;;;;-1:-1:-1;1786:9:0;1672:161;;41972:185;;;;;;;;;;-1:-1:-1;41972:185:0;;;;;:::i;:::-;;:::i;52597:233::-;;;;;;;;;;-1:-1:-1;52597:233:0;;;;;:::i;:::-;;:::i;60946:104::-;;;;;;;;;;-1:-1:-1;60946:104:0;;;;;:::i;:::-;;:::i;38947:239::-;;;;;;;;;;-1:-1:-1;38947:239:0;;;;;:::i;:::-;;:::i;38677:208::-;;;;;;;;;;-1:-1:-1;38677:208:0;;;;;:::i;:::-;;:::i;18159:103::-;;;;;;;;;;;;;:::i;58875:166::-;;;;;;;;;;-1:-1:-1;58875:166:0;;;;;:::i;:::-;;:::i;17508:87::-;;;;;;;;;;-1:-1:-1;17581:6:0;;-1:-1:-1;;;;;17581:6:0;17508:87;;39422:104;;;;;;;;;;;;;:::i;41105:155::-;;;;;;;;;;-1:-1:-1;41105:155:0;;;;;:::i;:::-;;:::i;42228:328::-;;;;;;;;;;-1:-1:-1;42228:328:0;;;;;:::i;:::-;;:::i;61168:192::-;;;;;;;;;;-1:-1:-1;61168:192:0;;;;;:::i;:::-;;:::i;61058:102::-;;;;;;;;;;;;;:::i;59846:445::-;;;;;;;;;;-1:-1:-1;59846:445:0;;;;;:::i;:::-;;:::i;18417:201::-;;;;;;;;;;-1:-1:-1;18417:201:0;;;;;:::i;:::-;;:::i;51767:224::-;51869:4;-1:-1:-1;;;;;;51893:50:0;;-1:-1:-1;;;51893:50:0;;:90;;;51947:36;51971:11;51947:23;:36::i;:::-;51886:97;51767:224;-1:-1:-1;;51767:224:0:o;39253:100::-;39307:13;39340:5;39333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39253:100;:::o;40812:221::-;40888:7;44155:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44155:16:0;40908:73;;;;-1:-1:-1;;;40908:73:0;;15705:2:1;40908:73:0;;;15687:21:1;15744:2;15724:18;;;15717:30;15783:34;15763:18;;;15756:62;-1:-1:-1;;;15834:18:1;;;15827:42;15886:19;;40908:73:0;;;;;;;;;-1:-1:-1;41001:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41001:24:0;;40812:221::o;40335:411::-;40416:13;40432:23;40447:7;40432:14;:23::i;:::-;40416:39;;40480:5;-1:-1:-1;;;;;40474:11:0;:2;-1:-1:-1;;;;;40474:11:0;;;40466:57;;;;-1:-1:-1;;;40466:57:0;;17291:2:1;40466:57:0;;;17273:21:1;17330:2;17310:18;;;17303:30;17369:34;17349:18;;;17342:62;-1:-1:-1;;;17420:18:1;;;17413:31;17461:19;;40466:57:0;17089:397:1;40466:57:0;40574:5;-1:-1:-1;;;;;40558:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;40558:21:0;;:62;;;;40583:37;40600:5;40607:12;:10;:12::i;40583:37::-;40536:168;;;;-1:-1:-1;;;40536:168:0;;14098:2:1;40536:168:0;;;14080:21:1;14137:2;14117:18;;;14110:30;14176:34;14156:18;;;14149:62;14247:26;14227:18;;;14220:54;14291:19;;40536:168:0;13896:420:1;40536:168:0;40717:21;40726:2;40730:7;40717:8;:21::i;:::-;40405:341;40335:411;;:::o;11220:1151::-;11478:152;;;11421:12;11478:152;;;;;-1:-1:-1;;;;;11516:19:0;;11446:29;11516:19;;;:6;:19;;;;;;;;;11478:152;;;;;;;;;;;11665:45;11523:11;11478:152;11693:4;11699;11705;11665:6;:45::i;:::-;11643:128;;;;-1:-1:-1;;;11643:128:0;;16889:2:1;11643:128:0;;;16871:21:1;16928:2;16908:18;;;16901:30;16967:34;16947:18;;;16940:62;-1:-1:-1;;;17018:18:1;;;17011:31;17059:19;;11643:128:0;16687:397:1;11643:128:0;-1:-1:-1;;;;;11860:19:0;;;;;;:6;:19;;;;;;:26;;11884:1;11860:23;:26::i;:::-;-1:-1:-1;;;;;11838:19:0;;;;;;:6;:19;;;;;;;:48;;;;11904:126;;;;;11845:11;;11976:10;;12002:17;;11904:126;:::i;:::-;;;;;;;;12141:12;12155:23;12190:4;-1:-1:-1;;;;;12182:18:0;12232:17;12251:11;12215:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12215:48:0;;;;;;;;;;12182:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12140:134;;;;12293:7;12285:48;;;;-1:-1:-1;;;12285:48:0;;11806:2:1;12285:48:0;;;11788:21:1;11845:2;11825:18;;;11818:30;11884;11864:18;;;11857:58;11932:18;;12285:48:0;11604:352:1;12285:48:0;12353:10;11220:1151;-1:-1:-1;;;;;;;;11220:1151:0:o;41562:339::-;41757:41;41776:12;:10;:12::i;:::-;41790:7;41757:18;:41::i;:::-;41749:103;;;;-1:-1:-1;;;41749:103:0;;;;;;;:::i;:::-;41865:28;41875:4;41881:2;41885:7;41865:9;:28::i;52075:256::-;52172:7;52208:23;52225:5;52208:16;:23::i;:::-;52200:5;:31;52192:87;;;;-1:-1:-1;;;52192:87:0;;10568:2:1;52192:87:0;;;10550:21:1;10607:2;10587:18;;;10580:30;10646:34;10626:18;;;10619:62;-1:-1:-1;;;10697:18:1;;;10690:41;10748:19;;52192:87:0;10366:407:1;52192:87:0;-1:-1:-1;;;;;;52297:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;52075:256::o;41972:185::-;42110:39;42127:4;42133:2;42137:7;42110:39;;;;;;;;;;;;:16;:39::i;52597:233::-;52672:7;52708:30;52495:10;:17;;52407:113;52708:30;52700:5;:38;52692:95;;;;-1:-1:-1;;;52692:95:0;;18111:2:1;52692:95:0;;;18093:21:1;18150:2;18130:18;;;18123:30;18189:34;18169:18;;;18162:62;-1:-1:-1;;;18240:18:1;;;18233:42;18292:19;;52692:95:0;17909:408:1;52692:95:0;52805:10;52816:5;52805:17;;;;;;;;:::i;:::-;;;;;;;;;52798:24;;52597:233;;;:::o;60946:104::-;17739:12;:10;:12::i;:::-;-1:-1:-1;;;;;17728:23:0;:7;17581:6;;-1:-1:-1;;;;;17581:6:0;;17508:87;17728:7;-1:-1:-1;;;;;17728:23:0;;17720:68;;;;-1:-1:-1;;;17720:68:0;;;;;;;:::i;:::-;61021:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60946:104:::0;:::o;38947:239::-;39019:7;39055:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39055:16:0;39090:19;39082:73;;;;-1:-1:-1;;;39082:73:0;;14934:2:1;39082:73:0;;;14916:21:1;14973:2;14953:18;;;14946:30;15012:34;14992:18;;;14985:62;-1:-1:-1;;;15063:18:1;;;15056:39;15112:19;;39082:73:0;14732:405:1;38677:208:0;38749:7;-1:-1:-1;;;;;38777:19:0;;38769:74;;;;-1:-1:-1;;;38769:74:0;;14523:2:1;38769:74:0;;;14505:21:1;14562:2;14542:18;;;14535:30;14601:34;14581:18;;;14574:62;-1:-1:-1;;;14652:18:1;;;14645:40;14702:19;;38769:74:0;14321:406:1;38769:74:0;-1:-1:-1;;;;;;38861:16:0;;;;;:9;:16;;;;;;;38677:208::o;18159:103::-;17739:12;:10;:12::i;:::-;-1:-1:-1;;;;;17728:23:0;:7;17581:6;;-1:-1:-1;;;;;17581:6:0;;17508:87;17728:7;-1:-1:-1;;;;;17728:23:0;;17720:68;;;;-1:-1:-1;;;17720:68:0;;;;;;;:::i;:::-;18224:30:::1;18251:1;18224:18;:30::i;:::-;18159:103::o:0;58875:166::-;17739:12;:10;:12::i;:::-;-1:-1:-1;;;;;17728:23:0;:7;17581:6;;-1:-1:-1;;;;;17581:6:0;;17508:87;17728:7;-1:-1:-1;;;;;17728:23:0;;17720:68;;;;-1:-1:-1;;;17720:68:0;;;;;;;:::i;:::-;58932:18:::1;58953:17;:15;:17::i;:::-;58932:38;;58981:22;58987:3;58992:10;58981:5;:22::i;:::-;59014:19;:17;:19::i;39422:104::-:0;39478:13;39511:7;39504:14;;;;;:::i;41105:155::-;41200:52;41219:12;:10;:12::i;:::-;41233:8;41243;41200:18;:52::i;42228:328::-;42403:41;42422:12;:10;:12::i;:::-;42436:7;42403:18;:41::i;:::-;42395:103;;;;-1:-1:-1;;;42395:103:0;;;;;;;:::i;:::-;42509:39;42523:4;42529:2;42533:7;42542:5;42509:13;:39::i;:::-;42228:328;;;;:::o;61168:192::-;61242:13;61299:14;:12;:14::i;:::-;61315:26;61332:8;61315:16;:26::i;:::-;61282:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61268:84;;61168:192;;;:::o;61058:102::-;61112:13;61145:7;61138:14;;;;;:::i;59846:445::-;60100:20;;60144:28;;-1:-1:-1;;;60144:28:0;;-1:-1:-1;;;;;7748:32:1;;;60144:28:0;;;7730:51:1;59971:4:0;;60100:20;;;60136:49;;;;60100:20;;60144:21;;7703:18:1;;60144:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;60136:49:0;;60132:93;;;60209:4;60202:11;;;;;60132:93;-1:-1:-1;;;;;41452:25:0;;;41428:4;41452:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;60244:39;60237:46;59846:445;-1:-1:-1;;;;59846:445:0:o;18417:201::-;17739:12;:10;:12::i;:::-;-1:-1:-1;;;;;17728:23:0;:7;17581:6;;-1:-1:-1;;;;;17581:6:0;;17508:87;17728:7;-1:-1:-1;;;;;17728:23:0;;17720:68;;;;-1:-1:-1;;;17720:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18506:22:0;::::1;18498:73;;;::::0;-1:-1:-1;;;18498:73:0;;11399:2:1;18498:73:0::1;::::0;::::1;11381:21:1::0;11438:2;11418:18;;;11411:30;11477:34;11457:18;;;11450:62;-1:-1:-1;;;11528:18:1;;;11521:36;11574:19;;18498:73:0::1;11197:402:1::0;18498:73:0::1;18582:28;18601:8;18582:18;:28::i;:::-;18417:201:::0;:::o;2598:650::-;2669:22;2713:10;2735:4;2713:27;2709:508;;;2757:18;2778:8;;2757:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;2817:8:0;3028:17;3022:24;-1:-1:-1;;;;;2996:134:0;;-1:-1:-1;2709:508:0;;-1:-1:-1;2709:508:0;;-1:-1:-1;3194:10:0;2709:508;2598:650;:::o;38308:305::-;38410:4;-1:-1:-1;;;;;;38447:40:0;;-1:-1:-1;;;38447:40:0;;:105;;-1:-1:-1;;;;;;;38504:48:0;;-1:-1:-1;;;38504:48:0;38447:105;:158;;;-1:-1:-1;;;;;;;;;;30081:40:0;;;38569:36;29972:157;60435:161;60525:14;60564:24;:22;:24::i;:::-;60557:31;;60435:161;:::o;48048:174::-;48123:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;48123:29:0;-1:-1:-1;;;;;48123:29:0;;;;;;;;:24;;48177:23;48123:24;48177:14;:23::i;:::-;-1:-1:-1;;;;;48168:46:0;;;;;;;;;;;48048:174;;:::o;12912:486::-;13090:4;-1:-1:-1;;;;;13115:20:0;;13107:70;;;;-1:-1:-1;;;13107:70:0;;13692:2:1;13107:70:0;;;13674:21:1;13731:2;13711:18;;;13704:30;13770:34;13750:18;;;13743:62;-1:-1:-1;;;13821:18:1;;;13814:35;13866:19;;13107:70:0;13490:401:1;13107:70:0;13231:159;13259:47;13278:27;13298:6;13278:19;:27::i;:::-;13259:18;:47::i;:::-;13231:159;;;;;;;;;;;;9744:25:1;;;;9817:4;9805:17;;9785:18;;;9778:45;9839:18;;;9832:34;;;9882:18;;;9875:34;;;9716:19;;13231:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13208:182:0;:6;-1:-1:-1;;;;;13208:182:0;;13188:202;;12912:486;;;;;;;:::o;6125:98::-;6183:7;6210:5;6214:1;6210;:5;:::i;:::-;6203:12;6125:98;-1:-1:-1;;;6125:98:0:o;44360:348::-;44453:4;44155:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44155:16:0;44470:73;;;;-1:-1:-1;;;44470:73:0;;13279:2:1;44470:73:0;;;13261:21:1;13318:2;13298:18;;;13291:30;13357:34;13337:18;;;13330:62;-1:-1:-1;;;13408:18:1;;;13401:42;13460:19;;44470:73:0;13077:408:1;44470:73:0;44554:13;44570:23;44585:7;44570:14;:23::i;:::-;44554:39;;44623:5;-1:-1:-1;;;;;44612:16:0;:7;-1:-1:-1;;;;;44612:16:0;;:51;;;;44656:7;-1:-1:-1;;;;;44632:31:0;:20;44644:7;44632:11;:20::i;:::-;-1:-1:-1;;;;;44632:31:0;;44612:51;:87;;;;44667:32;44684:5;44691:7;44667:16;:32::i;47352:578::-;47511:4;-1:-1:-1;;;;;47484:31:0;:23;47499:7;47484:14;:23::i;:::-;-1:-1:-1;;;;;47484:31:0;;47476:85;;;;-1:-1:-1;;;47476:85:0;;16479:2:1;47476:85:0;;;16461:21:1;16518:2;16498:18;;;16491:30;16557:34;16537:18;;;16530:62;-1:-1:-1;;;16608:18:1;;;16601:39;16657:19;;47476:85:0;16277:405:1;47476:85:0;-1:-1:-1;;;;;47580:16:0;;47572:65;;;;-1:-1:-1;;;47572:65:0;;12520:2:1;47572:65:0;;;12502:21:1;12559:2;12539:18;;;12532:30;12598:34;12578:18;;;12571:62;-1:-1:-1;;;12649:18:1;;;12642:34;12693:19;;47572:65:0;12318:400:1;47572:65:0;47650:39;47671:4;47677:2;47681:7;47650:20;:39::i;:::-;47754:29;47771:1;47775:7;47754:8;:29::i;:::-;-1:-1:-1;;;;;47796:15:0;;;;;;:9;:15;;;;;:20;;47815:1;;47796:15;:20;;47815:1;;47796:20;:::i;:::-;;;;-1:-1:-1;;;;;;;47827:13:0;;;;;;:9;:13;;;;;:18;;47844:1;;47827:13;:18;;47844:1;;47827:18;:::i;:::-;;;;-1:-1:-1;;47856:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47856:21:0;-1:-1:-1;;;;;47856:21:0;;;;;;;;;47895:27;;47856:16;;47895:27;;;;;;;47352:578;;;:::o;18778:191::-;18871:6;;;-1:-1:-1;;;;;18888:17:0;;;-1:-1:-1;;;;;;18888:17:0;;;;;;;18921:40;;18871:6;;;18888:17;18871:6;;18921:40;;18852:16;;18921:40;18841:128;18778:191;:::o;59189:106::-;59265:15;;59238:7;;59265:22;;59285:1;59265:19;:22::i;46044:382::-;-1:-1:-1;;;;;46124:16:0;;46116:61;;;;-1:-1:-1;;;46116:61:0;;15344:2:1;46116:61:0;;;15326:21:1;;;15363:18;;;15356:30;15422:34;15402:18;;;15395:62;15474:18;;46116:61:0;15142:356:1;46116:61:0;44131:4;44155:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44155:16:0;:30;46188:58;;;;-1:-1:-1;;;46188:58:0;;12163:2:1;46188:58:0;;;12145:21:1;12202:2;12182:18;;;12175:30;12241;12221:18;;;12214:58;12289:18;;46188:58:0;11961:352:1;46188:58:0;46259:45;46288:1;46292:2;46296:7;46259:20;:45::i;:::-;-1:-1:-1;;;;;46317:13:0;;;;;;:9;:13;;;;;:18;;46334:1;;46317:13;:18;;46334:1;;46317:18;:::i;:::-;;;;-1:-1:-1;;46346:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;46346:21:0;-1:-1:-1;;;;;46346:21:0;;;;;;;;46385:33;;46346:16;;;46385:33;;46346:16;;46385:33;46044:382;;:::o;59374:73::-;59422:15;:17;;;:15;:17;;;:::i;:::-;;;;;;59374:73::o;48364:315::-;48519:8;-1:-1:-1;;;;;48510:17:0;:5;-1:-1:-1;;;;;48510:17:0;;;48502:55;;;;-1:-1:-1;;;48502:55:0;;12925:2:1;48502:55:0;;;12907:21:1;12964:2;12944:18;;;12937:30;13003:27;12983:18;;;12976:55;13048:18;;48502:55:0;12723:349:1;48502:55:0;-1:-1:-1;;;;;48568:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;48568:46:0;;;;;;;;;;48630:41;;8861::1;;;48630::0;;8834:18:1;48630:41:0;;;;;;;48364:315;;;:::o;43438:::-;43595:28;43605:4;43611:2;43615:7;43595:9;:28::i;:::-;43642:48;43665:4;43671:2;43675:7;43684:5;43642:22;:48::i;:::-;43634:111;;;;-1:-1:-1;;;43634:111:0;;;;;;;:::i;13778:723::-;13834:13;14055:10;14051:53;;-1:-1:-1;;14082:10:0;;;;;;;;;;;;-1:-1:-1;;;14082:10:0;;;;;13778:723::o;14051:53::-;14129:5;14114:12;14170:78;14177:9;;14170:78;;14203:8;;;;:::i;:::-;;-1:-1:-1;14226:10:0;;-1:-1:-1;14234:2:0;14226:10;;:::i;:::-;;;14170:78;;;14258:19;14290:6;14280:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14280:17:0;;14258:39;;14308:154;14315:10;;14308:154;;14342:11;14352:1;14342:11;;:::i;:::-;;-1:-1:-1;14411:10:0;14419:2;14411:5;:10;:::i;:::-;14398:24;;:2;:24;:::i;:::-;14385:39;;14368:6;14375;14368:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14368:56:0;;;;;;;;-1:-1:-1;14439:11:0;14448:2;14439:11;;:::i;:::-;;;14308:154;;12379:410;12489:7;10556:100;;;;;;;;;;;;;;;;;10536:127;;;;;;;12643:12;;12678:11;;;;12722:24;;;;;12712:35;;;;;;12562:204;;;;;9326:25:1;;;9382:2;9367:18;;9360:34;;;;-1:-1:-1;;;;;9430:32:1;9425:2;9410:18;;9403:60;9494:2;9479:18;;9472:34;9313:3;9298:19;;9095:417;12562:204:0;;;;;;;;;;;;;12534:247;;;;;;12514:267;;12379:410;;;:::o;2202:258::-;2301:7;2403:20;1641:15;;;1563:101;2403:20;2374:63;;-1:-1:-1;;;2374:63:0;;;7445:27:1;7488:11;;;7481:27;;;;7524:12;;;7517:28;;;7561:12;;2374:63:0;7187:392:1;53443:589:0;-1:-1:-1;;;;;53649:18:0;;53645:187;;53684:40;53716:7;54859:10;:17;;54832:24;;;;:15;:24;;;;;:44;;;54887:24;;;;;;;;;;;;54755:164;53684:40;53645:187;;;53754:2;-1:-1:-1;;;;;53746:10:0;:4;-1:-1:-1;;;;;53746:10:0;;53742:90;;53773:47;53806:4;53812:7;53773:32;:47::i;:::-;-1:-1:-1;;;;;53846:16:0;;53842:183;;53879:45;53916:7;53879:36;:45::i;53842:183::-;53952:4;-1:-1:-1;;;;;53946:10:0;:2;-1:-1:-1;;;;;53946:10:0;;53942:83;;53973:40;54001:2;54005:7;53973:27;:40::i;49244:799::-;49399:4;-1:-1:-1;;;;;49420:13:0;;20127:20;20175:8;49416:620;;49472:2;-1:-1:-1;;;;;49456:36:0;;49493:12;:10;:12::i;:::-;49507:4;49513:7;49522:5;49456:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49456:72:0;;;;;;;;-1:-1:-1;;49456:72:0;;;;;;;;;;;;:::i;:::-;;;49452:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49698:13:0;;49694:272;;49741:60;;-1:-1:-1;;;49741:60:0;;;;;;;:::i;49694:272::-;49916:6;49910:13;49901:6;49897:2;49893:15;49886:38;49452:529;-1:-1:-1;;;;;;49579:51:0;-1:-1:-1;;;49579:51:0;;-1:-1:-1;49572:58:0;;49416:620;-1:-1:-1;50020:4:0;49244:799;;;;;;:::o;55546:988::-;55812:22;55862:1;55837:22;55854:4;55837:16;:22::i;:::-;:26;;;;:::i;:::-;55874:18;55895:26;;;:17;:26;;;;;;55812:51;;-1:-1:-1;56028:28:0;;;56024:328;;-1:-1:-1;;;;;56095:18:0;;56073:19;56095:18;;;:12;:18;;;;;;;;:34;;;;;;;;;56146:30;;;;;;:44;;;56263:30;;:17;:30;;;;;:43;;;56024:328;-1:-1:-1;56448:26:0;;;;:17;:26;;;;;;;;56441:33;;;-1:-1:-1;;;;;56492:18:0;;;;;:12;:18;;;;;:34;;;;;;;56485:41;55546:988::o;56829:1079::-;57107:10;:17;57082:22;;57107:21;;57127:1;;57107:21;:::i;:::-;57139:18;57160:24;;;:15;:24;;;;;;57533:10;:26;;57082:46;;-1:-1:-1;57160:24:0;;57082:46;;57533:26;;;;;;:::i;:::-;;;;;;;;;57511:48;;57597:11;57572:10;57583;57572:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;57677:28;;;:15;:28;;;;;;;:41;;;57849:24;;;;;57842:31;57884:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;56900:1008;;;56829:1079;:::o;54333:221::-;54418:14;54435:20;54452:2;54435:16;:20::i;:::-;-1:-1:-1;;;;;54466:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;54511:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;54333:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:220::-;692:5;745:3;738:4;730:6;726:17;722:27;712:55;;763:1;760;753:12;712:55;785:79;860:3;851:6;838:20;831:4;823:6;819:17;785:79;:::i;875:247::-;934:6;987:2;975:9;966:7;962:23;958:32;955:52;;;1003:1;1000;993:12;955:52;1042:9;1029:23;1061:31;1086:5;1061:31;:::i;1127:388::-;1195:6;1203;1256:2;1244:9;1235:7;1231:23;1227:32;1224:52;;;1272:1;1269;1262:12;1224:52;1311:9;1298:23;1330:31;1355:5;1330:31;:::i;:::-;1380:5;-1:-1:-1;1437:2:1;1422:18;;1409:32;1450:33;1409:32;1450:33;:::i;:::-;1502:7;1492:17;;;1127:388;;;;;:::o;1520:456::-;1597:6;1605;1613;1666:2;1654:9;1645:7;1641:23;1637:32;1634:52;;;1682:1;1679;1672:12;1634:52;1721:9;1708:23;1740:31;1765:5;1740:31;:::i;:::-;1790:5;-1:-1:-1;1847:2:1;1832:18;;1819:32;1860:33;1819:32;1860:33;:::i;:::-;1520:456;;1912:7;;-1:-1:-1;;;1966:2:1;1951:18;;;;1938:32;;1520:456::o;1981:665::-;2076:6;2084;2092;2100;2153:3;2141:9;2132:7;2128:23;2124:33;2121:53;;;2170:1;2167;2160:12;2121:53;2209:9;2196:23;2228:31;2253:5;2228:31;:::i;:::-;2278:5;-1:-1:-1;2335:2:1;2320:18;;2307:32;2348:33;2307:32;2348:33;:::i;:::-;2400:7;-1:-1:-1;2454:2:1;2439:18;;2426:32;;-1:-1:-1;2509:2:1;2494:18;;2481:32;2536:18;2525:30;;2522:50;;;2568:1;2565;2558:12;2522:50;2591:49;2632:7;2623:6;2612:9;2608:22;2591:49;:::i;:::-;2581:59;;;1981:665;;;;;;;:::o;2651:416::-;2716:6;2724;2777:2;2765:9;2756:7;2752:23;2748:32;2745:52;;;2793:1;2790;2783:12;2745:52;2832:9;2819:23;2851:31;2876:5;2851:31;:::i;:::-;2901:5;-1:-1:-1;2958:2:1;2943:18;;2930:32;3000:15;;2993:23;2981:36;;2971:64;;3031:1;3028;3021:12;3072:758;3174:6;3182;3190;3198;3206;3259:3;3247:9;3238:7;3234:23;3230:33;3227:53;;;3276:1;3273;3266:12;3227:53;3315:9;3302:23;3334:31;3359:5;3334:31;:::i;:::-;3384:5;-1:-1:-1;3440:2:1;3425:18;;3412:32;3467:18;3456:30;;3453:50;;;3499:1;3496;3489:12;3453:50;3522:49;3563:7;3554:6;3543:9;3539:22;3522:49;:::i;:::-;3512:59;;;3618:2;3607:9;3603:18;3590:32;3580:42;;3669:2;3658:9;3654:18;3641:32;3631:42;;3725:3;3714:9;3710:19;3697:33;3774:4;3765:7;3761:18;3752:7;3749:31;3739:59;;3794:1;3791;3784:12;3739:59;3817:7;3807:17;;;3072:758;;;;;;;;:::o;3835:315::-;3903:6;3911;3964:2;3952:9;3943:7;3939:23;3935:32;3932:52;;;3980:1;3977;3970:12;3932:52;4019:9;4006:23;4038:31;4063:5;4038:31;:::i;:::-;4088:5;4140:2;4125:18;;;;4112:32;;-1:-1:-1;;;3835:315:1:o;4155:245::-;4213:6;4266:2;4254:9;4245:7;4241:23;4237:32;4234:52;;;4282:1;4279;4272:12;4234:52;4321:9;4308:23;4340:30;4364:5;4340:30;:::i;4405:249::-;4474:6;4527:2;4515:9;4506:7;4502:23;4498:32;4495:52;;;4543:1;4540;4533:12;4495:52;4575:9;4569:16;4594:30;4618:5;4594:30;:::i;4659:280::-;4758:6;4811:2;4799:9;4790:7;4786:23;4782:32;4779:52;;;4827:1;4824;4817:12;4779:52;4859:9;4853:16;4878:31;4903:5;4878:31;:::i;4944:450::-;5013:6;5066:2;5054:9;5045:7;5041:23;5037:32;5034:52;;;5082:1;5079;5072:12;5034:52;5122:9;5109:23;5155:18;5147:6;5144:30;5141:50;;;5187:1;5184;5177:12;5141:50;5210:22;;5263:4;5255:13;;5251:27;-1:-1:-1;5241:55:1;;5292:1;5289;5282:12;5241:55;5315:73;5380:7;5375:2;5362:16;5357:2;5353;5349:11;5315:73;:::i;5399:180::-;5458:6;5511:2;5499:9;5490:7;5486:23;5482:32;5479:52;;;5527:1;5524;5517:12;5479:52;-1:-1:-1;5550:23:1;;5399:180;-1:-1:-1;5399:180:1:o;5584:257::-;5625:3;5663:5;5657:12;5690:6;5685:3;5678:19;5706:63;5762:6;5755:4;5750:3;5746:14;5739:4;5732:5;5728:16;5706:63;:::i;:::-;5823:2;5802:15;-1:-1:-1;;5798:29:1;5789:39;;;;5830:4;5785:50;;5584:257;-1:-1:-1;;5584:257:1:o;5846:274::-;5975:3;6013:6;6007:13;6029:53;6075:6;6070:3;6063:4;6055:6;6051:17;6029:53;:::i;:::-;6098:16;;;;;5846:274;-1:-1:-1;;5846:274:1:o;6125:415::-;6282:3;6320:6;6314:13;6336:53;6382:6;6377:3;6370:4;6362:6;6358:17;6336:53;:::i;:::-;6458:2;6454:15;;;;-1:-1:-1;;6450:53:1;6411:16;;;;6436:68;;;6531:2;6520:14;;6125:415;-1:-1:-1;;6125:415:1:o;6545:637::-;6825:3;6863:6;6857:13;6879:53;6925:6;6920:3;6913:4;6905:6;6901:17;6879:53;:::i;:::-;6995:13;;6954:16;;;;7017:57;6995:13;6954:16;7051:4;7039:17;;7017:57;:::i;:::-;-1:-1:-1;;;7096:20:1;;7125:22;;;7174:1;7163:13;;6545:637;-1:-1:-1;;;;6545:637:1:o;7792:431::-;-1:-1:-1;;;;;8049:15:1;;;8031:34;;8101:15;;8096:2;8081:18;;8074:43;8153:2;8148;8133:18;;8126:30;;;7974:4;;8173:44;;8198:18;;8190:6;8173:44;:::i;:::-;8165:52;7792:431;-1:-1:-1;;;;;7792:431:1:o;8228:488::-;-1:-1:-1;;;;;8497:15:1;;;8479:34;;8549:15;;8544:2;8529:18;;8522:43;8596:2;8581:18;;8574:34;;;8644:3;8639:2;8624:18;;8617:31;;;8422:4;;8665:45;;8690:19;;8682:6;8665:45;:::i;:::-;8657:53;8228:488;-1:-1:-1;;;;;;8228:488:1:o;9920:217::-;10067:2;10056:9;10049:21;10030:4;10087:44;10127:2;10116:9;10112:18;10104:6;10087:44;:::i;10778:414::-;10980:2;10962:21;;;11019:2;10999:18;;;10992:30;11058:34;11053:2;11038:18;;11031:62;-1:-1:-1;;;11124:2:1;11109:18;;11102:48;11182:3;11167:19;;10778:414::o;15916:356::-;16118:2;16100:21;;;16137:18;;;16130:30;16196:34;16191:2;16176:18;;16169:62;16263:2;16248:18;;15916:356::o;17491:413::-;17693:2;17675:21;;;17732:2;17712:18;;;17705:30;17771:34;17766:2;17751:18;;17744:62;-1:-1:-1;;;17837:2:1;17822:18;;17815:47;17894:3;17879:19;;17491:413::o;18504:128::-;18544:3;18575:1;18571:6;18568:1;18565:13;18562:39;;;18581:18;;:::i;:::-;-1:-1:-1;18617:9:1;;18504:128::o;18637:120::-;18677:1;18703;18693:35;;18708:18;;:::i;:::-;-1:-1:-1;18742:9:1;;18637:120::o;18762:125::-;18802:4;18830:1;18827;18824:8;18821:34;;;18835:18;;:::i;:::-;-1:-1:-1;18872:9:1;;18762:125::o;18892:258::-;18964:1;18974:113;18988:6;18985:1;18982:13;18974:113;;;19064:11;;;19058:18;19045:11;;;19038:39;19010:2;19003:10;18974:113;;;19105:6;19102:1;19099:13;19096:48;;;-1:-1:-1;;19140:1:1;19122:16;;19115:27;18892:258::o;19155:380::-;19234:1;19230:12;;;;19277;;;19298:61;;19352:4;19344:6;19340:17;19330:27;;19298:61;19405:2;19397:6;19394:14;19374:18;19371:38;19368:161;;;19451:10;19446:3;19442:20;19439:1;19432:31;19486:4;19483:1;19476:15;19514:4;19511:1;19504:15;19368:161;;19155:380;;;:::o;19540:135::-;19579:3;-1:-1:-1;;19600:17:1;;19597:43;;;19620:18;;:::i;:::-;-1:-1:-1;19667:1:1;19656:13;;19540:135::o;19680:112::-;19712:1;19738;19728:35;;19743:18;;:::i;:::-;-1:-1:-1;19777:9:1;;19680:112::o;19797:127::-;19858:10;19853:3;19849:20;19846:1;19839:31;19889:4;19886:1;19879:15;19913:4;19910:1;19903:15;19929:127;19990:10;19985:3;19981:20;19978:1;19971:31;20021:4;20018:1;20011:15;20045:4;20042:1;20035:15;20061:127;20122:10;20117:3;20113:20;20110:1;20103:31;20153:4;20150:1;20143:15;20177:4;20174:1;20167:15;20193:127;20254:10;20249:3;20245:20;20242:1;20235:31;20285:4;20282:1;20275:15;20309:4;20306:1;20299:15;20325:127;20386:10;20381:3;20377:20;20374:1;20367:31;20417:4;20414:1;20407:15;20441:4;20438:1;20431:15;20457:131;-1:-1:-1;;;;;20532:31:1;;20522:42;;20512:70;;20578:1;20575;20568:12;20593:131;-1:-1:-1;;;;;;20667:32:1;;20657:43;;20647:71;;20714:1;20711;20704:12
Swarm Source
ipfs://6c470c8f94cb9225ddb31895f79734c159e2c1c240d28c2e86282f73bd9923b9
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.