ERC-721
NFT
Overview
Max Total Supply
4,999 BTT
Holders
1,517
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BTTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BeatnikTikiTribe
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT /* ____ __ __ ______ __ ______ __ /\ _`\ /\ \__ __/\ \ /\__ _\__/\ \ __ /\__ _\ __/\ \ \ \ \L\ \ __ __ \ \ ,_\ ___ /\_\ \ \/'\ \/_/\ \/\_\ \ \/'\ /\_\ \/_/\ \/ _ __ /\_\ \ \____ __ \ \ _ <' /'__`\ /'__`\ \ \ \/ /' _ `\/\ \ \ , < \ \ \/\ \ \ , < \/\ \ \ \ \/\`'__\/\ \ \ '__`\ /'__`\ \ \ \L\ \/\ __//\ \L\.\_\ \ \_/\ \/\ \ \ \ \ \\`\ \ \ \ \ \ \ \\`\\ \ \ \ \ \ \ \/ \ \ \ \ \L\ \/\ __/ \ \____/\ \____\ \__/.\_\\ \__\ \_\ \_\ \_\ \_\ \_\ \ \_\ \_\ \_\ \_\ \_\ \ \_\ \_\ \ \_\ \_,__/\ \____\ \/___/ \/____/\/__/\/_/ \/__/\/_/\/_/\/_/\/_/\/_/ \/_/\/_/\/_/\/_/\/_/ \/_/\/_/ \/_/\/___/ \/____/ */ pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract BeatnikTikiTribe is Ownable, ERC721Enumerable, ERC721Burnable, ERC721Pausable { using Counters for Counters.Counter; event TikisClaimed(uint256 _totalClaimed, address _owner, uint256 _numOfTokens, uint256[] _tokenIds); Counters.Counter private _tokenIdTracker; string public provenanceHash; uint256 public startingIndexBlock; uint256 public startingIndex; uint public maxTikisInTx; uint256 public revealTimestamp; bool public saleEnabled; uint256 public price; string public metadataBaseURL; uint256 public constant maxTikis = 9999; constructor (string memory _metadataBaseURL, uint256 _revealTimestamp) ERC721("Beatnik Tiki Tribe", "BTT") { revealTimestamp = _revealTimestamp; metadataBaseURL = _metadataBaseURL; saleEnabled = false; maxTikisInTx = 10; price = 0.07 ether; startingIndexBlock = 0; startingIndex = 0; provenanceHash = ""; } function setRevealTimestamp(uint256 timestamp) public onlyOwner { revealTimestamp = timestamp; } function setBaseURI(string memory baseURL) public onlyOwner { metadataBaseURL = baseURL; } function setMaxTikisInTx(uint num) public onlyOwner { maxTikisInTx = num; } function flipSaleEnabled() public onlyOwner { saleEnabled = !(saleEnabled); } function setPrice(uint256 _price) public onlyOwner { price = _price; } function setProvenanceHash(string memory _provenanceHash) public onlyOwner { provenanceHash = _provenanceHash; } function emergencySetStartingIndex() public onlyOwner { _setStartingIndex(); } function withdraw() public onlyOwner { uint256 _balance = address(this).balance; address payable _sender = payable(_msgSender()); _sender.transfer(_balance); } function mintTikiToAddress(address to) public onlyOwner { require(_tokenIdTracker.current() < maxTikis, "TikiTribe: All Tikis have already been claimed"); _safeMint(to, _tokenIdTracker.current() + 1); _tokenIdTracker.increment(); } function reserveTikis(uint num) public onlyOwner { uint i; for (i=0; i<num; i++) mintTikiToAddress(msg.sender); } function pause() public virtual onlyOwner { _pause(); } function unpause() public virtual onlyOwner { _unpause(); } function getCurrentCount() public view returns (uint256) { return _tokenIdTracker.current(); } function mintTikis(uint256 numOfTokens) public payable { require(saleEnabled, "TikiTribe: Cannot claim Tikis at the moment"); require(_tokenIdTracker.current() + numOfTokens <= maxTikis, "TikiTribe: Claim will exceed maximum available Tikis"); require(numOfTokens > 0, "TikiTribe: Must claim atleast one Tiki"); require(numOfTokens <= maxTikisInTx, "TikiTribe: Cannot claim more than 10 Tikis in one tx"); require(msg.value >= (price * numOfTokens), "TikiTribe: Insufficient funds to claim Tikis"); address payable _sender = payable(_msgSender()); _sender.transfer(msg.value - (price * numOfTokens)); uint256[] memory ids = new uint256[](numOfTokens); for(uint i=0; i<numOfTokens; i++) { uint256 _tokenid = _tokenIdTracker.current() + 1; ids[i] = _tokenid; _safeMint(msg.sender, _tokenid); _tokenIdTracker.increment(); } if (startingIndexBlock == 0 && (_tokenIdTracker.current() == maxTikis || block.timestamp >= revealTimestamp)) { _setStartingIndex(); } emit TikisClaimed(_tokenIdTracker.current(), _sender, numOfTokens, ids); } function _setStartingIndex() internal { startingIndexBlock = block.number - 1; startingIndex = uint(blockhash(startingIndexBlock)) % maxTikis; if (startingIndex == 0) startingIndex = 10; } function _baseURI() internal view virtual override returns (string memory) { return metadataBaseURL; } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721Enumerable, ERC721, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC721Enumerable, ERC721) returns (bool) { return super.supportsInterface(interfaceId); } }
// 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 "./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; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } }
// 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; 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; /** * @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 "../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; /** * @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); } } } }
// 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; 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 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 enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_metadataBaseURL","type":"string"},{"internalType":"uint256","name":"_revealTimestamp","type":"uint256"}],"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":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_totalClaimed","type":"uint256"},{"indexed":false,"internalType":"address","name":"_owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"_numOfTokens","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"TikisClaimed","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencySetStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleEnabled","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":[],"name":"getCurrentCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTikis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTikisInTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataBaseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintTikiToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfTokens","type":"uint256"}],"name":"mintTikis","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"reserveTikis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTimestamp","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":"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":[],"name":"saleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"baseURL","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setMaxTikisInTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162005740380380620057408339818101604052810190620000379190620003a8565b6040518060400160405280601281526020017f426561746e696b2054696b6920547269626500000000000000000000000000008152506040518060400160405280600381526020017f4254540000000000000000000000000000000000000000000000000000000000815250620000c3620000b7620001a360201b60201c565b620001ab60201b60201c565b8160019080519060200190620000db9291906200026f565b508060029080519060200190620000f49291906200026f565b5050506000600b60006101000a81548160ff021916908315150217905550806011819055508160149080519060200190620001319291906200026f565b506000601260006101000a81548160ff021916908315150217905550600a60108190555066f8b0a10e4700006013819055506000600e819055506000600f8190555060405180602001604052806000815250600d90805190602001906200019a9291906200026f565b50505062000596565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027d90620004a1565b90600052602060002090601f016020900481019282620002a15760008555620002ed565b82601f10620002bc57805160ff1916838001178555620002ed565b82800160010185558215620002ed579182015b82811115620002ec578251825591602001919060010190620002cf565b5b509050620002fc919062000300565b5090565b5b808211156200031b57600081600090555060010162000301565b5090565b60006200033662000330846200042b565b62000402565b9050828152602081018484840111156200034f57600080fd5b6200035c8482856200046b565b509392505050565b600082601f8301126200037657600080fd5b8151620003888482602086016200031f565b91505092915050565b600081519050620003a2816200057c565b92915050565b60008060408385031215620003bc57600080fd5b600083015167ffffffffffffffff811115620003d757600080fd5b620003e58582860162000364565b9250506020620003f88582860162000391565b9150509250929050565b60006200040e62000421565b90506200041c8282620004d7565b919050565b6000604051905090565b600067ffffffffffffffff8211156200044957620004486200053c565b5b62000454826200056b565b9050602081019050919050565b6000819050919050565b60005b838110156200048b5780820151818401526020810190506200046e565b838111156200049b576000848401525b50505050565b60006002820490506001821680620004ba57607f821691505b60208210811415620004d157620004d06200050d565b5b50919050565b620004e2826200056b565b810181811067ffffffffffffffff821117156200050457620005036200053c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005878162000461565b81146200059357600080fd5b50565b61519a80620005a66000396000f3fe6080604052600436106102675760003560e01c8063638d06d511610144578063b88d4fde116100b6578063dd51babf1161007a578063dd51babf146108ba578063e36d6498146108e5578063e985e9c514610910578063f2fde38b1461094d578063f62f3c1114610976578063fe67b72d146109a157610267565b8063b88d4fde146107d5578063bf748b97146107fe578063c6ab67a314610827578063c87b56dd14610852578063cb774d471461088f57610267565b80638456cb59116101085780638456cb59146106eb5780638da5cb5b1461070257806391b7f5ed1461072d57806395d89b4114610756578063a035b1fe14610781578063a22cb465146107ac57610267565b8063638d06d51461061857806370a0823114610641578063715018a61461067e57806371b9b646146106955780638236b5e8146106c057610267565b806323b872dd116101dd57806342966c68116101a157806342966c681461050a57806348b15d02146105335780634f6ccce71461054a57806355f804b3146105875780635c975abb146105b05780636352211e146105db57610267565b806323b872dd1461044d5780632f745c59146104765780633ccfd60b146104b35780633f4ba83a146104ca57806342842e0e146104e157610267565b8063109695231161022f578063109695231461036357806310da2eb91461038c57806315494a16146103b757806318160ddd146103e05780631b1ae6d41461040b5780631ec0c2b11461043657610267565b8063018a2c371461026c57806301ffc9a71461029557806306fdde03146102d2578063081812fc146102fd578063095ea7b31461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613a8a565b6109bd565b005b3480156102a157600080fd5b506102bc60048036038101906102b791906139f7565b610a43565b6040516102c99190614076565b60405180910390f35b3480156102de57600080fd5b506102e7610a55565b6040516102f49190614091565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613a8a565b610ae7565b604051610331919061400f565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906139bb565b610b6c565b005b34801561036f57600080fd5b5061038a60048036038101906103859190613a49565b610c84565b005b34801561039857600080fd5b506103a1610d1a565b6040516103ae9190614091565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190613a8a565b610da8565b005b3480156103ec57600080fd5b506103f5610e2e565b6040516104029190614433565b60405180910390f35b34801561041757600080fd5b50610420610e3b565b60405161042d9190614433565b60405180910390f35b34801561044257600080fd5b5061044b610e41565b005b34801561045957600080fd5b50610474600480360381019061046f91906138b5565b610ec7565b005b34801561048257600080fd5b5061049d600480360381019061049891906139bb565b610f27565b6040516104aa9190614433565b60405180910390f35b3480156104bf57600080fd5b506104c8610fcc565b005b3480156104d657600080fd5b506104df6110a4565b005b3480156104ed57600080fd5b50610508600480360381019061050391906138b5565b61112a565b005b34801561051657600080fd5b50610531600480360381019061052c9190613a8a565b61114a565b005b34801561053f57600080fd5b506105486111a6565b005b34801561055657600080fd5b50610571600480360381019061056c9190613a8a565b61124e565b60405161057e9190614433565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190613a49565b6112e5565b005b3480156105bc57600080fd5b506105c561137b565b6040516105d29190614076565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190613a8a565b611392565b60405161060f919061400f565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190613a8a565b611444565b005b34801561064d57600080fd5b5061066860048036038101906106639190613850565b6114eb565b6040516106759190614433565b60405180910390f35b34801561068a57600080fd5b506106936115a3565b005b3480156106a157600080fd5b506106aa61162b565b6040516106b79190614076565b60405180910390f35b3480156106cc57600080fd5b506106d561163e565b6040516106e29190614433565b60405180910390f35b3480156106f757600080fd5b50610700611644565b005b34801561070e57600080fd5b506107176116ca565b604051610724919061400f565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613a8a565b6116f3565b005b34801561076257600080fd5b5061076b611779565b6040516107789190614091565b60405180910390f35b34801561078d57600080fd5b5061079661180b565b6040516107a39190614433565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce919061397f565b611811565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190613904565b611992565b005b34801561080a57600080fd5b5061082560048036038101906108209190613850565b6119f4565b005b34801561083357600080fd5b5061083c611ae9565b6040516108499190614091565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613a8a565b611b77565b6040516108869190614091565b60405180910390f35b34801561089b57600080fd5b506108a4611c1e565b6040516108b19190614433565b60405180910390f35b3480156108c657600080fd5b506108cf611c24565b6040516108dc9190614433565b60405180910390f35b3480156108f157600080fd5b506108fa611c35565b6040516109079190614433565b60405180910390f35b34801561091c57600080fd5b5061093760048036038101906109329190613879565b611c3b565b6040516109449190614076565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f9190613850565b611ccf565b005b34801561098257600080fd5b5061098b611dc7565b6040516109989190614433565b60405180910390f35b6109bb60048036038101906109b69190613a8a565b611dcd565b005b6109c5612141565b73ffffffffffffffffffffffffffffffffffffffff166109e36116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a30906142d3565b60405180910390fd5b8060118190555050565b6000610a4e82612149565b9050919050565b606060018054610a649061479e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a909061479e565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b6000610af2826121c3565b610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b28906142b3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7782611392565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90614333565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c07612141565b73ffffffffffffffffffffffffffffffffffffffff161480610c365750610c3581610c30612141565b611c3b565b5b610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90614233565b60405180910390fd5b610c7f838361222f565b505050565b610c8c612141565b73ffffffffffffffffffffffffffffffffffffffff16610caa6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf7906142d3565b60405180910390fd5b80600d9080519060200190610d16929190613674565b5050565b60148054610d279061479e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d539061479e565b8015610da05780601f10610d7557610100808354040283529160200191610da0565b820191906000526020600020905b815481529060010190602001808311610d8357829003601f168201915b505050505081565b610db0612141565b73ffffffffffffffffffffffffffffffffffffffff16610dce6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906142d3565b60405180910390fd5b8060108190555050565b6000600980549050905090565b60105481565b610e49612141565b73ffffffffffffffffffffffffffffffffffffffff16610e676116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb4906142d3565b60405180910390fd5b610ec56122e8565b565b610ed8610ed2612141565b8261232b565b610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90614353565b60405180910390fd5b610f22838383612409565b505050565b6000610f32836114eb565b8210610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a90614113565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610fd4612141565b73ffffffffffffffffffffffffffffffffffffffff16610ff26116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906142d3565b60405180910390fd5b60004790506000611057612141565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561109f573d6000803e3d6000fd5b505050565b6110ac612141565b73ffffffffffffffffffffffffffffffffffffffff166110ca6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611120576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611117906142d3565b60405180910390fd5b611128612665565b565b61114583838360405180602001604052806000815250611992565b505050565b61115b611155612141565b8261232b565b61119a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611191906143f3565b60405180910390fd5b6111a381612707565b50565b6111ae612141565b73ffffffffffffffffffffffffffffffffffffffff166111cc6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611219906142d3565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000611258610e2e565b8210611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090614393565b60405180910390fd5b600982815481106112d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6112ed612141565b73ffffffffffffffffffffffffffffffffffffffff1661130b6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611358906142d3565b60405180910390fd5b8060149080519060200190611377929190613674565b5050565b6000600b60009054906101000a900460ff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290614273565b60405180910390fd5b80915050919050565b61144c612141565b73ffffffffffffffffffffffffffffffffffffffff1661146a6116ca565b73ffffffffffffffffffffffffffffffffffffffff16146114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b7906142d3565b60405180910390fd5b60005b818110156114e7576114d4336119f4565b80806114df90614801565b9150506114c3565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390614253565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115ab612141565b73ffffffffffffffffffffffffffffffffffffffff166115c96116ca565b73ffffffffffffffffffffffffffffffffffffffff161461161f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611616906142d3565b60405180910390fd5b6116296000612818565b565b601260009054906101000a900460ff1681565b61270f81565b61164c612141565b73ffffffffffffffffffffffffffffffffffffffff1661166a6116ca565b73ffffffffffffffffffffffffffffffffffffffff16146116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b7906142d3565b60405180910390fd5b6116c86128dc565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116fb612141565b73ffffffffffffffffffffffffffffffffffffffff166117196116ca565b73ffffffffffffffffffffffffffffffffffffffff161461176f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611766906142d3565b60405180910390fd5b8060138190555050565b6060600280546117889061479e565b80601f01602080910402602001604051908101604052809291908181526020018280546117b49061479e565b80156118015780601f106117d657610100808354040283529160200191611801565b820191906000526020600020905b8154815290600101906020018083116117e457829003601f168201915b5050505050905090565b60135481565b611819612141565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e906141b3565b60405180910390fd5b8060066000611894612141565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611941612141565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119869190614076565b60405180910390a35050565b6119a361199d612141565b8361232b565b6119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990614353565b60405180910390fd5b6119ee8484848461297f565b50505050565b6119fc612141565b73ffffffffffffffffffffffffffffffffffffffff16611a1a6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a67906142d3565b60405180910390fd5b61270f611a7d600c6129db565b10611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490614413565b60405180910390fd5b611adc816001611acd600c6129db565b611ad7919061459d565b6129e9565b611ae6600c612a07565b50565b600d8054611af69061479e565b80601f0160208091040260200160405190810160405280929190818152602001828054611b229061479e565b8015611b6f5780601f10611b4457610100808354040283529160200191611b6f565b820191906000526020600020905b815481529060010190602001808311611b5257829003601f168201915b505050505081565b6060611b82826121c3565b611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890614313565b60405180910390fd5b6000611bcb612a1d565b90506000815111611beb5760405180602001604052806000815250611c16565b80611bf584612aaf565b604051602001611c06929190613feb565b6040516020818303038152906040525b915050919050565b600f5481565b6000611c30600c6129db565b905090565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cd7612141565b73ffffffffffffffffffffffffffffffffffffffff16611cf56116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906142d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db290614153565b60405180910390fd5b611dc481612818565b50565b60115481565b601260009054906101000a900460ff16611e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e13906143d3565b60405180910390fd5b61270f81611e2a600c6129db565b611e34919061459d565b1115611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c906141f3565b60405180910390fd5b60008111611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf906143b3565b60405180910390fd5b601054811115611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef4906140b3565b60405180910390fd5b80601354611f0b9190614624565b341015611f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4490614373565b60405180910390fd5b6000611f57612141565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc83601354611f819190614624565b34611f8c919061467e565b9081150290604051600060405180830381858888f19350505050158015611fb7573d6000803e3d6000fd5b5060008267ffffffffffffffff811115611ffa577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156120285781602001602082028036833780820191505090505b50905060005b838110156120be5760006001612044600c6129db565b61204e919061459d565b90508083838151811061208a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506120a033826129e9565b6120aa600c612a07565b5080806120b690614801565b91505061202e565b506000600e541480156120e8575061270f6120d9600c6129db565b14806120e757506011544210155b5b156120f6576120f56122e8565b5b7fe82e0b5afaf9aaba9d69ccd991ce747877011922c17efd5f5be6a34c1bda80d4612121600c6129db565b838584604051612134949392919061444e565b60405180910390a1505050565b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121bc57506121bb82612c5c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122a283611392565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001436122f5919061467e565b600e8190555061270f600e544060001c61230f919061484a565b600f819055506000600f54141561232957600a600f819055505b565b6000612336826121c3565b612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c906141d3565b60405180910390fd5b600061238083611392565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123ef57508373ffffffffffffffffffffffffffffffffffffffff166123d784610ae7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061240057506123ff8185611c3b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661242982611392565b73ffffffffffffffffffffffffffffffffffffffff161461247f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612476906142f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e690614193565b60405180910390fd5b6124fa838383612d3e565b61250560008261222f565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612555919061467e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ac919061459d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61266d61137b565b6126ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a3906140f3565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126f0612141565b6040516126fd919061400f565b60405180910390a1565b600061271282611392565b905061272081600084612d3e565b61272b60008361222f565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461277b919061467e565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128e461137b565b15612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b90614213565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612968612141565b604051612975919061400f565b60405180910390a1565b61298a848484612409565b61299684848484612d4e565b6129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc90614133565b60405180910390fd5b50505050565b600081600001549050919050565b612a03828260405180602001604052806000815250612ee5565b5050565b6001816000016000828254019250508190555050565b606060148054612a2c9061479e565b80601f0160208091040260200160405190810160405280929190818152602001828054612a589061479e565b8015612aa55780601f10612a7a57610100808354040283529160200191612aa5565b820191906000526020600020905b815481529060010190602001808311612a8857829003601f168201915b5050505050905090565b60606000821415612af7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c57565b600082905060005b60008214612b29578080612b1290614801565b915050600a82612b2291906145f3565b9150612aff565b60008167ffffffffffffffff811115612b6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b9d5781602001600182028036833780820191505090505b5090505b60008514612c5057600182612bb6919061467e565b9150600a85612bc5919061484a565b6030612bd1919061459d565b60f81b818381518110612c0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c4991906145f3565b9450612ba1565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d2757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d375750612d3682612f40565b5b9050919050565b612d49838383612faa565b505050565b6000612d6f8473ffffffffffffffffffffffffffffffffffffffff16613002565b15612ed8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d98612141565b8786866040518563ffffffff1660e01b8152600401612dba949392919061402a565b602060405180830381600087803b158015612dd457600080fd5b505af1925050508015612e0557506040513d601f19601f82011682018060405250810190612e029190613a20565b60015b612e88573d8060008114612e35576040519150601f19603f3d011682016040523d82523d6000602084013e612e3a565b606091505b50600081511415612e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7790614133565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612edd565b600190505b949350505050565b612eef8383613015565b612efc6000848484612d4e565b612f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3290614133565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612fb58383836131e3565b612fbd61137b565b15612ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff4906140d3565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307c90614293565b60405180910390fd5b61308e816121c3565b156130ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c590614173565b60405180910390fd5b6130da60008383612d3e565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461312a919061459d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6131ee8383836132f7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132315761322c816132fc565b613270565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461326f5761326e8382613345565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132b3576132ae816134b2565b6132f2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132f1576132f082826135f5565b5b5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613352846114eb565b61335c919061467e565b9050600060086000848152602001908152602001600020549050818114613441576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506134c6919061467e565b90506000600a600084815260200190815260200160002054905060006009838154811061351c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613564577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806135d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613600836114eb565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546136809061479e565b90600052602060002090601f0160209004810192826136a257600085556136e9565b82601f106136bb57805160ff19168380011785556136e9565b828001600101855582156136e9579182015b828111156136e85782518255916020019190600101906136cd565b5b5090506136f691906136fa565b5090565b5b808211156137135760008160009055506001016136fb565b5090565b600061372a613725846144bf565b61449a565b90508281526020810184848401111561374257600080fd5b61374d84828561475c565b509392505050565b6000613768613763846144f0565b61449a565b90508281526020810184848401111561378057600080fd5b61378b84828561475c565b509392505050565b6000813590506137a281615108565b92915050565b6000813590506137b78161511f565b92915050565b6000813590506137cc81615136565b92915050565b6000815190506137e181615136565b92915050565b600082601f8301126137f857600080fd5b8135613808848260208601613717565b91505092915050565b600082601f83011261382257600080fd5b8135613832848260208601613755565b91505092915050565b60008135905061384a8161514d565b92915050565b60006020828403121561386257600080fd5b600061387084828501613793565b91505092915050565b6000806040838503121561388c57600080fd5b600061389a85828601613793565b92505060206138ab85828601613793565b9150509250929050565b6000806000606084860312156138ca57600080fd5b60006138d886828701613793565b93505060206138e986828701613793565b92505060406138fa8682870161383b565b9150509250925092565b6000806000806080858703121561391a57600080fd5b600061392887828801613793565b945050602061393987828801613793565b935050604061394a8782880161383b565b925050606085013567ffffffffffffffff81111561396757600080fd5b613973878288016137e7565b91505092959194509250565b6000806040838503121561399257600080fd5b60006139a085828601613793565b92505060206139b1858286016137a8565b9150509250929050565b600080604083850312156139ce57600080fd5b60006139dc85828601613793565b92505060206139ed8582860161383b565b9150509250929050565b600060208284031215613a0957600080fd5b6000613a17848285016137bd565b91505092915050565b600060208284031215613a3257600080fd5b6000613a40848285016137d2565b91505092915050565b600060208284031215613a5b57600080fd5b600082013567ffffffffffffffff811115613a7557600080fd5b613a8184828501613811565b91505092915050565b600060208284031215613a9c57600080fd5b6000613aaa8482850161383b565b91505092915050565b6000613abf8383613fcd565b60208301905092915050565b613ad481614726565b82525050565b613ae3816146b2565b82525050565b6000613af482614531565b613afe818561455f565b9350613b0983614521565b8060005b83811015613b3a578151613b218882613ab3565b9750613b2c83614552565b925050600181019050613b0d565b5085935050505092915050565b613b50816146c4565b82525050565b6000613b618261453c565b613b6b8185614570565b9350613b7b81856020860161476b565b613b8481614937565b840191505092915050565b6000613b9a82614547565b613ba48185614581565b9350613bb481856020860161476b565b613bbd81614937565b840191505092915050565b6000613bd382614547565b613bdd8185614592565b9350613bed81856020860161476b565b80840191505092915050565b6000613c06603483614581565b9150613c1182614948565b604082019050919050565b6000613c29602b83614581565b9150613c3482614997565b604082019050919050565b6000613c4c601483614581565b9150613c57826149e6565b602082019050919050565b6000613c6f602b83614581565b9150613c7a82614a0f565b604082019050919050565b6000613c92603283614581565b9150613c9d82614a5e565b604082019050919050565b6000613cb5602683614581565b9150613cc082614aad565b604082019050919050565b6000613cd8601c83614581565b9150613ce382614afc565b602082019050919050565b6000613cfb602483614581565b9150613d0682614b25565b604082019050919050565b6000613d1e601983614581565b9150613d2982614b74565b602082019050919050565b6000613d41602c83614581565b9150613d4c82614b9d565b604082019050919050565b6000613d64603483614581565b9150613d6f82614bec565b604082019050919050565b6000613d87601083614581565b9150613d9282614c3b565b602082019050919050565b6000613daa603883614581565b9150613db582614c64565b604082019050919050565b6000613dcd602a83614581565b9150613dd882614cb3565b604082019050919050565b6000613df0602983614581565b9150613dfb82614d02565b604082019050919050565b6000613e13602083614581565b9150613e1e82614d51565b602082019050919050565b6000613e36602c83614581565b9150613e4182614d7a565b604082019050919050565b6000613e59602083614581565b9150613e6482614dc9565b602082019050919050565b6000613e7c602983614581565b9150613e8782614df2565b604082019050919050565b6000613e9f602f83614581565b9150613eaa82614e41565b604082019050919050565b6000613ec2602183614581565b9150613ecd82614e90565b604082019050919050565b6000613ee5603183614581565b9150613ef082614edf565b604082019050919050565b6000613f08602c83614581565b9150613f1382614f2e565b604082019050919050565b6000613f2b602c83614581565b9150613f3682614f7d565b604082019050919050565b6000613f4e602683614581565b9150613f5982614fcc565b604082019050919050565b6000613f71602b83614581565b9150613f7c8261501b565b604082019050919050565b6000613f94603083614581565b9150613f9f8261506a565b604082019050919050565b6000613fb7602e83614581565b9150613fc2826150b9565b604082019050919050565b613fd68161471c565b82525050565b613fe58161471c565b82525050565b6000613ff78285613bc8565b91506140038284613bc8565b91508190509392505050565b60006020820190506140246000830184613ada565b92915050565b600060808201905061403f6000830187613ada565b61404c6020830186613ada565b6140596040830185613fdc565b818103606083015261406b8184613b56565b905095945050505050565b600060208201905061408b6000830184613b47565b92915050565b600060208201905081810360008301526140ab8184613b8f565b905092915050565b600060208201905081810360008301526140cc81613bf9565b9050919050565b600060208201905081810360008301526140ec81613c1c565b9050919050565b6000602082019050818103600083015261410c81613c3f565b9050919050565b6000602082019050818103600083015261412c81613c62565b9050919050565b6000602082019050818103600083015261414c81613c85565b9050919050565b6000602082019050818103600083015261416c81613ca8565b9050919050565b6000602082019050818103600083015261418c81613ccb565b9050919050565b600060208201905081810360008301526141ac81613cee565b9050919050565b600060208201905081810360008301526141cc81613d11565b9050919050565b600060208201905081810360008301526141ec81613d34565b9050919050565b6000602082019050818103600083015261420c81613d57565b9050919050565b6000602082019050818103600083015261422c81613d7a565b9050919050565b6000602082019050818103600083015261424c81613d9d565b9050919050565b6000602082019050818103600083015261426c81613dc0565b9050919050565b6000602082019050818103600083015261428c81613de3565b9050919050565b600060208201905081810360008301526142ac81613e06565b9050919050565b600060208201905081810360008301526142cc81613e29565b9050919050565b600060208201905081810360008301526142ec81613e4c565b9050919050565b6000602082019050818103600083015261430c81613e6f565b9050919050565b6000602082019050818103600083015261432c81613e92565b9050919050565b6000602082019050818103600083015261434c81613eb5565b9050919050565b6000602082019050818103600083015261436c81613ed8565b9050919050565b6000602082019050818103600083015261438c81613efb565b9050919050565b600060208201905081810360008301526143ac81613f1e565b9050919050565b600060208201905081810360008301526143cc81613f41565b9050919050565b600060208201905081810360008301526143ec81613f64565b9050919050565b6000602082019050818103600083015261440c81613f87565b9050919050565b6000602082019050818103600083015261442c81613faa565b9050919050565b60006020820190506144486000830184613fdc565b92915050565b60006080820190506144636000830187613fdc565b6144706020830186613acb565b61447d6040830185613fdc565b818103606083015261448f8184613ae9565b905095945050505050565b60006144a46144b5565b90506144b082826147d0565b919050565b6000604051905090565b600067ffffffffffffffff8211156144da576144d9614908565b5b6144e382614937565b9050602081019050919050565b600067ffffffffffffffff82111561450b5761450a614908565b5b61451482614937565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145a88261471c565b91506145b38361471c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145e8576145e761487b565b5b828201905092915050565b60006145fe8261471c565b91506146098361471c565b925082614619576146186148aa565b5b828204905092915050565b600061462f8261471c565b915061463a8361471c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146735761467261487b565b5b828202905092915050565b60006146898261471c565b91506146948361471c565b9250828210156146a7576146a661487b565b5b828203905092915050565b60006146bd826146fc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061473182614738565b9050919050565b60006147438261474a565b9050919050565b6000614755826146fc565b9050919050565b82818337600083830152505050565b60005b8381101561478957808201518184015260208101905061476e565b83811115614798576000848401525b50505050565b600060028204905060018216806147b657607f821691505b602082108114156147ca576147c96148d9565b5b50919050565b6147d982614937565b810181811067ffffffffffffffff821117156147f8576147f7614908565b5b80604052505050565b600061480c8261471c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561483f5761483e61487b565b5b600182019050919050565b60006148558261471c565b91506148608361471c565b9250826148705761486f6148aa565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f54696b6954726962653a2043616e6e6f7420636c61696d206d6f72652074686160008201527f6e2031302054696b697320696e206f6e65207478000000000000000000000000602082015250565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f54696b6954726962653a20436c61696d2077696c6c20657863656564206d617860008201527f696d756d20617661696c61626c652054696b6973000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f54696b6954726962653a20496e73756666696369656e742066756e647320746f60008201527f20636c61696d2054696b69730000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f54696b6954726962653a204d75737420636c61696d2061746c65617374206f6e60008201527f652054696b690000000000000000000000000000000000000000000000000000602082015250565b7f54696b6954726962653a2043616e6e6f7420636c61696d2054696b697320617460008201527f20746865206d6f6d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f54696b6954726962653a20416c6c2054696b6973206861766520616c7265616460008201527f79206265656e20636c61696d6564000000000000000000000000000000000000602082015250565b615111816146b2565b811461511c57600080fd5b50565b615128816146c4565b811461513357600080fd5b50565b61513f816146d0565b811461514a57600080fd5b50565b6151568161471c565b811461516157600080fd5b5056fea26469706673582212206da4e038e0957f17f336e470313aa06e820b8d98d6df17a33f2d382f0c15b5dd64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000006130e6f00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a697441544c77714b76415a4d3377763743675a4461336e4b764142336f72513754576f533161624a6869772f00000000000000000000
Deployed Bytecode
0x6080604052600436106102675760003560e01c8063638d06d511610144578063b88d4fde116100b6578063dd51babf1161007a578063dd51babf146108ba578063e36d6498146108e5578063e985e9c514610910578063f2fde38b1461094d578063f62f3c1114610976578063fe67b72d146109a157610267565b8063b88d4fde146107d5578063bf748b97146107fe578063c6ab67a314610827578063c87b56dd14610852578063cb774d471461088f57610267565b80638456cb59116101085780638456cb59146106eb5780638da5cb5b1461070257806391b7f5ed1461072d57806395d89b4114610756578063a035b1fe14610781578063a22cb465146107ac57610267565b8063638d06d51461061857806370a0823114610641578063715018a61461067e57806371b9b646146106955780638236b5e8146106c057610267565b806323b872dd116101dd57806342966c68116101a157806342966c681461050a57806348b15d02146105335780634f6ccce71461054a57806355f804b3146105875780635c975abb146105b05780636352211e146105db57610267565b806323b872dd1461044d5780632f745c59146104765780633ccfd60b146104b35780633f4ba83a146104ca57806342842e0e146104e157610267565b8063109695231161022f578063109695231461036357806310da2eb91461038c57806315494a16146103b757806318160ddd146103e05780631b1ae6d41461040b5780631ec0c2b11461043657610267565b8063018a2c371461026c57806301ffc9a71461029557806306fdde03146102d2578063081812fc146102fd578063095ea7b31461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613a8a565b6109bd565b005b3480156102a157600080fd5b506102bc60048036038101906102b791906139f7565b610a43565b6040516102c99190614076565b60405180910390f35b3480156102de57600080fd5b506102e7610a55565b6040516102f49190614091565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613a8a565b610ae7565b604051610331919061400f565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906139bb565b610b6c565b005b34801561036f57600080fd5b5061038a60048036038101906103859190613a49565b610c84565b005b34801561039857600080fd5b506103a1610d1a565b6040516103ae9190614091565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190613a8a565b610da8565b005b3480156103ec57600080fd5b506103f5610e2e565b6040516104029190614433565b60405180910390f35b34801561041757600080fd5b50610420610e3b565b60405161042d9190614433565b60405180910390f35b34801561044257600080fd5b5061044b610e41565b005b34801561045957600080fd5b50610474600480360381019061046f91906138b5565b610ec7565b005b34801561048257600080fd5b5061049d600480360381019061049891906139bb565b610f27565b6040516104aa9190614433565b60405180910390f35b3480156104bf57600080fd5b506104c8610fcc565b005b3480156104d657600080fd5b506104df6110a4565b005b3480156104ed57600080fd5b50610508600480360381019061050391906138b5565b61112a565b005b34801561051657600080fd5b50610531600480360381019061052c9190613a8a565b61114a565b005b34801561053f57600080fd5b506105486111a6565b005b34801561055657600080fd5b50610571600480360381019061056c9190613a8a565b61124e565b60405161057e9190614433565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190613a49565b6112e5565b005b3480156105bc57600080fd5b506105c561137b565b6040516105d29190614076565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190613a8a565b611392565b60405161060f919061400f565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190613a8a565b611444565b005b34801561064d57600080fd5b5061066860048036038101906106639190613850565b6114eb565b6040516106759190614433565b60405180910390f35b34801561068a57600080fd5b506106936115a3565b005b3480156106a157600080fd5b506106aa61162b565b6040516106b79190614076565b60405180910390f35b3480156106cc57600080fd5b506106d561163e565b6040516106e29190614433565b60405180910390f35b3480156106f757600080fd5b50610700611644565b005b34801561070e57600080fd5b506107176116ca565b604051610724919061400f565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613a8a565b6116f3565b005b34801561076257600080fd5b5061076b611779565b6040516107789190614091565b60405180910390f35b34801561078d57600080fd5b5061079661180b565b6040516107a39190614433565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce919061397f565b611811565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190613904565b611992565b005b34801561080a57600080fd5b5061082560048036038101906108209190613850565b6119f4565b005b34801561083357600080fd5b5061083c611ae9565b6040516108499190614091565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613a8a565b611b77565b6040516108869190614091565b60405180910390f35b34801561089b57600080fd5b506108a4611c1e565b6040516108b19190614433565b60405180910390f35b3480156108c657600080fd5b506108cf611c24565b6040516108dc9190614433565b60405180910390f35b3480156108f157600080fd5b506108fa611c35565b6040516109079190614433565b60405180910390f35b34801561091c57600080fd5b5061093760048036038101906109329190613879565b611c3b565b6040516109449190614076565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f9190613850565b611ccf565b005b34801561098257600080fd5b5061098b611dc7565b6040516109989190614433565b60405180910390f35b6109bb60048036038101906109b69190613a8a565b611dcd565b005b6109c5612141565b73ffffffffffffffffffffffffffffffffffffffff166109e36116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a30906142d3565b60405180910390fd5b8060118190555050565b6000610a4e82612149565b9050919050565b606060018054610a649061479e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a909061479e565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b6000610af2826121c3565b610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b28906142b3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7782611392565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90614333565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c07612141565b73ffffffffffffffffffffffffffffffffffffffff161480610c365750610c3581610c30612141565b611c3b565b5b610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90614233565b60405180910390fd5b610c7f838361222f565b505050565b610c8c612141565b73ffffffffffffffffffffffffffffffffffffffff16610caa6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf7906142d3565b60405180910390fd5b80600d9080519060200190610d16929190613674565b5050565b60148054610d279061479e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d539061479e565b8015610da05780601f10610d7557610100808354040283529160200191610da0565b820191906000526020600020905b815481529060010190602001808311610d8357829003601f168201915b505050505081565b610db0612141565b73ffffffffffffffffffffffffffffffffffffffff16610dce6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906142d3565b60405180910390fd5b8060108190555050565b6000600980549050905090565b60105481565b610e49612141565b73ffffffffffffffffffffffffffffffffffffffff16610e676116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb4906142d3565b60405180910390fd5b610ec56122e8565b565b610ed8610ed2612141565b8261232b565b610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90614353565b60405180910390fd5b610f22838383612409565b505050565b6000610f32836114eb565b8210610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a90614113565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610fd4612141565b73ffffffffffffffffffffffffffffffffffffffff16610ff26116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906142d3565b60405180910390fd5b60004790506000611057612141565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561109f573d6000803e3d6000fd5b505050565b6110ac612141565b73ffffffffffffffffffffffffffffffffffffffff166110ca6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611120576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611117906142d3565b60405180910390fd5b611128612665565b565b61114583838360405180602001604052806000815250611992565b505050565b61115b611155612141565b8261232b565b61119a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611191906143f3565b60405180910390fd5b6111a381612707565b50565b6111ae612141565b73ffffffffffffffffffffffffffffffffffffffff166111cc6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611219906142d3565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000611258610e2e565b8210611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090614393565b60405180910390fd5b600982815481106112d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6112ed612141565b73ffffffffffffffffffffffffffffffffffffffff1661130b6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611358906142d3565b60405180910390fd5b8060149080519060200190611377929190613674565b5050565b6000600b60009054906101000a900460ff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290614273565b60405180910390fd5b80915050919050565b61144c612141565b73ffffffffffffffffffffffffffffffffffffffff1661146a6116ca565b73ffffffffffffffffffffffffffffffffffffffff16146114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b7906142d3565b60405180910390fd5b60005b818110156114e7576114d4336119f4565b80806114df90614801565b9150506114c3565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390614253565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115ab612141565b73ffffffffffffffffffffffffffffffffffffffff166115c96116ca565b73ffffffffffffffffffffffffffffffffffffffff161461161f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611616906142d3565b60405180910390fd5b6116296000612818565b565b601260009054906101000a900460ff1681565b61270f81565b61164c612141565b73ffffffffffffffffffffffffffffffffffffffff1661166a6116ca565b73ffffffffffffffffffffffffffffffffffffffff16146116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b7906142d3565b60405180910390fd5b6116c86128dc565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116fb612141565b73ffffffffffffffffffffffffffffffffffffffff166117196116ca565b73ffffffffffffffffffffffffffffffffffffffff161461176f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611766906142d3565b60405180910390fd5b8060138190555050565b6060600280546117889061479e565b80601f01602080910402602001604051908101604052809291908181526020018280546117b49061479e565b80156118015780601f106117d657610100808354040283529160200191611801565b820191906000526020600020905b8154815290600101906020018083116117e457829003601f168201915b5050505050905090565b60135481565b611819612141565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e906141b3565b60405180910390fd5b8060066000611894612141565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611941612141565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119869190614076565b60405180910390a35050565b6119a361199d612141565b8361232b565b6119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990614353565b60405180910390fd5b6119ee8484848461297f565b50505050565b6119fc612141565b73ffffffffffffffffffffffffffffffffffffffff16611a1a6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a67906142d3565b60405180910390fd5b61270f611a7d600c6129db565b10611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490614413565b60405180910390fd5b611adc816001611acd600c6129db565b611ad7919061459d565b6129e9565b611ae6600c612a07565b50565b600d8054611af69061479e565b80601f0160208091040260200160405190810160405280929190818152602001828054611b229061479e565b8015611b6f5780601f10611b4457610100808354040283529160200191611b6f565b820191906000526020600020905b815481529060010190602001808311611b5257829003601f168201915b505050505081565b6060611b82826121c3565b611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890614313565b60405180910390fd5b6000611bcb612a1d565b90506000815111611beb5760405180602001604052806000815250611c16565b80611bf584612aaf565b604051602001611c06929190613feb565b6040516020818303038152906040525b915050919050565b600f5481565b6000611c30600c6129db565b905090565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cd7612141565b73ffffffffffffffffffffffffffffffffffffffff16611cf56116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906142d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db290614153565b60405180910390fd5b611dc481612818565b50565b60115481565b601260009054906101000a900460ff16611e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e13906143d3565b60405180910390fd5b61270f81611e2a600c6129db565b611e34919061459d565b1115611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c906141f3565b60405180910390fd5b60008111611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf906143b3565b60405180910390fd5b601054811115611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef4906140b3565b60405180910390fd5b80601354611f0b9190614624565b341015611f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4490614373565b60405180910390fd5b6000611f57612141565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc83601354611f819190614624565b34611f8c919061467e565b9081150290604051600060405180830381858888f19350505050158015611fb7573d6000803e3d6000fd5b5060008267ffffffffffffffff811115611ffa577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156120285781602001602082028036833780820191505090505b50905060005b838110156120be5760006001612044600c6129db565b61204e919061459d565b90508083838151811061208a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506120a033826129e9565b6120aa600c612a07565b5080806120b690614801565b91505061202e565b506000600e541480156120e8575061270f6120d9600c6129db565b14806120e757506011544210155b5b156120f6576120f56122e8565b5b7fe82e0b5afaf9aaba9d69ccd991ce747877011922c17efd5f5be6a34c1bda80d4612121600c6129db565b838584604051612134949392919061444e565b60405180910390a1505050565b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121bc57506121bb82612c5c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122a283611392565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001436122f5919061467e565b600e8190555061270f600e544060001c61230f919061484a565b600f819055506000600f54141561232957600a600f819055505b565b6000612336826121c3565b612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c906141d3565b60405180910390fd5b600061238083611392565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123ef57508373ffffffffffffffffffffffffffffffffffffffff166123d784610ae7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061240057506123ff8185611c3b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661242982611392565b73ffffffffffffffffffffffffffffffffffffffff161461247f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612476906142f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e690614193565b60405180910390fd5b6124fa838383612d3e565b61250560008261222f565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612555919061467e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ac919061459d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61266d61137b565b6126ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a3906140f3565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126f0612141565b6040516126fd919061400f565b60405180910390a1565b600061271282611392565b905061272081600084612d3e565b61272b60008361222f565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461277b919061467e565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128e461137b565b15612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b90614213565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612968612141565b604051612975919061400f565b60405180910390a1565b61298a848484612409565b61299684848484612d4e565b6129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc90614133565b60405180910390fd5b50505050565b600081600001549050919050565b612a03828260405180602001604052806000815250612ee5565b5050565b6001816000016000828254019250508190555050565b606060148054612a2c9061479e565b80601f0160208091040260200160405190810160405280929190818152602001828054612a589061479e565b8015612aa55780601f10612a7a57610100808354040283529160200191612aa5565b820191906000526020600020905b815481529060010190602001808311612a8857829003601f168201915b5050505050905090565b60606000821415612af7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c57565b600082905060005b60008214612b29578080612b1290614801565b915050600a82612b2291906145f3565b9150612aff565b60008167ffffffffffffffff811115612b6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b9d5781602001600182028036833780820191505090505b5090505b60008514612c5057600182612bb6919061467e565b9150600a85612bc5919061484a565b6030612bd1919061459d565b60f81b818381518110612c0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c4991906145f3565b9450612ba1565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d2757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d375750612d3682612f40565b5b9050919050565b612d49838383612faa565b505050565b6000612d6f8473ffffffffffffffffffffffffffffffffffffffff16613002565b15612ed8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d98612141565b8786866040518563ffffffff1660e01b8152600401612dba949392919061402a565b602060405180830381600087803b158015612dd457600080fd5b505af1925050508015612e0557506040513d601f19601f82011682018060405250810190612e029190613a20565b60015b612e88573d8060008114612e35576040519150601f19603f3d011682016040523d82523d6000602084013e612e3a565b606091505b50600081511415612e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7790614133565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612edd565b600190505b949350505050565b612eef8383613015565b612efc6000848484612d4e565b612f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3290614133565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612fb58383836131e3565b612fbd61137b565b15612ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff4906140d3565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307c90614293565b60405180910390fd5b61308e816121c3565b156130ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c590614173565b60405180910390fd5b6130da60008383612d3e565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461312a919061459d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6131ee8383836132f7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132315761322c816132fc565b613270565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461326f5761326e8382613345565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132b3576132ae816134b2565b6132f2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132f1576132f082826135f5565b5b5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613352846114eb565b61335c919061467e565b9050600060086000848152602001908152602001600020549050818114613441576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506134c6919061467e565b90506000600a600084815260200190815260200160002054905060006009838154811061351c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613564577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806135d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613600836114eb565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546136809061479e565b90600052602060002090601f0160209004810192826136a257600085556136e9565b82601f106136bb57805160ff19168380011785556136e9565b828001600101855582156136e9579182015b828111156136e85782518255916020019190600101906136cd565b5b5090506136f691906136fa565b5090565b5b808211156137135760008160009055506001016136fb565b5090565b600061372a613725846144bf565b61449a565b90508281526020810184848401111561374257600080fd5b61374d84828561475c565b509392505050565b6000613768613763846144f0565b61449a565b90508281526020810184848401111561378057600080fd5b61378b84828561475c565b509392505050565b6000813590506137a281615108565b92915050565b6000813590506137b78161511f565b92915050565b6000813590506137cc81615136565b92915050565b6000815190506137e181615136565b92915050565b600082601f8301126137f857600080fd5b8135613808848260208601613717565b91505092915050565b600082601f83011261382257600080fd5b8135613832848260208601613755565b91505092915050565b60008135905061384a8161514d565b92915050565b60006020828403121561386257600080fd5b600061387084828501613793565b91505092915050565b6000806040838503121561388c57600080fd5b600061389a85828601613793565b92505060206138ab85828601613793565b9150509250929050565b6000806000606084860312156138ca57600080fd5b60006138d886828701613793565b93505060206138e986828701613793565b92505060406138fa8682870161383b565b9150509250925092565b6000806000806080858703121561391a57600080fd5b600061392887828801613793565b945050602061393987828801613793565b935050604061394a8782880161383b565b925050606085013567ffffffffffffffff81111561396757600080fd5b613973878288016137e7565b91505092959194509250565b6000806040838503121561399257600080fd5b60006139a085828601613793565b92505060206139b1858286016137a8565b9150509250929050565b600080604083850312156139ce57600080fd5b60006139dc85828601613793565b92505060206139ed8582860161383b565b9150509250929050565b600060208284031215613a0957600080fd5b6000613a17848285016137bd565b91505092915050565b600060208284031215613a3257600080fd5b6000613a40848285016137d2565b91505092915050565b600060208284031215613a5b57600080fd5b600082013567ffffffffffffffff811115613a7557600080fd5b613a8184828501613811565b91505092915050565b600060208284031215613a9c57600080fd5b6000613aaa8482850161383b565b91505092915050565b6000613abf8383613fcd565b60208301905092915050565b613ad481614726565b82525050565b613ae3816146b2565b82525050565b6000613af482614531565b613afe818561455f565b9350613b0983614521565b8060005b83811015613b3a578151613b218882613ab3565b9750613b2c83614552565b925050600181019050613b0d565b5085935050505092915050565b613b50816146c4565b82525050565b6000613b618261453c565b613b6b8185614570565b9350613b7b81856020860161476b565b613b8481614937565b840191505092915050565b6000613b9a82614547565b613ba48185614581565b9350613bb481856020860161476b565b613bbd81614937565b840191505092915050565b6000613bd382614547565b613bdd8185614592565b9350613bed81856020860161476b565b80840191505092915050565b6000613c06603483614581565b9150613c1182614948565b604082019050919050565b6000613c29602b83614581565b9150613c3482614997565b604082019050919050565b6000613c4c601483614581565b9150613c57826149e6565b602082019050919050565b6000613c6f602b83614581565b9150613c7a82614a0f565b604082019050919050565b6000613c92603283614581565b9150613c9d82614a5e565b604082019050919050565b6000613cb5602683614581565b9150613cc082614aad565b604082019050919050565b6000613cd8601c83614581565b9150613ce382614afc565b602082019050919050565b6000613cfb602483614581565b9150613d0682614b25565b604082019050919050565b6000613d1e601983614581565b9150613d2982614b74565b602082019050919050565b6000613d41602c83614581565b9150613d4c82614b9d565b604082019050919050565b6000613d64603483614581565b9150613d6f82614bec565b604082019050919050565b6000613d87601083614581565b9150613d9282614c3b565b602082019050919050565b6000613daa603883614581565b9150613db582614c64565b604082019050919050565b6000613dcd602a83614581565b9150613dd882614cb3565b604082019050919050565b6000613df0602983614581565b9150613dfb82614d02565b604082019050919050565b6000613e13602083614581565b9150613e1e82614d51565b602082019050919050565b6000613e36602c83614581565b9150613e4182614d7a565b604082019050919050565b6000613e59602083614581565b9150613e6482614dc9565b602082019050919050565b6000613e7c602983614581565b9150613e8782614df2565b604082019050919050565b6000613e9f602f83614581565b9150613eaa82614e41565b604082019050919050565b6000613ec2602183614581565b9150613ecd82614e90565b604082019050919050565b6000613ee5603183614581565b9150613ef082614edf565b604082019050919050565b6000613f08602c83614581565b9150613f1382614f2e565b604082019050919050565b6000613f2b602c83614581565b9150613f3682614f7d565b604082019050919050565b6000613f4e602683614581565b9150613f5982614fcc565b604082019050919050565b6000613f71602b83614581565b9150613f7c8261501b565b604082019050919050565b6000613f94603083614581565b9150613f9f8261506a565b604082019050919050565b6000613fb7602e83614581565b9150613fc2826150b9565b604082019050919050565b613fd68161471c565b82525050565b613fe58161471c565b82525050565b6000613ff78285613bc8565b91506140038284613bc8565b91508190509392505050565b60006020820190506140246000830184613ada565b92915050565b600060808201905061403f6000830187613ada565b61404c6020830186613ada565b6140596040830185613fdc565b818103606083015261406b8184613b56565b905095945050505050565b600060208201905061408b6000830184613b47565b92915050565b600060208201905081810360008301526140ab8184613b8f565b905092915050565b600060208201905081810360008301526140cc81613bf9565b9050919050565b600060208201905081810360008301526140ec81613c1c565b9050919050565b6000602082019050818103600083015261410c81613c3f565b9050919050565b6000602082019050818103600083015261412c81613c62565b9050919050565b6000602082019050818103600083015261414c81613c85565b9050919050565b6000602082019050818103600083015261416c81613ca8565b9050919050565b6000602082019050818103600083015261418c81613ccb565b9050919050565b600060208201905081810360008301526141ac81613cee565b9050919050565b600060208201905081810360008301526141cc81613d11565b9050919050565b600060208201905081810360008301526141ec81613d34565b9050919050565b6000602082019050818103600083015261420c81613d57565b9050919050565b6000602082019050818103600083015261422c81613d7a565b9050919050565b6000602082019050818103600083015261424c81613d9d565b9050919050565b6000602082019050818103600083015261426c81613dc0565b9050919050565b6000602082019050818103600083015261428c81613de3565b9050919050565b600060208201905081810360008301526142ac81613e06565b9050919050565b600060208201905081810360008301526142cc81613e29565b9050919050565b600060208201905081810360008301526142ec81613e4c565b9050919050565b6000602082019050818103600083015261430c81613e6f565b9050919050565b6000602082019050818103600083015261432c81613e92565b9050919050565b6000602082019050818103600083015261434c81613eb5565b9050919050565b6000602082019050818103600083015261436c81613ed8565b9050919050565b6000602082019050818103600083015261438c81613efb565b9050919050565b600060208201905081810360008301526143ac81613f1e565b9050919050565b600060208201905081810360008301526143cc81613f41565b9050919050565b600060208201905081810360008301526143ec81613f64565b9050919050565b6000602082019050818103600083015261440c81613f87565b9050919050565b6000602082019050818103600083015261442c81613faa565b9050919050565b60006020820190506144486000830184613fdc565b92915050565b60006080820190506144636000830187613fdc565b6144706020830186613acb565b61447d6040830185613fdc565b818103606083015261448f8184613ae9565b905095945050505050565b60006144a46144b5565b90506144b082826147d0565b919050565b6000604051905090565b600067ffffffffffffffff8211156144da576144d9614908565b5b6144e382614937565b9050602081019050919050565b600067ffffffffffffffff82111561450b5761450a614908565b5b61451482614937565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145a88261471c565b91506145b38361471c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145e8576145e761487b565b5b828201905092915050565b60006145fe8261471c565b91506146098361471c565b925082614619576146186148aa565b5b828204905092915050565b600061462f8261471c565b915061463a8361471c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146735761467261487b565b5b828202905092915050565b60006146898261471c565b91506146948361471c565b9250828210156146a7576146a661487b565b5b828203905092915050565b60006146bd826146fc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061473182614738565b9050919050565b60006147438261474a565b9050919050565b6000614755826146fc565b9050919050565b82818337600083830152505050565b60005b8381101561478957808201518184015260208101905061476e565b83811115614798576000848401525b50505050565b600060028204905060018216806147b657607f821691505b602082108114156147ca576147c96148d9565b5b50919050565b6147d982614937565b810181811067ffffffffffffffff821117156147f8576147f7614908565b5b80604052505050565b600061480c8261471c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561483f5761483e61487b565b5b600182019050919050565b60006148558261471c565b91506148608361471c565b9250826148705761486f6148aa565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f54696b6954726962653a2043616e6e6f7420636c61696d206d6f72652074686160008201527f6e2031302054696b697320696e206f6e65207478000000000000000000000000602082015250565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f54696b6954726962653a20436c61696d2077696c6c20657863656564206d617860008201527f696d756d20617661696c61626c652054696b6973000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f54696b6954726962653a20496e73756666696369656e742066756e647320746f60008201527f20636c61696d2054696b69730000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f54696b6954726962653a204d75737420636c61696d2061746c65617374206f6e60008201527f652054696b690000000000000000000000000000000000000000000000000000602082015250565b7f54696b6954726962653a2043616e6e6f7420636c61696d2054696b697320617460008201527f20746865206d6f6d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f54696b6954726962653a20416c6c2054696b6973206861766520616c7265616460008201527f79206265656e20636c61696d6564000000000000000000000000000000000000602082015250565b615111816146b2565b811461511c57600080fd5b50565b615128816146c4565b811461513357600080fd5b50565b61513f816146d0565b811461514a57600080fd5b50565b6151568161471c565b811461516157600080fd5b5056fea26469706673582212206da4e038e0957f17f336e470313aa06e820b8d98d6df17a33f2d382f0c15b5dd64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000006130e6f00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a697441544c77714b76415a4d3377763743675a4461336e4b764142336f72513754576f533161624a6869772f00000000000000000000
-----Decoded View---------------
Arg [0] : _metadataBaseURL (string): ipfs://QmZitATLwqKvAZM3wv7CgZDa3nKvAB3orQ7TWoS1abJhiw/
Arg [1] : _revealTimestamp (uint256): 1630594800
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000000000000000000000000000000000006130e6f0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5a697441544c77714b76415a4d3377763743675a446133
Arg [4] : 6e4b764142336f72513754576f533161624a6869772f00000000000000000000
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.