ERC-721
Overview
Max Total Supply
0 LATENT
Holders
55
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 LATENTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Latent
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 1000 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "./libraries/Encode.sol"; import "./libraries/SSTORE2.sol"; import "./ERC721.sol"; /// @title Latent /// @author VisualizeValue contract Latent is ERC721 { string public constant name = "Latent"; string public constant symbol = "LATENT"; string public constant description = "80 surrealist works exploring the space between real and realized, " "premiering at Paris Photo 2024 on surrealism's centennial. " "Each token serves as an original digital negative, " "materializing as Silver Gelatin Prints " "via Paris's historic PICTO laboratory."; string public constant contentId = "QmNT8pBktjfhQvLK7YAGubFEBn1Z1DKDM5zGtyufuWiKwS"; // @dev Token names storage locations address private nameStorage; constructor (bytes memory encodedNames) { // Store the token names nameStorage = SSTORE2.write(encodedNames); // Mint the collection for (uint256 token = 1; token <= 80; token++) { _update(msg.sender, token, address(0)); } } /// @notice Collection meta data function contractURI() external pure returns (string memory) { bytes memory dataURI = abi.encodePacked('{' '"name": "', name, '",' '"description": "', description, '",' '"image": "ipfs://', contentId, '/positive/1.jpg"' '}'); return string( abi.encodePacked( "data:application/json;base64,", Base64.encode(dataURI) ) ); } /// @notice Token URI information getter /// @param tokenId The token ID get the uri for function tokenURI(uint256 tokenId) external view override returns (string memory) { _requireOwned(tokenId); string memory id = Strings.toString(tokenId); return Encode.json(abi.encodePacked( '{' '"id": ', id, ',' '"name": "', tokenName(tokenId), '",' '"description": "Digital Negative, Latent (', id, ' of 80)",' '"image": "ipfs://', contentId, '/negative/', id, '.jpg",' '"animation_url": "', Encode.svg(bytes(tokenAnimation(tokenId, 'https://ipfs.vv.xyz/ipfs'))), '",' '"attributes": [' '{' '"trait_type": "Artist",' '"value": "Jack Butcher"' '}' ']' '}' )); } /// @notice Get the name for a given token /// @param tokenId The token ID get the uri for function tokenName(uint256 tokenId) public view returns (string memory) { _requireOwned(tokenId); string[] memory names = abi.decode(SSTORE2.read(nameStorage), (string[])); return names[tokenId - 1]; } /// @notice Get the animation SVG for a given token /// @param tokenId The token ID get the uri for function tokenAnimation(uint256 tokenId) public view returns (string memory) { return tokenAnimation(tokenId, "https://ipfs.vv.xyz/ipfs"); } /// @notice Get the animation SVG for a given token, resolving them via a custom IPFS gateway /// @param tokenId The token ID get the uri for /// @param gateway The IPFS gateway to use to resolve the images function tokenAnimation(uint256 tokenId, string memory gateway) public view returns (string memory) { _requireOwned(tokenId); return string(abi.encodePacked( '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2160 2160">' '<!-- IMAGES -->' '<image href="', gateway, '/', contentId, '/positive/', Strings.toString(tokenId), '.jpg" height="2160" width="2160" opacity="0">' '<animate attributeName="opacity" from="0" to="1" dur="0.4s" begin="positive.begin" fill="freeze"/>' '</image>' '<image href="', gateway, '/', contentId, '/negative/', Strings.toString(tokenId), '.jpg" height="2160" width="2160">' '<animate attributeName="opacity" from="1" to="0" dur="0.4s" begin="positive.begin" fill="freeze"/>' '<animate attributeName="opacity" from="0" to="1" dur="0.4s" begin="negative.begin" fill="freeze"/>' '</image>' '<!-- CONTROLS -->' '<rect width="0" height="2160" fill="transparent">' '<animate attributeName="width" from="2160" to="0" dur="0.4s" begin="click" fill="freeze" id="negative" />' '<animate attributeName="width" from="0" to="2160" dur="0.4s" begin="positive.begin" fill="freeze" />' '</rect>' '<rect width="2160" height="2160" fill="transparent">' '<animate attributeName="width" from="0" to="2160" dur="0.4s" begin="negative.begin" fill="freeze" />' '<animate attributeName="width" from="2160" to="0" dur="0.4s" begin="click" fill="freeze" id="positive" />' '</rect>' '</svg>' )); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.20; import {IERC721} from "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 address zero. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.2) (utils/Base64.sol) pragma solidity ^0.8.20; /** * @dev Provides a set of functions to operate with Base64 strings. */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 0x20) let dataPtr := data let endPtr := add(data, mload(data)) // In some cases, the last iteration will read bytes after the end of the data. We cache the value, and // set it to zero to make sure no dirty bytes are read in that section. let afterPtr := add(endPtr, 0x20) let afterCache := mload(afterPtr) mstore(afterPtr, 0x00) // Run over the input, 3 bytes at a time for { } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 byte (24 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F to bitmask the least significant 6 bits. // Use this as an index into the lookup table, mload an entire word // so the desired character is in the least significant byte, and // mstore8 this least significant byte into the result and continue. mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // Reset the value that was cached mstore(afterPtr, afterCache) // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ 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 subtraction of two unsigned integers, with an overflow flag. */ 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. */ 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. */ 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. */ 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 largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; 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_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // Based on OpenZeppelin Contracts (last updated v5.0.0) pragma solidity ^0.8.20; import { IERC721 } from "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import { IERC721Receiver } from "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import { IERC721Metadata } from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import { Context } from "@openzeppelin/contracts/utils/Context.sol"; import { Strings } from "@openzeppelin/contracts/utils/Strings.sol"; import { IERC165, ERC165 } from "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import { IERC721Errors } from "@openzeppelin/contracts/interfaces/draft-IERC6093.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors { using Strings for uint256; mapping(uint256 tokenId => address) private _owners; mapping(address owner => uint256) private _balances; mapping(uint256 tokenId => address) private _tokenApprovals; mapping(address owner => mapping(address operator => bool)) private _operatorApprovals; /** * @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) external view virtual returns (uint256) { if (owner == address(0)) { revert ERC721InvalidOwner(address(0)); } return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) external view virtual returns (address) { return _requireOwned(tokenId); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) external view virtual returns (string memory) { _requireOwned(tokenId); return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) external virtual { _approve(to, tokenId, _msgSender()); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) external view virtual returns (address) { _requireOwned(tokenId); return _getApproved(tokenId); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) external virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. address previousOwner = _update(to, tokenId, _msgSender()); if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) external { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual { transferFrom(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted. */ function _getApproved(uint256 tokenId) internal view virtual returns (address) { return _tokenApprovals[tokenId]; } /** * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in * particular (ignoring whether it is owned by `owner`). * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) { return spender != address(0) && (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender); } /** * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner. * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets * the `spender` for the specific `tokenId`. * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual { if (!_isAuthorized(owner, spender, tokenId)) { if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } else { revert ERC721InsufficientApproval(spender, tokenId); } } } /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that * a uint256 would ever overflow from increments when these increments are bounded to uint128 values. * * WARNING: Increasing an account's balance using this function tends to be paired with an override of the * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership * remain consistent with one another. */ function _increaseBalance(address account, uint128 value) internal virtual { unchecked { _balances[account] += value; } } /** * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update. * * The `auth` argument is optional. If the value passed is non 0, then this function will check that * `auth` is either the owner of the token, or approved to operate on the token (by the owner). * * Emits a {Transfer} event. * * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}. */ function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) { address from = _ownerOf(tokenId); // Perform (optional) operator check if (auth != address(0)) { _checkAuthorized(from, auth, tokenId); } // Execute the update if (from != address(0)) { // Clear approval. No need to re-authorize or emit the Approval event _approve(address(0), tokenId, address(0), false); unchecked { _balances[from] -= 1; } } if (to != address(0)) { unchecked { _balances[to] += 1; } } _owners[tokenId] = to; emit Transfer(from, to, tokenId); return from; } /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external virtual { // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. _update(address(0), tokenId, _msgSender()); } /** * @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 { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } else if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `tokenId` token must exist and be owned by `from`. * - `to` cannot be the zero address. * - `from` cannot be the zero address. * - 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) internal { _safeTransfer(from, to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Approve `to` to operate on `tokenId` * * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is * either the owner of the token, or approved to operate on all tokens held by this owner. * * Emits an {Approval} event. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address to, uint256 tokenId, address auth) internal { _approve(to, tokenId, auth, true); } /** * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not * emitted in the context of transfers. */ function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual { // Avoid reading the owner unless necessary if (emitEvent || auth != address(0)) { address owner = _requireOwned(tokenId); // We do not use _isAuthorized because single-token approvals should not be able to call approve if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) { revert ERC721InvalidApprover(auth); } if (emitEvent) { emit Approval(owner, to, tokenId); } } _tokenApprovals[tokenId] = to; } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Requirements: * - operator can't be the address zero. * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC721InvalidOperator(operator); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned). * Returns the owner. * * Overrides to ownership logic should be done to {_ownerOf}. */ function _requireOwned(uint256 tokenId) internal view returns (address) { address owner = _ownerOf(tokenId); if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } return owner; } /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the * recipient doesn't accept the token transfer. 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 */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private { if (to.code.length > 0) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { if (retval != IERC721Receiver.onERC721Received.selector) { revert ERC721InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { revert ERC721InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/utils/Base64.sol"; library Encode { function file (string memory fileType, bytes memory data) internal pure returns (string memory) { return string( abi.encodePacked( "data:", fileType, ";base64,", Base64.encode(data) ) ); } function json (bytes memory data) internal pure returns (string memory) { return file("application/json", data); } function svg (bytes memory data) internal pure returns (string memory) { return file("image/svg+xml", data); } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Read and write to persistent storage at a fraction of the cost. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SSTORE2.sol) /// @author Modified from 0xSequence (https://github.com/0xSequence/sstore2/blob/master/contracts/SSTORE2.sol) library SSTORE2 { uint256 internal constant DATA_OFFSET = 1; // We skip the first byte as it's a STOP opcode to ensure the contract can't be called. /*////////////////////////////////////////////////////////////// WRITE LOGIC //////////////////////////////////////////////////////////////*/ function write(bytes memory data) internal returns (address pointer) { // Prefix the bytecode with a STOP opcode to ensure it cannot be called. bytes memory runtimeCode = abi.encodePacked(hex"00", data); bytes memory creationCode = abi.encodePacked( //---------------------------------------------------------------------------------------------------------------// // Opcode | Opcode + Arguments | Description | Stack View // //---------------------------------------------------------------------------------------------------------------// // 0x60 | 0x600B | PUSH1 11 | codeOffset // // 0x59 | 0x59 | MSIZE | 0 codeOffset // // 0x81 | 0x81 | DUP2 | codeOffset 0 codeOffset // // 0x38 | 0x38 | CODESIZE | codeSize codeOffset 0 codeOffset // // 0x03 | 0x03 | SUB | (codeSize - codeOffset) 0 codeOffset // // 0x80 | 0x80 | DUP | (codeSize - codeOffset) (codeSize - codeOffset) 0 codeOffset // // 0x92 | 0x92 | SWAP3 | codeOffset (codeSize - codeOffset) 0 (codeSize - codeOffset) // // 0x59 | 0x59 | MSIZE | 0 codeOffset (codeSize - codeOffset) 0 (codeSize - codeOffset) // // 0x39 | 0x39 | CODECOPY | 0 (codeSize - codeOffset) // // 0xf3 | 0xf3 | RETURN | // //---------------------------------------------------------------------------------------------------------------// hex"60_0B_59_81_38_03_80_92_59_39_F3", // Returns all code in the contract except for the first 11 (0B in hex) bytes. runtimeCode // The bytecode we want the contract to have after deployment. Capped at 1 byte less than the code size limit. ); /// @solidity memory-safe-assembly assembly { // Deploy a new contract with the generated creation code. // We start 32 bytes into the code to avoid copying the byte length. pointer := create(0, add(creationCode, 32), mload(creationCode)) } require(pointer != address(0), "DEPLOYMENT_FAILED"); } /*////////////////////////////////////////////////////////////// READ LOGIC //////////////////////////////////////////////////////////////*/ function read(address pointer) internal view returns (bytes memory) { return readBytecode(pointer, DATA_OFFSET, pointer.code.length - DATA_OFFSET); } function read(address pointer, uint256 start) internal view returns (bytes memory) { start += DATA_OFFSET; return readBytecode(pointer, start, pointer.code.length - start); } function read( address pointer, uint256 start, uint256 end ) internal view returns (bytes memory) { start += DATA_OFFSET; end += DATA_OFFSET; require(pointer.code.length >= end, "OUT_OF_BOUNDS"); return readBytecode(pointer, start, end - start); } /*////////////////////////////////////////////////////////////// INTERNAL HELPER LOGIC //////////////////////////////////////////////////////////////*/ function readBytecode( address pointer, uint256 start, uint256 size ) private view returns (bytes memory data) { /// @solidity memory-safe-assembly assembly { // Get a pointer to some free memory. data := mload(0x40) // Update the free memory pointer to prevent overriding our data. // We use and(x, not(31)) as a cheaper equivalent to sub(x, mod(x, 32)). // Adding 31 to size and running the result through the logic above ensures // the memory pointer remains word-aligned, following the Solidity convention. mstore(0x40, add(data, and(add(add(size, 32), 31), not(31)))) // Store the size of the data in the first 32 byte chunk of free memory. mstore(data, size) // Copy the code into memory right after the 32 bytes we used to store the size. extcodecopy(pointer, add(data, 32), start, size) } } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "viaIR": false, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bytes","name":"encodedNames","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contentId","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"description","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenAnimation","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"gateway","type":"string"}],"name":"tokenAnimation","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200285b3803806200285b8339810160408190526200003491620004eb565b6200003f8162000097565b600480546001600160a01b0319166001600160a01b039290921691909117905560015b605081116200008f57620000793382600062000146565b50806200008681620005a3565b91505062000062565b505062000629565b60008082604051602001620000ad9190620005cb565b6040516020818303038152906040529050600081604051602001620000d39190620005f3565b60405160208183030381529060405290508051602082016000f092506001600160a01b0383166200013f5760405162461bcd60e51b81526020600482015260116024820152701111541313d65351539517d19052531151607a1b60448201526064015b60405180910390fd5b5050919050565b6000828152602081905260408120546001600160a01b039081169083161562000176576200017681848662000248565b6001600160a01b03811615620001b657620001956000858180620002b7565b6001600160a01b038116600090815260016020526040902080546000190190555b6001600160a01b03851615620001e9576001600160a01b0385166000908152600160208190526040909120805490910190555b60008481526020819052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b62000255838383620003e5565b620002b2576001600160a01b0383166200028657604051637e27328960e01b81526004810182905260240162000136565b60405163177e802f60e01b81526001600160a01b03831660048201526024810182905260440162000136565b505050565b8080620002cc57506001600160a01b03821615155b15620003b5576000620002df846200046e565b90506001600160a01b038316158015906200030c5750826001600160a01b0316816001600160a01b031614155b80156200033f57506001600160a01b0380821660009081526003602090815260408083209387168352929052205460ff16155b156200036a5760405163a9fbf51f60e01b81526001600160a01b038416600482015260240162000136565b8115620003b35783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260026020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03831615801590620004665750826001600160a01b0316846001600160a01b031614806200044157506001600160a01b0380851660009081526003602090815260408083209387168352929052205460ff165b806200046657506000828152600260205260409020546001600160a01b038481169116145b949350505050565b6000818152602081905260408120546001600160a01b031680620004a957604051637e27328960e01b81526004810184905260240162000136565b92915050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620004e2578181015183820152602001620004c8565b50506000910152565b600060208284031215620004fe57600080fd5b81516001600160401b03808211156200051657600080fd5b818401915084601f8301126200052b57600080fd5b815181811115620005405762000540620004af565b604051601f8201601f19908116603f011681019083821181831017156200056b576200056b620004af565b816040528281528760208487010111156200058557600080fd5b62000598836020830160208801620004c5565b979650505050505050565b600060018201620005c457634e487b7160e01b600052601160045260246000fd5b5060010190565b6000815260008251620005e6816001850160208701620004c5565b9190910160010192915050565b6a600b5981380380925939f360a81b815281516000906200061c81600b850160208701620004c5565b91909101600b0192915050565b61222280620006396000396000f3fe608060405234801561001057600080fd5b506004361061016c5760003560e01c80637284e416116100cd578063c87b56dd11610081578063e725f87711610066578063e725f87714610323578063e8a3d48514610336578063e985e9c51461033e57600080fd5b8063c87b56dd14610308578063d97aa9771461031b57600080fd5b8063a22cb465116100b2578063a22cb465146102cf578063b88d4fde146102e2578063c02137d1146102f557600080fd5b80637284e4161461028b57806395d89b411461029357600080fd5b806342842e0e116101245780636344f311116101095780636344f311146102445780636352211e1461025757806370a082311461026a57600080fd5b806342842e0e1461021e57806342966c681461023157600080fd5b8063081812fc11610155578063081812fc146101cb578063095ea7b3146101f657806323b872dd1461020b57600080fd5b806301ffc9a71461017157806306fdde0314610199575b600080fd5b61018461017f3660046111ca565b61037a565b60405190151581526020015b60405180910390f35b6101be6040518060400160405280600681526020016513185d195b9d60d21b81525081565b6040516101909190611237565b6101de6101d936600461124a565b610417565b6040516001600160a01b039091168152602001610190565b61020961020436600461127f565b610440565b005b6102096102193660046112a9565b61044f565b61020961022c3660046112a9565b6104f8565b61020961023f36600461124a565b610518565b6101be61025236600461124a565b610524565b6101de61026536600461124a565b610565565b61027d6102783660046112e5565b610570565b604051908152602001610190565b6101be6105d1565b6101be6040518060400160405280600681526020017f4c4154454e54000000000000000000000000000000000000000000000000000081525081565b6102096102dd366004611300565b6105ee565b6102096102f03660046113e9565b6105f9565b6101be610303366004611465565b610610565b6101be61031636600461124a565b61068e565b6101be610746565b6101be61033136600461124a565b610762565b6101be6107c7565b61018461034c3660046114c0565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806103dd57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061041157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60006104228261086e565b506000828152600260205260409020546001600160a01b0316610411565b61044b8282336108a7565b5050565b6001600160a01b03821661047e57604051633250574960e11b8152600060048201526024015b60405180910390fd5b600061048b8383336108b4565b9050836001600160a01b0316816001600160a01b0316146104f2576040517f64283d7b0000000000000000000000000000000000000000000000000000000081526001600160a01b0380861660048301526024820184905282166044820152606401610475565b50505050565b610513838383604051806020016040528060008152506105f9565b505050565b61044b600082336108b4565b6060610411826040518060400160405280601881526020017f68747470733a2f2f697066732e76762e78797a2f697066730000000000000000815250610610565b60006104118261086e565b60006001600160a01b0382166105b5576040517f89c62b6400000000000000000000000000000000000000000000000000000000815260006004820152602401610475565b506001600160a01b031660009081526001602052604090205490565b60405180610120016040528060fe81526020016120ef60fe913981565b61044b3383836109bd565b61060484848461044f565b6104f284848484610a75565b606061061b8361086e565b50816040518060600160405280602e81526020016120c1602e913961063f85610b9e565b846040518060600160405280602e81526020016120c1602e913961066288610b9e565b6040516020016106779695949392919061150f565b604051602081830303815290604052905092915050565b60606106998261086e565b5060006106a583610b9e565b905061073f816106b485610762565b836040518060600160405280602e81526020016120c1602e9139856107166107118a6040518060400160405280601881526020017f68747470733a2f2f697066732e76762e78797a2f697066730000000000000000815250610610565b610c3e565b60405160200161072b96959493929190611b00565b604051602081830303815290604052610c7f565b9392505050565b6040518060600160405280602e81526020016120c1602e913981565b606061076d8261086e565b50600454600090610786906001600160a01b0316610cc0565b8060200190518101906107999190611cfa565b9050806107a7600185611e02565b815181106107b7576107b7611e15565b6020026020010151915050919050565b606060006040518060400160405280600681526020016513185d195b9d60d21b81525060405180610120016040528060fe81526020016120ef60fe91396040518060600160405280602e81526020016120c1602e913960405160200161082f93929190611e2b565b604051602081830303815290604052905061084981610ce1565b6040516020016108599190611f15565b60405160208183030381529060405291505090565b6000818152602081905260408120546001600160a01b03168061041157604051637e27328960e01b815260048101849052602401610475565b6105138383836001610e41565b6000828152602081905260408120546001600160a01b03908116908316156108e1576108e1818486610f8c565b6001600160a01b0381161561091f576108fe600085600080610e41565b6001600160a01b038116600090815260016020526040902080546000190190555b6001600160a01b03851615610951576001600160a01b0385166000908152600160208190526040909120805490910190555b600084815260208190526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b6001600160a01b038216610a08576040517f5b08ba180000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610475565b6001600160a01b03838116600081815260036020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b156104f257604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290610ab7903390889087908790600401611f5a565b6020604051808303816000875af1925050508015610af2575060408051601f3d908101601f19168201909252610aef91810190611f96565b60015b610b5b573d808015610b20576040519150601f19603f3d011682016040523d82523d6000602084013e610b25565b606091505b508051600003610b5357604051633250574960e11b81526001600160a01b0385166004820152602401610475565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b14610b9757604051633250574960e11b81526001600160a01b0385166004820152602401610475565b5050505050565b60606000610bab83611009565b600101905060008167ffffffffffffffff811115610bcb57610bcb61133c565b6040519080825280601f01601f191660200182016040528015610bf5576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084610bff57509392505050565b60606104116040518060400160405280600d81526020017f696d6167652f7376672b786d6c00000000000000000000000000000000000000815250836110eb565b60606104116040518060400160405280601081526020017f6170706c69636174696f6e2f6a736f6e00000000000000000000000000000000815250836110eb565b6060610411826001610cdc816001600160a01b0384163b611e02565b611108565b60608151600003610d0057505060408051602081019091526000815290565b60006040518060600160405280604081526020016120816040913990506000600384516002610d2f9190611fb3565b610d399190611fc6565b610d44906004611fe8565b67ffffffffffffffff811115610d5c57610d5c61133c565b6040519080825280601f01601f191660200182016040528015610d86576020820181803683370190505b50905060018201602082018586518701602081018051600082525b82841015610dfc576003840193508351603f8160121c168701518653600186019550603f81600c1c168701518653600186019550603f8160061c168701518653600186019550603f8116870151865350600185019450610da1565b9052505085516003900660018114610e1b5760028114610e2e57610e36565b603d6001830353603d6002830353610e36565b603d60018303535b509195945050505050565b8080610e5557506001600160a01b03821615155b15610f4f576000610e658461086e565b90506001600160a01b03831615801590610e915750826001600160a01b0316816001600160a01b031614155b8015610ec357506001600160a01b0380821660009081526003602090815260408083209387168352929052205460ff16155b15610f05576040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610475565b8115610f4d5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50506000908152600260205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610f9783838361112b565b610513576001600160a01b038316610fc557604051637e27328960e01b815260048101829052602401610475565b6040517f177e802f0000000000000000000000000000000000000000000000000000000081526001600160a01b038316600482015260248101829052604401610475565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611052577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef8100000000831061107e576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061109c57662386f26fc10000830492506010015b6305f5e10083106110b4576305f5e100830492506008015b61271083106110c857612710830492506004015b606483106110da576064830492506002015b600a83106104115760010192915050565b6060826110f783610ce1565b604051602001610677929190611fff565b60408051603f8301601f19168101909152818152818360208301863c9392505050565b60006001600160a01b038316158015906111a95750826001600160a01b0316846001600160a01b0316148061118557506001600160a01b0380851660009081526003602090815260408083209387168352929052205460ff165b806111a957506000828152600260205260409020546001600160a01b038481169116145b949350505050565b6001600160e01b0319811681146111c757600080fd5b50565b6000602082840312156111dc57600080fd5b813561073f816111b1565b60005b838110156112025781810151838201526020016111ea565b50506000910152565b600081518084526112238160208601602086016111e7565b601f01601f19169290920160200192915050565b60208152600061073f602083018461120b565b60006020828403121561125c57600080fd5b5035919050565b80356001600160a01b038116811461127a57600080fd5b919050565b6000806040838503121561129257600080fd5b61129b83611263565b946020939093013593505050565b6000806000606084860312156112be57600080fd5b6112c784611263565b92506112d560208501611263565b9150604084013590509250925092565b6000602082840312156112f757600080fd5b61073f82611263565b6000806040838503121561131357600080fd5b61131c83611263565b91506020830135801515811461133157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561137b5761137b61133c565b604052919050565b600067ffffffffffffffff82111561139d5761139d61133c565b50601f01601f191660200190565b60006113be6113b984611383565b611352565b90508281528383830111156113d257600080fd5b828260208301376000602084830101529392505050565b600080600080608085870312156113ff57600080fd5b61140885611263565b935061141660208601611263565b925060408501359150606085013567ffffffffffffffff81111561143957600080fd5b8501601f8101871361144a57600080fd5b611459878235602084016113ab565b91505092959194509250565b6000806040838503121561147857600080fd5b82359150602083013567ffffffffffffffff81111561149657600080fd5b8301601f810185136114a757600080fd5b6114b6858235602084016113ab565b9150509250929050565b600080604083850312156114d357600080fd5b6114dc83611263565b91506114ea60208401611263565b90509250929050565b600081516115058185602086016111e7565b9290920192915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222076696577426f783d2230203020323136302032313630223e60208201527f3c212d2d20494d41474553202d2d3e3c696d61676520687265663d220000000060408201526000875161159381605c850160208c016111e7565b602f60f81b605c9184019182015287516115b481605d840160208c016111e7565b7f2f706f7369746976652f00000000000000000000000000000000000000000000605d929091019182015286516115f2816067840160208b016111e7565b7f2e6a706722206865696768743d2232313630222077696474683d223231363022606792909101918201527f206f7061636974793d2230223e3c616e696d617465206174747269627574654e60878201527f616d653d226f706163697479222066726f6d3d22302220746f3d22312220647560a78201527f723d22302e34732220626567696e3d22706f7369746976652e626567696e222060c78201527f66696c6c3d22667265657a65222f3e3c2f696d6167653e3c696d61676520687260e78201527f65663d2200000000000000000000000000000000000000000000000000000000610107820152611af361172861172261170c6117066116f961010b87018c6114f3565b602f60f81b815260010190565b896114f3565b692f6e656761746976652f60b01b8152600a0190565b866114f3565b7f2e6a706722206865696768743d2232313630222077696474683d22323136302281527f3e3c616e696d617465206174747269627574654e616d653d226f70616369747960208201527f222066726f6d3d22312220746f3d223022206475723d22302e3473222062656760408201527f696e3d22706f7369746976652e626567696e222066696c6c3d22667265657a6560608201527f222f3e3c616e696d617465206174747269627574654e616d653d226f7061636960808201527f7479222066726f6d3d22302220746f3d223122206475723d22302e347322206260a08201527f6567696e3d226e656761746976652e626567696e222066696c6c3d226672656560c08201527f7a65222f3e3c2f696d6167653e3c212d2d20434f4e54524f4c53202d2d3e3c7260e08201527f6563742077696474683d223022206865696768743d2232313630222066696c6c6101008201527f3d227472616e73706172656e74223e3c616e696d6174652061747472696275746101208201527f654e616d653d227769647468222066726f6d3d22323136302220746f3d2230226101408201527f206475723d22302e34732220626567696e3d22636c69636b222066696c6c3d226101608201527f667265657a65222069643d226e6567617469766522202f3e3c616e696d6174656101808201527f206174747269627574654e616d653d227769647468222066726f6d3d223022206101a08201527f746f3d223231363022206475723d22302e34732220626567696e3d22706f73696101c08201527f746976652e626567696e222066696c6c3d22667265657a6522202f3e3c2f72656101e08201527f63743e3c726563742077696474683d223231363022206865696768743d2232316102008201527f3630222066696c6c3d227472616e73706172656e74223e3c616e696d617465206102208201527f6174747269627574654e616d653d227769647468222066726f6d3d22302220746102408201527f6f3d223231363022206475723d22302e34732220626567696e3d226e656761746102608201527f6976652e626567696e222066696c6c3d22667265657a6522202f3e3c616e696d6102808201527f617465206174747269627574654e616d653d227769647468222066726f6d3d226102a08201527f323136302220746f3d223022206475723d22302e34732220626567696e3d22636102c08201527f6c69636b222066696c6c3d22667265657a65222069643d22706f7369746976656102e08201527f22202f3e3c2f726563743e3c2f7376673e0000000000000000000000000000006103008201526103110190565b9998505050505050505050565b7f7b226964223a2000000000000000000000000000000000000000000000000000815260008751611b38816007850160208c016111e7565b7f2c226e616d65223a2022000000000000000000000000000000000000000000006007918401918201528751611b75816011840160208c016111e7565b7f222c226465736372697074696f6e223a20224469676974616c204e6567617469601192909101918201527f76652c204c6174656e742028000000000000000000000000000000000000000060318201528651611bd981603d840160208b016111e7565b7f206f6620383029222c22696d616765223a2022697066733a2f2f000000000000603d92909101918201528551611c17816057840160208a016111e7565b611cec611c77611c71611c48611c42605786880101692f6e656761746976652f60b01b8152600a0190565b8a6114f3565b7f2e6a7067222c22616e696d6174696f6e5f75726c223a20220000000000000000815260180190565b876114f3565b7f222c2261747472696275746573223a205b7b2274726169745f74797065223a2081527f22417274697374222c2276616c7565223a20224a61636b20427574636865722260208201527f7d5d7d0000000000000000000000000000000000000000000000000000000000604082015260430190565b9a9950505050505050505050565b60006020808385031215611d0d57600080fd5b825167ffffffffffffffff80821115611d2557600080fd5b818501915085601f830112611d3957600080fd5b815181811115611d4b57611d4b61133c565b8060051b611d5a858201611352565b9182528381018501918581019089841115611d7457600080fd5b86860192505b83831015611af357825185811115611d925760008081fd5b8601603f81018b13611da45760008081fd5b878101516040611db66113b983611383565b8281528d82848601011115611dcb5760008081fd5b611dda838c83018487016111e7565b85525050509186019190860190611d7a565b634e487b7160e01b600052601160045260246000fd5b8181038181111561041157610411611dec565b634e487b7160e01b600052603260045260246000fd5b7f7b226e616d65223a202200000000000000000000000000000000000000000000815260008451611e6381600a8501602089016111e7565b7f222c226465736372697074696f6e223a20220000000000000000000000000000600a918401918201528451611ea081601c8401602089016111e7565b7f222c22696d616765223a2022697066733a2f2f00000000000000000000000000601c92909101918201528351611ede81602f8401602088016111e7565b7f2f706f7369746976652f312e6a7067227d000000000000000000000000000000602f929091019182015260400195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611f4d81601d8501602087016111e7565b91909101601d0192915050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611f8c608083018461120b565b9695505050505050565b600060208284031215611fa857600080fd5b815161073f816111b1565b8082018082111561041157610411611dec565b600082611fe357634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761041157610411611dec565b7f646174613a0000000000000000000000000000000000000000000000000000008152600083516120378160058501602088016111e7565b7f3b6261736536342c000000000000000000000000000000000000000000000000600591840191820152835161207481600d8401602088016111e7565b01600d0194935050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f516d4e543870426b746a666851764c4b3759414775624645426e315a31444b444d357a47747975667557694b77533830207375727265616c69737420776f726b73206578706c6f72696e6720746865207370616365206265747765656e207265616c20616e64207265616c697a65642c207072656d696572696e672061742050617269732050686f746f2032303234206f6e207375727265616c69736d27732063656e74656e6e69616c2e204561636820746f6b656e2073657276657320617320616e206f726967696e616c206469676974616c206e656761746976652c206d6174657269616c697a696e672061732053696c7665722047656c6174696e205072696e747320766961205061726973277320686973746f72696320504943544f206c61626f7261746f72792ea264697066735822122097d61755283d3fe402cfd6d18483bd16ab81aa55d2fb1e07734c4a23ea98484964736f6c6343000818003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000001e40000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000a800000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000b400000000000000000000000000000000000000000000000000000000000000b800000000000000000000000000000000000000000000000000000000000000bc00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c400000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000cc00000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000d400000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000e400000000000000000000000000000000000000000000000000000000000000e800000000000000000000000000000000000000000000000000000000000000ec00000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000f400000000000000000000000000000000000000000000000000000000000000f800000000000000000000000000000000000000000000000000000000000000fc000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001040000000000000000000000000000000000000000000000000000000000000108000000000000000000000000000000000000000000000000000000000000010c000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000001140000000000000000000000000000000000000000000000000000000000000118000000000000000000000000000000000000000000000000000000000000011c000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001240000000000000000000000000000000000000000000000000000000000000128000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000001340000000000000000000000000000000000000000000000000000000000000138000000000000000000000000000000000000000000000000000000000000013c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001440000000000000000000000000000000000000000000000000000000000000148000000000000000000000000000000000000000000000000000000000000014c000000000000000000000000000000000000000000000000000000000000015000000000000000000000000000000000000000000000000000000000000001540000000000000000000000000000000000000000000000000000000000000158000000000000000000000000000000000000000000000000000000000000015c000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001640000000000000000000000000000000000000000000000000000000000000168000000000000000000000000000000000000000000000000000000000000016c000000000000000000000000000000000000000000000000000000000000017000000000000000000000000000000000000000000000000000000000000001740000000000000000000000000000000000000000000000000000000000000178000000000000000000000000000000000000000000000000000000000000017c000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001840000000000000000000000000000000000000000000000000000000000000188000000000000000000000000000000000000000000000000000000000000018c000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001940000000000000000000000000000000000000000000000000000000000000198000000000000000000000000000000000000000000000000000000000000019c00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001a400000000000000000000000000000000000000000000000000000000000001a800000000000000000000000000000000000000000000000000000000000001ac00000000000000000000000000000000000000000000000000000000000001b000000000000000000000000000000000000000000000000000000000000001b400000000000000000000000000000000000000000000000000000000000001b800000000000000000000000000000000000000000000000000000000000001bc00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001c400000000000000000000000000000000000000000000000000000000000001c800000000000000000000000000000000000000000000000000000000000001cc00000000000000000000000000000000000000000000000000000000000001d000000000000000000000000000000000000000000000000000000000000001d400000000000000000000000000000000000000000000000000000000000001d800000000000000000000000000000000000000000000000000000000000001dc00000000000000000000000000000000000000000000000000000000000000010416c746572656420536572656e616465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013416e746f6e796d6963205374696c6c6e65737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c42656e64696e6720456467650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001142696e617279204f70706f736974696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e426c7572726564204165746865720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010426f756e646c657373204d697261676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001243697263756c617220526561736f6e696e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014436f6e63656e74726963205265616c69746965730000000000000000000000000000000000000000000000000000000000000000000000000000000000000015436f6e666c75656e742050657263657074696f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000016436f6e747261646963746f72792053796d6d65747279000000000000000000000000000000000000000000000000000000000000000000000000000000000012436f736d696320457175696c69627269756d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000124469616c656374696320536f6c69747564650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4469616c6f6769632053656c660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000144469737369706174696e672053796d6d657472790000000000000000000000000000000000000000000000000000000000000000000000000000000000000010446973736f6c76696e67204f72646572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010446973736f6e616e7420476c6974636800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d44697374616e7420566f696365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011446973746f72746564205265616c6974790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013446f7070656c6761cc886e6765722048617a6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4472696674696e6720456e69676d610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4563686f696e6720416273656e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010456e74616e676c65642053656c7665730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000154570697374656d69632053696e67756c61726974790000000000000000000000000000000000000000000000000000000000000000000000000000000000000e457175696e652052657665726965000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f45726f64696e67204d65616e696e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104578697374656e7469616c204563686f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d466164696e67204d656d6f7279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012466c69636b6572696e672050617261646f7800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011466f72676f7474656e20486f72697a6f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010486f6c6f677261706869632053656c66000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012496c6c75736f7279204365727461696e747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010496d6167696e6564204475616c697479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016496d706f737369626c65205065727370656374697665000000000000000000000000000000000000000000000000000000000000000000000000000000000017496e636f6d70726568656e7369626c65205369676e616c0000000000000000000000000000000000000000000000000000000000000000000000000000000015496e746572776f76656e20446973736f6e616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000012496e766572746564205265736f6e616e6365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104972726174696f6e616c20466f63757300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4c69667465642054656e73696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4d656c74696e67205265616c697479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104d657267696e67204175746f6e6f6d790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000114d65746120456e74616e676c656d656e74000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4d6f6e61646963204a6f75726e6579000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000184d756c74697665727365205375706572706f736974696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000e4e6567617469766520537061636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000114f6273637572656420496e66696e69747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000144f7363696c6c6174696e6720506172616469676d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e506172616c6c656c2052656163680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010506172746974696f6e65642053656c660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000115065726970686572616c20566973696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001350657270657475616c20436f676e6974696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c5068616e746f6d2041786973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000115175616e74756d204f6273657276657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f5265636970726f63616c204563686f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010526563757273697665204d697261676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f526564616374656420547275746873000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000135265667261637465642041776172656e65737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000001552657665726265726174696e672053696c656e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000011526970706c65642044696d656e73696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e527570747572656420447265616d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e5363616c65206f66204265696e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001553686174746572656420436f6f7264696e617465730000000000000000000000000000000000000000000000000000000000000000000000000000000000000f536b657765642053796d6d657472790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f536f6c6974756465277320466163650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d536f6e6963204475616c6974790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000125370617469616c20446973736f6e616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016537065637472616c204d6574616d6f7270686f736973000000000000000000000000000000000000000000000000000000000000000000000000000000000012537562636f6e7363696f7573204672616d650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001053756974656420416e6f6e796d69747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001353757370656e64656420416e696d6174696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000001253796e617074696320457870616e73696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f54656d706f72617279204661636573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000145472616e7369656e74205065726d616e656e63650000000000000000000000000000000000000000000000000000000000000000000000000000000000000012556e69666965642053657061726174696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013556e72657665616c6564204469616c6f67756500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d556e7365656e20576569676874000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010556e73706f6b656e20456e74726f707900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e556e7665696c656420416279737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105665696c65642050726f78696d697479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012566f696420436f6e74656d706c6174696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105765696768746c65737320447269667400000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061016c5760003560e01c80637284e416116100cd578063c87b56dd11610081578063e725f87711610066578063e725f87714610323578063e8a3d48514610336578063e985e9c51461033e57600080fd5b8063c87b56dd14610308578063d97aa9771461031b57600080fd5b8063a22cb465116100b2578063a22cb465146102cf578063b88d4fde146102e2578063c02137d1146102f557600080fd5b80637284e4161461028b57806395d89b411461029357600080fd5b806342842e0e116101245780636344f311116101095780636344f311146102445780636352211e1461025757806370a082311461026a57600080fd5b806342842e0e1461021e57806342966c681461023157600080fd5b8063081812fc11610155578063081812fc146101cb578063095ea7b3146101f657806323b872dd1461020b57600080fd5b806301ffc9a71461017157806306fdde0314610199575b600080fd5b61018461017f3660046111ca565b61037a565b60405190151581526020015b60405180910390f35b6101be6040518060400160405280600681526020016513185d195b9d60d21b81525081565b6040516101909190611237565b6101de6101d936600461124a565b610417565b6040516001600160a01b039091168152602001610190565b61020961020436600461127f565b610440565b005b6102096102193660046112a9565b61044f565b61020961022c3660046112a9565b6104f8565b61020961023f36600461124a565b610518565b6101be61025236600461124a565b610524565b6101de61026536600461124a565b610565565b61027d6102783660046112e5565b610570565b604051908152602001610190565b6101be6105d1565b6101be6040518060400160405280600681526020017f4c4154454e54000000000000000000000000000000000000000000000000000081525081565b6102096102dd366004611300565b6105ee565b6102096102f03660046113e9565b6105f9565b6101be610303366004611465565b610610565b6101be61031636600461124a565b61068e565b6101be610746565b6101be61033136600461124a565b610762565b6101be6107c7565b61018461034c3660046114c0565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806103dd57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061041157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60006104228261086e565b506000828152600260205260409020546001600160a01b0316610411565b61044b8282336108a7565b5050565b6001600160a01b03821661047e57604051633250574960e11b8152600060048201526024015b60405180910390fd5b600061048b8383336108b4565b9050836001600160a01b0316816001600160a01b0316146104f2576040517f64283d7b0000000000000000000000000000000000000000000000000000000081526001600160a01b0380861660048301526024820184905282166044820152606401610475565b50505050565b610513838383604051806020016040528060008152506105f9565b505050565b61044b600082336108b4565b6060610411826040518060400160405280601881526020017f68747470733a2f2f697066732e76762e78797a2f697066730000000000000000815250610610565b60006104118261086e565b60006001600160a01b0382166105b5576040517f89c62b6400000000000000000000000000000000000000000000000000000000815260006004820152602401610475565b506001600160a01b031660009081526001602052604090205490565b60405180610120016040528060fe81526020016120ef60fe913981565b61044b3383836109bd565b61060484848461044f565b6104f284848484610a75565b606061061b8361086e565b50816040518060600160405280602e81526020016120c1602e913961063f85610b9e565b846040518060600160405280602e81526020016120c1602e913961066288610b9e565b6040516020016106779695949392919061150f565b604051602081830303815290604052905092915050565b60606106998261086e565b5060006106a583610b9e565b905061073f816106b485610762565b836040518060600160405280602e81526020016120c1602e9139856107166107118a6040518060400160405280601881526020017f68747470733a2f2f697066732e76762e78797a2f697066730000000000000000815250610610565b610c3e565b60405160200161072b96959493929190611b00565b604051602081830303815290604052610c7f565b9392505050565b6040518060600160405280602e81526020016120c1602e913981565b606061076d8261086e565b50600454600090610786906001600160a01b0316610cc0565b8060200190518101906107999190611cfa565b9050806107a7600185611e02565b815181106107b7576107b7611e15565b6020026020010151915050919050565b606060006040518060400160405280600681526020016513185d195b9d60d21b81525060405180610120016040528060fe81526020016120ef60fe91396040518060600160405280602e81526020016120c1602e913960405160200161082f93929190611e2b565b604051602081830303815290604052905061084981610ce1565b6040516020016108599190611f15565b60405160208183030381529060405291505090565b6000818152602081905260408120546001600160a01b03168061041157604051637e27328960e01b815260048101849052602401610475565b6105138383836001610e41565b6000828152602081905260408120546001600160a01b03908116908316156108e1576108e1818486610f8c565b6001600160a01b0381161561091f576108fe600085600080610e41565b6001600160a01b038116600090815260016020526040902080546000190190555b6001600160a01b03851615610951576001600160a01b0385166000908152600160208190526040909120805490910190555b600084815260208190526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b6001600160a01b038216610a08576040517f5b08ba180000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610475565b6001600160a01b03838116600081815260036020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b156104f257604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290610ab7903390889087908790600401611f5a565b6020604051808303816000875af1925050508015610af2575060408051601f3d908101601f19168201909252610aef91810190611f96565b60015b610b5b573d808015610b20576040519150601f19603f3d011682016040523d82523d6000602084013e610b25565b606091505b508051600003610b5357604051633250574960e11b81526001600160a01b0385166004820152602401610475565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b14610b9757604051633250574960e11b81526001600160a01b0385166004820152602401610475565b5050505050565b60606000610bab83611009565b600101905060008167ffffffffffffffff811115610bcb57610bcb61133c565b6040519080825280601f01601f191660200182016040528015610bf5576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084610bff57509392505050565b60606104116040518060400160405280600d81526020017f696d6167652f7376672b786d6c00000000000000000000000000000000000000815250836110eb565b60606104116040518060400160405280601081526020017f6170706c69636174696f6e2f6a736f6e00000000000000000000000000000000815250836110eb565b6060610411826001610cdc816001600160a01b0384163b611e02565b611108565b60608151600003610d0057505060408051602081019091526000815290565b60006040518060600160405280604081526020016120816040913990506000600384516002610d2f9190611fb3565b610d399190611fc6565b610d44906004611fe8565b67ffffffffffffffff811115610d5c57610d5c61133c565b6040519080825280601f01601f191660200182016040528015610d86576020820181803683370190505b50905060018201602082018586518701602081018051600082525b82841015610dfc576003840193508351603f8160121c168701518653600186019550603f81600c1c168701518653600186019550603f8160061c168701518653600186019550603f8116870151865350600185019450610da1565b9052505085516003900660018114610e1b5760028114610e2e57610e36565b603d6001830353603d6002830353610e36565b603d60018303535b509195945050505050565b8080610e5557506001600160a01b03821615155b15610f4f576000610e658461086e565b90506001600160a01b03831615801590610e915750826001600160a01b0316816001600160a01b031614155b8015610ec357506001600160a01b0380821660009081526003602090815260408083209387168352929052205460ff16155b15610f05576040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610475565b8115610f4d5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50506000908152600260205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610f9783838361112b565b610513576001600160a01b038316610fc557604051637e27328960e01b815260048101829052602401610475565b6040517f177e802f0000000000000000000000000000000000000000000000000000000081526001600160a01b038316600482015260248101829052604401610475565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611052577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef8100000000831061107e576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061109c57662386f26fc10000830492506010015b6305f5e10083106110b4576305f5e100830492506008015b61271083106110c857612710830492506004015b606483106110da576064830492506002015b600a83106104115760010192915050565b6060826110f783610ce1565b604051602001610677929190611fff565b60408051603f8301601f19168101909152818152818360208301863c9392505050565b60006001600160a01b038316158015906111a95750826001600160a01b0316846001600160a01b0316148061118557506001600160a01b0380851660009081526003602090815260408083209387168352929052205460ff165b806111a957506000828152600260205260409020546001600160a01b038481169116145b949350505050565b6001600160e01b0319811681146111c757600080fd5b50565b6000602082840312156111dc57600080fd5b813561073f816111b1565b60005b838110156112025781810151838201526020016111ea565b50506000910152565b600081518084526112238160208601602086016111e7565b601f01601f19169290920160200192915050565b60208152600061073f602083018461120b565b60006020828403121561125c57600080fd5b5035919050565b80356001600160a01b038116811461127a57600080fd5b919050565b6000806040838503121561129257600080fd5b61129b83611263565b946020939093013593505050565b6000806000606084860312156112be57600080fd5b6112c784611263565b92506112d560208501611263565b9150604084013590509250925092565b6000602082840312156112f757600080fd5b61073f82611263565b6000806040838503121561131357600080fd5b61131c83611263565b91506020830135801515811461133157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561137b5761137b61133c565b604052919050565b600067ffffffffffffffff82111561139d5761139d61133c565b50601f01601f191660200190565b60006113be6113b984611383565b611352565b90508281528383830111156113d257600080fd5b828260208301376000602084830101529392505050565b600080600080608085870312156113ff57600080fd5b61140885611263565b935061141660208601611263565b925060408501359150606085013567ffffffffffffffff81111561143957600080fd5b8501601f8101871361144a57600080fd5b611459878235602084016113ab565b91505092959194509250565b6000806040838503121561147857600080fd5b82359150602083013567ffffffffffffffff81111561149657600080fd5b8301601f810185136114a757600080fd5b6114b6858235602084016113ab565b9150509250929050565b600080604083850312156114d357600080fd5b6114dc83611263565b91506114ea60208401611263565b90509250929050565b600081516115058185602086016111e7565b9290920192915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222076696577426f783d2230203020323136302032313630223e60208201527f3c212d2d20494d41474553202d2d3e3c696d61676520687265663d220000000060408201526000875161159381605c850160208c016111e7565b602f60f81b605c9184019182015287516115b481605d840160208c016111e7565b7f2f706f7369746976652f00000000000000000000000000000000000000000000605d929091019182015286516115f2816067840160208b016111e7565b7f2e6a706722206865696768743d2232313630222077696474683d223231363022606792909101918201527f206f7061636974793d2230223e3c616e696d617465206174747269627574654e60878201527f616d653d226f706163697479222066726f6d3d22302220746f3d22312220647560a78201527f723d22302e34732220626567696e3d22706f7369746976652e626567696e222060c78201527f66696c6c3d22667265657a65222f3e3c2f696d6167653e3c696d61676520687260e78201527f65663d2200000000000000000000000000000000000000000000000000000000610107820152611af361172861172261170c6117066116f961010b87018c6114f3565b602f60f81b815260010190565b896114f3565b692f6e656761746976652f60b01b8152600a0190565b866114f3565b7f2e6a706722206865696768743d2232313630222077696474683d22323136302281527f3e3c616e696d617465206174747269627574654e616d653d226f70616369747960208201527f222066726f6d3d22312220746f3d223022206475723d22302e3473222062656760408201527f696e3d22706f7369746976652e626567696e222066696c6c3d22667265657a6560608201527f222f3e3c616e696d617465206174747269627574654e616d653d226f7061636960808201527f7479222066726f6d3d22302220746f3d223122206475723d22302e347322206260a08201527f6567696e3d226e656761746976652e626567696e222066696c6c3d226672656560c08201527f7a65222f3e3c2f696d6167653e3c212d2d20434f4e54524f4c53202d2d3e3c7260e08201527f6563742077696474683d223022206865696768743d2232313630222066696c6c6101008201527f3d227472616e73706172656e74223e3c616e696d6174652061747472696275746101208201527f654e616d653d227769647468222066726f6d3d22323136302220746f3d2230226101408201527f206475723d22302e34732220626567696e3d22636c69636b222066696c6c3d226101608201527f667265657a65222069643d226e6567617469766522202f3e3c616e696d6174656101808201527f206174747269627574654e616d653d227769647468222066726f6d3d223022206101a08201527f746f3d223231363022206475723d22302e34732220626567696e3d22706f73696101c08201527f746976652e626567696e222066696c6c3d22667265657a6522202f3e3c2f72656101e08201527f63743e3c726563742077696474683d223231363022206865696768743d2232316102008201527f3630222066696c6c3d227472616e73706172656e74223e3c616e696d617465206102208201527f6174747269627574654e616d653d227769647468222066726f6d3d22302220746102408201527f6f3d223231363022206475723d22302e34732220626567696e3d226e656761746102608201527f6976652e626567696e222066696c6c3d22667265657a6522202f3e3c616e696d6102808201527f617465206174747269627574654e616d653d227769647468222066726f6d3d226102a08201527f323136302220746f3d223022206475723d22302e34732220626567696e3d22636102c08201527f6c69636b222066696c6c3d22667265657a65222069643d22706f7369746976656102e08201527f22202f3e3c2f726563743e3c2f7376673e0000000000000000000000000000006103008201526103110190565b9998505050505050505050565b7f7b226964223a2000000000000000000000000000000000000000000000000000815260008751611b38816007850160208c016111e7565b7f2c226e616d65223a2022000000000000000000000000000000000000000000006007918401918201528751611b75816011840160208c016111e7565b7f222c226465736372697074696f6e223a20224469676974616c204e6567617469601192909101918201527f76652c204c6174656e742028000000000000000000000000000000000000000060318201528651611bd981603d840160208b016111e7565b7f206f6620383029222c22696d616765223a2022697066733a2f2f000000000000603d92909101918201528551611c17816057840160208a016111e7565b611cec611c77611c71611c48611c42605786880101692f6e656761746976652f60b01b8152600a0190565b8a6114f3565b7f2e6a7067222c22616e696d6174696f6e5f75726c223a20220000000000000000815260180190565b876114f3565b7f222c2261747472696275746573223a205b7b2274726169745f74797065223a2081527f22417274697374222c2276616c7565223a20224a61636b20427574636865722260208201527f7d5d7d0000000000000000000000000000000000000000000000000000000000604082015260430190565b9a9950505050505050505050565b60006020808385031215611d0d57600080fd5b825167ffffffffffffffff80821115611d2557600080fd5b818501915085601f830112611d3957600080fd5b815181811115611d4b57611d4b61133c565b8060051b611d5a858201611352565b9182528381018501918581019089841115611d7457600080fd5b86860192505b83831015611af357825185811115611d925760008081fd5b8601603f81018b13611da45760008081fd5b878101516040611db66113b983611383565b8281528d82848601011115611dcb5760008081fd5b611dda838c83018487016111e7565b85525050509186019190860190611d7a565b634e487b7160e01b600052601160045260246000fd5b8181038181111561041157610411611dec565b634e487b7160e01b600052603260045260246000fd5b7f7b226e616d65223a202200000000000000000000000000000000000000000000815260008451611e6381600a8501602089016111e7565b7f222c226465736372697074696f6e223a20220000000000000000000000000000600a918401918201528451611ea081601c8401602089016111e7565b7f222c22696d616765223a2022697066733a2f2f00000000000000000000000000601c92909101918201528351611ede81602f8401602088016111e7565b7f2f706f7369746976652f312e6a7067227d000000000000000000000000000000602f929091019182015260400195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611f4d81601d8501602087016111e7565b91909101601d0192915050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611f8c608083018461120b565b9695505050505050565b600060208284031215611fa857600080fd5b815161073f816111b1565b8082018082111561041157610411611dec565b600082611fe357634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761041157610411611dec565b7f646174613a0000000000000000000000000000000000000000000000000000008152600083516120378160058501602088016111e7565b7f3b6261736536342c000000000000000000000000000000000000000000000000600591840191820152835161207481600d8401602088016111e7565b01600d0194935050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f516d4e543870426b746a666851764c4b3759414775624645426e315a31444b444d357a47747975667557694b77533830207375727265616c69737420776f726b73206578706c6f72696e6720746865207370616365206265747765656e207265616c20616e64207265616c697a65642c207072656d696572696e672061742050617269732050686f746f2032303234206f6e207375727265616c69736d27732063656e74656e6e69616c2e204561636820746f6b656e2073657276657320617320616e206f726967696e616c206469676974616c206e656761746976652c206d6174657269616c697a696e672061732053696c7665722047656c6174696e205072696e747320766961205061726973277320686973746f72696320504943544f206c61626f7261746f72792ea264697066735822122097d61755283d3fe402cfd6d18483bd16ab81aa55d2fb1e07734c4a23ea98484964736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000001e40000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000a800000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000b400000000000000000000000000000000000000000000000000000000000000b800000000000000000000000000000000000000000000000000000000000000bc00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c400000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000cc00000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000d400000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000e400000000000000000000000000000000000000000000000000000000000000e800000000000000000000000000000000000000000000000000000000000000ec00000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000f400000000000000000000000000000000000000000000000000000000000000f800000000000000000000000000000000000000000000000000000000000000fc000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001040000000000000000000000000000000000000000000000000000000000000108000000000000000000000000000000000000000000000000000000000000010c000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000001140000000000000000000000000000000000000000000000000000000000000118000000000000000000000000000000000000000000000000000000000000011c000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001240000000000000000000000000000000000000000000000000000000000000128000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000001340000000000000000000000000000000000000000000000000000000000000138000000000000000000000000000000000000000000000000000000000000013c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001440000000000000000000000000000000000000000000000000000000000000148000000000000000000000000000000000000000000000000000000000000014c000000000000000000000000000000000000000000000000000000000000015000000000000000000000000000000000000000000000000000000000000001540000000000000000000000000000000000000000000000000000000000000158000000000000000000000000000000000000000000000000000000000000015c000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001640000000000000000000000000000000000000000000000000000000000000168000000000000000000000000000000000000000000000000000000000000016c000000000000000000000000000000000000000000000000000000000000017000000000000000000000000000000000000000000000000000000000000001740000000000000000000000000000000000000000000000000000000000000178000000000000000000000000000000000000000000000000000000000000017c000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001840000000000000000000000000000000000000000000000000000000000000188000000000000000000000000000000000000000000000000000000000000018c000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001940000000000000000000000000000000000000000000000000000000000000198000000000000000000000000000000000000000000000000000000000000019c00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001a400000000000000000000000000000000000000000000000000000000000001a800000000000000000000000000000000000000000000000000000000000001ac00000000000000000000000000000000000000000000000000000000000001b000000000000000000000000000000000000000000000000000000000000001b400000000000000000000000000000000000000000000000000000000000001b800000000000000000000000000000000000000000000000000000000000001bc00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001c400000000000000000000000000000000000000000000000000000000000001c800000000000000000000000000000000000000000000000000000000000001cc00000000000000000000000000000000000000000000000000000000000001d000000000000000000000000000000000000000000000000000000000000001d400000000000000000000000000000000000000000000000000000000000001d800000000000000000000000000000000000000000000000000000000000001dc00000000000000000000000000000000000000000000000000000000000000010416c746572656420536572656e616465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013416e746f6e796d6963205374696c6c6e65737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c42656e64696e6720456467650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001142696e617279204f70706f736974696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e426c7572726564204165746865720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010426f756e646c657373204d697261676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001243697263756c617220526561736f6e696e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014436f6e63656e74726963205265616c69746965730000000000000000000000000000000000000000000000000000000000000000000000000000000000000015436f6e666c75656e742050657263657074696f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000016436f6e747261646963746f72792053796d6d65747279000000000000000000000000000000000000000000000000000000000000000000000000000000000012436f736d696320457175696c69627269756d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000124469616c656374696320536f6c69747564650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4469616c6f6769632053656c660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000144469737369706174696e672053796d6d657472790000000000000000000000000000000000000000000000000000000000000000000000000000000000000010446973736f6c76696e67204f72646572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010446973736f6e616e7420476c6974636800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d44697374616e7420566f696365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011446973746f72746564205265616c6974790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013446f7070656c6761cc886e6765722048617a6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4472696674696e6720456e69676d610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4563686f696e6720416273656e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010456e74616e676c65642053656c7665730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000154570697374656d69632053696e67756c61726974790000000000000000000000000000000000000000000000000000000000000000000000000000000000000e457175696e652052657665726965000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f45726f64696e67204d65616e696e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104578697374656e7469616c204563686f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d466164696e67204d656d6f7279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012466c69636b6572696e672050617261646f7800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011466f72676f7474656e20486f72697a6f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010486f6c6f677261706869632053656c66000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012496c6c75736f7279204365727461696e747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010496d6167696e6564204475616c697479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016496d706f737369626c65205065727370656374697665000000000000000000000000000000000000000000000000000000000000000000000000000000000017496e636f6d70726568656e7369626c65205369676e616c0000000000000000000000000000000000000000000000000000000000000000000000000000000015496e746572776f76656e20446973736f6e616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000012496e766572746564205265736f6e616e6365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104972726174696f6e616c20466f63757300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4c69667465642054656e73696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4d656c74696e67205265616c697479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104d657267696e67204175746f6e6f6d790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000114d65746120456e74616e676c656d656e74000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4d6f6e61646963204a6f75726e6579000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000184d756c74697665727365205375706572706f736974696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000e4e6567617469766520537061636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000114f6273637572656420496e66696e69747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000144f7363696c6c6174696e6720506172616469676d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e506172616c6c656c2052656163680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010506172746974696f6e65642053656c660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000115065726970686572616c20566973696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001350657270657475616c20436f676e6974696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c5068616e746f6d2041786973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000115175616e74756d204f6273657276657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f5265636970726f63616c204563686f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010526563757273697665204d697261676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f526564616374656420547275746873000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000135265667261637465642041776172656e65737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000001552657665726265726174696e672053696c656e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000011526970706c65642044696d656e73696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e527570747572656420447265616d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e5363616c65206f66204265696e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001553686174746572656420436f6f7264696e617465730000000000000000000000000000000000000000000000000000000000000000000000000000000000000f536b657765642053796d6d657472790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f536f6c6974756465277320466163650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d536f6e6963204475616c6974790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000125370617469616c20446973736f6e616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016537065637472616c204d6574616d6f7270686f736973000000000000000000000000000000000000000000000000000000000000000000000000000000000012537562636f6e7363696f7573204672616d650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001053756974656420416e6f6e796d69747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001353757370656e64656420416e696d6174696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000001253796e617074696320457870616e73696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f54656d706f72617279204661636573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000145472616e7369656e74205065726d616e656e63650000000000000000000000000000000000000000000000000000000000000000000000000000000000000012556e69666965642053657061726174696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013556e72657665616c6564204469616c6f67756500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d556e7365656e20576569676874000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010556e73706f6b656e20456e74726f707900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e556e7665696c656420416279737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105665696c65642050726f78696d697479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012566f696420436f6e74656d706c6174696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105765696768746c65737320447269667400000000000000000000000000000000
-----Decoded View---------------
Arg [0] : encodedNames (bytes): 0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000a800000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000b400000000000000000000000000000000000000000000000000000000000000b800000000000000000000000000000000000000000000000000000000000000bc00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c400000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000cc00000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000d400000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000e400000000000000000000000000000000000000000000000000000000000000e800000000000000000000000000000000000000000000000000000000000000ec00000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000f400000000000000000000000000000000000000000000000000000000000000f800000000000000000000000000000000000000000000000000000000000000fc000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001040000000000000000000000000000000000000000000000000000000000000108000000000000000000000000000000000000000000000000000000000000010c000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000001140000000000000000000000000000000000000000000000000000000000000118000000000000000000000000000000000000000000000000000000000000011c000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001240000000000000000000000000000000000000000000000000000000000000128000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000001340000000000000000000000000000000000000000000000000000000000000138000000000000000000000000000000000000000000000000000000000000013c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001440000000000000000000000000000000000000000000000000000000000000148000000000000000000000000000000000000000000000000000000000000014c000000000000000000000000000000000000000000000000000000000000015000000000000000000000000000000000000000000000000000000000000001540000000000000000000000000000000000000000000000000000000000000158000000000000000000000000000000000000000000000000000000000000015c000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001640000000000000000000000000000000000000000000000000000000000000168000000000000000000000000000000000000000000000000000000000000016c000000000000000000000000000000000000000000000000000000000000017000000000000000000000000000000000000000000000000000000000000001740000000000000000000000000000000000000000000000000000000000000178000000000000000000000000000000000000000000000000000000000000017c000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001840000000000000000000000000000000000000000000000000000000000000188000000000000000000000000000000000000000000000000000000000000018c000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001940000000000000000000000000000000000000000000000000000000000000198000000000000000000000000000000000000000000000000000000000000019c00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001a400000000000000000000000000000000000000000000000000000000000001a800000000000000000000000000000000000000000000000000000000000001ac00000000000000000000000000000000000000000000000000000000000001b000000000000000000000000000000000000000000000000000000000000001b400000000000000000000000000000000000000000000000000000000000001b800000000000000000000000000000000000000000000000000000000000001bc00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001c400000000000000000000000000000000000000000000000000000000000001c800000000000000000000000000000000000000000000000000000000000001cc00000000000000000000000000000000000000000000000000000000000001d000000000000000000000000000000000000000000000000000000000000001d400000000000000000000000000000000000000000000000000000000000001d800000000000000000000000000000000000000000000000000000000000001dc00000000000000000000000000000000000000000000000000000000000000010416c746572656420536572656e616465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013416e746f6e796d6963205374696c6c6e65737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c42656e64696e6720456467650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001142696e617279204f70706f736974696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e426c7572726564204165746865720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010426f756e646c657373204d697261676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001243697263756c617220526561736f6e696e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014436f6e63656e74726963205265616c69746965730000000000000000000000000000000000000000000000000000000000000000000000000000000000000015436f6e666c75656e742050657263657074696f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000016436f6e747261646963746f72792053796d6d65747279000000000000000000000000000000000000000000000000000000000000000000000000000000000012436f736d696320457175696c69627269756d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000124469616c656374696320536f6c69747564650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4469616c6f6769632053656c660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000144469737369706174696e672053796d6d657472790000000000000000000000000000000000000000000000000000000000000000000000000000000000000010446973736f6c76696e67204f72646572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010446973736f6e616e7420476c6974636800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d44697374616e7420566f696365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011446973746f72746564205265616c6974790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013446f7070656c6761cc886e6765722048617a6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4472696674696e6720456e69676d610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4563686f696e6720416273656e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010456e74616e676c65642053656c7665730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000154570697374656d69632053696e67756c61726974790000000000000000000000000000000000000000000000000000000000000000000000000000000000000e457175696e652052657665726965000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f45726f64696e67204d65616e696e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104578697374656e7469616c204563686f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d466164696e67204d656d6f7279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012466c69636b6572696e672050617261646f7800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011466f72676f7474656e20486f72697a6f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010486f6c6f677261706869632053656c66000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012496c6c75736f7279204365727461696e747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010496d6167696e6564204475616c697479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016496d706f737369626c65205065727370656374697665000000000000000000000000000000000000000000000000000000000000000000000000000000000017496e636f6d70726568656e7369626c65205369676e616c0000000000000000000000000000000000000000000000000000000000000000000000000000000015496e746572776f76656e20446973736f6e616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000012496e766572746564205265736f6e616e6365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104972726174696f6e616c20466f63757300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4c69667465642054656e73696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4d656c74696e67205265616c697479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104d657267696e67204175746f6e6f6d790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000114d65746120456e74616e676c656d656e74000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4d6f6e61646963204a6f75726e6579000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000184d756c74697665727365205375706572706f736974696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000e4e6567617469766520537061636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000114f6273637572656420496e66696e69747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000144f7363696c6c6174696e6720506172616469676d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e506172616c6c656c2052656163680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010506172746974696f6e65642053656c660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000115065726970686572616c20566973696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001350657270657475616c20436f676e6974696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c5068616e746f6d2041786973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000115175616e74756d204f6273657276657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f5265636970726f63616c204563686f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010526563757273697665204d697261676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f526564616374656420547275746873000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000135265667261637465642041776172656e65737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000001552657665726265726174696e672053696c656e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000011526970706c65642044696d656e73696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e527570747572656420447265616d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e5363616c65206f66204265696e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001553686174746572656420436f6f7264696e617465730000000000000000000000000000000000000000000000000000000000000000000000000000000000000f536b657765642053796d6d657472790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f536f6c6974756465277320466163650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d536f6e6963204475616c6974790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000125370617469616c20446973736f6e616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016537065637472616c204d6574616d6f7270686f736973000000000000000000000000000000000000000000000000000000000000000000000000000000000012537562636f6e7363696f7573204672616d650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001053756974656420416e6f6e796d69747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001353757370656e64656420416e696d6174696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000001253796e617074696320457870616e73696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f54656d706f72617279204661636573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000145472616e7369656e74205065726d616e656e63650000000000000000000000000000000000000000000000000000000000000000000000000000000000000012556e69666965642053657061726174696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013556e72657665616c6564204469616c6f67756500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d556e7365656e20576569676874000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010556e73706f6b656e20456e74726f707900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e556e7665696c656420416279737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105665696c65642050726f78696d697479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012566f696420436f6e74656d706c6174696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105765696768746c65737320447269667400000000000000000000000000000000
-----Encoded View---------------
244 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001e40
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000a00
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000a40
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000a80
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000ac0
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000b00
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000b40
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000b80
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000bc0
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000c00
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000c40
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000c80
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000cc0
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000d00
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000d40
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000d80
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000dc0
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000e00
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000e40
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000e80
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000ec0
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000f00
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000f40
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000f80
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000fc0
Arg [28] : 0000000000000000000000000000000000000000000000000000000000001000
Arg [29] : 0000000000000000000000000000000000000000000000000000000000001040
Arg [30] : 0000000000000000000000000000000000000000000000000000000000001080
Arg [31] : 00000000000000000000000000000000000000000000000000000000000010c0
Arg [32] : 0000000000000000000000000000000000000000000000000000000000001100
Arg [33] : 0000000000000000000000000000000000000000000000000000000000001140
Arg [34] : 0000000000000000000000000000000000000000000000000000000000001180
Arg [35] : 00000000000000000000000000000000000000000000000000000000000011c0
Arg [36] : 0000000000000000000000000000000000000000000000000000000000001200
Arg [37] : 0000000000000000000000000000000000000000000000000000000000001240
Arg [38] : 0000000000000000000000000000000000000000000000000000000000001280
Arg [39] : 00000000000000000000000000000000000000000000000000000000000012c0
Arg [40] : 0000000000000000000000000000000000000000000000000000000000001300
Arg [41] : 0000000000000000000000000000000000000000000000000000000000001340
Arg [42] : 0000000000000000000000000000000000000000000000000000000000001380
Arg [43] : 00000000000000000000000000000000000000000000000000000000000013c0
Arg [44] : 0000000000000000000000000000000000000000000000000000000000001400
Arg [45] : 0000000000000000000000000000000000000000000000000000000000001440
Arg [46] : 0000000000000000000000000000000000000000000000000000000000001480
Arg [47] : 00000000000000000000000000000000000000000000000000000000000014c0
Arg [48] : 0000000000000000000000000000000000000000000000000000000000001500
Arg [49] : 0000000000000000000000000000000000000000000000000000000000001540
Arg [50] : 0000000000000000000000000000000000000000000000000000000000001580
Arg [51] : 00000000000000000000000000000000000000000000000000000000000015c0
Arg [52] : 0000000000000000000000000000000000000000000000000000000000001600
Arg [53] : 0000000000000000000000000000000000000000000000000000000000001640
Arg [54] : 0000000000000000000000000000000000000000000000000000000000001680
Arg [55] : 00000000000000000000000000000000000000000000000000000000000016c0
Arg [56] : 0000000000000000000000000000000000000000000000000000000000001700
Arg [57] : 0000000000000000000000000000000000000000000000000000000000001740
Arg [58] : 0000000000000000000000000000000000000000000000000000000000001780
Arg [59] : 00000000000000000000000000000000000000000000000000000000000017c0
Arg [60] : 0000000000000000000000000000000000000000000000000000000000001800
Arg [61] : 0000000000000000000000000000000000000000000000000000000000001840
Arg [62] : 0000000000000000000000000000000000000000000000000000000000001880
Arg [63] : 00000000000000000000000000000000000000000000000000000000000018c0
Arg [64] : 0000000000000000000000000000000000000000000000000000000000001900
Arg [65] : 0000000000000000000000000000000000000000000000000000000000001940
Arg [66] : 0000000000000000000000000000000000000000000000000000000000001980
Arg [67] : 00000000000000000000000000000000000000000000000000000000000019c0
Arg [68] : 0000000000000000000000000000000000000000000000000000000000001a00
Arg [69] : 0000000000000000000000000000000000000000000000000000000000001a40
Arg [70] : 0000000000000000000000000000000000000000000000000000000000001a80
Arg [71] : 0000000000000000000000000000000000000000000000000000000000001ac0
Arg [72] : 0000000000000000000000000000000000000000000000000000000000001b00
Arg [73] : 0000000000000000000000000000000000000000000000000000000000001b40
Arg [74] : 0000000000000000000000000000000000000000000000000000000000001b80
Arg [75] : 0000000000000000000000000000000000000000000000000000000000001bc0
Arg [76] : 0000000000000000000000000000000000000000000000000000000000001c00
Arg [77] : 0000000000000000000000000000000000000000000000000000000000001c40
Arg [78] : 0000000000000000000000000000000000000000000000000000000000001c80
Arg [79] : 0000000000000000000000000000000000000000000000000000000000001cc0
Arg [80] : 0000000000000000000000000000000000000000000000000000000000001d00
Arg [81] : 0000000000000000000000000000000000000000000000000000000000001d40
Arg [82] : 0000000000000000000000000000000000000000000000000000000000001d80
Arg [83] : 0000000000000000000000000000000000000000000000000000000000001dc0
Arg [84] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [85] : 416c746572656420536572656e61646500000000000000000000000000000000
Arg [86] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [87] : 416e746f6e796d6963205374696c6c6e65737300000000000000000000000000
Arg [88] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [89] : 42656e64696e6720456467650000000000000000000000000000000000000000
Arg [90] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [91] : 42696e617279204f70706f736974696f6e000000000000000000000000000000
Arg [92] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [93] : 426c757272656420416574686572000000000000000000000000000000000000
Arg [94] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [95] : 426f756e646c657373204d697261676500000000000000000000000000000000
Arg [96] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [97] : 43697263756c617220526561736f6e696e670000000000000000000000000000
Arg [98] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [99] : 436f6e63656e74726963205265616c6974696573000000000000000000000000
Arg [100] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [101] : 436f6e666c75656e742050657263657074696f6e730000000000000000000000
Arg [102] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [103] : 436f6e747261646963746f72792053796d6d6574727900000000000000000000
Arg [104] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [105] : 436f736d696320457175696c69627269756d0000000000000000000000000000
Arg [106] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [107] : 4469616c656374696320536f6c69747564650000000000000000000000000000
Arg [108] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [109] : 4469616c6f6769632053656c6600000000000000000000000000000000000000
Arg [110] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [111] : 4469737369706174696e672053796d6d65747279000000000000000000000000
Arg [112] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [113] : 446973736f6c76696e67204f7264657200000000000000000000000000000000
Arg [114] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [115] : 446973736f6e616e7420476c6974636800000000000000000000000000000000
Arg [116] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [117] : 44697374616e7420566f69636500000000000000000000000000000000000000
Arg [118] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [119] : 446973746f72746564205265616c697479000000000000000000000000000000
Arg [120] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [121] : 446f7070656c6761cc886e6765722048617a6500000000000000000000000000
Arg [122] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [123] : 4472696674696e6720456e69676d610000000000000000000000000000000000
Arg [124] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [125] : 4563686f696e6720416273656e63650000000000000000000000000000000000
Arg [126] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [127] : 456e74616e676c65642053656c76657300000000000000000000000000000000
Arg [128] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [129] : 4570697374656d69632053696e67756c61726974790000000000000000000000
Arg [130] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [131] : 457175696e652052657665726965000000000000000000000000000000000000
Arg [132] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [133] : 45726f64696e67204d65616e696e670000000000000000000000000000000000
Arg [134] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [135] : 4578697374656e7469616c204563686f00000000000000000000000000000000
Arg [136] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [137] : 466164696e67204d656d6f727900000000000000000000000000000000000000
Arg [138] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [139] : 466c69636b6572696e672050617261646f780000000000000000000000000000
Arg [140] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [141] : 466f72676f7474656e20486f72697a6f6e000000000000000000000000000000
Arg [142] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [143] : 486f6c6f677261706869632053656c6600000000000000000000000000000000
Arg [144] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [145] : 496c6c75736f7279204365727461696e74790000000000000000000000000000
Arg [146] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [147] : 496d6167696e6564204475616c69747900000000000000000000000000000000
Arg [148] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [149] : 496d706f737369626c6520506572737065637469766500000000000000000000
Arg [150] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [151] : 496e636f6d70726568656e7369626c65205369676e616c000000000000000000
Arg [152] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [153] : 496e746572776f76656e20446973736f6e616e63650000000000000000000000
Arg [154] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [155] : 496e766572746564205265736f6e616e63650000000000000000000000000000
Arg [156] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [157] : 4972726174696f6e616c20466f63757300000000000000000000000000000000
Arg [158] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [159] : 4c69667465642054656e73696f6e000000000000000000000000000000000000
Arg [160] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [161] : 4d656c74696e67205265616c6974790000000000000000000000000000000000
Arg [162] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [163] : 4d657267696e67204175746f6e6f6d7900000000000000000000000000000000
Arg [164] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [165] : 4d65746120456e74616e676c656d656e74000000000000000000000000000000
Arg [166] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [167] : 4d6f6e61646963204a6f75726e65790000000000000000000000000000000000
Arg [168] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [169] : 4d756c74697665727365205375706572706f736974696f6e0000000000000000
Arg [170] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [171] : 4e65676174697665205370616365000000000000000000000000000000000000
Arg [172] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [173] : 4f6273637572656420496e66696e697479000000000000000000000000000000
Arg [174] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [175] : 4f7363696c6c6174696e6720506172616469676d000000000000000000000000
Arg [176] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [177] : 506172616c6c656c205265616368000000000000000000000000000000000000
Arg [178] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [179] : 506172746974696f6e65642053656c6600000000000000000000000000000000
Arg [180] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [181] : 5065726970686572616c20566973696f6e000000000000000000000000000000
Arg [182] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [183] : 50657270657475616c20436f676e6974696f6e00000000000000000000000000
Arg [184] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [185] : 5068616e746f6d20417869730000000000000000000000000000000000000000
Arg [186] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [187] : 5175616e74756d204f6273657276657273000000000000000000000000000000
Arg [188] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [189] : 5265636970726f63616c204563686f0000000000000000000000000000000000
Arg [190] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [191] : 526563757273697665204d697261676500000000000000000000000000000000
Arg [192] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [193] : 5265646163746564205472757468730000000000000000000000000000000000
Arg [194] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [195] : 5265667261637465642041776172656e65737300000000000000000000000000
Arg [196] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [197] : 52657665726265726174696e672053696c656e63650000000000000000000000
Arg [198] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [199] : 526970706c65642044696d656e73696f6e000000000000000000000000000000
Arg [200] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [201] : 527570747572656420447265616d000000000000000000000000000000000000
Arg [202] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [203] : 5363616c65206f66204265696e67000000000000000000000000000000000000
Arg [204] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [205] : 53686174746572656420436f6f7264696e617465730000000000000000000000
Arg [206] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [207] : 536b657765642053796d6d657472790000000000000000000000000000000000
Arg [208] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [209] : 536f6c6974756465277320466163650000000000000000000000000000000000
Arg [210] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [211] : 536f6e6963204475616c69747900000000000000000000000000000000000000
Arg [212] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [213] : 5370617469616c20446973736f6e616e63650000000000000000000000000000
Arg [214] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [215] : 537065637472616c204d6574616d6f7270686f73697300000000000000000000
Arg [216] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [217] : 537562636f6e7363696f7573204672616d650000000000000000000000000000
Arg [218] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [219] : 53756974656420416e6f6e796d69747900000000000000000000000000000000
Arg [220] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [221] : 53757370656e64656420416e696d6174696f6e00000000000000000000000000
Arg [222] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [223] : 53796e617074696320457870616e73696f6e0000000000000000000000000000
Arg [224] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [225] : 54656d706f726172792046616365730000000000000000000000000000000000
Arg [226] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [227] : 5472616e7369656e74205065726d616e656e6365000000000000000000000000
Arg [228] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [229] : 556e69666965642053657061726174696f6e0000000000000000000000000000
Arg [230] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [231] : 556e72657665616c6564204469616c6f67756500000000000000000000000000
Arg [232] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [233] : 556e7365656e2057656967687400000000000000000000000000000000000000
Arg [234] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [235] : 556e73706f6b656e20456e74726f707900000000000000000000000000000000
Arg [236] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [237] : 556e7665696c6564204162797373000000000000000000000000000000000000
Arg [238] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [239] : 5665696c65642050726f78696d69747900000000000000000000000000000000
Arg [240] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [241] : 566f696420436f6e74656d706c6174696f6e0000000000000000000000000000
Arg [242] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [243] : 5765696768746c65737320447269667400000000000000000000000000000000
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.