Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
10,000 MBET
Holders
4,011
Market
Volume (24H)
0.0047 ETH
Min Price (24H)
$11.79 @ 0.004700 ETH
Max Price (24H)
$11.79 @ 0.004700 ETH
Other Info
Token Contract
Balance
1 MBETLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MonkeyBet
Compiler Version
v0.8.0+commit.c7dfd78e
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; // implements the ERC721 standard import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract MonkeyBet is ERC721URIStorage, ERC721Enumerable, Ownable { using Counters for Counters.Counter; Counters.Counter private _Ids; using SafeMath for uint256; uint256 private MAX_MONKEYS = 10000; string private baseURI = "https://api.monkeybet.co/token/"; address private tokenContractAddress = 0x1850b846fDB4d2EF026f54D520aa0322873f0Cbd; uint256 monkeyPrice = 0.05 ether; bool private saleActive = true; address payable private _owner; address payable private _manager; uint256 private tokenRewards = 25000 ether; constructor(address manager) ERC721("MonkeyBet", "MBET") { _owner = payable(msg.sender); _manager = payable(manager); } function buy(uint256 monkeysQty) external payable { require(saleActive == true, "Sales are currently close"); require(totalSupply() < MAX_MONKEYS, "Sold Out"); require(monkeysQty > 0, "monkeysQty cannot be 0"); require(monkeysQty <= 100, "You may not buy more than 100 Monkeys at once"); require(totalSupply().add(monkeysQty) <= MAX_MONKEYS, "Sale exceeds available Monkeys"); uint256 salePrice = monkeyPrice.mul(monkeysQty); require(msg.value >= salePrice, "Insufficient Amount"); for (uint i = 0; i < monkeysQty; i++) { _Ids.increment(); uint256 newItemId = _Ids.current(); _safeMint(msg.sender, newItemId); } _manager.transfer(msg.value); ERC20 (tokenContractAddress).transfer(msg.sender, tokenRewards * monkeysQty); } function tokensOfOwner(address owner) external view returns (string[] memory ownerTokens) { uint256 tokenCount = balanceOf(owner); if (tokenCount == 0) { // Return an empty array return new string[](0); } else { string[] memory result = new string[](tokenCount); uint256 resultIndex = 0; uint256 Id; for (Id = 1; Id <= tokenCount; Id++) { result[resultIndex] = tokenURI((tokenOfOwnerByIndex(owner, Id - 1))); resultIndex++; } return result; } } function setBaseURI(string memory baseURI_) external onlyOwner() { baseURI = baseURI_; } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function withdrawTokens() external onlyOwner { ERC20 (tokenContractAddress).transfer(_owner, ERC20 (tokenContractAddress).balanceOf(address(this))); } function toogleSale() public onlyOwner { saleActive = !saleActive; } function statusSale() public view returns (bool status){ return (saleActive); } function contractURI() public view returns (string memory) { return string(abi.encodePacked(_baseURI(), "0")); } function _baseURI() internal view virtual override(ERC721) returns (string memory) { return baseURI; } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "./extensions/IERC721Enumerable.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}. 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 || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` 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 { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. 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; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overloaded; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens 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 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"manager","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"monkeysQty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"statusSale","outputs":[{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"string[]","name":"ownerTokens","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toogleSale","outputs":[],"stateMutability":"nonpayable","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":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052612710600d556040518060400160405280601f81526020017f68747470733a2f2f6170692e6d6f6e6b65796265742e636f2f746f6b656e2f00815250600e908051906020019062000057929190620002f6565b50731850b846fdb4d2ef026f54d520aa0322873f0cbd600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555066b1a2bc2ec500006010556001601160006101000a81548160ff02191690831515021790555069054b40b1f852bda00000601355348015620000ee57600080fd5b5060405162004b9438038062004b948339818101604052810190620001149190620003bd565b6040518060400160405280600981526020017f4d6f6e6b657942657400000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d42455400000000000000000000000000000000000000000000000000000000815250816000908051906020019062000198929190620002f6565b508060019080519060200190620001b1929190620002f6565b5050506000620001c6620002ee60201b60201c565b905080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35033601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200049c565b600033905090565b82805462000304906200041d565b90600052602060002090601f01602090048101928262000328576000855562000374565b82601f106200034357805160ff191683800117855562000374565b8280016001018555821562000374579182015b828111156200037357825182559160200191906001019062000356565b5b50905062000383919062000387565b5090565b5b80821115620003a257600081600090555060010162000388565b5090565b600081519050620003b78162000482565b92915050565b600060208284031215620003d057600080fd5b6000620003e084828501620003a6565b91505092915050565b6000620003f682620003fd565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200043657607f821691505b602082108114156200044d576200044c62000453565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200048d81620003e9565b81146200049957600080fd5b50565b6146e880620004ac6000396000f3fe6080604052600436106101815760003560e01c8063814c3634116100d1578063a22cb4651161008a578063d96a094a11610064578063d96a094a14610580578063e8a3d4851461059c578063e985e9c5146105c7578063f2fde38b1461060457610181565b8063a22cb465146104f1578063b88d4fde1461051a578063c87b56dd1461054357610181565b8063814c3634146104055780638462151c1461041c5780638d8f2adb146104595780638da5cb5b1461047057806395d89b411461049b578063a098d942146104c657610181565b80632f745c591161013e57806355f804b31161011857806355f804b31461034b5780636352211e1461037457806370a08231146103b1578063715018a6146103ee57610181565b80632f745c59146102a857806342842e0e146102e55780634f6ccce71461030e57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906131bf565b61062d565b6040516101ba9190613e46565b60405180910390f35b3480156101cf57600080fd5b506101d861063f565b6040516101e59190613e61565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190613252565b6106d1565b6040516102229190613d6b565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d919061315a565b610756565b005b34801561026057600080fd5b5061026961086e565b60405161027691906141a3565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190613054565b61087b565b005b3480156102b457600080fd5b506102cf60048036038101906102ca919061315a565b6108db565b6040516102dc91906141a3565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613054565b610980565b005b34801561031a57600080fd5b5061033560048036038101906103309190613252565b6109a0565b60405161034291906141a3565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190613211565b610a37565b005b34801561038057600080fd5b5061039b60048036038101906103969190613252565b610acd565b6040516103a89190613d6b565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612fef565b610b7f565b6040516103e591906141a3565b60405180910390f35b3480156103fa57600080fd5b50610403610c37565b005b34801561041157600080fd5b5061041a610d74565b005b34801561042857600080fd5b50610443600480360381019061043e9190612fef565b610e1c565b6040516104509190613e24565b60405180910390f35b34801561046557600080fd5b5061046e610fc8565b005b34801561047c57600080fd5b506104856111c2565b6040516104929190613d6b565b60405180910390f35b3480156104a757600080fd5b506104b06111ec565b6040516104bd9190613e61565b60405180910390f35b3480156104d257600080fd5b506104db61127e565b6040516104e89190613e46565b60405180910390f35b3480156104fd57600080fd5b506105186004803603810190610513919061311e565b611295565b005b34801561052657600080fd5b50610541600480360381019061053c91906130a3565b611416565b005b34801561054f57600080fd5b5061056a60048036038101906105659190613252565b611478565b6040516105779190613e61565b60405180910390f35b61059a60048036038101906105959190613252565b61148a565b005b3480156105a857600080fd5b506105b16117d8565b6040516105be9190613e61565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613018565b611806565b6040516105fb9190613e46565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612fef565b61189a565b005b600061063882611a46565b9050919050565b60606000805461064e906144dd565b80601f016020809104026020016040519081016040528092919081815260200182805461067a906144dd565b80156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b5050505050905090565b60006106dc82611ac0565b61071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290614063565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076182610acd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c9906140e3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f1611b2c565b73ffffffffffffffffffffffffffffffffffffffff161480610820575061081f8161081a611b2c565b611806565b5b61085f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085690613fc3565b60405180910390fd5b6108698383611b34565b505050565b6000600980549050905090565b61088c610886611b2c565b82611bed565b6108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c290614123565b60405180910390fd5b6108d6838383611ccb565b505050565b60006108e683610b7f565b8210610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90613ea3565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61099b83838360405180602001604052806000815250611416565b505050565b60006109aa61086e565b82106109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290614163565b60405180910390fd5b60098281548110610a25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610a3f611b2c565b73ffffffffffffffffffffffffffffffffffffffff16610a5d6111c2565b73ffffffffffffffffffffffffffffffffffffffff1614610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90614083565b60405180910390fd5b80600e9080519060200190610ac9929190612de9565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90614003565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790613fe3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c3f611b2c565b73ffffffffffffffffffffffffffffffffffffffff16610c5d6111c2565b73ffffffffffffffffffffffffffffffffffffffff1614610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90614083565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610d7c611b2c565b73ffffffffffffffffffffffffffffffffffffffff16610d9a6111c2565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790614083565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b60606000610e2983610b7f565b90506000811415610eb157600067ffffffffffffffff811115610e75577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ea857816020015b6060815260200190600190039081610e935790505b50915050610fc3565b60008167ffffffffffffffff811115610ef3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f2657816020015b6060815260200190600190039081610f115790505b509050600080600190505b838111610fbb57610f56610f5187600184610f4c91906143bd565b6108db565b611478565b838381518110610f8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101819052508180610fa59061450f565b9250508080610fb39061450f565b915050610f31565b829450505050505b919050565b610fd0611b2c565b73ffffffffffffffffffffffffffffffffffffffff16610fee6111c2565b73ffffffffffffffffffffffffffffffffffffffff1614611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b90614083565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111009190613d6b565b60206040518083038186803b15801561111857600080fd5b505afa15801561112c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611150919061327b565b6040518363ffffffff1660e01b815260040161116d929190613d86565b602060405180830381600087803b15801561118757600080fd5b505af115801561119b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bf9190613196565b50565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111fb906144dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611227906144dd565b80156112745780601f1061124957610100808354040283529160200191611274565b820191906000526020600020905b81548152906001019060200180831161125757829003601f168201915b5050505050905090565b6000601160009054906101000a900460ff16905090565b61129d611b2c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613f63565b60405180910390fd5b8060056000611318611b2c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113c5611b2c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161140a9190613e46565b60405180910390a35050565b611427611421611b2c565b83611bed565b611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90614123565b60405180910390fd5b61147284848484611f27565b50505050565b606061148382611f83565b9050919050565b60011515601160009054906101000a900460ff161515146114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d790613e83565b60405180910390fd5b600d546114eb61086e565b1061152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290613ee3565b60405180910390fd5b6000811161156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590614103565b60405180910390fd5b60648111156115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990614143565b60405180910390fd5b600d546115cf826115c161086e565b6120d590919063ffffffff16565b1115611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790614183565b60405180910390fd5b6000611627826010546120eb90919063ffffffff16565b90508034101561166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390613f83565b60405180910390fd5b60005b828110156116ad57611681600c612101565b600061168d600c612117565b90506116993382612125565b5080806116a59061450f565b91505061166f565b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611716573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846013546117649190614363565b6040518363ffffffff1660e01b8152600401611781929190613dfb565b602060405180830381600087803b15801561179b57600080fd5b505af11580156117af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d39190613196565b505050565b60606117e2612143565b6040516020016117f29190613d49565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118a2611b2c565b73ffffffffffffffffffffffffffffffffffffffff166118c06111c2565b73ffffffffffffffffffffffffffffffffffffffff1614611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d90614083565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90613f03565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ab95750611ab8826121d5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ba783610acd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bf882611ac0565b611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e90613fa3565b60405180910390fd5b6000611c4283610acd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cb157508373ffffffffffffffffffffffffffffffffffffffff16611c99846106d1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cc25750611cc18185611806565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ceb82610acd565b73ffffffffffffffffffffffffffffffffffffffff1614611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d38906140a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da890613f43565b60405180910390fd5b611dbc8383836122b7565b611dc7600082611b34565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e1791906143bd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6e91906142dc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f32848484611ccb565b611f3e848484846122c7565b611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490613ec3565b60405180910390fd5b50505050565b6060611f8e82611ac0565b611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc490614043565b60405180910390fd5b6000600660008481526020019081526020016000208054611fed906144dd565b80601f0160208091040260200160405190810160405280929190818152602001828054612019906144dd565b80156120665780601f1061203b57610100808354040283529160200191612066565b820191906000526020600020905b81548152906001019060200180831161204957829003601f168201915b505050505090506000612077612143565b905060008151141561208d5781925050506120d0565b6000825111156120c25780826040516020016120aa929190613d25565b604051602081830303815290604052925050506120d0565b6120cb8461245e565b925050505b919050565b600081836120e391906142dc565b905092915050565b600081836120f99190614363565b905092915050565b6001816000016000828254019250508190555050565b600081600001549050919050565b61213f828260405180602001604052806000815250612505565b5050565b6060600e8054612152906144dd565b80601f016020809104026020016040519081016040528092919081815260200182805461217e906144dd565b80156121cb5780601f106121a0576101008083540402835291602001916121cb565b820191906000526020600020905b8154815290600101906020018083116121ae57829003601f168201915b5050505050905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122a057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122b057506122af82612560565b5b9050919050565b6122c28383836125ca565b505050565b60006122e88473ffffffffffffffffffffffffffffffffffffffff166126de565b15612451578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612311611b2c565b8786866040518563ffffffff1660e01b81526004016123339493929190613daf565b602060405180830381600087803b15801561234d57600080fd5b505af192505050801561237e57506040513d601f19601f8201168201806040525081019061237b91906131e8565b60015b612401573d80600081146123ae576040519150601f19603f3d011682016040523d82523d6000602084013e6123b3565b606091505b506000815114156123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613ec3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612456565b600190505b949350505050565b606061246982611ac0565b6124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f906140c3565b60405180910390fd5b60006124b2612143565b905060008151116124d257604051806020016040528060008152506124fd565b806124dc846126f1565b6040516020016124ed929190613d25565b6040516020818303038152906040525b915050919050565b61250f838361289e565b61251c60008484846122c7565b61255b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255290613ec3565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6125d5838383612a6c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126185761261381612a71565b612657565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612656576126558382612aba565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561269a5761269581612c27565b6126d9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146126d8576126d78282612d6a565b5b5b505050565b600080823b905060008111915050919050565b60606000821415612739576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612899565b600082905060005b6000821461276b5780806127549061450f565b915050600a826127649190614332565b9150612741565b60008167ffffffffffffffff8111156127ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127df5781602001600182028036833780820191505090505b5090505b60008514612892576001826127f891906143bd565b9150600a856128079190614558565b603061281391906142dc565b60f81b81838151811061284f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561288b9190614332565b94506127e3565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561290e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290590614023565b60405180910390fd5b61291781611ac0565b15612957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294e90613f23565b60405180910390fd5b612963600083836122b7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129b391906142dc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ac784610b7f565b612ad191906143bd565b9050600060086000848152602001908152602001600020549050818114612bb6576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612c3b91906143bd565b90506000600a6000848152602001908152602001600020549050600060098381548110612c91577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612cd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612d4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d7583610b7f565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b828054612df5906144dd565b90600052602060002090601f016020900481019282612e175760008555612e5e565b82601f10612e3057805160ff1916838001178555612e5e565b82800160010185558215612e5e579182015b82811115612e5d578251825591602001919060010190612e42565b5b509050612e6b9190612e6f565b5090565b5b80821115612e88576000816000905550600101612e70565b5090565b6000612e9f612e9a846141ef565b6141be565b905082815260208101848484011115612eb757600080fd5b612ec284828561449b565b509392505050565b6000612edd612ed88461421f565b6141be565b905082815260208101848484011115612ef557600080fd5b612f0084828561449b565b509392505050565b600081359050612f1781614656565b92915050565b600081359050612f2c8161466d565b92915050565b600081519050612f418161466d565b92915050565b600081359050612f5681614684565b92915050565b600081519050612f6b81614684565b92915050565b600082601f830112612f8257600080fd5b8135612f92848260208601612e8c565b91505092915050565b600082601f830112612fac57600080fd5b8135612fbc848260208601612eca565b91505092915050565b600081359050612fd48161469b565b92915050565b600081519050612fe98161469b565b92915050565b60006020828403121561300157600080fd5b600061300f84828501612f08565b91505092915050565b6000806040838503121561302b57600080fd5b600061303985828601612f08565b925050602061304a85828601612f08565b9150509250929050565b60008060006060848603121561306957600080fd5b600061307786828701612f08565b935050602061308886828701612f08565b925050604061309986828701612fc5565b9150509250925092565b600080600080608085870312156130b957600080fd5b60006130c787828801612f08565b94505060206130d887828801612f08565b93505060406130e987828801612fc5565b925050606085013567ffffffffffffffff81111561310657600080fd5b61311287828801612f71565b91505092959194509250565b6000806040838503121561313157600080fd5b600061313f85828601612f08565b925050602061315085828601612f1d565b9150509250929050565b6000806040838503121561316d57600080fd5b600061317b85828601612f08565b925050602061318c85828601612fc5565b9150509250929050565b6000602082840312156131a857600080fd5b60006131b684828501612f32565b91505092915050565b6000602082840312156131d157600080fd5b60006131df84828501612f47565b91505092915050565b6000602082840312156131fa57600080fd5b600061320884828501612f5c565b91505092915050565b60006020828403121561322357600080fd5b600082013567ffffffffffffffff81111561323d57600080fd5b61324984828501612f9b565b91505092915050565b60006020828403121561326457600080fd5b600061327284828501612fc5565b91505092915050565b60006020828403121561328d57600080fd5b600061329b84828501612fda565b91505092915050565b60006132b08383613393565b905092915050565b6132c181614465565b82525050565b6132d0816143f1565b82525050565b60006132e18261425f565b6132eb818561428d565b9350836020820285016132fd8561424f565b8060005b85811015613339578484038952815161331a85826132a4565b945061332583614280565b925060208a01995050600181019050613301565b50829750879550505050505092915050565b61335481614403565b82525050565b60006133658261426a565b61336f818561429e565b935061337f8185602086016144aa565b61338881614645565b840191505092915050565b600061339e82614275565b6133a881856142af565b93506133b88185602086016144aa565b6133c181614645565b840191505092915050565b60006133d782614275565b6133e181856142c0565b93506133f18185602086016144aa565b6133fa81614645565b840191505092915050565b600061341082614275565b61341a81856142d1565b935061342a8185602086016144aa565b80840191505092915050565b60006134436001836142d1565b91507f30000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b60006134836019836142c0565b91507f53616c6573206172652063757272656e746c7920636c6f7365000000000000006000830152602082019050919050565b60006134c3602b836142c0565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006135296032836142c0565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061358f6008836142c0565b91507f536f6c64204f75740000000000000000000000000000000000000000000000006000830152602082019050919050565b60006135cf6026836142c0565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613635601c836142c0565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006136756024836142c0565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136db6019836142c0565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061371b6013836142c0565b91507f496e73756666696369656e7420416d6f756e74000000000000000000000000006000830152602082019050919050565b600061375b602c836142c0565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006137c16038836142c0565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613827602a836142c0565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061388d6029836142c0565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006138f36020836142c0565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006139336031836142c0565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613999602c836142c0565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139ff6020836142c0565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613a3f6029836142c0565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aa5602f836142c0565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613b0b6021836142c0565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b716016836142c0565b91507f6d6f6e6b6579735174792063616e6e6f742062652030000000000000000000006000830152602082019050919050565b6000613bb16031836142c0565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613c17602d836142c0565b91507f596f75206d6179206e6f7420627579206d6f7265207468616e20313030204d6f60008301527f6e6b657973206174206f6e6365000000000000000000000000000000000000006020830152604082019050919050565b6000613c7d602c836142c0565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613ce3601e836142c0565b91507f53616c65206578636565647320617661696c61626c65204d6f6e6b65797300006000830152602082019050919050565b613d1f8161445b565b82525050565b6000613d318285613405565b9150613d3d8284613405565b91508190509392505050565b6000613d558284613405565b9150613d6082613436565b915081905092915050565b6000602082019050613d8060008301846132c7565b92915050565b6000604082019050613d9b60008301856132b8565b613da86020830184613d16565b9392505050565b6000608082019050613dc460008301876132c7565b613dd160208301866132c7565b613dde6040830185613d16565b8181036060830152613df0818461335a565b905095945050505050565b6000604082019050613e1060008301856132c7565b613e1d6020830184613d16565b9392505050565b60006020820190508181036000830152613e3e81846132d6565b905092915050565b6000602082019050613e5b600083018461334b565b92915050565b60006020820190508181036000830152613e7b81846133cc565b905092915050565b60006020820190508181036000830152613e9c81613476565b9050919050565b60006020820190508181036000830152613ebc816134b6565b9050919050565b60006020820190508181036000830152613edc8161351c565b9050919050565b60006020820190508181036000830152613efc81613582565b9050919050565b60006020820190508181036000830152613f1c816135c2565b9050919050565b60006020820190508181036000830152613f3c81613628565b9050919050565b60006020820190508181036000830152613f5c81613668565b9050919050565b60006020820190508181036000830152613f7c816136ce565b9050919050565b60006020820190508181036000830152613f9c8161370e565b9050919050565b60006020820190508181036000830152613fbc8161374e565b9050919050565b60006020820190508181036000830152613fdc816137b4565b9050919050565b60006020820190508181036000830152613ffc8161381a565b9050919050565b6000602082019050818103600083015261401c81613880565b9050919050565b6000602082019050818103600083015261403c816138e6565b9050919050565b6000602082019050818103600083015261405c81613926565b9050919050565b6000602082019050818103600083015261407c8161398c565b9050919050565b6000602082019050818103600083015261409c816139f2565b9050919050565b600060208201905081810360008301526140bc81613a32565b9050919050565b600060208201905081810360008301526140dc81613a98565b9050919050565b600060208201905081810360008301526140fc81613afe565b9050919050565b6000602082019050818103600083015261411c81613b64565b9050919050565b6000602082019050818103600083015261413c81613ba4565b9050919050565b6000602082019050818103600083015261415c81613c0a565b9050919050565b6000602082019050818103600083015261417c81613c70565b9050919050565b6000602082019050818103600083015261419c81613cd6565b9050919050565b60006020820190506141b86000830184613d16565b92915050565b6000604051905081810181811067ffffffffffffffff821117156141e5576141e4614616565b5b8060405250919050565b600067ffffffffffffffff82111561420a57614209614616565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561423a57614239614616565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142e78261445b565b91506142f28361445b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561432757614326614589565b5b828201905092915050565b600061433d8261445b565b91506143488361445b565b925082614358576143576145b8565b5b828204905092915050565b600061436e8261445b565b91506143798361445b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143b2576143b1614589565b5b828202905092915050565b60006143c88261445b565b91506143d38361445b565b9250828210156143e6576143e5614589565b5b828203905092915050565b60006143fc8261443b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061447082614477565b9050919050565b600061448282614489565b9050919050565b60006144948261443b565b9050919050565b82818337600083830152505050565b60005b838110156144c85780820151818401526020810190506144ad565b838111156144d7576000848401525b50505050565b600060028204905060018216806144f557607f821691505b60208210811415614509576145086145e7565b5b50919050565b600061451a8261445b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561454d5761454c614589565b5b600182019050919050565b60006145638261445b565b915061456e8361445b565b92508261457e5761457d6145b8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61465f816143f1565b811461466a57600080fd5b50565b61467681614403565b811461468157600080fd5b50565b61468d8161440f565b811461469857600080fd5b50565b6146a48161445b565b81146146af57600080fd5b5056fea2646970667358221220584ec8732162ab68468009cc915813428d98210f4ec1449a8a2bd2bc8994c60c64736f6c63430008000033000000000000000000000000815bb360cb1435c4f9a333d84b43d0f9e71a3b18
Deployed Bytecode
0x6080604052600436106101815760003560e01c8063814c3634116100d1578063a22cb4651161008a578063d96a094a11610064578063d96a094a14610580578063e8a3d4851461059c578063e985e9c5146105c7578063f2fde38b1461060457610181565b8063a22cb465146104f1578063b88d4fde1461051a578063c87b56dd1461054357610181565b8063814c3634146104055780638462151c1461041c5780638d8f2adb146104595780638da5cb5b1461047057806395d89b411461049b578063a098d942146104c657610181565b80632f745c591161013e57806355f804b31161011857806355f804b31461034b5780636352211e1461037457806370a08231146103b1578063715018a6146103ee57610181565b80632f745c59146102a857806342842e0e146102e55780634f6ccce71461030e57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906131bf565b61062d565b6040516101ba9190613e46565b60405180910390f35b3480156101cf57600080fd5b506101d861063f565b6040516101e59190613e61565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190613252565b6106d1565b6040516102229190613d6b565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d919061315a565b610756565b005b34801561026057600080fd5b5061026961086e565b60405161027691906141a3565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190613054565b61087b565b005b3480156102b457600080fd5b506102cf60048036038101906102ca919061315a565b6108db565b6040516102dc91906141a3565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613054565b610980565b005b34801561031a57600080fd5b5061033560048036038101906103309190613252565b6109a0565b60405161034291906141a3565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190613211565b610a37565b005b34801561038057600080fd5b5061039b60048036038101906103969190613252565b610acd565b6040516103a89190613d6b565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612fef565b610b7f565b6040516103e591906141a3565b60405180910390f35b3480156103fa57600080fd5b50610403610c37565b005b34801561041157600080fd5b5061041a610d74565b005b34801561042857600080fd5b50610443600480360381019061043e9190612fef565b610e1c565b6040516104509190613e24565b60405180910390f35b34801561046557600080fd5b5061046e610fc8565b005b34801561047c57600080fd5b506104856111c2565b6040516104929190613d6b565b60405180910390f35b3480156104a757600080fd5b506104b06111ec565b6040516104bd9190613e61565b60405180910390f35b3480156104d257600080fd5b506104db61127e565b6040516104e89190613e46565b60405180910390f35b3480156104fd57600080fd5b506105186004803603810190610513919061311e565b611295565b005b34801561052657600080fd5b50610541600480360381019061053c91906130a3565b611416565b005b34801561054f57600080fd5b5061056a60048036038101906105659190613252565b611478565b6040516105779190613e61565b60405180910390f35b61059a60048036038101906105959190613252565b61148a565b005b3480156105a857600080fd5b506105b16117d8565b6040516105be9190613e61565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613018565b611806565b6040516105fb9190613e46565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612fef565b61189a565b005b600061063882611a46565b9050919050565b60606000805461064e906144dd565b80601f016020809104026020016040519081016040528092919081815260200182805461067a906144dd565b80156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b5050505050905090565b60006106dc82611ac0565b61071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290614063565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076182610acd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c9906140e3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f1611b2c565b73ffffffffffffffffffffffffffffffffffffffff161480610820575061081f8161081a611b2c565b611806565b5b61085f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085690613fc3565b60405180910390fd5b6108698383611b34565b505050565b6000600980549050905090565b61088c610886611b2c565b82611bed565b6108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c290614123565b60405180910390fd5b6108d6838383611ccb565b505050565b60006108e683610b7f565b8210610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90613ea3565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61099b83838360405180602001604052806000815250611416565b505050565b60006109aa61086e565b82106109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290614163565b60405180910390fd5b60098281548110610a25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610a3f611b2c565b73ffffffffffffffffffffffffffffffffffffffff16610a5d6111c2565b73ffffffffffffffffffffffffffffffffffffffff1614610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90614083565b60405180910390fd5b80600e9080519060200190610ac9929190612de9565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90614003565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790613fe3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c3f611b2c565b73ffffffffffffffffffffffffffffffffffffffff16610c5d6111c2565b73ffffffffffffffffffffffffffffffffffffffff1614610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90614083565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610d7c611b2c565b73ffffffffffffffffffffffffffffffffffffffff16610d9a6111c2565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790614083565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b60606000610e2983610b7f565b90506000811415610eb157600067ffffffffffffffff811115610e75577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ea857816020015b6060815260200190600190039081610e935790505b50915050610fc3565b60008167ffffffffffffffff811115610ef3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f2657816020015b6060815260200190600190039081610f115790505b509050600080600190505b838111610fbb57610f56610f5187600184610f4c91906143bd565b6108db565b611478565b838381518110610f8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101819052508180610fa59061450f565b9250508080610fb39061450f565b915050610f31565b829450505050505b919050565b610fd0611b2c565b73ffffffffffffffffffffffffffffffffffffffff16610fee6111c2565b73ffffffffffffffffffffffffffffffffffffffff1614611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b90614083565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111009190613d6b565b60206040518083038186803b15801561111857600080fd5b505afa15801561112c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611150919061327b565b6040518363ffffffff1660e01b815260040161116d929190613d86565b602060405180830381600087803b15801561118757600080fd5b505af115801561119b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bf9190613196565b50565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111fb906144dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611227906144dd565b80156112745780601f1061124957610100808354040283529160200191611274565b820191906000526020600020905b81548152906001019060200180831161125757829003601f168201915b5050505050905090565b6000601160009054906101000a900460ff16905090565b61129d611b2c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613f63565b60405180910390fd5b8060056000611318611b2c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113c5611b2c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161140a9190613e46565b60405180910390a35050565b611427611421611b2c565b83611bed565b611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90614123565b60405180910390fd5b61147284848484611f27565b50505050565b606061148382611f83565b9050919050565b60011515601160009054906101000a900460ff161515146114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d790613e83565b60405180910390fd5b600d546114eb61086e565b1061152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290613ee3565b60405180910390fd5b6000811161156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590614103565b60405180910390fd5b60648111156115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990614143565b60405180910390fd5b600d546115cf826115c161086e565b6120d590919063ffffffff16565b1115611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790614183565b60405180910390fd5b6000611627826010546120eb90919063ffffffff16565b90508034101561166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390613f83565b60405180910390fd5b60005b828110156116ad57611681600c612101565b600061168d600c612117565b90506116993382612125565b5080806116a59061450f565b91505061166f565b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611716573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846013546117649190614363565b6040518363ffffffff1660e01b8152600401611781929190613dfb565b602060405180830381600087803b15801561179b57600080fd5b505af11580156117af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d39190613196565b505050565b60606117e2612143565b6040516020016117f29190613d49565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118a2611b2c565b73ffffffffffffffffffffffffffffffffffffffff166118c06111c2565b73ffffffffffffffffffffffffffffffffffffffff1614611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d90614083565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90613f03565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ab95750611ab8826121d5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ba783610acd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bf882611ac0565b611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e90613fa3565b60405180910390fd5b6000611c4283610acd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cb157508373ffffffffffffffffffffffffffffffffffffffff16611c99846106d1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cc25750611cc18185611806565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ceb82610acd565b73ffffffffffffffffffffffffffffffffffffffff1614611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d38906140a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da890613f43565b60405180910390fd5b611dbc8383836122b7565b611dc7600082611b34565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e1791906143bd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6e91906142dc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f32848484611ccb565b611f3e848484846122c7565b611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490613ec3565b60405180910390fd5b50505050565b6060611f8e82611ac0565b611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc490614043565b60405180910390fd5b6000600660008481526020019081526020016000208054611fed906144dd565b80601f0160208091040260200160405190810160405280929190818152602001828054612019906144dd565b80156120665780601f1061203b57610100808354040283529160200191612066565b820191906000526020600020905b81548152906001019060200180831161204957829003601f168201915b505050505090506000612077612143565b905060008151141561208d5781925050506120d0565b6000825111156120c25780826040516020016120aa929190613d25565b604051602081830303815290604052925050506120d0565b6120cb8461245e565b925050505b919050565b600081836120e391906142dc565b905092915050565b600081836120f99190614363565b905092915050565b6001816000016000828254019250508190555050565b600081600001549050919050565b61213f828260405180602001604052806000815250612505565b5050565b6060600e8054612152906144dd565b80601f016020809104026020016040519081016040528092919081815260200182805461217e906144dd565b80156121cb5780601f106121a0576101008083540402835291602001916121cb565b820191906000526020600020905b8154815290600101906020018083116121ae57829003601f168201915b5050505050905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122a057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122b057506122af82612560565b5b9050919050565b6122c28383836125ca565b505050565b60006122e88473ffffffffffffffffffffffffffffffffffffffff166126de565b15612451578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612311611b2c565b8786866040518563ffffffff1660e01b81526004016123339493929190613daf565b602060405180830381600087803b15801561234d57600080fd5b505af192505050801561237e57506040513d601f19601f8201168201806040525081019061237b91906131e8565b60015b612401573d80600081146123ae576040519150601f19603f3d011682016040523d82523d6000602084013e6123b3565b606091505b506000815114156123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613ec3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612456565b600190505b949350505050565b606061246982611ac0565b6124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f906140c3565b60405180910390fd5b60006124b2612143565b905060008151116124d257604051806020016040528060008152506124fd565b806124dc846126f1565b6040516020016124ed929190613d25565b6040516020818303038152906040525b915050919050565b61250f838361289e565b61251c60008484846122c7565b61255b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255290613ec3565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6125d5838383612a6c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126185761261381612a71565b612657565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612656576126558382612aba565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561269a5761269581612c27565b6126d9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146126d8576126d78282612d6a565b5b5b505050565b600080823b905060008111915050919050565b60606000821415612739576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612899565b600082905060005b6000821461276b5780806127549061450f565b915050600a826127649190614332565b9150612741565b60008167ffffffffffffffff8111156127ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127df5781602001600182028036833780820191505090505b5090505b60008514612892576001826127f891906143bd565b9150600a856128079190614558565b603061281391906142dc565b60f81b81838151811061284f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561288b9190614332565b94506127e3565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561290e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290590614023565b60405180910390fd5b61291781611ac0565b15612957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294e90613f23565b60405180910390fd5b612963600083836122b7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129b391906142dc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ac784610b7f565b612ad191906143bd565b9050600060086000848152602001908152602001600020549050818114612bb6576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612c3b91906143bd565b90506000600a6000848152602001908152602001600020549050600060098381548110612c91577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612cd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612d4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d7583610b7f565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b828054612df5906144dd565b90600052602060002090601f016020900481019282612e175760008555612e5e565b82601f10612e3057805160ff1916838001178555612e5e565b82800160010185558215612e5e579182015b82811115612e5d578251825591602001919060010190612e42565b5b509050612e6b9190612e6f565b5090565b5b80821115612e88576000816000905550600101612e70565b5090565b6000612e9f612e9a846141ef565b6141be565b905082815260208101848484011115612eb757600080fd5b612ec284828561449b565b509392505050565b6000612edd612ed88461421f565b6141be565b905082815260208101848484011115612ef557600080fd5b612f0084828561449b565b509392505050565b600081359050612f1781614656565b92915050565b600081359050612f2c8161466d565b92915050565b600081519050612f418161466d565b92915050565b600081359050612f5681614684565b92915050565b600081519050612f6b81614684565b92915050565b600082601f830112612f8257600080fd5b8135612f92848260208601612e8c565b91505092915050565b600082601f830112612fac57600080fd5b8135612fbc848260208601612eca565b91505092915050565b600081359050612fd48161469b565b92915050565b600081519050612fe98161469b565b92915050565b60006020828403121561300157600080fd5b600061300f84828501612f08565b91505092915050565b6000806040838503121561302b57600080fd5b600061303985828601612f08565b925050602061304a85828601612f08565b9150509250929050565b60008060006060848603121561306957600080fd5b600061307786828701612f08565b935050602061308886828701612f08565b925050604061309986828701612fc5565b9150509250925092565b600080600080608085870312156130b957600080fd5b60006130c787828801612f08565b94505060206130d887828801612f08565b93505060406130e987828801612fc5565b925050606085013567ffffffffffffffff81111561310657600080fd5b61311287828801612f71565b91505092959194509250565b6000806040838503121561313157600080fd5b600061313f85828601612f08565b925050602061315085828601612f1d565b9150509250929050565b6000806040838503121561316d57600080fd5b600061317b85828601612f08565b925050602061318c85828601612fc5565b9150509250929050565b6000602082840312156131a857600080fd5b60006131b684828501612f32565b91505092915050565b6000602082840312156131d157600080fd5b60006131df84828501612f47565b91505092915050565b6000602082840312156131fa57600080fd5b600061320884828501612f5c565b91505092915050565b60006020828403121561322357600080fd5b600082013567ffffffffffffffff81111561323d57600080fd5b61324984828501612f9b565b91505092915050565b60006020828403121561326457600080fd5b600061327284828501612fc5565b91505092915050565b60006020828403121561328d57600080fd5b600061329b84828501612fda565b91505092915050565b60006132b08383613393565b905092915050565b6132c181614465565b82525050565b6132d0816143f1565b82525050565b60006132e18261425f565b6132eb818561428d565b9350836020820285016132fd8561424f565b8060005b85811015613339578484038952815161331a85826132a4565b945061332583614280565b925060208a01995050600181019050613301565b50829750879550505050505092915050565b61335481614403565b82525050565b60006133658261426a565b61336f818561429e565b935061337f8185602086016144aa565b61338881614645565b840191505092915050565b600061339e82614275565b6133a881856142af565b93506133b88185602086016144aa565b6133c181614645565b840191505092915050565b60006133d782614275565b6133e181856142c0565b93506133f18185602086016144aa565b6133fa81614645565b840191505092915050565b600061341082614275565b61341a81856142d1565b935061342a8185602086016144aa565b80840191505092915050565b60006134436001836142d1565b91507f30000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b60006134836019836142c0565b91507f53616c6573206172652063757272656e746c7920636c6f7365000000000000006000830152602082019050919050565b60006134c3602b836142c0565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006135296032836142c0565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061358f6008836142c0565b91507f536f6c64204f75740000000000000000000000000000000000000000000000006000830152602082019050919050565b60006135cf6026836142c0565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613635601c836142c0565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006136756024836142c0565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136db6019836142c0565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061371b6013836142c0565b91507f496e73756666696369656e7420416d6f756e74000000000000000000000000006000830152602082019050919050565b600061375b602c836142c0565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006137c16038836142c0565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613827602a836142c0565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061388d6029836142c0565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006138f36020836142c0565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006139336031836142c0565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613999602c836142c0565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139ff6020836142c0565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613a3f6029836142c0565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aa5602f836142c0565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613b0b6021836142c0565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b716016836142c0565b91507f6d6f6e6b6579735174792063616e6e6f742062652030000000000000000000006000830152602082019050919050565b6000613bb16031836142c0565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613c17602d836142c0565b91507f596f75206d6179206e6f7420627579206d6f7265207468616e20313030204d6f60008301527f6e6b657973206174206f6e6365000000000000000000000000000000000000006020830152604082019050919050565b6000613c7d602c836142c0565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613ce3601e836142c0565b91507f53616c65206578636565647320617661696c61626c65204d6f6e6b65797300006000830152602082019050919050565b613d1f8161445b565b82525050565b6000613d318285613405565b9150613d3d8284613405565b91508190509392505050565b6000613d558284613405565b9150613d6082613436565b915081905092915050565b6000602082019050613d8060008301846132c7565b92915050565b6000604082019050613d9b60008301856132b8565b613da86020830184613d16565b9392505050565b6000608082019050613dc460008301876132c7565b613dd160208301866132c7565b613dde6040830185613d16565b8181036060830152613df0818461335a565b905095945050505050565b6000604082019050613e1060008301856132c7565b613e1d6020830184613d16565b9392505050565b60006020820190508181036000830152613e3e81846132d6565b905092915050565b6000602082019050613e5b600083018461334b565b92915050565b60006020820190508181036000830152613e7b81846133cc565b905092915050565b60006020820190508181036000830152613e9c81613476565b9050919050565b60006020820190508181036000830152613ebc816134b6565b9050919050565b60006020820190508181036000830152613edc8161351c565b9050919050565b60006020820190508181036000830152613efc81613582565b9050919050565b60006020820190508181036000830152613f1c816135c2565b9050919050565b60006020820190508181036000830152613f3c81613628565b9050919050565b60006020820190508181036000830152613f5c81613668565b9050919050565b60006020820190508181036000830152613f7c816136ce565b9050919050565b60006020820190508181036000830152613f9c8161370e565b9050919050565b60006020820190508181036000830152613fbc8161374e565b9050919050565b60006020820190508181036000830152613fdc816137b4565b9050919050565b60006020820190508181036000830152613ffc8161381a565b9050919050565b6000602082019050818103600083015261401c81613880565b9050919050565b6000602082019050818103600083015261403c816138e6565b9050919050565b6000602082019050818103600083015261405c81613926565b9050919050565b6000602082019050818103600083015261407c8161398c565b9050919050565b6000602082019050818103600083015261409c816139f2565b9050919050565b600060208201905081810360008301526140bc81613a32565b9050919050565b600060208201905081810360008301526140dc81613a98565b9050919050565b600060208201905081810360008301526140fc81613afe565b9050919050565b6000602082019050818103600083015261411c81613b64565b9050919050565b6000602082019050818103600083015261413c81613ba4565b9050919050565b6000602082019050818103600083015261415c81613c0a565b9050919050565b6000602082019050818103600083015261417c81613c70565b9050919050565b6000602082019050818103600083015261419c81613cd6565b9050919050565b60006020820190506141b86000830184613d16565b92915050565b6000604051905081810181811067ffffffffffffffff821117156141e5576141e4614616565b5b8060405250919050565b600067ffffffffffffffff82111561420a57614209614616565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561423a57614239614616565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142e78261445b565b91506142f28361445b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561432757614326614589565b5b828201905092915050565b600061433d8261445b565b91506143488361445b565b925082614358576143576145b8565b5b828204905092915050565b600061436e8261445b565b91506143798361445b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143b2576143b1614589565b5b828202905092915050565b60006143c88261445b565b91506143d38361445b565b9250828210156143e6576143e5614589565b5b828203905092915050565b60006143fc8261443b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061447082614477565b9050919050565b600061448282614489565b9050919050565b60006144948261443b565b9050919050565b82818337600083830152505050565b60005b838110156144c85780820151818401526020810190506144ad565b838111156144d7576000848401525b50505050565b600060028204905060018216806144f557607f821691505b60208210811415614509576145086145e7565b5b50919050565b600061451a8261445b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561454d5761454c614589565b5b600182019050919050565b60006145638261445b565b915061456e8361445b565b92508261457e5761457d6145b8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61465f816143f1565b811461466a57600080fd5b50565b61467681614403565b811461468157600080fd5b50565b61468d8161440f565b811461469857600080fd5b50565b6146a48161445b565b81146146af57600080fd5b5056fea2646970667358221220584ec8732162ab68468009cc915813428d98210f4ec1449a8a2bd2bc8994c60c64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000815bb360cb1435c4f9a333d84b43d0f9e71a3b18
-----Decoded View---------------
Arg [0] : manager (address): 0x815bb360cB1435C4f9a333d84B43D0F9e71A3b18
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000815bb360cb1435c4f9a333d84b43d0f9e71a3b18
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.