ERC-721
Overview
Max Total Supply
292 MARS
Holders
65
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 MARSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BitMars
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/math/SafeMath.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface IERC20Burnable { function burn(uint256 amount) external returns (bool); } contract BitMars is ERC721Enumerable, ERC721Burnable, Ownable, ReentrancyGuard { using SafeMath for uint256; using Strings for uint256; event PlotMinted( address who, uint256 indexed tokenId ); event NameChanged( uint256 indexed tokenId, string oldName, string newName ); //Provenance Record of all Bit Mars Plots. string public BITMARS_PROVENANCE = ""; string public baseTokenURI; string public _contractURI; uint256 public constant MAX_PLOTS = 6144; uint256 public constant MAX_MINTABLE_AT_ONCE = 20; uint256 private leftToReserve = 200; uint256 private _numOfAvailableTokens = 6144; uint256[6144] private _availableTokens; uint256 public NAME_CHANGE_PRICE = 10000 * (10 ** 18); bool public isSaleActive; address private _creditsAddress; mapping(uint256 => string) private _tokenIdToName; mapping(string => bool) private _nameReserved; constructor(string memory baseURI, string memory contractURI) ERC721('Bit Mars', 'MARS') { setURI(baseURI,contractURI); } function setURI(string memory baseURI, string memory contractURI) public onlyOwner returns(bool) { baseTokenURI = baseURI; _contractURI = contractURI; return true; } function setProvenanceHash(string memory _hash) public onlyOwner { BITMARS_PROVENANCE = _hash; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns(string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for non-existant token"); string memory _tokenURI = Strings.toString(_tokenId); string memory base = _baseURI(); return bytes(base).length == 0 ? _tokenURI : string(abi.encodePacked(base, _tokenURI)); } function contractURI() public view returns (string memory) { return _contractURI; } function tokenNameByIndex (uint256 index) public view returns (string memory) { return _tokenIdToName[index]; } function _getPrice() public view returns (uint256) { require(isSaleActive, "Sale has not started."); require(totalSupply() < MAX_PLOTS,"Sale has already ended."); uint256 currentSupply = totalSupply(); uint256 result; if (currentSupply >= 4125) { result = 0.09 ether; return result; } else if (currentSupply >= 2163) { result = 0.06 ether; return result; } else { result = 0.03 ether; return result; } } function mint(uint256 _numberToMint) public payable nonReentrant() { require(isSaleActive, "Sale not yet started."); require(totalSupply() < MAX_PLOTS, "Sale has already ended."); require(_numberToMint > 0 && _numberToMint <= 20, "Cannot mint 0, or more than 20 Plots"); require(totalSupply().add(_numberToMint) <= MAX_PLOTS, "Too many plots."); require(_getPrice().mul(_numberToMint) <= msg.value, "Ether value sent too small."); _mint(_numberToMint); } function _mint(uint256 _numberToMint) internal { require(_numberToMint > 0 && _numberToMint <= 20, "Cannot mint 0, or more than 20 Plots"); uint256 updatedNumAvailableTokens = _numOfAvailableTokens; for (uint256 i = 0; i < _numberToMint; i++) { uint256 RandomTokenId = _useRandomAvailableToken(_numberToMint, i); updatedNumAvailableTokens--; _safeMint(msg.sender,RandomTokenId); emit PlotMinted(msg.sender, RandomTokenId); } _numOfAvailableTokens = updatedNumAvailableTokens; } function reserve(uint256[] calldata plots) public onlyOwner { require(plots.length <= leftToReserve, "Already Reserved 200"); require(totalSupply().add(plots.length) <= MAX_PLOTS, "Exceeds MAX_PLOTS"); for ( uint256 i = 0; i < plots.length; i++) { uint256 index = plots[i]; uint256 valAtIndex = _availableTokens[index]; require( valAtIndex == 0); leftToReserve--; uint256 lastIndex = _numOfAvailableTokens - 1; _availableTokens[index] = lastIndex; _numOfAvailableTokens--; _safeMint(msg.sender, index); emit PlotMinted(msg.sender, index); } } function toggleSaleAndReturnSaleState() public onlyOwner returns(bool) { isSaleActive = !isSaleActive; return isSaleActive; } function withdraw() public onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function forwardERC20s(IERC20 _token, address _to, uint256 _amount) public onlyOwner { require(address(_to) != address(0), "can not send to zero address."); _token.transfer(_to, _amount); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function setCreditsAddress(address _address) external onlyOwner { _creditsAddress = _address; } function changeName(uint256 tokenId, string memory newName) public { address owner = ownerOf(tokenId); require(_msgSender() == owner, "ERC721: caller is not the owner"); require(validateName(newName) == true, "Not a valid new name"); require(sha256(bytes(newName)) != sha256(bytes(_tokenIdToName[tokenId])), "New name is same as the current one"); require(isNameReserved(newName) == false, "Name already reserved"); string memory oldName = _tokenIdToName[tokenId]; IERC20(_creditsAddress).transferFrom(msg.sender, address(this), NAME_CHANGE_PRICE); // If already named, dereserve old name if (bytes(_tokenIdToName[tokenId]).length > 0) { toggleReserveName(_tokenIdToName[tokenId], false); } toggleReserveName(newName, true); _tokenIdToName[tokenId] = newName; IERC20Burnable(_creditsAddress).burn(NAME_CHANGE_PRICE); emit NameChanged(tokenId, oldName, newName); } function isNameReserved(string memory nameString) public view returns (bool) { return _nameReserved[toLower(nameString)]; } function toggleReserveName(string memory str, bool isReserve) internal { _nameReserved[toLower(str)] = isReserve; } function validateName(string memory str) public pure returns (bool){ bytes memory b = bytes(str); if(b.length < 1) return false; if(b.length > 25) return false; // Cannot be longer than 25 characters if(b[0] == 0x20) return false; // Leading space if (b[b.length - 1] == 0x20) return false; // Trailing space bytes1 lastChar = b[0]; for(uint i; i<b.length; i++){ bytes1 char = b[i]; if (char == 0x20 && lastChar == 0x20) return false; // Cannot contain continous spaces if( !(char >= 0x30 && char <= 0x39) && //9-0 !(char >= 0x41 && char <= 0x5A) && //A-Z !(char >= 0x61 && char <= 0x7A) && //a-z !(char == 0x20) //space ) return false; lastChar = char; } return true; } function toLower(string memory str) public pure returns (string memory){ bytes memory bStr = bytes(str); bytes memory bLower = new bytes(bStr.length); for (uint i = 0; i < bStr.length; i++) { // Uppercase character if ((uint8(bStr[i]) >= 65) && (uint8(bStr[i]) <= 90)) { bLower[i] = bytes1(uint8(bStr[i]) + 32); } else { bLower[i] = bStr[i]; } } return string(bLower); } //----------RANDOM TOKEN----------// function _useRandomAvailableToken( uint256 _numberToFetch, uint256 _indexToUse ) internal returns (uint256) { uint256 randomNumber = uint256( keccak256( abi.encode( msg.sender, tx.gasprice, block.number, block.timestamp, blockhash(block.number-1), _numberToFetch, _indexToUse ) ) ); uint256 randomIndex = randomNumber % _numOfAvailableTokens; return _useAvailableTokenAtIndex(randomIndex); } function _useAvailableTokenAtIndex(uint256 indexToUse) internal returns (uint256) { uint256 valAtIndex = _availableTokens[indexToUse]; uint256 result; if (valAtIndex == 0) { result = indexToUse; } else { result = valAtIndex; } uint256 lastIndex = _numOfAvailableTokens - 1; if(indexToUse != lastIndex) { uint256 lastValInArray = _availableTokens[lastIndex]; if (lastValInArray == 0) { _availableTokens[indexToUse] = lastIndex; } else { _availableTokens[indexToUse] = lastValInArray; } } _numOfAvailableTokens--; return result; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // 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. 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; /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"contractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"oldName","type":"string"},{"indexed":false,"internalType":"string","name":"newName","type":"string"}],"name":"NameChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"who","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"PlotMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BITMARS_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTABLE_AT_ONCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PLOTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NAME_CHANGE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newName","type":"string"}],"name":"changeName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"forwardERC20s","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"nameString","type":"string"}],"name":"isNameReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"plots","type":"uint256[]"}],"name":"reserve","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":"address","name":"_address","type":"address"}],"name":"setCreditsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"contractURI","type":"string"}],"name":"setURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"toLower","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"toggleSaleAndReturnSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenNameByIndex","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"validateName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600c91620001ec565b5060c8600f5561180060105569021e19e0c9bab2400000611811553480156200004357600080fd5b5060405162003c2138038062003c21833981016040819052620000669162000345565b6040805180820182526008815267426974204d61727360c01b6020808301918252835180850190945260048452634d41525360e01b908401528151919291620000b291600091620001ec565b508051620000c8906001906020840190620001ec565b505050620000e5620000df620000ff60201b60201c565b62000103565b6001600b55620000f6828262000155565b505050620003ff565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546000906001600160a01b03163314620001b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8251620001cc90600d906020860190620001ec565b508151620001e290600e906020850190620001ec565b5060019392505050565b828054620001fa90620003ac565b90600052602060002090601f0160209004810192826200021e576000855562000269565b82601f106200023957805160ff191683800117855562000269565b8280016001018555821562000269579182015b82811115620002695782518255916020019190600101906200024c565b50620002779291506200027b565b5090565b5b808211156200027757600081556001016200027c565b600082601f830112620002a3578081fd5b81516001600160401b0380821115620002c057620002c0620003e9565b604051601f8301601f19908116603f01168101908282118183101715620002eb57620002eb620003e9565b8160405283815260209250868385880101111562000307578485fd5b8491505b838210156200032a57858201830151818301840152908201906200030b565b838211156200033b57848385830101525b9695505050505050565b6000806040838503121562000358578182fd5b82516001600160401b03808211156200036f578384fd5b6200037d8683870162000292565b9350602085015191508082111562000393578283fd5b50620003a28582860162000292565b9150509250929050565b600181811c90821680620003c157607f821691505b60208210811415620003e357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613812806200040f6000396000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063bf2db4c8116100b6578063c87b56dd1161007a578063c87b56dd14610692578063cbf775b2146106b2578063d547cfb7146106c7578063e8a3d485146106dc578063e985e9c5146106f1578063f2fde38b1461073a57600080fd5b8063bf2db4c814610612578063c0e7274014610632578063c1bb4a3014610647578063c3287fde1461065d578063c39cbef11461067257600080fd5b8063a0712d68116100fd578063a0712d6814610595578063a19af1ad146105a8578063a22cb465146105bd578063b3e6d268146105dd578063b88d4fde146105f257600080fd5b8063715018a61461050d5780638da5cb5b146105225780639416b4231461054057806395d89b41146105605780639ffdb65a1461057557600080fd5b80633ccfd60b116101d257806354b6f1611161019657806354b6f1611461045b578063564566a8146104725780635dfb3d201461048d5780636352211e146104ad5780636d522418146104cd57806370a08231146104ed57600080fd5b80633ccfd60b146103c657806342842e0e146103db57806342966c68146103fb5780634f6ccce71461041b57806353ecdb541461043b57600080fd5b806315b56d101161021957806315b56d101461032757806318160ddd146103475780631949c1771461036657806323b872dd146103865780632f745c59146103a657600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e55780631096952314610307575b600080fd5b34801561026257600080fd5b50610276610271366004613257565b61075a565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a061076b565b60405161028291906134d9565b3480156102b957600080fd5b506102cd6102c8366004613337565b6107fd565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004613188565b610897565b005b34801561031357600080fd5b506103056103223660046132a3565b6109ad565b34801561033357600080fd5b506102766103423660046132a3565b6109ee565b34801561035357600080fd5b506008545b604051908152602001610282565b34801561037257600080fd5b506103056103813660046131b3565b610a22565b34801561039257600080fd5b506103056103a136600461309e565b610c0d565b3480156103b257600080fd5b506103586103c1366004613188565b610c3f565b3480156103d257600080fd5b50610305610cd5565b3480156103e757600080fd5b506103056103f636600461309e565b610d8d565b34801561040757600080fd5b50610305610416366004613337565b610da8565b34801561042757600080fd5b50610358610436366004613337565b610e1f565b34801561044757600080fd5b5061030561045636600461328f565b610ec0565b34801561046757600080fd5b506103586118115481565b34801561047e57600080fd5b50611812546102769060ff1681565b34801561049957600080fd5b506103056104a836600461304a565b610fc8565b3480156104b957600080fd5b506102cd6104c8366004613337565b61101b565b3480156104d957600080fd5b506102a06104e8366004613337565b611092565b3480156104f957600080fd5b5061035861050836600461304a565b611135565b34801561051957600080fd5b506103056111bc565b34801561052e57600080fd5b50600a546001600160a01b03166102cd565b34801561054c57600080fd5b506102a061055b3660046132a3565b6111f2565b34801561056c57600080fd5b506102a06113b7565b34801561058157600080fd5b506102766105903660046132a3565b6113c6565b6103056105a3366004613337565b61160d565b3480156105b457600080fd5b506103586117f2565b3480156105c957600080fd5b506103056105d836600461315b565b6118e2565b3480156105e957600080fd5b506102a06119a7565b3480156105fe57600080fd5b5061030561060d3660046130de565b611a35565b34801561061e57600080fd5b5061027661062d3660046132d6565b611a67565b34801561063e57600080fd5b506102a0611ac5565b34801561065357600080fd5b5061035861180081565b34801561066957600080fd5b50610276611ad2565b34801561067e57600080fd5b5061030561068d36600461334f565b611b1a565b34801561069e57600080fd5b506102a06106ad366004613337565b612018565b3480156106be57600080fd5b50610358601481565b3480156106d357600080fd5b506102a06120eb565b3480156106e857600080fd5b506102a06120f8565b3480156106fd57600080fd5b5061027661070c366004613066565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074657600080fd5b5061030561075536600461304a565b612107565b60006107658261219f565b92915050565b60606000805461077a906136f7565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906136f7565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661087b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108a28261101b565b9050806001600160a01b0316836001600160a01b031614156109105760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610872565b336001600160a01b038216148061092c575061092c813361070c565b61099e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610872565b6109a883836121c4565b505050565b600a546001600160a01b031633146109d75760405162461bcd60e51b815260040161087290613563565b80516109ea90600c906020840190612f1c565b5050565b60006118146109fc836111f2565b604051610a0991906133b6565b9081526040519081900360200190205460ff1692915050565b600a546001600160a01b03163314610a4c5760405162461bcd60e51b815260040161087290613563565b600f54811115610a955760405162461bcd60e51b81526020600482015260146024820152730416c7265616479205265736572766564203230360641b6044820152606401610872565b611800610aab82610aa560085490565b90612232565b1115610aed5760405162461bcd60e51b815260206004820152601160248201527045786365656473204d41585f504c4f545360781b6044820152606401610872565b60005b818110156109a8576000838383818110610b1a57634e487b7160e01b600052603260045260246000fd5b90506020020135905060006011826118008110610b4757634e487b7160e01b600052603260045260246000fd5b015490508015610b5657600080fd5b600f8054906000610b66836136e0565b919050555060006001601054610b7c919061369d565b9050806011846118008110610ba157634e487b7160e01b600052603260045260246000fd5b015560108054906000610bb3836136e0565b9190505550610bc23384612245565b60405133815283907ff5bfe2c47201d9b174eb541f714cc5ba5acbeb056cfcdd39b720853a38b624cf9060200160405180910390a25050508080610c0590613732565b915050610af0565b610c18335b8261225f565b610c345760405162461bcd60e51b8152600401610872906135dc565b6109a8838383612352565b6000610c4a83611135565b8210610cac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610872565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610cff5760405162461bcd60e51b815260040161087290613563565b604051600090339047908381818185875af1925050503d8060008114610d41576040519150601f19603f3d011682016040523d82523d6000602084013e610d46565b606091505b5050905080610d8a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610872565b50565b6109a883838360405180602001604052806000815250611a35565b610db133610c12565b610e165760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610872565b610d8a816124fd565b6000610e2a60085490565b8210610e8d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610872565b60088281548110610eae57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610eea5760405162461bcd60e51b815260040161087290613563565b6001600160a01b038216610f405760405162461bcd60e51b815260206004820152601d60248201527f63616e206e6f742073656e6420746f207a65726f20616464726573732e0000006044820152606401610872565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b158015610f8a57600080fd5b505af1158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc29190613223565b50505050565b600a546001600160a01b03163314610ff25760405162461bcd60e51b815260040161087290613563565b61181280546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000818152600260205260408120546001600160a01b0316806107655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610872565b6000818152611813602052604090208054606091906110b0906136f7565b80601f01602080910402602001604051908101604052809291908181526020018280546110dc906136f7565b80156111295780601f106110fe57610100808354040283529160200191611129565b820191906000526020600020905b81548152906001019060200180831161110c57829003601f168201915b50505050509050919050565b60006001600160a01b0382166111a05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610872565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111e65760405162461bcd60e51b815260040161087290613563565b6111f060006125a4565b565b606060008290506000815167ffffffffffffffff81111561122357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561124d576020820181803683370190505b50905060005b82518110156113af57604183828151811061127e57634e487b7160e01b600052603260045260246000fd5b016020015160f81c108015906112bc5750605a8382815181106112b157634e487b7160e01b600052603260045260246000fd5b016020015160f81c11155b1561133a578281815181106112e157634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b60f81c60206112fb9190613645565b60f81b82828151811061131e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061139d565b82818151811061135a57634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b82828151811061138557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053505b806113a781613732565b915050611253565b509392505050565b60606001805461077a906136f7565b6000808290506001815110156113df5750600092915050565b6019815111156113f25750600092915050565b8060008151811061141357634e487b7160e01b600052603260045260246000fd5b6020910101516001600160f81b031916600160fd1b14156114375750600092915050565b8060018251611446919061369d565b8151811061146457634e487b7160e01b600052603260045260246000fd5b6020910101516001600160f81b031916600160fd1b14156114885750600092915050565b6000816000815181106114ab57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916905060005b82518110156116025760008382815181106114ea57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319169050600160fd1b8114801561151b5750600160fd1b6001600160f81b03198416145b1561152c5750600095945050505050565b600360fc1b6001600160f81b03198216108015906115585750603960f81b6001600160f81b0319821611155b15801561158e5750604160f81b6001600160f81b031982161080159061158c5750602d60f91b6001600160f81b0319821611155b155b80156115c35750606160f81b6001600160f81b03198216108015906115c15750603d60f91b6001600160f81b0319821611155b155b80156115dd5750600160fd1b6001600160f81b0319821614155b156115ee5750600095945050505050565b9150806115fa81613732565b9150506114bf565b506001949350505050565b6002600b5414156116605760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610872565b6002600b556118125460ff166116b05760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba103cb2ba1039ba30b93a32b21760591b6044820152606401610872565b6118006116bc60085490565b106117035760405162461bcd60e51b815260206004820152601760248201527629b0b632903430b99030b63932b0b23c9032b73232b21760491b6044820152606401610872565b600081118015611714575060148111155b6117305760405162461bcd60e51b815260040161087290613598565b61180061174082610aa560085490565b11156117805760405162461bcd60e51b815260206004820152600f60248201526e2a37b79036b0b73c90383637ba399760891b6044820152606401610872565b346117938261178d6117f2565b906125f6565b11156117e15760405162461bcd60e51b815260206004820152601b60248201527f45746865722076616c75652073656e7420746f6f20736d616c6c2e00000000006044820152606401610872565b6117ea81612602565b506001600b55565b6118125460009060ff166118405760405162461bcd60e51b815260206004820152601560248201527429b0b632903430b9903737ba1039ba30b93a32b21760591b6044820152606401610872565b61180061184c60085490565b106118935760405162461bcd60e51b815260206004820152601760248201527629b0b632903430b99030b63932b0b23c9032b73232b21760491b6044820152606401610872565b600061189e60085490565b9050600061101d82106118bb575067013fbe85edc9000092915050565b61087382106118d3575066d529ae9e86000092915050565b50666a94d74f43000092915050565b6001600160a01b03821633141561193b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610872565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c80546119b4906136f7565b80601f01602080910402602001604051908101604052809291908181526020018280546119e0906136f7565b8015611a2d5780601f10611a0257610100808354040283529160200191611a2d565b820191906000526020600020905b815481529060010190602001808311611a1057829003601f168201915b505050505081565b611a3f338361225f565b611a5b5760405162461bcd60e51b8152600401610872906135dc565b610fc2848484846126b1565b600a546000906001600160a01b03163314611a945760405162461bcd60e51b815260040161087290613563565b8251611aa790600d906020860190612f1c565b508151611abb90600e906020850190612f1c565b5060019392505050565b600e80546119b4906136f7565b600a546000906001600160a01b03163314611aff5760405162461bcd60e51b815260040161087290613563565b50611812805460ff19811660ff918216159081179092551690565b6000611b258361101b565b9050336001600160a01b03821614611b7f5760405162461bcd60e51b815260206004820152601f60248201527f4552433732313a2063616c6c6572206973206e6f7420746865206f776e6572006044820152606401610872565b611b88826113c6565b1515600114611bd05760405162461bcd60e51b81526020600482015260146024820152734e6f7420612076616c6964206e6577206e616d6560601b6044820152606401610872565b60008381526118136020526040908190209051600291611bef916133d2565b602060405180830381855afa158015611c0c573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611c2f919061323f565b600283604051611c3f91906133b6565b602060405180830381855afa158015611c5c573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611c7f919061323f565b1415611cd95760405162461bcd60e51b815260206004820152602360248201527f4e6577206e616d652069732073616d65206173207468652063757272656e74206044820152626f6e6560e81b6064820152608401610872565b611ce2826109ee565b15611d275760405162461bcd60e51b815260206004820152601560248201527413985b5948185b1c9958591e481c995cd95c9d9959605a1b6044820152606401610872565b6000838152611813602052604081208054611d41906136f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6d906136f7565b8015611dba5780601f10611d8f57610100808354040283529160200191611dba565b820191906000526020600020905b815481529060010190602001808311611d9d57829003601f168201915b505061181254611811546040516323b872dd60e01b8152336004820152306024820152604481019190915294955061010090046001600160a01b0316936323b872dd93506064019150611e0a9050565b602060405180830381600087803b158015611e2457600080fd5b505af1158015611e38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5c9190613223565b506000848152611813602052604081208054611e77906136f7565b90501115611f23576000848152611813602052604090208054611f239190611e9e906136f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611eca906136f7565b8015611f175780601f10611eec57610100808354040283529160200191611f17565b820191906000526020600020905b815481529060010190602001808311611efa57829003601f168201915b505050505060006126e4565b611f2e8360016126e4565b6000848152611813602090815260409091208451611f4e92860190612f1c565b506118125461181154604051630852cd8d60e31b815260048101919091526101009091046001600160a01b0316906342966c6890602401602060405180830381600087803b158015611f9f57600080fd5b505af1158015611fb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd79190613223565b50837fd03378e710a4f526d1030d6dd70e5c0999dcaf843ca8a83aadcb0946a251de8e828560405161200a9291906134ec565b60405180910390a250505050565b6000818152600260205260409020546060906001600160a01b03166120985760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3716b2bc34b9ba30b73a103a37b5b2b760811b6064820152608401610872565b60006120a383612722565b905060006120af61283c565b905080516000146120e15780826040516020016120cd92919061346d565b6040516020818303038152906040526120e3565b815b949350505050565b600d80546119b4906136f7565b6060600e805461077a906136f7565b600a546001600160a01b031633146121315760405162461bcd60e51b815260040161087290613563565b6001600160a01b0381166121965760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610872565b610d8a816125a4565b60006001600160e01b0319821663780e9d6360e01b148061076557506107658261284b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906121f98261101b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061223e828461362d565b9392505050565b6109ea82826040518060200160405280600081525061289b565b6000818152600260205260408120546001600160a01b03166122d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610872565b60006122e38361101b565b9050806001600160a01b0316846001600160a01b0316148061231e5750836001600160a01b0316612313846107fd565b6001600160a01b0316145b806120e357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166120e3565b826001600160a01b03166123658261101b565b6001600160a01b0316146123cd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610872565b6001600160a01b03821661242f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610872565b61243a8383836128ce565b6124456000826121c4565b6001600160a01b038316600090815260036020526040812080546001929061246e90849061369d565b90915550506001600160a01b038216600090815260036020526040812080546001929061249c90849061362d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006125088261101b565b9050612516816000846128ce565b6125216000836121c4565b6001600160a01b038116600090815260036020526040812080546001929061254a90849061369d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061223e828461367e565b600081118015612613575060148111155b61262f5760405162461bcd60e51b815260040161087290613598565b60105460005b828110156126aa57600061264984836128d9565b905082612655816136e0565b9350506126623382612245565b60405133815281907ff5bfe2c47201d9b174eb541f714cc5ba5acbeb056cfcdd39b720853a38b624cf9060200160405180910390a250806126a281613732565b915050612635565b5060105550565b6126bc848484612352565b6126c884848484612969565b610fc25760405162461bcd60e51b815260040161087290613511565b806118146126f1846111f2565b6040516126fe91906133b6565b908152604051908190036020019020805491151560ff199092169190911790555050565b6060816127465750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612770578061275a81613732565b91506127699050600a8361366a565b915061274a565b60008167ffffffffffffffff81111561279957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127c3576020820181803683370190505b5090505b84156120e3576127d860018361369d565b91506127e5600a8661374d565b6127f090603061362d565b60f81b81838151811061281357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612835600a8661366a565b94506127c7565b6060600d805461077a906136f7565b60006001600160e01b031982166380ac58cd60e01b148061287c57506001600160e01b03198216635b5e139f60e01b145b8061076557506301ffc9a760e01b6001600160e01b0319831614610765565b6128a58383612a6b565b6128b26000848484612969565b6109a85760405162461bcd60e51b815260040161087290613511565b6109a8838383612bb9565b600080333a43426128eb60018361369d565b604080516001600160a01b039096166020870152850193909352606084019190915260808301524060a082015260c0810185905260e08101849052610100016040516020818303038152906040528051906020012060001c9050600060105482612955919061374d565b905061296081612c71565b95945050505050565b60006001600160a01b0384163b1561160257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129ad90339089908890889060040161349c565b602060405180830381600087803b1580156129c757600080fd5b505af19250505080156129f7575060408051601f3d908101601f191682019092526129f491810190613273565b60015b612a51573d808015612a25576040519150601f19603f3d011682016040523d82523d6000602084013e612a2a565b606091505b508051612a495760405162461bcd60e51b815260040161087290613511565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120e3565b6001600160a01b038216612ac15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610872565b6000818152600260205260409020546001600160a01b031615612b265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610872565b612b32600083836128ce565b6001600160a01b0382166000908152600360205260408120805460019290612b5b90849061362d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316612c1457612c0f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612c37565b816001600160a01b0316836001600160a01b031614612c3757612c378382612d62565b6001600160a01b038216612c4e576109a881612dff565b826001600160a01b0316826001600160a01b0316146109a8576109a88282612ed8565b6000806011836118008110612c9657634e487b7160e01b600052603260045260246000fd5b01549050600081612ca8575082612cab565b50805b60006001601054612cbc919061369d565b9050808514612d445760006011826118008110612ce957634e487b7160e01b600052603260045260246000fd5b0154905080612d1c57816011876118008110612d1557634e487b7160e01b600052603260045260246000fd5b0155612d42565b806011876118008110612d3f57634e487b7160e01b600052603260045260246000fd5b01555b505b60108054906000612d54836136e0565b909155509195945050505050565b60006001612d6f84611135565b612d79919061369d565b600083815260076020526040902054909150808214612dcc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612e119060019061369d565b60008381526009602052604081205460088054939450909284908110612e4757634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612e7657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612ebc57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ee383611135565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612f28906136f7565b90600052602060002090601f016020900481019282612f4a5760008555612f90565b82601f10612f6357805160ff1916838001178555612f90565b82800160010185558215612f90579182015b82811115612f90578251825591602001919060010190612f75565b50612f9c929150612fa0565b5090565b5b80821115612f9c5760008155600101612fa1565b600067ffffffffffffffff80841115612fd057612fd061378d565b604051601f8501601f19908116603f01168101908282118183101715612ff857612ff861378d565b8160405280935085815286868601111561301157600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261303b578081fd5b61223e83833560208501612fb5565b60006020828403121561305b578081fd5b813561223e816137a3565b60008060408385031215613078578081fd5b8235613083816137a3565b91506020830135613093816137a3565b809150509250929050565b6000806000606084860312156130b2578081fd5b83356130bd816137a3565b925060208401356130cd816137a3565b929592945050506040919091013590565b600080600080608085870312156130f3578081fd5b84356130fe816137a3565b9350602085013561310e816137a3565b925060408501359150606085013567ffffffffffffffff811115613130578182fd5b8501601f81018713613140578182fd5b61314f87823560208401612fb5565b91505092959194509250565b6000806040838503121561316d578182fd5b8235613178816137a3565b91506020830135613093816137b8565b6000806040838503121561319a578182fd5b82356131a5816137a3565b946020939093013593505050565b600080602083850312156131c5578182fd5b823567ffffffffffffffff808211156131dc578384fd5b818501915085601f8301126131ef578384fd5b8135818111156131fd578485fd5b8660208260051b8501011115613211578485fd5b60209290920196919550909350505050565b600060208284031215613234578081fd5b815161223e816137b8565b600060208284031215613250578081fd5b5051919050565b600060208284031215613268578081fd5b813561223e816137c6565b600060208284031215613284578081fd5b815161223e816137c6565b6000806000606084860312156130b2578283fd5b6000602082840312156132b4578081fd5b813567ffffffffffffffff8111156132ca578182fd5b6120e38482850161302b565b600080604083850312156132e8578182fd5b823567ffffffffffffffff808211156132ff578384fd5b61330b8683870161302b565b93506020850135915080821115613320578283fd5b5061332d8582860161302b565b9150509250929050565b600060208284031215613348578081fd5b5035919050565b60008060408385031215613361578182fd5b82359150602083013567ffffffffffffffff81111561337e578182fd5b61332d8582860161302b565b600081518084526133a28160208601602086016136b4565b601f01601f19169290920160200192915050565b600082516133c88184602087016136b4565b9190910192915050565b600080835482600182811c9150808316806133ee57607f831692505b602080841082141561340e57634e487b7160e01b87526022600452602487fd5b81801561342257600181146134335761345f565b60ff1986168952848901965061345f565b60008a815260209020885b868110156134575781548b82015290850190830161343e565b505084890196505b509498975050505050505050565b6000835161347f8184602088016136b4565b8351908301906134938183602088016136b4565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134cf9083018461338a565b9695505050505050565b60208152600061223e602083018461338a565b6040815260006134ff604083018561338a565b8281036020840152612960818561338a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f43616e6e6f74206d696e7420302c206f72206d6f7265207468616e20323020506040820152636c6f747360e01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561364057613640613761565b500190565b600060ff821660ff84168060ff0382111561366257613662613761565b019392505050565b60008261367957613679613777565b500490565b600081600019048311821515161561369857613698613761565b500290565b6000828210156136af576136af613761565b500390565b60005b838110156136cf5781810151838201526020016136b7565b83811115610fc25750506000910152565b6000816136ef576136ef613761565b506000190190565b600181811c9082168061370b57607f821691505b6020821081141561372c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561374657613746613761565b5060010190565b60008261375c5761375c613777565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d8a57600080fd5b8015158114610d8a57600080fd5b6001600160e01b031981168114610d8a57600080fdfea26469706673582212209a7966422698bfbc84b2516f65c372481a74478816005b9e02e80547b932202264736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d51554732643738727244325574746f79384b74655747616f476a324b74487753364a38784d7268374a6a786e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5658674b44576a79536a46626f5542776572414e37463434455469776f63664b71446b7876584637677a427000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c8063715018a611610139578063bf2db4c8116100b6578063c87b56dd1161007a578063c87b56dd14610692578063cbf775b2146106b2578063d547cfb7146106c7578063e8a3d485146106dc578063e985e9c5146106f1578063f2fde38b1461073a57600080fd5b8063bf2db4c814610612578063c0e7274014610632578063c1bb4a3014610647578063c3287fde1461065d578063c39cbef11461067257600080fd5b8063a0712d68116100fd578063a0712d6814610595578063a19af1ad146105a8578063a22cb465146105bd578063b3e6d268146105dd578063b88d4fde146105f257600080fd5b8063715018a61461050d5780638da5cb5b146105225780639416b4231461054057806395d89b41146105605780639ffdb65a1461057557600080fd5b80633ccfd60b116101d257806354b6f1611161019657806354b6f1611461045b578063564566a8146104725780635dfb3d201461048d5780636352211e146104ad5780636d522418146104cd57806370a08231146104ed57600080fd5b80633ccfd60b146103c657806342842e0e146103db57806342966c68146103fb5780634f6ccce71461041b57806353ecdb541461043b57600080fd5b806315b56d101161021957806315b56d101461032757806318160ddd146103475780631949c1771461036657806323b872dd146103865780632f745c59146103a657600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e55780631096952314610307575b600080fd5b34801561026257600080fd5b50610276610271366004613257565b61075a565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a061076b565b60405161028291906134d9565b3480156102b957600080fd5b506102cd6102c8366004613337565b6107fd565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004613188565b610897565b005b34801561031357600080fd5b506103056103223660046132a3565b6109ad565b34801561033357600080fd5b506102766103423660046132a3565b6109ee565b34801561035357600080fd5b506008545b604051908152602001610282565b34801561037257600080fd5b506103056103813660046131b3565b610a22565b34801561039257600080fd5b506103056103a136600461309e565b610c0d565b3480156103b257600080fd5b506103586103c1366004613188565b610c3f565b3480156103d257600080fd5b50610305610cd5565b3480156103e757600080fd5b506103056103f636600461309e565b610d8d565b34801561040757600080fd5b50610305610416366004613337565b610da8565b34801561042757600080fd5b50610358610436366004613337565b610e1f565b34801561044757600080fd5b5061030561045636600461328f565b610ec0565b34801561046757600080fd5b506103586118115481565b34801561047e57600080fd5b50611812546102769060ff1681565b34801561049957600080fd5b506103056104a836600461304a565b610fc8565b3480156104b957600080fd5b506102cd6104c8366004613337565b61101b565b3480156104d957600080fd5b506102a06104e8366004613337565b611092565b3480156104f957600080fd5b5061035861050836600461304a565b611135565b34801561051957600080fd5b506103056111bc565b34801561052e57600080fd5b50600a546001600160a01b03166102cd565b34801561054c57600080fd5b506102a061055b3660046132a3565b6111f2565b34801561056c57600080fd5b506102a06113b7565b34801561058157600080fd5b506102766105903660046132a3565b6113c6565b6103056105a3366004613337565b61160d565b3480156105b457600080fd5b506103586117f2565b3480156105c957600080fd5b506103056105d836600461315b565b6118e2565b3480156105e957600080fd5b506102a06119a7565b3480156105fe57600080fd5b5061030561060d3660046130de565b611a35565b34801561061e57600080fd5b5061027661062d3660046132d6565b611a67565b34801561063e57600080fd5b506102a0611ac5565b34801561065357600080fd5b5061035861180081565b34801561066957600080fd5b50610276611ad2565b34801561067e57600080fd5b5061030561068d36600461334f565b611b1a565b34801561069e57600080fd5b506102a06106ad366004613337565b612018565b3480156106be57600080fd5b50610358601481565b3480156106d357600080fd5b506102a06120eb565b3480156106e857600080fd5b506102a06120f8565b3480156106fd57600080fd5b5061027661070c366004613066565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074657600080fd5b5061030561075536600461304a565b612107565b60006107658261219f565b92915050565b60606000805461077a906136f7565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906136f7565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661087b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108a28261101b565b9050806001600160a01b0316836001600160a01b031614156109105760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610872565b336001600160a01b038216148061092c575061092c813361070c565b61099e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610872565b6109a883836121c4565b505050565b600a546001600160a01b031633146109d75760405162461bcd60e51b815260040161087290613563565b80516109ea90600c906020840190612f1c565b5050565b60006118146109fc836111f2565b604051610a0991906133b6565b9081526040519081900360200190205460ff1692915050565b600a546001600160a01b03163314610a4c5760405162461bcd60e51b815260040161087290613563565b600f54811115610a955760405162461bcd60e51b81526020600482015260146024820152730416c7265616479205265736572766564203230360641b6044820152606401610872565b611800610aab82610aa560085490565b90612232565b1115610aed5760405162461bcd60e51b815260206004820152601160248201527045786365656473204d41585f504c4f545360781b6044820152606401610872565b60005b818110156109a8576000838383818110610b1a57634e487b7160e01b600052603260045260246000fd5b90506020020135905060006011826118008110610b4757634e487b7160e01b600052603260045260246000fd5b015490508015610b5657600080fd5b600f8054906000610b66836136e0565b919050555060006001601054610b7c919061369d565b9050806011846118008110610ba157634e487b7160e01b600052603260045260246000fd5b015560108054906000610bb3836136e0565b9190505550610bc23384612245565b60405133815283907ff5bfe2c47201d9b174eb541f714cc5ba5acbeb056cfcdd39b720853a38b624cf9060200160405180910390a25050508080610c0590613732565b915050610af0565b610c18335b8261225f565b610c345760405162461bcd60e51b8152600401610872906135dc565b6109a8838383612352565b6000610c4a83611135565b8210610cac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610872565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610cff5760405162461bcd60e51b815260040161087290613563565b604051600090339047908381818185875af1925050503d8060008114610d41576040519150601f19603f3d011682016040523d82523d6000602084013e610d46565b606091505b5050905080610d8a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610872565b50565b6109a883838360405180602001604052806000815250611a35565b610db133610c12565b610e165760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610872565b610d8a816124fd565b6000610e2a60085490565b8210610e8d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610872565b60088281548110610eae57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610eea5760405162461bcd60e51b815260040161087290613563565b6001600160a01b038216610f405760405162461bcd60e51b815260206004820152601d60248201527f63616e206e6f742073656e6420746f207a65726f20616464726573732e0000006044820152606401610872565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b158015610f8a57600080fd5b505af1158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc29190613223565b50505050565b600a546001600160a01b03163314610ff25760405162461bcd60e51b815260040161087290613563565b61181280546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000818152600260205260408120546001600160a01b0316806107655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610872565b6000818152611813602052604090208054606091906110b0906136f7565b80601f01602080910402602001604051908101604052809291908181526020018280546110dc906136f7565b80156111295780601f106110fe57610100808354040283529160200191611129565b820191906000526020600020905b81548152906001019060200180831161110c57829003601f168201915b50505050509050919050565b60006001600160a01b0382166111a05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610872565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111e65760405162461bcd60e51b815260040161087290613563565b6111f060006125a4565b565b606060008290506000815167ffffffffffffffff81111561122357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561124d576020820181803683370190505b50905060005b82518110156113af57604183828151811061127e57634e487b7160e01b600052603260045260246000fd5b016020015160f81c108015906112bc5750605a8382815181106112b157634e487b7160e01b600052603260045260246000fd5b016020015160f81c11155b1561133a578281815181106112e157634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b60f81c60206112fb9190613645565b60f81b82828151811061131e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061139d565b82818151811061135a57634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b82828151811061138557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053505b806113a781613732565b915050611253565b509392505050565b60606001805461077a906136f7565b6000808290506001815110156113df5750600092915050565b6019815111156113f25750600092915050565b8060008151811061141357634e487b7160e01b600052603260045260246000fd5b6020910101516001600160f81b031916600160fd1b14156114375750600092915050565b8060018251611446919061369d565b8151811061146457634e487b7160e01b600052603260045260246000fd5b6020910101516001600160f81b031916600160fd1b14156114885750600092915050565b6000816000815181106114ab57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916905060005b82518110156116025760008382815181106114ea57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319169050600160fd1b8114801561151b5750600160fd1b6001600160f81b03198416145b1561152c5750600095945050505050565b600360fc1b6001600160f81b03198216108015906115585750603960f81b6001600160f81b0319821611155b15801561158e5750604160f81b6001600160f81b031982161080159061158c5750602d60f91b6001600160f81b0319821611155b155b80156115c35750606160f81b6001600160f81b03198216108015906115c15750603d60f91b6001600160f81b0319821611155b155b80156115dd5750600160fd1b6001600160f81b0319821614155b156115ee5750600095945050505050565b9150806115fa81613732565b9150506114bf565b506001949350505050565b6002600b5414156116605760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610872565b6002600b556118125460ff166116b05760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba103cb2ba1039ba30b93a32b21760591b6044820152606401610872565b6118006116bc60085490565b106117035760405162461bcd60e51b815260206004820152601760248201527629b0b632903430b99030b63932b0b23c9032b73232b21760491b6044820152606401610872565b600081118015611714575060148111155b6117305760405162461bcd60e51b815260040161087290613598565b61180061174082610aa560085490565b11156117805760405162461bcd60e51b815260206004820152600f60248201526e2a37b79036b0b73c90383637ba399760891b6044820152606401610872565b346117938261178d6117f2565b906125f6565b11156117e15760405162461bcd60e51b815260206004820152601b60248201527f45746865722076616c75652073656e7420746f6f20736d616c6c2e00000000006044820152606401610872565b6117ea81612602565b506001600b55565b6118125460009060ff166118405760405162461bcd60e51b815260206004820152601560248201527429b0b632903430b9903737ba1039ba30b93a32b21760591b6044820152606401610872565b61180061184c60085490565b106118935760405162461bcd60e51b815260206004820152601760248201527629b0b632903430b99030b63932b0b23c9032b73232b21760491b6044820152606401610872565b600061189e60085490565b9050600061101d82106118bb575067013fbe85edc9000092915050565b61087382106118d3575066d529ae9e86000092915050565b50666a94d74f43000092915050565b6001600160a01b03821633141561193b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610872565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c80546119b4906136f7565b80601f01602080910402602001604051908101604052809291908181526020018280546119e0906136f7565b8015611a2d5780601f10611a0257610100808354040283529160200191611a2d565b820191906000526020600020905b815481529060010190602001808311611a1057829003601f168201915b505050505081565b611a3f338361225f565b611a5b5760405162461bcd60e51b8152600401610872906135dc565b610fc2848484846126b1565b600a546000906001600160a01b03163314611a945760405162461bcd60e51b815260040161087290613563565b8251611aa790600d906020860190612f1c565b508151611abb90600e906020850190612f1c565b5060019392505050565b600e80546119b4906136f7565b600a546000906001600160a01b03163314611aff5760405162461bcd60e51b815260040161087290613563565b50611812805460ff19811660ff918216159081179092551690565b6000611b258361101b565b9050336001600160a01b03821614611b7f5760405162461bcd60e51b815260206004820152601f60248201527f4552433732313a2063616c6c6572206973206e6f7420746865206f776e6572006044820152606401610872565b611b88826113c6565b1515600114611bd05760405162461bcd60e51b81526020600482015260146024820152734e6f7420612076616c6964206e6577206e616d6560601b6044820152606401610872565b60008381526118136020526040908190209051600291611bef916133d2565b602060405180830381855afa158015611c0c573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611c2f919061323f565b600283604051611c3f91906133b6565b602060405180830381855afa158015611c5c573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611c7f919061323f565b1415611cd95760405162461bcd60e51b815260206004820152602360248201527f4e6577206e616d652069732073616d65206173207468652063757272656e74206044820152626f6e6560e81b6064820152608401610872565b611ce2826109ee565b15611d275760405162461bcd60e51b815260206004820152601560248201527413985b5948185b1c9958591e481c995cd95c9d9959605a1b6044820152606401610872565b6000838152611813602052604081208054611d41906136f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6d906136f7565b8015611dba5780601f10611d8f57610100808354040283529160200191611dba565b820191906000526020600020905b815481529060010190602001808311611d9d57829003601f168201915b505061181254611811546040516323b872dd60e01b8152336004820152306024820152604481019190915294955061010090046001600160a01b0316936323b872dd93506064019150611e0a9050565b602060405180830381600087803b158015611e2457600080fd5b505af1158015611e38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5c9190613223565b506000848152611813602052604081208054611e77906136f7565b90501115611f23576000848152611813602052604090208054611f239190611e9e906136f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611eca906136f7565b8015611f175780601f10611eec57610100808354040283529160200191611f17565b820191906000526020600020905b815481529060010190602001808311611efa57829003601f168201915b505050505060006126e4565b611f2e8360016126e4565b6000848152611813602090815260409091208451611f4e92860190612f1c565b506118125461181154604051630852cd8d60e31b815260048101919091526101009091046001600160a01b0316906342966c6890602401602060405180830381600087803b158015611f9f57600080fd5b505af1158015611fb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd79190613223565b50837fd03378e710a4f526d1030d6dd70e5c0999dcaf843ca8a83aadcb0946a251de8e828560405161200a9291906134ec565b60405180910390a250505050565b6000818152600260205260409020546060906001600160a01b03166120985760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3716b2bc34b9ba30b73a103a37b5b2b760811b6064820152608401610872565b60006120a383612722565b905060006120af61283c565b905080516000146120e15780826040516020016120cd92919061346d565b6040516020818303038152906040526120e3565b815b949350505050565b600d80546119b4906136f7565b6060600e805461077a906136f7565b600a546001600160a01b031633146121315760405162461bcd60e51b815260040161087290613563565b6001600160a01b0381166121965760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610872565b610d8a816125a4565b60006001600160e01b0319821663780e9d6360e01b148061076557506107658261284b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906121f98261101b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061223e828461362d565b9392505050565b6109ea82826040518060200160405280600081525061289b565b6000818152600260205260408120546001600160a01b03166122d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610872565b60006122e38361101b565b9050806001600160a01b0316846001600160a01b0316148061231e5750836001600160a01b0316612313846107fd565b6001600160a01b0316145b806120e357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166120e3565b826001600160a01b03166123658261101b565b6001600160a01b0316146123cd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610872565b6001600160a01b03821661242f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610872565b61243a8383836128ce565b6124456000826121c4565b6001600160a01b038316600090815260036020526040812080546001929061246e90849061369d565b90915550506001600160a01b038216600090815260036020526040812080546001929061249c90849061362d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006125088261101b565b9050612516816000846128ce565b6125216000836121c4565b6001600160a01b038116600090815260036020526040812080546001929061254a90849061369d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061223e828461367e565b600081118015612613575060148111155b61262f5760405162461bcd60e51b815260040161087290613598565b60105460005b828110156126aa57600061264984836128d9565b905082612655816136e0565b9350506126623382612245565b60405133815281907ff5bfe2c47201d9b174eb541f714cc5ba5acbeb056cfcdd39b720853a38b624cf9060200160405180910390a250806126a281613732565b915050612635565b5060105550565b6126bc848484612352565b6126c884848484612969565b610fc25760405162461bcd60e51b815260040161087290613511565b806118146126f1846111f2565b6040516126fe91906133b6565b908152604051908190036020019020805491151560ff199092169190911790555050565b6060816127465750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612770578061275a81613732565b91506127699050600a8361366a565b915061274a565b60008167ffffffffffffffff81111561279957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127c3576020820181803683370190505b5090505b84156120e3576127d860018361369d565b91506127e5600a8661374d565b6127f090603061362d565b60f81b81838151811061281357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612835600a8661366a565b94506127c7565b6060600d805461077a906136f7565b60006001600160e01b031982166380ac58cd60e01b148061287c57506001600160e01b03198216635b5e139f60e01b145b8061076557506301ffc9a760e01b6001600160e01b0319831614610765565b6128a58383612a6b565b6128b26000848484612969565b6109a85760405162461bcd60e51b815260040161087290613511565b6109a8838383612bb9565b600080333a43426128eb60018361369d565b604080516001600160a01b039096166020870152850193909352606084019190915260808301524060a082015260c0810185905260e08101849052610100016040516020818303038152906040528051906020012060001c9050600060105482612955919061374d565b905061296081612c71565b95945050505050565b60006001600160a01b0384163b1561160257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129ad90339089908890889060040161349c565b602060405180830381600087803b1580156129c757600080fd5b505af19250505080156129f7575060408051601f3d908101601f191682019092526129f491810190613273565b60015b612a51573d808015612a25576040519150601f19603f3d011682016040523d82523d6000602084013e612a2a565b606091505b508051612a495760405162461bcd60e51b815260040161087290613511565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120e3565b6001600160a01b038216612ac15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610872565b6000818152600260205260409020546001600160a01b031615612b265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610872565b612b32600083836128ce565b6001600160a01b0382166000908152600360205260408120805460019290612b5b90849061362d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316612c1457612c0f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612c37565b816001600160a01b0316836001600160a01b031614612c3757612c378382612d62565b6001600160a01b038216612c4e576109a881612dff565b826001600160a01b0316826001600160a01b0316146109a8576109a88282612ed8565b6000806011836118008110612c9657634e487b7160e01b600052603260045260246000fd5b01549050600081612ca8575082612cab565b50805b60006001601054612cbc919061369d565b9050808514612d445760006011826118008110612ce957634e487b7160e01b600052603260045260246000fd5b0154905080612d1c57816011876118008110612d1557634e487b7160e01b600052603260045260246000fd5b0155612d42565b806011876118008110612d3f57634e487b7160e01b600052603260045260246000fd5b01555b505b60108054906000612d54836136e0565b909155509195945050505050565b60006001612d6f84611135565b612d79919061369d565b600083815260076020526040902054909150808214612dcc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612e119060019061369d565b60008381526009602052604081205460088054939450909284908110612e4757634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612e7657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612ebc57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ee383611135565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612f28906136f7565b90600052602060002090601f016020900481019282612f4a5760008555612f90565b82601f10612f6357805160ff1916838001178555612f90565b82800160010185558215612f90579182015b82811115612f90578251825591602001919060010190612f75565b50612f9c929150612fa0565b5090565b5b80821115612f9c5760008155600101612fa1565b600067ffffffffffffffff80841115612fd057612fd061378d565b604051601f8501601f19908116603f01168101908282118183101715612ff857612ff861378d565b8160405280935085815286868601111561301157600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261303b578081fd5b61223e83833560208501612fb5565b60006020828403121561305b578081fd5b813561223e816137a3565b60008060408385031215613078578081fd5b8235613083816137a3565b91506020830135613093816137a3565b809150509250929050565b6000806000606084860312156130b2578081fd5b83356130bd816137a3565b925060208401356130cd816137a3565b929592945050506040919091013590565b600080600080608085870312156130f3578081fd5b84356130fe816137a3565b9350602085013561310e816137a3565b925060408501359150606085013567ffffffffffffffff811115613130578182fd5b8501601f81018713613140578182fd5b61314f87823560208401612fb5565b91505092959194509250565b6000806040838503121561316d578182fd5b8235613178816137a3565b91506020830135613093816137b8565b6000806040838503121561319a578182fd5b82356131a5816137a3565b946020939093013593505050565b600080602083850312156131c5578182fd5b823567ffffffffffffffff808211156131dc578384fd5b818501915085601f8301126131ef578384fd5b8135818111156131fd578485fd5b8660208260051b8501011115613211578485fd5b60209290920196919550909350505050565b600060208284031215613234578081fd5b815161223e816137b8565b600060208284031215613250578081fd5b5051919050565b600060208284031215613268578081fd5b813561223e816137c6565b600060208284031215613284578081fd5b815161223e816137c6565b6000806000606084860312156130b2578283fd5b6000602082840312156132b4578081fd5b813567ffffffffffffffff8111156132ca578182fd5b6120e38482850161302b565b600080604083850312156132e8578182fd5b823567ffffffffffffffff808211156132ff578384fd5b61330b8683870161302b565b93506020850135915080821115613320578283fd5b5061332d8582860161302b565b9150509250929050565b600060208284031215613348578081fd5b5035919050565b60008060408385031215613361578182fd5b82359150602083013567ffffffffffffffff81111561337e578182fd5b61332d8582860161302b565b600081518084526133a28160208601602086016136b4565b601f01601f19169290920160200192915050565b600082516133c88184602087016136b4565b9190910192915050565b600080835482600182811c9150808316806133ee57607f831692505b602080841082141561340e57634e487b7160e01b87526022600452602487fd5b81801561342257600181146134335761345f565b60ff1986168952848901965061345f565b60008a815260209020885b868110156134575781548b82015290850190830161343e565b505084890196505b509498975050505050505050565b6000835161347f8184602088016136b4565b8351908301906134938183602088016136b4565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134cf9083018461338a565b9695505050505050565b60208152600061223e602083018461338a565b6040815260006134ff604083018561338a565b8281036020840152612960818561338a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f43616e6e6f74206d696e7420302c206f72206d6f7265207468616e20323020506040820152636c6f747360e01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561364057613640613761565b500190565b600060ff821660ff84168060ff0382111561366257613662613761565b019392505050565b60008261367957613679613777565b500490565b600081600019048311821515161561369857613698613761565b500290565b6000828210156136af576136af613761565b500390565b60005b838110156136cf5781810151838201526020016136b7565b83811115610fc25750506000910152565b6000816136ef576136ef613761565b506000190190565b600181811c9082168061370b57607f821691505b6020821081141561372c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561374657613746613761565b5060010190565b60008261375c5761375c613777565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d8a57600080fd5b8015158114610d8a57600080fd5b6001600160e01b031981168114610d8a57600080fdfea26469706673582212209a7966422698bfbc84b2516f65c372481a74478816005b9e02e80547b932202264736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d51554732643738727244325574746f79384b74655747616f476a324b74487753364a38784d7268374a6a786e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5658674b44576a79536a46626f5542776572414e37463434455469776f63664b71446b7876584637677a427000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmQUG2d78rrD2Uttoy8KteWGaoGj2KtHwS6J8xMrh7Jjxn/
Arg [1] : contractURI (string): https://gateway.pinata.cloud/ipfs/QmVXgKDWjySjFboUBwerAN7F44ETiwocfKqDkxvXF7gzBp
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d51554732643738727244325574746f79384b74655747616f476a324b
Arg [5] : 74487753364a38784d7268374a6a786e2f000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [7] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [8] : 732f516d5658674b44576a79536a46626f5542776572414e3746343445546977
Arg [9] : 6f63664b71446b7876584637677a427000000000000000000000000000000000
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.