Polygon Sponsored slots available. Book your slot here!
ERC-721
Overview
Max Total Supply
0 MSP
Holders
379,305
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MSPLoading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x499a2A95...3A8bac1E7 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
ERC721Wrapper
Compiler Version
v0.8.3+commit.8d00100c
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Based on OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "../utils/AddressUpgradeable.sol"; import "../utils/OwnableSansConstructor.sol"; import "../utils/Strings.sol"; import "../ERC1155/IERC1155Stardust.sol"; import "../ERC165/ERC165.sol"; import "./ERC721/extensions/IERC721Metadata.sol"; import "./ERC721/IERC721Receiver.sol"; contract ERC721Wrapper is Ownable, ERC165, IERC721Metadata { using AddressUpgradeable for address; IERC1155Stardust public erc1155; string public override name; string public override symbol; string public contractURI; uint256 private _gameId; // True if OpenSea's Polygon proxy contract is given authority over this contract bool private _OSApproved; address private OPENSEA_PROXY = 0x58807baD0B376efc12F5AD86aAc70E78ed67deaE; // Mapping from tokenId to approved address mapping(uint256 => address) private _tokenApprovals; constructor( address erc1155_, uint256 gameId, string memory name_, string memory symbol_, bool approveOS ) { erc1155 = IERC1155Stardust(erc1155_); _transferOwnership(erc1155.getGameOwner(gameId)); name = name_; symbol = symbol_; _gameId = gameId; _OSApproved = approveOS; } function setContractURI(string memory newURI) public onlyOwner { contractURI = newURI; } function setName(string memory newName) public onlyOwner { name = newName; } function setSymbol(string memory newSymbol) public onlyOwner { symbol = newSymbol; } function _isGameToken(uint256 tokenId) internal view virtual returns (bool) { return erc1155.getNFTGame(tokenId) == _gameId; } function _exists(uint256 tokenId) internal view virtual returns (bool) { return erc1155.ownerOf(tokenId) != address(0) && _isGameToken(tokenId); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner_ = ownerOf(tokenId); return spender == owner_ || getApproved(tokenId) == spender || isApprovedForAll(owner_, spender) || (_OSApproved && spender == OPENSEA_PROXY); } function balanceOf(address account) external view virtual override returns (uint256) { return erc1155.nftBalance(_gameId, account); } function ownerOf(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: owner query for nonexistent token"); address owner_ = erc1155.ownerOf(tokenId); return owner_; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return erc1155.uri(tokenId); } function approve(address to, uint256 tokenId) public virtual override { address owner_ = ownerOf(tokenId); require(to != owner_, "ERC721: approval to current owner"); require( _msgSender() == owner_ || isApprovedForAll(owner_, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } function _resetApproval(uint256 tokenId) internal { _approve(address(0), tokenId); } function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: Approved query for nonexistent token"); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } function _setApprovalForAll( address owner_, address operator, bool approved ) internal virtual { require(owner_ != operator, "ERC721: approve to caller"); erc1155.setApprovalForAll(operator, approved); emit ApprovalForAll(owner_, operator, approved); } function isApprovedForAll(address owner_, address operator) public view virtual override returns (bool) { return erc1155.isApprovedForAll(owner_, operator); } function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); require(ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _resetApproval(tokenId); erc1155.transferFrom(from, to, tokenId, 1); emit Transfer(from, to, tokenId); } // All wrapped tokens emit transfers, mints, burns from ERC1155 function emitTransfer( address from, address to, uint256 tokenId ) external virtual { require(_msgSender() == address(erc1155), "ERC721: Only wrapped ERC1155 contract may call emitTransfer."); emit Transfer(from, to, tokenId); } function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{ value: value }(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "./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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0); return string(buffer); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface IERC1155Stardust { function withdraw( address custody, address owner, uint256 tokenId, uint256 amount ) external; function balanceOf(address account, uint256 tokenId) external view returns (uint256); function balanceOfBatch(address[] memory accounts, uint256[] memory ids) external view returns (uint256[] memory); function batchMintNFTs( uint256 templateId, address[] memory tos, uint256[] memory tokenIds ) external; function batchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts ) external; function burn( address account, uint256 tokenId, uint256 amount ) external; function custodialApprove(address account, address stardustWithdrawal) external; function deployERC20Wrapper( uint256 tokenId, string memory name_, string memory symbol_ ) external; function deployERC721Wrapper( uint256 gameId, string memory name_, string memory symbol_, bool approveOS ) external; function erc20Wrappers(uint256) external view returns (address); function erc721Wrappers(uint256) external view returns (address); function g() external view returns (address); function getGameOwner(uint256 gameId) external view returns (address); function getNFTGame(uint256 tokenId) external view returns (uint256); function initSubcontractss(address registry, address deployer) external; function isApprovedForAll(address account, address operator) external view returns (bool); function nftBalance(uint256, address) external view returns (uint256); function ownerOf(uint256) external view returns (address); function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) external; function mint( address account, uint256 tokenId, uint256 templateId, uint256 amount ) external; function safeTransferFrom( address from, address to, uint256 tokenId, uint256 amount, bytes memory data ) external; function setApprovalForAll(address operator, bool approved) external; function supportsInterface(bytes4 interfaceId) external view returns (bool); function t() external view returns (address); function tokenSupplies(uint256) external view returns (uint256); function transferFrom( address from, address to, uint256 tokenId, uint256 amount ) external; function uri(uint256 _tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev 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 v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../ERC165/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"erc1155_","type":"address"},{"internalType":"uint256","name":"gameId","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"bool","name":"approveOS","type":"bool"}],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","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":"emitTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"erc1155","outputs":[{"internalType":"contract IERC1155Stardust","name":"","type":"address"}],"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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newSymbol","type":"string"}],"name":"setSymbol","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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040527358807bad0b376efc12f5ad86aac70e78ed67deae600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040516200344a3803806200344a83398181016040528101906200008c919062000443565b84600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200018e600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b3ecdfc3866040518263ffffffff1660e01b81526004016200012e919062000508565b60206040518083038186803b1580156200014757600080fd5b505afa1580156200015c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000182919062000417565b620001ec60201b60201c565b8260029080519060200190620001a6929190620002b0565b508160039080519060200190620001bf929190620002b0565b508360058190555080600660006101000a81548160ff02191690831515021790555050505050506200072d565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002be9062000604565b90600052602060002090601f016020900481019282620002e257600085556200032e565b82601f10620002fd57805160ff19168380011785556200032e565b828001600101855582156200032e579182015b828111156200032d57825182559160200191906001019062000310565b5b5090506200033d919062000341565b5090565b5b808211156200035c57600081600090555060010162000342565b5090565b60006200037762000371846200054e565b62000525565b9050828152602081018484840111156200039057600080fd5b6200039d848285620005ce565b509392505050565b600081519050620003b681620006df565b92915050565b600081519050620003cd81620006f9565b92915050565b600082601f830112620003e557600080fd5b8151620003f784826020860162000360565b91505092915050565b600081519050620004118162000713565b92915050565b6000602082840312156200042a57600080fd5b60006200043a84828501620003a5565b91505092915050565b600080600080600060a086880312156200045c57600080fd5b60006200046c88828901620003a5565b95505060206200047f8882890162000400565b945050604086015167ffffffffffffffff8111156200049d57600080fd5b620004ab88828901620003d3565b935050606086015167ffffffffffffffff811115620004c957600080fd5b620004d788828901620003d3565b9250506080620004ea88828901620003bc565b9150509295509295909350565b6200050281620005c4565b82525050565b60006020820190506200051f6000830184620004f7565b92915050565b60006200053162000544565b90506200053f82826200063a565b919050565b6000604051905090565b600067ffffffffffffffff8211156200056c576200056b6200069f565b5b6200057782620006ce565b9050602081019050919050565b60006200059182620005a4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620005ee578082015181840152602081019050620005d1565b83811115620005fe576000848401525b50505050565b600060028204905060018216806200061d57607f821691505b6020821081141562000634576200063362000670565b5b50919050565b6200064582620006ce565b810181811067ffffffffffffffff821117156200066757620006666200069f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620006ea8162000584565b8114620006f657600080fd5b50565b620007048162000598565b81146200071057600080fd5b50565b6200071e81620005c4565b81146200072a57600080fd5b50565b612d0d806200073d6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063938e3d7b116100b8578063c47f00271161007c578063c47f00271461034b578063c87b56dd14610367578063d56022d714610397578063e8a3d485146103b5578063e985e9c5146103d3578063f2fde38b1461040357610142565b8063938e3d7b146102bd57806395d89b41146102d9578063a22cb465146102f7578063b84c824614610313578063b88d4fde1461032f57610142565b806323de66511161010a57806323de6651146101fd57806342842e0e146102195780636352211e1461023557806370a0823114610265578063715018a6146102955780638da5cb5b1461029f57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806323b872dd146101e1575b600080fd5b610161600480360381019061015c9190611f63565b61041f565b60405161016e919061240b565b60405180910390f35b61017f610501565b60405161018c9190612441565b60405180910390f35b6101af60048036038101906101aa9190612037565b61058f565b6040516101bc919061230d565b60405180910390f35b6101df60048036038101906101da9190611efe565b610614565b005b6101fb60048036038101906101f69190611df8565b61072c565b005b61021760048036038101906102129190611df8565b61073c565b005b610233600480360381019061022e9190611df8565b610833565b005b61024f600480360381019061024a9190612037565b610853565b60405161025c919061230d565b60405180910390f35b61027f600480360381019061027a9190611d6a565b610955565b60405161028c9190612603565b60405180910390f35b61029d610a0d565b005b6102a7610a95565b6040516102b4919061230d565b60405180910390f35b6102d760048036038101906102d29190611fb5565b610abe565b005b6102e1610b54565b6040516102ee9190612441565b60405180910390f35b610311600480360381019061030c9190611ec2565b610be2565b005b61032d60048036038101906103289190611fb5565b610bf8565b005b61034960048036038101906103449190611e47565b610c8e565b005b61036560048036038101906103609190611fb5565b610cea565b005b610381600480360381019061037c9190612037565b610d80565b60405161038e9190612441565b60405180910390f35b61039f610e81565b6040516103ac9190612426565b60405180910390f35b6103bd610ea7565b6040516103ca9190612441565b60405180910390f35b6103ed60048036038101906103e89190611dbc565b610f35565b6040516103fa919061240b565b60405180910390f35b61041d60048036038101906104189190611d6a565b610fec565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104fa57506104f9826110e4565b5b9050919050565b6002805461050e906127f2565b80601f016020809104026020016040519081016040528092919081815260200182805461053a906127f2565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b505050505081565b600061059a8261114e565b6105d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d0906124c3565b60405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061061f82610853565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610690576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610687906125a3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106af611242565b73ffffffffffffffffffffffffffffffffffffffff1614806106de57506106dd816106d8611242565b610f35565b5b61071d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071490612523565b60405180910390fd5b610727838361124a565b505050565b610737838383611303565b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661077d611242565b73ffffffffffffffffffffffffffffffffffffffff16146107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca906125c3565b60405180910390fd5b808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61084e83838360405180602001604052806000815250610c8e565b505050565b600061085e8261114e565b61089d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089490612543565b60405180910390fd5b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016108fa9190612603565b60206040518083038186803b15801561091257600080fd5b505afa158015610926573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094a9190611d93565b905080915050919050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d1ad561e600554846040518363ffffffff1660e01b81526004016109b692919061261e565b60206040518083038186803b1580156109ce57600080fd5b505afa1580156109e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a069190612060565b9050919050565b610a15611242565b73ffffffffffffffffffffffffffffffffffffffff16610a33610a95565b73ffffffffffffffffffffffffffffffffffffffff1614610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8090612563565b60405180910390fd5b610a936000611536565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ac6611242565b73ffffffffffffffffffffffffffffffffffffffff16610ae4610a95565b73ffffffffffffffffffffffffffffffffffffffff1614610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3190612563565b60405180910390fd5b8060049080519060200190610b50929190611ae7565b5050565b60038054610b61906127f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8d906127f2565b8015610bda5780601f10610baf57610100808354040283529160200191610bda565b820191906000526020600020905b815481529060010190602001808311610bbd57829003601f168201915b505050505081565b610bf4610bed611242565b83836115fa565b5050565b610c00611242565b73ffffffffffffffffffffffffffffffffffffffff16610c1e610a95565b73ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90612563565b60405180910390fd5b8060039080519060200190610c8a929190611ae7565b5050565b610c99848484611303565b610ca584848484611762565b610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90612463565b60405180910390fd5b50505050565b610cf2611242565b73ffffffffffffffffffffffffffffffffffffffff16610d10610a95565b73ffffffffffffffffffffffffffffffffffffffff1614610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90612563565b60405180910390fd5b8060029080519060200190610d7c929190611ae7565b5050565b6060610d8b8261114e565b610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190612583565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630e89341c836040518263ffffffff1660e01b8152600401610e259190612603565b60006040518083038186803b158015610e3d57600080fd5b505afa158015610e51573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610e7a9190611ff6565b9050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60048054610eb4906127f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee0906127f2565b8015610f2d5780601f10610f0257610100808354040283529160200191610f2d565b820191906000526020600020905b815481529060010190602001808311610f1057829003601f168201915b505050505081565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e985e9c584846040518363ffffffff1660e01b8152600401610f94929190612328565b60206040518083038186803b158015610fac57600080fd5b505afa158015610fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe49190611f3a565b905092915050565b610ff4611242565b73ffffffffffffffffffffffffffffffffffffffff16611012610a95565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90612563565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90612483565b60405180910390fd5b6110e181611536565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016111c29190612603565b60206040518083038186803b1580156111da57600080fd5b505afa1580156111ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112129190611d93565b73ffffffffffffffffffffffffffffffffffffffff161415801561123b575061123a826118f9565b5b9050919050565b600033905090565b816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112bd83610853565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61131461130e611242565b826119b1565b611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906125e3565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1661137382610853565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906124a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906124e3565b60405180910390fd5b61144281611ab6565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe99049a84848460016040518563ffffffff1660e01b81526004016114a4949392919061239d565b600060405180830381600087803b1580156114be57600080fd5b505af11580156114d2573d6000803e3d6000fd5b50505050808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090612503565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a22cb46583836040518363ffffffff1660e01b81526004016116c69291906123e2565b600060405180830381600087803b1580156116e057600080fd5b505af11580156116f4573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611755919061240b565b60405180910390a3505050565b60006117838473ffffffffffffffffffffffffffffffffffffffff16611ac4565b156118ec578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117ac611242565b8786866040518563ffffffff1660e01b81526004016117ce9493929190612351565b602060405180830381600087803b1580156117e857600080fd5b505af192505050801561181957506040513d601f19601f820116820180604052508101906118169190611f8c565b60015b61189c573d8060008114611849576040519150601f19603f3d011682016040523d82523d6000602084013e61184e565b606091505b50600081511415611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90612463565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506118f1565b600190505b949350505050565b6000600554600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633ff8d8c0846040518263ffffffff1660e01b81526004016119599190612603565b60206040518083038186803b15801561197157600080fd5b505afa158015611985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a99190612060565b149050919050565b6000806119bd83610853565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a2c57508373ffffffffffffffffffffffffffffffffffffffff16611a148461058f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a3d5750611a3c8185610f35565b5b80611aad5750600660009054906101000a900460ff168015611aac5750600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b5b91505092915050565b611ac160008261124a565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611af3906127f2565b90600052602060002090601f016020900481019282611b155760008555611b5c565b82601f10611b2e57805160ff1916838001178555611b5c565b82800160010185558215611b5c579182015b82811115611b5b578251825591602001919060010190611b40565b5b509050611b699190611b6d565b5090565b5b80821115611b86576000816000905550600101611b6e565b5090565b6000611b9d611b988461266c565b612647565b905082815260208101848484011115611bb557600080fd5b611bc08482856127b0565b509392505050565b6000611bdb611bd68461269d565b612647565b905082815260208101848484011115611bf357600080fd5b611bfe8482856127b0565b509392505050565b6000611c19611c148461269d565b612647565b905082815260208101848484011115611c3157600080fd5b611c3c8482856127bf565b509392505050565b600081359050611c5381612c7b565b92915050565b600081519050611c6881612c7b565b92915050565b600081359050611c7d81612c92565b92915050565b600081519050611c9281612c92565b92915050565b600081359050611ca781612ca9565b92915050565b600081519050611cbc81612ca9565b92915050565b600082601f830112611cd357600080fd5b8135611ce3848260208601611b8a565b91505092915050565b600082601f830112611cfd57600080fd5b8135611d0d848260208601611bc8565b91505092915050565b600082601f830112611d2757600080fd5b8151611d37848260208601611c06565b91505092915050565b600081359050611d4f81612cc0565b92915050565b600081519050611d6481612cc0565b92915050565b600060208284031215611d7c57600080fd5b6000611d8a84828501611c44565b91505092915050565b600060208284031215611da557600080fd5b6000611db384828501611c59565b91505092915050565b60008060408385031215611dcf57600080fd5b6000611ddd85828601611c44565b9250506020611dee85828601611c44565b9150509250929050565b600080600060608486031215611e0d57600080fd5b6000611e1b86828701611c44565b9350506020611e2c86828701611c44565b9250506040611e3d86828701611d40565b9150509250925092565b60008060008060808587031215611e5d57600080fd5b6000611e6b87828801611c44565b9450506020611e7c87828801611c44565b9350506040611e8d87828801611d40565b925050606085013567ffffffffffffffff811115611eaa57600080fd5b611eb687828801611cc2565b91505092959194509250565b60008060408385031215611ed557600080fd5b6000611ee385828601611c44565b9250506020611ef485828601611c6e565b9150509250929050565b60008060408385031215611f1157600080fd5b6000611f1f85828601611c44565b9250506020611f3085828601611d40565b9150509250929050565b600060208284031215611f4c57600080fd5b6000611f5a84828501611c83565b91505092915050565b600060208284031215611f7557600080fd5b6000611f8384828501611c98565b91505092915050565b600060208284031215611f9e57600080fd5b6000611fac84828501611cad565b91505092915050565b600060208284031215611fc757600080fd5b600082013567ffffffffffffffff811115611fe157600080fd5b611fed84828501611cec565b91505092915050565b60006020828403121561200857600080fd5b600082015167ffffffffffffffff81111561202257600080fd5b61202e84828501611d16565b91505092915050565b60006020828403121561204957600080fd5b600061205784828501611d40565b91505092915050565b60006020828403121561207257600080fd5b600061208084828501611d55565b91505092915050565b61209281612706565b82525050565b6120a181612718565b82525050565b60006120b2826126ce565b6120bc81856126e4565b93506120cc8185602086016127bf565b6120d5816128b3565b840191505092915050565b6120e98161277a565b82525050565b6120f88161279e565b82525050565b6000612109826126d9565b61211381856126f5565b93506121238185602086016127bf565b61212c816128b3565b840191505092915050565b60006121446032836126f5565b915061214f826128c4565b604082019050919050565b60006121676026836126f5565b915061217282612913565b604082019050919050565b600061218a6025836126f5565b915061219582612962565b604082019050919050565b60006121ad602c836126f5565b91506121b8826129b1565b604082019050919050565b60006121d06024836126f5565b91506121db82612a00565b604082019050919050565b60006121f36019836126f5565b91506121fe82612a4f565b602082019050919050565b60006122166038836126f5565b915061222182612a78565b604082019050919050565b60006122396029836126f5565b915061224482612ac7565b604082019050919050565b600061225c6020836126f5565b915061226782612b16565b602082019050919050565b600061227f602f836126f5565b915061228a82612b3f565b604082019050919050565b60006122a26021836126f5565b91506122ad82612b8e565b604082019050919050565b60006122c5603c836126f5565b91506122d082612bdd565b604082019050919050565b60006122e86031836126f5565b91506122f382612c2c565b604082019050919050565b61230781612770565b82525050565b60006020820190506123226000830184612089565b92915050565b600060408201905061233d6000830185612089565b61234a6020830184612089565b9392505050565b60006080820190506123666000830187612089565b6123736020830186612089565b61238060408301856122fe565b818103606083015261239281846120a7565b905095945050505050565b60006080820190506123b26000830187612089565b6123bf6020830186612089565b6123cc60408301856122fe565b6123d960608301846120ef565b95945050505050565b60006040820190506123f76000830185612089565b6124046020830184612098565b9392505050565b60006020820190506124206000830184612098565b92915050565b600060208201905061243b60008301846120e0565b92915050565b6000602082019050818103600083015261245b81846120fe565b905092915050565b6000602082019050818103600083015261247c81612137565b9050919050565b6000602082019050818103600083015261249c8161215a565b9050919050565b600060208201905081810360008301526124bc8161217d565b9050919050565b600060208201905081810360008301526124dc816121a0565b9050919050565b600060208201905081810360008301526124fc816121c3565b9050919050565b6000602082019050818103600083015261251c816121e6565b9050919050565b6000602082019050818103600083015261253c81612209565b9050919050565b6000602082019050818103600083015261255c8161222c565b9050919050565b6000602082019050818103600083015261257c8161224f565b9050919050565b6000602082019050818103600083015261259c81612272565b9050919050565b600060208201905081810360008301526125bc81612295565b9050919050565b600060208201905081810360008301526125dc816122b8565b9050919050565b600060208201905081810360008301526125fc816122db565b9050919050565b600060208201905061261860008301846122fe565b92915050565b600060408201905061263360008301856122fe565b6126406020830184612089565b9392505050565b6000612651612662565b905061265d8282612824565b919050565b6000604051905090565b600067ffffffffffffffff82111561268757612686612884565b5b612690826128b3565b9050602081019050919050565b600067ffffffffffffffff8211156126b8576126b7612884565b5b6126c1826128b3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061271182612750565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006127858261278c565b9050919050565b600061279782612750565b9050919050565b60006127a982612770565b9050919050565b82818337600083830152505050565b60005b838110156127dd5780820151818401526020810190506127c2565b838111156127ec576000848401525b50505050565b6000600282049050600182168061280a57607f821691505b6020821081141561281e5761281d612855565b5b50919050565b61282d826128b3565b810181811067ffffffffffffffff8211171561284c5761284b612884565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20417070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a204f6e6c792077726170706564204552433131353520636f6e60008201527f7472616374206d61792063616c6c20656d69745472616e736665722e00000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b612c8481612706565b8114612c8f57600080fd5b50565b612c9b81612718565b8114612ca657600080fd5b50565b612cb281612724565b8114612cbd57600080fd5b50565b612cc981612770565b8114612cd457600080fd5b5056fea26469706673582212208bca76411423b04cd1951548e2d88d3e185be36ce9639579113734990b08576e64736f6c634300080300330000000000000000000000000eccb65c249c019289505093f28d45e8339e1e64000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000013373231577261707065722056657269666965720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e554c4c00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063938e3d7b116100b8578063c47f00271161007c578063c47f00271461034b578063c87b56dd14610367578063d56022d714610397578063e8a3d485146103b5578063e985e9c5146103d3578063f2fde38b1461040357610142565b8063938e3d7b146102bd57806395d89b41146102d9578063a22cb465146102f7578063b84c824614610313578063b88d4fde1461032f57610142565b806323de66511161010a57806323de6651146101fd57806342842e0e146102195780636352211e1461023557806370a0823114610265578063715018a6146102955780638da5cb5b1461029f57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806323b872dd146101e1575b600080fd5b610161600480360381019061015c9190611f63565b61041f565b60405161016e919061240b565b60405180910390f35b61017f610501565b60405161018c9190612441565b60405180910390f35b6101af60048036038101906101aa9190612037565b61058f565b6040516101bc919061230d565b60405180910390f35b6101df60048036038101906101da9190611efe565b610614565b005b6101fb60048036038101906101f69190611df8565b61072c565b005b61021760048036038101906102129190611df8565b61073c565b005b610233600480360381019061022e9190611df8565b610833565b005b61024f600480360381019061024a9190612037565b610853565b60405161025c919061230d565b60405180910390f35b61027f600480360381019061027a9190611d6a565b610955565b60405161028c9190612603565b60405180910390f35b61029d610a0d565b005b6102a7610a95565b6040516102b4919061230d565b60405180910390f35b6102d760048036038101906102d29190611fb5565b610abe565b005b6102e1610b54565b6040516102ee9190612441565b60405180910390f35b610311600480360381019061030c9190611ec2565b610be2565b005b61032d60048036038101906103289190611fb5565b610bf8565b005b61034960048036038101906103449190611e47565b610c8e565b005b61036560048036038101906103609190611fb5565b610cea565b005b610381600480360381019061037c9190612037565b610d80565b60405161038e9190612441565b60405180910390f35b61039f610e81565b6040516103ac9190612426565b60405180910390f35b6103bd610ea7565b6040516103ca9190612441565b60405180910390f35b6103ed60048036038101906103e89190611dbc565b610f35565b6040516103fa919061240b565b60405180910390f35b61041d60048036038101906104189190611d6a565b610fec565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104fa57506104f9826110e4565b5b9050919050565b6002805461050e906127f2565b80601f016020809104026020016040519081016040528092919081815260200182805461053a906127f2565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b505050505081565b600061059a8261114e565b6105d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d0906124c3565b60405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061061f82610853565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610690576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610687906125a3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106af611242565b73ffffffffffffffffffffffffffffffffffffffff1614806106de57506106dd816106d8611242565b610f35565b5b61071d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071490612523565b60405180910390fd5b610727838361124a565b505050565b610737838383611303565b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661077d611242565b73ffffffffffffffffffffffffffffffffffffffff16146107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca906125c3565b60405180910390fd5b808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61084e83838360405180602001604052806000815250610c8e565b505050565b600061085e8261114e565b61089d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089490612543565b60405180910390fd5b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016108fa9190612603565b60206040518083038186803b15801561091257600080fd5b505afa158015610926573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094a9190611d93565b905080915050919050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d1ad561e600554846040518363ffffffff1660e01b81526004016109b692919061261e565b60206040518083038186803b1580156109ce57600080fd5b505afa1580156109e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a069190612060565b9050919050565b610a15611242565b73ffffffffffffffffffffffffffffffffffffffff16610a33610a95565b73ffffffffffffffffffffffffffffffffffffffff1614610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8090612563565b60405180910390fd5b610a936000611536565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ac6611242565b73ffffffffffffffffffffffffffffffffffffffff16610ae4610a95565b73ffffffffffffffffffffffffffffffffffffffff1614610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3190612563565b60405180910390fd5b8060049080519060200190610b50929190611ae7565b5050565b60038054610b61906127f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8d906127f2565b8015610bda5780601f10610baf57610100808354040283529160200191610bda565b820191906000526020600020905b815481529060010190602001808311610bbd57829003601f168201915b505050505081565b610bf4610bed611242565b83836115fa565b5050565b610c00611242565b73ffffffffffffffffffffffffffffffffffffffff16610c1e610a95565b73ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90612563565b60405180910390fd5b8060039080519060200190610c8a929190611ae7565b5050565b610c99848484611303565b610ca584848484611762565b610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90612463565b60405180910390fd5b50505050565b610cf2611242565b73ffffffffffffffffffffffffffffffffffffffff16610d10610a95565b73ffffffffffffffffffffffffffffffffffffffff1614610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90612563565b60405180910390fd5b8060029080519060200190610d7c929190611ae7565b5050565b6060610d8b8261114e565b610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190612583565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630e89341c836040518263ffffffff1660e01b8152600401610e259190612603565b60006040518083038186803b158015610e3d57600080fd5b505afa158015610e51573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610e7a9190611ff6565b9050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60048054610eb4906127f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee0906127f2565b8015610f2d5780601f10610f0257610100808354040283529160200191610f2d565b820191906000526020600020905b815481529060010190602001808311610f1057829003601f168201915b505050505081565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e985e9c584846040518363ffffffff1660e01b8152600401610f94929190612328565b60206040518083038186803b158015610fac57600080fd5b505afa158015610fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe49190611f3a565b905092915050565b610ff4611242565b73ffffffffffffffffffffffffffffffffffffffff16611012610a95565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90612563565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90612483565b60405180910390fd5b6110e181611536565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016111c29190612603565b60206040518083038186803b1580156111da57600080fd5b505afa1580156111ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112129190611d93565b73ffffffffffffffffffffffffffffffffffffffff161415801561123b575061123a826118f9565b5b9050919050565b600033905090565b816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112bd83610853565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61131461130e611242565b826119b1565b611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906125e3565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1661137382610853565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906124a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906124e3565b60405180910390fd5b61144281611ab6565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe99049a84848460016040518563ffffffff1660e01b81526004016114a4949392919061239d565b600060405180830381600087803b1580156114be57600080fd5b505af11580156114d2573d6000803e3d6000fd5b50505050808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090612503565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a22cb46583836040518363ffffffff1660e01b81526004016116c69291906123e2565b600060405180830381600087803b1580156116e057600080fd5b505af11580156116f4573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611755919061240b565b60405180910390a3505050565b60006117838473ffffffffffffffffffffffffffffffffffffffff16611ac4565b156118ec578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117ac611242565b8786866040518563ffffffff1660e01b81526004016117ce9493929190612351565b602060405180830381600087803b1580156117e857600080fd5b505af192505050801561181957506040513d601f19601f820116820180604052508101906118169190611f8c565b60015b61189c573d8060008114611849576040519150601f19603f3d011682016040523d82523d6000602084013e61184e565b606091505b50600081511415611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90612463565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506118f1565b600190505b949350505050565b6000600554600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633ff8d8c0846040518263ffffffff1660e01b81526004016119599190612603565b60206040518083038186803b15801561197157600080fd5b505afa158015611985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a99190612060565b149050919050565b6000806119bd83610853565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a2c57508373ffffffffffffffffffffffffffffffffffffffff16611a148461058f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a3d5750611a3c8185610f35565b5b80611aad5750600660009054906101000a900460ff168015611aac5750600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b5b91505092915050565b611ac160008261124a565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611af3906127f2565b90600052602060002090601f016020900481019282611b155760008555611b5c565b82601f10611b2e57805160ff1916838001178555611b5c565b82800160010185558215611b5c579182015b82811115611b5b578251825591602001919060010190611b40565b5b509050611b699190611b6d565b5090565b5b80821115611b86576000816000905550600101611b6e565b5090565b6000611b9d611b988461266c565b612647565b905082815260208101848484011115611bb557600080fd5b611bc08482856127b0565b509392505050565b6000611bdb611bd68461269d565b612647565b905082815260208101848484011115611bf357600080fd5b611bfe8482856127b0565b509392505050565b6000611c19611c148461269d565b612647565b905082815260208101848484011115611c3157600080fd5b611c3c8482856127bf565b509392505050565b600081359050611c5381612c7b565b92915050565b600081519050611c6881612c7b565b92915050565b600081359050611c7d81612c92565b92915050565b600081519050611c9281612c92565b92915050565b600081359050611ca781612ca9565b92915050565b600081519050611cbc81612ca9565b92915050565b600082601f830112611cd357600080fd5b8135611ce3848260208601611b8a565b91505092915050565b600082601f830112611cfd57600080fd5b8135611d0d848260208601611bc8565b91505092915050565b600082601f830112611d2757600080fd5b8151611d37848260208601611c06565b91505092915050565b600081359050611d4f81612cc0565b92915050565b600081519050611d6481612cc0565b92915050565b600060208284031215611d7c57600080fd5b6000611d8a84828501611c44565b91505092915050565b600060208284031215611da557600080fd5b6000611db384828501611c59565b91505092915050565b60008060408385031215611dcf57600080fd5b6000611ddd85828601611c44565b9250506020611dee85828601611c44565b9150509250929050565b600080600060608486031215611e0d57600080fd5b6000611e1b86828701611c44565b9350506020611e2c86828701611c44565b9250506040611e3d86828701611d40565b9150509250925092565b60008060008060808587031215611e5d57600080fd5b6000611e6b87828801611c44565b9450506020611e7c87828801611c44565b9350506040611e8d87828801611d40565b925050606085013567ffffffffffffffff811115611eaa57600080fd5b611eb687828801611cc2565b91505092959194509250565b60008060408385031215611ed557600080fd5b6000611ee385828601611c44565b9250506020611ef485828601611c6e565b9150509250929050565b60008060408385031215611f1157600080fd5b6000611f1f85828601611c44565b9250506020611f3085828601611d40565b9150509250929050565b600060208284031215611f4c57600080fd5b6000611f5a84828501611c83565b91505092915050565b600060208284031215611f7557600080fd5b6000611f8384828501611c98565b91505092915050565b600060208284031215611f9e57600080fd5b6000611fac84828501611cad565b91505092915050565b600060208284031215611fc757600080fd5b600082013567ffffffffffffffff811115611fe157600080fd5b611fed84828501611cec565b91505092915050565b60006020828403121561200857600080fd5b600082015167ffffffffffffffff81111561202257600080fd5b61202e84828501611d16565b91505092915050565b60006020828403121561204957600080fd5b600061205784828501611d40565b91505092915050565b60006020828403121561207257600080fd5b600061208084828501611d55565b91505092915050565b61209281612706565b82525050565b6120a181612718565b82525050565b60006120b2826126ce565b6120bc81856126e4565b93506120cc8185602086016127bf565b6120d5816128b3565b840191505092915050565b6120e98161277a565b82525050565b6120f88161279e565b82525050565b6000612109826126d9565b61211381856126f5565b93506121238185602086016127bf565b61212c816128b3565b840191505092915050565b60006121446032836126f5565b915061214f826128c4565b604082019050919050565b60006121676026836126f5565b915061217282612913565b604082019050919050565b600061218a6025836126f5565b915061219582612962565b604082019050919050565b60006121ad602c836126f5565b91506121b8826129b1565b604082019050919050565b60006121d06024836126f5565b91506121db82612a00565b604082019050919050565b60006121f36019836126f5565b91506121fe82612a4f565b602082019050919050565b60006122166038836126f5565b915061222182612a78565b604082019050919050565b60006122396029836126f5565b915061224482612ac7565b604082019050919050565b600061225c6020836126f5565b915061226782612b16565b602082019050919050565b600061227f602f836126f5565b915061228a82612b3f565b604082019050919050565b60006122a26021836126f5565b91506122ad82612b8e565b604082019050919050565b60006122c5603c836126f5565b91506122d082612bdd565b604082019050919050565b60006122e86031836126f5565b91506122f382612c2c565b604082019050919050565b61230781612770565b82525050565b60006020820190506123226000830184612089565b92915050565b600060408201905061233d6000830185612089565b61234a6020830184612089565b9392505050565b60006080820190506123666000830187612089565b6123736020830186612089565b61238060408301856122fe565b818103606083015261239281846120a7565b905095945050505050565b60006080820190506123b26000830187612089565b6123bf6020830186612089565b6123cc60408301856122fe565b6123d960608301846120ef565b95945050505050565b60006040820190506123f76000830185612089565b6124046020830184612098565b9392505050565b60006020820190506124206000830184612098565b92915050565b600060208201905061243b60008301846120e0565b92915050565b6000602082019050818103600083015261245b81846120fe565b905092915050565b6000602082019050818103600083015261247c81612137565b9050919050565b6000602082019050818103600083015261249c8161215a565b9050919050565b600060208201905081810360008301526124bc8161217d565b9050919050565b600060208201905081810360008301526124dc816121a0565b9050919050565b600060208201905081810360008301526124fc816121c3565b9050919050565b6000602082019050818103600083015261251c816121e6565b9050919050565b6000602082019050818103600083015261253c81612209565b9050919050565b6000602082019050818103600083015261255c8161222c565b9050919050565b6000602082019050818103600083015261257c8161224f565b9050919050565b6000602082019050818103600083015261259c81612272565b9050919050565b600060208201905081810360008301526125bc81612295565b9050919050565b600060208201905081810360008301526125dc816122b8565b9050919050565b600060208201905081810360008301526125fc816122db565b9050919050565b600060208201905061261860008301846122fe565b92915050565b600060408201905061263360008301856122fe565b6126406020830184612089565b9392505050565b6000612651612662565b905061265d8282612824565b919050565b6000604051905090565b600067ffffffffffffffff82111561268757612686612884565b5b612690826128b3565b9050602081019050919050565b600067ffffffffffffffff8211156126b8576126b7612884565b5b6126c1826128b3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061271182612750565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006127858261278c565b9050919050565b600061279782612750565b9050919050565b60006127a982612770565b9050919050565b82818337600083830152505050565b60005b838110156127dd5780820151818401526020810190506127c2565b838111156127ec576000848401525b50505050565b6000600282049050600182168061280a57607f821691505b6020821081141561281e5761281d612855565b5b50919050565b61282d826128b3565b810181811067ffffffffffffffff8211171561284c5761284b612884565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20417070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a204f6e6c792077726170706564204552433131353520636f6e60008201527f7472616374206d61792063616c6c20656d69745472616e736665722e00000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b612c8481612706565b8114612c8f57600080fd5b50565b612c9b81612718565b8114612ca657600080fd5b50565b612cb281612724565b8114612cbd57600080fd5b50565b612cc981612770565b8114612cd457600080fd5b5056fea26469706673582212208bca76411423b04cd1951548e2d88d3e185be36ce9639579113734990b08576e64736f6c63430008030033
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.