Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
777 JARI
Holders
347
Market
Volume (24H)
0.3754 ETH
Min Price (24H)
$541.16 @ 0.185400 ETH
Max Price (24H)
$554.59 @ 0.190000 ETH
Other Info
Token Contract
Balance
10 JARILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DropspaceSale
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: Unlicense pragma solidity ^0.8.4; import "./IDropspaceSale.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/ERC721A.sol"; contract DropspaceSale is IDropspaceSale, ERC721A, Ownable { using SafeMath for uint256; using Strings for uint256; uint256 MAX = 2**256 - 1; uint256 public override mintLimit; uint256 public override mintPrice; uint256 public override supplyLimit; string public override baseURI; bool public override smartContractAllowance = false; bool public override saleActive; bool public override presaleActive; bool public override whitelistSaleActive; address payable public override withdrawalWallet; address payable public override devWallet; address public override ticketAddress; bool public override whitelistBuyOnce; uint256 devSaleShare; uint256 ownerSaleShare; mapping(uint256 => bool) public override usedTickets; bytes32 public override whitelistRoot; mapping(address => bool) public override whitelistClaimed; constructor( uint256 _supplyLimit, uint256 _mintLimit, uint256 _mintPrice, uint256 _devSaleShare, address payable _withdrawalWallet, address payable _devWallet, address _ticketAddress, string memory _name, string memory _ticker, string memory _baseURI ) ERC721A(_name, _ticker) { supplyLimit = _supplyLimit; mintLimit = _mintLimit; mintPrice = _mintPrice; withdrawalWallet = _withdrawalWallet; devWallet = _devWallet; ticketAddress = _ticketAddress; baseURI = _baseURI; devSaleShare = _devSaleShare; ownerSaleShare = uint256(10000).sub(devSaleShare); } modifier onlyWithdrawalWallet() { require(address(withdrawalWallet) == _msgSender(), "DropspaceSale: caller is not the withdrawal wallet"); _; } function setWhitelistBuyOnce(bool _whitelistBuyOnce) external onlyOwner override { whitelistBuyOnce = _whitelistBuyOnce; emit WhitelistBuyOnceChanged(whitelistBuyOnce); } function emergencyWithdraw() external onlyOwner override { payable(owner()).transfer(address(this).balance); } function changeSupplyLimit(uint256 _supplyLimit) external onlyOwner override { require(supplyLimit >= totalSupply(), "DropspaceSale::changeSupplyLimit: Supply Limit can't be reduced below total supply"); require(_supplyLimit <= supplyLimit, "DropspaceSale::changeSupplyLimit: Supply Limit can only be decreased"); supplyLimit = _supplyLimit; emit SupplyLimitChanged(_supplyLimit); } function setMintPrice(uint256 _mintPrice) external onlyOwner override { mintPrice = _mintPrice; emit MintPriceChanged(_mintPrice); } function setWhitelistClaimStatus(address _user, bool _status) public onlyOwner override { _setWhitelistClaimStatus(_user, _status); } function _setWhitelistClaimStatus(address _user, bool _status) internal { whitelistClaimed[_user] = _status; emit WhitelistClaimStatusChanged(_user, _status); } function setWhitelistRoot(bytes32 _whitelistRoot) external onlyOwner override { whitelistRoot = _whitelistRoot; emit WhitelistRootChanged(whitelistRoot); } function setDevSaleShare(uint256 _devSaleShare) external override onlyOwner { devSaleShare = _devSaleShare; ownerSaleShare = uint256(10000).sub(devSaleShare); emit DevShareSaleChanged(devSaleShare); } function toggleSaleActive() external onlyOwner override { saleActive = !saleActive; emit ToggleSaleState(saleActive); } function toggleWhitelistSaleActive() external onlyOwner override { whitelistSaleActive = !whitelistSaleActive; emit ToggleWhitelistSaleState(whitelistSaleActive); } function setBaseURI(string memory _baseURI) external onlyOwner override { baseURI = _baseURI; emit BaseURIChanged(baseURI); } function setSmartContractAllowance(bool _smartContractAllowance) external onlyOwner override { smartContractAllowance = _smartContractAllowance; emit SmartContractAllowanceChanged(smartContractAllowance); } function setWithdrawalWallet(address payable _withdrawalWallet) external onlyOwner override { withdrawalWallet = _withdrawalWallet; emit WithdrawalWalletChanged(withdrawalWallet); } function setDevWallet(address payable _devWallet) external onlyOwner override { devWallet = _devWallet; emit DevWalletChanged(devWallet); } function setMintLimit(uint256 _mintLimit) external onlyOwner override { mintLimit = _mintLimit; emit MintLimitChanged(mintLimit); } function withdraw() external onlyOwner override { uint256 contractBalance = address(this).balance; devWallet.transfer(contractBalance.mul(devSaleShare).div(10000)); withdrawalWallet.transfer(contractBalance.mul(ownerSaleShare).div(10000)); } function reserve(uint256 _amount) external onlyOwner override { _mint(_amount); emit Reserve(_amount); } function buy(uint256 _amount) external override payable { require(saleActive, "Dropspace::buy: Sale is not active."); require(_amount <= mintLimit, "Dropspace::buy: Too many tokens for one transaction."); require(msg.value >= mintPrice.mul(_amount), "Dropspace::buy: Insufficient payment."); if (!smartContractAllowance) { require(tx.origin == _msgSender(), "Dropspace::buy: Smart contracts are not allowed to buy."); } _mint(_amount); emit Buy(_msgSender(), _amount); } function _mint(uint256 _amount) internal { require(totalSupply().add(_amount) <= supplyLimit, "Not enough tokens left."); _safeMint(_msgSender(), _amount); } function tokenURI(uint256 _tokenId) public view override returns(string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _tokenId.toString())) : ""; } function togglePresaleActive() external onlyOwner override { presaleActive = !presaleActive; emit TogglePresaleState(presaleActive); } function setTicketAddress(address _ticketAddress) external onlyOwner override { require(_ticketAddress != address(0), "DropSpaceSale::setTicketAddress: Invalid address."); ticketAddress = _ticketAddress; emit TicketAddressChanged(_ticketAddress); } function presaleBuy(uint256 _ticketId, uint _amount) external payable override { require(presaleActive, "Dropspace::presaleBuy: Presale is not Active."); require(IERC721(ticketAddress).ownerOf(_ticketId) == _msgSender(), "Dropspace::presaleBuy: invalid ticket."); require(!usedTickets[_ticketId], "Dropspace::presaleBuy: Ticket already used."); require(_amount <= mintLimit, "Dropspace::presaleBuy: Too many tokens for one transaction."); require(msg.value >= mintPrice.mul(_amount), "Dropspace::presaleBuy: Insufficient payment."); usedTickets[_ticketId] = true; _mint(_amount); emit PresaleBuy(_msgSender(), _ticketId, _amount); } function _verifyWhitelist(address _user, bytes32[] calldata _merkleProof) internal view returns(bool) { bytes32 leaf = keccak256(abi.encodePacked(_user)); return MerkleProof.verify(_merkleProof, whitelistRoot, leaf); } function whitelistBuy(uint256 _amount, bytes32[] calldata _merkleProof) external payable override { require(whitelistSaleActive, "DropSpaceSale::whitelistBuy: Whitelist Buy is not Active."); require(_amount <= mintLimit, "Dropspace::presaleBuy: Too many tokens for one transaction."); require(msg.value >= mintPrice.mul(_amount), "Dropspace::presaleBuy: Insufficient payment."); require(_verifyWhitelist(_msgSender(), _merkleProof), "Dropspace::whitelistBuy: User is not whitelisted"); if (whitelistBuyOnce) { require(!whitelistClaimed[_msgSender()], "Dropspace::whitelistBuy: Already claimed"); _setWhitelistClaimStatus(_msgSender(), true); } _mint(_amount); emit WhitelistBuy(_msgSender(), _amount); } function clearTicket(uint256 _ticketId) external override onlyOwner{ require(usedTickets[_ticketId], "Dropspace::clearTicket: Ticket is not used"); usedTickets[_ticketId] = false; emit TicketCleared(_ticketId); } receive() external override payable {} }
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.4; interface IDropspaceSale { // OWNER ONLY function togglePresaleActive() external; function toggleWhitelistSaleActive() external; function toggleSaleActive() external; function setBaseURI(string memory _baseURI) external; function setWithdrawalWallet(address payable _withdrawalWallet) external; function setDevWallet(address payable _devWallet) external; function setDevSaleShare(uint256 _devSaleShare) external; function setMintLimit(uint256 _mintLimit) external; function setSmartContractAllowance(bool _smartContractAllowance) external; function setTicketAddress(address _ticketAddress) external; function setWhitelistClaimStatus(address _user, bool _status) external; function changeSupplyLimit(uint256 _supplyLimit) external; function emergencyWithdraw() external; function setMintPrice(uint256 _mintPrice) external; function setWhitelistBuyOnce(bool _whitelistBuyOnce) external; function setWhitelistRoot(bytes32 _whitelistRoot) external; function reserve(uint256 _amount) external; function withdraw() external; function clearTicket(uint256 _ticketId) external; // EXTERNAL function buy(uint256 _amount) external payable; function presaleBuy(uint256 _ticketId, uint256 _amount) external payable; function whitelistBuy(uint256 _amount, bytes32[] calldata _merkleProof) external payable; // VIEW function supplyLimit() view external returns(uint256); function mintPrice() view external returns(uint256); function mintLimit() view external returns(uint256); function baseURI() view external returns(string memory); function saleActive() view external returns(bool); function presaleActive() view external returns(bool); function whitelistSaleActive() view external returns(bool); function smartContractAllowance() view external returns(bool); function devWallet() view external returns(address payable); function withdrawalWallet() view external returns(address payable); function ticketAddress() view external returns(address); function whitelistRoot() view external returns (bytes32); function usedTickets(uint256 _ticketId) view external returns(bool); function whitelistClaimed(address _user) view external returns(bool); function whitelistBuyOnce() view external returns(bool); // EVENTS event Reserve(uint256 _amount); event Mint(address indexed _user, uint256 indexed _tokenId, string _tokenURI); event ToggleSaleState(bool _state); event BaseURIChanged(string _baseURI); event WithdrawalWalletChanged(address payable _newWithdrawalWallet); event DevWalletChanged(address payable _newDevWallet); event DevShareSaleChanged(uint256 _devSaleShare); event MintLimitChanged(uint256 _newMintLimit); event MintPriceChanged(uint256 _mintPrice); event SmartContractAllowanceChanged(bool _newSmartContractAllowance); event TogglePresaleState(bool _preSaleState); event TicketAddressChanged(address _ticketAddress); event PresaleBuy(address _user, uint256 _ticketId, uint256 _amount); event WhitelistBuy(address _user, uint256 _amount); event Buy(address _user, uint256 _amount); event WhitelistClaimStatusChanged(address _user, bool _status); event ToggleWhitelistSaleState(bool _whitelistSaleActive); event SupplyLimitChanged(uint256 _supplyLimit); event TicketCleared(uint256 _ticketId); event WhitelistRootChanged(bytes32 _whitelistRoot); event WhitelistBuyOnceChanged(bool _whitelistBuyOnce); receive() external payable; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) 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 generally not needed starting with Solidity 0.8, since 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 // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; } // Compiler will pack the following // _currentIndex and _burnCounter into a single 256bit word. // The tokenId of the next token to be minted. uint128 internal _currentIndex; // The number of tokens burned. uint128 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _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 { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = uint128(updatedIndex); } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"},{"internalType":"uint256","name":"_mintLimit","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_devSaleShare","type":"uint256"},{"internalType":"address payable","name":"_withdrawalWallet","type":"address"},{"internalType":"address payable","name":"_devWallet","type":"address"},{"internalType":"address","name":"_ticketAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_ticker","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Buy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_devSaleShare","type":"uint256"}],"name":"DevShareSaleChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable","name":"_newDevWallet","type":"address"}],"name":"DevWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_tokenURI","type":"string"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_newMintLimit","type":"uint256"}],"name":"MintLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"MintPriceChanged","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":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_ticketId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"PresaleBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Reserve","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_newSmartContractAllowance","type":"bool"}],"name":"SmartContractAllowanceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"SupplyLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_ticketAddress","type":"address"}],"name":"TicketAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_ticketId","type":"uint256"}],"name":"TicketCleared","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_preSaleState","type":"bool"}],"name":"TogglePresaleState","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"ToggleSaleState","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_whitelistSaleActive","type":"bool"}],"name":"ToggleWhitelistSaleState","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"WhitelistBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_whitelistBuyOnce","type":"bool"}],"name":"WhitelistBuyOnceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"WhitelistClaimStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"name":"WhitelistRootChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable","name":"_newWithdrawalWallet","type":"address"}],"name":"WithdrawalWalletChanged","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"changeSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ticketId","type":"uint256"}],"name":"clearTicket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ticketId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presaleBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devSaleShare","type":"uint256"}],"name":"setDevSaleShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_devWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_smartContractAllowance","type":"bool"}],"name":"setSmartContractAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ticketAddress","type":"address"}],"name":"setTicketAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whitelistBuyOnce","type":"bool"}],"name":"setWhitelistBuyOnce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistClaimStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_withdrawalWallet","type":"address"}],"name":"setWithdrawalWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"smartContractAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ticketAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSaleActive","outputs":[],"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":"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":"uint256","name":"","type":"uint256"}],"name":"usedTickets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistBuyOnce","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600019600855600d805460ff191690553480156200002157600080fd5b50604051620039623803806200396283398101604081905262000044916200031d565b8251839083906200005d906001906020850190620001a7565b50805162000073906002906020840190620001a7565b505050620000906200008a6200013c60201b60201c565b62000140565b600b8a90556009899055600a889055600d80546001600160a01b0380891664010000000002600160201b600160c01b031990921691909117909155600e80548783166001600160a01b031991821617909155600f80549287169290911691909117905580516200010890600c906020840190620001a7565b506010879055620001286127108862000192602090811b620022cc17901c565b601155506200048398505050505050505050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000620001a082846200040c565b9392505050565b828054620001b59062000430565b90600052602060002090601f016020900481019282620001d9576000855562000224565b82601f10620001f457805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022457825182559160200191906001019062000207565b506200023292915062000236565b5090565b5b8082111562000232576000815560010162000237565b80516001600160a01b03811681146200026557600080fd5b919050565b600082601f8301126200027b578081fd5b81516001600160401b03808211156200029857620002986200046d565b604051601f8301601f19908116603f01168101908282118183101715620002c357620002c36200046d565b81604052838152602092508683858801011115620002df578485fd5b8491505b83821015620003025785820183015181830184015290820190620002e3565b838211156200031357848385830101525b9695505050505050565b6000806000806000806000806000806101408b8d0312156200033d578586fd5b8a51995060208b0151985060408b0151975060608b015196506200036460808c016200024d565b95506200037460a08c016200024d565b94506200038460c08c016200024d565b60e08c01519094506001600160401b0380821115620003a1578485fd5b620003af8e838f016200026a565b94506101008d0151915080821115620003c6578384fd5b620003d48e838f016200026a565b93506101208d0151915080821115620003eb578283fd5b50620003fa8d828e016200026a565b9150509295989b9194979a5092959850565b6000828210156200042b57634e487b7160e01b81526011600452602481fd5b500390565b600181811c908216806200044557607f821691505b602082108114156200046757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6134cf80620004936000396000f3fe60806040526004361061036f5760003560e01c806368428a1b116101c6578063ab26320e116100f7578063db2e21bc11610095578063ed9a5bbb1161006f578063ed9a5bbb146109d2578063f2fde38b146109f2578063f4a0a52814610a12578063f5aa406d14610a3257600080fd5b8063db2e21bc14610944578063db4bec4414610959578063e985e9c51461098957600080fd5b8063c87b56dd116100d1578063c87b56dd146108d0578063d44e3573146108f0578063d7e2875c14610910578063d96a094a1461093157600080fd5b8063ab26320e1461087b578063b88d4fde1461089b578063b89fe999146108bb57600080fd5b806389b0649b1161016457806395d89b411161013e57806395d89b4114610810578063996517cf146108255780639e6a1d7d1461083b578063a22cb4651461085b57600080fd5b806389b0649b146107bd5780638da5cb5b146107d25780638ea5220f146107f057600080fd5b8063715018a6116101a0578063715018a61461073857806371efdc211461074d57806375796f761461077d578063819b25ba1461079d57600080fd5b806368428a1b146106e45780636c0360eb1461070357806370a082311461071857600080fd5b80633ad7f56c116102a057806357a8e3fe1161023e5780636352211e116102185780636352211e14610681578063646d7a7f146106a157806368124a6a146106bb5780636817c76c146106ce57600080fd5b806357a8e3fe14610621578063591e194b146106415780635c4e7e061461066157600080fd5b80634a7d80b31161027a5780634a7d80b3146105995780634f6ccce7146105c157806353135ca0146105e157806355f804b31461060157600080fd5b80633ad7f56c146105435780633ccfd60b1461056457806342842e0e1461057957600080fd5b806318160ddd1161030d57806323b872dd116102e757806323b872dd146104d85780632f745c59146104f85780633100a53514610518578063386bfc981461052d57600080fd5b806318160ddd1461047f57806319d1997a146104a25780631f53ac02146104b857600080fd5b806308e992871161034957806308e992871461040a57806309499f531461042c578063095ea7b31461044c5780630983061c1461046c57600080fd5b806301ffc9a71461037b57806306fdde03146103b0578063081812fc146103d257600080fd5b3661037657005b600080fd5b34801561038757600080fd5b5061039b610396366004612fc2565b610a52565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103c5610abf565b6040516103a791906131c2565b3480156103de57600080fd5b506103f26103ed366004612faa565b610b51565b6040516001600160a01b0390911681526020016103a7565b34801561041657600080fd5b5061042a610425366004612f90565b610b95565b005b34801561043857600080fd5b5061042a610447366004612f31565b610c16565b34801561045857600080fd5b5061042a610467366004612f65565b610c4e565b61042a61047a3660046130b8565b610cdc565b34801561048b57600080fd5b50610494610f59565b6040519081526020016103a7565b3480156104ae57600080fd5b50610494600b5481565b3480156104c457600080fd5b5061042a6104d3366004612e05565b610f78565b3480156104e457600080fd5b5061042a6104f3366004612e75565b610ff0565b34801561050457600080fd5b50610494610513366004612f65565b610ffb565b34801561052457600080fd5b5061042a6110f7565b34801561053957600080fd5b5061049460135481565b34801561054f57600080fd5b50600d5461039b906301000000900460ff1681565b34801561057057600080fd5b5061042a611183565b34801561058557600080fd5b5061042a610594366004612e75565b61126a565b3480156105a557600080fd5b50600d546103f29064010000000090046001600160a01b031681565b3480156105cd57600080fd5b506104946105dc366004612faa565b611285565b3480156105ed57600080fd5b50600d5461039b9062010000900460ff1681565b34801561060d57600080fd5b5061042a61061c366004612ffa565b61132f565b34801561062d57600080fd5b50600f546103f2906001600160a01b031681565b34801561064d57600080fd5b5061042a61065c366004612f90565b61139d565b34801561066d57600080fd5b5061042a61067c366004612faa565b61141c565b34801561068d57600080fd5b506103f261069c366004612faa565b61148d565b3480156106ad57600080fd5b50600d5461039b9060ff1681565b61042a6106c936600461303f565b61149f565b3480156106da57600080fd5b50610494600a5481565b3480156106f057600080fd5b50600d5461039b90610100900460ff1681565b34801561070f57600080fd5b506103c56116bb565b34801561072457600080fd5b50610494610733366004612e05565b611749565b34801561074457600080fd5b5061042a611797565b34801561075957600080fd5b5061039b610768366004612faa565b60126020526000908152604090205460ff1681565b34801561078957600080fd5b5061042a610798366004612e05565b6117cd565b3480156107a957600080fd5b5061042a6107b8366004612faa565b611856565b3480156107c957600080fd5b5061042a6118b9565b3480156107de57600080fd5b506007546001600160a01b03166103f2565b3480156107fc57600080fd5b50600e546103f2906001600160a01b031681565b34801561081c57600080fd5b506103c561193d565b34801561083157600080fd5b5061049460095481565b34801561084757600080fd5b5061042a610856366004612faa565b61194c565b34801561086757600080fd5b5061042a610876366004612f31565b6119ab565b34801561088757600080fd5b5061042a610896366004612faa565b611a41565b3480156108a757600080fd5b5061042a6108b6366004612eb5565b611b24565b3480156108c757600080fd5b5061042a611b5e565b3480156108dc57600080fd5b506103c56108eb366004612faa565b611be4565b3480156108fc57600080fd5b5061042a61090b366004612faa565b611caf565b34801561091c57600080fd5b50600f5461039b90600160a01b900460ff1681565b61042a61093f366004612faa565b611e2e565b34801561095057600080fd5b5061042a612028565b34801561096557600080fd5b5061039b610974366004612e05565b60146020526000908152604090205460ff1681565b34801561099557600080fd5b5061039b6109a4366004612e3d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156109de57600080fd5b5061042a6109ed366004612e05565b61208e565b3480156109fe57600080fd5b5061042a610a0d366004612e05565b612176565b348015610a1e57600080fd5b5061042a610a2d366004612faa565b61220e565b348015610a3e57600080fd5b5061042a610a4d366004612faa565b61226d565b60006001600160e01b031982166380ac58cd60e01b1480610a8357506001600160e01b03198216635b5e139f60e01b145b80610a9e57506001600160e01b0319821663780e9d6360e01b145b80610ab957506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610ace906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610afa906133c2565b8015610b475780601f10610b1c57610100808354040283529160200191610b47565b820191906000526020600020905b815481529060010190602001808311610b2a57829003601f168201915b5050505050905090565b6000610b5c826122df565b610b79576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6007546001600160a01b03163314610bc85760405162461bcd60e51b8152600401610bbf906132a2565b60405180910390fd5b600d805460ff191682151590811790915560405160ff909116151581527f2a5bfbb68782e57b3242e612145304c845af3404e2d328a12dd2e7c078cd0117906020015b60405180910390a150565b6007546001600160a01b03163314610c405760405162461bcd60e51b8152600401610bbf906132a2565b610c4a8282612313565b5050565b6000610c598261148d565b9050806001600160a01b0316836001600160a01b03161415610c8e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610cae5750610cac81336109a4565b155b15610ccc576040516367d9dca160e11b815260040160405180910390fd5b610cd783838361236f565b505050565b600d5462010000900460ff16610d4a5760405162461bcd60e51b815260206004820152602d60248201527f44726f7073706163653a3a70726573616c654275793a2050726573616c65206960448201526c39903737ba1020b1ba34bb329760991b6064820152608401610bbf565b33600f546040516331a9108f60e11b8152600481018590526001600160a01b039283169290911690636352211e9060240160206040518083038186803b158015610d9357600080fd5b505afa158015610da7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dcb9190612e21565b6001600160a01b031614610e305760405162461bcd60e51b815260206004820152602660248201527f44726f7073706163653a3a70726573616c654275793a20696e76616c6964207460448201526534b1b5b2ba1760d11b6064820152608401610bbf565b60008281526012602052604090205460ff1615610ea35760405162461bcd60e51b815260206004820152602b60248201527f44726f7073706163653a3a70726573616c654275793a205469636b657420616c60448201526a3932b0b23c903ab9b2b21760a91b6064820152608401610bbf565b600954811115610ec55760405162461bcd60e51b8152600401610bbf906132d7565b600a54610ed290826123cb565b341015610ef15760405162461bcd60e51b8152600401610bbf90613256565b6000828152601260205260409020805460ff19166001179055610f13816123d7565b60408051338152602081018490529081018290527fb77d41b776d1d5cc75b500402614335da616afa8aa95b49325e22db7f1ca86cc906060015b60405180910390a15050565b6000546001600160801b03600160801b82048116918116919091031690565b6007546001600160a01b03163314610fa25760405162461bcd60e51b8152600401610bbf906132a2565b600e80546001600160a01b0319166001600160a01b0383169081179091556040519081527f268c00f4ec08b34fdde24b52e47a09d62f3f3837eb3b8ac7206cefb3bb5e534590602001610c0b565b610cd7838383612444565b600061100683611749565b8210611025576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156110f157600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061109d57506110e9565b80516001600160a01b0316156110b257805192505b876001600160a01b0316836001600160a01b031614156110e757868414156110e057509350610ab992505050565b6001909301925b505b600101611036565b50600080fd5b6007546001600160a01b031633146111215760405162461bcd60e51b8152600401610bbf906132a2565b600d805460ff610100808304821615810261ff001990931692909217928390556040517f5a454f976028c400c4159ac85c61452441fcf06b9888c7c780c5980e3c3123dd936111799390049091161515815260200190565b60405180910390a1565b6007546001600160a01b031633146111ad5760405162461bcd60e51b8152600401610bbf906132a2565b600e5460105447916001600160a01b0316906108fc906111dc90612710906111d69086906123cb565b90612661565b6040518115909202916000818181858888f19350505050158015611204573d6000803e3d6000fd5b50600d60049054906101000a90046001600160a01b03166001600160a01b03166108fc6112426127106111d6601154866123cb90919063ffffffff16565b6040518115909202916000818181858888f19350505050158015610c4a573d6000803e3d6000fd5b610cd783838360405180602001604052806000815250611b24565b600080546001600160801b031681805b8281101561131557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061130c57858314156113055750949350505050565b6001909201915b50600101611295565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b031633146113595760405162461bcd60e51b8152600401610bbf906132a2565b805161136c90600c906020840190612ce2565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6600c604051610c0b91906131d5565b6007546001600160a01b031633146113c75760405162461bcd60e51b8152600401610bbf906132a2565b600f805460ff60a01b1916600160a01b8315158102919091179182905560405160ff9190920416151581527fc6e0fb794d60d245727554ed563b17ec5cd901c15ee395b10535ce370b1bdccd90602001610c0b565b6007546001600160a01b031633146114465760405162461bcd60e51b8152600401610bbf906132a2565b6010819055611457612710826122cc565b6011556010546040519081527fd20ab7c161b1f8ebfab00e747660c0fa31ae9123063e580b5be0aeab18623db290602001610c0b565b60006114988261266d565b5192915050565b600d546301000000900460ff1661151e5760405162461bcd60e51b815260206004820152603960248201527f44726f70537061636553616c653a3a77686974656c6973744275793a2057686960448201527f74656c69737420427579206973206e6f74204163746976652e000000000000006064820152608401610bbf565b6009548311156115405760405162461bcd60e51b8152600401610bbf906132d7565b600a5461154d90846123cb565b34101561156c5760405162461bcd60e51b8152600401610bbf90613256565b61157733838361278f565b6115dc5760405162461bcd60e51b815260206004820152603060248201527f44726f7073706163653a3a77686974656c6973744275793a205573657220697360448201526f081b9bdd081dda1a5d195b1a5cdd195960821b6064820152608401610bbf565b600f54600160a01b900460ff161561166a573360009081526014602052604090205460ff161561165f5760405162461bcd60e51b815260206004820152602860248201527f44726f7073706163653a3a77686974656c6973744275793a20416c72656164796044820152670818db185a5b595960c21b6064820152608401610bbf565b61166a336001612313565b611673836123d7565b7f8714612a507e7fcd9f26d997e561a61611f4bad945c787b8865dc23823ef037b33604080516001600160a01b039092168252602082018690520160405180910390a1505050565b600c80546116c8906133c2565b80601f01602080910402602001604051908101604052809291908181526020018280546116f4906133c2565b80156117415780601f1061171657610100808354040283529160200191611741565b820191906000526020600020905b81548152906001019060200180831161172457829003601f168201915b505050505081565b60006001600160a01b038216611772576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b031633146117c15760405162461bcd60e51b8152600401610bbf906132a2565b6117cb6000612815565b565b6007546001600160a01b031633146117f75760405162461bcd60e51b8152600401610bbf906132a2565b600d8054640100000000600160c01b0319166401000000006001600160a01b038481168202929092179283905560405192041681527fb470355146314037ce5186813b4b7c65bff2b87f98d44ff063570d0e22d65ba390602001610c0b565b6007546001600160a01b031633146118805760405162461bcd60e51b8152600401610bbf906132a2565b611889816123d7565b6040518181527fdb7b64a879507c32bda4d0cf22dee29ed875c7157ecbbc10fe11bf14fab06d1290602001610c0b565b6007546001600160a01b031633146118e35760405162461bcd60e51b8152600401610bbf906132a2565b600d805460ff62010000808304821615810262ff00001990931692909217928390556040517f38822fae85453c65b78e1b7d02e45cae5eb0d7961e34226fb29c49dab9d3a357936111799390049091161515815260200190565b606060028054610ace906133c2565b6007546001600160a01b031633146119765760405162461bcd60e51b8152600401610bbf906132a2565b60098190556040518181527f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab90602001610c0b565b6001600160a01b0382163314156119d55760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314611a6b5760405162461bcd60e51b8152600401610bbf906132a2565b60008181526012602052604090205460ff16611adc5760405162461bcd60e51b815260206004820152602a60248201527f44726f7073706163653a3a636c6561725469636b65743a205469636b657420696044820152691cc81b9bdd081d5cd95960b21b6064820152608401610bbf565b60008181526012602052604090819020805460ff19169055517f256e63760868166c3f047c49d3e1614c1ca6c620d715c552c54ddb4ba428719c90610c0b9083815260200190565b611b2f848484612444565b611b3b84848484612867565b611b58576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b03163314611b885760405162461bcd60e51b8152600401610bbf906132a2565b600d805460ff6301000000808304821615810263ff0000001990931692909217928390556040517ffabb6e4b24bd8ac3a08555e569d13590c5006dc61e4aae65e74296d3df6759ed936111799390049091161515815260200190565b6060611bef826122df565b611c535760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bbf565b6000600c8054611c62906133c2565b905011611c7e5760405180602001604052806000815250610ab9565b600c611c8983612976565b604051602001611c9a929190613105565b60405160208183030381529060405292915050565b6007546001600160a01b03163314611cd95760405162461bcd60e51b8152600401610bbf906132a2565b611ce1610f59565b600b541015611d735760405162461bcd60e51b815260206004820152605260248201527f44726f70737061636553616c653a3a6368616e6765537570706c794c696d697460448201527f3a20537570706c79204c696d69742063616e277420626520726564756365642060648201527162656c6f7720746f74616c20737570706c7960701b608482015260a401610bbf565b600b54811115611df95760405162461bcd60e51b8152602060048201526044602482018190527f44726f70737061636553616c653a3a6368616e6765537570706c794c696d6974908201527f3a20537570706c79204c696d69742063616e206f6e6c79206265206465637265606482015263185cd95960e21b608482015260a401610bbf565b600b8190556040518181527f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d0790602001610c0b565b600d54610100900460ff16611e915760405162461bcd60e51b815260206004820152602360248201527f44726f7073706163653a3a6275793a2053616c65206973206e6f7420616374696044820152623b329760e91b6064820152608401610bbf565b600954811115611f005760405162461bcd60e51b815260206004820152603460248201527f44726f7073706163653a3a6275793a20546f6f206d616e7920746f6b656e73206044820152733337b91037b732903a3930b739b0b1ba34b7b71760611b6064820152608401610bbf565b600a54611f0d90826123cb565b341015611f6a5760405162461bcd60e51b815260206004820152602560248201527f44726f7073706163653a3a6275793a20496e73756666696369656e742070617960448201526436b2b73a1760d91b6064820152608401610bbf565b600d5460ff16611fe957323314611fe95760405162461bcd60e51b815260206004820152603760248201527f44726f7073706163653a3a6275793a20536d61727420636f6e7472616374732060448201527f617265206e6f7420616c6c6f77656420746f206275792e0000000000000000006064820152608401610bbf565b611ff2816123d7565b60408051338152602081018390527fe3d4187f6ca4248660cc0ac8b8056515bac4a8132be2eca31d6d0cc170722a7e9101610c0b565b6007546001600160a01b031633146120525760405162461bcd60e51b8152600401610bbf906132a2565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561208b573d6000803e3d6000fd5b50565b6007546001600160a01b031633146120b85760405162461bcd60e51b8152600401610bbf906132a2565b6001600160a01b0381166121285760405162461bcd60e51b815260206004820152603160248201527f44726f70537061636553616c653a3a7365745469636b6574416464726573733a6044820152701024b73b30b634b21030b2323932b9b99760791b6064820152608401610bbf565b600f80546001600160a01b0319166001600160a01b0383169081179091556040519081527f4846b8d14a603fbd3567c63384f41a947d787c004e59ce39ee755d0485ae5ed890602001610c0b565b6007546001600160a01b031633146121a05760405162461bcd60e51b8152600401610bbf906132a2565b6001600160a01b0381166122055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbf565b61208b81612815565b6007546001600160a01b031633146122385760405162461bcd60e51b8152600401610bbf906132a2565b600a8190556040518181527f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f90602001610c0b565b6007546001600160a01b031633146122975760405162461bcd60e51b8152600401610bbf906132a2565b60138190556040518181527f6be426d58d2fb0cea1f78182904380aac426a50029637dc9e9d2e40bc44ac05090602001610c0b565b60006122d8828461337f565b9392505050565b600080546001600160801b031682108015610ab9575050600090815260036020526040902054600160e01b900460ff161590565b6001600160a01b038216600081815260146020908152604091829020805460ff19168515159081179091558251938452908301527f9df634e89ddfd6892a56594ccd1a1971304a02d24cb197afdd540194c0b653a29101610f4d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006122d88284613360565b600b546123ec826123e6610f59565b90612a8f565b111561243a5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f75676820746f6b656e73206c6566742e0000000000000000006044820152606401610bbf565b61208b3382612a9b565b600061244f8261266d565b80519091506000906001600160a01b0316336001600160a01b0316148061247d5750815161247d90336109a4565b8061249857503361248d84610b51565b6001600160a01b0316145b9050806124b857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146124ed5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661251457604051633a954ecd60e21b815260040160405180910390fd5b612524600084846000015161236f565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116612617576000546001600160801b031681101561261757825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006122d8828461334c565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561277657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906127745780516001600160a01b03161561270b579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561276f579392505050565b61270b565b505b604051636f96cda160e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606085901b166020820152600090819060340160405160208183030381529060405280519060200120905061280c848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050612ab5565b95945050505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561296a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128ab903390899088908890600401613185565b602060405180830381600087803b1580156128c557600080fd5b505af19250505080156128f5575060408051601f3d908101601f191682019092526128f291810190612fde565b60015b612950573d808015612923576040519150601f19603f3d011682016040523d82523d6000602084013e612928565b606091505b508051612948576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061296e565b5060015b949350505050565b60608161299a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129c457806129ae816133fd565b91506129bd9050600a8361334c565b915061299e565b6000816001600160401b038111156129ec57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a16576020820181803683370190505b5090505b841561296e57612a2b60018361337f565b9150612a38600a86613418565b612a43906030613334565b60f81b818381518110612a6657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612a88600a8661334c565b9450612a1a565b60006122d88284613334565b610c4a828260405180602001604052806000815250612acb565b600082612ac28584612ad8565b14949350505050565b610cd78383836001612b5a565b600081815b8451811015612b52576000858281518110612b0857634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612b2e5760008381526020829052604090209250612b3f565b600081815260208490526040902092505b5080612b4a816133fd565b915050612add565b509392505050565b6000546001600160801b03166001600160a01b038516612b8c57604051622e076360e81b815260040160405180910390fd5b83612baa5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015612cbc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015612c925750612c906000888488612867565b155b15612cb0576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612c3b565b50600080546001600160801b0319166001600160801b039290921691909117905561265a565b828054612cee906133c2565b90600052602060002090601f016020900481019282612d105760008555612d56565b82601f10612d2957805160ff1916838001178555612d56565b82800160010185558215612d56579182015b82811115612d56578251825591602001919060010190612d3b565b50612d62929150612d66565b5090565b5b80821115612d625760008155600101612d67565b60006001600160401b0380841115612d9557612d95613458565b604051601f8501601f19908116603f01168101908282118183101715612dbd57612dbd613458565b81604052809350858152868686011115612dd657600080fd5b858560208301376000602087830101525050509392505050565b80358015158114612e0057600080fd5b919050565b600060208284031215612e16578081fd5b81356122d88161346e565b600060208284031215612e32578081fd5b81516122d88161346e565b60008060408385031215612e4f578081fd5b8235612e5a8161346e565b91506020830135612e6a8161346e565b809150509250929050565b600080600060608486031215612e89578081fd5b8335612e948161346e565b92506020840135612ea48161346e565b929592945050506040919091013590565b60008060008060808587031215612eca578081fd5b8435612ed58161346e565b93506020850135612ee58161346e565b92506040850135915060608501356001600160401b03811115612f06578182fd5b8501601f81018713612f16578182fd5b612f2587823560208401612d7b565b91505092959194509250565b60008060408385031215612f43578182fd5b8235612f4e8161346e565b9150612f5c60208401612df0565b90509250929050565b60008060408385031215612f77578182fd5b8235612f828161346e565b946020939093013593505050565b600060208284031215612fa1578081fd5b6122d882612df0565b600060208284031215612fbb578081fd5b5035919050565b600060208284031215612fd3578081fd5b81356122d881613483565b600060208284031215612fef578081fd5b81516122d881613483565b60006020828403121561300b578081fd5b81356001600160401b03811115613020578182fd5b8201601f81018413613030578182fd5b61296e84823560208401612d7b565b600080600060408486031215613053578081fd5b8335925060208401356001600160401b0380821115613070578283fd5b818601915086601f830112613083578283fd5b813581811115613091578384fd5b8760208260051b85010111156130a5578384fd5b6020830194508093505050509250925092565b600080604083850312156130ca578182fd5b50508035926020909101359150565b600081518084526130f1816020860160208601613396565b601f01601f19169290920160200192915050565b6000808454613113816133c2565b6001828116801561312b576001811461313c57613168565b60ff19841687528287019450613168565b8886526020808720875b8581101561315f5781548a820152908401908201613146565b50505082870194505b50505050835161317c818360208801613396565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131b8908301846130d9565b9695505050505050565b6020815260006122d860208301846130d9565b600060208083528184546131e8816133c2565b80848701526040600180841660008114613209576001811461321d57613248565b60ff19851689840152606089019550613248565b898852868820885b858110156132405781548b8201860152908301908801613225565b8a0184019650505b509398975050505050505050565b6020808252602c908201527f44726f7073706163653a3a70726573616c654275793a20496e7375666669636960408201526b32b73a103830bcb6b2b73a1760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252603b908201527f44726f7073706163653a3a70726573616c654275793a20546f6f206d616e792060408201527f746f6b656e7320666f72206f6e65207472616e73616374696f6e2e0000000000606082015260800190565b600082198211156133475761334761342c565b500190565b60008261335b5761335b613442565b500490565b600081600019048311821515161561337a5761337a61342c565b500290565b6000828210156133915761339161342c565b500390565b60005b838110156133b1578181015183820152602001613399565b83811115611b585750506000910152565b600181811c908216806133d657607f821691505b602082108114156133f757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134115761341161342c565b5060010190565b60008261342757613427613442565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461208b57600080fd5b6001600160e01b03198116811461208b57600080fdfea26469706673582212209d2e5441a503018c361f342e883daebf7fde54bb672a8ad129c69f58e9ae36ed64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000f840000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000016345785d8a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f0beabbd147e31eaf58a0e17c5b8ca3e1450d6a000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d170000000000000000000000007ba0a79ec30259e2792a43989edd97c6e40bb3360000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000084a61727269746f7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a41524900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f697066732e696f2f697066732f62616679626569666270337366716336787567356e6c72736e35686d653468777862616b6c346932787a6b6475666a376e3275646e796c376837712f000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061036f5760003560e01c806368428a1b116101c6578063ab26320e116100f7578063db2e21bc11610095578063ed9a5bbb1161006f578063ed9a5bbb146109d2578063f2fde38b146109f2578063f4a0a52814610a12578063f5aa406d14610a3257600080fd5b8063db2e21bc14610944578063db4bec4414610959578063e985e9c51461098957600080fd5b8063c87b56dd116100d1578063c87b56dd146108d0578063d44e3573146108f0578063d7e2875c14610910578063d96a094a1461093157600080fd5b8063ab26320e1461087b578063b88d4fde1461089b578063b89fe999146108bb57600080fd5b806389b0649b1161016457806395d89b411161013e57806395d89b4114610810578063996517cf146108255780639e6a1d7d1461083b578063a22cb4651461085b57600080fd5b806389b0649b146107bd5780638da5cb5b146107d25780638ea5220f146107f057600080fd5b8063715018a6116101a0578063715018a61461073857806371efdc211461074d57806375796f761461077d578063819b25ba1461079d57600080fd5b806368428a1b146106e45780636c0360eb1461070357806370a082311461071857600080fd5b80633ad7f56c116102a057806357a8e3fe1161023e5780636352211e116102185780636352211e14610681578063646d7a7f146106a157806368124a6a146106bb5780636817c76c146106ce57600080fd5b806357a8e3fe14610621578063591e194b146106415780635c4e7e061461066157600080fd5b80634a7d80b31161027a5780634a7d80b3146105995780634f6ccce7146105c157806353135ca0146105e157806355f804b31461060157600080fd5b80633ad7f56c146105435780633ccfd60b1461056457806342842e0e1461057957600080fd5b806318160ddd1161030d57806323b872dd116102e757806323b872dd146104d85780632f745c59146104f85780633100a53514610518578063386bfc981461052d57600080fd5b806318160ddd1461047f57806319d1997a146104a25780631f53ac02146104b857600080fd5b806308e992871161034957806308e992871461040a57806309499f531461042c578063095ea7b31461044c5780630983061c1461046c57600080fd5b806301ffc9a71461037b57806306fdde03146103b0578063081812fc146103d257600080fd5b3661037657005b600080fd5b34801561038757600080fd5b5061039b610396366004612fc2565b610a52565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103c5610abf565b6040516103a791906131c2565b3480156103de57600080fd5b506103f26103ed366004612faa565b610b51565b6040516001600160a01b0390911681526020016103a7565b34801561041657600080fd5b5061042a610425366004612f90565b610b95565b005b34801561043857600080fd5b5061042a610447366004612f31565b610c16565b34801561045857600080fd5b5061042a610467366004612f65565b610c4e565b61042a61047a3660046130b8565b610cdc565b34801561048b57600080fd5b50610494610f59565b6040519081526020016103a7565b3480156104ae57600080fd5b50610494600b5481565b3480156104c457600080fd5b5061042a6104d3366004612e05565b610f78565b3480156104e457600080fd5b5061042a6104f3366004612e75565b610ff0565b34801561050457600080fd5b50610494610513366004612f65565b610ffb565b34801561052457600080fd5b5061042a6110f7565b34801561053957600080fd5b5061049460135481565b34801561054f57600080fd5b50600d5461039b906301000000900460ff1681565b34801561057057600080fd5b5061042a611183565b34801561058557600080fd5b5061042a610594366004612e75565b61126a565b3480156105a557600080fd5b50600d546103f29064010000000090046001600160a01b031681565b3480156105cd57600080fd5b506104946105dc366004612faa565b611285565b3480156105ed57600080fd5b50600d5461039b9062010000900460ff1681565b34801561060d57600080fd5b5061042a61061c366004612ffa565b61132f565b34801561062d57600080fd5b50600f546103f2906001600160a01b031681565b34801561064d57600080fd5b5061042a61065c366004612f90565b61139d565b34801561066d57600080fd5b5061042a61067c366004612faa565b61141c565b34801561068d57600080fd5b506103f261069c366004612faa565b61148d565b3480156106ad57600080fd5b50600d5461039b9060ff1681565b61042a6106c936600461303f565b61149f565b3480156106da57600080fd5b50610494600a5481565b3480156106f057600080fd5b50600d5461039b90610100900460ff1681565b34801561070f57600080fd5b506103c56116bb565b34801561072457600080fd5b50610494610733366004612e05565b611749565b34801561074457600080fd5b5061042a611797565b34801561075957600080fd5b5061039b610768366004612faa565b60126020526000908152604090205460ff1681565b34801561078957600080fd5b5061042a610798366004612e05565b6117cd565b3480156107a957600080fd5b5061042a6107b8366004612faa565b611856565b3480156107c957600080fd5b5061042a6118b9565b3480156107de57600080fd5b506007546001600160a01b03166103f2565b3480156107fc57600080fd5b50600e546103f2906001600160a01b031681565b34801561081c57600080fd5b506103c561193d565b34801561083157600080fd5b5061049460095481565b34801561084757600080fd5b5061042a610856366004612faa565b61194c565b34801561086757600080fd5b5061042a610876366004612f31565b6119ab565b34801561088757600080fd5b5061042a610896366004612faa565b611a41565b3480156108a757600080fd5b5061042a6108b6366004612eb5565b611b24565b3480156108c757600080fd5b5061042a611b5e565b3480156108dc57600080fd5b506103c56108eb366004612faa565b611be4565b3480156108fc57600080fd5b5061042a61090b366004612faa565b611caf565b34801561091c57600080fd5b50600f5461039b90600160a01b900460ff1681565b61042a61093f366004612faa565b611e2e565b34801561095057600080fd5b5061042a612028565b34801561096557600080fd5b5061039b610974366004612e05565b60146020526000908152604090205460ff1681565b34801561099557600080fd5b5061039b6109a4366004612e3d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156109de57600080fd5b5061042a6109ed366004612e05565b61208e565b3480156109fe57600080fd5b5061042a610a0d366004612e05565b612176565b348015610a1e57600080fd5b5061042a610a2d366004612faa565b61220e565b348015610a3e57600080fd5b5061042a610a4d366004612faa565b61226d565b60006001600160e01b031982166380ac58cd60e01b1480610a8357506001600160e01b03198216635b5e139f60e01b145b80610a9e57506001600160e01b0319821663780e9d6360e01b145b80610ab957506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610ace906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610afa906133c2565b8015610b475780601f10610b1c57610100808354040283529160200191610b47565b820191906000526020600020905b815481529060010190602001808311610b2a57829003601f168201915b5050505050905090565b6000610b5c826122df565b610b79576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6007546001600160a01b03163314610bc85760405162461bcd60e51b8152600401610bbf906132a2565b60405180910390fd5b600d805460ff191682151590811790915560405160ff909116151581527f2a5bfbb68782e57b3242e612145304c845af3404e2d328a12dd2e7c078cd0117906020015b60405180910390a150565b6007546001600160a01b03163314610c405760405162461bcd60e51b8152600401610bbf906132a2565b610c4a8282612313565b5050565b6000610c598261148d565b9050806001600160a01b0316836001600160a01b03161415610c8e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610cae5750610cac81336109a4565b155b15610ccc576040516367d9dca160e11b815260040160405180910390fd5b610cd783838361236f565b505050565b600d5462010000900460ff16610d4a5760405162461bcd60e51b815260206004820152602d60248201527f44726f7073706163653a3a70726573616c654275793a2050726573616c65206960448201526c39903737ba1020b1ba34bb329760991b6064820152608401610bbf565b33600f546040516331a9108f60e11b8152600481018590526001600160a01b039283169290911690636352211e9060240160206040518083038186803b158015610d9357600080fd5b505afa158015610da7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dcb9190612e21565b6001600160a01b031614610e305760405162461bcd60e51b815260206004820152602660248201527f44726f7073706163653a3a70726573616c654275793a20696e76616c6964207460448201526534b1b5b2ba1760d11b6064820152608401610bbf565b60008281526012602052604090205460ff1615610ea35760405162461bcd60e51b815260206004820152602b60248201527f44726f7073706163653a3a70726573616c654275793a205469636b657420616c60448201526a3932b0b23c903ab9b2b21760a91b6064820152608401610bbf565b600954811115610ec55760405162461bcd60e51b8152600401610bbf906132d7565b600a54610ed290826123cb565b341015610ef15760405162461bcd60e51b8152600401610bbf90613256565b6000828152601260205260409020805460ff19166001179055610f13816123d7565b60408051338152602081018490529081018290527fb77d41b776d1d5cc75b500402614335da616afa8aa95b49325e22db7f1ca86cc906060015b60405180910390a15050565b6000546001600160801b03600160801b82048116918116919091031690565b6007546001600160a01b03163314610fa25760405162461bcd60e51b8152600401610bbf906132a2565b600e80546001600160a01b0319166001600160a01b0383169081179091556040519081527f268c00f4ec08b34fdde24b52e47a09d62f3f3837eb3b8ac7206cefb3bb5e534590602001610c0b565b610cd7838383612444565b600061100683611749565b8210611025576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156110f157600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061109d57506110e9565b80516001600160a01b0316156110b257805192505b876001600160a01b0316836001600160a01b031614156110e757868414156110e057509350610ab992505050565b6001909301925b505b600101611036565b50600080fd5b6007546001600160a01b031633146111215760405162461bcd60e51b8152600401610bbf906132a2565b600d805460ff610100808304821615810261ff001990931692909217928390556040517f5a454f976028c400c4159ac85c61452441fcf06b9888c7c780c5980e3c3123dd936111799390049091161515815260200190565b60405180910390a1565b6007546001600160a01b031633146111ad5760405162461bcd60e51b8152600401610bbf906132a2565b600e5460105447916001600160a01b0316906108fc906111dc90612710906111d69086906123cb565b90612661565b6040518115909202916000818181858888f19350505050158015611204573d6000803e3d6000fd5b50600d60049054906101000a90046001600160a01b03166001600160a01b03166108fc6112426127106111d6601154866123cb90919063ffffffff16565b6040518115909202916000818181858888f19350505050158015610c4a573d6000803e3d6000fd5b610cd783838360405180602001604052806000815250611b24565b600080546001600160801b031681805b8281101561131557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061130c57858314156113055750949350505050565b6001909201915b50600101611295565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b031633146113595760405162461bcd60e51b8152600401610bbf906132a2565b805161136c90600c906020840190612ce2565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6600c604051610c0b91906131d5565b6007546001600160a01b031633146113c75760405162461bcd60e51b8152600401610bbf906132a2565b600f805460ff60a01b1916600160a01b8315158102919091179182905560405160ff9190920416151581527fc6e0fb794d60d245727554ed563b17ec5cd901c15ee395b10535ce370b1bdccd90602001610c0b565b6007546001600160a01b031633146114465760405162461bcd60e51b8152600401610bbf906132a2565b6010819055611457612710826122cc565b6011556010546040519081527fd20ab7c161b1f8ebfab00e747660c0fa31ae9123063e580b5be0aeab18623db290602001610c0b565b60006114988261266d565b5192915050565b600d546301000000900460ff1661151e5760405162461bcd60e51b815260206004820152603960248201527f44726f70537061636553616c653a3a77686974656c6973744275793a2057686960448201527f74656c69737420427579206973206e6f74204163746976652e000000000000006064820152608401610bbf565b6009548311156115405760405162461bcd60e51b8152600401610bbf906132d7565b600a5461154d90846123cb565b34101561156c5760405162461bcd60e51b8152600401610bbf90613256565b61157733838361278f565b6115dc5760405162461bcd60e51b815260206004820152603060248201527f44726f7073706163653a3a77686974656c6973744275793a205573657220697360448201526f081b9bdd081dda1a5d195b1a5cdd195960821b6064820152608401610bbf565b600f54600160a01b900460ff161561166a573360009081526014602052604090205460ff161561165f5760405162461bcd60e51b815260206004820152602860248201527f44726f7073706163653a3a77686974656c6973744275793a20416c72656164796044820152670818db185a5b595960c21b6064820152608401610bbf565b61166a336001612313565b611673836123d7565b7f8714612a507e7fcd9f26d997e561a61611f4bad945c787b8865dc23823ef037b33604080516001600160a01b039092168252602082018690520160405180910390a1505050565b600c80546116c8906133c2565b80601f01602080910402602001604051908101604052809291908181526020018280546116f4906133c2565b80156117415780601f1061171657610100808354040283529160200191611741565b820191906000526020600020905b81548152906001019060200180831161172457829003601f168201915b505050505081565b60006001600160a01b038216611772576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b031633146117c15760405162461bcd60e51b8152600401610bbf906132a2565b6117cb6000612815565b565b6007546001600160a01b031633146117f75760405162461bcd60e51b8152600401610bbf906132a2565b600d8054640100000000600160c01b0319166401000000006001600160a01b038481168202929092179283905560405192041681527fb470355146314037ce5186813b4b7c65bff2b87f98d44ff063570d0e22d65ba390602001610c0b565b6007546001600160a01b031633146118805760405162461bcd60e51b8152600401610bbf906132a2565b611889816123d7565b6040518181527fdb7b64a879507c32bda4d0cf22dee29ed875c7157ecbbc10fe11bf14fab06d1290602001610c0b565b6007546001600160a01b031633146118e35760405162461bcd60e51b8152600401610bbf906132a2565b600d805460ff62010000808304821615810262ff00001990931692909217928390556040517f38822fae85453c65b78e1b7d02e45cae5eb0d7961e34226fb29c49dab9d3a357936111799390049091161515815260200190565b606060028054610ace906133c2565b6007546001600160a01b031633146119765760405162461bcd60e51b8152600401610bbf906132a2565b60098190556040518181527f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab90602001610c0b565b6001600160a01b0382163314156119d55760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314611a6b5760405162461bcd60e51b8152600401610bbf906132a2565b60008181526012602052604090205460ff16611adc5760405162461bcd60e51b815260206004820152602a60248201527f44726f7073706163653a3a636c6561725469636b65743a205469636b657420696044820152691cc81b9bdd081d5cd95960b21b6064820152608401610bbf565b60008181526012602052604090819020805460ff19169055517f256e63760868166c3f047c49d3e1614c1ca6c620d715c552c54ddb4ba428719c90610c0b9083815260200190565b611b2f848484612444565b611b3b84848484612867565b611b58576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b03163314611b885760405162461bcd60e51b8152600401610bbf906132a2565b600d805460ff6301000000808304821615810263ff0000001990931692909217928390556040517ffabb6e4b24bd8ac3a08555e569d13590c5006dc61e4aae65e74296d3df6759ed936111799390049091161515815260200190565b6060611bef826122df565b611c535760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bbf565b6000600c8054611c62906133c2565b905011611c7e5760405180602001604052806000815250610ab9565b600c611c8983612976565b604051602001611c9a929190613105565b60405160208183030381529060405292915050565b6007546001600160a01b03163314611cd95760405162461bcd60e51b8152600401610bbf906132a2565b611ce1610f59565b600b541015611d735760405162461bcd60e51b815260206004820152605260248201527f44726f70737061636553616c653a3a6368616e6765537570706c794c696d697460448201527f3a20537570706c79204c696d69742063616e277420626520726564756365642060648201527162656c6f7720746f74616c20737570706c7960701b608482015260a401610bbf565b600b54811115611df95760405162461bcd60e51b8152602060048201526044602482018190527f44726f70737061636553616c653a3a6368616e6765537570706c794c696d6974908201527f3a20537570706c79204c696d69742063616e206f6e6c79206265206465637265606482015263185cd95960e21b608482015260a401610bbf565b600b8190556040518181527f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d0790602001610c0b565b600d54610100900460ff16611e915760405162461bcd60e51b815260206004820152602360248201527f44726f7073706163653a3a6275793a2053616c65206973206e6f7420616374696044820152623b329760e91b6064820152608401610bbf565b600954811115611f005760405162461bcd60e51b815260206004820152603460248201527f44726f7073706163653a3a6275793a20546f6f206d616e7920746f6b656e73206044820152733337b91037b732903a3930b739b0b1ba34b7b71760611b6064820152608401610bbf565b600a54611f0d90826123cb565b341015611f6a5760405162461bcd60e51b815260206004820152602560248201527f44726f7073706163653a3a6275793a20496e73756666696369656e742070617960448201526436b2b73a1760d91b6064820152608401610bbf565b600d5460ff16611fe957323314611fe95760405162461bcd60e51b815260206004820152603760248201527f44726f7073706163653a3a6275793a20536d61727420636f6e7472616374732060448201527f617265206e6f7420616c6c6f77656420746f206275792e0000000000000000006064820152608401610bbf565b611ff2816123d7565b60408051338152602081018390527fe3d4187f6ca4248660cc0ac8b8056515bac4a8132be2eca31d6d0cc170722a7e9101610c0b565b6007546001600160a01b031633146120525760405162461bcd60e51b8152600401610bbf906132a2565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561208b573d6000803e3d6000fd5b50565b6007546001600160a01b031633146120b85760405162461bcd60e51b8152600401610bbf906132a2565b6001600160a01b0381166121285760405162461bcd60e51b815260206004820152603160248201527f44726f70537061636553616c653a3a7365745469636b6574416464726573733a6044820152701024b73b30b634b21030b2323932b9b99760791b6064820152608401610bbf565b600f80546001600160a01b0319166001600160a01b0383169081179091556040519081527f4846b8d14a603fbd3567c63384f41a947d787c004e59ce39ee755d0485ae5ed890602001610c0b565b6007546001600160a01b031633146121a05760405162461bcd60e51b8152600401610bbf906132a2565b6001600160a01b0381166122055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbf565b61208b81612815565b6007546001600160a01b031633146122385760405162461bcd60e51b8152600401610bbf906132a2565b600a8190556040518181527f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f90602001610c0b565b6007546001600160a01b031633146122975760405162461bcd60e51b8152600401610bbf906132a2565b60138190556040518181527f6be426d58d2fb0cea1f78182904380aac426a50029637dc9e9d2e40bc44ac05090602001610c0b565b60006122d8828461337f565b9392505050565b600080546001600160801b031682108015610ab9575050600090815260036020526040902054600160e01b900460ff161590565b6001600160a01b038216600081815260146020908152604091829020805460ff19168515159081179091558251938452908301527f9df634e89ddfd6892a56594ccd1a1971304a02d24cb197afdd540194c0b653a29101610f4d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006122d88284613360565b600b546123ec826123e6610f59565b90612a8f565b111561243a5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f75676820746f6b656e73206c6566742e0000000000000000006044820152606401610bbf565b61208b3382612a9b565b600061244f8261266d565b80519091506000906001600160a01b0316336001600160a01b0316148061247d5750815161247d90336109a4565b8061249857503361248d84610b51565b6001600160a01b0316145b9050806124b857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146124ed5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661251457604051633a954ecd60e21b815260040160405180910390fd5b612524600084846000015161236f565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116612617576000546001600160801b031681101561261757825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006122d8828461334c565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561277657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906127745780516001600160a01b03161561270b579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561276f579392505050565b61270b565b505b604051636f96cda160e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606085901b166020820152600090819060340160405160208183030381529060405280519060200120905061280c848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050612ab5565b95945050505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561296a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128ab903390899088908890600401613185565b602060405180830381600087803b1580156128c557600080fd5b505af19250505080156128f5575060408051601f3d908101601f191682019092526128f291810190612fde565b60015b612950573d808015612923576040519150601f19603f3d011682016040523d82523d6000602084013e612928565b606091505b508051612948576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061296e565b5060015b949350505050565b60608161299a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129c457806129ae816133fd565b91506129bd9050600a8361334c565b915061299e565b6000816001600160401b038111156129ec57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a16576020820181803683370190505b5090505b841561296e57612a2b60018361337f565b9150612a38600a86613418565b612a43906030613334565b60f81b818381518110612a6657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612a88600a8661334c565b9450612a1a565b60006122d88284613334565b610c4a828260405180602001604052806000815250612acb565b600082612ac28584612ad8565b14949350505050565b610cd78383836001612b5a565b600081815b8451811015612b52576000858281518110612b0857634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612b2e5760008381526020829052604090209250612b3f565b600081815260208490526040902092505b5080612b4a816133fd565b915050612add565b509392505050565b6000546001600160801b03166001600160a01b038516612b8c57604051622e076360e81b815260040160405180910390fd5b83612baa5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015612cbc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015612c925750612c906000888488612867565b155b15612cb0576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612c3b565b50600080546001600160801b0319166001600160801b039290921691909117905561265a565b828054612cee906133c2565b90600052602060002090601f016020900481019282612d105760008555612d56565b82601f10612d2957805160ff1916838001178555612d56565b82800160010185558215612d56579182015b82811115612d56578251825591602001919060010190612d3b565b50612d62929150612d66565b5090565b5b80821115612d625760008155600101612d67565b60006001600160401b0380841115612d9557612d95613458565b604051601f8501601f19908116603f01168101908282118183101715612dbd57612dbd613458565b81604052809350858152868686011115612dd657600080fd5b858560208301376000602087830101525050509392505050565b80358015158114612e0057600080fd5b919050565b600060208284031215612e16578081fd5b81356122d88161346e565b600060208284031215612e32578081fd5b81516122d88161346e565b60008060408385031215612e4f578081fd5b8235612e5a8161346e565b91506020830135612e6a8161346e565b809150509250929050565b600080600060608486031215612e89578081fd5b8335612e948161346e565b92506020840135612ea48161346e565b929592945050506040919091013590565b60008060008060808587031215612eca578081fd5b8435612ed58161346e565b93506020850135612ee58161346e565b92506040850135915060608501356001600160401b03811115612f06578182fd5b8501601f81018713612f16578182fd5b612f2587823560208401612d7b565b91505092959194509250565b60008060408385031215612f43578182fd5b8235612f4e8161346e565b9150612f5c60208401612df0565b90509250929050565b60008060408385031215612f77578182fd5b8235612f828161346e565b946020939093013593505050565b600060208284031215612fa1578081fd5b6122d882612df0565b600060208284031215612fbb578081fd5b5035919050565b600060208284031215612fd3578081fd5b81356122d881613483565b600060208284031215612fef578081fd5b81516122d881613483565b60006020828403121561300b578081fd5b81356001600160401b03811115613020578182fd5b8201601f81018413613030578182fd5b61296e84823560208401612d7b565b600080600060408486031215613053578081fd5b8335925060208401356001600160401b0380821115613070578283fd5b818601915086601f830112613083578283fd5b813581811115613091578384fd5b8760208260051b85010111156130a5578384fd5b6020830194508093505050509250925092565b600080604083850312156130ca578182fd5b50508035926020909101359150565b600081518084526130f1816020860160208601613396565b601f01601f19169290920160200192915050565b6000808454613113816133c2565b6001828116801561312b576001811461313c57613168565b60ff19841687528287019450613168565b8886526020808720875b8581101561315f5781548a820152908401908201613146565b50505082870194505b50505050835161317c818360208801613396565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131b8908301846130d9565b9695505050505050565b6020815260006122d860208301846130d9565b600060208083528184546131e8816133c2565b80848701526040600180841660008114613209576001811461321d57613248565b60ff19851689840152606089019550613248565b898852868820885b858110156132405781548b8201860152908301908801613225565b8a0184019650505b509398975050505050505050565b6020808252602c908201527f44726f7073706163653a3a70726573616c654275793a20496e7375666669636960408201526b32b73a103830bcb6b2b73a1760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252603b908201527f44726f7073706163653a3a70726573616c654275793a20546f6f206d616e792060408201527f746f6b656e7320666f72206f6e65207472616e73616374696f6e2e0000000000606082015260800190565b600082198211156133475761334761342c565b500190565b60008261335b5761335b613442565b500490565b600081600019048311821515161561337a5761337a61342c565b500290565b6000828210156133915761339161342c565b500390565b60005b838110156133b1578181015183820152602001613399565b83811115611b585750506000910152565b600181811c908216806133d657607f821691505b602082108114156133f757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134115761341161342c565b5060010190565b60008261342757613427613442565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461208b57600080fd5b6001600160e01b03198116811461208b57600080fdfea26469706673582212209d2e5441a503018c361f342e883daebf7fde54bb672a8ad129c69f58e9ae36ed64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000f840000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000016345785d8a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f0beabbd147e31eaf58a0e17c5b8ca3e1450d6a000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d170000000000000000000000007ba0a79ec30259e2792a43989edd97c6e40bb3360000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000084a61727269746f7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a41524900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f697066732e696f2f697066732f62616679626569666270337366716336787567356e6c72736e35686d653468777862616b6c346932787a6b6475666a376e3275646e796c376837712f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _supplyLimit (uint256): 3972
Arg [1] : _mintLimit (uint256): 5
Arg [2] : _mintPrice (uint256): 100000000000000000
Arg [3] : _devSaleShare (uint256): 0
Arg [4] : _withdrawalWallet (address): 0x7F0BeABBD147e31EAF58a0E17c5B8cA3E1450D6a
Arg [5] : _devWallet (address): 0x856701083eD11A0D35bAc3B769B4c8efE3330d17
Arg [6] : _ticketAddress (address): 0x7ba0A79eC30259E2792A43989EdD97c6E40Bb336
Arg [7] : _name (string): Jarritos
Arg [8] : _ticker (string): JARI
Arg [9] : _baseURI (string): https://ipfs.io/ipfs/bafybeifbp3sfqc6xug5nlrsn5hme4hwxbakl4i2xzkdufj7n2udnyl7h7q/
-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000f84
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [2] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000007f0beabbd147e31eaf58a0e17c5b8ca3e1450d6a
Arg [5] : 000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d17
Arg [6] : 0000000000000000000000007ba0a79ec30259e2792a43989edd97c6e40bb336
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [11] : 4a61727269746f73000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [13] : 4a41524900000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [15] : 68747470733a2f2f697066732e696f2f697066732f6261667962656966627033
Arg [16] : 7366716336787567356e6c72736e35686d653468777862616b6c346932787a6b
Arg [17] : 6475666a376e3275646e796c376837712f000000000000000000000000000000
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.