ERC-721
Overview
Max Total Supply
722 BORP3
Holders
276
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BORP3Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VanBorp
Compiler Version
v0.8.11+commit.d7f03943
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.11; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract NFTProxy { function ownerOf(uint256 tokenId) public view virtual returns (address) {} function balanceOf(address owner) public view virtual returns (uint256) {} function howManyBorp() public view virtual returns (uint256) {} } contract VanBorp is ERC721A, Ownable, ReentrancyGuard { using Address for address; string public baseTokenURI; uint256 public mintPrice = 0.055 ether; uint256 public collectionSize = 4970; uint256 public reservedSize = 35; uint256 public maxPerTx = 15; bool public whitelistSaleActive; bool public regularSaleActive; bool public whitelistRequired = true; mapping(uint256 => uint256[3]) internal traits; mapping(uint256 => bool) public borpacassoUsed; mapping(uint256 => bool) public borpiUsed; mapping(address => uint256) public whitelist; address private constant borpFanOne = 0xF90783F6B1265fa13D5510424A77ad5751FcC87e; address private constant borpFanTwo = 0x8eCa6171074D95daF93F2165c472Cb2eb7032458; address private constant borpacassoAddress = 0x370108CF39555e561353B20ECF1eAae89bEb72ce; address private constant borpiAddress = 0xeEABfab26ad5c650765b124C685A13800e52B9d2; address[] private nftAddresses = [ address(0), 0xf07468eAd8cf26c752C676E43C814FEe9c8CF402, //Phunks 0x1CB1A5e65610AEFF2551A50f76a87a7d3fB649C6, //Cryptoadz 0x95784F7b5c8849b0104EAf5D13d6341d8CC40750, //Swampverse 0x7caE7B9b9a235D1D94102598E1f23310A0618914, //CROAKZ 0x42069ABFE407C60cf4ae4112bEDEaD391dBa1cdB, //Dickbutts 0xf1BdFC38b0089097f050141d21f5E8a3cb0Ec8FC, //Titvags 0x8ed25B735A788f4f7129Db736FC64f3A241137B8, //Bears 1 0x488C057CF3deE9Ee2E386112e08F2c6d8e58cdFB, //Bears 2 0x279f1ABB8649eA5AF64AFACC6511cb41f512bEC1, //Bears 3 0x12C4f45ae12B7B8462dB2409488d976995Ab6FE9 //Borphol ]; constructor() ERC721A("Vincent Van Borp", "BORP3") { _safeMint(borpFanOne, 6); } //Mint 4 nudes UwU, and two ports from v0 //🐸🐸🐸🐸🐸🐸🐸🐸 MODIFIERS function _onlySender() private view { require(msg.sender == tx.origin); } modifier onlySender() { _onlySender(); _; } //🐸🐸🐸🐸🐸🐸🐸🐸 BOOL FLIPPERS function flipWhitelistSaleActive() public onlyOwner { whitelistSaleActive = !whitelistSaleActive; } function flipRegularSaleActive() public onlyOwner { regularSaleActive = !regularSaleActive; } function flipWhitelistRequired() public onlyOwner { whitelistRequired = !whitelistRequired; } //🐸🐸🐸🐸🐸🐸🐸🐸 Interface METHODS function NFTBalance( address owner, address nft, uint256 id ) public view returns (bool) { NFTProxy sd = NFTProxy(nft); return (owner == sd.ownerOf(id)); } function NFTOwnAny(address owner, address nft) public view returns (bool) { NFTProxy sd = NFTProxy(nft); return (sd.balanceOf(owner) > 0); } function NFTList(address owner) external view returns (uint256[] memory, uint256) { uint256[] memory _NFTS = new uint256[](nftAddresses.length); uint256 j; for (uint256 i = 1; i < nftAddresses.length; i++) { if (NFTOwnAny(owner, nftAddresses[i]) == true) { _NFTS[j] = i; j++; } } return (_NFTS, j); } function borpasLeft(uint256[] memory _borps) external view returns ( uint256[] memory, uint256, uint256 ) { uint256[] memory arr = new uint256[](_borps.length); uint256 j; uint256 k; uint256 breakpoint; for (uint256 i = 0; i < _borps.length; i++) { if(_borps[i]>10000){ break; } breakpoint++; if (!borpacassoUsed[_borps[i]]) { arr[j] = _borps[i]; j++; k++; } } for (uint256 i = breakpoint; i < _borps.length; i++) { if(_borps[i]<=10000){ break; } if (!borpiUsed[_borps[i]-10000]){ arr[k] = _borps[i]; k++; } } return (arr, j,k); } function borpaInventory(address owner, bool borp, uint256 start, uint256 end) external view returns (uint256[] memory, uint256) { address nft; uint256 shift; //false for Borpacasso, true for Borpi borp ? nft = borpiAddress : nft = borpacassoAddress; if(borp){shift =10000;} NFTProxy sd = NFTProxy(nft); uint256 _balance = sd.balanceOf(owner); uint256[] memory _tokens = new uint256[](_balance); uint256 _index; for (uint256 i = start; i < end; i++) { if (sd.ownerOf(i) == owner) { _tokens[_index] = i+shift; _index++; } } return (_tokens, _index); } //🐸🐸🐸🐸🐸🐸🐸🐸 WHITELIST STUFF function addToWhitelist(address[] memory _address, uint256 _amount) public onlyOwner { for (uint256 i = 0; i < _address.length; i++) { whitelist[_address[i]] = _amount; } } function removeFromWhitelist(address[] memory _address) public onlyOwner { for (uint256 i = 0; i < _address.length; i++) { whitelist[_address[i]] = 0; } } //🐸🐸🐸🐸🐸🐸🐸🐸 GIVEAWAY MINT function mintGiveawayBorps(uint256 amount) external onlyOwner { require(amount <= reservedSize); require((totalSupply() + amount) <= collectionSize); _safeMint(msg.sender, amount); } //🐸🐸🐸🐸🐸🐸🐸🐸 REGULAR MINT function regularMint(uint256 amount, uint256[] memory _borps) external payable onlySender nonReentrant { require(amount > 0); require(amount <= maxPerTx); require((totalSupply() + amount) <= collectionSize - reservedSize); require(mintPrice * amount <= msg.value); if (whitelistRequired) { require(whitelistSaleActive); uint256 additional; uint256 surplus; for (uint256 i = 0; i < _borps.length; i++) { if(_borps[i]>10000){ //borpi if(!borpiUsed[_borps[i]-10000] && (NFTBalance(msg.sender, borpiAddress, _borps[i]-10000) == true)){ borpiUsed[_borps[i]-10000]=true; additional++; } }else{ //borpacasso if(!borpacassoUsed[_borps[i]] && (NFTBalance(msg.sender, borpacassoAddress, _borps[i]) == true)){ borpacassoUsed[_borps[i]]=true; additional++; } } if(additional==amount){break;} } if (additional < amount) { surplus = amount - additional; require(surplus <= whitelist[msg.sender]); whitelist[msg.sender] -= surplus; } } else { require(regularSaleActive); } _safeMint(msg.sender, amount); } //🐸🐸🐸🐸🐸🐸🐸🐸 COUNTERFEITER function counterfeiter( uint256 borpacassoID, uint256 borpiID, uint256 nftIndex, uint256 mintpass ) external payable onlySender nonReentrant { require((totalSupply() + 1) <= collectionSize - reservedSize); require(mintPrice <= msg.value); //check whitelist if (whitelistRequired) { require(whitelistSaleActive); if (mintpass > 10000) { require( NFTBalance(msg.sender, borpiAddress, mintpass - 10000) == true ); require(borpiUsed[mintpass - 10000] == false); borpiUsed[mintpass - 10000] = true; } else if (mintpass > 0) { require( NFTBalance(msg.sender, borpacassoAddress, mintpass) == true ); require(borpacassoUsed[mintpass] == false); borpacassoUsed[mintpass] = true; } else { require(whitelist[msg.sender] >= 1); whitelist[msg.sender] -= 1; } } else { require(regularSaleActive); } //traits check if (borpacassoID > 0) { require( NFTBalance(msg.sender, borpacassoAddress, borpacassoID) == true ); } if (borpiID > 0) { require(NFTBalance(msg.sender, borpiAddress, borpiID) == true); } if (nftIndex > 0) { require(NFTOwnAny(msg.sender, nftAddresses[nftIndex]) == true); } traits[totalSupply()] = [borpacassoID, borpiID, nftIndex]; _safeMint(msg.sender, 1); } //🐸🐸🐸🐸🐸🐸🐸🐸 WITHDRAW function withdraw() public onlyOwner { uint256 balance = address(this).balance; uint256 cut = balance / 2; payable(borpFanOne).transfer(cut); payable(borpFanTwo).transfer(cut); } //🐸🐸🐸🐸🐸🐸🐸🐸 METADATA STUFF function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner { baseTokenURI = _baseTokenURI; } function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) { return string(abi.encodePacked(baseTokenURI, Strings.toString(tokenId))); } function getTraits(uint256 id) public view returns (uint256[3] memory) { return [traits[id][0], traits[id][1], traits[id][2]]; } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**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; } // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @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); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 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; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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":"owner","type":"address"},{"internalType":"address","name":"nft","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"NFTBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"NFTList","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"nft","type":"address"}],"name":"NFTOwnAny","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"bool","name":"borp","type":"bool"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"borpaInventory","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"borpacassoUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_borps","type":"uint256[]"}],"name":"borpasLeft","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"borpiUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"borpacassoID","type":"uint256"},{"internalType":"uint256","name":"borpiID","type":"uint256"},{"internalType":"uint256","name":"nftIndex","type":"uint256"},{"internalType":"uint256","name":"mintpass","type":"uint256"}],"name":"counterfeiter","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipRegularSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistRequired","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getTraits","outputs":[{"internalType":"uint256[3]","name":"","type":"uint256[3]"}],"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintGiveawayBorps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256[]","name":"_borps","type":"uint256[]"}],"name":"regularMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"regularSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedSize","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":"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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266c3663566a58000600b5561136a600c556023600d55600f600e556001600f60026101000a81548160ff021916908315150217905550604051806101600160405280600073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173f07468ead8cf26c752c676e43c814fee9c8cf40273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001731cb1a5e65610aeff2551a50f76a87a7d3fb649c673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017395784f7b5c8849b0104eaf5d13d6341d8cc4075073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001737cae7b9b9a235d1d94102598e1f23310a061891473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017342069abfe407c60cf4ae4112bedead391dba1cdb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173f1bdfc38b0089097f050141d21f5e8a3cb0ec8fc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001738ed25b735a788f4f7129db736fc64f3a241137b873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173488c057cf3dee9ee2e386112e08f2c6d8e58cdfb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173279f1abb8649ea5af64afacc6511cb41f512bec173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017312c4f45ae12b7b8462db2409488d976995ab6fe973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250601490600b6200034592919062000a7a565b503480156200035357600080fd5b506040518060400160405280601081526020017f56696e63656e742056616e20426f7270000000000000000000000000000000008152506040518060400160405280600581526020017f424f5250330000000000000000000000000000000000000000000000000000008152508160029080519060200190620003d892919062000b09565b508060039080519060200190620003f192919062000b09565b50505062000414620004086200044960201b60201c565b6200045160201b60201c565b60016009819055506200044373f90783f6b1265fa13d5510424a77ad5751fcc87e60066200051760201b60201c565b62000e0a565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005398282604051806020016040528060008152506200053d60201b60201c565b5050565b6200055283838360016200055760201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620005c5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000601576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620006166000868387620008ac60201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200088757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015620008395750620008376000888488620008b260201b60201c565b155b1562000871576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050620007b4565b508060008190555050620008a5600086838762000a5160201b60201c565b5050505050565b50505050565b6000620008e08473ffffffffffffffffffffffffffffffffffffffff1662000a5760201b62002a941760201c565b1562000a44578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620009126200044960201b60201c565b8786866040518563ffffffff1660e01b815260040162000936949392919062000cbd565b6020604051808303816000875af19250505080156200097557506040513d601f19601f8201168201806040525081019062000972919062000d73565b60015b620009f3573d8060008114620009a8576040519150601f19603f3d011682016040523d82523d6000602084013e620009ad565b606091505b50600081511415620009eb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000a49565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805482825590600052602060002090810192821562000af6579160200282015b8281111562000af55782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000a9b565b5b50905062000b05919062000b9a565b5090565b82805462000b179062000dd4565b90600052602060002090601f01602090048101928262000b3b576000855562000b87565b82601f1062000b5657805160ff191683800117855562000b87565b8280016001018555821562000b87579182015b8281111562000b8657825182559160200191906001019062000b69565b5b50905062000b96919062000b9a565b5090565b5b8082111562000bb557600081600090555060010162000b9b565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000be68262000bb9565b9050919050565b62000bf88162000bd9565b82525050565b6000819050919050565b62000c138162000bfe565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000c5557808201518184015260208101905062000c38565b8381111562000c65576000848401525b50505050565b6000601f19601f8301169050919050565b600062000c898262000c19565b62000c95818562000c24565b935062000ca781856020860162000c35565b62000cb28162000c6b565b840191505092915050565b600060808201905062000cd4600083018762000bed565b62000ce3602083018662000bed565b62000cf2604083018562000c08565b818103606083015262000d06818462000c7c565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000d4d8162000d16565b811462000d5957600080fd5b50565b60008151905062000d6d8162000d42565b92915050565b60006020828403121562000d8c5762000d8b62000d11565b5b600062000d9c8482850162000d5c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ded57607f821691505b6020821081141562000e045762000e0362000da5565b5b50919050565b614eb08062000e1a6000396000f3fe6080604052600436106102675760003560e01c80638da5cb5b11610144578063d547cfb7116100b6578063ed7409461161007a578063ed74094614610971578063f2fde38b1461099a578063f6ecf215146109c3578063f968adbe146109da578063fb08f3a114610a05578063fd91254f14610a3057610267565b8063d547cfb71461088a578063e08bb79a146108b5578063e1dc0761146108cc578063e792277814610909578063e985e9c51461093457610267565b80639ba88177116101085780639ba881771461078a578063a22cb465146107c8578063b88d4fde146107f1578063bc63f4e01461081a578063c87b56dd14610836578063d37eae071461087357610267565b80638da5cb5b1461067d5780639277e631146106a85780639435b58a146106e557806395d89b41146107225780639b19251a1461074d57610267565b80633ccfd60b116101dd5780636352211e116101a15780636352211e1461056d5780636817c76c146105aa578063685c7578146105d557806370a08231146105fe578063715018a61461063b57806379e1587a1461065257610267565b80633ccfd60b1461049c57806342842e0e146104b357806345c0f533146104dc5780634e7a3fae14610507578063548db1741461054457610267565b806318160ddd1161022f57806318160ddd146103795780631f43cf85146103a457806323b872dd146103e2578063299eaec71461040b57806330176e13146104485780633ad7f56c1461047157610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630ea390281461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613c89565b610a4c565b6040516102a09190613cd1565b60405180910390f35b3480156102b557600080fd5b506102be610b2e565b6040516102cb9190613d85565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613ddd565b610bc0565b6040516103089190613e4b565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613e92565b610c3c565b005b34801561034657600080fd5b50610361600480360381019061035c919061401a565b610d47565b60405161037093929190614130565b60405180910390f35b34801561038557600080fd5b5061038e610f83565b60405161039b919061416e565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190614189565b610f91565b6040516103d99291906141b6565b60405180910390f35b3480156103ee57600080fd5b50610409600480360381019061040491906141e6565b61109f565b005b34801561041757600080fd5b50610432600480360381019061042d9190613ddd565b6110af565b60405161043f9190613cd1565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a91906142ee565b6110cf565b005b34801561047d57600080fd5b50610486611165565b6040516104939190613cd1565b60405180910390f35b3480156104a857600080fd5b506104b1611178565b005b3480156104bf57600080fd5b506104da60048036038101906104d591906141e6565b6112c4565b005b3480156104e857600080fd5b506104f16112e4565b6040516104fe919061416e565b60405180910390f35b34801561051357600080fd5b5061052e600480360381019061052991906141e6565b6112ea565b60405161053b9190613cd1565b60405180910390f35b34801561055057600080fd5b5061056b600480360381019061056691906143fa565b6113a2565b005b34801561057957600080fd5b50610594600480360381019061058f9190613ddd565b6114a0565b6040516105a19190613e4b565b60405180910390f35b3480156105b657600080fd5b506105bf6114b6565b6040516105cc919061416e565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613ddd565b6114bc565b005b34801561060a57600080fd5b5061062560048036038101906106209190614189565b611575565b604051610632919061416e565b60405180910390f35b34801561064757600080fd5b50610650611645565b005b34801561065e57600080fd5b506106676116cd565b604051610674919061416e565b60405180910390f35b34801561068957600080fd5b506106926116d3565b60405161069f9190613e4b565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190614443565b6116fd565b6040516106dc9190613cd1565b60405180910390f35b3480156106f157600080fd5b5061070c60048036038101906107079190613ddd565b611789565b6040516107199190613cd1565b60405180910390f35b34801561072e57600080fd5b506107376117a9565b6040516107449190613d85565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190614189565b61183b565b604051610781919061416e565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac91906144af565b611853565b6040516107bf9291906141b6565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190614516565b611a91565b005b3480156107fd57600080fd5b50610818600480360381019061081391906145f7565b611c09565b005b610834600480360381019061082f919061467a565b611c5c565b005b34801561084257600080fd5b5061085d60048036038101906108589190613ddd565b612070565b60405161086a9190613d85565b60405180910390f35b34801561087f57600080fd5b506108886120a4565b005b34801561089657600080fd5b5061089f61214c565b6040516108ac9190613d85565b60405180910390f35b3480156108c157600080fd5b506108ca6121da565b005b3480156108d857600080fd5b506108f360048036038101906108ee9190613ddd565b612282565b6040516109009190614765565b60405180910390f35b34801561091557600080fd5b5061091e612321565b60405161092b9190613cd1565b60405180910390f35b34801561094057600080fd5b5061095b60048036038101906109569190614443565b612334565b6040516109689190613cd1565b60405180910390f35b34801561097d57600080fd5b5061099860048036038101906109939190614780565b6123c8565b005b3480156109a657600080fd5b506109c160048036038101906109bc9190614189565b6124c6565b005b3480156109cf57600080fd5b506109d86125be565b005b3480156109e657600080fd5b506109ef612666565b6040516109fc919061416e565b60405180910390f35b348015610a1157600080fd5b50610a1a61266c565b604051610a279190613cd1565b60405180910390f35b610a4a6004803603810190610a4591906147dc565b61267f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b275750610b2682612ab7565b5b9050919050565b606060028054610b3d90614867565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6990614867565b8015610bb65780601f10610b8b57610100808354040283529160200191610bb6565b820191906000526020600020905b815481529060010190602001808311610b9957829003601f168201915b5050505050905090565b6000610bcb82612b21565b610c01576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c47826114a0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610caf576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cce612b5b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d005750610cfe81610cf9612b5b565b612334565b155b15610d37576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d42838383612b63565b505050565b60606000806000845167ffffffffffffffff811115610d6957610d68613ed7565b5b604051908082528060200260200182016040528015610d975781602001602082028036833780820191505090505b509050600080600080600090505b8851811015610e8e57612710898281518110610dc457610dc3614899565b5b60200260200101511115610dd757610e8e565b8180610de2906148f7565b925050601160008a8381518110610dfc57610dfb614899565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16610e7b57888181518110610e3757610e36614899565b5b6020026020010151858581518110610e5257610e51614899565b5b6020026020010181815250508380610e69906148f7565b9450508280610e77906148f7565b9350505b8080610e86906148f7565b915050610da5565b5060008190505b8851811015610f6e57612710898281518110610eb457610eb3614899565b5b602002602001015111610ec657610f6e565b601260006127108b8481518110610ee057610edf614899565b5b6020026020010151610ef29190614940565b815260200190815260200160002060009054906101000a900460ff16610f5b57888181518110610f2557610f24614899565b5b6020026020010151858481518110610f4057610f3f614899565b5b6020026020010181815250508280610f57906148f7565b9350505b8080610f66906148f7565b915050610e95565b50838383965096509650505050509193909250565b600060015460005403905090565b606060008060148054905067ffffffffffffffff811115610fb557610fb4613ed7565b5b604051908082528060200260200182016040528015610fe35781602001602082028036833780820191505090505b509050600080600190505b6014805490508110156110915760011515611047876014848154811061101757611016614899565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166116fd565b1515141561107e578083838151811061106357611062614899565b5b602002602001018181525050818061107a906148f7565b9250505b8080611089906148f7565b915050610fee565b508181935093505050915091565b6110aa838383612c15565b505050565b60126020528060005260406000206000915054906101000a900460ff1681565b6110d7612b5b565b73ffffffffffffffffffffffffffffffffffffffff166110f56116d3565b73ffffffffffffffffffffffffffffffffffffffff161461114b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611142906149c0565b60405180910390fd5b80600a9080519060200190611161929190613ad5565b5050565b600f60009054906101000a900460ff1681565b611180612b5b565b73ffffffffffffffffffffffffffffffffffffffff1661119e6116d3565b73ffffffffffffffffffffffffffffffffffffffff16146111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906149c0565b60405180910390fd5b600047905060006002826112089190614a0f565b905073f90783f6b1265fa13d5510424a77ad5751fcc87e73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611264573d6000803e3d6000fd5b50738eca6171074d95daf93f2165c472cb2eb703245873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112bf573d6000803e3d6000fd5b505050565b6112df83838360405180602001604052806000815250611c09565b505050565b600c5481565b6000808390508073ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401611329919061416e565b602060405180830381865afa158015611346573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136a9190614a55565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16149150509392505050565b6113aa612b5b565b73ffffffffffffffffffffffffffffffffffffffff166113c86116d3565b73ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611415906149c0565b60405180910390fd5b60005b815181101561149c5760006013600084848151811061144357611442614899565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611494906148f7565b915050611421565b5050565b60006114ab82613106565b600001519050919050565b600b5481565b6114c4612b5b565b73ffffffffffffffffffffffffffffffffffffffff166114e26116d3565b73ffffffffffffffffffffffffffffffffffffffff1614611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f906149c0565b60405180910390fd5b600d5481111561154757600080fd5b600c5481611553610f83565b61155d9190614a82565b111561156857600080fd5b6115723382613382565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115dd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61164d612b5b565b73ffffffffffffffffffffffffffffffffffffffff1661166b6116d3565b73ffffffffffffffffffffffffffffffffffffffff16146116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b8906149c0565b60405180910390fd5b6116cb60006133a0565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008082905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b815260040161173e9190613e4b565b602060405180830381865afa15801561175b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177f9190614aed565b1191505092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b6060600380546117b890614867565b80601f01602080910402602001604051908101604052809291908181526020018280546117e490614867565b80156118315780601f1061180657610100808354040283529160200191611831565b820191906000526020600020905b81548152906001019060200180831161181457829003601f168201915b5050505050905090565b60136020528060005260406000206000915090505481565b606060008060008661187c5773370108cf39555e561353b20ecf1eaae89beb72ce915081611895565b73eeabfab26ad5c650765b124c685a13800e52b9d29150815b5086156118a25761271090505b600082905060008173ffffffffffffffffffffffffffffffffffffffff166370a082318b6040518263ffffffff1660e01b81526004016118e29190613e4b565b602060405180830381865afa1580156118ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119239190614aed565b905060008167ffffffffffffffff81111561194157611940613ed7565b5b60405190808252806020026020018201604052801561196f5781602001602082028036833780820191505090505b5090506000808a90505b89811015611a7b578c73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016119d1919061416e565b602060405180830381865afa1580156119ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a129190614a55565b73ffffffffffffffffffffffffffffffffffffffff161415611a68578581611a3a9190614a82565b838381518110611a4d57611a4c614899565b5b6020026020010181815250508180611a64906148f7565b9250505b8080611a73906148f7565b915050611979565b5081819750975050505050505094509492505050565b611a99612b5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afe576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b0b612b5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bb8612b5b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bfd9190613cd1565b60405180910390a35050565b611c14848484612c15565b611c2084848484613466565b611c56576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611c646135e5565b60026009541415611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190614b66565b60405180910390fd5b6002600981905550600d54600c54611cc29190614940565b6001611ccc610f83565b611cd69190614a82565b1115611ce157600080fd5b34600b541115611cf057600080fd5b600f60029054906101000a900460ff1615611f2557600f60009054906101000a900460ff16611d1e57600080fd5b612710811115611de05760011515611d583373eeabfab26ad5c650765b124c685a13800e52b9d261271085611d539190614940565b6112ea565b151514611d6457600080fd5b600015156012600061271084611d7a9190614940565b815260200190815260200160002060009054906101000a900460ff16151514611da257600080fd5b60016012600061271084611db69190614940565b815260200190815260200160002060006101000a81548160ff021916908315150217905550611f20565b6000811115611e7a5760011515611e0c3373370108cf39555e561353b20ecf1eaae89beb72ce846112ea565b151514611e1857600080fd5b600015156011600083815260200190815260200160002060009054906101000a900460ff16151514611e4957600080fd5b60016011600083815260200190815260200160002060006101000a81548160ff021916908315150217905550611f1f565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611ec757600080fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f179190614940565b925050819055505b5b611f3f565b600f60019054906101000a900460ff16611f3e57600080fd5b5b6000841115611f785760011515611f6b3373370108cf39555e561353b20ecf1eaae89beb72ce876112ea565b151514611f7757600080fd5b5b6000831115611fb15760011515611fa43373eeabfab26ad5c650765b124c685a13800e52b9d2866112ea565b151514611fb057600080fd5b5b600082111561201357600115156120063360148581548110611fd657611fd5614899565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166116fd565b15151461201257600080fd5b5b6040518060600160405280858152602001848152602001838152506010600061203a610f83565b8152602001908152602001600020906003612056929190613b5b565b50612062336001613382565b600160098190555050505050565b6060600a61207d8361361f565b60405160200161208e929190614c56565b6040516020818303038152906040529050919050565b6120ac612b5b565b73ffffffffffffffffffffffffffffffffffffffff166120ca6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612120576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612117906149c0565b60405180910390fd5b600f60029054906101000a900460ff1615600f60026101000a81548160ff021916908315150217905550565b600a805461215990614867565b80601f016020809104026020016040519081016040528092919081815260200182805461218590614867565b80156121d25780601f106121a7576101008083540402835291602001916121d2565b820191906000526020600020905b8154815290600101906020018083116121b557829003601f168201915b505050505081565b6121e2612b5b565b73ffffffffffffffffffffffffffffffffffffffff166122006116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d906149c0565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b61228a613b9b565b6040518060600160405280601060008581526020019081526020016000206000600381106122bb576122ba614899565b5b01548152602001601060008581526020019081526020016000206001600381106122e8576122e7614899565b5b015481526020016010600085815260200190815260200160002060026003811061231557612314614899565b5b01548152509050919050565b600f60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123d0612b5b565b73ffffffffffffffffffffffffffffffffffffffff166123ee6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b906149c0565b60405180910390fd5b60005b82518110156124c157816013600085848151811061246857612467614899565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806124b9906148f7565b915050612447565b505050565b6124ce612b5b565b73ffffffffffffffffffffffffffffffffffffffff166124ec6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612539906149c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a990614cec565b60405180910390fd5b6125bb816133a0565b50565b6125c6612b5b565b73ffffffffffffffffffffffffffffffffffffffff166125e46116d3565b73ffffffffffffffffffffffffffffffffffffffff161461263a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612631906149c0565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600e5481565b600f60029054906101000a900460ff1681565b6126876135e5565b600260095414156126cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c490614b66565b60405180910390fd5b6002600981905550600082116126e257600080fd5b600e548211156126f157600080fd5b600d54600c546127019190614940565b8261270a610f83565b6127149190614a82565b111561271f57600080fd5b3482600b5461272e9190614d0c565b111561273957600080fd5b600f60029054906101000a900460ff1615612a6457600f60009054906101000a900460ff1661276757600080fd5b60008060005b83518110156129a35761271084828151811061278c5761278b614899565b5b602002602001015111156128a457601260006127108684815181106127b4576127b3614899565b5b60200260200101516127c69190614940565b815260200190815260200160002060009054906101000a900460ff161580156128385750600115156128343373eeabfab26ad5c650765b124c685a13800e52b9d261271088868151811061281d5761281c614899565b5b602002602001015161282f9190614940565b6112ea565b1515145b1561289f5760016012600061271087858151811061285957612858614899565b5b602002602001015161286b9190614940565b815260200190815260200160002060006101000a81548160ff021916908315150217905550828061289b906148f7565b9350505b612983565b601160008583815181106128bb576128ba614899565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff161580156129285750600115156129243373370108cf39555e561353b20ecf1eaae89beb72ce87858151811061291757612916614899565b5b60200260200101516112ea565b1515145b156129825760016011600086848151811061294657612945614899565b5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550828061297e906148f7565b9350505b5b84831415612990576129a3565b808061299b906148f7565b91505061276d565b5083821015612a5d5781846129b89190614940565b9050601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115612a0657600080fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a559190614940565b925050819055505b5050612a7e565b600f60019054906101000a900460ff16612a7d57600080fd5b5b612a883383613382565b60016009819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015612b54575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612c2082613106565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612c47612b5b565b73ffffffffffffffffffffffffffffffffffffffff161480612c7a5750612c798260000151612c74612b5b565b612334565b5b80612cbf5750612c88612b5b565b73ffffffffffffffffffffffffffffffffffffffff16612ca784610bc0565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612cf8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d61576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612dc8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dd58585856001613780565b612de56000848460000151612b63565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613096576000548110156130955782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130ff8585856001613786565b5050505050565b61310e613bbd565b600082905060005481101561334b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161334957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461322d57809250505061337d565b5b60011561334857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461334357809250505061337d565b61322e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61339c82826040518060200160405280600081525061378c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006134878473ffffffffffffffffffffffffffffffffffffffff16612a94565b156135d8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134b0612b5b565b8786866040518563ffffffff1660e01b81526004016134d29493929190614dbb565b6020604051808303816000875af192505050801561350e57506040513d601f19601f8201168201806040525081019061350b9190614e1c565b60015b613588573d806000811461353e576040519150601f19603f3d011682016040523d82523d6000602084013e613543565b606091505b50600081511415613580576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135dd565b600190505b949350505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461361d57600080fd5b565b60606000821415613667576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061377b565b600082905060005b60008214613699578080613682906148f7565b915050600a826136929190614a0f565b915061366f565b60008167ffffffffffffffff8111156136b5576136b4613ed7565b5b6040519080825280601f01601f1916602001820160405280156136e75781602001600182028036833780820191505090505b5090505b60008514613774576001826137009190614940565b9150600a8561370f9190614e49565b603061371b9190614a82565b60f81b81838151811061373157613730614899565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561376d9190614a0f565b94506136eb565b8093505050505b919050565b50505050565b50505050565b613799838383600161379e565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561380b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613846576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138536000868387613780565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613ab857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015613a6c5750613a6a6000888488613466565b155b15613aa3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506139f1565b508060008190555050613ace6000868387613786565b5050505050565b828054613ae190614867565b90600052602060002090601f016020900481019282613b035760008555613b4a565b82601f10613b1c57805160ff1916838001178555613b4a565b82800160010185558215613b4a579182015b82811115613b49578251825591602001919060010190613b2e565b5b509050613b579190613c00565b5090565b8260038101928215613b8a579160200282015b82811115613b89578251825591602001919060010190613b6e565b5b509050613b979190613c00565b5090565b6040518060600160405280600390602082028036833780820191505090505090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613c19576000816000905550600101613c01565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c6681613c31565b8114613c7157600080fd5b50565b600081359050613c8381613c5d565b92915050565b600060208284031215613c9f57613c9e613c27565b5b6000613cad84828501613c74565b91505092915050565b60008115159050919050565b613ccb81613cb6565b82525050565b6000602082019050613ce66000830184613cc2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d26578082015181840152602081019050613d0b565b83811115613d35576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d5782613cec565b613d618185613cf7565b9350613d71818560208601613d08565b613d7a81613d3b565b840191505092915050565b60006020820190508181036000830152613d9f8184613d4c565b905092915050565b6000819050919050565b613dba81613da7565b8114613dc557600080fd5b50565b600081359050613dd781613db1565b92915050565b600060208284031215613df357613df2613c27565b5b6000613e0184828501613dc8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e3582613e0a565b9050919050565b613e4581613e2a565b82525050565b6000602082019050613e606000830184613e3c565b92915050565b613e6f81613e2a565b8114613e7a57600080fd5b50565b600081359050613e8c81613e66565b92915050565b60008060408385031215613ea957613ea8613c27565b5b6000613eb785828601613e7d565b9250506020613ec885828601613dc8565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f0f82613d3b565b810181811067ffffffffffffffff82111715613f2e57613f2d613ed7565b5b80604052505050565b6000613f41613c1d565b9050613f4d8282613f06565b919050565b600067ffffffffffffffff821115613f6d57613f6c613ed7565b5b602082029050602081019050919050565b600080fd5b6000613f96613f9184613f52565b613f37565b90508083825260208201905060208402830185811115613fb957613fb8613f7e565b5b835b81811015613fe25780613fce8882613dc8565b845260208401935050602081019050613fbb565b5050509392505050565b600082601f83011261400157614000613ed2565b5b8135614011848260208601613f83565b91505092915050565b6000602082840312156140305761402f613c27565b5b600082013567ffffffffffffffff81111561404e5761404d613c2c565b5b61405a84828501613fec565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61409881613da7565b82525050565b60006140aa838361408f565b60208301905092915050565b6000602082019050919050565b60006140ce82614063565b6140d8818561406e565b93506140e38361407f565b8060005b838110156141145781516140fb888261409e565b9750614106836140b6565b9250506001810190506140e7565b5085935050505092915050565b61412a81613da7565b82525050565b6000606082019050818103600083015261414a81866140c3565b90506141596020830185614121565b6141666040830184614121565b949350505050565b60006020820190506141836000830184614121565b92915050565b60006020828403121561419f5761419e613c27565b5b60006141ad84828501613e7d565b91505092915050565b600060408201905081810360008301526141d081856140c3565b90506141df6020830184614121565b9392505050565b6000806000606084860312156141ff576141fe613c27565b5b600061420d86828701613e7d565b935050602061421e86828701613e7d565b925050604061422f86828701613dc8565b9150509250925092565b600080fd5b600067ffffffffffffffff82111561425957614258613ed7565b5b61426282613d3b565b9050602081019050919050565b82818337600083830152505050565b600061429161428c8461423e565b613f37565b9050828152602081018484840111156142ad576142ac614239565b5b6142b884828561426f565b509392505050565b600082601f8301126142d5576142d4613ed2565b5b81356142e584826020860161427e565b91505092915050565b60006020828403121561430457614303613c27565b5b600082013567ffffffffffffffff81111561432257614321613c2c565b5b61432e848285016142c0565b91505092915050565b600067ffffffffffffffff82111561435257614351613ed7565b5b602082029050602081019050919050565b600061437661437184614337565b613f37565b9050808382526020820190506020840283018581111561439957614398613f7e565b5b835b818110156143c257806143ae8882613e7d565b84526020840193505060208101905061439b565b5050509392505050565b600082601f8301126143e1576143e0613ed2565b5b81356143f1848260208601614363565b91505092915050565b6000602082840312156144105761440f613c27565b5b600082013567ffffffffffffffff81111561442e5761442d613c2c565b5b61443a848285016143cc565b91505092915050565b6000806040838503121561445a57614459613c27565b5b600061446885828601613e7d565b925050602061447985828601613e7d565b9150509250929050565b61448c81613cb6565b811461449757600080fd5b50565b6000813590506144a981614483565b92915050565b600080600080608085870312156144c9576144c8613c27565b5b60006144d787828801613e7d565b94505060206144e88782880161449a565b93505060406144f987828801613dc8565b925050606061450a87828801613dc8565b91505092959194509250565b6000806040838503121561452d5761452c613c27565b5b600061453b85828601613e7d565b925050602061454c8582860161449a565b9150509250929050565b600067ffffffffffffffff82111561457157614570613ed7565b5b61457a82613d3b565b9050602081019050919050565b600061459a61459584614556565b613f37565b9050828152602081018484840111156145b6576145b5614239565b5b6145c184828561426f565b509392505050565b600082601f8301126145de576145dd613ed2565b5b81356145ee848260208601614587565b91505092915050565b6000806000806080858703121561461157614610613c27565b5b600061461f87828801613e7d565b945050602061463087828801613e7d565b935050604061464187828801613dc8565b925050606085013567ffffffffffffffff81111561466257614661613c2c565b5b61466e878288016145c9565b91505092959194509250565b6000806000806080858703121561469457614693613c27565b5b60006146a287828801613dc8565b94505060206146b387828801613dc8565b93505060406146c487828801613dc8565b92505060606146d587828801613dc8565b91505092959194509250565b600060039050919050565b600081905092915050565b6000819050919050565b6000602082019050919050565b614717816146e1565b61472181846146ec565b925061472c826146f7565b8060005b8381101561475d578151614744878261409e565b965061474f83614701565b925050600181019050614730565b505050505050565b600060608201905061477a600083018461470e565b92915050565b6000806040838503121561479757614796613c27565b5b600083013567ffffffffffffffff8111156147b5576147b4613c2c565b5b6147c1858286016143cc565b92505060206147d285828601613dc8565b9150509250929050565b600080604083850312156147f3576147f2613c27565b5b600061480185828601613dc8565b925050602083013567ffffffffffffffff81111561482257614821613c2c565b5b61482e85828601613fec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061487f57607f821691505b6020821081141561489357614892614838565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061490282613da7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614935576149346148c8565b5b600182019050919050565b600061494b82613da7565b915061495683613da7565b925082821015614969576149686148c8565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149aa602083613cf7565b91506149b582614974565b602082019050919050565b600060208201905081810360008301526149d98161499d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a1a82613da7565b9150614a2583613da7565b925082614a3557614a346149e0565b5b828204905092915050565b600081519050614a4f81613e66565b92915050565b600060208284031215614a6b57614a6a613c27565b5b6000614a7984828501614a40565b91505092915050565b6000614a8d82613da7565b9150614a9883613da7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614acd57614acc6148c8565b5b828201905092915050565b600081519050614ae781613db1565b92915050565b600060208284031215614b0357614b02613c27565b5b6000614b1184828501614ad8565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614b50601f83613cf7565b9150614b5b82614b1a565b602082019050919050565b60006020820190508181036000830152614b7f81614b43565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614bb381614867565b614bbd8186614b86565b94506001821660008114614bd85760018114614be957614c1c565b60ff19831686528186019350614c1c565b614bf285614b91565b60005b83811015614c1457815481890152600182019150602081019050614bf5565b838801955050505b50505092915050565b6000614c3082613cec565b614c3a8185614b86565b9350614c4a818560208601613d08565b80840191505092915050565b6000614c628285614ba6565b9150614c6e8284614c25565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cd6602683613cf7565b9150614ce182614c7a565b604082019050919050565b60006020820190508181036000830152614d0581614cc9565b9050919050565b6000614d1782613da7565b9150614d2283613da7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d5b57614d5a6148c8565b5b828202905092915050565b600081519050919050565b600082825260208201905092915050565b6000614d8d82614d66565b614d978185614d71565b9350614da7818560208601613d08565b614db081613d3b565b840191505092915050565b6000608082019050614dd06000830187613e3c565b614ddd6020830186613e3c565b614dea6040830185614121565b8181036060830152614dfc8184614d82565b905095945050505050565b600081519050614e1681613c5d565b92915050565b600060208284031215614e3257614e31613c27565b5b6000614e4084828501614e07565b91505092915050565b6000614e5482613da7565b9150614e5f83613da7565b925082614e6f57614e6e6149e0565b5b82820690509291505056fea264697066735822122090e637f8758edd9a029f75c4ca19fbebfd97377737cd2e6a2a5fb63e211c532f64736f6c634300080b0033
Deployed Bytecode
0x6080604052600436106102675760003560e01c80638da5cb5b11610144578063d547cfb7116100b6578063ed7409461161007a578063ed74094614610971578063f2fde38b1461099a578063f6ecf215146109c3578063f968adbe146109da578063fb08f3a114610a05578063fd91254f14610a3057610267565b8063d547cfb71461088a578063e08bb79a146108b5578063e1dc0761146108cc578063e792277814610909578063e985e9c51461093457610267565b80639ba88177116101085780639ba881771461078a578063a22cb465146107c8578063b88d4fde146107f1578063bc63f4e01461081a578063c87b56dd14610836578063d37eae071461087357610267565b80638da5cb5b1461067d5780639277e631146106a85780639435b58a146106e557806395d89b41146107225780639b19251a1461074d57610267565b80633ccfd60b116101dd5780636352211e116101a15780636352211e1461056d5780636817c76c146105aa578063685c7578146105d557806370a08231146105fe578063715018a61461063b57806379e1587a1461065257610267565b80633ccfd60b1461049c57806342842e0e146104b357806345c0f533146104dc5780634e7a3fae14610507578063548db1741461054457610267565b806318160ddd1161022f57806318160ddd146103795780631f43cf85146103a457806323b872dd146103e2578063299eaec71461040b57806330176e13146104485780633ad7f56c1461047157610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630ea390281461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613c89565b610a4c565b6040516102a09190613cd1565b60405180910390f35b3480156102b557600080fd5b506102be610b2e565b6040516102cb9190613d85565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613ddd565b610bc0565b6040516103089190613e4b565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613e92565b610c3c565b005b34801561034657600080fd5b50610361600480360381019061035c919061401a565b610d47565b60405161037093929190614130565b60405180910390f35b34801561038557600080fd5b5061038e610f83565b60405161039b919061416e565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190614189565b610f91565b6040516103d99291906141b6565b60405180910390f35b3480156103ee57600080fd5b50610409600480360381019061040491906141e6565b61109f565b005b34801561041757600080fd5b50610432600480360381019061042d9190613ddd565b6110af565b60405161043f9190613cd1565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a91906142ee565b6110cf565b005b34801561047d57600080fd5b50610486611165565b6040516104939190613cd1565b60405180910390f35b3480156104a857600080fd5b506104b1611178565b005b3480156104bf57600080fd5b506104da60048036038101906104d591906141e6565b6112c4565b005b3480156104e857600080fd5b506104f16112e4565b6040516104fe919061416e565b60405180910390f35b34801561051357600080fd5b5061052e600480360381019061052991906141e6565b6112ea565b60405161053b9190613cd1565b60405180910390f35b34801561055057600080fd5b5061056b600480360381019061056691906143fa565b6113a2565b005b34801561057957600080fd5b50610594600480360381019061058f9190613ddd565b6114a0565b6040516105a19190613e4b565b60405180910390f35b3480156105b657600080fd5b506105bf6114b6565b6040516105cc919061416e565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613ddd565b6114bc565b005b34801561060a57600080fd5b5061062560048036038101906106209190614189565b611575565b604051610632919061416e565b60405180910390f35b34801561064757600080fd5b50610650611645565b005b34801561065e57600080fd5b506106676116cd565b604051610674919061416e565b60405180910390f35b34801561068957600080fd5b506106926116d3565b60405161069f9190613e4b565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190614443565b6116fd565b6040516106dc9190613cd1565b60405180910390f35b3480156106f157600080fd5b5061070c60048036038101906107079190613ddd565b611789565b6040516107199190613cd1565b60405180910390f35b34801561072e57600080fd5b506107376117a9565b6040516107449190613d85565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190614189565b61183b565b604051610781919061416e565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac91906144af565b611853565b6040516107bf9291906141b6565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190614516565b611a91565b005b3480156107fd57600080fd5b50610818600480360381019061081391906145f7565b611c09565b005b610834600480360381019061082f919061467a565b611c5c565b005b34801561084257600080fd5b5061085d60048036038101906108589190613ddd565b612070565b60405161086a9190613d85565b60405180910390f35b34801561087f57600080fd5b506108886120a4565b005b34801561089657600080fd5b5061089f61214c565b6040516108ac9190613d85565b60405180910390f35b3480156108c157600080fd5b506108ca6121da565b005b3480156108d857600080fd5b506108f360048036038101906108ee9190613ddd565b612282565b6040516109009190614765565b60405180910390f35b34801561091557600080fd5b5061091e612321565b60405161092b9190613cd1565b60405180910390f35b34801561094057600080fd5b5061095b60048036038101906109569190614443565b612334565b6040516109689190613cd1565b60405180910390f35b34801561097d57600080fd5b5061099860048036038101906109939190614780565b6123c8565b005b3480156109a657600080fd5b506109c160048036038101906109bc9190614189565b6124c6565b005b3480156109cf57600080fd5b506109d86125be565b005b3480156109e657600080fd5b506109ef612666565b6040516109fc919061416e565b60405180910390f35b348015610a1157600080fd5b50610a1a61266c565b604051610a279190613cd1565b60405180910390f35b610a4a6004803603810190610a4591906147dc565b61267f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b275750610b2682612ab7565b5b9050919050565b606060028054610b3d90614867565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6990614867565b8015610bb65780601f10610b8b57610100808354040283529160200191610bb6565b820191906000526020600020905b815481529060010190602001808311610b9957829003601f168201915b5050505050905090565b6000610bcb82612b21565b610c01576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c47826114a0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610caf576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cce612b5b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d005750610cfe81610cf9612b5b565b612334565b155b15610d37576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d42838383612b63565b505050565b60606000806000845167ffffffffffffffff811115610d6957610d68613ed7565b5b604051908082528060200260200182016040528015610d975781602001602082028036833780820191505090505b509050600080600080600090505b8851811015610e8e57612710898281518110610dc457610dc3614899565b5b60200260200101511115610dd757610e8e565b8180610de2906148f7565b925050601160008a8381518110610dfc57610dfb614899565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16610e7b57888181518110610e3757610e36614899565b5b6020026020010151858581518110610e5257610e51614899565b5b6020026020010181815250508380610e69906148f7565b9450508280610e77906148f7565b9350505b8080610e86906148f7565b915050610da5565b5060008190505b8851811015610f6e57612710898281518110610eb457610eb3614899565b5b602002602001015111610ec657610f6e565b601260006127108b8481518110610ee057610edf614899565b5b6020026020010151610ef29190614940565b815260200190815260200160002060009054906101000a900460ff16610f5b57888181518110610f2557610f24614899565b5b6020026020010151858481518110610f4057610f3f614899565b5b6020026020010181815250508280610f57906148f7565b9350505b8080610f66906148f7565b915050610e95565b50838383965096509650505050509193909250565b600060015460005403905090565b606060008060148054905067ffffffffffffffff811115610fb557610fb4613ed7565b5b604051908082528060200260200182016040528015610fe35781602001602082028036833780820191505090505b509050600080600190505b6014805490508110156110915760011515611047876014848154811061101757611016614899565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166116fd565b1515141561107e578083838151811061106357611062614899565b5b602002602001018181525050818061107a906148f7565b9250505b8080611089906148f7565b915050610fee565b508181935093505050915091565b6110aa838383612c15565b505050565b60126020528060005260406000206000915054906101000a900460ff1681565b6110d7612b5b565b73ffffffffffffffffffffffffffffffffffffffff166110f56116d3565b73ffffffffffffffffffffffffffffffffffffffff161461114b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611142906149c0565b60405180910390fd5b80600a9080519060200190611161929190613ad5565b5050565b600f60009054906101000a900460ff1681565b611180612b5b565b73ffffffffffffffffffffffffffffffffffffffff1661119e6116d3565b73ffffffffffffffffffffffffffffffffffffffff16146111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906149c0565b60405180910390fd5b600047905060006002826112089190614a0f565b905073f90783f6b1265fa13d5510424a77ad5751fcc87e73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611264573d6000803e3d6000fd5b50738eca6171074d95daf93f2165c472cb2eb703245873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112bf573d6000803e3d6000fd5b505050565b6112df83838360405180602001604052806000815250611c09565b505050565b600c5481565b6000808390508073ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401611329919061416e565b602060405180830381865afa158015611346573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136a9190614a55565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16149150509392505050565b6113aa612b5b565b73ffffffffffffffffffffffffffffffffffffffff166113c86116d3565b73ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611415906149c0565b60405180910390fd5b60005b815181101561149c5760006013600084848151811061144357611442614899565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611494906148f7565b915050611421565b5050565b60006114ab82613106565b600001519050919050565b600b5481565b6114c4612b5b565b73ffffffffffffffffffffffffffffffffffffffff166114e26116d3565b73ffffffffffffffffffffffffffffffffffffffff1614611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f906149c0565b60405180910390fd5b600d5481111561154757600080fd5b600c5481611553610f83565b61155d9190614a82565b111561156857600080fd5b6115723382613382565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115dd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61164d612b5b565b73ffffffffffffffffffffffffffffffffffffffff1661166b6116d3565b73ffffffffffffffffffffffffffffffffffffffff16146116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b8906149c0565b60405180910390fd5b6116cb60006133a0565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008082905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b815260040161173e9190613e4b565b602060405180830381865afa15801561175b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177f9190614aed565b1191505092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b6060600380546117b890614867565b80601f01602080910402602001604051908101604052809291908181526020018280546117e490614867565b80156118315780601f1061180657610100808354040283529160200191611831565b820191906000526020600020905b81548152906001019060200180831161181457829003601f168201915b5050505050905090565b60136020528060005260406000206000915090505481565b606060008060008661187c5773370108cf39555e561353b20ecf1eaae89beb72ce915081611895565b73eeabfab26ad5c650765b124c685a13800e52b9d29150815b5086156118a25761271090505b600082905060008173ffffffffffffffffffffffffffffffffffffffff166370a082318b6040518263ffffffff1660e01b81526004016118e29190613e4b565b602060405180830381865afa1580156118ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119239190614aed565b905060008167ffffffffffffffff81111561194157611940613ed7565b5b60405190808252806020026020018201604052801561196f5781602001602082028036833780820191505090505b5090506000808a90505b89811015611a7b578c73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016119d1919061416e565b602060405180830381865afa1580156119ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a129190614a55565b73ffffffffffffffffffffffffffffffffffffffff161415611a68578581611a3a9190614a82565b838381518110611a4d57611a4c614899565b5b6020026020010181815250508180611a64906148f7565b9250505b8080611a73906148f7565b915050611979565b5081819750975050505050505094509492505050565b611a99612b5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afe576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b0b612b5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bb8612b5b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bfd9190613cd1565b60405180910390a35050565b611c14848484612c15565b611c2084848484613466565b611c56576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611c646135e5565b60026009541415611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190614b66565b60405180910390fd5b6002600981905550600d54600c54611cc29190614940565b6001611ccc610f83565b611cd69190614a82565b1115611ce157600080fd5b34600b541115611cf057600080fd5b600f60029054906101000a900460ff1615611f2557600f60009054906101000a900460ff16611d1e57600080fd5b612710811115611de05760011515611d583373eeabfab26ad5c650765b124c685a13800e52b9d261271085611d539190614940565b6112ea565b151514611d6457600080fd5b600015156012600061271084611d7a9190614940565b815260200190815260200160002060009054906101000a900460ff16151514611da257600080fd5b60016012600061271084611db69190614940565b815260200190815260200160002060006101000a81548160ff021916908315150217905550611f20565b6000811115611e7a5760011515611e0c3373370108cf39555e561353b20ecf1eaae89beb72ce846112ea565b151514611e1857600080fd5b600015156011600083815260200190815260200160002060009054906101000a900460ff16151514611e4957600080fd5b60016011600083815260200190815260200160002060006101000a81548160ff021916908315150217905550611f1f565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611ec757600080fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f179190614940565b925050819055505b5b611f3f565b600f60019054906101000a900460ff16611f3e57600080fd5b5b6000841115611f785760011515611f6b3373370108cf39555e561353b20ecf1eaae89beb72ce876112ea565b151514611f7757600080fd5b5b6000831115611fb15760011515611fa43373eeabfab26ad5c650765b124c685a13800e52b9d2866112ea565b151514611fb057600080fd5b5b600082111561201357600115156120063360148581548110611fd657611fd5614899565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166116fd565b15151461201257600080fd5b5b6040518060600160405280858152602001848152602001838152506010600061203a610f83565b8152602001908152602001600020906003612056929190613b5b565b50612062336001613382565b600160098190555050505050565b6060600a61207d8361361f565b60405160200161208e929190614c56565b6040516020818303038152906040529050919050565b6120ac612b5b565b73ffffffffffffffffffffffffffffffffffffffff166120ca6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612120576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612117906149c0565b60405180910390fd5b600f60029054906101000a900460ff1615600f60026101000a81548160ff021916908315150217905550565b600a805461215990614867565b80601f016020809104026020016040519081016040528092919081815260200182805461218590614867565b80156121d25780601f106121a7576101008083540402835291602001916121d2565b820191906000526020600020905b8154815290600101906020018083116121b557829003601f168201915b505050505081565b6121e2612b5b565b73ffffffffffffffffffffffffffffffffffffffff166122006116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d906149c0565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b61228a613b9b565b6040518060600160405280601060008581526020019081526020016000206000600381106122bb576122ba614899565b5b01548152602001601060008581526020019081526020016000206001600381106122e8576122e7614899565b5b015481526020016010600085815260200190815260200160002060026003811061231557612314614899565b5b01548152509050919050565b600f60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123d0612b5b565b73ffffffffffffffffffffffffffffffffffffffff166123ee6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b906149c0565b60405180910390fd5b60005b82518110156124c157816013600085848151811061246857612467614899565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806124b9906148f7565b915050612447565b505050565b6124ce612b5b565b73ffffffffffffffffffffffffffffffffffffffff166124ec6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612539906149c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a990614cec565b60405180910390fd5b6125bb816133a0565b50565b6125c6612b5b565b73ffffffffffffffffffffffffffffffffffffffff166125e46116d3565b73ffffffffffffffffffffffffffffffffffffffff161461263a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612631906149c0565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600e5481565b600f60029054906101000a900460ff1681565b6126876135e5565b600260095414156126cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c490614b66565b60405180910390fd5b6002600981905550600082116126e257600080fd5b600e548211156126f157600080fd5b600d54600c546127019190614940565b8261270a610f83565b6127149190614a82565b111561271f57600080fd5b3482600b5461272e9190614d0c565b111561273957600080fd5b600f60029054906101000a900460ff1615612a6457600f60009054906101000a900460ff1661276757600080fd5b60008060005b83518110156129a35761271084828151811061278c5761278b614899565b5b602002602001015111156128a457601260006127108684815181106127b4576127b3614899565b5b60200260200101516127c69190614940565b815260200190815260200160002060009054906101000a900460ff161580156128385750600115156128343373eeabfab26ad5c650765b124c685a13800e52b9d261271088868151811061281d5761281c614899565b5b602002602001015161282f9190614940565b6112ea565b1515145b1561289f5760016012600061271087858151811061285957612858614899565b5b602002602001015161286b9190614940565b815260200190815260200160002060006101000a81548160ff021916908315150217905550828061289b906148f7565b9350505b612983565b601160008583815181106128bb576128ba614899565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff161580156129285750600115156129243373370108cf39555e561353b20ecf1eaae89beb72ce87858151811061291757612916614899565b5b60200260200101516112ea565b1515145b156129825760016011600086848151811061294657612945614899565b5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550828061297e906148f7565b9350505b5b84831415612990576129a3565b808061299b906148f7565b91505061276d565b5083821015612a5d5781846129b89190614940565b9050601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115612a0657600080fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a559190614940565b925050819055505b5050612a7e565b600f60019054906101000a900460ff16612a7d57600080fd5b5b612a883383613382565b60016009819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015612b54575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612c2082613106565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612c47612b5b565b73ffffffffffffffffffffffffffffffffffffffff161480612c7a5750612c798260000151612c74612b5b565b612334565b5b80612cbf5750612c88612b5b565b73ffffffffffffffffffffffffffffffffffffffff16612ca784610bc0565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612cf8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d61576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612dc8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dd58585856001613780565b612de56000848460000151612b63565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613096576000548110156130955782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130ff8585856001613786565b5050505050565b61310e613bbd565b600082905060005481101561334b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161334957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461322d57809250505061337d565b5b60011561334857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461334357809250505061337d565b61322e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61339c82826040518060200160405280600081525061378c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006134878473ffffffffffffffffffffffffffffffffffffffff16612a94565b156135d8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134b0612b5b565b8786866040518563ffffffff1660e01b81526004016134d29493929190614dbb565b6020604051808303816000875af192505050801561350e57506040513d601f19601f8201168201806040525081019061350b9190614e1c565b60015b613588573d806000811461353e576040519150601f19603f3d011682016040523d82523d6000602084013e613543565b606091505b50600081511415613580576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135dd565b600190505b949350505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461361d57600080fd5b565b60606000821415613667576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061377b565b600082905060005b60008214613699578080613682906148f7565b915050600a826136929190614a0f565b915061366f565b60008167ffffffffffffffff8111156136b5576136b4613ed7565b5b6040519080825280601f01601f1916602001820160405280156136e75781602001600182028036833780820191505090505b5090505b60008514613774576001826137009190614940565b9150600a8561370f9190614e49565b603061371b9190614a82565b60f81b81838151811061373157613730614899565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561376d9190614a0f565b94506136eb565b8093505050505b919050565b50505050565b50505050565b613799838383600161379e565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561380b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613846576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138536000868387613780565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613ab857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015613a6c5750613a6a6000888488613466565b155b15613aa3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506139f1565b508060008190555050613ace6000868387613786565b5050505050565b828054613ae190614867565b90600052602060002090601f016020900481019282613b035760008555613b4a565b82601f10613b1c57805160ff1916838001178555613b4a565b82800160010185558215613b4a579182015b82811115613b49578251825591602001919060010190613b2e565b5b509050613b579190613c00565b5090565b8260038101928215613b8a579160200282015b82811115613b89578251825591602001919060010190613b6e565b5b509050613b979190613c00565b5090565b6040518060600160405280600390602082028036833780820191505090505090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613c19576000816000905550600101613c01565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c6681613c31565b8114613c7157600080fd5b50565b600081359050613c8381613c5d565b92915050565b600060208284031215613c9f57613c9e613c27565b5b6000613cad84828501613c74565b91505092915050565b60008115159050919050565b613ccb81613cb6565b82525050565b6000602082019050613ce66000830184613cc2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d26578082015181840152602081019050613d0b565b83811115613d35576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d5782613cec565b613d618185613cf7565b9350613d71818560208601613d08565b613d7a81613d3b565b840191505092915050565b60006020820190508181036000830152613d9f8184613d4c565b905092915050565b6000819050919050565b613dba81613da7565b8114613dc557600080fd5b50565b600081359050613dd781613db1565b92915050565b600060208284031215613df357613df2613c27565b5b6000613e0184828501613dc8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e3582613e0a565b9050919050565b613e4581613e2a565b82525050565b6000602082019050613e606000830184613e3c565b92915050565b613e6f81613e2a565b8114613e7a57600080fd5b50565b600081359050613e8c81613e66565b92915050565b60008060408385031215613ea957613ea8613c27565b5b6000613eb785828601613e7d565b9250506020613ec885828601613dc8565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f0f82613d3b565b810181811067ffffffffffffffff82111715613f2e57613f2d613ed7565b5b80604052505050565b6000613f41613c1d565b9050613f4d8282613f06565b919050565b600067ffffffffffffffff821115613f6d57613f6c613ed7565b5b602082029050602081019050919050565b600080fd5b6000613f96613f9184613f52565b613f37565b90508083825260208201905060208402830185811115613fb957613fb8613f7e565b5b835b81811015613fe25780613fce8882613dc8565b845260208401935050602081019050613fbb565b5050509392505050565b600082601f83011261400157614000613ed2565b5b8135614011848260208601613f83565b91505092915050565b6000602082840312156140305761402f613c27565b5b600082013567ffffffffffffffff81111561404e5761404d613c2c565b5b61405a84828501613fec565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61409881613da7565b82525050565b60006140aa838361408f565b60208301905092915050565b6000602082019050919050565b60006140ce82614063565b6140d8818561406e565b93506140e38361407f565b8060005b838110156141145781516140fb888261409e565b9750614106836140b6565b9250506001810190506140e7565b5085935050505092915050565b61412a81613da7565b82525050565b6000606082019050818103600083015261414a81866140c3565b90506141596020830185614121565b6141666040830184614121565b949350505050565b60006020820190506141836000830184614121565b92915050565b60006020828403121561419f5761419e613c27565b5b60006141ad84828501613e7d565b91505092915050565b600060408201905081810360008301526141d081856140c3565b90506141df6020830184614121565b9392505050565b6000806000606084860312156141ff576141fe613c27565b5b600061420d86828701613e7d565b935050602061421e86828701613e7d565b925050604061422f86828701613dc8565b9150509250925092565b600080fd5b600067ffffffffffffffff82111561425957614258613ed7565b5b61426282613d3b565b9050602081019050919050565b82818337600083830152505050565b600061429161428c8461423e565b613f37565b9050828152602081018484840111156142ad576142ac614239565b5b6142b884828561426f565b509392505050565b600082601f8301126142d5576142d4613ed2565b5b81356142e584826020860161427e565b91505092915050565b60006020828403121561430457614303613c27565b5b600082013567ffffffffffffffff81111561432257614321613c2c565b5b61432e848285016142c0565b91505092915050565b600067ffffffffffffffff82111561435257614351613ed7565b5b602082029050602081019050919050565b600061437661437184614337565b613f37565b9050808382526020820190506020840283018581111561439957614398613f7e565b5b835b818110156143c257806143ae8882613e7d565b84526020840193505060208101905061439b565b5050509392505050565b600082601f8301126143e1576143e0613ed2565b5b81356143f1848260208601614363565b91505092915050565b6000602082840312156144105761440f613c27565b5b600082013567ffffffffffffffff81111561442e5761442d613c2c565b5b61443a848285016143cc565b91505092915050565b6000806040838503121561445a57614459613c27565b5b600061446885828601613e7d565b925050602061447985828601613e7d565b9150509250929050565b61448c81613cb6565b811461449757600080fd5b50565b6000813590506144a981614483565b92915050565b600080600080608085870312156144c9576144c8613c27565b5b60006144d787828801613e7d565b94505060206144e88782880161449a565b93505060406144f987828801613dc8565b925050606061450a87828801613dc8565b91505092959194509250565b6000806040838503121561452d5761452c613c27565b5b600061453b85828601613e7d565b925050602061454c8582860161449a565b9150509250929050565b600067ffffffffffffffff82111561457157614570613ed7565b5b61457a82613d3b565b9050602081019050919050565b600061459a61459584614556565b613f37565b9050828152602081018484840111156145b6576145b5614239565b5b6145c184828561426f565b509392505050565b600082601f8301126145de576145dd613ed2565b5b81356145ee848260208601614587565b91505092915050565b6000806000806080858703121561461157614610613c27565b5b600061461f87828801613e7d565b945050602061463087828801613e7d565b935050604061464187828801613dc8565b925050606085013567ffffffffffffffff81111561466257614661613c2c565b5b61466e878288016145c9565b91505092959194509250565b6000806000806080858703121561469457614693613c27565b5b60006146a287828801613dc8565b94505060206146b387828801613dc8565b93505060406146c487828801613dc8565b92505060606146d587828801613dc8565b91505092959194509250565b600060039050919050565b600081905092915050565b6000819050919050565b6000602082019050919050565b614717816146e1565b61472181846146ec565b925061472c826146f7565b8060005b8381101561475d578151614744878261409e565b965061474f83614701565b925050600181019050614730565b505050505050565b600060608201905061477a600083018461470e565b92915050565b6000806040838503121561479757614796613c27565b5b600083013567ffffffffffffffff8111156147b5576147b4613c2c565b5b6147c1858286016143cc565b92505060206147d285828601613dc8565b9150509250929050565b600080604083850312156147f3576147f2613c27565b5b600061480185828601613dc8565b925050602083013567ffffffffffffffff81111561482257614821613c2c565b5b61482e85828601613fec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061487f57607f821691505b6020821081141561489357614892614838565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061490282613da7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614935576149346148c8565b5b600182019050919050565b600061494b82613da7565b915061495683613da7565b925082821015614969576149686148c8565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149aa602083613cf7565b91506149b582614974565b602082019050919050565b600060208201905081810360008301526149d98161499d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a1a82613da7565b9150614a2583613da7565b925082614a3557614a346149e0565b5b828204905092915050565b600081519050614a4f81613e66565b92915050565b600060208284031215614a6b57614a6a613c27565b5b6000614a7984828501614a40565b91505092915050565b6000614a8d82613da7565b9150614a9883613da7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614acd57614acc6148c8565b5b828201905092915050565b600081519050614ae781613db1565b92915050565b600060208284031215614b0357614b02613c27565b5b6000614b1184828501614ad8565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614b50601f83613cf7565b9150614b5b82614b1a565b602082019050919050565b60006020820190508181036000830152614b7f81614b43565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614bb381614867565b614bbd8186614b86565b94506001821660008114614bd85760018114614be957614c1c565b60ff19831686528186019350614c1c565b614bf285614b91565b60005b83811015614c1457815481890152600182019150602081019050614bf5565b838801955050505b50505092915050565b6000614c3082613cec565b614c3a8185614b86565b9350614c4a818560208601613d08565b80840191505092915050565b6000614c628285614ba6565b9150614c6e8284614c25565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cd6602683613cf7565b9150614ce182614c7a565b604082019050919050565b60006020820190508181036000830152614d0581614cc9565b9050919050565b6000614d1782613da7565b9150614d2283613da7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d5b57614d5a6148c8565b5b828202905092915050565b600081519050919050565b600082825260208201905092915050565b6000614d8d82614d66565b614d978185614d71565b9350614da7818560208601613d08565b614db081613d3b565b840191505092915050565b6000608082019050614dd06000830187613e3c565b614ddd6020830186613e3c565b614dea6040830185614121565b8181036060830152614dfc8184614d82565b905095945050505050565b600081519050614e1681613c5d565b92915050565b600060208284031215614e3257614e31613c27565b5b6000614e4084828501614e07565b91505092915050565b6000614e5482613da7565b9150614e5f83613da7565b925082614e6f57614e6e6149e0565b5b82820690509291505056fea264697066735822122090e637f8758edd9a029f75c4ca19fbebfd97377737cd2e6a2a5fb63e211c532f64736f6c634300080b0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.