Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
10,000 SCD
Holders
1,248
Market
Volume (24H)
0.018 ETH
Min Price (24H)
$28.07 @ 0.009000 ETH
Max Price (24H)
$28.07 @ 0.009000 ETH
Other Info
Token Contract
Balance
3 SCDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ScorchingDucks
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
Yes with 200 runs
Other Settings:
byzantium EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract ScorchingDucks is ERC721, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIds; uint256 private _maxSupply = 10000; string public _provenanceHash; string public _baseURL; // Scorching variables IERC721 private ogd; event ScorchMultiple(address _from, uint256[] _tokenIds); bool private scorchIsActive = false; mapping(uint256 => uint256) public scorchDuckToOGDuck; // Minting bool private mintIsActive = false; constructor() ERC721("ScorchingDucks", "SCD") { // TODO Add as parameter ogd = IERC721(0x0F4B28D46CAB209bC5fa987A92A26a5680538e45); } function flipScorchingState() public onlyOwner { scorchIsActive = !scorchIsActive; } function flipMintState() public onlyOwner { mintIsActive = !mintIsActive; } function scorchNDucks(uint256[] memory tokenIds) public { require(scorchIsActive, "Scorching is not active"); require(ogd.isApprovedForAll(msg.sender, address(this)), "Contract is not approved to transfer your OG Ducks."); require(tokenIds.length <= 10, "Can't scorch more than 10 Ducks at once."); for (uint i = 0; i < tokenIds.length; i++) { require(ogd.ownerOf(tokenIds[i]) == msg.sender, "You must own the requested token"); // Burn OG Ducks ogd.transferFrom(msg.sender, 0x000000000000000000000000000000000000dEaD, tokenIds[i]); // Mint Duck _tokenIds.increment(); _mint(msg.sender, _tokenIds.current()); scorchDuckToOGDuck[_tokenIds.current()] = tokenIds[i]; } emit ScorchMultiple(msg.sender, tokenIds); } function mint(uint256 count) external payable { require(mintIsActive, "Mint is not active"); require(_tokenIds.current() < _maxSupply, "Can not mint more than max supply"); require(count > 0 && count <= 10, "You can mint between 1 and 10 at once"); require(msg.value >= count * 0.03 ether, "Insufficient payment"); for (uint256 i = 0; i < count; i++) { _tokenIds.increment(); _mint(msg.sender, _tokenIds.current()); } bool success = false; (success,) = owner().call{value : msg.value}(""); require(success, "Failed to send to owner"); } function setProvenanceHash(string memory provenanceHash) public onlyOwner { _provenanceHash = provenanceHash; } function setBaseURL(string memory baseURI) public onlyOwner { _baseURL = baseURI; } function _baseURI() internal view override returns (string memory) { return _baseURL; } function maxSupply() public view returns (uint256) { return _maxSupply; } function totalSupply() public view returns (uint256) { return _tokenIds.current(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// 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 pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "byzantium", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"ScorchMultiple","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":"_baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_provenanceHash","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":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipScorchingState","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"scorchDuckToOGDuck","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"scorchNDucks","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":"baseURI","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","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":[],"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
6080604052612710600855600b805460a060020a60ff0219169055600d805460ff191690553480156200003157600080fd5b50604080518082018252600e81527f53636f726368696e674475636b7300000000000000000000000000000000000060208083019182528351808501909452600384527f5343440000000000000000000000000000000000000000000000000000000000908401528151919291620000ac9160009162000173565b508051620000c290600190602084019062000173565b505050620000f1620000e26200011d640100000000026401000000009004565b64010000000062000121810204565b600b8054600160a060020a031916730f4b28d46cab209bc5fa987a92a26a5680538e451790556200026f565b3390565b60068054600160a060020a03838116600160a060020a0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001819062000219565b90600052602060002090601f016020900481019282620001a55760008555620001f0565b82601f10620001c057805160ff1916838001178555620001f0565b82800160010185558215620001f0579182015b82811115620001f0578251825591602001919060010190620001d3565b50620001fe92915062000202565b5090565b5b80821115620001fe576000815560010162000203565b6002810460018216806200022e57607f821691505b6020821081141562000269577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b612526806200027f6000396000f3fe6080604052600436106101a05760003560e060020a900480636f23c126116100f0578063a22cb4651161008e578063d5abeb0111610068578063d5abeb0114610480578063e985e9c514610495578063f2fde38b146104de578063f9e0edae146104fe57600080fd5b8063a22cb46514610420578063b88d4fde14610440578063c87b56dd1461046057600080fd5b80638da5cb5b116100ca5780638da5cb5b146103ba57806390267cd7146103d857806395d89b41146103f8578063a0712d681461040d57600080fd5b80636f23c1261461037057806370a0823114610385578063715018a6146103a557600080fd5b806323b872dd1161015d57806349f2553a1161013757806349f2553a14610306578063534308cc1461032657806359c74f291461033b5780636352211e1461035057600080fd5b806323b872dd146102995780633379ad16146102b957806342842e0e146102e657600080fd5b806301ffc9a7146101a557806306fdde03146101da578063081812fc146101fc578063095ea7b314610234578063109695231461025657806318160ddd14610276575b600080fd5b3480156101b157600080fd5b506101c56101c036600461209b565b610513565b60405190151581526020015b60405180910390f35b3480156101e657600080fd5b506101ef6105b0565b6040516101d19190612225565b34801561020857600080fd5b5061021c61021736600461211e565b610642565b604051600160a060020a0390911681526020016101d1565b34801561024057600080fd5b5061025461024f366004611fa6565b6106f0565b005b34801561026257600080fd5b506102546102713660046120d5565b610828565b34801561028257600080fd5b5061028b61086c565b6040519081526020016101d1565b3480156102a557600080fd5b506102546102b4366004611eb7565b61087c565b3480156102c557600080fd5b5061028b6102d436600461211e565b600c6020526000908152604090205481565b3480156102f257600080fd5b50610254610301366004611eb7565b6108b0565b34801561031257600080fd5b506102546103213660046120d5565b6108cb565b34801561033257600080fd5b506101ef61090b565b34801561034757600080fd5b50610254610999565b34801561035c57600080fd5b5061021c61036b36600461211e565b6109da565b34801561037c57600080fd5b50610254610a68565b34801561039157600080fd5b5061028b6103a0366004611e44565b610ad8565b3480156103b157600080fd5b50610254610b75565b3480156103c657600080fd5b50600654600160a060020a031661021c565b3480156103e457600080fd5b506102546103f3366004611fd2565b610bae565b34801561040457600080fd5b506101ef610ff2565b61025461041b36600461211e565b611001565b34801561042c57600080fd5b5061025461043b366004611f78565b6112ad565b34801561044c57600080fd5b5061025461045b366004611ef8565b611375565b34801561046c57600080fd5b506101ef61047b36600461211e565b6113b0565b34801561048c57600080fd5b5060085461028b565b3480156104a157600080fd5b506101c56104b0366004611e7e565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104ea57600080fd5b506102546104f9366004611e44565b61149c565b34801561050a57600080fd5b506101ef611554565b6000600160e060020a031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105765750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105aa57507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316145b92915050565b6060600080546105bf906123e6565b80601f01602080910402602001604051908101604052809291908181526020018280546105eb906123e6565b80156106385780601f1061060d57610100808354040283529160200191610638565b820191906000526020600020905b81548152906001019060200180831161061b57829003601f168201915b5050505050905090565b600081815260026020526040812054600160a060020a03166106d45760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b60006106fb826109da565b905080600160a060020a031683600160a060020a031614156107885760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106cb565b33600160a060020a03821614806107a457506107a481336104b0565b6108195760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106cb565b6108238383611561565b505050565b600654600160a060020a031633146108555760405160e560020a62461bcd0281526004016106cb90612295565b8051610868906009906020840190611d53565b5050565b600061087760075490565b905090565b61088633826115dc565b6108a55760405160e560020a62461bcd0281526004016106cb906122ca565b6108238383836116e7565b61082383838360405180602001604052806000815250611375565b600654600160a060020a031633146108f85760405160e560020a62461bcd0281526004016106cb90612295565b805161086890600a906020840190611d53565b60098054610918906123e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610944906123e6565b80156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b505050505081565b600654600160a060020a031633146109c65760405160e560020a62461bcd0281526004016106cb90612295565b600d805460ff19811660ff90911615179055565b600081815260026020526040812054600160a060020a0316806105aa5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106cb565b600654600160a060020a03163314610a955760405160e560020a62461bcd0281526004016106cb90612295565b600b805474ff0000000000000000000000000000000000000000198116740100000000000000000000000000000000000000009182900460ff1615909102179055565b6000600160a060020a038216610b595760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106cb565b50600160a060020a031660009081526003602052604090205490565b600654600160a060020a03163314610ba25760405160e560020a62461bcd0281526004016106cb90612295565b610bac60006118c7565b565b600b5474010000000000000000000000000000000000000000900460ff16610c1b5760405160e560020a62461bcd02815260206004820152601760248201527f53636f726368696e67206973206e6f742061637469766500000000000000000060448201526064016106cb565b600b546040517fe985e9c5000000000000000000000000000000000000000000000000000000008152336004820152306024820152600160a060020a039091169063e985e9c59060440160206040518083038186803b158015610c7d57600080fd5b505afa158015610c91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb5919061207e565b610d2a5760405160e560020a62461bcd02815260206004820152603360248201527f436f6e7472616374206973206e6f7420617070726f76656420746f207472616e60448201527f7366657220796f7572204f47204475636b732e0000000000000000000000000060648201526084016106cb565b600a81511115610da55760405160e560020a62461bcd02815260206004820152602860248201527f43616e27742073636f726368206d6f7265207468616e203130204475636b732060448201527f6174206f6e63652e00000000000000000000000000000000000000000000000060648201526084016106cb565b60005b8151811015610fb557600b5482513391600160a060020a031690636352211e90859085908110610dda57610dda612485565b60200260200101516040518263ffffffff1660e060020a028152600401610e0391815260200190565b60206040518083038186803b158015610e1b57600080fd5b505afa158015610e2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e539190611e61565b600160a060020a031614610eac5760405160e560020a62461bcd02815260206004820181905260248201527f596f75206d757374206f776e207468652072657175657374656420746f6b656e60448201526064016106cb565b600b548251600160a060020a03909116906323b872dd90339061dead90869086908110610edb57610edb612485565b602090810291909101015160405160e060020a63ffffffff8616028152600160a060020a0393841660048201529290911660248301526044820152606401600060405180830381600087803b158015610f3357600080fd5b505af1158015610f47573d6000803e3d6000fd5b50505050610f59600780546001019055565b610f6b33610f6660075490565b611926565b818181518110610f7d57610f7d612485565b6020026020010151600c6000610f9260075490565b815260208101919091526040016000205580610fad81612424565b915050610da8565b507f2461173703653c70a8da9516e36afffeb326e4096c020a467c663acea658dfcd3382604051610fe79291906121ce565b60405180910390a150565b6060600180546105bf906123e6565b600d5460ff166110565760405160e560020a62461bcd02815260206004820152601260248201527f4d696e74206973206e6f7420616374697665000000000000000000000000000060448201526064016106cb565b600854600754106110d25760405160e560020a62461bcd02815260206004820152602160248201527f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60448201527f790000000000000000000000000000000000000000000000000000000000000060648201526084016106cb565b6000811180156110e35750600a8111155b6111585760405160e560020a62461bcd02815260206004820152602560248201527f596f752063616e206d696e74206265747765656e203120616e6420313020617460448201527f206f6e636500000000000000000000000000000000000000000000000000000060648201526084016106cb565b61116981666a94d74f430000612384565b3410156111bb5760405160e560020a62461bcd02815260206004820152601460248201527f496e73756666696369656e74207061796d656e7400000000000000000000000060448201526064016106cb565b60005b818110156111f3576111d4600780546001019055565b6111e133610f6660075490565b806111eb81612424565b9150506111be565b506000611208600654600160a060020a031690565b600160a060020a03163460405160006040518083038185875af1925050503d8060008114611252576040519150601f19603f3d011682016040523d82523d6000602084013e611257565b606091505b505080915050806108685760405160e560020a62461bcd02815260206004820152601760248201527f4661696c656420746f2073656e6420746f206f776e657200000000000000000060448201526064016106cb565b600160a060020a0382163314156113095760405160e560020a62461bcd02815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106cb565b336000818152600560209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61137f33836115dc565b61139e5760405160e560020a62461bcd0281526004016106cb906122ca565b6113aa84848484611a7b565b50505050565b600081815260026020526040902054606090600160a060020a03166114405760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106cb565b600061144a611ab1565b9050600081511161146a5760405180602001604052806000815250611495565b8061147484611ac0565b604051602001611485929190612163565b6040516020818303038152906040525b9392505050565b600654600160a060020a031633146114c95760405160e560020a62461bcd0281526004016106cb90612295565b600160a060020a0381166115485760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106cb565b611551816118c7565b50565b600a8054610918906123e6565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03841690811790915581906115a3826109da565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260026020526040812054600160a060020a03166116695760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106cb565b6000611674836109da565b905080600160a060020a031684600160a060020a031614806116af575083600160a060020a03166116a484610642565b600160a060020a0316145b806116df5750600160a060020a0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b82600160a060020a03166116fa826109da565b600160a060020a0316146117795760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106cb565b600160a060020a0382166117f75760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106cb565b611802600082611561565b600160a060020a038316600090815260036020526040812080546001929061182b9084906123a3565b9091555050600160a060020a0382166000908152600360205260408120805460019290611859908490612358565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60068054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600160a060020a03821661197f5760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106cb565b600081815260026020526040902054600160a060020a0316156119e75760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106cb565b600160a060020a0382166000908152600360205260408120805460019290611a10908490612358565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611a868484846116e7565b611a9284848484611c11565b6113aa5760405160e560020a62461bcd0281526004016106cb90612238565b6060600a80546105bf906123e6565b606081611b0057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b2a5780611b1481612424565b9150611b239050600a83612370565b9150611b04565b60008167ffffffffffffffff811115611b4557611b4561249e565b6040519080825280601f01601f191660200182016040528015611b6f576020820181803683370190505b5090505b84156116df57611b846001836123a3565b9150611b91600a8661243f565b611b9c906030612358565b7f010000000000000000000000000000000000000000000000000000000000000002818381518110611bd057611bd0612485565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c0a600a86612370565b9450611b73565b6000600160a060020a0384163b15611d48576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a0290611c6e903390899088908890600401612192565b602060405180830381600087803b158015611c8857600080fd5b505af1925050508015611cb8575060408051601f3d908101601f19168201909252611cb5918101906120b8565b60015b611d15573d808015611ce6576040519150601f19603f3d011682016040523d82523d6000602084013e611ceb565b606091505b508051611d0d5760405160e560020a62461bcd0281526004016106cb90612238565b805181602001fd5b600160e060020a0319167f150b7a02000000000000000000000000000000000000000000000000000000001490506116df565b506001949350505050565b828054611d5f906123e6565b90600052602060002090601f016020900481019282611d815760008555611dc7565b82601f10611d9a57805160ff1916838001178555611dc7565b82800160010185558215611dc7579182015b82811115611dc7578251825591602001919060010190611dac565b50611dd3929150611dd7565b5090565b5b80821115611dd35760008155600101611dd8565b600067ffffffffffffffff831115611e0657611e0661249e565b611e19601f8401601f1916602001612327565b9050828152838383011115611e2d57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e5657600080fd5b8135611495816124b7565b600060208284031215611e7357600080fd5b8151611495816124b7565b60008060408385031215611e9157600080fd5b8235611e9c816124b7565b91506020830135611eac816124b7565b809150509250929050565b600080600060608486031215611ecc57600080fd5b8335611ed7816124b7565b92506020840135611ee7816124b7565b929592945050506040919091013590565b60008060008060808587031215611f0e57600080fd5b8435611f19816124b7565b93506020850135611f29816124b7565b925060408501359150606085013567ffffffffffffffff811115611f4c57600080fd5b8501601f81018713611f5d57600080fd5b611f6c87823560208401611dec565b91505092959194509250565b60008060408385031215611f8b57600080fd5b8235611f96816124b7565b91506020830135611eac816124cc565b60008060408385031215611fb957600080fd5b8235611fc4816124b7565b946020939093013593505050565b60006020808385031215611fe557600080fd5b823567ffffffffffffffff80821115611ffd57600080fd5b818501915085601f83011261201157600080fd5b8135818111156120235761202361249e565b8381029150612033848301612327565b8181528481019084860184860187018a101561204e57600080fd5b600095505b83861015612071578035835260019590950194918601918601612053565b5098975050505050505050565b60006020828403121561209057600080fd5b8151611495816124cc565b6000602082840312156120ad57600080fd5b8135611495816124da565b6000602082840312156120ca57600080fd5b8151611495816124da565b6000602082840312156120e757600080fd5b813567ffffffffffffffff8111156120fe57600080fd5b8201601f8101841361210f57600080fd5b6116df84823560208401611dec565b60006020828403121561213057600080fd5b5035919050565b6000815180845261214f8160208601602086016123ba565b601f01601f19169290920160200192915050565b600083516121758184602088016123ba565b8351908301906121898183602088016123ba565b01949350505050565b6000600160a060020a038087168352808616602084015250836040830152608060608301526121c46080830184612137565b9695505050505050565b600060408201600160a060020a03851683526020604081850152818551808452606086019150828701935060005b81811015612218578451835293830193918301916001016121fc565b5090979650505050505050565b6020815260006114956020830184612137565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156123505761235061249e565b604052919050565b6000821982111561236b5761236b612453565b500190565b60008261237f5761237f61246c565b500490565b600081600019048311821515161561239e5761239e612453565b500290565b6000828210156123b5576123b5612453565b500390565b60005b838110156123d55781810151838201526020016123bd565b838111156113aa5750506000910152565b6002810460018216806123fa57607f821691505b6020821081141561241e5760e060020a634e487b7102600052602260045260246000fd5b50919050565b600060001982141561243857612438612453565b5060010190565b60008261244e5761244e61246c565b500690565b60e060020a634e487b7102600052601160045260246000fd5b60e060020a634e487b7102600052601260045260246000fd5b60e060020a634e487b7102600052603260045260246000fd5b60e060020a634e487b7102600052604160045260246000fd5b600160a060020a038116811461155157600080fd5b801515811461155157600080fd5b600160e060020a03198116811461155157600080fdfea2646970667358221220c25722d0a80813a61aa9d6195b1714f79914207a95ba5b32023e5ec547159d1664736f6c63430008060033
Deployed Bytecode
0x6080604052600436106101a05760003560e060020a900480636f23c126116100f0578063a22cb4651161008e578063d5abeb0111610068578063d5abeb0114610480578063e985e9c514610495578063f2fde38b146104de578063f9e0edae146104fe57600080fd5b8063a22cb46514610420578063b88d4fde14610440578063c87b56dd1461046057600080fd5b80638da5cb5b116100ca5780638da5cb5b146103ba57806390267cd7146103d857806395d89b41146103f8578063a0712d681461040d57600080fd5b80636f23c1261461037057806370a0823114610385578063715018a6146103a557600080fd5b806323b872dd1161015d57806349f2553a1161013757806349f2553a14610306578063534308cc1461032657806359c74f291461033b5780636352211e1461035057600080fd5b806323b872dd146102995780633379ad16146102b957806342842e0e146102e657600080fd5b806301ffc9a7146101a557806306fdde03146101da578063081812fc146101fc578063095ea7b314610234578063109695231461025657806318160ddd14610276575b600080fd5b3480156101b157600080fd5b506101c56101c036600461209b565b610513565b60405190151581526020015b60405180910390f35b3480156101e657600080fd5b506101ef6105b0565b6040516101d19190612225565b34801561020857600080fd5b5061021c61021736600461211e565b610642565b604051600160a060020a0390911681526020016101d1565b34801561024057600080fd5b5061025461024f366004611fa6565b6106f0565b005b34801561026257600080fd5b506102546102713660046120d5565b610828565b34801561028257600080fd5b5061028b61086c565b6040519081526020016101d1565b3480156102a557600080fd5b506102546102b4366004611eb7565b61087c565b3480156102c557600080fd5b5061028b6102d436600461211e565b600c6020526000908152604090205481565b3480156102f257600080fd5b50610254610301366004611eb7565b6108b0565b34801561031257600080fd5b506102546103213660046120d5565b6108cb565b34801561033257600080fd5b506101ef61090b565b34801561034757600080fd5b50610254610999565b34801561035c57600080fd5b5061021c61036b36600461211e565b6109da565b34801561037c57600080fd5b50610254610a68565b34801561039157600080fd5b5061028b6103a0366004611e44565b610ad8565b3480156103b157600080fd5b50610254610b75565b3480156103c657600080fd5b50600654600160a060020a031661021c565b3480156103e457600080fd5b506102546103f3366004611fd2565b610bae565b34801561040457600080fd5b506101ef610ff2565b61025461041b36600461211e565b611001565b34801561042c57600080fd5b5061025461043b366004611f78565b6112ad565b34801561044c57600080fd5b5061025461045b366004611ef8565b611375565b34801561046c57600080fd5b506101ef61047b36600461211e565b6113b0565b34801561048c57600080fd5b5060085461028b565b3480156104a157600080fd5b506101c56104b0366004611e7e565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104ea57600080fd5b506102546104f9366004611e44565b61149c565b34801561050a57600080fd5b506101ef611554565b6000600160e060020a031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105765750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105aa57507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316145b92915050565b6060600080546105bf906123e6565b80601f01602080910402602001604051908101604052809291908181526020018280546105eb906123e6565b80156106385780601f1061060d57610100808354040283529160200191610638565b820191906000526020600020905b81548152906001019060200180831161061b57829003601f168201915b5050505050905090565b600081815260026020526040812054600160a060020a03166106d45760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b60006106fb826109da565b905080600160a060020a031683600160a060020a031614156107885760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106cb565b33600160a060020a03821614806107a457506107a481336104b0565b6108195760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106cb565b6108238383611561565b505050565b600654600160a060020a031633146108555760405160e560020a62461bcd0281526004016106cb90612295565b8051610868906009906020840190611d53565b5050565b600061087760075490565b905090565b61088633826115dc565b6108a55760405160e560020a62461bcd0281526004016106cb906122ca565b6108238383836116e7565b61082383838360405180602001604052806000815250611375565b600654600160a060020a031633146108f85760405160e560020a62461bcd0281526004016106cb90612295565b805161086890600a906020840190611d53565b60098054610918906123e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610944906123e6565b80156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b505050505081565b600654600160a060020a031633146109c65760405160e560020a62461bcd0281526004016106cb90612295565b600d805460ff19811660ff90911615179055565b600081815260026020526040812054600160a060020a0316806105aa5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106cb565b600654600160a060020a03163314610a955760405160e560020a62461bcd0281526004016106cb90612295565b600b805474ff0000000000000000000000000000000000000000198116740100000000000000000000000000000000000000009182900460ff1615909102179055565b6000600160a060020a038216610b595760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106cb565b50600160a060020a031660009081526003602052604090205490565b600654600160a060020a03163314610ba25760405160e560020a62461bcd0281526004016106cb90612295565b610bac60006118c7565b565b600b5474010000000000000000000000000000000000000000900460ff16610c1b5760405160e560020a62461bcd02815260206004820152601760248201527f53636f726368696e67206973206e6f742061637469766500000000000000000060448201526064016106cb565b600b546040517fe985e9c5000000000000000000000000000000000000000000000000000000008152336004820152306024820152600160a060020a039091169063e985e9c59060440160206040518083038186803b158015610c7d57600080fd5b505afa158015610c91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb5919061207e565b610d2a5760405160e560020a62461bcd02815260206004820152603360248201527f436f6e7472616374206973206e6f7420617070726f76656420746f207472616e60448201527f7366657220796f7572204f47204475636b732e0000000000000000000000000060648201526084016106cb565b600a81511115610da55760405160e560020a62461bcd02815260206004820152602860248201527f43616e27742073636f726368206d6f7265207468616e203130204475636b732060448201527f6174206f6e63652e00000000000000000000000000000000000000000000000060648201526084016106cb565b60005b8151811015610fb557600b5482513391600160a060020a031690636352211e90859085908110610dda57610dda612485565b60200260200101516040518263ffffffff1660e060020a028152600401610e0391815260200190565b60206040518083038186803b158015610e1b57600080fd5b505afa158015610e2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e539190611e61565b600160a060020a031614610eac5760405160e560020a62461bcd02815260206004820181905260248201527f596f75206d757374206f776e207468652072657175657374656420746f6b656e60448201526064016106cb565b600b548251600160a060020a03909116906323b872dd90339061dead90869086908110610edb57610edb612485565b602090810291909101015160405160e060020a63ffffffff8616028152600160a060020a0393841660048201529290911660248301526044820152606401600060405180830381600087803b158015610f3357600080fd5b505af1158015610f47573d6000803e3d6000fd5b50505050610f59600780546001019055565b610f6b33610f6660075490565b611926565b818181518110610f7d57610f7d612485565b6020026020010151600c6000610f9260075490565b815260208101919091526040016000205580610fad81612424565b915050610da8565b507f2461173703653c70a8da9516e36afffeb326e4096c020a467c663acea658dfcd3382604051610fe79291906121ce565b60405180910390a150565b6060600180546105bf906123e6565b600d5460ff166110565760405160e560020a62461bcd02815260206004820152601260248201527f4d696e74206973206e6f7420616374697665000000000000000000000000000060448201526064016106cb565b600854600754106110d25760405160e560020a62461bcd02815260206004820152602160248201527f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60448201527f790000000000000000000000000000000000000000000000000000000000000060648201526084016106cb565b6000811180156110e35750600a8111155b6111585760405160e560020a62461bcd02815260206004820152602560248201527f596f752063616e206d696e74206265747765656e203120616e6420313020617460448201527f206f6e636500000000000000000000000000000000000000000000000000000060648201526084016106cb565b61116981666a94d74f430000612384565b3410156111bb5760405160e560020a62461bcd02815260206004820152601460248201527f496e73756666696369656e74207061796d656e7400000000000000000000000060448201526064016106cb565b60005b818110156111f3576111d4600780546001019055565b6111e133610f6660075490565b806111eb81612424565b9150506111be565b506000611208600654600160a060020a031690565b600160a060020a03163460405160006040518083038185875af1925050503d8060008114611252576040519150601f19603f3d011682016040523d82523d6000602084013e611257565b606091505b505080915050806108685760405160e560020a62461bcd02815260206004820152601760248201527f4661696c656420746f2073656e6420746f206f776e657200000000000000000060448201526064016106cb565b600160a060020a0382163314156113095760405160e560020a62461bcd02815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106cb565b336000818152600560209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61137f33836115dc565b61139e5760405160e560020a62461bcd0281526004016106cb906122ca565b6113aa84848484611a7b565b50505050565b600081815260026020526040902054606090600160a060020a03166114405760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106cb565b600061144a611ab1565b9050600081511161146a5760405180602001604052806000815250611495565b8061147484611ac0565b604051602001611485929190612163565b6040516020818303038152906040525b9392505050565b600654600160a060020a031633146114c95760405160e560020a62461bcd0281526004016106cb90612295565b600160a060020a0381166115485760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106cb565b611551816118c7565b50565b600a8054610918906123e6565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03841690811790915581906115a3826109da565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260026020526040812054600160a060020a03166116695760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106cb565b6000611674836109da565b905080600160a060020a031684600160a060020a031614806116af575083600160a060020a03166116a484610642565b600160a060020a0316145b806116df5750600160a060020a0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b82600160a060020a03166116fa826109da565b600160a060020a0316146117795760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106cb565b600160a060020a0382166117f75760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106cb565b611802600082611561565b600160a060020a038316600090815260036020526040812080546001929061182b9084906123a3565b9091555050600160a060020a0382166000908152600360205260408120805460019290611859908490612358565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60068054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600160a060020a03821661197f5760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106cb565b600081815260026020526040902054600160a060020a0316156119e75760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106cb565b600160a060020a0382166000908152600360205260408120805460019290611a10908490612358565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611a868484846116e7565b611a9284848484611c11565b6113aa5760405160e560020a62461bcd0281526004016106cb90612238565b6060600a80546105bf906123e6565b606081611b0057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b2a5780611b1481612424565b9150611b239050600a83612370565b9150611b04565b60008167ffffffffffffffff811115611b4557611b4561249e565b6040519080825280601f01601f191660200182016040528015611b6f576020820181803683370190505b5090505b84156116df57611b846001836123a3565b9150611b91600a8661243f565b611b9c906030612358565b7f010000000000000000000000000000000000000000000000000000000000000002818381518110611bd057611bd0612485565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c0a600a86612370565b9450611b73565b6000600160a060020a0384163b15611d48576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a0290611c6e903390899088908890600401612192565b602060405180830381600087803b158015611c8857600080fd5b505af1925050508015611cb8575060408051601f3d908101601f19168201909252611cb5918101906120b8565b60015b611d15573d808015611ce6576040519150601f19603f3d011682016040523d82523d6000602084013e611ceb565b606091505b508051611d0d5760405160e560020a62461bcd0281526004016106cb90612238565b805181602001fd5b600160e060020a0319167f150b7a02000000000000000000000000000000000000000000000000000000001490506116df565b506001949350505050565b828054611d5f906123e6565b90600052602060002090601f016020900481019282611d815760008555611dc7565b82601f10611d9a57805160ff1916838001178555611dc7565b82800160010185558215611dc7579182015b82811115611dc7578251825591602001919060010190611dac565b50611dd3929150611dd7565b5090565b5b80821115611dd35760008155600101611dd8565b600067ffffffffffffffff831115611e0657611e0661249e565b611e19601f8401601f1916602001612327565b9050828152838383011115611e2d57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e5657600080fd5b8135611495816124b7565b600060208284031215611e7357600080fd5b8151611495816124b7565b60008060408385031215611e9157600080fd5b8235611e9c816124b7565b91506020830135611eac816124b7565b809150509250929050565b600080600060608486031215611ecc57600080fd5b8335611ed7816124b7565b92506020840135611ee7816124b7565b929592945050506040919091013590565b60008060008060808587031215611f0e57600080fd5b8435611f19816124b7565b93506020850135611f29816124b7565b925060408501359150606085013567ffffffffffffffff811115611f4c57600080fd5b8501601f81018713611f5d57600080fd5b611f6c87823560208401611dec565b91505092959194509250565b60008060408385031215611f8b57600080fd5b8235611f96816124b7565b91506020830135611eac816124cc565b60008060408385031215611fb957600080fd5b8235611fc4816124b7565b946020939093013593505050565b60006020808385031215611fe557600080fd5b823567ffffffffffffffff80821115611ffd57600080fd5b818501915085601f83011261201157600080fd5b8135818111156120235761202361249e565b8381029150612033848301612327565b8181528481019084860184860187018a101561204e57600080fd5b600095505b83861015612071578035835260019590950194918601918601612053565b5098975050505050505050565b60006020828403121561209057600080fd5b8151611495816124cc565b6000602082840312156120ad57600080fd5b8135611495816124da565b6000602082840312156120ca57600080fd5b8151611495816124da565b6000602082840312156120e757600080fd5b813567ffffffffffffffff8111156120fe57600080fd5b8201601f8101841361210f57600080fd5b6116df84823560208401611dec565b60006020828403121561213057600080fd5b5035919050565b6000815180845261214f8160208601602086016123ba565b601f01601f19169290920160200192915050565b600083516121758184602088016123ba565b8351908301906121898183602088016123ba565b01949350505050565b6000600160a060020a038087168352808616602084015250836040830152608060608301526121c46080830184612137565b9695505050505050565b600060408201600160a060020a03851683526020604081850152818551808452606086019150828701935060005b81811015612218578451835293830193918301916001016121fc565b5090979650505050505050565b6020815260006114956020830184612137565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156123505761235061249e565b604052919050565b6000821982111561236b5761236b612453565b500190565b60008261237f5761237f61246c565b500490565b600081600019048311821515161561239e5761239e612453565b500290565b6000828210156123b5576123b5612453565b500390565b60005b838110156123d55781810151838201526020016123bd565b838111156113aa5750506000910152565b6002810460018216806123fa57607f821691505b6020821081141561241e5760e060020a634e487b7102600052602260045260246000fd5b50919050565b600060001982141561243857612438612453565b5060010190565b60008261244e5761244e61246c565b500690565b60e060020a634e487b7102600052601160045260246000fd5b60e060020a634e487b7102600052601260045260246000fd5b60e060020a634e487b7102600052603260045260246000fd5b60e060020a634e487b7102600052604160045260246000fd5b600160a060020a038116811461155157600080fd5b801515811461155157600080fd5b600160e060020a03198116811461155157600080fdfea2646970667358221220c25722d0a80813a61aa9d6195b1714f79914207a95ba5b32023e5ec547159d1664736f6c63430008060033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.