Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 5 from a total of 5 transactions
Loading...
Loading
Contract Name:
BabblerFriendsUniverse
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract BabblerFriendsUniverse is ERC721A, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 100000000000000000; uint256 public maxSupply = 998; uint256 public maxOgMint = 3; uint256 public maxPublicSaleMint = 5; bool public revealed = false; bool public presale = false; bool public publicsale = false; mapping(address => uint256) public publicMintedBalance; mapping(address => uint256) public ogMintedBalance; bytes32 public ogRoot; constructor() ERC721A("Babbler Friends Universe", "BFU") { setNotRevealedURI("ipfs://QmQBhgYnrvvb3k9bwdFoiQDCGz2SXXvuyucfLzi4MxQdk4/1.json"); } // ====== Settings ====== modifier callerIsUser() { require(tx.origin == msg.sender, "cannot be called by a contract"); _; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _startTokenId() internal pure override returns (uint256){ return 1; } // // ====== public ====== function mint(uint256 _mintAmount) public payable callerIsUser { // Is publicsale active require(publicsale, "publicsale is not active"); // // Amount and payment control uint256 supply = totalSupply(); require(publicMintedBalance[msg.sender] + _mintAmount <= maxPublicSaleMint, "max NFT limit exceeded for this user"); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); require(msg.value >= cost * _mintAmount, "insufficient funds"); // // Increment balance before mint publicMintedBalance[msg.sender] += _mintAmount; // _safeMint(msg.sender, _mintAmount); } function ogMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable callerIsUser { // Is presale active require(presale, "presale is not active"); // // Whitelist Requires bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, ogRoot, leaf), "user is not in the oglist"); require(ogMintedBalance[msg.sender] + _mintAmount <= maxOgMint, "max NFT limit exceeded for this og"); // // Amount and payments control uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); require(msg.value >= cost * _mintAmount, "insufficient funds"); // // Increment balance before mint ogMintedBalance[msg.sender] += _mintAmount; // _safeMint(msg.sender, _mintAmount); } function ownerMint(uint256 _mintAmount) public onlyOwner { // Amount Control uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); // _safeMint(msg.sender, _mintAmount); } // ====== View ====== function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } /// @dev Returns the tokenIds of the address. O(totalSupply) in complexity. function tokensOfOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256[] memory a = new uint256[](balanceOf(owner)); uint256 end = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; for (uint256 i; i < end; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { a[tokenIdsIdx++] = i; } } return a; } } // ====== Only Owner ====== function reveal() public onlyOwner { revealed = true; } // Whitelist and OG roots (presale) function setOgRoot(bytes32 _ogRoot) public onlyOwner{ ogRoot = _ogRoot; } // // Max Mint Amounts - Cost function setMaxOgMint(uint256 _newMaxOgMint) public onlyOwner { maxOgMint = _newMaxOgMint; } function setMaxPublicSaleMint(uint256 _newMaxPublicSaleMint) public onlyOwner { maxPublicSaleMint = _newMaxPublicSaleMint; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } // // Metadata function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } // // Sale states function setPresale() public onlyOwner { presale = !presale; } function setPublicsale() public onlyOwner { publicsale = !publicsale; } // function withdraw() public payable onlyOwner { // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ============================================================================= } }
// 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 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // 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/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 (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/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":[],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxOgMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ogMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxOgMint","type":"uint256"}],"name":"setMaxOgMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPublicSaleMint","type":"uint256"}],"name":"setMaxPublicSaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_ogRoot","type":"bytes32"}],"name":"setOgRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000519291906200037f565b5067016345785d8a0000600c556103e6600d556003600e556005600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff021916908315150217905550348015620000cc57600080fd5b506040518060400160405280601881526020017f426162626c657220467269656e647320556e69766572736500000000000000008152506040518060400160405280600381526020017f42465500000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001519291906200037f565b5080600390805190602001906200016a9291906200037f565b506200017b620001d360201b60201c565b6000819055505050620001a362000197620001dc60201b60201c565b620001e460201b60201c565b620001cd6040518060600160405280603c8152602001620051c3603c9139620002aa60201b60201c565b62000517565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ba620001dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e06200035560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003309062000456565b60405180910390fd5b80600b9080519060200190620003519291906200037f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200038d9062000489565b90600052602060002090601f016020900481019282620003b15760008555620003fd565b82601f10620003cc57805160ff1916838001178555620003fd565b82800160010185558215620003fd579182015b82811115620003fc578251825591602001919060010190620003df565b5b5090506200040c919062000410565b5090565b5b808211156200042b57600081600090555060010162000411565b5090565b60006200043e60208362000478565b91506200044b82620004ee565b602082019050919050565b6000602082019050818103600083015262000471816200042f565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004a257607f821691505b60208210811415620004b957620004b8620004bf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614c9c80620005276000396000f3fe6080604052600436106102725760003560e01c80638da5cb5b1161014f578063c8792ba1116100c1578063e65242241161007a578063e652422414610903578063e985e9c51461091a578063f19e75d414610957578063f2c4ce1e14610980578063f2fde38b146109a9578063fdea8e0b146109d257610272565b8063c8792ba1146107f5578063c87b56dd1461081e578063d5abeb011461085b578063da3ef23f14610886578063dcc40744146108af578063e5dd9943146108c657610272565b8063a475b5dd11610113578063a475b5dd146106f9578063a4de5c2a14610710578063b592d04414610739578063b88d4fde14610776578063b94805a21461079f578063c6682862146107ca57610272565b80638da5cb5b14610633578063903afdc01461065e57806395d89b4114610689578063a0712d68146106b4578063a22cb465146106d057610272565b806342842e0e116101e85780636352211e116101ac5780636352211e1461050f5780636c0360eb1461054c578063704e3d9d1461057757806370a08231146105a2578063715018a6146105df5780638462151c146105f657610272565b806342842e0e1461044057806344a0d68a14610469578063518302271461049257806355f804b3146104bd5780635602fd32146104e657610272565b806313faede61161023a57806313faede61461037057806318160ddd1461039b57806323b872dd146103c65780632b314dc6146103ef578063317764781461040b5780633ccfd60b1461043657610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063081c8c441461031c578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613c7e565b6109fd565b6040516102ab9190614259565b60405180910390f35b3480156102c057600080fd5b506102c9610adf565b6040516102d6919061428f565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613d21565b610b71565b60405161031391906141d0565b60405180910390f35b34801561032857600080fd5b50610331610bed565b60405161033e919061428f565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613c11565b610c7b565b005b34801561037c57600080fd5b50610385610d86565b6040516103929190614431565b60405180910390f35b3480156103a757600080fd5b506103b0610d8c565b6040516103bd9190614431565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190613afb565b610da3565b005b61040960048036038101906104049190613d4e565b610db3565b005b34801561041757600080fd5b5061042061110d565b60405161042d9190614431565b60405180910390f35b61043e611113565b005b34801561044c57600080fd5b5061046760048036038101906104629190613afb565b61120f565b005b34801561047557600080fd5b50610490600480360381019061048b9190613d21565b61122f565b005b34801561049e57600080fd5b506104a76112b5565b6040516104b49190614259565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df9190613cd8565b6112c8565b005b3480156104f257600080fd5b5061050d60048036038101906105089190613d21565b61135e565b005b34801561051b57600080fd5b5061053660048036038101906105319190613d21565b6113e4565b60405161054391906141d0565b60405180910390f35b34801561055857600080fd5b506105616113fa565b60405161056e919061428f565b60405180910390f35b34801561058357600080fd5b5061058c611488565b6040516105999190614431565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613a8e565b61148e565b6040516105d69190614431565b60405180910390f35b3480156105eb57600080fd5b506105f461155e565b005b34801561060257600080fd5b5061061d60048036038101906106189190613a8e565b6115e6565b60405161062a9190614237565b60405180910390f35b34801561063f57600080fd5b506106486117dd565b60405161065591906141d0565b60405180910390f35b34801561066a57600080fd5b50610673611807565b6040516106809190614274565b60405180910390f35b34801561069557600080fd5b5061069e61180d565b6040516106ab919061428f565b60405180910390f35b6106ce60048036038101906106c99190613d21565b61189f565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190613bd1565b611b3e565b005b34801561070557600080fd5b5061070e611cb6565b005b34801561071c57600080fd5b5061073760048036038101906107329190613d21565b611d4f565b005b34801561074557600080fd5b50610760600480360381019061075b9190613a8e565b611dd5565b60405161076d9190614431565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190613b4e565b611ded565b005b3480156107ab57600080fd5b506107b4611e69565b6040516107c19190614259565b60405180910390f35b3480156107d657600080fd5b506107df611e7c565b6040516107ec919061428f565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190613c51565b611f0a565b005b34801561082a57600080fd5b5061084560048036038101906108409190613d21565b611f90565b604051610852919061428f565b60405180910390f35b34801561086757600080fd5b506108706120e9565b60405161087d9190614431565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a89190613cd8565b6120ef565b005b3480156108bb57600080fd5b506108c4612185565b005b3480156108d257600080fd5b506108ed60048036038101906108e89190613a8e565b61222d565b6040516108fa9190614431565b60405180910390f35b34801561090f57600080fd5b50610918612245565b005b34801561092657600080fd5b50610941600480360381019061093c9190613abb565b6122ed565b60405161094e9190614259565b60405180910390f35b34801561096357600080fd5b5061097e60048036038101906109799190613d21565b612381565b005b34801561098c57600080fd5b506109a760048036038101906109a29190613cd8565b6124aa565b005b3480156109b557600080fd5b506109d060048036038101906109cb9190613a8e565b612540565b005b3480156109de57600080fd5b506109e7612638565b6040516109f49190614259565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ac857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad85750610ad78261264b565b5b9050919050565b606060028054610aee90614744565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1a90614744565b8015610b675780601f10610b3c57610100808354040283529160200191610b67565b820191906000526020600020905b815481529060010190602001808311610b4a57829003601f168201915b5050505050905090565b6000610b7c826126b5565b610bb2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610bfa90614744565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2690614744565b8015610c735780601f10610c4857610100808354040283529160200191610c73565b820191906000526020600020905b815481529060010190602001808311610c5657829003601f168201915b505050505081565b6000610c86826113e4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cee576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d0d612703565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d3f5750610d3d81610d38612703565b6122ed565b155b15610d76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d8183838361270b565b505050565b600c5481565b6000610d966127bd565b6001546000540303905090565b610dae8383836127c6565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e18906143d1565b60405180910390fd5b601060019054906101000a900460ff16610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790614331565b60405180910390fd5b600033604051602001610e83919061416f565b604051602081830303815290604052805190602001209050610ee9838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060135483612c7c565b610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f906143f1565b60405180910390fd5b600e5484601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f76919061456f565b1115610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90614311565b60405180910390fd5b6000610fc1610d8c565b905060008511611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90614411565b60405180910390fd5b600d548582611015919061456f565b1115611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d906142f1565b60405180910390fd5b84600c5461106491906145f6565b3410156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d906143b1565b60405180910390fd5b84601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110f5919061456f565b925050819055506111063386612c93565b5050505050565b600e5481565b61111b612703565b73ffffffffffffffffffffffffffffffffffffffff166111396117dd565b73ffffffffffffffffffffffffffffffffffffffff161461118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690614371565b60405180910390fd5b60006111996117dd565b73ffffffffffffffffffffffffffffffffffffffff16476040516111bc906141bb565b60006040518083038185875af1925050503d80600081146111f9576040519150601f19603f3d011682016040523d82523d6000602084013e6111fe565b606091505b505090508061120c57600080fd5b50565b61122a83838360405180602001604052806000815250611ded565b505050565b611237612703565b73ffffffffffffffffffffffffffffffffffffffff166112556117dd565b73ffffffffffffffffffffffffffffffffffffffff16146112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290614371565b60405180910390fd5b80600c8190555050565b601060009054906101000a900460ff1681565b6112d0612703565b73ffffffffffffffffffffffffffffffffffffffff166112ee6117dd565b73ffffffffffffffffffffffffffffffffffffffff1614611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b90614371565b60405180910390fd5b806009908051906020019061135a9291906137f4565b5050565b611366612703565b73ffffffffffffffffffffffffffffffffffffffff166113846117dd565b73ffffffffffffffffffffffffffffffffffffffff16146113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190614371565b60405180910390fd5b80600f8190555050565b60006113ef82612cb1565b600001519050919050565b6009805461140790614744565b80601f016020809104026020016040519081016040528092919081815260200182805461143390614744565b80156114805780601f1061145557610100808354040283529160200191611480565b820191906000526020600020905b81548152906001019060200180831161146357829003601f168201915b505050505081565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611566612703565b73ffffffffffffffffffffffffffffffffffffffff166115846117dd565b73ffffffffffffffffffffffffffffffffffffffff16146115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190614371565b60405180910390fd5b6115e46000612f40565b565b606060006115f38361148e565b67ffffffffffffffff81111561160c5761160b614901565b5b60405190808252806020026020018201604052801561163a5781602001602082028036833780820191505090505b50905060008054905060008060005b838110156117d0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561172657506117c3565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461176657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117c157818685806001019650815181106117b4576117b36148d2565b5b6020026020010181815250505b505b8080600101915050611649565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b60606003805461181c90614744565b80601f016020809104026020016040519081016040528092919081815260200182805461184890614744565b80156118955780601f1061186a57610100808354040283529160200191611895565b820191906000526020600020905b81548152906001019060200180831161187857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906143d1565b60405180910390fd5b601060029054906101000a900460ff1661195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390614351565b60405180910390fd5b6000611966610d8c565b9050600f5482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b6919061456f565b11156119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906142b1565b60405180910390fd5b60008211611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3190614411565b60405180910390fd5b600d548282611a49919061456f565b1115611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a81906142f1565b60405180910390fd5b81600c54611a9891906145f6565b341015611ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad1906143b1565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b29919061456f565b92505081905550611b3a3383612c93565b5050565b611b46612703565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bab576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bb8612703565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c65612703565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611caa9190614259565b60405180910390a35050565b611cbe612703565b73ffffffffffffffffffffffffffffffffffffffff16611cdc6117dd565b73ffffffffffffffffffffffffffffffffffffffff1614611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2990614371565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b611d57612703565b73ffffffffffffffffffffffffffffffffffffffff16611d756117dd565b73ffffffffffffffffffffffffffffffffffffffff1614611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290614371565b60405180910390fd5b80600e8190555050565b60116020528060005260406000206000915090505481565b611df88484846127c6565b611e178373ffffffffffffffffffffffffffffffffffffffff16613006565b8015611e2c5750611e2a84848484613029565b155b15611e63576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b601060029054906101000a900460ff1681565b600a8054611e8990614744565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb590614744565b8015611f025780601f10611ed757610100808354040283529160200191611f02565b820191906000526020600020905b815481529060010190602001808311611ee557829003601f168201915b505050505081565b611f12612703565b73ffffffffffffffffffffffffffffffffffffffff16611f306117dd565b73ffffffffffffffffffffffffffffffffffffffff1614611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90614371565b60405180910390fd5b8060138190555050565b6060611f9b826126b5565b611fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd190614391565b60405180910390fd5b60001515601060009054906101000a900460ff161515141561208857600b805461200390614744565b80601f016020809104026020016040519081016040528092919081815260200182805461202f90614744565b801561207c5780601f106120515761010080835404028352916020019161207c565b820191906000526020600020905b81548152906001019060200180831161205f57829003601f168201915b505050505090506120e4565b6000612092613189565b905060008151116120b257604051806020016040528060008152506120e0565b806120bc8461321b565b600a6040516020016120d09392919061418a565b6040516020818303038152906040525b9150505b919050565b600d5481565b6120f7612703565b73ffffffffffffffffffffffffffffffffffffffff166121156117dd565b73ffffffffffffffffffffffffffffffffffffffff161461216b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216290614371565b60405180910390fd5b80600a90805190602001906121819291906137f4565b5050565b61218d612703565b73ffffffffffffffffffffffffffffffffffffffff166121ab6117dd565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890614371565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b60126020528060005260406000206000915090505481565b61224d612703565b73ffffffffffffffffffffffffffffffffffffffff1661226b6117dd565b73ffffffffffffffffffffffffffffffffffffffff16146122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b890614371565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612389612703565b73ffffffffffffffffffffffffffffffffffffffff166123a76117dd565b73ffffffffffffffffffffffffffffffffffffffff16146123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f490614371565b60405180910390fd5b6000612407610d8c565b90506000821161244c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244390614411565b60405180910390fd5b600d54828261245b919061456f565b111561249c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612493906142f1565b60405180910390fd5b6124a63383612c93565b5050565b6124b2612703565b73ffffffffffffffffffffffffffffffffffffffff166124d06117dd565b73ffffffffffffffffffffffffffffffffffffffff1614612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90614371565b60405180910390fd5b80600b908051906020019061253c9291906137f4565b5050565b612548612703565b73ffffffffffffffffffffffffffffffffffffffff166125666117dd565b73ffffffffffffffffffffffffffffffffffffffff16146125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b390614371565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561262c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612623906142d1565b60405180910390fd5b61263581612f40565b50565b601060019054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816126c06127bd565b111580156126cf575060005482105b80156126fc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006127d182612cb1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461283c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661285d612703565b73ffffffffffffffffffffffffffffffffffffffff16148061288c575061288b85612886612703565b6122ed565b5b806128d1575061289a612703565b73ffffffffffffffffffffffffffffffffffffffff166128b984610b71565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061290a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612971576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61297e858585600161337c565b61298a6000848761270b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c0a576000548214612c0957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c758585856001613382565b5050505050565b600082612c898584613388565b1490509392505050565b612cad8282604051806020016040528060008152506133fd565b5050565b612cb961387a565b600082905080612cc76127bd565b11158015612cd6575060005481105b15612f09576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612f0757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612deb578092505050612f3b565b5b600115612f0657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f01578092505050612f3b565b612dec565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304f612703565b8786866040518563ffffffff1660e01b815260040161307194939291906141eb565b602060405180830381600087803b15801561308b57600080fd5b505af19250505080156130bc57506040513d601f19601f820116820180604052508101906130b99190613cab565b60015b613136573d80600081146130ec576040519150601f19603f3d011682016040523d82523d6000602084013e6130f1565b606091505b5060008151141561312e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461319890614744565b80601f01602080910402602001604051908101604052809291908181526020018280546131c490614744565b80156132115780601f106131e657610100808354040283529160200191613211565b820191906000526020600020905b8154815290600101906020018083116131f457829003601f168201915b5050505050905090565b60606000821415613263576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613377565b600082905060005b6000821461329557808061327e906147a7565b915050600a8261328e91906145c5565b915061326b565b60008167ffffffffffffffff8111156132b1576132b0614901565b5b6040519080825280601f01601f1916602001820160405280156132e35781602001600182028036833780820191505090505b5090505b60008514613370576001826132fc9190614650565b9150600a8561330b9190614814565b6030613317919061456f565b60f81b81838151811061332d5761332c6148d2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561336991906145c5565b94506132e7565b8093505050505b919050565b50505050565b50505050565b60008082905060005b84518110156133f25760008582815181106133af576133ae6148d2565b5b602002602001015190508083116133d1576133ca838261340f565b92506133de565b6133db818461340f565b92505b5080806133ea906147a7565b915050613391565b508091505092915050565b61340a8383836001613426565b505050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613493576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156134ce576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134db600086838761337c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156136a557506136a48773ffffffffffffffffffffffffffffffffffffffff16613006565b5b1561376b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461371a6000888480600101955088613029565b613750576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156136ab57826000541461376657600080fd5b6137d7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561376c575b8160008190555050506137ed6000868387613382565b5050505050565b82805461380090614744565b90600052602060002090601f0160209004810192826138225760008555613869565b82601f1061383b57805160ff1916838001178555613869565b82800160010185558215613869579182015b8281111561386857825182559160200191906001019061384d565b5b50905061387691906138bd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138d65760008160009055506001016138be565b5090565b60006138ed6138e884614471565b61444c565b9050828152602081018484840111156139095761390861493f565b5b613914848285614702565b509392505050565b600061392f61392a846144a2565b61444c565b90508281526020810184848401111561394b5761394a61493f565b5b613956848285614702565b509392505050565b60008135905061396d81614bf3565b92915050565b60008083601f84011261398957613988614935565b5b8235905067ffffffffffffffff8111156139a6576139a5614930565b5b6020830191508360208202830111156139c2576139c161493a565b5b9250929050565b6000813590506139d881614c0a565b92915050565b6000813590506139ed81614c21565b92915050565b600081359050613a0281614c38565b92915050565b600081519050613a1781614c38565b92915050565b600082601f830112613a3257613a31614935565b5b8135613a428482602086016138da565b91505092915050565b600082601f830112613a6057613a5f614935565b5b8135613a7084826020860161391c565b91505092915050565b600081359050613a8881614c4f565b92915050565b600060208284031215613aa457613aa3614949565b5b6000613ab28482850161395e565b91505092915050565b60008060408385031215613ad257613ad1614949565b5b6000613ae08582860161395e565b9250506020613af18582860161395e565b9150509250929050565b600080600060608486031215613b1457613b13614949565b5b6000613b228682870161395e565b9350506020613b338682870161395e565b9250506040613b4486828701613a79565b9150509250925092565b60008060008060808587031215613b6857613b67614949565b5b6000613b768782880161395e565b9450506020613b878782880161395e565b9350506040613b9887828801613a79565b925050606085013567ffffffffffffffff811115613bb957613bb8614944565b5b613bc587828801613a1d565b91505092959194509250565b60008060408385031215613be857613be7614949565b5b6000613bf68582860161395e565b9250506020613c07858286016139c9565b9150509250929050565b60008060408385031215613c2857613c27614949565b5b6000613c368582860161395e565b9250506020613c4785828601613a79565b9150509250929050565b600060208284031215613c6757613c66614949565b5b6000613c75848285016139de565b91505092915050565b600060208284031215613c9457613c93614949565b5b6000613ca2848285016139f3565b91505092915050565b600060208284031215613cc157613cc0614949565b5b6000613ccf84828501613a08565b91505092915050565b600060208284031215613cee57613ced614949565b5b600082013567ffffffffffffffff811115613d0c57613d0b614944565b5b613d1884828501613a4b565b91505092915050565b600060208284031215613d3757613d36614949565b5b6000613d4584828501613a79565b91505092915050565b600080600060408486031215613d6757613d66614949565b5b6000613d7586828701613a79565b935050602084013567ffffffffffffffff811115613d9657613d95614944565b5b613da286828701613973565b92509250509250925092565b6000613dba8383614151565b60208301905092915050565b613dcf81614684565b82525050565b613de6613de182614684565b6147f0565b82525050565b6000613df7826144f8565b613e018185614526565b9350613e0c836144d3565b8060005b83811015613e3d578151613e248882613dae565b9750613e2f83614519565b925050600181019050613e10565b5085935050505092915050565b613e5381614696565b82525050565b613e62816146a2565b82525050565b6000613e7382614503565b613e7d8185614537565b9350613e8d818560208601614711565b613e968161494e565b840191505092915050565b6000613eac8261450e565b613eb68185614553565b9350613ec6818560208601614711565b613ecf8161494e565b840191505092915050565b6000613ee58261450e565b613eef8185614564565b9350613eff818560208601614711565b80840191505092915050565b60008154613f1881614744565b613f228186614564565b94506001821660008114613f3d5760018114613f4e57613f81565b60ff19831686528186019350613f81565b613f57856144e3565b60005b83811015613f7957815481890152600182019150602081019050613f5a565b838801955050505b50505092915050565b6000613f97602483614553565b9150613fa28261496c565b604082019050919050565b6000613fba602683614553565b9150613fc5826149bb565b604082019050919050565b6000613fdd601683614553565b9150613fe882614a0a565b602082019050919050565b6000614000602283614553565b915061400b82614a33565b604082019050919050565b6000614023601583614553565b915061402e82614a82565b602082019050919050565b6000614046601883614553565b915061405182614aab565b602082019050919050565b6000614069602083614553565b915061407482614ad4565b602082019050919050565b600061408c602f83614553565b915061409782614afd565b604082019050919050565b60006140af600083614548565b91506140ba82614b4c565b600082019050919050565b60006140d2601283614553565b91506140dd82614b4f565b602082019050919050565b60006140f5601e83614553565b915061410082614b78565b602082019050919050565b6000614118601983614553565b915061412382614ba1565b602082019050919050565b600061413b601b83614553565b915061414682614bca565b602082019050919050565b61415a816146f8565b82525050565b614169816146f8565b82525050565b600061417b8284613dd5565b60148201915081905092915050565b60006141968286613eda565b91506141a28285613eda565b91506141ae8284613f0b565b9150819050949350505050565b60006141c6826140a2565b9150819050919050565b60006020820190506141e56000830184613dc6565b92915050565b60006080820190506142006000830187613dc6565b61420d6020830186613dc6565b61421a6040830185614160565b818103606083015261422c8184613e68565b905095945050505050565b600060208201905081810360008301526142518184613dec565b905092915050565b600060208201905061426e6000830184613e4a565b92915050565b60006020820190506142896000830184613e59565b92915050565b600060208201905081810360008301526142a98184613ea1565b905092915050565b600060208201905081810360008301526142ca81613f8a565b9050919050565b600060208201905081810360008301526142ea81613fad565b9050919050565b6000602082019050818103600083015261430a81613fd0565b9050919050565b6000602082019050818103600083015261432a81613ff3565b9050919050565b6000602082019050818103600083015261434a81614016565b9050919050565b6000602082019050818103600083015261436a81614039565b9050919050565b6000602082019050818103600083015261438a8161405c565b9050919050565b600060208201905081810360008301526143aa8161407f565b9050919050565b600060208201905081810360008301526143ca816140c5565b9050919050565b600060208201905081810360008301526143ea816140e8565b9050919050565b6000602082019050818103600083015261440a8161410b565b9050919050565b6000602082019050818103600083015261442a8161412e565b9050919050565b60006020820190506144466000830184614160565b92915050565b6000614456614467565b90506144628282614776565b919050565b6000604051905090565b600067ffffffffffffffff82111561448c5761448b614901565b5b6144958261494e565b9050602081019050919050565b600067ffffffffffffffff8211156144bd576144bc614901565b5b6144c68261494e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061457a826146f8565b9150614585836146f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145ba576145b9614845565b5b828201905092915050565b60006145d0826146f8565b91506145db836146f8565b9250826145eb576145ea614874565b5b828204905092915050565b6000614601826146f8565b915061460c836146f8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561464557614644614845565b5b828202905092915050565b600061465b826146f8565b9150614666836146f8565b92508282101561467957614678614845565b5b828203905092915050565b600061468f826146d8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561472f578082015181840152602081019050614714565b8381111561473e576000848401525b50505050565b6000600282049050600182168061475c57607f821691505b602082108114156147705761476f6148a3565b5b50919050565b61477f8261494e565b810181811067ffffffffffffffff8211171561479e5761479d614901565b5b80604052505050565b60006147b2826146f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147e5576147e4614845565b5b600182019050919050565b60006147fb82614802565b9050919050565b600061480d8261495f565b9050919050565b600061481f826146f8565b915061482a836146f8565b92508261483a57614839614874565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f6d6178204e4654206c696d697420657863656564656420666f7220746869732060008201527f7573657200000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656420666f7220746869732060008201527f6f67000000000000000000000000000000000000000000000000000000000000602082015250565b7f70726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f7075626c696373616c65206973206e6f74206163746976650000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f63616e6e6f742062652063616c6c6564206279206120636f6e74726163740000600082015250565b7f75736572206973206e6f7420696e20746865206f676c69737400000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614bfc81614684565b8114614c0757600080fd5b50565b614c1381614696565b8114614c1e57600080fd5b50565b614c2a816146a2565b8114614c3557600080fd5b50565b614c41816146ac565b8114614c4c57600080fd5b50565b614c58816146f8565b8114614c6357600080fd5b5056fea264697066735822122055966777ec6b77f0553dbb764a9c96e877660e73bfedb47b2828d788a4fc4cbb64736f6c63430008070033697066733a2f2f516d51426867596e72767662336b39627764466f69514443477a325358587675797563664c7a69344d7851646b342f312e6a736f6e
Deployed Bytecode
0x6080604052600436106102725760003560e01c80638da5cb5b1161014f578063c8792ba1116100c1578063e65242241161007a578063e652422414610903578063e985e9c51461091a578063f19e75d414610957578063f2c4ce1e14610980578063f2fde38b146109a9578063fdea8e0b146109d257610272565b8063c8792ba1146107f5578063c87b56dd1461081e578063d5abeb011461085b578063da3ef23f14610886578063dcc40744146108af578063e5dd9943146108c657610272565b8063a475b5dd11610113578063a475b5dd146106f9578063a4de5c2a14610710578063b592d04414610739578063b88d4fde14610776578063b94805a21461079f578063c6682862146107ca57610272565b80638da5cb5b14610633578063903afdc01461065e57806395d89b4114610689578063a0712d68146106b4578063a22cb465146106d057610272565b806342842e0e116101e85780636352211e116101ac5780636352211e1461050f5780636c0360eb1461054c578063704e3d9d1461057757806370a08231146105a2578063715018a6146105df5780638462151c146105f657610272565b806342842e0e1461044057806344a0d68a14610469578063518302271461049257806355f804b3146104bd5780635602fd32146104e657610272565b806313faede61161023a57806313faede61461037057806318160ddd1461039b57806323b872dd146103c65780632b314dc6146103ef578063317764781461040b5780633ccfd60b1461043657610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063081c8c441461031c578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613c7e565b6109fd565b6040516102ab9190614259565b60405180910390f35b3480156102c057600080fd5b506102c9610adf565b6040516102d6919061428f565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613d21565b610b71565b60405161031391906141d0565b60405180910390f35b34801561032857600080fd5b50610331610bed565b60405161033e919061428f565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613c11565b610c7b565b005b34801561037c57600080fd5b50610385610d86565b6040516103929190614431565b60405180910390f35b3480156103a757600080fd5b506103b0610d8c565b6040516103bd9190614431565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190613afb565b610da3565b005b61040960048036038101906104049190613d4e565b610db3565b005b34801561041757600080fd5b5061042061110d565b60405161042d9190614431565b60405180910390f35b61043e611113565b005b34801561044c57600080fd5b5061046760048036038101906104629190613afb565b61120f565b005b34801561047557600080fd5b50610490600480360381019061048b9190613d21565b61122f565b005b34801561049e57600080fd5b506104a76112b5565b6040516104b49190614259565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df9190613cd8565b6112c8565b005b3480156104f257600080fd5b5061050d60048036038101906105089190613d21565b61135e565b005b34801561051b57600080fd5b5061053660048036038101906105319190613d21565b6113e4565b60405161054391906141d0565b60405180910390f35b34801561055857600080fd5b506105616113fa565b60405161056e919061428f565b60405180910390f35b34801561058357600080fd5b5061058c611488565b6040516105999190614431565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613a8e565b61148e565b6040516105d69190614431565b60405180910390f35b3480156105eb57600080fd5b506105f461155e565b005b34801561060257600080fd5b5061061d60048036038101906106189190613a8e565b6115e6565b60405161062a9190614237565b60405180910390f35b34801561063f57600080fd5b506106486117dd565b60405161065591906141d0565b60405180910390f35b34801561066a57600080fd5b50610673611807565b6040516106809190614274565b60405180910390f35b34801561069557600080fd5b5061069e61180d565b6040516106ab919061428f565b60405180910390f35b6106ce60048036038101906106c99190613d21565b61189f565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190613bd1565b611b3e565b005b34801561070557600080fd5b5061070e611cb6565b005b34801561071c57600080fd5b5061073760048036038101906107329190613d21565b611d4f565b005b34801561074557600080fd5b50610760600480360381019061075b9190613a8e565b611dd5565b60405161076d9190614431565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190613b4e565b611ded565b005b3480156107ab57600080fd5b506107b4611e69565b6040516107c19190614259565b60405180910390f35b3480156107d657600080fd5b506107df611e7c565b6040516107ec919061428f565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190613c51565b611f0a565b005b34801561082a57600080fd5b5061084560048036038101906108409190613d21565b611f90565b604051610852919061428f565b60405180910390f35b34801561086757600080fd5b506108706120e9565b60405161087d9190614431565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a89190613cd8565b6120ef565b005b3480156108bb57600080fd5b506108c4612185565b005b3480156108d257600080fd5b506108ed60048036038101906108e89190613a8e565b61222d565b6040516108fa9190614431565b60405180910390f35b34801561090f57600080fd5b50610918612245565b005b34801561092657600080fd5b50610941600480360381019061093c9190613abb565b6122ed565b60405161094e9190614259565b60405180910390f35b34801561096357600080fd5b5061097e60048036038101906109799190613d21565b612381565b005b34801561098c57600080fd5b506109a760048036038101906109a29190613cd8565b6124aa565b005b3480156109b557600080fd5b506109d060048036038101906109cb9190613a8e565b612540565b005b3480156109de57600080fd5b506109e7612638565b6040516109f49190614259565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ac857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad85750610ad78261264b565b5b9050919050565b606060028054610aee90614744565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1a90614744565b8015610b675780601f10610b3c57610100808354040283529160200191610b67565b820191906000526020600020905b815481529060010190602001808311610b4a57829003601f168201915b5050505050905090565b6000610b7c826126b5565b610bb2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610bfa90614744565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2690614744565b8015610c735780601f10610c4857610100808354040283529160200191610c73565b820191906000526020600020905b815481529060010190602001808311610c5657829003601f168201915b505050505081565b6000610c86826113e4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cee576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d0d612703565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d3f5750610d3d81610d38612703565b6122ed565b155b15610d76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d8183838361270b565b505050565b600c5481565b6000610d966127bd565b6001546000540303905090565b610dae8383836127c6565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e18906143d1565b60405180910390fd5b601060019054906101000a900460ff16610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790614331565b60405180910390fd5b600033604051602001610e83919061416f565b604051602081830303815290604052805190602001209050610ee9838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060135483612c7c565b610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f906143f1565b60405180910390fd5b600e5484601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f76919061456f565b1115610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90614311565b60405180910390fd5b6000610fc1610d8c565b905060008511611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90614411565b60405180910390fd5b600d548582611015919061456f565b1115611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d906142f1565b60405180910390fd5b84600c5461106491906145f6565b3410156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d906143b1565b60405180910390fd5b84601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110f5919061456f565b925050819055506111063386612c93565b5050505050565b600e5481565b61111b612703565b73ffffffffffffffffffffffffffffffffffffffff166111396117dd565b73ffffffffffffffffffffffffffffffffffffffff161461118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690614371565b60405180910390fd5b60006111996117dd565b73ffffffffffffffffffffffffffffffffffffffff16476040516111bc906141bb565b60006040518083038185875af1925050503d80600081146111f9576040519150601f19603f3d011682016040523d82523d6000602084013e6111fe565b606091505b505090508061120c57600080fd5b50565b61122a83838360405180602001604052806000815250611ded565b505050565b611237612703565b73ffffffffffffffffffffffffffffffffffffffff166112556117dd565b73ffffffffffffffffffffffffffffffffffffffff16146112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290614371565b60405180910390fd5b80600c8190555050565b601060009054906101000a900460ff1681565b6112d0612703565b73ffffffffffffffffffffffffffffffffffffffff166112ee6117dd565b73ffffffffffffffffffffffffffffffffffffffff1614611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b90614371565b60405180910390fd5b806009908051906020019061135a9291906137f4565b5050565b611366612703565b73ffffffffffffffffffffffffffffffffffffffff166113846117dd565b73ffffffffffffffffffffffffffffffffffffffff16146113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190614371565b60405180910390fd5b80600f8190555050565b60006113ef82612cb1565b600001519050919050565b6009805461140790614744565b80601f016020809104026020016040519081016040528092919081815260200182805461143390614744565b80156114805780601f1061145557610100808354040283529160200191611480565b820191906000526020600020905b81548152906001019060200180831161146357829003601f168201915b505050505081565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611566612703565b73ffffffffffffffffffffffffffffffffffffffff166115846117dd565b73ffffffffffffffffffffffffffffffffffffffff16146115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190614371565b60405180910390fd5b6115e46000612f40565b565b606060006115f38361148e565b67ffffffffffffffff81111561160c5761160b614901565b5b60405190808252806020026020018201604052801561163a5781602001602082028036833780820191505090505b50905060008054905060008060005b838110156117d0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561172657506117c3565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461176657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117c157818685806001019650815181106117b4576117b36148d2565b5b6020026020010181815250505b505b8080600101915050611649565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b60606003805461181c90614744565b80601f016020809104026020016040519081016040528092919081815260200182805461184890614744565b80156118955780601f1061186a57610100808354040283529160200191611895565b820191906000526020600020905b81548152906001019060200180831161187857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906143d1565b60405180910390fd5b601060029054906101000a900460ff1661195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390614351565b60405180910390fd5b6000611966610d8c565b9050600f5482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b6919061456f565b11156119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906142b1565b60405180910390fd5b60008211611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3190614411565b60405180910390fd5b600d548282611a49919061456f565b1115611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a81906142f1565b60405180910390fd5b81600c54611a9891906145f6565b341015611ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad1906143b1565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b29919061456f565b92505081905550611b3a3383612c93565b5050565b611b46612703565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bab576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bb8612703565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c65612703565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611caa9190614259565b60405180910390a35050565b611cbe612703565b73ffffffffffffffffffffffffffffffffffffffff16611cdc6117dd565b73ffffffffffffffffffffffffffffffffffffffff1614611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2990614371565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b611d57612703565b73ffffffffffffffffffffffffffffffffffffffff16611d756117dd565b73ffffffffffffffffffffffffffffffffffffffff1614611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290614371565b60405180910390fd5b80600e8190555050565b60116020528060005260406000206000915090505481565b611df88484846127c6565b611e178373ffffffffffffffffffffffffffffffffffffffff16613006565b8015611e2c5750611e2a84848484613029565b155b15611e63576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b601060029054906101000a900460ff1681565b600a8054611e8990614744565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb590614744565b8015611f025780601f10611ed757610100808354040283529160200191611f02565b820191906000526020600020905b815481529060010190602001808311611ee557829003601f168201915b505050505081565b611f12612703565b73ffffffffffffffffffffffffffffffffffffffff16611f306117dd565b73ffffffffffffffffffffffffffffffffffffffff1614611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90614371565b60405180910390fd5b8060138190555050565b6060611f9b826126b5565b611fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd190614391565b60405180910390fd5b60001515601060009054906101000a900460ff161515141561208857600b805461200390614744565b80601f016020809104026020016040519081016040528092919081815260200182805461202f90614744565b801561207c5780601f106120515761010080835404028352916020019161207c565b820191906000526020600020905b81548152906001019060200180831161205f57829003601f168201915b505050505090506120e4565b6000612092613189565b905060008151116120b257604051806020016040528060008152506120e0565b806120bc8461321b565b600a6040516020016120d09392919061418a565b6040516020818303038152906040525b9150505b919050565b600d5481565b6120f7612703565b73ffffffffffffffffffffffffffffffffffffffff166121156117dd565b73ffffffffffffffffffffffffffffffffffffffff161461216b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216290614371565b60405180910390fd5b80600a90805190602001906121819291906137f4565b5050565b61218d612703565b73ffffffffffffffffffffffffffffffffffffffff166121ab6117dd565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890614371565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b60126020528060005260406000206000915090505481565b61224d612703565b73ffffffffffffffffffffffffffffffffffffffff1661226b6117dd565b73ffffffffffffffffffffffffffffffffffffffff16146122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b890614371565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612389612703565b73ffffffffffffffffffffffffffffffffffffffff166123a76117dd565b73ffffffffffffffffffffffffffffffffffffffff16146123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f490614371565b60405180910390fd5b6000612407610d8c565b90506000821161244c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244390614411565b60405180910390fd5b600d54828261245b919061456f565b111561249c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612493906142f1565b60405180910390fd5b6124a63383612c93565b5050565b6124b2612703565b73ffffffffffffffffffffffffffffffffffffffff166124d06117dd565b73ffffffffffffffffffffffffffffffffffffffff1614612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90614371565b60405180910390fd5b80600b908051906020019061253c9291906137f4565b5050565b612548612703565b73ffffffffffffffffffffffffffffffffffffffff166125666117dd565b73ffffffffffffffffffffffffffffffffffffffff16146125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b390614371565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561262c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612623906142d1565b60405180910390fd5b61263581612f40565b50565b601060019054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816126c06127bd565b111580156126cf575060005482105b80156126fc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006127d182612cb1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461283c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661285d612703565b73ffffffffffffffffffffffffffffffffffffffff16148061288c575061288b85612886612703565b6122ed565b5b806128d1575061289a612703565b73ffffffffffffffffffffffffffffffffffffffff166128b984610b71565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061290a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612971576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61297e858585600161337c565b61298a6000848761270b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c0a576000548214612c0957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c758585856001613382565b5050505050565b600082612c898584613388565b1490509392505050565b612cad8282604051806020016040528060008152506133fd565b5050565b612cb961387a565b600082905080612cc76127bd565b11158015612cd6575060005481105b15612f09576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612f0757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612deb578092505050612f3b565b5b600115612f0657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f01578092505050612f3b565b612dec565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304f612703565b8786866040518563ffffffff1660e01b815260040161307194939291906141eb565b602060405180830381600087803b15801561308b57600080fd5b505af19250505080156130bc57506040513d601f19601f820116820180604052508101906130b99190613cab565b60015b613136573d80600081146130ec576040519150601f19603f3d011682016040523d82523d6000602084013e6130f1565b606091505b5060008151141561312e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461319890614744565b80601f01602080910402602001604051908101604052809291908181526020018280546131c490614744565b80156132115780601f106131e657610100808354040283529160200191613211565b820191906000526020600020905b8154815290600101906020018083116131f457829003601f168201915b5050505050905090565b60606000821415613263576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613377565b600082905060005b6000821461329557808061327e906147a7565b915050600a8261328e91906145c5565b915061326b565b60008167ffffffffffffffff8111156132b1576132b0614901565b5b6040519080825280601f01601f1916602001820160405280156132e35781602001600182028036833780820191505090505b5090505b60008514613370576001826132fc9190614650565b9150600a8561330b9190614814565b6030613317919061456f565b60f81b81838151811061332d5761332c6148d2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561336991906145c5565b94506132e7565b8093505050505b919050565b50505050565b50505050565b60008082905060005b84518110156133f25760008582815181106133af576133ae6148d2565b5b602002602001015190508083116133d1576133ca838261340f565b92506133de565b6133db818461340f565b92505b5080806133ea906147a7565b915050613391565b508091505092915050565b61340a8383836001613426565b505050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613493576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156134ce576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134db600086838761337c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156136a557506136a48773ffffffffffffffffffffffffffffffffffffffff16613006565b5b1561376b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461371a6000888480600101955088613029565b613750576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156136ab57826000541461376657600080fd5b6137d7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561376c575b8160008190555050506137ed6000868387613382565b5050505050565b82805461380090614744565b90600052602060002090601f0160209004810192826138225760008555613869565b82601f1061383b57805160ff1916838001178555613869565b82800160010185558215613869579182015b8281111561386857825182559160200191906001019061384d565b5b50905061387691906138bd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138d65760008160009055506001016138be565b5090565b60006138ed6138e884614471565b61444c565b9050828152602081018484840111156139095761390861493f565b5b613914848285614702565b509392505050565b600061392f61392a846144a2565b61444c565b90508281526020810184848401111561394b5761394a61493f565b5b613956848285614702565b509392505050565b60008135905061396d81614bf3565b92915050565b60008083601f84011261398957613988614935565b5b8235905067ffffffffffffffff8111156139a6576139a5614930565b5b6020830191508360208202830111156139c2576139c161493a565b5b9250929050565b6000813590506139d881614c0a565b92915050565b6000813590506139ed81614c21565b92915050565b600081359050613a0281614c38565b92915050565b600081519050613a1781614c38565b92915050565b600082601f830112613a3257613a31614935565b5b8135613a428482602086016138da565b91505092915050565b600082601f830112613a6057613a5f614935565b5b8135613a7084826020860161391c565b91505092915050565b600081359050613a8881614c4f565b92915050565b600060208284031215613aa457613aa3614949565b5b6000613ab28482850161395e565b91505092915050565b60008060408385031215613ad257613ad1614949565b5b6000613ae08582860161395e565b9250506020613af18582860161395e565b9150509250929050565b600080600060608486031215613b1457613b13614949565b5b6000613b228682870161395e565b9350506020613b338682870161395e565b9250506040613b4486828701613a79565b9150509250925092565b60008060008060808587031215613b6857613b67614949565b5b6000613b768782880161395e565b9450506020613b878782880161395e565b9350506040613b9887828801613a79565b925050606085013567ffffffffffffffff811115613bb957613bb8614944565b5b613bc587828801613a1d565b91505092959194509250565b60008060408385031215613be857613be7614949565b5b6000613bf68582860161395e565b9250506020613c07858286016139c9565b9150509250929050565b60008060408385031215613c2857613c27614949565b5b6000613c368582860161395e565b9250506020613c4785828601613a79565b9150509250929050565b600060208284031215613c6757613c66614949565b5b6000613c75848285016139de565b91505092915050565b600060208284031215613c9457613c93614949565b5b6000613ca2848285016139f3565b91505092915050565b600060208284031215613cc157613cc0614949565b5b6000613ccf84828501613a08565b91505092915050565b600060208284031215613cee57613ced614949565b5b600082013567ffffffffffffffff811115613d0c57613d0b614944565b5b613d1884828501613a4b565b91505092915050565b600060208284031215613d3757613d36614949565b5b6000613d4584828501613a79565b91505092915050565b600080600060408486031215613d6757613d66614949565b5b6000613d7586828701613a79565b935050602084013567ffffffffffffffff811115613d9657613d95614944565b5b613da286828701613973565b92509250509250925092565b6000613dba8383614151565b60208301905092915050565b613dcf81614684565b82525050565b613de6613de182614684565b6147f0565b82525050565b6000613df7826144f8565b613e018185614526565b9350613e0c836144d3565b8060005b83811015613e3d578151613e248882613dae565b9750613e2f83614519565b925050600181019050613e10565b5085935050505092915050565b613e5381614696565b82525050565b613e62816146a2565b82525050565b6000613e7382614503565b613e7d8185614537565b9350613e8d818560208601614711565b613e968161494e565b840191505092915050565b6000613eac8261450e565b613eb68185614553565b9350613ec6818560208601614711565b613ecf8161494e565b840191505092915050565b6000613ee58261450e565b613eef8185614564565b9350613eff818560208601614711565b80840191505092915050565b60008154613f1881614744565b613f228186614564565b94506001821660008114613f3d5760018114613f4e57613f81565b60ff19831686528186019350613f81565b613f57856144e3565b60005b83811015613f7957815481890152600182019150602081019050613f5a565b838801955050505b50505092915050565b6000613f97602483614553565b9150613fa28261496c565b604082019050919050565b6000613fba602683614553565b9150613fc5826149bb565b604082019050919050565b6000613fdd601683614553565b9150613fe882614a0a565b602082019050919050565b6000614000602283614553565b915061400b82614a33565b604082019050919050565b6000614023601583614553565b915061402e82614a82565b602082019050919050565b6000614046601883614553565b915061405182614aab565b602082019050919050565b6000614069602083614553565b915061407482614ad4565b602082019050919050565b600061408c602f83614553565b915061409782614afd565b604082019050919050565b60006140af600083614548565b91506140ba82614b4c565b600082019050919050565b60006140d2601283614553565b91506140dd82614b4f565b602082019050919050565b60006140f5601e83614553565b915061410082614b78565b602082019050919050565b6000614118601983614553565b915061412382614ba1565b602082019050919050565b600061413b601b83614553565b915061414682614bca565b602082019050919050565b61415a816146f8565b82525050565b614169816146f8565b82525050565b600061417b8284613dd5565b60148201915081905092915050565b60006141968286613eda565b91506141a28285613eda565b91506141ae8284613f0b565b9150819050949350505050565b60006141c6826140a2565b9150819050919050565b60006020820190506141e56000830184613dc6565b92915050565b60006080820190506142006000830187613dc6565b61420d6020830186613dc6565b61421a6040830185614160565b818103606083015261422c8184613e68565b905095945050505050565b600060208201905081810360008301526142518184613dec565b905092915050565b600060208201905061426e6000830184613e4a565b92915050565b60006020820190506142896000830184613e59565b92915050565b600060208201905081810360008301526142a98184613ea1565b905092915050565b600060208201905081810360008301526142ca81613f8a565b9050919050565b600060208201905081810360008301526142ea81613fad565b9050919050565b6000602082019050818103600083015261430a81613fd0565b9050919050565b6000602082019050818103600083015261432a81613ff3565b9050919050565b6000602082019050818103600083015261434a81614016565b9050919050565b6000602082019050818103600083015261436a81614039565b9050919050565b6000602082019050818103600083015261438a8161405c565b9050919050565b600060208201905081810360008301526143aa8161407f565b9050919050565b600060208201905081810360008301526143ca816140c5565b9050919050565b600060208201905081810360008301526143ea816140e8565b9050919050565b6000602082019050818103600083015261440a8161410b565b9050919050565b6000602082019050818103600083015261442a8161412e565b9050919050565b60006020820190506144466000830184614160565b92915050565b6000614456614467565b90506144628282614776565b919050565b6000604051905090565b600067ffffffffffffffff82111561448c5761448b614901565b5b6144958261494e565b9050602081019050919050565b600067ffffffffffffffff8211156144bd576144bc614901565b5b6144c68261494e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061457a826146f8565b9150614585836146f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145ba576145b9614845565b5b828201905092915050565b60006145d0826146f8565b91506145db836146f8565b9250826145eb576145ea614874565b5b828204905092915050565b6000614601826146f8565b915061460c836146f8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561464557614644614845565b5b828202905092915050565b600061465b826146f8565b9150614666836146f8565b92508282101561467957614678614845565b5b828203905092915050565b600061468f826146d8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561472f578082015181840152602081019050614714565b8381111561473e576000848401525b50505050565b6000600282049050600182168061475c57607f821691505b602082108114156147705761476f6148a3565b5b50919050565b61477f8261494e565b810181811067ffffffffffffffff8211171561479e5761479d614901565b5b80604052505050565b60006147b2826146f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147e5576147e4614845565b5b600182019050919050565b60006147fb82614802565b9050919050565b600061480d8261495f565b9050919050565b600061481f826146f8565b915061482a836146f8565b92508261483a57614839614874565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f6d6178204e4654206c696d697420657863656564656420666f7220746869732060008201527f7573657200000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656420666f7220746869732060008201527f6f67000000000000000000000000000000000000000000000000000000000000602082015250565b7f70726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f7075626c696373616c65206973206e6f74206163746976650000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f63616e6e6f742062652063616c6c6564206279206120636f6e74726163740000600082015250565b7f75736572206973206e6f7420696e20746865206f676c69737400000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614bfc81614684565b8114614c0757600080fd5b50565b614c1381614696565b8114614c1e57600080fd5b50565b614c2a816146a2565b8114614c3557600080fd5b50565b614c41816146ac565b8114614c4c57600080fd5b50565b614c58816146f8565b8114614c6357600080fd5b5056fea264697066735822122055966777ec6b77f0553dbb764a9c96e877660e73bfedb47b2828d788a4fc4cbb64736f6c63430008070033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.