Overview
TokenID
2356
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CRY
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 20 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
123456789101112131415161718// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./ERC721Tradable.sol";contract CRY is ERC721Tradable {constructor(address _proxyRegistryAddress) ERC721Tradable("CRW", "CRY", _proxyRegistryAddress){}function baseTokenURI() override public pure returns (string memory) {return "https://api.cryppo.io/assets/";}function contractURI() public pure returns (string memory) {return "https://api.cryppo.io/collection/";}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.*/constructor () {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IERC721.sol";import "./IERC721Receiver.sol";import "./extensions/IERC721Metadata.sol";import "../../utils/Address.sol";import "../../utils/Context.sol";import "../../utils/Strings.sol";import "../../utils/introspection/ERC165.sol";/*** @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including* the Metadata extension, but not including the Enumerable extension, which is available separately as* {ERC721Enumerable}.*/contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {using Address for address;using Strings for uint256;// Token namestring private _name;// Token symbolstring private _symbol;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @dev Required interface of an ERC721 compliant contract.*/interface IERC721 is IERC165 {/*** @dev Emitted when `tokenId` token is transferred from `from` to `to`.*/event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.*/event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.*/event ApprovalForAll(address indexed owner, address indexed operator, bool approved);/**
123456789101112131415161718192021// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @title ERC721 token receiver interface* @dev Interface for any contract that wants to support safeTransfers* from ERC721 asset contracts.*/interface IERC721Receiver {/*** @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}* by `operator` from `from`, this function is called.** It must return its Solidity selector to confirm the token transfer.* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.** The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.*/function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../ERC721.sol";import "./IERC721Enumerable.sol";/*** @dev This implements an optional extension of {ERC721} defined in the EIP that adds* enumerability of all the token ids in the contract as well as all token ids owned by each* account.*/abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {// Mapping from owner to list of owned token IDsmapping(address => mapping(uint256 => uint256)) private _ownedTokens;// Mapping from token ID to index of the owner tokens listmapping(uint256 => uint256) private _ownedTokensIndex;// Array with all token ids, used for enumerationuint256[] private _allTokens;// Mapping from token id to position in the allTokens arraymapping(uint256 => uint256) private _allTokensIndex;/**
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional enumeration extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Enumerable is IERC721 {/*** @dev Returns the total amount of tokens stored by the contract.*/function totalSupply() external view returns (uint256);/*** @dev Returns a token ID owned by `owner` at a given `index` of its token list.* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.*/function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);/*** @dev Returns a token ID at a given `index` of all the tokens stored by the contract.* Use along with {totalSupply} to enumerate all tokens.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional metadata extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Metadata is IERC721 {/*** @dev Returns the token collection name.*/function name() external view returns (string memory);/*** @dev Returns the token collection symbol.*/function symbol() external view returns (string memory);/*** @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.*/function tokenURI(uint256 tokenId) external view returns (string memory);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*/function isContract(address account) internal view returns (bool) {
123456789101112131415161718192021222324// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev String operations.*/library Strings {bytes16 private constant alphabet = "0123456789abcdef";/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;temp /= 10;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IERC165.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check* for the additional interface id that will be supported. For example:** ```solidity* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);* }* ```** Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {return interfaceId == type(IERC165).interfaceId;
123456789101112131415161718192021222324// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;// CAUTION// This version of SafeMath should only be used with Solidity 0.8 or later,// because it relies on the compiler's built in overflow checks./*** @dev Wrappers over Solidity's arithmetic operations.** NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler* now has built in overflow checking.*/library SafeMath {/*** @dev Returns the addition of two unsigned integers, with an overflow flag.** _Available since v3.4._*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {unchecked {uint256 c = a + b;if (c < a) return (false, 0);return (true, c);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "openzeppelin-solidity/contracts/token/ERC721/ERC721.sol";import "openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol";import "openzeppelin-solidity/contracts/access/Ownable.sol";import "openzeppelin-solidity/contracts/utils/math/SafeMath.sol";import "openzeppelin-solidity/contracts/utils/Strings.sol";import "./common/meta-transactions/ContentMixin.sol";import "./common/meta-transactions/NativeMetaTransaction.sol";contract OwnableDelegateProxy {}contract ProxyRegistry {mapping(address => OwnableDelegateProxy) public proxies;}/*** @title ERC721Tradable* ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.*/abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable {using SafeMath for uint256;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;abstract contract ContextMixin {function msgSender()internalviewreturns (address payable sender){if (msg.sender == address(this)) {bytes memory array = msg.data;uint256 index = msg.data.length;assembly {// Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.sender := and(mload(add(array, index)),0xffffffffffffffffffffffffffffffffffffffff)}} else {sender = payable(msg.sender);}return sender;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import {Initializable} from "./Initializable.sol";contract EIP712Base is Initializable {struct EIP712Domain {string name;string version;address verifyingContract;bytes32 salt;}string constant public ERC712_VERSION = "1";bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(bytes("EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"));bytes32 internal domainSeperator;// supposed to be called once while initializing.// one of the contracts that inherits this contract follows proxy pattern// so it is not possible to do this in a constructor
12345678910111213// SPDX-License-Identifier: MITpragma solidity ^0.8.0;contract Initializable {bool inited = false;modifier initializer() {require(!inited, "already inited");_;inited = true;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import {SafeMath} from "openzeppelin-solidity/contracts/utils/math/SafeMath.sol";import {EIP712Base} from "./EIP712Base.sol";contract NativeMetaTransaction is EIP712Base {using SafeMath for uint256;bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(bytes("MetaTransaction(uint256 nonce,address from,bytes functionSignature)"));event MetaTransactionExecuted(address userAddress,address payable relayerAddress,bytes functionSignature);mapping(address => uint256) nonces;/** Meta transaction structure.* No point of including value field here as if user is doing value transfer then he has the funds to pay for gas* He should call the desired function directly in that case.*/
123456789101112131415161718192021{"remappings": [],"optimizer": {"enabled": true,"runs": 20},"evmVersion": "london","libraries": {},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600a805460ff191690556000600f553480156200002057600080fd5b506040516200267638038062002676833981016040819052620000439162000366565b6040518060400160405280600381526020016243525760e81b8152506040518060400160405280600381526020016243525960e81b815250828282816000908051906020019062000096929190620002c0565b508051620000ac906001906020840190620002c0565b5050506000620000c16200013f60201b60201c565b600d80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600e80546001600160a01b0319166001600160a01b03831617905562000135836200015b565b50505050620003d5565b600062000156620001bf60201b62000ff81760201c565b905090565b600a5460ff1615620001a45760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620001af816200021e565b50600a805460ff19166001179055565b6000333014156200021857600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200021b9050565b50335b90565b6040518060800160405280604f815260200162002627604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b828054620002ce9062000398565b90600052602060002090601f016020900481019282620002f257600085556200033d565b82601f106200030d57805160ff19168380011785556200033d565b828001600101855582156200033d579182015b828111156200033d57825182559160200191906001019062000320565b506200034b9291506200034f565b5090565b5b808211156200034b576000815560010162000350565b6000602082840312156200037957600080fd5b81516001600160a01b03811681146200039157600080fd5b9392505050565b600181811c90821680620003ad57607f821691505b60208210811415620003cf57634e487b7160e01b600052602260045260246000fd5b50919050565b61224280620003e56000396000f3fe60806040526004361061013c5760003560e01c806301ffc9a71461014157806306fdde0314610176578063081812fc14610198578063095ea7b3146101c55780630c53c51c146101e75780630f7e5970146101fa57806318160ddd1461022757806320379ee51461024657806323b872dd1461025b5780632d0335ab1461027b5780632f745c59146102b15780633408e470146102d157806342842e0e146102e45780634f6ccce7146103045780636352211e1461032457806370a0823114610344578063715018a614610364578063755edd17146103795780638da5cb5b1461039957806395d89b41146103ae578063a22cb465146103c3578063b88d4fde146103e3578063c87b56dd14610403578063d547cfb714610423578063e8a3d48514610438578063e985e9c51461044d578063f2fde38b1461046d575b600080fd5b34801561014d57600080fd5b5061016161015c366004611b58565b61048d565b60405190151581526020015b60405180910390f35b34801561018257600080fd5b5061018b6104b8565b60405161016d9190611bcd565b3480156101a457600080fd5b506101b86101b3366004611be0565b61054a565b60405161016d9190611bf9565b3480156101d157600080fd5b506101e56101e0366004611c22565b6105d7565b005b61018b6101f5366004611cf0565b6106fa565b34801561020657600080fd5b5061018b604051806040016040528060018152602001603160f81b81525081565b34801561023357600080fd5b506008545b60405190815260200161016d565b34801561025257600080fd5b50600b54610238565b34801561026757600080fd5b506101e5610276366004611d6d565b6108e3565b34801561028757600080fd5b50610238610296366004611dae565b6001600160a01b03166000908152600c602052604090205490565b3480156102bd57600080fd5b506102386102cc366004611c22565b61091b565b3480156102dd57600080fd5b5046610238565b3480156102f057600080fd5b506101e56102ff366004611d6d565b6109b1565b34801561031057600080fd5b5061023861031f366004611be0565b6109cc565b34801561033057600080fd5b506101b861033f366004611be0565b610a5f565b34801561035057600080fd5b5061023861035f366004611dae565b610ad6565b34801561037057600080fd5b506101e5610b5d565b34801561038557600080fd5b506101e5610394366004611dae565b610be6565b3480156103a557600080fd5b506101b8610c47565b3480156103ba57600080fd5b5061018b610c56565b3480156103cf57600080fd5b506101e56103de366004611dcb565b610c65565b3480156103ef57600080fd5b506101e56103fe366004611e09565b610d63565b34801561040f57600080fd5b5061018b61041e366004611be0565b610da2565b34801561042f57600080fd5b5061018b610ddc565b34801561044457600080fd5b5061018b610e13565b34801561045957600080fd5b50610161610468366004611e74565b610e33565b34801561047957600080fd5b506101e5610488366004611dae565b610ef8565b60006001600160e01b0319821663780e9d6360e01b14806104b257506104b282611055565b92915050565b6060600080546104c790611ea2565b80601f01602080910402602001604051908101604052809291908181526020018280546104f390611ea2565b80156105405780601f1061051557610100808354040283529160200191610540565b820191906000526020600020905b81548152906001019060200180831161052357829003601f168201915b5050505050905090565b6000610555826110a5565b6105bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105e282610a5f565b9050806001600160a01b0316836001600160a01b031614156106505760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105b2565b806001600160a01b03166106626110c2565b6001600160a01b0316148061067e575061067e816104686110c2565b6106eb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016105b2565b6106f583836110d1565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610738878287878761113f565b61078e5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b60648201526084016105b2565b6001600160a01b0387166000908152600c60205260409020546107b290600161122f565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061080290899033908a90611edd565b60405180910390a1600080306001600160a01b0316888a60405160200161082a929190611f12565b60408051601f198184030181529082905261084491611f44565b6000604051808303816000865af19150503d8060008114610881576040519150601f19603f3d011682016040523d82523d6000602084013e610886565b606091505b5091509150816108d75760405162461bcd60e51b815260206004820152601c60248201527b119d5b98dd1a5bdb8818d85b1b081b9bdd081cdd58d8d95cdcd99d5b60221b60448201526064016105b2565b98975050505050505050565b6108f46108ee6110c2565b82611242565b6109105760405162461bcd60e51b81526004016105b290611f60565b6106f5838383611304565b600061092683610ad6565b82106109885760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105b2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106f583838360405180602001604052806000815250610d63565b60006109d760085490565b8210610a3a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105b2565b60088281548110610a4d57610a4d611fb1565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104b25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105b2565b60006001600160a01b038216610b415760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105b2565b506001600160a01b031660009081526003602052604090205490565b610b656110c2565b6001600160a01b0316610b76610c47565b6001600160a01b031614610b9c5760405162461bcd60e51b81526004016105b290611fc7565b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b610bee6110c2565b6001600160a01b0316610bff610c47565b6001600160a01b031614610c255760405162461bcd60e51b81526004016105b290611fc7565b6000610c2f6114af565b9050610c3b82826114c0565b610c436115fe565b5050565b600d546001600160a01b031690565b6060600180546104c790611ea2565b610c6d6110c2565b6001600160a01b0316826001600160a01b03161415610cca5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016105b2565b8060056000610cd76110c2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d1b6110c2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d57911515815260200190565b60405180910390a35050565b610d74610d6e6110c2565b83611242565b610d905760405162461bcd60e51b81526004016105b290611f60565b610d9c84848484611615565b50505050565b6060610dac610ddc565b610db583611648565b604051602001610dc6929190611ffc565b6040516020818303038152906040529050919050565b60408051808201909152601d81527f68747470733a2f2f6170692e63727970706f2e696f2f6173736574732f000000602082015290565b60606040518060600160405280602181526020016121ec60219139905090565b600e5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c455279190610e6c908890600401611bf9565b602060405180830381865afa158015610e89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ead919061202b565b6001600160a01b03161415610ec65760019150506104b2565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b610f006110c2565b6001600160a01b0316610f11610c47565b6001600160a01b031614610f375760405162461bcd60e51b81526004016105b290611fc7565b6001600160a01b038116610f9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b2565b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60003330141561104f57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506110529050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b148061108657506001600160e01b03198216635b5e139f60e01b145b806104b257506301ffc9a760e01b6001600160e01b03198316146104b2565b6000908152600260205260409020546001600160a01b0316151590565b60006110cc610ff8565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110682610a5f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166111a55760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b60648201526084016105b2565b60016111b86111b387611745565b6117c2565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611206573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b600061123b828461205e565b9392505050565b600061124d826110a5565b6112ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b2565b60006112b983610a5f565b9050806001600160a01b0316846001600160a01b031614806112f45750836001600160a01b03166112e98461054a565b6001600160a01b0316145b80610ef05750610ef08185610e33565b826001600160a01b031661131782610a5f565b6001600160a01b03161461137f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105b2565b6001600160a01b0382166113e15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b2565b6113ec8383836117f2565b6113f76000826110d1565b6001600160a01b0383166000908152600360205260408120805460019290611420908490612076565b90915550506001600160a01b038216600090815260036020526040812080546001929061144e90849061205e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600f546000906110cc90600161122f565b6001600160a01b0382166115165760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105b2565b61151f816110a5565b1561156b5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016105b2565b611577600083836117f2565b6001600160a01b03821660009081526003602052604081208054600192906115a090849061205e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f805490600061160e8361208d565b9190505550565b611620848484611304565b61162c848484846118aa565b610d9c5760405162461bcd60e51b81526004016105b2906120a8565b60608161166c5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561169657806116808161208d565b915061168f9050600a83612110565b9150611670565b6000816001600160401b038111156116b0576116b0611c4e565b6040519080825280601f01601f1916602001820160405280156116da576020820181803683370190505b5090505b8415610ef0576116ef600183612076565b91506116fc600a86612124565b61170790603061205e565b60f81b81838151811061171c5761171c611fb1565b60200101906001600160f81b031916908160001a90535061173e600a86612110565b94506116de565b60006040518060800160405280604381526020016121a960439139805160209182012083518483015160408087015180519086012090516117a5950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006117cd600b5490565b60405161190160f01b60208201526022810191909152604281018390526062016117a5565b6001600160a01b03831661184d5761184881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611870565b816001600160a01b0316836001600160a01b0316146118705761187083826119af565b6001600160a01b038216611887576106f581611a4c565b826001600160a01b0316826001600160a01b0316146106f5576106f58282611afb565b60006001600160a01b0384163b156119a457836001600160a01b031663150b7a026118d36110c2565b8786866040518563ffffffff1660e01b81526004016118f59493929190612138565b6020604051808303816000875af1925050508015611930575060408051601f3d908101601f1916820190925261192d91810190612175565b60015b61198a573d80801561195e576040519150601f19603f3d011682016040523d82523d6000602084013e611963565b606091505b5080516119825760405162461bcd60e51b81526004016105b2906120a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ef0565b506001949350505050565b600060016119bc84610ad6565b6119c69190612076565b600083815260076020526040902054909150808214611a19576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a5e90600190612076565b60008381526009602052604081205460088054939450909284908110611a8657611a86611fb1565b906000526020600020015490508060088381548110611aa757611aa7611fb1565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611adf57611adf612192565b6001900381819060005260206000200160009055905550505050565b6000611b0683610ad6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114611b5557600080fd5b50565b600060208284031215611b6a57600080fd5b813561123b81611b3f565b60005b83811015611b90578181015183820152602001611b78565b83811115610d9c5750506000910152565b60008151808452611bb9816020860160208601611b75565b601f01601f19169290920160200192915050565b60208152600061123b6020830184611ba1565b600060208284031215611bf257600080fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b0381168114611b5557600080fd5b60008060408385031215611c3557600080fd5b8235611c4081611c0d565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112611c7557600080fd5b81356001600160401b0380821115611c8f57611c8f611c4e565b604051601f8301601f19908116603f01168101908282118183101715611cb757611cb7611c4e565b81604052838152866020858801011115611cd057600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a08688031215611d0857600080fd5b8535611d1381611c0d565b945060208601356001600160401b03811115611d2e57600080fd5b611d3a88828901611c64565b9450506040860135925060608601359150608086013560ff81168114611d5f57600080fd5b809150509295509295909350565b600080600060608486031215611d8257600080fd5b8335611d8d81611c0d565b92506020840135611d9d81611c0d565b929592945050506040919091013590565b600060208284031215611dc057600080fd5b813561123b81611c0d565b60008060408385031215611dde57600080fd5b8235611de981611c0d565b915060208301358015158114611dfe57600080fd5b809150509250929050565b60008060008060808587031215611e1f57600080fd5b8435611e2a81611c0d565b93506020850135611e3a81611c0d565b92506040850135915060608501356001600160401b03811115611e5c57600080fd5b611e6887828801611c64565b91505092959194509250565b60008060408385031215611e8757600080fd5b8235611e9281611c0d565b91506020830135611dfe81611c0d565b600181811c90821680611eb657607f821691505b60208210811415611ed757634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b03848116825283166020820152606060408201819052600090611f0990830184611ba1565b95945050505050565b60008351611f24818460208801611b75565b60609390931b6001600160601b0319169190920190815260140192915050565b60008251611f56818460208701611b75565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000835161200e818460208801611b75565b835190830190612022818360208801611b75565b01949350505050565b60006020828403121561203d57600080fd5b815161123b81611c0d565b634e487b7160e01b600052601160045260246000fd5b6000821982111561207157612071612048565b500190565b60008282101561208857612088612048565b500390565b60006000198214156120a1576120a1612048565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261211f5761211f6120fa565b500490565b600082612133576121336120fa565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061216b90830184611ba1565b9695505050505050565b60006020828403121561218757600080fd5b815161123b81611b3f565b634e487b7160e01b600052603160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f6170692e63727970706f2e696f2f636f6c6c656374696f6e2fa2646970667358221220020ccdec9e2c08234f69c9fd6c25fbe947c44571259744cac2c26831382bd1a664736f6c634300080a0033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Deployed Bytecode
0x60806040526004361061013c5760003560e01c806301ffc9a71461014157806306fdde0314610176578063081812fc14610198578063095ea7b3146101c55780630c53c51c146101e75780630f7e5970146101fa57806318160ddd1461022757806320379ee51461024657806323b872dd1461025b5780632d0335ab1461027b5780632f745c59146102b15780633408e470146102d157806342842e0e146102e45780634f6ccce7146103045780636352211e1461032457806370a0823114610344578063715018a614610364578063755edd17146103795780638da5cb5b1461039957806395d89b41146103ae578063a22cb465146103c3578063b88d4fde146103e3578063c87b56dd14610403578063d547cfb714610423578063e8a3d48514610438578063e985e9c51461044d578063f2fde38b1461046d575b600080fd5b34801561014d57600080fd5b5061016161015c366004611b58565b61048d565b60405190151581526020015b60405180910390f35b34801561018257600080fd5b5061018b6104b8565b60405161016d9190611bcd565b3480156101a457600080fd5b506101b86101b3366004611be0565b61054a565b60405161016d9190611bf9565b3480156101d157600080fd5b506101e56101e0366004611c22565b6105d7565b005b61018b6101f5366004611cf0565b6106fa565b34801561020657600080fd5b5061018b604051806040016040528060018152602001603160f81b81525081565b34801561023357600080fd5b506008545b60405190815260200161016d565b34801561025257600080fd5b50600b54610238565b34801561026757600080fd5b506101e5610276366004611d6d565b6108e3565b34801561028757600080fd5b50610238610296366004611dae565b6001600160a01b03166000908152600c602052604090205490565b3480156102bd57600080fd5b506102386102cc366004611c22565b61091b565b3480156102dd57600080fd5b5046610238565b3480156102f057600080fd5b506101e56102ff366004611d6d565b6109b1565b34801561031057600080fd5b5061023861031f366004611be0565b6109cc565b34801561033057600080fd5b506101b861033f366004611be0565b610a5f565b34801561035057600080fd5b5061023861035f366004611dae565b610ad6565b34801561037057600080fd5b506101e5610b5d565b34801561038557600080fd5b506101e5610394366004611dae565b610be6565b3480156103a557600080fd5b506101b8610c47565b3480156103ba57600080fd5b5061018b610c56565b3480156103cf57600080fd5b506101e56103de366004611dcb565b610c65565b3480156103ef57600080fd5b506101e56103fe366004611e09565b610d63565b34801561040f57600080fd5b5061018b61041e366004611be0565b610da2565b34801561042f57600080fd5b5061018b610ddc565b34801561044457600080fd5b5061018b610e13565b34801561045957600080fd5b50610161610468366004611e74565b610e33565b34801561047957600080fd5b506101e5610488366004611dae565b610ef8565b60006001600160e01b0319821663780e9d6360e01b14806104b257506104b282611055565b92915050565b6060600080546104c790611ea2565b80601f01602080910402602001604051908101604052809291908181526020018280546104f390611ea2565b80156105405780601f1061051557610100808354040283529160200191610540565b820191906000526020600020905b81548152906001019060200180831161052357829003601f168201915b5050505050905090565b6000610555826110a5565b6105bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105e282610a5f565b9050806001600160a01b0316836001600160a01b031614156106505760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105b2565b806001600160a01b03166106626110c2565b6001600160a01b0316148061067e575061067e816104686110c2565b6106eb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016105b2565b6106f583836110d1565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610738878287878761113f565b61078e5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b60648201526084016105b2565b6001600160a01b0387166000908152600c60205260409020546107b290600161122f565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061080290899033908a90611edd565b60405180910390a1600080306001600160a01b0316888a60405160200161082a929190611f12565b60408051601f198184030181529082905261084491611f44565b6000604051808303816000865af19150503d8060008114610881576040519150601f19603f3d011682016040523d82523d6000602084013e610886565b606091505b5091509150816108d75760405162461bcd60e51b815260206004820152601c60248201527b119d5b98dd1a5bdb8818d85b1b081b9bdd081cdd58d8d95cdcd99d5b60221b60448201526064016105b2565b98975050505050505050565b6108f46108ee6110c2565b82611242565b6109105760405162461bcd60e51b81526004016105b290611f60565b6106f5838383611304565b600061092683610ad6565b82106109885760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105b2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106f583838360405180602001604052806000815250610d63565b60006109d760085490565b8210610a3a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105b2565b60088281548110610a4d57610a4d611fb1565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104b25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105b2565b60006001600160a01b038216610b415760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105b2565b506001600160a01b031660009081526003602052604090205490565b610b656110c2565b6001600160a01b0316610b76610c47565b6001600160a01b031614610b9c5760405162461bcd60e51b81526004016105b290611fc7565b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b610bee6110c2565b6001600160a01b0316610bff610c47565b6001600160a01b031614610c255760405162461bcd60e51b81526004016105b290611fc7565b6000610c2f6114af565b9050610c3b82826114c0565b610c436115fe565b5050565b600d546001600160a01b031690565b6060600180546104c790611ea2565b610c6d6110c2565b6001600160a01b0316826001600160a01b03161415610cca5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016105b2565b8060056000610cd76110c2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d1b6110c2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d57911515815260200190565b60405180910390a35050565b610d74610d6e6110c2565b83611242565b610d905760405162461bcd60e51b81526004016105b290611f60565b610d9c84848484611615565b50505050565b6060610dac610ddc565b610db583611648565b604051602001610dc6929190611ffc565b6040516020818303038152906040529050919050565b60408051808201909152601d81527f68747470733a2f2f6170692e63727970706f2e696f2f6173736574732f000000602082015290565b60606040518060600160405280602181526020016121ec60219139905090565b600e5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c455279190610e6c908890600401611bf9565b602060405180830381865afa158015610e89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ead919061202b565b6001600160a01b03161415610ec65760019150506104b2565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b610f006110c2565b6001600160a01b0316610f11610c47565b6001600160a01b031614610f375760405162461bcd60e51b81526004016105b290611fc7565b6001600160a01b038116610f9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b2565b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60003330141561104f57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506110529050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b148061108657506001600160e01b03198216635b5e139f60e01b145b806104b257506301ffc9a760e01b6001600160e01b03198316146104b2565b6000908152600260205260409020546001600160a01b0316151590565b60006110cc610ff8565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110682610a5f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166111a55760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b60648201526084016105b2565b60016111b86111b387611745565b6117c2565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611206573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b600061123b828461205e565b9392505050565b600061124d826110a5565b6112ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b2565b60006112b983610a5f565b9050806001600160a01b0316846001600160a01b031614806112f45750836001600160a01b03166112e98461054a565b6001600160a01b0316145b80610ef05750610ef08185610e33565b826001600160a01b031661131782610a5f565b6001600160a01b03161461137f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105b2565b6001600160a01b0382166113e15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b2565b6113ec8383836117f2565b6113f76000826110d1565b6001600160a01b0383166000908152600360205260408120805460019290611420908490612076565b90915550506001600160a01b038216600090815260036020526040812080546001929061144e90849061205e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600f546000906110cc90600161122f565b6001600160a01b0382166115165760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105b2565b61151f816110a5565b1561156b5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016105b2565b611577600083836117f2565b6001600160a01b03821660009081526003602052604081208054600192906115a090849061205e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f805490600061160e8361208d565b9190505550565b611620848484611304565b61162c848484846118aa565b610d9c5760405162461bcd60e51b81526004016105b2906120a8565b60608161166c5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561169657806116808161208d565b915061168f9050600a83612110565b9150611670565b6000816001600160401b038111156116b0576116b0611c4e565b6040519080825280601f01601f1916602001820160405280156116da576020820181803683370190505b5090505b8415610ef0576116ef600183612076565b91506116fc600a86612124565b61170790603061205e565b60f81b81838151811061171c5761171c611fb1565b60200101906001600160f81b031916908160001a90535061173e600a86612110565b94506116de565b60006040518060800160405280604381526020016121a960439139805160209182012083518483015160408087015180519086012090516117a5950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006117cd600b5490565b60405161190160f01b60208201526022810191909152604281018390526062016117a5565b6001600160a01b03831661184d5761184881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611870565b816001600160a01b0316836001600160a01b0316146118705761187083826119af565b6001600160a01b038216611887576106f581611a4c565b826001600160a01b0316826001600160a01b0316146106f5576106f58282611afb565b60006001600160a01b0384163b156119a457836001600160a01b031663150b7a026118d36110c2565b8786866040518563ffffffff1660e01b81526004016118f59493929190612138565b6020604051808303816000875af1925050508015611930575060408051601f3d908101601f1916820190925261192d91810190612175565b60015b61198a573d80801561195e576040519150601f19603f3d011682016040523d82523d6000602084013e611963565b606091505b5080516119825760405162461bcd60e51b81526004016105b2906120a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ef0565b506001949350505050565b600060016119bc84610ad6565b6119c69190612076565b600083815260076020526040902054909150808214611a19576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a5e90600190612076565b60008381526009602052604081205460088054939450909284908110611a8657611a86611fb1565b906000526020600020015490508060088381548110611aa757611aa7611fb1565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611adf57611adf612192565b6001900381819060005260206000200160009055905550505050565b6000611b0683610ad6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114611b5557600080fd5b50565b600060208284031215611b6a57600080fd5b813561123b81611b3f565b60005b83811015611b90578181015183820152602001611b78565b83811115610d9c5750506000910152565b60008151808452611bb9816020860160208601611b75565b601f01601f19169290920160200192915050565b60208152600061123b6020830184611ba1565b600060208284031215611bf257600080fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b0381168114611b5557600080fd5b60008060408385031215611c3557600080fd5b8235611c4081611c0d565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112611c7557600080fd5b81356001600160401b0380821115611c8f57611c8f611c4e565b604051601f8301601f19908116603f01168101908282118183101715611cb757611cb7611c4e565b81604052838152866020858801011115611cd057600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a08688031215611d0857600080fd5b8535611d1381611c0d565b945060208601356001600160401b03811115611d2e57600080fd5b611d3a88828901611c64565b9450506040860135925060608601359150608086013560ff81168114611d5f57600080fd5b809150509295509295909350565b600080600060608486031215611d8257600080fd5b8335611d8d81611c0d565b92506020840135611d9d81611c0d565b929592945050506040919091013590565b600060208284031215611dc057600080fd5b813561123b81611c0d565b60008060408385031215611dde57600080fd5b8235611de981611c0d565b915060208301358015158114611dfe57600080fd5b809150509250929050565b60008060008060808587031215611e1f57600080fd5b8435611e2a81611c0d565b93506020850135611e3a81611c0d565b92506040850135915060608501356001600160401b03811115611e5c57600080fd5b611e6887828801611c64565b91505092959194509250565b60008060408385031215611e8757600080fd5b8235611e9281611c0d565b91506020830135611dfe81611c0d565b600181811c90821680611eb657607f821691505b60208210811415611ed757634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b03848116825283166020820152606060408201819052600090611f0990830184611ba1565b95945050505050565b60008351611f24818460208801611b75565b60609390931b6001600160601b0319169190920190815260140192915050565b60008251611f56818460208701611b75565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000835161200e818460208801611b75565b835190830190612022818360208801611b75565b01949350505050565b60006020828403121561203d57600080fd5b815161123b81611c0d565b634e487b7160e01b600052601160045260246000fd5b6000821982111561207157612071612048565b500190565b60008282101561208857612088612048565b500390565b60006000198214156120a1576120a1612048565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261211f5761211f6120fa565b500490565b600082612133576121336120fa565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061216b90830184611ba1565b9695505050505050565b60006020828403121561218757600080fd5b815161123b81611b3f565b634e487b7160e01b600052603160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f6170692e63727970706f2e696f2f636f6c6c656374696f6e2fa2646970667358221220020ccdec9e2c08234f69c9fd6c25fbe947c44571259744cac2c26831382bd1a664736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Loading...
Loading
Loading...
Loading
[ 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.