Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,585 CVS
Holders
1,465
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CVSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ConcaveNFT
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 pragma solidity ^0.8.0; /** The Concave Spoons */ import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract ConcaveNFT is ERC721Enumerable, Pausable, Ownable { using Strings for uint256; using Counters for Counters.Counter; // Private // Counter for tokenIds Counters.Counter private _tokenIds; bool private _isPublicMintActive; // Public Variables string public baseURI; // Base URI for NFT post reveal string public notRevealedUri; // Base URI for NFT pre-reveal uint256 public maxMintAmount = 25; // Max amount of mints per transaction uint256 public price = 0.02 ether; // Price per mint bool public revealed = false; // NFT URI has been revealed mapping(uint256 => bool) public hasClaimed; // Whether tokenId has been claimed // Public Constants address public constant THE_COLORS = 0x9fdb31F8CE3cB8400C7cCb2299492F2A498330a4; address public constant TREASURY = 0x48aE900E9Df45441B2001dB4dA92CE0E7C08c6d2; uint256 public constant MAX_SUPPLY = 8888; uint256 public constant TOTAL_COLORS_QUOTA = 200; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { baseURI = _initBaseURI; notRevealedUri = _initNotRevealedUri; _pause(); } /* @notice: mint is for minting 1 once the public sale is active. The following checks occur, it checks: - that the public mint is active - whether collection sold out - finally checks where value > price Upon passing checks it calls the internal _mintOnce function to perform the minting. */ function mint() external payable whenNotPaused { uint256 _totalSupply = totalSupply(); require( _isPublicMintActiveInternal(_totalSupply), "public sale not active" ); require(!_isSoldOut(_totalSupply), "sold out"); require(msg.value == price, "insufficient funds"); _mintOnce(); } /* @notice: mintMany is for minting many once the public sale is active. The parameter _mintAmount indicates the number of tokens the user wishes to mint. The following checks occur, it checks: - that the public mint is active - whether collection sold out - whether _mintAmount is within boundaries: 0 < x <= 10 - whether minting _mintAmount would exceed supply. - finally checks where value > price*_mintAmount Upon passing checks it calls the internal _mintOnce function to perform the minting. */ function mintMany(uint256 _mintAmount) external payable whenNotPaused { uint256 _totalSupply = totalSupply(); require( _isPublicMintActiveInternal(_totalSupply), "public sale not active" ); // require(!_isSoldOut(_totalSupply), "sold out"); require(_mintAmount <= maxMintAmount,"exceeds max mint per tx"); // require(_mintAmount > 0,"Mint should be > 0"); require( _totalSupply + _mintAmount <= MAX_SUPPLY, "exceeds supply" ); require(msg.value == price * _mintAmount, "insufficient funds"); for (uint i = 0; i < _mintAmount; i++) { _mintOnce(); } } /* @notice: mintColorsBatch is for colors holders to mint a batch of their specific tokens. The following checks occur, it checks: - that the public mint not be active - number of tokens in the array does not exceed boundaries: 0 < tokenIds.length <= 10 Then, it begins looping over the array of tokenIds sent and performs the following checks: - that the tokenID has not already been claimed - that the owner of the tokenID is the msg.sender It then sets the token as claimed. Finally calls the _mintOnce internal function to perform the mint. */ function mintColorsBatch(uint256[] memory tokenIds) external whenNotPaused { uint256 _totalSupply = totalSupply(); require(!_isPublicMintActiveInternal(_totalSupply),"presale over"); require(tokenIds.length <= maxMintAmount,"exceeds max mint per tx"); require(tokenIds.length > 0,"Mint should be > 0"); for (uint256 i = 0; i < tokenIds.length; i++) { require(!hasClaimed[tokenIds[i]], "Color already claimed."); require( msg.sender == IERC721(THE_COLORS).ownerOf(tokenIds[i]), "Only owner can claim." ); hasClaimed[tokenIds[i]] = true; _mintOnce(); } } /* @notice: mintColorsOnce is for colors holders to mint a single specific token. The following checks occur, it checks: - that the public mint not be active - that the tokenID has not already been claimed - that the owner of the tokenID is the msg.sender It then sets the token as claimed. Finally calls the _mintOnce internal function to perform the mint. */ function mintColorsOnce(uint256 tokenId) external whenNotPaused { uint256 _totalSupply = totalSupply(); require(!_isPublicMintActiveInternal(_totalSupply),"presale over"); require(!hasClaimed[tokenId], "Color already claimed."); require( msg.sender == IERC721(THE_COLORS).ownerOf(tokenId), "Only owner can claim." ); hasClaimed[tokenId] = true; _mintOnce(); } /** * View Functions */ function isPublicMintActive() external view returns (bool) { return _isPublicMintActiveInternal(totalSupply()); } function isSoldOut() external view returns (bool) { return _isSoldOut(totalSupply()); } /* @notice: this is a helper function for the frontend that allows the user to view how many of their colors are available to be minted. */ function getUnmintedSpoonsByUser(address user) external view returns (uint256[] memory) { uint256[] memory tokenIds = new uint256[](4317); uint index = 0; for (uint i = 0; i < 4317; i++) { address tokenOwner = ERC721(THE_COLORS).ownerOf(i); if (user == tokenOwner && !hasClaimed[i]) { tokenIds[index] = i; index += 1; } } uint left = 4317 - index; for (uint i = 0; i < left; i++) { tokenIds[index] = 9999; index += 1; } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (!revealed) { return notRevealedUri; } return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : ""; } /** * Owner Functions */ function unpause() external onlyOwner { _unpause(); } function pause() external onlyOwner { _pause(); } function reveal() external onlyOwner { revealed = true; } function withdraw() external payable onlyOwner { uint256 balance = address(this).balance; uint256 for_r1 = (balance * 10) / 100; uint256 for_r2 = (balance * 9) / 100; uint256 for_r3 = (balance * 9) / 100; uint256 for_r4 = (balance * 9) / 100; uint256 for_r5 = (balance * 3) / 100; uint256 for_r6 = (balance * 5) / 100; uint256 for_r7 = (balance * 5) / 100; payable(0x2F66d5D7561e1bE587968cd336FA3623E5792dc2).transfer(for_r1); payable(0xeb9ADe429FBA6c51a1B352a869417Bd410bC1421).transfer(for_r2); payable(0xf1A1e46463362C0751Af4Ff46037D1815d66bB4D).transfer(for_r3); payable(0x1E3005BD8281148f1b00bdcC94E8d0cD9DA242C2).transfer(for_r4); payable(0x21761978a6F93D0bF5bAb5F75762880E8dc813e8).transfer(for_r5); payable(0x5b3DBf9004E01509777329B762EC2332565F12fA).transfer(for_r6); payable(0xe873Fa8436097Bcdfa593EEd60c10eFAd4244dC0).transfer(for_r7); payable(TREASURY).transfer(address(this).balance); } function setNotRevealedURI(string calldata _notRevealedURI) external onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string calldata _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function setMaxMintAmount(uint256 _newmaxMintAmount) external onlyOwner { maxMintAmount = _newmaxMintAmount; } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setPublicMintActive(bool _active) external onlyOwner { _isPublicMintActive = _active; } /** * Internal */ /* @notice: the _mintOnce initernal function is called by the public mint functions (mint,mintMany,mintColorsOnce,mintColorsOnce) and is in charge of increasing the token counter and minting. */ function _mintOnce() internal { uint256 newItemId = _tokenIds.current(); _tokenIds.increment(); _safeMint(msg.sender, newItemId); } function _isPublicMintActiveInternal(uint256 _totalSupply) view internal returns (bool) { return _totalSupply >= TOTAL_COLORS_QUOTA || _isPublicMintActive; } function _isSoldOut(uint256 _totalSupply) pure internal returns (bool) { return !(_totalSupply < MAX_SUPPLY); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) 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 // OpenZeppelin Contracts v4.4.0 (utils/Counters.sol) 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 // OpenZeppelin Contracts v4.4.0 (security/Pausable.sol) 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()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) 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() { _transferOwnership(_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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) 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 { _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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 // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) 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 // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) 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 // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) 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 // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) 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 // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) 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 // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"THE_COLORS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_COLORS_QUOTA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUnmintedSpoonsByUser","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isPublicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSoldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"mintColorsBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintColorsOnce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setPublicMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"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":"payable","type":"function"}]
Contract Creation Code
60806040526019600f5566470de4df8200006010556000601160006101000a81548160ff0219169083151502179055503480156200003c57600080fd5b50604051620061ad380380620061ad8339818101604052810190620000629190620003de565b838381600090805190602001906200007c929190620002bc565b50806001908051906020019062000095929190620002bc565b5050506000600a60006101000a81548160ff021916908315150217905550620000d3620000c76200011f60201b60201c565b6200012760201b60201c565b81600d9080519060200190620000eb929190620002bc565b5080600e908051906020019062000104929190620002bc565b5062000115620001ed60201b60201c565b5050505062000703565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001fd620002a560201b60201c565b1562000240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002379062000503565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200028c6200011f60201b60201c565b6040516200029b9190620004e6565b60405180910390a1565b6000600a60009054906101000a900460ff16905090565b828054620002ca90620005ff565b90600052602060002090601f016020900481019282620002ee57600085556200033a565b82601f106200030957805160ff19168380011785556200033a565b828001600101855582156200033a579182015b82811115620003395782518255916020019190600101906200031c565b5b5090506200034991906200034d565b5090565b5b80821115620003685760008160009055506001016200034e565b5090565b6000620003836200037d846200054e565b62000525565b9050828152602081018484840111156200039c57600080fd5b620003a9848285620005c9565b509392505050565b600082601f830112620003c357600080fd5b8151620003d58482602086016200036c565b91505092915050565b60008060008060808587031215620003f557600080fd5b600085015167ffffffffffffffff8111156200041057600080fd5b6200041e87828801620003b1565b945050602085015167ffffffffffffffff8111156200043c57600080fd5b6200044a87828801620003b1565b935050604085015167ffffffffffffffff8111156200046857600080fd5b6200047687828801620003b1565b925050606085015167ffffffffffffffff8111156200049457600080fd5b620004a287828801620003b1565b91505092959194509250565b620004b98162000595565b82525050565b6000620004ce60108362000584565b9150620004db82620006da565b602082019050919050565b6000602082019050620004fd6000830184620004ae565b92915050565b600060208201905081810360008301526200051e81620004bf565b9050919050565b60006200053162000544565b90506200053f828262000635565b919050565b6000604051905090565b600067ffffffffffffffff8211156200056c576200056b6200069a565b5b6200057782620006c9565b9050602081019050919050565b600082825260208201905092915050565b6000620005a282620005a9565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620005e9578082015181840152602081019050620005cc565b83811115620005f9576000848401525b50505050565b600060028204905060018216806200061857607f821691505b602082108114156200062f576200062e6200066b565b5b50919050565b6200064082620006c9565b810181811067ffffffffffffffff821117156200066257620006616200069a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b615a9a80620007136000396000f3fe60806040526004361061027d5760003560e01c80635c975abb1161014f578063a035b1fe116100c1578063ce5165071161007a578063ce51650714610903578063d41b5e9014610940578063e985e9c514610969578063f2c4ce1e146109a6578063f2fde38b146109cf578063f3ef68f9146109f85761027d565b8063a035b1fe14610807578063a22cb46514610832578063a475b5dd1461085b578063b88d4fde14610872578063c87b56dd1461089b578063c8f8b613146108d85761027d565b80638456cb59116101135780638456cb591461071d578063870aa097146107345780638da5cb5b1461075d57806391b7f5ed1461078857806395d89b41146107b15780639a18009e146107dc5761027d565b80635c975abb146106365780636352211e146106615780636c0360eb1461069e57806370a08231146106c9578063715018a6146107065761027d565b80632b707c71116101f35780633ccfd60b116101ac5780633ccfd60b1461055b5780633f4ba83a1461056557806342842e0e1461057c5780634f6ccce7146105a557806351830227146105e257806355f804b31461060d5761027d565b80632b707c71146104495780632d2c5565146104725780632d6b62241461049d5780632da5ea17146104c85780632f745c59146104f357806332cb6b0c146105305761027d565b8063088a4ed011610245578063088a4ed01461036e578063095ea7b3146103975780631249c58b146103c057806318160ddd146103ca578063239c70ae146103f557806323b872dd146104205761027d565b806301ffc9a714610282578063059513a6146102bf57806306fdde03146102db578063081812fc14610306578063081c8c4414610343575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190614340565b610a35565b6040516102b69190614aa6565b60405180910390f35b6102d960048036038101906102d491906143d7565b610aaf565b005b3480156102e757600080fd5b506102f0610c5a565b6040516102fd9190614ac1565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906143d7565b610cec565b60405161033a9190614a1d565b60405180910390f35b34801561034f57600080fd5b50610358610d71565b6040516103659190614ac1565b60405180910390f35b34801561037a57600080fd5b50610395600480360381019061039091906143d7565b610dff565b005b3480156103a357600080fd5b506103be60048036038101906103b9919061429a565b610e85565b005b6103c8610f9d565b005b3480156103d657600080fd5b506103df6110d1565b6040516103ec9190614e83565b60405180910390f35b34801561040157600080fd5b5061040a6110de565b6040516104179190614e83565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190614194565b6110e4565b005b34801561045557600080fd5b50610470600480360381019061046b9190614317565b611144565b005b34801561047e57600080fd5b506104876111dd565b6040516104949190614a1d565b60405180910390f35b3480156104a957600080fd5b506104b26111f5565b6040516104bf9190614aa6565b60405180910390f35b3480156104d457600080fd5b506104dd61120c565b6040516104ea9190614aa6565b60405180910390f35b3480156104ff57600080fd5b5061051a6004803603810190610515919061429a565b611223565b6040516105279190614e83565b60405180910390f35b34801561053c57600080fd5b506105456112c8565b6040516105529190614e83565b60405180910390f35b6105636112ce565b005b34801561057157600080fd5b5061057a6116fc565b005b34801561058857600080fd5b506105a3600480360381019061059e9190614194565b611782565b005b3480156105b157600080fd5b506105cc60048036038101906105c791906143d7565b6117a2565b6040516105d99190614e83565b60405180910390f35b3480156105ee57600080fd5b506105f7611839565b6040516106049190614aa6565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f9190614392565b61184c565b005b34801561064257600080fd5b5061064b6118de565b6040516106589190614aa6565b60405180910390f35b34801561066d57600080fd5b50610688600480360381019061068391906143d7565b6118f5565b6040516106959190614a1d565b60405180910390f35b3480156106aa57600080fd5b506106b36119a7565b6040516106c09190614ac1565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb9190614106565b611a35565b6040516106fd9190614e83565b60405180910390f35b34801561071257600080fd5b5061071b611aed565b005b34801561072957600080fd5b50610732611b75565b005b34801561074057600080fd5b5061075b600480360381019061075691906142d6565b611bfb565b005b34801561076957600080fd5b50610772611fa5565b60405161077f9190614a1d565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa91906143d7565b611fcf565b005b3480156107bd57600080fd5b506107c6612055565b6040516107d39190614ac1565b60405180910390f35b3480156107e857600080fd5b506107f16120e7565b6040516107fe9190614e83565b60405180910390f35b34801561081357600080fd5b5061081c6120ec565b6040516108299190614e83565b60405180910390f35b34801561083e57600080fd5b506108596004803603810190610854919061425e565b6120f2565b005b34801561086757600080fd5b50610870612108565b005b34801561087e57600080fd5b50610899600480360381019061089491906141e3565b6121a1565b005b3480156108a757600080fd5b506108c260048036038101906108bd91906143d7565b612203565b6040516108cf9190614ac1565b60405180910390f35b3480156108e457600080fd5b506108ed612352565b6040516108fa9190614a1d565b60405180910390f35b34801561090f57600080fd5b5061092a600480360381019061092591906143d7565b61236a565b6040516109379190614aa6565b60405180910390f35b34801561094c57600080fd5b50610967600480360381019061096291906143d7565b61238a565b005b34801561097557600080fd5b50610990600480360381019061098b9190614158565b6125ca565b60405161099d9190614aa6565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190614392565b61265e565b005b3480156109db57600080fd5b506109f660048036038101906109f19190614106565b6126f0565b005b348015610a0457600080fd5b50610a1f6004803603810190610a1a9190614106565b6127e8565b604051610a2c9190614a84565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa85750610aa782612a6a565b5b9050919050565b610ab76118de565b15610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90614c23565b60405180910390fd5b6000610b016110d1565b9050610b0c81612b4c565b610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290614ca3565b60405180910390fd5b600f54821115610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790614e43565b60405180910390fd5b6122b88282610b9f9190614fb1565b1115610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790614d83565b60405180910390fd5b81601054610bee9190615038565b3414610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690614dc3565b60405180910390fd5b60005b82811015610c5557610c42612b71565b8080610c4d906151df565b915050610c32565b505050565b606060008054610c699061517c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c959061517c565b8015610ce25780601f10610cb757610100808354040283529160200191610ce2565b820191906000526020600020905b815481529060010190602001808311610cc557829003601f168201915b5050505050905090565b6000610cf782612b96565b610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90614ce3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610d7e9061517c565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa9061517c565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b505050505081565b610e07612c02565b73ffffffffffffffffffffffffffffffffffffffff16610e25611fa5565b73ffffffffffffffffffffffffffffffffffffffff1614610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7290614d03565b60405180910390fd5b80600f8190555050565b6000610e90826118f5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890614d63565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f20612c02565b73ffffffffffffffffffffffffffffffffffffffff161480610f4f5750610f4e81610f49612c02565b6125ca565b5b610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590614c43565b60405180910390fd5b610f988383612c0a565b505050565b610fa56118de565b15610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90614c23565b60405180910390fd5b6000610fef6110d1565b9050610ffa81612b4c565b611039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103090614ca3565b60405180910390fd5b61104281612cc3565b15611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990614be3565b60405180910390fd5b60105434146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90614dc3565b60405180910390fd5b6110ce612b71565b50565b6000600880549050905090565b600f5481565b6110f56110ef612c02565b82612cd2565b611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90614de3565b60405180910390fd5b61113f838383612db0565b505050565b61114c612c02565b73ffffffffffffffffffffffffffffffffffffffff1661116a611fa5565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614d03565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b7348ae900e9df45441b2001db4da92ce0e7c08c6d281565b60006112076112026110d1565b612b4c565b905090565b600061121e6112196110d1565b612cc3565b905090565b600061122e83611a35565b821061126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690614b03565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6122b881565b6112d6612c02565b73ffffffffffffffffffffffffffffffffffffffff166112f4611fa5565b73ffffffffffffffffffffffffffffffffffffffff161461134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190614d03565b60405180910390fd5b600047905060006064600a836113609190615038565b61136a9190615007565b90506000606460098461137d9190615038565b6113879190615007565b90506000606460098561139a9190615038565b6113a49190615007565b9050600060646009866113b79190615038565b6113c19190615007565b9050600060646003876113d49190615038565b6113de9190615007565b9050600060646005886113f19190615038565b6113fb9190615007565b90506000606460058961140e9190615038565b6114189190615007565b9050732f66d5d7561e1be587968cd336fa3623e5792dc273ffffffffffffffffffffffffffffffffffffffff166108fc889081150290604051600060405180830381858888f19350505050158015611474573d6000803e3d6000fd5b5073eb9ade429fba6c51a1b352a869417bd410bc142173ffffffffffffffffffffffffffffffffffffffff166108fc879081150290604051600060405180830381858888f193505050501580156114cf573d6000803e3d6000fd5b5073f1a1e46463362c0751af4ff46037d1815d66bb4d73ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f1935050505015801561152a573d6000803e3d6000fd5b50731e3005bd8281148f1b00bdcc94e8d0cd9da242c273ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050158015611585573d6000803e3d6000fd5b507321761978a6f93d0bf5bab5f75762880e8dc813e873ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156115e0573d6000803e3d6000fd5b50735b3dbf9004e01509777329b762ec2332565f12fa73ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561163b573d6000803e3d6000fd5b5073e873fa8436097bcdfa593eed60c10efad4244dc073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611696573d6000803e3d6000fd5b507348ae900e9df45441b2001db4da92ce0e7c08c6d273ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156116f1573d6000803e3d6000fd5b505050505050505050565b611704612c02565b73ffffffffffffffffffffffffffffffffffffffff16611722611fa5565b73ffffffffffffffffffffffffffffffffffffffff1614611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90614d03565b60405180910390fd5b61178061300c565b565b61179d838383604051806020016040528060008152506121a1565b505050565b60006117ac6110d1565b82106117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490614e03565b60405180910390fd5b60088281548110611827577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601160009054906101000a900460ff1681565b611854612c02565b73ffffffffffffffffffffffffffffffffffffffff16611872611fa5565b73ffffffffffffffffffffffffffffffffffffffff16146118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90614d03565b60405180910390fd5b8181600d91906118d9929190613e9d565b505050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199590614c83565b60405180910390fd5b80915050919050565b600d80546119b49061517c565b80601f01602080910402602001604051908101604052809291908181526020018280546119e09061517c565b8015611a2d5780601f10611a0257610100808354040283529160200191611a2d565b820191906000526020600020905b815481529060010190602001808311611a1057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90614c63565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611af5612c02565b73ffffffffffffffffffffffffffffffffffffffff16611b13611fa5565b73ffffffffffffffffffffffffffffffffffffffff1614611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090614d03565b60405180910390fd5b611b7360006130ae565b565b611b7d612c02565b73ffffffffffffffffffffffffffffffffffffffff16611b9b611fa5565b73ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be890614d03565b60405180910390fd5b611bf9613174565b565b611c036118de565b15611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90614c23565b60405180910390fd5b6000611c4d6110d1565b9050611c5881612b4c565b15611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90614e63565b60405180910390fd5b600f5482511115611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd590614e43565b60405180910390fd5b6000825111611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1990614c03565b60405180910390fd5b60005b8251811015611fa05760126000848381518110611d6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690614e23565b60405180910390fd5b739fdb31f8ce3cb8400c7ccb2299492f2a498330a473ffffffffffffffffffffffffffffffffffffffff16636352211e848381518110611e38577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401611e5c9190614e83565b60206040518083038186803b158015611e7457600080fd5b505afa158015611e88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eac919061412f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090614da3565b60405180910390fd5b600160126000858481518110611f58577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550611f8d612b71565b8080611f98906151df565b915050611d25565b505050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fd7612c02565b73ffffffffffffffffffffffffffffffffffffffff16611ff5611fa5565b73ffffffffffffffffffffffffffffffffffffffff161461204b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204290614d03565b60405180910390fd5b8060108190555050565b6060600180546120649061517c565b80601f01602080910402602001604051908101604052809291908181526020018280546120909061517c565b80156120dd5780601f106120b2576101008083540402835291602001916120dd565b820191906000526020600020905b8154815290600101906020018083116120c057829003601f168201915b5050505050905090565b60c881565b60105481565b6121046120fd612c02565b8383613217565b5050565b612110612c02565b73ffffffffffffffffffffffffffffffffffffffff1661212e611fa5565b73ffffffffffffffffffffffffffffffffffffffff1614612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b90614d03565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6121b26121ac612c02565b83612cd2565b6121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890614de3565b60405180910390fd5b6121fd84848484613384565b50505050565b606061220e82612b96565b61224d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224490614d43565b60405180910390fd5b601160009054906101000a900460ff166122f357600e805461226e9061517c565b80601f016020809104026020016040519081016040528092919081815260200182805461229a9061517c565b80156122e75780601f106122bc576101008083540402835291602001916122e7565b820191906000526020600020905b8154815290600101906020018083116122ca57829003601f168201915b5050505050905061234d565b6000600d80546123029061517c565b90501161231e576040518060200160405280600081525061234a565b600d612329836133e0565b60405160200161233a9291906149ee565b6040516020818303038152906040525b90505b919050565b739fdb31f8ce3cb8400c7ccb2299492f2a498330a481565b60126020528060005260406000206000915054906101000a900460ff1681565b6123926118de565b156123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c990614c23565b60405180910390fd5b60006123dc6110d1565b90506123e781612b4c565b15612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e90614e63565b60405180910390fd5b6012600083815260200190815260200160002060009054906101000a900460ff1615612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f90614e23565b60405180910390fd5b739fdb31f8ce3cb8400c7ccb2299492f2a498330a473ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016124d59190614e83565b60206040518083038186803b1580156124ed57600080fd5b505afa158015612501573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612525919061412f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258990614da3565b60405180910390fd5b60016012600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506125c6612b71565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612666612c02565b73ffffffffffffffffffffffffffffffffffffffff16612684611fa5565b73ffffffffffffffffffffffffffffffffffffffff16146126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d190614d03565b60405180910390fd5b8181600e91906126eb929190613e9d565b505050565b6126f8612c02565b73ffffffffffffffffffffffffffffffffffffffff16612716611fa5565b73ffffffffffffffffffffffffffffffffffffffff161461276c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276390614d03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d390614b43565b60405180910390fd5b6127e5816130ae565b50565b606060006110dd67ffffffffffffffff81111561282e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561285c5781602001602082028036833780820191505090505b5090506000805b6110dd8110156129d6576000739fdb31f8ce3cb8400c7ccb2299492f2a498330a473ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016128bc9190614e83565b60206040518083038186803b1580156128d457600080fd5b505afa1580156128e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061290c919061412f565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614801561296757506012600083815260200190815260200160002060009054906101000a900460ff16155b156129c257818484815181106129a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506001836129bf9190614fb1565b92505b5080806129ce906151df565b915050612863565b506000816110dd6129e79190615092565b905060005b81811015612a5e5761270f848481518110612a30577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050600183612a499190614fb1565b92508080612a56906151df565b9150506129ec565b50829350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b3557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b455750612b448261358d565b5b9050919050565b600060c882101580612b6a5750600c60009054906101000a900460ff165b9050919050565b6000612b7d600b6135f7565b9050612b89600b613605565b612b93338261361b565b50565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c7d836118f5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122b88210159050919050565b6000612cdd82612b96565b612d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1390614bc3565b60405180910390fd5b6000612d27836118f5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d9657508373ffffffffffffffffffffffffffffffffffffffff16612d7e84610cec565b73ffffffffffffffffffffffffffffffffffffffff16145b80612da75750612da681856125ca565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612dd0826118f5565b73ffffffffffffffffffffffffffffffffffffffff1614612e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1d90614d23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8d90614b83565b60405180910390fd5b612ea1838383613639565b612eac600082612c0a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612efc9190615092565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f539190614fb1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6130146118de565b613053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304a90614ae3565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613097612c02565b6040516130a49190614a1d565b60405180910390a1565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61317c6118de565b156131bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b390614c23565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613200612c02565b60405161320d9190614a1d565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327d90614ba3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516133779190614aa6565b60405180910390a3505050565b61338f848484612db0565b61339b8484848461374d565b6133da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d190614b23565b60405180910390fd5b50505050565b60606000821415613428576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613588565b600082905060005b6000821461345a578080613443906151df565b915050600a826134539190615007565b9150613430565b60008167ffffffffffffffff81111561349c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134ce5781602001600182028036833780820191505090505b5090505b60008514613581576001826134e79190615092565b9150600a856134f69190615228565b60306135029190614fb1565b60f81b81838151811061353e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561357a9190615007565b94506134d2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6136358282604051806020016040528060008152506138e4565b5050565b61364483838361393f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136875761368281613944565b6136c6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136c5576136c4838261398d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137095761370481613afa565b613748565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613747576137468282613c3d565b5b5b505050565b600061376e8473ffffffffffffffffffffffffffffffffffffffff16613cbc565b156138d7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613797612c02565b8786866040518563ffffffff1660e01b81526004016137b99493929190614a38565b602060405180830381600087803b1580156137d357600080fd5b505af192505050801561380457506040513d601f19601f820116820180604052508101906138019190614369565b60015b613887573d8060008114613834576040519150601f19603f3d011682016040523d82523d6000602084013e613839565b606091505b5060008151141561387f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387690614b23565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138dc565b600190505b949350505050565b6138ee8383613ccf565b6138fb600084848461374d565b61393a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393190614b23565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161399a84611a35565b6139a49190615092565b9050600060076000848152602001908152602001600020549050818114613a89576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613b0e9190615092565b9050600060096000848152602001908152602001600020549050600060088381548110613b64577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613bac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613c21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613c4883611a35565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3690614cc3565b60405180910390fd5b613d4881612b96565b15613d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d7f90614b63565b60405180910390fd5b613d9460008383613639565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613de49190614fb1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613ea99061517c565b90600052602060002090601f016020900481019282613ecb5760008555613f12565b82601f10613ee457803560ff1916838001178555613f12565b82800160010185558215613f12579182015b82811115613f11578235825591602001919060010190613ef6565b5b509050613f1f9190613f23565b5090565b5b80821115613f3c576000816000905550600101613f24565b5090565b6000613f53613f4e84614ec3565b614e9e565b90508083825260208201905082856020860282011115613f7257600080fd5b60005b85811015613fa25781613f8888826140f1565b845260208401935060208301925050600181019050613f75565b5050509392505050565b6000613fbf613fba84614eef565b614e9e565b905082815260208101848484011115613fd757600080fd5b613fe284828561513a565b509392505050565b600081359050613ff981615a08565b92915050565b60008151905061400e81615a08565b92915050565b600082601f83011261402557600080fd5b8135614035848260208601613f40565b91505092915050565b60008135905061404d81615a1f565b92915050565b60008135905061406281615a36565b92915050565b60008151905061407781615a36565b92915050565b600082601f83011261408e57600080fd5b813561409e848260208601613fac565b91505092915050565b60008083601f8401126140b957600080fd5b8235905067ffffffffffffffff8111156140d257600080fd5b6020830191508360018202830111156140ea57600080fd5b9250929050565b60008135905061410081615a4d565b92915050565b60006020828403121561411857600080fd5b600061412684828501613fea565b91505092915050565b60006020828403121561414157600080fd5b600061414f84828501613fff565b91505092915050565b6000806040838503121561416b57600080fd5b600061417985828601613fea565b925050602061418a85828601613fea565b9150509250929050565b6000806000606084860312156141a957600080fd5b60006141b786828701613fea565b93505060206141c886828701613fea565b92505060406141d9868287016140f1565b9150509250925092565b600080600080608085870312156141f957600080fd5b600061420787828801613fea565b945050602061421887828801613fea565b9350506040614229878288016140f1565b925050606085013567ffffffffffffffff81111561424657600080fd5b6142528782880161407d565b91505092959194509250565b6000806040838503121561427157600080fd5b600061427f85828601613fea565b92505060206142908582860161403e565b9150509250929050565b600080604083850312156142ad57600080fd5b60006142bb85828601613fea565b92505060206142cc858286016140f1565b9150509250929050565b6000602082840312156142e857600080fd5b600082013567ffffffffffffffff81111561430257600080fd5b61430e84828501614014565b91505092915050565b60006020828403121561432957600080fd5b60006143378482850161403e565b91505092915050565b60006020828403121561435257600080fd5b600061436084828501614053565b91505092915050565b60006020828403121561437b57600080fd5b600061438984828501614068565b91505092915050565b600080602083850312156143a557600080fd5b600083013567ffffffffffffffff8111156143bf57600080fd5b6143cb858286016140a7565b92509250509250929050565b6000602082840312156143e957600080fd5b60006143f7848285016140f1565b91505092915050565b600061440c83836149d0565b60208301905092915050565b614421816150c6565b82525050565b600061443282614f45565b61443c8185614f73565b935061444783614f20565b8060005b8381101561447857815161445f8882614400565b975061446a83614f66565b92505060018101905061444b565b5085935050505092915050565b61448e816150d8565b82525050565b600061449f82614f50565b6144a98185614f84565b93506144b9818560208601615149565b6144c281615315565b840191505092915050565b60006144d882614f5b565b6144e28185614f95565b93506144f2818560208601615149565b6144fb81615315565b840191505092915050565b600061451182614f5b565b61451b8185614fa6565b935061452b818560208601615149565b80840191505092915050565b600081546145448161517c565b61454e8186614fa6565b94506001821660008114614569576001811461457a576145ad565b60ff198316865281860193506145ad565b61458385614f30565b60005b838110156145a557815481890152600182019150602081019050614586565b838801955050505b50505092915050565b60006145c3601483614f95565b91506145ce82615326565b602082019050919050565b60006145e6602b83614f95565b91506145f18261534f565b604082019050919050565b6000614609603283614f95565b91506146148261539e565b604082019050919050565b600061462c602683614f95565b9150614637826153ed565b604082019050919050565b600061464f601c83614f95565b915061465a8261543c565b602082019050919050565b6000614672602483614f95565b915061467d82615465565b604082019050919050565b6000614695601983614f95565b91506146a0826154b4565b602082019050919050565b60006146b8602c83614f95565b91506146c3826154dd565b604082019050919050565b60006146db600883614f95565b91506146e68261552c565b602082019050919050565b60006146fe601283614f95565b915061470982615555565b602082019050919050565b6000614721601083614f95565b915061472c8261557e565b602082019050919050565b6000614744603883614f95565b915061474f826155a7565b604082019050919050565b6000614767602a83614f95565b9150614772826155f6565b604082019050919050565b600061478a602983614f95565b915061479582615645565b604082019050919050565b60006147ad601683614f95565b91506147b882615694565b602082019050919050565b60006147d0602083614f95565b91506147db826156bd565b602082019050919050565b60006147f3602c83614f95565b91506147fe826156e6565b604082019050919050565b6000614816600583614fa6565b915061482182615735565b600582019050919050565b6000614839602083614f95565b91506148448261575e565b602082019050919050565b600061485c602983614f95565b915061486782615787565b604082019050919050565b600061487f602f83614f95565b915061488a826157d6565b604082019050919050565b60006148a2602183614f95565b91506148ad82615825565b604082019050919050565b60006148c5600e83614f95565b91506148d082615874565b602082019050919050565b60006148e8601583614f95565b91506148f38261589d565b602082019050919050565b600061490b601283614f95565b9150614916826158c6565b602082019050919050565b600061492e603183614f95565b9150614939826158ef565b604082019050919050565b6000614951602c83614f95565b915061495c8261593e565b604082019050919050565b6000614974601683614f95565b915061497f8261598d565b602082019050919050565b6000614997601783614f95565b91506149a2826159b6565b602082019050919050565b60006149ba600c83614f95565b91506149c5826159df565b602082019050919050565b6149d981615130565b82525050565b6149e881615130565b82525050565b60006149fa8285614537565b9150614a068284614506565b9150614a1182614809565b91508190509392505050565b6000602082019050614a326000830184614418565b92915050565b6000608082019050614a4d6000830187614418565b614a5a6020830186614418565b614a6760408301856149df565b8181036060830152614a798184614494565b905095945050505050565b60006020820190508181036000830152614a9e8184614427565b905092915050565b6000602082019050614abb6000830184614485565b92915050565b60006020820190508181036000830152614adb81846144cd565b905092915050565b60006020820190508181036000830152614afc816145b6565b9050919050565b60006020820190508181036000830152614b1c816145d9565b9050919050565b60006020820190508181036000830152614b3c816145fc565b9050919050565b60006020820190508181036000830152614b5c8161461f565b9050919050565b60006020820190508181036000830152614b7c81614642565b9050919050565b60006020820190508181036000830152614b9c81614665565b9050919050565b60006020820190508181036000830152614bbc81614688565b9050919050565b60006020820190508181036000830152614bdc816146ab565b9050919050565b60006020820190508181036000830152614bfc816146ce565b9050919050565b60006020820190508181036000830152614c1c816146f1565b9050919050565b60006020820190508181036000830152614c3c81614714565b9050919050565b60006020820190508181036000830152614c5c81614737565b9050919050565b60006020820190508181036000830152614c7c8161475a565b9050919050565b60006020820190508181036000830152614c9c8161477d565b9050919050565b60006020820190508181036000830152614cbc816147a0565b9050919050565b60006020820190508181036000830152614cdc816147c3565b9050919050565b60006020820190508181036000830152614cfc816147e6565b9050919050565b60006020820190508181036000830152614d1c8161482c565b9050919050565b60006020820190508181036000830152614d3c8161484f565b9050919050565b60006020820190508181036000830152614d5c81614872565b9050919050565b60006020820190508181036000830152614d7c81614895565b9050919050565b60006020820190508181036000830152614d9c816148b8565b9050919050565b60006020820190508181036000830152614dbc816148db565b9050919050565b60006020820190508181036000830152614ddc816148fe565b9050919050565b60006020820190508181036000830152614dfc81614921565b9050919050565b60006020820190508181036000830152614e1c81614944565b9050919050565b60006020820190508181036000830152614e3c81614967565b9050919050565b60006020820190508181036000830152614e5c8161498a565b9050919050565b60006020820190508181036000830152614e7c816149ad565b9050919050565b6000602082019050614e9860008301846149df565b92915050565b6000614ea8614eb9565b9050614eb482826151ae565b919050565b6000604051905090565b600067ffffffffffffffff821115614ede57614edd6152e6565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f0a57614f096152e6565b5b614f1382615315565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614fbc82615130565b9150614fc783615130565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ffc57614ffb615259565b5b828201905092915050565b600061501282615130565b915061501d83615130565b92508261502d5761502c615288565b5b828204905092915050565b600061504382615130565b915061504e83615130565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561508757615086615259565b5b828202905092915050565b600061509d82615130565b91506150a883615130565b9250828210156150bb576150ba615259565b5b828203905092915050565b60006150d182615110565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561516757808201518184015260208101905061514c565b83811115615176576000848401525b50505050565b6000600282049050600182168061519457607f821691505b602082108114156151a8576151a76152b7565b5b50919050565b6151b782615315565b810181811067ffffffffffffffff821117156151d6576151d56152e6565b5b80604052505050565b60006151ea82615130565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561521d5761521c615259565b5b600182019050919050565b600061523382615130565b915061523e83615130565b92508261524e5761524d615288565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4d696e742073686f756c64206265203e20300000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f7075626c69632073616c65206e6f742061637469766500000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4f6e6c79206f776e65722063616e20636c61696d2e0000000000000000000000600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f436f6c6f7220616c726561647920636c61696d65642e00000000000000000000600082015250565b7f65786365656473206d6178206d696e7420706572207478000000000000000000600082015250565b7f70726573616c65206f7665720000000000000000000000000000000000000000600082015250565b615a11816150c6565b8114615a1c57600080fd5b50565b615a28816150d8565b8114615a3357600080fd5b50565b615a3f816150e4565b8114615a4a57600080fd5b50565b615a5681615130565b8114615a6157600080fd5b5056fea264697066735822122051af707fcc939887d840ebc08698e7103618125b8fe341c2462144c5583782d864736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000008435653706f6f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034356530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5879746a3538767463766d395377774250764a796b41706373723961654368583442635268613277633331692f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d594a4a44746859554756353746513537564365586343426e70576f476a787448735763444c455931427031392f00000000000000000000
Deployed Bytecode
0x60806040526004361061027d5760003560e01c80635c975abb1161014f578063a035b1fe116100c1578063ce5165071161007a578063ce51650714610903578063d41b5e9014610940578063e985e9c514610969578063f2c4ce1e146109a6578063f2fde38b146109cf578063f3ef68f9146109f85761027d565b8063a035b1fe14610807578063a22cb46514610832578063a475b5dd1461085b578063b88d4fde14610872578063c87b56dd1461089b578063c8f8b613146108d85761027d565b80638456cb59116101135780638456cb591461071d578063870aa097146107345780638da5cb5b1461075d57806391b7f5ed1461078857806395d89b41146107b15780639a18009e146107dc5761027d565b80635c975abb146106365780636352211e146106615780636c0360eb1461069e57806370a08231146106c9578063715018a6146107065761027d565b80632b707c71116101f35780633ccfd60b116101ac5780633ccfd60b1461055b5780633f4ba83a1461056557806342842e0e1461057c5780634f6ccce7146105a557806351830227146105e257806355f804b31461060d5761027d565b80632b707c71146104495780632d2c5565146104725780632d6b62241461049d5780632da5ea17146104c85780632f745c59146104f357806332cb6b0c146105305761027d565b8063088a4ed011610245578063088a4ed01461036e578063095ea7b3146103975780631249c58b146103c057806318160ddd146103ca578063239c70ae146103f557806323b872dd146104205761027d565b806301ffc9a714610282578063059513a6146102bf57806306fdde03146102db578063081812fc14610306578063081c8c4414610343575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190614340565b610a35565b6040516102b69190614aa6565b60405180910390f35b6102d960048036038101906102d491906143d7565b610aaf565b005b3480156102e757600080fd5b506102f0610c5a565b6040516102fd9190614ac1565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906143d7565b610cec565b60405161033a9190614a1d565b60405180910390f35b34801561034f57600080fd5b50610358610d71565b6040516103659190614ac1565b60405180910390f35b34801561037a57600080fd5b50610395600480360381019061039091906143d7565b610dff565b005b3480156103a357600080fd5b506103be60048036038101906103b9919061429a565b610e85565b005b6103c8610f9d565b005b3480156103d657600080fd5b506103df6110d1565b6040516103ec9190614e83565b60405180910390f35b34801561040157600080fd5b5061040a6110de565b6040516104179190614e83565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190614194565b6110e4565b005b34801561045557600080fd5b50610470600480360381019061046b9190614317565b611144565b005b34801561047e57600080fd5b506104876111dd565b6040516104949190614a1d565b60405180910390f35b3480156104a957600080fd5b506104b26111f5565b6040516104bf9190614aa6565b60405180910390f35b3480156104d457600080fd5b506104dd61120c565b6040516104ea9190614aa6565b60405180910390f35b3480156104ff57600080fd5b5061051a6004803603810190610515919061429a565b611223565b6040516105279190614e83565b60405180910390f35b34801561053c57600080fd5b506105456112c8565b6040516105529190614e83565b60405180910390f35b6105636112ce565b005b34801561057157600080fd5b5061057a6116fc565b005b34801561058857600080fd5b506105a3600480360381019061059e9190614194565b611782565b005b3480156105b157600080fd5b506105cc60048036038101906105c791906143d7565b6117a2565b6040516105d99190614e83565b60405180910390f35b3480156105ee57600080fd5b506105f7611839565b6040516106049190614aa6565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f9190614392565b61184c565b005b34801561064257600080fd5b5061064b6118de565b6040516106589190614aa6565b60405180910390f35b34801561066d57600080fd5b50610688600480360381019061068391906143d7565b6118f5565b6040516106959190614a1d565b60405180910390f35b3480156106aa57600080fd5b506106b36119a7565b6040516106c09190614ac1565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb9190614106565b611a35565b6040516106fd9190614e83565b60405180910390f35b34801561071257600080fd5b5061071b611aed565b005b34801561072957600080fd5b50610732611b75565b005b34801561074057600080fd5b5061075b600480360381019061075691906142d6565b611bfb565b005b34801561076957600080fd5b50610772611fa5565b60405161077f9190614a1d565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa91906143d7565b611fcf565b005b3480156107bd57600080fd5b506107c6612055565b6040516107d39190614ac1565b60405180910390f35b3480156107e857600080fd5b506107f16120e7565b6040516107fe9190614e83565b60405180910390f35b34801561081357600080fd5b5061081c6120ec565b6040516108299190614e83565b60405180910390f35b34801561083e57600080fd5b506108596004803603810190610854919061425e565b6120f2565b005b34801561086757600080fd5b50610870612108565b005b34801561087e57600080fd5b50610899600480360381019061089491906141e3565b6121a1565b005b3480156108a757600080fd5b506108c260048036038101906108bd91906143d7565b612203565b6040516108cf9190614ac1565b60405180910390f35b3480156108e457600080fd5b506108ed612352565b6040516108fa9190614a1d565b60405180910390f35b34801561090f57600080fd5b5061092a600480360381019061092591906143d7565b61236a565b6040516109379190614aa6565b60405180910390f35b34801561094c57600080fd5b50610967600480360381019061096291906143d7565b61238a565b005b34801561097557600080fd5b50610990600480360381019061098b9190614158565b6125ca565b60405161099d9190614aa6565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190614392565b61265e565b005b3480156109db57600080fd5b506109f660048036038101906109f19190614106565b6126f0565b005b348015610a0457600080fd5b50610a1f6004803603810190610a1a9190614106565b6127e8565b604051610a2c9190614a84565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa85750610aa782612a6a565b5b9050919050565b610ab76118de565b15610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90614c23565b60405180910390fd5b6000610b016110d1565b9050610b0c81612b4c565b610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290614ca3565b60405180910390fd5b600f54821115610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790614e43565b60405180910390fd5b6122b88282610b9f9190614fb1565b1115610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790614d83565b60405180910390fd5b81601054610bee9190615038565b3414610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690614dc3565b60405180910390fd5b60005b82811015610c5557610c42612b71565b8080610c4d906151df565b915050610c32565b505050565b606060008054610c699061517c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c959061517c565b8015610ce25780601f10610cb757610100808354040283529160200191610ce2565b820191906000526020600020905b815481529060010190602001808311610cc557829003601f168201915b5050505050905090565b6000610cf782612b96565b610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90614ce3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610d7e9061517c565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa9061517c565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b505050505081565b610e07612c02565b73ffffffffffffffffffffffffffffffffffffffff16610e25611fa5565b73ffffffffffffffffffffffffffffffffffffffff1614610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7290614d03565b60405180910390fd5b80600f8190555050565b6000610e90826118f5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890614d63565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f20612c02565b73ffffffffffffffffffffffffffffffffffffffff161480610f4f5750610f4e81610f49612c02565b6125ca565b5b610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590614c43565b60405180910390fd5b610f988383612c0a565b505050565b610fa56118de565b15610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90614c23565b60405180910390fd5b6000610fef6110d1565b9050610ffa81612b4c565b611039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103090614ca3565b60405180910390fd5b61104281612cc3565b15611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990614be3565b60405180910390fd5b60105434146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90614dc3565b60405180910390fd5b6110ce612b71565b50565b6000600880549050905090565b600f5481565b6110f56110ef612c02565b82612cd2565b611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90614de3565b60405180910390fd5b61113f838383612db0565b505050565b61114c612c02565b73ffffffffffffffffffffffffffffffffffffffff1661116a611fa5565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614d03565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b7348ae900e9df45441b2001db4da92ce0e7c08c6d281565b60006112076112026110d1565b612b4c565b905090565b600061121e6112196110d1565b612cc3565b905090565b600061122e83611a35565b821061126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690614b03565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6122b881565b6112d6612c02565b73ffffffffffffffffffffffffffffffffffffffff166112f4611fa5565b73ffffffffffffffffffffffffffffffffffffffff161461134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190614d03565b60405180910390fd5b600047905060006064600a836113609190615038565b61136a9190615007565b90506000606460098461137d9190615038565b6113879190615007565b90506000606460098561139a9190615038565b6113a49190615007565b9050600060646009866113b79190615038565b6113c19190615007565b9050600060646003876113d49190615038565b6113de9190615007565b9050600060646005886113f19190615038565b6113fb9190615007565b90506000606460058961140e9190615038565b6114189190615007565b9050732f66d5d7561e1be587968cd336fa3623e5792dc273ffffffffffffffffffffffffffffffffffffffff166108fc889081150290604051600060405180830381858888f19350505050158015611474573d6000803e3d6000fd5b5073eb9ade429fba6c51a1b352a869417bd410bc142173ffffffffffffffffffffffffffffffffffffffff166108fc879081150290604051600060405180830381858888f193505050501580156114cf573d6000803e3d6000fd5b5073f1a1e46463362c0751af4ff46037d1815d66bb4d73ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f1935050505015801561152a573d6000803e3d6000fd5b50731e3005bd8281148f1b00bdcc94e8d0cd9da242c273ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050158015611585573d6000803e3d6000fd5b507321761978a6f93d0bf5bab5f75762880e8dc813e873ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156115e0573d6000803e3d6000fd5b50735b3dbf9004e01509777329b762ec2332565f12fa73ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561163b573d6000803e3d6000fd5b5073e873fa8436097bcdfa593eed60c10efad4244dc073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611696573d6000803e3d6000fd5b507348ae900e9df45441b2001db4da92ce0e7c08c6d273ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156116f1573d6000803e3d6000fd5b505050505050505050565b611704612c02565b73ffffffffffffffffffffffffffffffffffffffff16611722611fa5565b73ffffffffffffffffffffffffffffffffffffffff1614611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90614d03565b60405180910390fd5b61178061300c565b565b61179d838383604051806020016040528060008152506121a1565b505050565b60006117ac6110d1565b82106117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490614e03565b60405180910390fd5b60088281548110611827577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601160009054906101000a900460ff1681565b611854612c02565b73ffffffffffffffffffffffffffffffffffffffff16611872611fa5565b73ffffffffffffffffffffffffffffffffffffffff16146118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90614d03565b60405180910390fd5b8181600d91906118d9929190613e9d565b505050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199590614c83565b60405180910390fd5b80915050919050565b600d80546119b49061517c565b80601f01602080910402602001604051908101604052809291908181526020018280546119e09061517c565b8015611a2d5780601f10611a0257610100808354040283529160200191611a2d565b820191906000526020600020905b815481529060010190602001808311611a1057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90614c63565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611af5612c02565b73ffffffffffffffffffffffffffffffffffffffff16611b13611fa5565b73ffffffffffffffffffffffffffffffffffffffff1614611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090614d03565b60405180910390fd5b611b7360006130ae565b565b611b7d612c02565b73ffffffffffffffffffffffffffffffffffffffff16611b9b611fa5565b73ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be890614d03565b60405180910390fd5b611bf9613174565b565b611c036118de565b15611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90614c23565b60405180910390fd5b6000611c4d6110d1565b9050611c5881612b4c565b15611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90614e63565b60405180910390fd5b600f5482511115611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd590614e43565b60405180910390fd5b6000825111611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1990614c03565b60405180910390fd5b60005b8251811015611fa05760126000848381518110611d6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690614e23565b60405180910390fd5b739fdb31f8ce3cb8400c7ccb2299492f2a498330a473ffffffffffffffffffffffffffffffffffffffff16636352211e848381518110611e38577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401611e5c9190614e83565b60206040518083038186803b158015611e7457600080fd5b505afa158015611e88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eac919061412f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090614da3565b60405180910390fd5b600160126000858481518110611f58577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550611f8d612b71565b8080611f98906151df565b915050611d25565b505050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fd7612c02565b73ffffffffffffffffffffffffffffffffffffffff16611ff5611fa5565b73ffffffffffffffffffffffffffffffffffffffff161461204b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204290614d03565b60405180910390fd5b8060108190555050565b6060600180546120649061517c565b80601f01602080910402602001604051908101604052809291908181526020018280546120909061517c565b80156120dd5780601f106120b2576101008083540402835291602001916120dd565b820191906000526020600020905b8154815290600101906020018083116120c057829003601f168201915b5050505050905090565b60c881565b60105481565b6121046120fd612c02565b8383613217565b5050565b612110612c02565b73ffffffffffffffffffffffffffffffffffffffff1661212e611fa5565b73ffffffffffffffffffffffffffffffffffffffff1614612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b90614d03565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6121b26121ac612c02565b83612cd2565b6121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890614de3565b60405180910390fd5b6121fd84848484613384565b50505050565b606061220e82612b96565b61224d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224490614d43565b60405180910390fd5b601160009054906101000a900460ff166122f357600e805461226e9061517c565b80601f016020809104026020016040519081016040528092919081815260200182805461229a9061517c565b80156122e75780601f106122bc576101008083540402835291602001916122e7565b820191906000526020600020905b8154815290600101906020018083116122ca57829003601f168201915b5050505050905061234d565b6000600d80546123029061517c565b90501161231e576040518060200160405280600081525061234a565b600d612329836133e0565b60405160200161233a9291906149ee565b6040516020818303038152906040525b90505b919050565b739fdb31f8ce3cb8400c7ccb2299492f2a498330a481565b60126020528060005260406000206000915054906101000a900460ff1681565b6123926118de565b156123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c990614c23565b60405180910390fd5b60006123dc6110d1565b90506123e781612b4c565b15612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e90614e63565b60405180910390fd5b6012600083815260200190815260200160002060009054906101000a900460ff1615612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f90614e23565b60405180910390fd5b739fdb31f8ce3cb8400c7ccb2299492f2a498330a473ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016124d59190614e83565b60206040518083038186803b1580156124ed57600080fd5b505afa158015612501573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612525919061412f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258990614da3565b60405180910390fd5b60016012600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506125c6612b71565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612666612c02565b73ffffffffffffffffffffffffffffffffffffffff16612684611fa5565b73ffffffffffffffffffffffffffffffffffffffff16146126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d190614d03565b60405180910390fd5b8181600e91906126eb929190613e9d565b505050565b6126f8612c02565b73ffffffffffffffffffffffffffffffffffffffff16612716611fa5565b73ffffffffffffffffffffffffffffffffffffffff161461276c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276390614d03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d390614b43565b60405180910390fd5b6127e5816130ae565b50565b606060006110dd67ffffffffffffffff81111561282e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561285c5781602001602082028036833780820191505090505b5090506000805b6110dd8110156129d6576000739fdb31f8ce3cb8400c7ccb2299492f2a498330a473ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016128bc9190614e83565b60206040518083038186803b1580156128d457600080fd5b505afa1580156128e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061290c919061412f565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614801561296757506012600083815260200190815260200160002060009054906101000a900460ff16155b156129c257818484815181106129a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506001836129bf9190614fb1565b92505b5080806129ce906151df565b915050612863565b506000816110dd6129e79190615092565b905060005b81811015612a5e5761270f848481518110612a30577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050600183612a499190614fb1565b92508080612a56906151df565b9150506129ec565b50829350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b3557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b455750612b448261358d565b5b9050919050565b600060c882101580612b6a5750600c60009054906101000a900460ff165b9050919050565b6000612b7d600b6135f7565b9050612b89600b613605565b612b93338261361b565b50565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c7d836118f5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122b88210159050919050565b6000612cdd82612b96565b612d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1390614bc3565b60405180910390fd5b6000612d27836118f5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d9657508373ffffffffffffffffffffffffffffffffffffffff16612d7e84610cec565b73ffffffffffffffffffffffffffffffffffffffff16145b80612da75750612da681856125ca565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612dd0826118f5565b73ffffffffffffffffffffffffffffffffffffffff1614612e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1d90614d23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8d90614b83565b60405180910390fd5b612ea1838383613639565b612eac600082612c0a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612efc9190615092565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f539190614fb1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6130146118de565b613053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304a90614ae3565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613097612c02565b6040516130a49190614a1d565b60405180910390a1565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61317c6118de565b156131bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b390614c23565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613200612c02565b60405161320d9190614a1d565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327d90614ba3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516133779190614aa6565b60405180910390a3505050565b61338f848484612db0565b61339b8484848461374d565b6133da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d190614b23565b60405180910390fd5b50505050565b60606000821415613428576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613588565b600082905060005b6000821461345a578080613443906151df565b915050600a826134539190615007565b9150613430565b60008167ffffffffffffffff81111561349c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134ce5781602001600182028036833780820191505090505b5090505b60008514613581576001826134e79190615092565b9150600a856134f69190615228565b60306135029190614fb1565b60f81b81838151811061353e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561357a9190615007565b94506134d2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6136358282604051806020016040528060008152506138e4565b5050565b61364483838361393f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136875761368281613944565b6136c6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136c5576136c4838261398d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137095761370481613afa565b613748565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613747576137468282613c3d565b5b5b505050565b600061376e8473ffffffffffffffffffffffffffffffffffffffff16613cbc565b156138d7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613797612c02565b8786866040518563ffffffff1660e01b81526004016137b99493929190614a38565b602060405180830381600087803b1580156137d357600080fd5b505af192505050801561380457506040513d601f19601f820116820180604052508101906138019190614369565b60015b613887573d8060008114613834576040519150601f19603f3d011682016040523d82523d6000602084013e613839565b606091505b5060008151141561387f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387690614b23565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138dc565b600190505b949350505050565b6138ee8383613ccf565b6138fb600084848461374d565b61393a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393190614b23565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161399a84611a35565b6139a49190615092565b9050600060076000848152602001908152602001600020549050818114613a89576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613b0e9190615092565b9050600060096000848152602001908152602001600020549050600060088381548110613b64577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613bac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613c21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613c4883611a35565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3690614cc3565b60405180910390fd5b613d4881612b96565b15613d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d7f90614b63565b60405180910390fd5b613d9460008383613639565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613de49190614fb1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613ea99061517c565b90600052602060002090601f016020900481019282613ecb5760008555613f12565b82601f10613ee457803560ff1916838001178555613f12565b82800160010185558215613f12579182015b82811115613f11578235825591602001919060010190613ef6565b5b509050613f1f9190613f23565b5090565b5b80821115613f3c576000816000905550600101613f24565b5090565b6000613f53613f4e84614ec3565b614e9e565b90508083825260208201905082856020860282011115613f7257600080fd5b60005b85811015613fa25781613f8888826140f1565b845260208401935060208301925050600181019050613f75565b5050509392505050565b6000613fbf613fba84614eef565b614e9e565b905082815260208101848484011115613fd757600080fd5b613fe284828561513a565b509392505050565b600081359050613ff981615a08565b92915050565b60008151905061400e81615a08565b92915050565b600082601f83011261402557600080fd5b8135614035848260208601613f40565b91505092915050565b60008135905061404d81615a1f565b92915050565b60008135905061406281615a36565b92915050565b60008151905061407781615a36565b92915050565b600082601f83011261408e57600080fd5b813561409e848260208601613fac565b91505092915050565b60008083601f8401126140b957600080fd5b8235905067ffffffffffffffff8111156140d257600080fd5b6020830191508360018202830111156140ea57600080fd5b9250929050565b60008135905061410081615a4d565b92915050565b60006020828403121561411857600080fd5b600061412684828501613fea565b91505092915050565b60006020828403121561414157600080fd5b600061414f84828501613fff565b91505092915050565b6000806040838503121561416b57600080fd5b600061417985828601613fea565b925050602061418a85828601613fea565b9150509250929050565b6000806000606084860312156141a957600080fd5b60006141b786828701613fea565b93505060206141c886828701613fea565b92505060406141d9868287016140f1565b9150509250925092565b600080600080608085870312156141f957600080fd5b600061420787828801613fea565b945050602061421887828801613fea565b9350506040614229878288016140f1565b925050606085013567ffffffffffffffff81111561424657600080fd5b6142528782880161407d565b91505092959194509250565b6000806040838503121561427157600080fd5b600061427f85828601613fea565b92505060206142908582860161403e565b9150509250929050565b600080604083850312156142ad57600080fd5b60006142bb85828601613fea565b92505060206142cc858286016140f1565b9150509250929050565b6000602082840312156142e857600080fd5b600082013567ffffffffffffffff81111561430257600080fd5b61430e84828501614014565b91505092915050565b60006020828403121561432957600080fd5b60006143378482850161403e565b91505092915050565b60006020828403121561435257600080fd5b600061436084828501614053565b91505092915050565b60006020828403121561437b57600080fd5b600061438984828501614068565b91505092915050565b600080602083850312156143a557600080fd5b600083013567ffffffffffffffff8111156143bf57600080fd5b6143cb858286016140a7565b92509250509250929050565b6000602082840312156143e957600080fd5b60006143f7848285016140f1565b91505092915050565b600061440c83836149d0565b60208301905092915050565b614421816150c6565b82525050565b600061443282614f45565b61443c8185614f73565b935061444783614f20565b8060005b8381101561447857815161445f8882614400565b975061446a83614f66565b92505060018101905061444b565b5085935050505092915050565b61448e816150d8565b82525050565b600061449f82614f50565b6144a98185614f84565b93506144b9818560208601615149565b6144c281615315565b840191505092915050565b60006144d882614f5b565b6144e28185614f95565b93506144f2818560208601615149565b6144fb81615315565b840191505092915050565b600061451182614f5b565b61451b8185614fa6565b935061452b818560208601615149565b80840191505092915050565b600081546145448161517c565b61454e8186614fa6565b94506001821660008114614569576001811461457a576145ad565b60ff198316865281860193506145ad565b61458385614f30565b60005b838110156145a557815481890152600182019150602081019050614586565b838801955050505b50505092915050565b60006145c3601483614f95565b91506145ce82615326565b602082019050919050565b60006145e6602b83614f95565b91506145f18261534f565b604082019050919050565b6000614609603283614f95565b91506146148261539e565b604082019050919050565b600061462c602683614f95565b9150614637826153ed565b604082019050919050565b600061464f601c83614f95565b915061465a8261543c565b602082019050919050565b6000614672602483614f95565b915061467d82615465565b604082019050919050565b6000614695601983614f95565b91506146a0826154b4565b602082019050919050565b60006146b8602c83614f95565b91506146c3826154dd565b604082019050919050565b60006146db600883614f95565b91506146e68261552c565b602082019050919050565b60006146fe601283614f95565b915061470982615555565b602082019050919050565b6000614721601083614f95565b915061472c8261557e565b602082019050919050565b6000614744603883614f95565b915061474f826155a7565b604082019050919050565b6000614767602a83614f95565b9150614772826155f6565b604082019050919050565b600061478a602983614f95565b915061479582615645565b604082019050919050565b60006147ad601683614f95565b91506147b882615694565b602082019050919050565b60006147d0602083614f95565b91506147db826156bd565b602082019050919050565b60006147f3602c83614f95565b91506147fe826156e6565b604082019050919050565b6000614816600583614fa6565b915061482182615735565b600582019050919050565b6000614839602083614f95565b91506148448261575e565b602082019050919050565b600061485c602983614f95565b915061486782615787565b604082019050919050565b600061487f602f83614f95565b915061488a826157d6565b604082019050919050565b60006148a2602183614f95565b91506148ad82615825565b604082019050919050565b60006148c5600e83614f95565b91506148d082615874565b602082019050919050565b60006148e8601583614f95565b91506148f38261589d565b602082019050919050565b600061490b601283614f95565b9150614916826158c6565b602082019050919050565b600061492e603183614f95565b9150614939826158ef565b604082019050919050565b6000614951602c83614f95565b915061495c8261593e565b604082019050919050565b6000614974601683614f95565b915061497f8261598d565b602082019050919050565b6000614997601783614f95565b91506149a2826159b6565b602082019050919050565b60006149ba600c83614f95565b91506149c5826159df565b602082019050919050565b6149d981615130565b82525050565b6149e881615130565b82525050565b60006149fa8285614537565b9150614a068284614506565b9150614a1182614809565b91508190509392505050565b6000602082019050614a326000830184614418565b92915050565b6000608082019050614a4d6000830187614418565b614a5a6020830186614418565b614a6760408301856149df565b8181036060830152614a798184614494565b905095945050505050565b60006020820190508181036000830152614a9e8184614427565b905092915050565b6000602082019050614abb6000830184614485565b92915050565b60006020820190508181036000830152614adb81846144cd565b905092915050565b60006020820190508181036000830152614afc816145b6565b9050919050565b60006020820190508181036000830152614b1c816145d9565b9050919050565b60006020820190508181036000830152614b3c816145fc565b9050919050565b60006020820190508181036000830152614b5c8161461f565b9050919050565b60006020820190508181036000830152614b7c81614642565b9050919050565b60006020820190508181036000830152614b9c81614665565b9050919050565b60006020820190508181036000830152614bbc81614688565b9050919050565b60006020820190508181036000830152614bdc816146ab565b9050919050565b60006020820190508181036000830152614bfc816146ce565b9050919050565b60006020820190508181036000830152614c1c816146f1565b9050919050565b60006020820190508181036000830152614c3c81614714565b9050919050565b60006020820190508181036000830152614c5c81614737565b9050919050565b60006020820190508181036000830152614c7c8161475a565b9050919050565b60006020820190508181036000830152614c9c8161477d565b9050919050565b60006020820190508181036000830152614cbc816147a0565b9050919050565b60006020820190508181036000830152614cdc816147c3565b9050919050565b60006020820190508181036000830152614cfc816147e6565b9050919050565b60006020820190508181036000830152614d1c8161482c565b9050919050565b60006020820190508181036000830152614d3c8161484f565b9050919050565b60006020820190508181036000830152614d5c81614872565b9050919050565b60006020820190508181036000830152614d7c81614895565b9050919050565b60006020820190508181036000830152614d9c816148b8565b9050919050565b60006020820190508181036000830152614dbc816148db565b9050919050565b60006020820190508181036000830152614ddc816148fe565b9050919050565b60006020820190508181036000830152614dfc81614921565b9050919050565b60006020820190508181036000830152614e1c81614944565b9050919050565b60006020820190508181036000830152614e3c81614967565b9050919050565b60006020820190508181036000830152614e5c8161498a565b9050919050565b60006020820190508181036000830152614e7c816149ad565b9050919050565b6000602082019050614e9860008301846149df565b92915050565b6000614ea8614eb9565b9050614eb482826151ae565b919050565b6000604051905090565b600067ffffffffffffffff821115614ede57614edd6152e6565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f0a57614f096152e6565b5b614f1382615315565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614fbc82615130565b9150614fc783615130565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ffc57614ffb615259565b5b828201905092915050565b600061501282615130565b915061501d83615130565b92508261502d5761502c615288565b5b828204905092915050565b600061504382615130565b915061504e83615130565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561508757615086615259565b5b828202905092915050565b600061509d82615130565b91506150a883615130565b9250828210156150bb576150ba615259565b5b828203905092915050565b60006150d182615110565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561516757808201518184015260208101905061514c565b83811115615176576000848401525b50505050565b6000600282049050600182168061519457607f821691505b602082108114156151a8576151a76152b7565b5b50919050565b6151b782615315565b810181811067ffffffffffffffff821117156151d6576151d56152e6565b5b80604052505050565b60006151ea82615130565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561521d5761521c615259565b5b600182019050919050565b600061523382615130565b915061523e83615130565b92508261524e5761524d615288565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4d696e742073686f756c64206265203e20300000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f7075626c69632073616c65206e6f742061637469766500000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4f6e6c79206f776e65722063616e20636c61696d2e0000000000000000000000600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f436f6c6f7220616c726561647920636c61696d65642e00000000000000000000600082015250565b7f65786365656473206d6178206d696e7420706572207478000000000000000000600082015250565b7f70726573616c65206f7665720000000000000000000000000000000000000000600082015250565b615a11816150c6565b8114615a1c57600080fd5b50565b615a28816150d8565b8114615a3357600080fd5b50565b615a3f816150e4565b8114615a4a57600080fd5b50565b615a5681615130565b8114615a6157600080fd5b5056fea264697066735822122051af707fcc939887d840ebc08698e7103618125b8fe341c2462144c5583782d864736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000008435653706f6f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034356530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5879746a3538767463766d395377774250764a796b41706373723961654368583442635268613277633331692f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d594a4a44746859554756353746513537564365586343426e70576f476a787448735763444c455931427031392f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): CVSpoons
Arg [1] : _symbol (string): CVS
Arg [2] : _initBaseURI (string): https://gateway.pinata.cloud/ipfs/QmXytj58vtcvm9SwwBPvJykApcsr9aeChX4BcRha2wc31i/
Arg [3] : _initNotRevealedUri (string): ipfs://QmYJJDthYUGV57FQ57VCeXcCBnpWoGjxtHsWcDLEY1Bp19/
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 435653706f6f6e73000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4356530000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [9] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [10] : 732f516d5879746a3538767463766d395377774250764a796b41706373723961
Arg [11] : 654368583442635268613277633331692f000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [13] : 697066733a2f2f516d594a4a4474685955475635374651353756436558634342
Arg [14] : 6e70576f476a787448735763444c455931427031392f00000000000000000000
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.