ERC-721
Overview
Max Total Supply
8,591 EPICBEAST
Holders
4,699
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 EPICBEASTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EpicBeast
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.4; // https://www.alliedesports.gg/terms-of-use-privacy-policy // https://www.alliedesports.gg/digital-collectible-terms import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract EpicBeast is ERC721A, Ownable { uint256 public constant MAX_SUPPLY = 8591; uint256 public constant MAX_MINT_AMOUNT = 6; uint256 public constant OG_PRICE = 0.045 ether; uint256 public constant BEAST_LIST_PRICE = 0.055 ether; uint256 public constant PUBLIC_PRICE = 0.065 ether; uint256 public presaleAt; uint256 public launchAt; uint256 public launchEndAt; address public ogSigner; address public beastListSigner; bool public operational = true; mapping(address => uint256) public addressMintBalance; constructor( string memory baseURI_, uint256 presaleAt_, uint256 launchAt_, uint256 launchEndAt_, address ogSigner_, address beastListSigner_ ) ERC721A("EpicBeast", "EPICBEAST") { _baseTokenURI = baseURI_; presaleAt = presaleAt_; launchAt = launchAt_; launchEndAt = launchEndAt_; ogSigner = ogSigner_; beastListSigner = beastListSigner_; } modifier mintValidation(uint256 _mintQty) { uint256 supply = totalSupply(); require(operational, "Operation is paused"); require(_mintQty > 0, "Must mint minimum of 1 token"); require(supply + _mintQty <= MAX_SUPPLY, "Exceeds maximum token supply"); if (isPresale()) { uint256 ownerMintedCount = addressMintBalance[msg.sender]; require(ownerMintedCount + _mintQty <= MAX_MINT_AMOUNT, "Max NFT per address exceeded"); } _; } function isPresale() public view returns (bool) { return block.timestamp >= presaleAt && block.timestamp < launchAt; } function isLaunched() public view returns (bool) { return block.timestamp >= launchAt && block.timestamp < launchEndAt; } function ogMint( address _to, uint256 _mintQty, bytes32 r, bytes32 s, uint8 v ) external payable mintValidation(_mintQty) { require(block.timestamp >= presaleAt, "OG sale has not begun"); require(block.timestamp < launchAt, "OG sale has ended"); require(msg.value == _mintQty * OG_PRICE, "Amount of Ether sent is not correct"); bytes32 digest = keccak256(abi.encode(msg.sender)); require(_validMint(ogSigner, digest, r, s, v), "Invalid mint signature"); mint(_to, _mintQty); } function beastlistMint( address _to, uint256 _mintQty, bytes32 r, bytes32 s, uint8 v ) external payable mintValidation(_mintQty) { require(block.timestamp >= presaleAt, "Beastlist sale has not begun"); require(block.timestamp < launchAt, "Beastlist sale has ended"); require(msg.value == _mintQty * BEAST_LIST_PRICE, "Amount of Ether sent is not correct"); bytes32 digest = keccak256(abi.encode(msg.sender)); require(_validMint(beastListSigner, digest, r, s, v), "Invalid mint signature"); mint(_to, _mintQty); } function launchMint(address _to, uint256 _mintQty) external payable mintValidation(_mintQty) { require(block.timestamp >= launchAt, "Public sale has not begun"); require(block.timestamp < launchEndAt, "Public sale has ended"); require(msg.value == _mintQty * PUBLIC_PRICE, "Amount of Ether sent is not correct"); mint(_to, _mintQty); } function devMint(uint256 _mintQty) external onlyOwner { uint256 supply = totalSupply(); require(supply + _mintQty <= MAX_SUPPLY, "Exceeds maximum token supply"); _safeMint(msg.sender, _mintQty); } function mint(address _to, uint256 _mintQty) internal { addressMintBalance[msg.sender] += _mintQty; _safeMint(_to, _mintQty); } function _validMint( address administrator, bytes32 digest, bytes32 r, bytes32 s, uint8 v ) internal view returns (bool) { address signer = ecrecover(digest, v, r, s); return signer == administrator; } function setPresaleAt(uint256 value) external onlyOwner { presaleAt = value; } function setLaunchAt(uint256 value) external onlyOwner { launchAt = value; } function setLaunchEndAt(uint256 value) external onlyOwner { launchEndAt = value; } function toggleOperational() external onlyOwner { operational = !operational; } string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } address private constant creatorAddress = 0xE91D76FEc73df000EBC0094E08A25A95cb0146aB; function withdraw() external onlyOwner { (bool success, ) = creatorAddress.call{value: address(this).balance}(""); require(success, "Withdraw failed."); } }
// 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 // 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/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 MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); 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 extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 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**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { 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; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 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_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * 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 (_startTokenId() <= curr && 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 virtual 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 (to.isContract() && !_checkContractOnERC721Received(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 _startTokenId() <= tokenId && 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 > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 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; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = 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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, 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 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { 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)) } } } } /** * @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/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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) (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": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"uint256","name":"presaleAt_","type":"uint256"},{"internalType":"uint256","name":"launchAt_","type":"uint256"},{"internalType":"uint256","name":"launchEndAt_","type":"uint256"},{"internalType":"address","name":"ogSigner_","type":"address"},{"internalType":"address","name":"beastListSigner_","type":"address"}],"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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BEAST_LIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beastListSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintQty","type":"uint256"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"name":"beastlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintQty","type":"uint256"}],"name":"devMint","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":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchEndAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintQty","type":"uint256"}],"name":"launchMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintQty","type":"uint256"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ogSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operational","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"presaleAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setLaunchAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setLaunchEndAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setPresaleAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleOperational","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600d60146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162004d6838038062004d68833981810160405281019062000052919062000407565b6040518060400160405280600981526020017f45706963426561737400000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f45504943424541535400000000000000000000000000000000000000000000008152508160029080519060200190620000d6929190620002b7565b508060039080519060200190620000ef929190620002b7565b5062000100620001e460201b60201c565b6000819055505050620001286200011c620001e960201b60201c565b620001f160201b60201c565b85600f908051906020019062000140929190620002b7565b508460098190555083600a8190555082600b8190555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050505062000698565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c59062000589565b90600052602060002090601f016020900481019282620002e9576000855562000335565b82601f106200030457805160ff191683800117855562000335565b8280016001018555821562000335579182015b828111156200033457825182559160200191906001019062000317565b5b50905062000344919062000348565b5090565b5b808211156200036357600081600090555060010162000349565b5090565b60006200037e6200037884620004df565b620004b6565b9050828152602081018484840111156200039757600080fd5b620003a484828562000553565b509392505050565b600081519050620003bd8162000664565b92915050565b600082601f830112620003d557600080fd5b8151620003e784826020860162000367565b91505092915050565b60008151905062000401816200067e565b92915050565b60008060008060008060c087890312156200042157600080fd5b600087015167ffffffffffffffff8111156200043c57600080fd5b6200044a89828a01620003c3565b96505060206200045d89828a01620003f0565b95505060406200047089828a01620003f0565b94505060606200048389828a01620003f0565b93505060806200049689828a01620003ac565b92505060a0620004a989828a01620003ac565b9150509295509295509295565b6000620004c2620004d5565b9050620004d08282620005bf565b919050565b6000604051905090565b600067ffffffffffffffff821115620004fd57620004fc62000624565b5b620005088262000653565b9050602081019050919050565b6000620005228262000529565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200057357808201518184015260208101905062000556565b8381111562000583576000848401525b50505050565b60006002820490506001821680620005a257607f821691505b60208210811415620005b957620005b8620005f5565b5b50919050565b620005ca8262000653565b810181811067ffffffffffffffff82111715620005ec57620005eb62000624565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200066f8162000515565b81146200067b57600080fd5b50565b620006898162000549565b81146200069557600080fd5b50565b6146c080620006a86000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063a5e70340116100b6578063c3454bcc1161007a578063c3454bcc14610818578063c87b56dd14610843578063e8d78a2f14610880578063e985e9c51461089c578063f2fde38b146108d9578063fa9b70181461090257610246565b8063a5e7034014610754578063a7a44f2b1461077f578063b02d7ba9146107a8578063b16723a9146107c4578063b88d4fde146107ef57610246565b806390069b42116100fd57806390069b421461068157806392d7eacd146106ac57806395364a84146106d557806395d89b4114610700578063a22cb4651461072b57610246565b806370a08231146105ae578063715018a6146105eb5780637c311388146106025780637d5028921461062b5780638da5cb5b1461065657610246565b806332cb6b0c116101c757806342842e0e1161018b57806342842e0e146104c957806355f804b3146104f25780635a5cf0011461051b578063611f3f10146105465780636352211e1461057157610246565b806332cb6b0c1461040a57806333fcaa51146104355780633406c7261461044c578063375a069a146104895780633ccfd60b146104b257610246565b80630a4010861161020e5780630a40108614610344578063112956621461036f57806318160ddd1461038b57806323b872dd146103b6578063307aebc9146103df57610246565b8063017254cf1461024b57806301ffc9a71461027657806306fdde03146102b3578063081812fc146102de578063095ea7b31461031b575b600080fd5b34801561025757600080fd5b5061026061092d565b60405161026d9190613ece565b60405180910390f35b34801561028257600080fd5b5061029d600480360381019061029891906137f2565b610933565b6040516102aa9190613c6c565b60405180910390f35b3480156102bf57600080fd5b506102c8610a15565b6040516102d59190613ccc565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190613885565b610aa7565b6040516103129190613c05565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d919061373f565b610b23565b005b34801561035057600080fd5b50610359610c2e565b6040516103669190613c6c565b60405180910390f35b6103896004803603810190610384919061377b565b610c41565b005b34801561039757600080fd5b506103a0610f5c565b6040516103ad9190613ece565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613639565b610f73565b005b3480156103eb57600080fd5b506103f4610f83565b6040516104019190613c6c565b60405180910390f35b34801561041657600080fd5b5061041f610f9d565b60405161042c9190613ece565b60405180910390f35b34801561044157600080fd5b5061044a610fa3565b005b34801561045857600080fd5b50610473600480360381019061046e91906135d4565b61104b565b6040516104809190613ece565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190613885565b611063565b005b3480156104be57600080fd5b506104c7611149565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190613639565b611288565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613844565b6112a8565b005b34801561052757600080fd5b5061053061133e565b60405161053d9190613c05565b60405180910390f35b34801561055257600080fd5b5061055b611364565b6040516105689190613ece565b60405180910390f35b34801561057d57600080fd5b5061059860048036038101906105939190613885565b61136f565b6040516105a59190613c05565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d091906135d4565b611385565b6040516105e29190613ece565b60405180910390f35b3480156105f757600080fd5b50610600611455565b005b34801561060e57600080fd5b5061062960048036038101906106249190613885565b6114dd565b005b34801561063757600080fd5b50610640611563565b60405161064d9190613ece565b60405180910390f35b34801561066257600080fd5b5061066b61156e565b6040516106789190613c05565b60405180910390f35b34801561068d57600080fd5b50610696611598565b6040516106a39190613ece565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190613885565b6115a3565b005b3480156106e157600080fd5b506106ea611629565b6040516106f79190613c6c565b60405180910390f35b34801561070c57600080fd5b50610715611643565b6040516107229190613ccc565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d9190613703565b6116d5565b005b34801561076057600080fd5b5061076961184d565b6040516107769190613ece565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a19190613885565b611853565b005b6107c260048036038101906107bd919061373f565b6118d9565b005b3480156107d057600080fd5b506107d9611b57565b6040516107e69190613c05565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613688565b611b7d565b005b34801561082457600080fd5b5061082d611bf9565b60405161083a9190613ece565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190613885565b611bff565b6040516108779190613ccc565b60405180910390f35b61089a6004803603810190610895919061377b565b611c9e565b005b3480156108a857600080fd5b506108c360048036038101906108be91906135fd565b611fb9565b6040516108d09190613c6c565b60405180910390f35b3480156108e557600080fd5b5061090060048036038101906108fb91906135d4565b61204d565b005b34801561090e57600080fd5b50610917612145565b6040516109249190613ece565b60405180910390f35b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e5750610a0d8261214a565b5b9050919050565b606060028054610a24906141a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a50906141a0565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b6000610ab2826121b4565b610ae8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2e8261136f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb5612202565b73ffffffffffffffffffffffffffffffffffffffff1614158015610be75750610be581610be0612202565b611fb9565b155b15610c1e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c2983838361220a565b505050565b600d60149054906101000a900460ff1681565b836000610c4c610f5c565b9050600d60149054906101000a900460ff16610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490613d4e565b60405180910390fd5b60008211610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790613d8e565b60405180910390fd5b61218f8282610cef9190613fbe565b1115610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613d0e565b60405180910390fd5b610d38611629565b15610dd2576000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060068382610d8f9190613fbe565b1115610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790613e0e565b60405180910390fd5b505b600954421015610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e90613e8e565b60405180910390fd5b600a544210610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290613e6e565b60405180910390fd5b66c3663566a5800086610e6e9190614045565b3414610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613d6e565b60405180910390fd5b600033604051602001610ec29190613c05565b604051602081830303815290604052805190602001209050610f09600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828888886122bc565b610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90613eae565b60405180910390fd5b610f52888861234b565b5050505050505050565b6000610f666123af565b6001546000540303905090565b610f7e8383836123b4565b505050565b6000600a544210158015610f985750600b5442105b905090565b61218f81565b610fab612202565b73ffffffffffffffffffffffffffffffffffffffff16610fc961156e565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690613dee565b60405180910390fd5b600d60149054906101000a900460ff1615600d60146101000a81548160ff021916908315150217905550565b600e6020528060005260406000206000915090505481565b61106b612202565b73ffffffffffffffffffffffffffffffffffffffff1661108961156e565b73ffffffffffffffffffffffffffffffffffffffff16146110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d690613dee565b60405180910390fd5b60006110e9610f5c565b905061218f82826110fa9190613fbe565b111561113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290613d0e565b60405180910390fd5b611145338361286a565b5050565b611151612202565b73ffffffffffffffffffffffffffffffffffffffff1661116f61156e565b73ffffffffffffffffffffffffffffffffffffffff16146111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90613dee565b60405180910390fd5b600073e91d76fec73df000ebc0094e08a25a95cb0146ab73ffffffffffffffffffffffffffffffffffffffff16476040516111ff90613bf0565b60006040518083038185875af1925050503d806000811461123c576040519150601f19603f3d011682016040523d82523d6000602084013e611241565b606091505b5050905080611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613dce565b60405180910390fd5b50565b6112a383838360405180602001604052806000815250611b7d565b505050565b6112b0612202565b73ffffffffffffffffffffffffffffffffffffffff166112ce61156e565b73ffffffffffffffffffffffffffffffffffffffff1614611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90613dee565b60405180910390fd5b80600f908051906020019061133a92919061338b565b5050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b66e6ed27d666800081565b600061137a82612888565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ed576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61145d612202565b73ffffffffffffffffffffffffffffffffffffffff1661147b61156e565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613dee565b60405180910390fd5b6114db6000612b17565b565b6114e5612202565b73ffffffffffffffffffffffffffffffffffffffff1661150361156e565b73ffffffffffffffffffffffffffffffffffffffff1614611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090613dee565b60405180910390fd5b8060098190555050565b66c3663566a5800081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b669fdf42f6e4800081565b6115ab612202565b73ffffffffffffffffffffffffffffffffffffffff166115c961156e565b73ffffffffffffffffffffffffffffffffffffffff161461161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690613dee565b60405180910390fd5b80600a8190555050565b6000600954421015801561163e5750600a5442105b905090565b606060038054611652906141a0565b80601f016020809104026020016040519081016040528092919081815260200182805461167e906141a0565b80156116cb5780601f106116a0576101008083540402835291602001916116cb565b820191906000526020600020905b8154815290600101906020018083116116ae57829003601f168201915b5050505050905090565b6116dd612202565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611742576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061174f612202565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117fc612202565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118419190613c6c565b60405180910390a35050565b600a5481565b61185b612202565b73ffffffffffffffffffffffffffffffffffffffff1661187961156e565b73ffffffffffffffffffffffffffffffffffffffff16146118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690613dee565b60405180910390fd5b80600b8190555050565b8060006118e4610f5c565b9050600d60149054906101000a900460ff16611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90613d4e565b60405180910390fd5b60008211611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90613d8e565b60405180910390fd5b61218f82826119879190613fbe565b11156119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf90613d0e565b60405180910390fd5b6119d0611629565b15611a6a576000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060068382611a279190613fbe565b1115611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f90613e0e565b60405180910390fd5b505b600a54421015611aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa690613e2e565b60405180910390fd5b600b544210611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea90613cee565b60405180910390fd5b66e6ed27d666800083611b069190614045565b3414611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90613d6e565b60405180910390fd5b611b51848461234b565b50505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b888484846123b4565b611ba78373ffffffffffffffffffffffffffffffffffffffff16612bdd565b8015611bbc5750611bba84848484612c00565b155b15611bf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b6060611c0a826121b4565b611c40576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c4a612d60565b9050600081511415611c6b5760405180602001604052806000815250611c96565b80611c7584612df2565b604051602001611c86929190613bcc565b6040516020818303038152906040525b915050919050565b836000611ca9610f5c565b9050600d60149054906101000a900460ff16611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190613d4e565b60405180910390fd5b60008211611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490613d8e565b60405180910390fd5b61218f8282611d4c9190613fbe565b1115611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8490613d0e565b60405180910390fd5b611d95611629565b15611e2f576000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060068382611dec9190613fbe565b1115611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2490613e0e565b60405180910390fd5b505b600954421015611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90613e4e565b60405180910390fd5b600a544210611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90613dae565b60405180910390fd5b669fdf42f6e4800086611ecb9190614045565b3414611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0390613d6e565b60405180910390fd5b600033604051602001611f1f9190613c05565b604051602081830303815290604052805190602001209050611f66600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828888886122bc565b611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90613eae565b60405180910390fd5b611faf888861234b565b5050505050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612055612202565b73ffffffffffffffffffffffffffffffffffffffff1661207361156e565b73ffffffffffffffffffffffffffffffffffffffff16146120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090613dee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090613d2e565b60405180910390fd5b61214281612b17565b50565b600681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816121bf6123af565b111580156121ce575060005482105b80156121fb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080600186848787604051600081526020016040526040516122e29493929190613c87565b6020604051602081039080840390855afa158015612304573d6000803e3d6000fd5b5050506020604051035190508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161491505095945050505050565b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239a9190613fbe565b925050819055506123ab828261286a565b5050565b600090565b60006123bf82612888565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461242a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661244b612202565b73ffffffffffffffffffffffffffffffffffffffff16148061247a575061247985612474612202565b611fb9565b5b806124bf5750612488612202565b73ffffffffffffffffffffffffffffffffffffffff166124a784610aa7565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124f8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561255f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61256c8585856001612f9f565b6125786000848761220a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127f85760005482146127f757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128638585856001612fa5565b5050505050565b612884828260405180602001604052806000815250612fab565b5050565b612890613411565b60008290508061289e6123af565b111580156128ad575060005481105b15612ae0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ade57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129c2578092505050612b12565b5b600115612add57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ad8578092505050612b12565b6129c3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c26612202565b8786866040518563ffffffff1660e01b8152600401612c489493929190613c20565b602060405180830381600087803b158015612c6257600080fd5b505af1925050508015612c9357506040513d601f19601f82011682018060405250810190612c90919061381b565b60015b612d0d573d8060008114612cc3576040519150601f19603f3d011682016040523d82523d6000602084013e612cc8565b606091505b50600081511415612d05576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612d6f906141a0565b80601f0160208091040260200160405190810160405280929190818152602001828054612d9b906141a0565b8015612de85780601f10612dbd57610100808354040283529160200191612de8565b820191906000526020600020905b815481529060010190602001808311612dcb57829003601f168201915b5050505050905090565b60606000821415612e3a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f9a565b600082905060005b60008214612e6c578080612e5590614203565b915050600a82612e659190614014565b9150612e42565b60008167ffffffffffffffff811115612eae577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ee05781602001600182028036833780820191505090505b5090505b60008514612f9357600182612ef9919061409f565b9150600a85612f08919061424c565b6030612f149190613fbe565b60f81b818381518110612f50577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f8c9190614014565b9450612ee4565b8093505050505b919050565b50505050565b50505050565b612fb88383836001612fbd565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561302a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613065576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130726000868387612f9f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561323c575061323b8773ffffffffffffffffffffffffffffffffffffffff16612bdd565b5b15613302575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132b16000888480600101955088612c00565b6132e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156132425782600054146132fd57600080fd5b61336e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613303575b8160008190555050506133846000868387612fa5565b5050505050565b828054613397906141a0565b90600052602060002090601f0160209004810192826133b95760008555613400565b82601f106133d257805160ff1916838001178555613400565b82800160010185558215613400579182015b828111156133ff5782518255916020019190600101906133e4565b5b50905061340d9190613454565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561346d576000816000905550600101613455565b5090565b600061348461347f84613f0e565b613ee9565b90508281526020810184848401111561349c57600080fd5b6134a784828561415e565b509392505050565b60006134c26134bd84613f3f565b613ee9565b9050828152602081018484840111156134da57600080fd5b6134e584828561415e565b509392505050565b6000813590506134fc81614600565b92915050565b60008135905061351181614617565b92915050565b6000813590506135268161462e565b92915050565b60008135905061353b81614645565b92915050565b60008151905061355081614645565b92915050565b600082601f83011261356757600080fd5b8135613577848260208601613471565b91505092915050565b600082601f83011261359157600080fd5b81356135a18482602086016134af565b91505092915050565b6000813590506135b98161465c565b92915050565b6000813590506135ce81614673565b92915050565b6000602082840312156135e657600080fd5b60006135f4848285016134ed565b91505092915050565b6000806040838503121561361057600080fd5b600061361e858286016134ed565b925050602061362f858286016134ed565b9150509250929050565b60008060006060848603121561364e57600080fd5b600061365c868287016134ed565b935050602061366d868287016134ed565b925050604061367e868287016135aa565b9150509250925092565b6000806000806080858703121561369e57600080fd5b60006136ac878288016134ed565b94505060206136bd878288016134ed565b93505060406136ce878288016135aa565b925050606085013567ffffffffffffffff8111156136eb57600080fd5b6136f787828801613556565b91505092959194509250565b6000806040838503121561371657600080fd5b6000613724858286016134ed565b925050602061373585828601613502565b9150509250929050565b6000806040838503121561375257600080fd5b6000613760858286016134ed565b9250506020613771858286016135aa565b9150509250929050565b600080600080600060a0868803121561379357600080fd5b60006137a1888289016134ed565b95505060206137b2888289016135aa565b94505060406137c388828901613517565b93505060606137d488828901613517565b92505060806137e5888289016135bf565b9150509295509295909350565b60006020828403121561380457600080fd5b60006138128482850161352c565b91505092915050565b60006020828403121561382d57600080fd5b600061383b84828501613541565b91505092915050565b60006020828403121561385657600080fd5b600082013567ffffffffffffffff81111561387057600080fd5b61387c84828501613580565b91505092915050565b60006020828403121561389757600080fd5b60006138a5848285016135aa565b91505092915050565b6138b7816140d3565b82525050565b6138c6816140e5565b82525050565b6138d5816140f1565b82525050565b60006138e682613f70565b6138f08185613f86565b935061390081856020860161416d565b61390981614339565b840191505092915050565b600061391f82613f7b565b6139298185613fa2565b935061393981856020860161416d565b61394281614339565b840191505092915050565b600061395882613f7b565b6139628185613fb3565b935061397281856020860161416d565b80840191505092915050565b600061398b601583613fa2565b91506139968261434a565b602082019050919050565b60006139ae601c83613fa2565b91506139b982614373565b602082019050919050565b60006139d1602683613fa2565b91506139dc8261439c565b604082019050919050565b60006139f4601383613fa2565b91506139ff826143eb565b602082019050919050565b6000613a17602383613fa2565b9150613a2282614414565b604082019050919050565b6000613a3a601c83613fa2565b9150613a4582614463565b602082019050919050565b6000613a5d601183613fa2565b9150613a688261448c565b602082019050919050565b6000613a80601083613fa2565b9150613a8b826144b5565b602082019050919050565b6000613aa3602083613fa2565b9150613aae826144de565b602082019050919050565b6000613ac6601c83613fa2565b9150613ad182614507565b602082019050919050565b6000613ae9601983613fa2565b9150613af482614530565b602082019050919050565b6000613b0c601583613fa2565b9150613b1782614559565b602082019050919050565b6000613b2f600083613f97565b9150613b3a82614582565b600082019050919050565b6000613b52601883613fa2565b9150613b5d82614585565b602082019050919050565b6000613b75601c83613fa2565b9150613b80826145ae565b602082019050919050565b6000613b98601683613fa2565b9150613ba3826145d7565b602082019050919050565b613bb781614147565b82525050565b613bc681614151565b82525050565b6000613bd8828561394d565b9150613be4828461394d565b91508190509392505050565b6000613bfb82613b22565b9150819050919050565b6000602082019050613c1a60008301846138ae565b92915050565b6000608082019050613c3560008301876138ae565b613c4260208301866138ae565b613c4f6040830185613bae565b8181036060830152613c6181846138db565b905095945050505050565b6000602082019050613c8160008301846138bd565b92915050565b6000608082019050613c9c60008301876138cc565b613ca96020830186613bbd565b613cb660408301856138cc565b613cc360608301846138cc565b95945050505050565b60006020820190508181036000830152613ce68184613914565b905092915050565b60006020820190508181036000830152613d078161397e565b9050919050565b60006020820190508181036000830152613d27816139a1565b9050919050565b60006020820190508181036000830152613d47816139c4565b9050919050565b60006020820190508181036000830152613d67816139e7565b9050919050565b60006020820190508181036000830152613d8781613a0a565b9050919050565b60006020820190508181036000830152613da781613a2d565b9050919050565b60006020820190508181036000830152613dc781613a50565b9050919050565b60006020820190508181036000830152613de781613a73565b9050919050565b60006020820190508181036000830152613e0781613a96565b9050919050565b60006020820190508181036000830152613e2781613ab9565b9050919050565b60006020820190508181036000830152613e4781613adc565b9050919050565b60006020820190508181036000830152613e6781613aff565b9050919050565b60006020820190508181036000830152613e8781613b45565b9050919050565b60006020820190508181036000830152613ea781613b68565b9050919050565b60006020820190508181036000830152613ec781613b8b565b9050919050565b6000602082019050613ee36000830184613bae565b92915050565b6000613ef3613f04565b9050613eff82826141d2565b919050565b6000604051905090565b600067ffffffffffffffff821115613f2957613f2861430a565b5b613f3282614339565b9050602081019050919050565b600067ffffffffffffffff821115613f5a57613f5961430a565b5b613f6382614339565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fc982614147565b9150613fd483614147565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140095761400861427d565b5b828201905092915050565b600061401f82614147565b915061402a83614147565b92508261403a576140396142ac565b5b828204905092915050565b600061405082614147565b915061405b83614147565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140945761409361427d565b5b828202905092915050565b60006140aa82614147565b91506140b583614147565b9250828210156140c8576140c761427d565b5b828203905092915050565b60006140de82614127565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561418b578082015181840152602081019050614170565b8381111561419a576000848401525b50505050565b600060028204905060018216806141b857607f821691505b602082108114156141cc576141cb6142db565b5b50919050565b6141db82614339565b810181811067ffffffffffffffff821117156141fa576141f961430a565b5b80604052505050565b600061420e82614147565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142415761424061427d565b5b600182019050919050565b600061425782614147565b915061426283614147565b925082614272576142716142ac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5075626c69632073616c652068617320656e6465640000000000000000000000600082015250565b7f45786365656473206d6178696d756d20746f6b656e20737570706c7900000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f7065726174696f6e2069732070617573656400000000000000000000000000600082015250565b7f416d6f756e74206f662045746865722073656e74206973206e6f7420636f727260008201527f6563740000000000000000000000000000000000000000000000000000000000602082015250565b7f4d757374206d696e74206d696e696d756d206f66203120746f6b656e00000000600082015250565b7f4f472073616c652068617320656e646564000000000000000000000000000000600082015250565b7f5769746864726177206661696c65642e00000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f5075626c69632073616c6520686173206e6f7420626567756e00000000000000600082015250565b7f4f472073616c6520686173206e6f7420626567756e0000000000000000000000600082015250565b50565b7f42656173746c6973742073616c652068617320656e6465640000000000000000600082015250565b7f42656173746c6973742073616c6520686173206e6f7420626567756e00000000600082015250565b7f496e76616c6964206d696e74207369676e617475726500000000000000000000600082015250565b614609816140d3565b811461461457600080fd5b50565b614620816140e5565b811461462b57600080fd5b50565b614637816140f1565b811461464257600080fd5b50565b61464e816140fb565b811461465957600080fd5b50565b61466581614147565b811461467057600080fd5b50565b61467c81614151565b811461468757600080fd5b5056fea2646970667358221220be4cee9c80a6e2b7a732ddd11750392c043788582d5b111ef8165ccbd0ae6fd164736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000623e1130000000000000000000000000000000000000000000000000000000006240a620000000000000000000000000000000000000000000000000000000006241f7a000000000000000000000000067f2b1154ecf3809cf5fd9c030b3caa437f0e303000000000000000000000000f811eae4ee7158904bcef193a62dae1654fb7e17000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f6170692e6570696362656173742e696f2f6d657461646174612f6570696362656173742f0000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102465760003560e01c806370a0823111610139578063a5e70340116100b6578063c3454bcc1161007a578063c3454bcc14610818578063c87b56dd14610843578063e8d78a2f14610880578063e985e9c51461089c578063f2fde38b146108d9578063fa9b70181461090257610246565b8063a5e7034014610754578063a7a44f2b1461077f578063b02d7ba9146107a8578063b16723a9146107c4578063b88d4fde146107ef57610246565b806390069b42116100fd57806390069b421461068157806392d7eacd146106ac57806395364a84146106d557806395d89b4114610700578063a22cb4651461072b57610246565b806370a08231146105ae578063715018a6146105eb5780637c311388146106025780637d5028921461062b5780638da5cb5b1461065657610246565b806332cb6b0c116101c757806342842e0e1161018b57806342842e0e146104c957806355f804b3146104f25780635a5cf0011461051b578063611f3f10146105465780636352211e1461057157610246565b806332cb6b0c1461040a57806333fcaa51146104355780633406c7261461044c578063375a069a146104895780633ccfd60b146104b257610246565b80630a4010861161020e5780630a40108614610344578063112956621461036f57806318160ddd1461038b57806323b872dd146103b6578063307aebc9146103df57610246565b8063017254cf1461024b57806301ffc9a71461027657806306fdde03146102b3578063081812fc146102de578063095ea7b31461031b575b600080fd5b34801561025757600080fd5b5061026061092d565b60405161026d9190613ece565b60405180910390f35b34801561028257600080fd5b5061029d600480360381019061029891906137f2565b610933565b6040516102aa9190613c6c565b60405180910390f35b3480156102bf57600080fd5b506102c8610a15565b6040516102d59190613ccc565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190613885565b610aa7565b6040516103129190613c05565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d919061373f565b610b23565b005b34801561035057600080fd5b50610359610c2e565b6040516103669190613c6c565b60405180910390f35b6103896004803603810190610384919061377b565b610c41565b005b34801561039757600080fd5b506103a0610f5c565b6040516103ad9190613ece565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613639565b610f73565b005b3480156103eb57600080fd5b506103f4610f83565b6040516104019190613c6c565b60405180910390f35b34801561041657600080fd5b5061041f610f9d565b60405161042c9190613ece565b60405180910390f35b34801561044157600080fd5b5061044a610fa3565b005b34801561045857600080fd5b50610473600480360381019061046e91906135d4565b61104b565b6040516104809190613ece565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190613885565b611063565b005b3480156104be57600080fd5b506104c7611149565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190613639565b611288565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613844565b6112a8565b005b34801561052757600080fd5b5061053061133e565b60405161053d9190613c05565b60405180910390f35b34801561055257600080fd5b5061055b611364565b6040516105689190613ece565b60405180910390f35b34801561057d57600080fd5b5061059860048036038101906105939190613885565b61136f565b6040516105a59190613c05565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d091906135d4565b611385565b6040516105e29190613ece565b60405180910390f35b3480156105f757600080fd5b50610600611455565b005b34801561060e57600080fd5b5061062960048036038101906106249190613885565b6114dd565b005b34801561063757600080fd5b50610640611563565b60405161064d9190613ece565b60405180910390f35b34801561066257600080fd5b5061066b61156e565b6040516106789190613c05565b60405180910390f35b34801561068d57600080fd5b50610696611598565b6040516106a39190613ece565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190613885565b6115a3565b005b3480156106e157600080fd5b506106ea611629565b6040516106f79190613c6c565b60405180910390f35b34801561070c57600080fd5b50610715611643565b6040516107229190613ccc565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d9190613703565b6116d5565b005b34801561076057600080fd5b5061076961184d565b6040516107769190613ece565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a19190613885565b611853565b005b6107c260048036038101906107bd919061373f565b6118d9565b005b3480156107d057600080fd5b506107d9611b57565b6040516107e69190613c05565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613688565b611b7d565b005b34801561082457600080fd5b5061082d611bf9565b60405161083a9190613ece565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190613885565b611bff565b6040516108779190613ccc565b60405180910390f35b61089a6004803603810190610895919061377b565b611c9e565b005b3480156108a857600080fd5b506108c360048036038101906108be91906135fd565b611fb9565b6040516108d09190613c6c565b60405180910390f35b3480156108e557600080fd5b5061090060048036038101906108fb91906135d4565b61204d565b005b34801561090e57600080fd5b50610917612145565b6040516109249190613ece565b60405180910390f35b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e5750610a0d8261214a565b5b9050919050565b606060028054610a24906141a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a50906141a0565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b6000610ab2826121b4565b610ae8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2e8261136f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb5612202565b73ffffffffffffffffffffffffffffffffffffffff1614158015610be75750610be581610be0612202565b611fb9565b155b15610c1e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c2983838361220a565b505050565b600d60149054906101000a900460ff1681565b836000610c4c610f5c565b9050600d60149054906101000a900460ff16610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490613d4e565b60405180910390fd5b60008211610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790613d8e565b60405180910390fd5b61218f8282610cef9190613fbe565b1115610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613d0e565b60405180910390fd5b610d38611629565b15610dd2576000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060068382610d8f9190613fbe565b1115610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790613e0e565b60405180910390fd5b505b600954421015610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e90613e8e565b60405180910390fd5b600a544210610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290613e6e565b60405180910390fd5b66c3663566a5800086610e6e9190614045565b3414610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613d6e565b60405180910390fd5b600033604051602001610ec29190613c05565b604051602081830303815290604052805190602001209050610f09600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828888886122bc565b610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90613eae565b60405180910390fd5b610f52888861234b565b5050505050505050565b6000610f666123af565b6001546000540303905090565b610f7e8383836123b4565b505050565b6000600a544210158015610f985750600b5442105b905090565b61218f81565b610fab612202565b73ffffffffffffffffffffffffffffffffffffffff16610fc961156e565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690613dee565b60405180910390fd5b600d60149054906101000a900460ff1615600d60146101000a81548160ff021916908315150217905550565b600e6020528060005260406000206000915090505481565b61106b612202565b73ffffffffffffffffffffffffffffffffffffffff1661108961156e565b73ffffffffffffffffffffffffffffffffffffffff16146110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d690613dee565b60405180910390fd5b60006110e9610f5c565b905061218f82826110fa9190613fbe565b111561113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290613d0e565b60405180910390fd5b611145338361286a565b5050565b611151612202565b73ffffffffffffffffffffffffffffffffffffffff1661116f61156e565b73ffffffffffffffffffffffffffffffffffffffff16146111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90613dee565b60405180910390fd5b600073e91d76fec73df000ebc0094e08a25a95cb0146ab73ffffffffffffffffffffffffffffffffffffffff16476040516111ff90613bf0565b60006040518083038185875af1925050503d806000811461123c576040519150601f19603f3d011682016040523d82523d6000602084013e611241565b606091505b5050905080611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613dce565b60405180910390fd5b50565b6112a383838360405180602001604052806000815250611b7d565b505050565b6112b0612202565b73ffffffffffffffffffffffffffffffffffffffff166112ce61156e565b73ffffffffffffffffffffffffffffffffffffffff1614611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90613dee565b60405180910390fd5b80600f908051906020019061133a92919061338b565b5050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b66e6ed27d666800081565b600061137a82612888565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ed576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61145d612202565b73ffffffffffffffffffffffffffffffffffffffff1661147b61156e565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613dee565b60405180910390fd5b6114db6000612b17565b565b6114e5612202565b73ffffffffffffffffffffffffffffffffffffffff1661150361156e565b73ffffffffffffffffffffffffffffffffffffffff1614611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090613dee565b60405180910390fd5b8060098190555050565b66c3663566a5800081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b669fdf42f6e4800081565b6115ab612202565b73ffffffffffffffffffffffffffffffffffffffff166115c961156e565b73ffffffffffffffffffffffffffffffffffffffff161461161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690613dee565b60405180910390fd5b80600a8190555050565b6000600954421015801561163e5750600a5442105b905090565b606060038054611652906141a0565b80601f016020809104026020016040519081016040528092919081815260200182805461167e906141a0565b80156116cb5780601f106116a0576101008083540402835291602001916116cb565b820191906000526020600020905b8154815290600101906020018083116116ae57829003601f168201915b5050505050905090565b6116dd612202565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611742576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061174f612202565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117fc612202565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118419190613c6c565b60405180910390a35050565b600a5481565b61185b612202565b73ffffffffffffffffffffffffffffffffffffffff1661187961156e565b73ffffffffffffffffffffffffffffffffffffffff16146118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690613dee565b60405180910390fd5b80600b8190555050565b8060006118e4610f5c565b9050600d60149054906101000a900460ff16611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90613d4e565b60405180910390fd5b60008211611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90613d8e565b60405180910390fd5b61218f82826119879190613fbe565b11156119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf90613d0e565b60405180910390fd5b6119d0611629565b15611a6a576000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060068382611a279190613fbe565b1115611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f90613e0e565b60405180910390fd5b505b600a54421015611aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa690613e2e565b60405180910390fd5b600b544210611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea90613cee565b60405180910390fd5b66e6ed27d666800083611b069190614045565b3414611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90613d6e565b60405180910390fd5b611b51848461234b565b50505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b888484846123b4565b611ba78373ffffffffffffffffffffffffffffffffffffffff16612bdd565b8015611bbc5750611bba84848484612c00565b155b15611bf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b6060611c0a826121b4565b611c40576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c4a612d60565b9050600081511415611c6b5760405180602001604052806000815250611c96565b80611c7584612df2565b604051602001611c86929190613bcc565b6040516020818303038152906040525b915050919050565b836000611ca9610f5c565b9050600d60149054906101000a900460ff16611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190613d4e565b60405180910390fd5b60008211611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490613d8e565b60405180910390fd5b61218f8282611d4c9190613fbe565b1115611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8490613d0e565b60405180910390fd5b611d95611629565b15611e2f576000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060068382611dec9190613fbe565b1115611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2490613e0e565b60405180910390fd5b505b600954421015611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90613e4e565b60405180910390fd5b600a544210611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90613dae565b60405180910390fd5b669fdf42f6e4800086611ecb9190614045565b3414611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0390613d6e565b60405180910390fd5b600033604051602001611f1f9190613c05565b604051602081830303815290604052805190602001209050611f66600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828888886122bc565b611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90613eae565b60405180910390fd5b611faf888861234b565b5050505050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612055612202565b73ffffffffffffffffffffffffffffffffffffffff1661207361156e565b73ffffffffffffffffffffffffffffffffffffffff16146120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090613dee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090613d2e565b60405180910390fd5b61214281612b17565b50565b600681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816121bf6123af565b111580156121ce575060005482105b80156121fb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080600186848787604051600081526020016040526040516122e29493929190613c87565b6020604051602081039080840390855afa158015612304573d6000803e3d6000fd5b5050506020604051035190508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161491505095945050505050565b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239a9190613fbe565b925050819055506123ab828261286a565b5050565b600090565b60006123bf82612888565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461242a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661244b612202565b73ffffffffffffffffffffffffffffffffffffffff16148061247a575061247985612474612202565b611fb9565b5b806124bf5750612488612202565b73ffffffffffffffffffffffffffffffffffffffff166124a784610aa7565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124f8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561255f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61256c8585856001612f9f565b6125786000848761220a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127f85760005482146127f757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128638585856001612fa5565b5050505050565b612884828260405180602001604052806000815250612fab565b5050565b612890613411565b60008290508061289e6123af565b111580156128ad575060005481105b15612ae0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ade57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129c2578092505050612b12565b5b600115612add57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ad8578092505050612b12565b6129c3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c26612202565b8786866040518563ffffffff1660e01b8152600401612c489493929190613c20565b602060405180830381600087803b158015612c6257600080fd5b505af1925050508015612c9357506040513d601f19601f82011682018060405250810190612c90919061381b565b60015b612d0d573d8060008114612cc3576040519150601f19603f3d011682016040523d82523d6000602084013e612cc8565b606091505b50600081511415612d05576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612d6f906141a0565b80601f0160208091040260200160405190810160405280929190818152602001828054612d9b906141a0565b8015612de85780601f10612dbd57610100808354040283529160200191612de8565b820191906000526020600020905b815481529060010190602001808311612dcb57829003601f168201915b5050505050905090565b60606000821415612e3a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f9a565b600082905060005b60008214612e6c578080612e5590614203565b915050600a82612e659190614014565b9150612e42565b60008167ffffffffffffffff811115612eae577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ee05781602001600182028036833780820191505090505b5090505b60008514612f9357600182612ef9919061409f565b9150600a85612f08919061424c565b6030612f149190613fbe565b60f81b818381518110612f50577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f8c9190614014565b9450612ee4565b8093505050505b919050565b50505050565b50505050565b612fb88383836001612fbd565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561302a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613065576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130726000868387612f9f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561323c575061323b8773ffffffffffffffffffffffffffffffffffffffff16612bdd565b5b15613302575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132b16000888480600101955088612c00565b6132e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156132425782600054146132fd57600080fd5b61336e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613303575b8160008190555050506133846000868387612fa5565b5050505050565b828054613397906141a0565b90600052602060002090601f0160209004810192826133b95760008555613400565b82601f106133d257805160ff1916838001178555613400565b82800160010185558215613400579182015b828111156133ff5782518255916020019190600101906133e4565b5b50905061340d9190613454565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561346d576000816000905550600101613455565b5090565b600061348461347f84613f0e565b613ee9565b90508281526020810184848401111561349c57600080fd5b6134a784828561415e565b509392505050565b60006134c26134bd84613f3f565b613ee9565b9050828152602081018484840111156134da57600080fd5b6134e584828561415e565b509392505050565b6000813590506134fc81614600565b92915050565b60008135905061351181614617565b92915050565b6000813590506135268161462e565b92915050565b60008135905061353b81614645565b92915050565b60008151905061355081614645565b92915050565b600082601f83011261356757600080fd5b8135613577848260208601613471565b91505092915050565b600082601f83011261359157600080fd5b81356135a18482602086016134af565b91505092915050565b6000813590506135b98161465c565b92915050565b6000813590506135ce81614673565b92915050565b6000602082840312156135e657600080fd5b60006135f4848285016134ed565b91505092915050565b6000806040838503121561361057600080fd5b600061361e858286016134ed565b925050602061362f858286016134ed565b9150509250929050565b60008060006060848603121561364e57600080fd5b600061365c868287016134ed565b935050602061366d868287016134ed565b925050604061367e868287016135aa565b9150509250925092565b6000806000806080858703121561369e57600080fd5b60006136ac878288016134ed565b94505060206136bd878288016134ed565b93505060406136ce878288016135aa565b925050606085013567ffffffffffffffff8111156136eb57600080fd5b6136f787828801613556565b91505092959194509250565b6000806040838503121561371657600080fd5b6000613724858286016134ed565b925050602061373585828601613502565b9150509250929050565b6000806040838503121561375257600080fd5b6000613760858286016134ed565b9250506020613771858286016135aa565b9150509250929050565b600080600080600060a0868803121561379357600080fd5b60006137a1888289016134ed565b95505060206137b2888289016135aa565b94505060406137c388828901613517565b93505060606137d488828901613517565b92505060806137e5888289016135bf565b9150509295509295909350565b60006020828403121561380457600080fd5b60006138128482850161352c565b91505092915050565b60006020828403121561382d57600080fd5b600061383b84828501613541565b91505092915050565b60006020828403121561385657600080fd5b600082013567ffffffffffffffff81111561387057600080fd5b61387c84828501613580565b91505092915050565b60006020828403121561389757600080fd5b60006138a5848285016135aa565b91505092915050565b6138b7816140d3565b82525050565b6138c6816140e5565b82525050565b6138d5816140f1565b82525050565b60006138e682613f70565b6138f08185613f86565b935061390081856020860161416d565b61390981614339565b840191505092915050565b600061391f82613f7b565b6139298185613fa2565b935061393981856020860161416d565b61394281614339565b840191505092915050565b600061395882613f7b565b6139628185613fb3565b935061397281856020860161416d565b80840191505092915050565b600061398b601583613fa2565b91506139968261434a565b602082019050919050565b60006139ae601c83613fa2565b91506139b982614373565b602082019050919050565b60006139d1602683613fa2565b91506139dc8261439c565b604082019050919050565b60006139f4601383613fa2565b91506139ff826143eb565b602082019050919050565b6000613a17602383613fa2565b9150613a2282614414565b604082019050919050565b6000613a3a601c83613fa2565b9150613a4582614463565b602082019050919050565b6000613a5d601183613fa2565b9150613a688261448c565b602082019050919050565b6000613a80601083613fa2565b9150613a8b826144b5565b602082019050919050565b6000613aa3602083613fa2565b9150613aae826144de565b602082019050919050565b6000613ac6601c83613fa2565b9150613ad182614507565b602082019050919050565b6000613ae9601983613fa2565b9150613af482614530565b602082019050919050565b6000613b0c601583613fa2565b9150613b1782614559565b602082019050919050565b6000613b2f600083613f97565b9150613b3a82614582565b600082019050919050565b6000613b52601883613fa2565b9150613b5d82614585565b602082019050919050565b6000613b75601c83613fa2565b9150613b80826145ae565b602082019050919050565b6000613b98601683613fa2565b9150613ba3826145d7565b602082019050919050565b613bb781614147565b82525050565b613bc681614151565b82525050565b6000613bd8828561394d565b9150613be4828461394d565b91508190509392505050565b6000613bfb82613b22565b9150819050919050565b6000602082019050613c1a60008301846138ae565b92915050565b6000608082019050613c3560008301876138ae565b613c4260208301866138ae565b613c4f6040830185613bae565b8181036060830152613c6181846138db565b905095945050505050565b6000602082019050613c8160008301846138bd565b92915050565b6000608082019050613c9c60008301876138cc565b613ca96020830186613bbd565b613cb660408301856138cc565b613cc360608301846138cc565b95945050505050565b60006020820190508181036000830152613ce68184613914565b905092915050565b60006020820190508181036000830152613d078161397e565b9050919050565b60006020820190508181036000830152613d27816139a1565b9050919050565b60006020820190508181036000830152613d47816139c4565b9050919050565b60006020820190508181036000830152613d67816139e7565b9050919050565b60006020820190508181036000830152613d8781613a0a565b9050919050565b60006020820190508181036000830152613da781613a2d565b9050919050565b60006020820190508181036000830152613dc781613a50565b9050919050565b60006020820190508181036000830152613de781613a73565b9050919050565b60006020820190508181036000830152613e0781613a96565b9050919050565b60006020820190508181036000830152613e2781613ab9565b9050919050565b60006020820190508181036000830152613e4781613adc565b9050919050565b60006020820190508181036000830152613e6781613aff565b9050919050565b60006020820190508181036000830152613e8781613b45565b9050919050565b60006020820190508181036000830152613ea781613b68565b9050919050565b60006020820190508181036000830152613ec781613b8b565b9050919050565b6000602082019050613ee36000830184613bae565b92915050565b6000613ef3613f04565b9050613eff82826141d2565b919050565b6000604051905090565b600067ffffffffffffffff821115613f2957613f2861430a565b5b613f3282614339565b9050602081019050919050565b600067ffffffffffffffff821115613f5a57613f5961430a565b5b613f6382614339565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fc982614147565b9150613fd483614147565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140095761400861427d565b5b828201905092915050565b600061401f82614147565b915061402a83614147565b92508261403a576140396142ac565b5b828204905092915050565b600061405082614147565b915061405b83614147565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140945761409361427d565b5b828202905092915050565b60006140aa82614147565b91506140b583614147565b9250828210156140c8576140c761427d565b5b828203905092915050565b60006140de82614127565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561418b578082015181840152602081019050614170565b8381111561419a576000848401525b50505050565b600060028204905060018216806141b857607f821691505b602082108114156141cc576141cb6142db565b5b50919050565b6141db82614339565b810181811067ffffffffffffffff821117156141fa576141f961430a565b5b80604052505050565b600061420e82614147565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142415761424061427d565b5b600182019050919050565b600061425782614147565b915061426283614147565b925082614272576142716142ac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5075626c69632073616c652068617320656e6465640000000000000000000000600082015250565b7f45786365656473206d6178696d756d20746f6b656e20737570706c7900000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f7065726174696f6e2069732070617573656400000000000000000000000000600082015250565b7f416d6f756e74206f662045746865722073656e74206973206e6f7420636f727260008201527f6563740000000000000000000000000000000000000000000000000000000000602082015250565b7f4d757374206d696e74206d696e696d756d206f66203120746f6b656e00000000600082015250565b7f4f472073616c652068617320656e646564000000000000000000000000000000600082015250565b7f5769746864726177206661696c65642e00000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f5075626c69632073616c6520686173206e6f7420626567756e00000000000000600082015250565b7f4f472073616c6520686173206e6f7420626567756e0000000000000000000000600082015250565b50565b7f42656173746c6973742073616c652068617320656e6465640000000000000000600082015250565b7f42656173746c6973742073616c6520686173206e6f7420626567756e00000000600082015250565b7f496e76616c6964206d696e74207369676e617475726500000000000000000000600082015250565b614609816140d3565b811461461457600080fd5b50565b614620816140e5565b811461462b57600080fd5b50565b614637816140f1565b811461464257600080fd5b50565b61464e816140fb565b811461465957600080fd5b50565b61466581614147565b811461467057600080fd5b50565b61467c81614151565b811461468757600080fd5b5056fea2646970667358221220be4cee9c80a6e2b7a732ddd11750392c043788582d5b111ef8165ccbd0ae6fd164736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000623e1130000000000000000000000000000000000000000000000000000000006240a620000000000000000000000000000000000000000000000000000000006241f7a000000000000000000000000067f2b1154ecf3809cf5fd9c030b3caa437f0e303000000000000000000000000f811eae4ee7158904bcef193a62dae1654fb7e17000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f6170692e6570696362656173742e696f2f6d657461646174612f6570696362656173742f0000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string): https://api.epicbeast.io/metadata/epicbeast/
Arg [1] : presaleAt_ (uint256): 1648234800
Arg [2] : launchAt_ (uint256): 1648404000
Arg [3] : launchEndAt_ (uint256): 1648490400
Arg [4] : ogSigner_ (address): 0x67F2b1154Ecf3809Cf5fd9c030B3CAa437F0e303
Arg [5] : beastListSigner_ (address): 0xF811Eae4ee7158904BCeF193a62dae1654FB7E17
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 00000000000000000000000000000000000000000000000000000000623e1130
Arg [2] : 000000000000000000000000000000000000000000000000000000006240a620
Arg [3] : 000000000000000000000000000000000000000000000000000000006241f7a0
Arg [4] : 00000000000000000000000067f2b1154ecf3809cf5fd9c030b3caa437f0e303
Arg [5] : 000000000000000000000000f811eae4ee7158904bcef193a62dae1654fb7e17
Arg [6] : 000000000000000000000000000000000000000000000000000000000000002c
Arg [7] : 68747470733a2f2f6170692e6570696362656173742e696f2f6d657461646174
Arg [8] : 612f6570696362656173742f0000000000000000000000000000000000000000
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.