ERC-721
Overview
Max Total Supply
946 Astro Apes
Holders
374
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 Astro ApesLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AstroApes
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// // ______ ______ ________ _______ ______ ______ _______ ________ ______ // / \ / \ / |/ \ / \ / \ / \ / | / \ // /$$$$$$ |/$$$$$$ |$$$$$$$$/ $$$$$$$ |/$$$$$$ | /$$$$$$ |$$$$$$$ |$$$$$$$$/ /$$$$$$ | // $$ |__$$ |$$ \__$$/ $$ | $$ |__$$ |$$ | $$ | $$ |__$$ |$$ |__$$ |$$ |__ $$ \__$$/ // $$ $$ |$$ \ $$ | $$ $$< $$ | $$ | $$ $$ |$$ $$/ $$ | $$ \ // $$$$$$$$ | $$$$$$ | $$ | $$$$$$$ |$$ | $$ | $$$$$$$$ |$$$$$$$/ $$$$$/ $$$$$$ | // $$ | $$ |/ \__$$ | $$ | $$ | $$ |$$ \__$$ | $$ | $$ |$$ | $$ |_____ / \__$$ | // $$ | $$ |$$ $$/ $$ | $$ | $$ |$$ $$/ $$ | $$ |$$ | $$ |$$ $$/ // $$/ $$/ $$$$$$/ $$/ $$/ $$/ $$$$$$/ $$/ $$/ $$/ $$$$$$$$/ $$$$$$/ // // <3 // // SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; contract AstroApes is ERC721Enumerable, Ownable { string _baseTokenURI; string _notRevealedURI; uint256 public maxApes; uint256 public nftPerAddressLimit; uint256 private apePrice = 0.05 ether; bool public saleIsActive = false; bool public revealed = false; bool public onlyWhiteListed = true; address[] public whitelistedAddresses; uint256 private _wlCap; constructor() ERC721("Astro Apes", "Astro Apes") { maxApes = 5555; nftPerAddressLimit = 4; } function mintApe(uint256 apeQuantity) public payable { uint256 supply = totalSupply(); require( saleIsActive,"Sale is paused" ); if (msg.sender != owner()) { if(onlyWhiteListed){ require(isWhiteListed(msg.sender), "user is not whitelisted"); uint256 ownerTokenCount = balanceOf(msg.sender); require(apeQuantity <= nftPerAddressLimit); require(ownerTokenCount <= nftPerAddressLimit); } require(msg.value >= apePrice * apeQuantity, "TX Value not correct"); } require( apeQuantity < 21,"Only 20 at a time" ); require( supply + apeQuantity <= maxApes, "Exceeds maximum supply" ); require( msg.value >= apePrice * apeQuantity,"TX Value not correct" ); for(uint256 i; i < apeQuantity; i++){ _safeMint( msg.sender, supply + i ); } } function setPrice(uint256 newApePrice) public onlyOwner() { apePrice = newApePrice; } function _baseURI() internal view virtual override returns (string memory) { if(revealed == false) { return _notRevealedURI; } return _baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function isWhiteListed(address _user) public view returns (bool){ for(uint256 i = 0; i < whitelistedAddresses.length; i++){ if(whitelistedAddresses[i] == _user){ return true; } } return false; } function setNotRevealedURI(string memory notRevealedURI) public onlyOwner { _notRevealedURI = notRevealedURI; } function reveal() public onlyOwner { revealed = true; } function reserveApes() public onlyOwner { uint supply = totalSupply(); uint i; for (i = 0; i < 20; i++) { _safeMint(msg.sender, supply + i); } } function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhiteListed = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function withdraw() public onlyOwner { (bool ns, ) = payable(0x43eD8C36C4f0AC62461a67C634ceFF906d46cA29).call{value: address(this).balance * 10 / 100}(""); require(ns); (bool js, ) = payable(0xA04FcEF0d826c98753E4F39338A36Bf6a970E763).call{value: address(this).balance * 6 / 100}(""); require(js); (bool bs, ) = payable(0xA2ACC65745D48cdB75Bcb768FFDABac9f2570F5e).call{value: address(this).balance * 10 / 100}(""); require(bs); (bool ts, ) = payable(0x461915680BFC447F1cDbe93C3acb4C1c6e0bfE8d).call{value: address(this).balance * 37 / 100}(""); require(ts); (bool ps, ) = payable(0x248B6D850E340ca36Ed4D507c0c6139b54C88c55).call{value: address(this).balance * 37 / 100}(""); require(ps); (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function withdraw_all() public onlyOwner{ uint balance = address(this).balance; require(payable(msg.sender).send(balance)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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.0 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (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.0 (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.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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 v4.4.0 (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.0 (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" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxApes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"apeQuantity","type":"uint256"}],"name":"mintApe","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveApes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newApePrice","type":"uint256"}],"name":"setPrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw_all","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266b1a2bc2ec50000600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280600a81526020017f417374726f2041706573000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f417374726f2041706573000000000000000000000000000000000000000000008152508160009080519060200190620000f292919062000213565b5080600190805190602001906200010b92919062000213565b5050506200012e620001226200014560201b60201c565b6200014d60201b60201c565b6115b3600d819055506004600e8190555062000328565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022190620002c3565b90600052602060002090601f01602090048101928262000245576000855562000291565b82601f106200026057805160ff191683800117855562000291565b8280016001018555821562000291579182015b828111156200029057825182559160200191906001019062000273565b5b509050620002a09190620002a4565b5090565b5b80821115620002bf576000816000905550600101620002a5565b5090565b60006002820490506001821680620002dc57607f821691505b60208210811415620002f357620002f2620002f9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614bbb80620003386000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c51461078a578063eb8d2444146107c7578063edec5f27146107f2578063f2c4ce1e1461081b578063f2fde38b146108445761021a565b8063b88d4fde146106a5578063ba4e5c49146106ce578063ba7d2c761461070b578063c87b56dd14610736578063dd473d2b146107735761021a565b8063a22cb465116100f2578063a22cb46514610607578063a475907414610630578063a475b5dd1461065b578063a723533e14610672578063b0f674271461068e5761021a565b8063715018a6146105715780638da5cb5b1461058857806391b7f5ed146105b357806395d89b41146105dc5761021a565b80633c952764116101a65780635183022711610175578063518302271461046657806355f804b3146104915780636352211e146104ba5780636f9170f6146104f757806370a08231146105345761021a565b80633c952764146103c05780633ccfd60b146103e957806342842e0e146104005780634f6ccce7146104295761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd146103185780632f745c591461034157806334918dfd1461037e578063352bc9bb146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906137dd565b61086d565b6040516102539190613d65565b60405180910390f35b34801561026857600080fd5b506102716108e7565b60405161027e9190613d80565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613880565b610979565b6040516102bb9190613cfe565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613723565b6109fe565b005b3480156102f957600080fd5b50610302610b16565b60405161030f9190614082565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061360d565b610b23565b005b34801561034d57600080fd5b5061036860048036038101906103639190613723565b610b83565b6040516103759190614082565b60405180910390f35b34801561038a57600080fd5b50610393610c28565b005b3480156103a157600080fd5b506103aa610cd0565b6040516103b79190614082565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906137b0565b610cd6565b005b3480156103f557600080fd5b506103fe610d6f565b005b34801561040c57600080fd5b506104276004803603810190610422919061360d565b61119a565b005b34801561043557600080fd5b50610450600480360381019061044b9190613880565b6111ba565b60405161045d9190614082565b60405180910390f35b34801561047257600080fd5b5061047b61122b565b6040516104889190613d65565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190613837565b61123e565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190613880565b6112d4565b6040516104ee9190613cfe565b60405180910390f35b34801561050357600080fd5b5061051e600480360381019061051991906135a0565b611386565b60405161052b9190613d65565b60405180910390f35b34801561054057600080fd5b5061055b600480360381019061055691906135a0565b611435565b6040516105689190614082565b60405180910390f35b34801561057d57600080fd5b506105866114ed565b005b34801561059457600080fd5b5061059d611575565b6040516105aa9190613cfe565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190613880565b61159f565b005b3480156105e857600080fd5b506105f1611625565b6040516105fe9190613d80565b60405180910390f35b34801561061357600080fd5b5061062e600480360381019061062991906136e3565b6116b7565b005b34801561063c57600080fd5b506106456116cd565b6040516106529190613d65565b60405180910390f35b34801561066757600080fd5b506106706116e0565b005b61068c60048036038101906106879190613880565b611779565b005b34801561069a57600080fd5b506106a3611a04565b005b3480156106b157600080fd5b506106cc60048036038101906106c79190613660565b611ac4565b005b3480156106da57600080fd5b506106f560048036038101906106f09190613880565b611b26565b6040516107029190613cfe565b60405180910390f35b34801561071757600080fd5b50610720611b65565b60405161072d9190614082565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190613880565b611b6b565b60405161076a9190613d80565b60405180910390f35b34801561077f57600080fd5b50610788611c12565b005b34801561079657600080fd5b506107b160048036038101906107ac91906135cd565b611cd4565b6040516107be9190613d65565b60405180910390f35b3480156107d357600080fd5b506107dc611d68565b6040516107e99190613d65565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190613763565b611d7b565b005b34801561082757600080fd5b50610842600480360381019061083d9190613837565b611e1b565b005b34801561085057600080fd5b5061086b600480360381019061086691906135a0565b611eb1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e057506108df82611fa9565b5b9050919050565b6060600080546108f69061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546109229061433d565b801561096f5780601f106109445761010080835404028352916020019161096f565b820191906000526020600020905b81548152906001019060200180831161095257829003601f168201915b5050505050905090565b60006109848261208b565b6109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90613f02565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a09826112d4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190613fa2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a996120f7565b73ffffffffffffffffffffffffffffffffffffffff161480610ac85750610ac781610ac26120f7565b611cd4565b5b610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90613e82565b60405180910390fd5b610b1183836120ff565b505050565b6000600880549050905090565b610b34610b2e6120f7565b826121b8565b610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90614002565b60405180910390fd5b610b7e838383612296565b505050565b6000610b8e83611435565b8210610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613da2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c306120f7565b73ffffffffffffffffffffffffffffffffffffffff16610c4e611575565b73ffffffffffffffffffffffffffffffffffffffff1614610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90613f22565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600d5481565b610cde6120f7565b73ffffffffffffffffffffffffffffffffffffffff16610cfc611575565b73ffffffffffffffffffffffffffffffffffffffff1614610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990613f22565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b610d776120f7565b73ffffffffffffffffffffffffffffffffffffffff16610d95611575565b73ffffffffffffffffffffffffffffffffffffffff1614610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290613f22565b60405180910390fd5b60007343ed8c36c4f0ac62461a67c634ceff906d46ca2973ffffffffffffffffffffffffffffffffffffffff166064600a47610e2791906141f9565b610e3191906141c8565b604051610e3d90613ce9565b60006040518083038185875af1925050503d8060008114610e7a576040519150601f19603f3d011682016040523d82523d6000602084013e610e7f565b606091505b5050905080610e8d57600080fd5b600073a04fcef0d826c98753e4f39338a36bf6a970e76373ffffffffffffffffffffffffffffffffffffffff166064600647610ec991906141f9565b610ed391906141c8565b604051610edf90613ce9565b60006040518083038185875af1925050503d8060008114610f1c576040519150601f19603f3d011682016040523d82523d6000602084013e610f21565b606091505b5050905080610f2f57600080fd5b600073a2acc65745d48cdb75bcb768ffdabac9f2570f5e73ffffffffffffffffffffffffffffffffffffffff166064600a47610f6b91906141f9565b610f7591906141c8565b604051610f8190613ce9565b60006040518083038185875af1925050503d8060008114610fbe576040519150601f19603f3d011682016040523d82523d6000602084013e610fc3565b606091505b5050905080610fd157600080fd5b600073461915680bfc447f1cdbe93c3acb4c1c6e0bfe8d73ffffffffffffffffffffffffffffffffffffffff16606460254761100d91906141f9565b61101791906141c8565b60405161102390613ce9565b60006040518083038185875af1925050503d8060008114611060576040519150601f19603f3d011682016040523d82523d6000602084013e611065565b606091505b505090508061107357600080fd5b600073248b6d850e340ca36ed4d507c0c6139b54c88c5573ffffffffffffffffffffffffffffffffffffffff1660646025476110af91906141f9565b6110b991906141c8565b6040516110c590613ce9565b60006040518083038185875af1925050503d8060008114611102576040519150601f19603f3d011682016040523d82523d6000602084013e611107565b606091505b505090508061111557600080fd5b600061111f611575565b73ffffffffffffffffffffffffffffffffffffffff164760405161114290613ce9565b60006040518083038185875af1925050503d806000811461117f576040519150601f19603f3d011682016040523d82523d6000602084013e611184565b606091505b505090508061119257600080fd5b505050505050565b6111b583838360405180602001604052806000815250611ac4565b505050565b60006111c4610b16565b8210611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90614022565b60405180910390fd5b60088281548110611219576112186144d6565b5b90600052602060002001549050919050565b601060019054906101000a900460ff1681565b6112466120f7565b73ffffffffffffffffffffffffffffffffffffffff16611264611575565b73ffffffffffffffffffffffffffffffffffffffff16146112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190613f22565b60405180910390fd5b80600b90805190602001906112d092919061329d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613ec2565b60405180910390fd5b80915050919050565b600080600090505b60118054905081101561142a578273ffffffffffffffffffffffffffffffffffffffff16601182815481106113c6576113c56144d6565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611417576001915050611430565b8080611422906143a0565b91505061138e565b50600090505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90613ea2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114f56120f7565b73ffffffffffffffffffffffffffffffffffffffff16611513611575565b73ffffffffffffffffffffffffffffffffffffffff1614611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090613f22565b60405180910390fd5b61157360006124f2565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115a76120f7565b73ffffffffffffffffffffffffffffffffffffffff166115c5611575565b73ffffffffffffffffffffffffffffffffffffffff161461161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161290613f22565b60405180910390fd5b80600f8190555050565b6060600180546116349061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546116609061433d565b80156116ad5780601f10611682576101008083540402835291602001916116ad565b820191906000526020600020905b81548152906001019060200180831161169057829003601f168201915b5050505050905090565b6116c96116c26120f7565b83836125b8565b5050565b601060029054906101000a900460ff1681565b6116e86120f7565b73ffffffffffffffffffffffffffffffffffffffff16611706611575565b73ffffffffffffffffffffffffffffffffffffffff161461175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390613f22565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b6000611783610b16565b9050601060009054906101000a900460ff166117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90614062565b60405180910390fd5b6117dc611575565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118e957601060029054906101000a900460ff16156118985761182c33611386565b61186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290614042565b60405180910390fd5b600061187633611435565b9050600e5483111561188757600080fd5b600e5481111561189657600080fd5b505b81600f546118a691906141f9565b3410156118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90613fe2565b60405180910390fd5b5b6015821061192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390613f82565b60405180910390fd5b600d54828261193b9190614172565b111561197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390613fc2565b60405180910390fd5b81600f5461198a91906141f9565b3410156119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390613fe2565b60405180910390fd5b60005b828110156119ff576119ec3382846119e79190614172565b612725565b80806119f7906143a0565b9150506119cf565b505050565b611a0c6120f7565b73ffffffffffffffffffffffffffffffffffffffff16611a2a611575565b73ffffffffffffffffffffffffffffffffffffffff1614611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790613f22565b60405180910390fd5b6000611a8a610b16565b905060005b6014811015611ac057611aad338284611aa89190614172565b612725565b8080611ab8906143a0565b915050611a8f565b5050565b611ad5611acf6120f7565b836121b8565b611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90614002565b60405180910390fd5b611b2084848484612743565b50505050565b60118181548110611b3657600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6060611b768261208b565b611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac90613f62565b60405180910390fd5b6000611bbf61279f565b90506000815111611bdf5760405180602001604052806000815250611c0a565b80611be9846128e0565b604051602001611bfa929190613cc5565b6040516020818303038152906040525b915050919050565b611c1a6120f7565b73ffffffffffffffffffffffffffffffffffffffff16611c38611575565b73ffffffffffffffffffffffffffffffffffffffff1614611c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8590613f22565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611cd157600080fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611d836120f7565b73ffffffffffffffffffffffffffffffffffffffff16611da1611575565b73ffffffffffffffffffffffffffffffffffffffff1614611df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dee90613f22565b60405180910390fd5b60116000611e059190613323565b818160119190611e16929190613344565b505050565b611e236120f7565b73ffffffffffffffffffffffffffffffffffffffff16611e41611575565b73ffffffffffffffffffffffffffffffffffffffff1614611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90613f22565b60405180910390fd5b80600c9080519060200190611ead92919061329d565b5050565b611eb96120f7565b73ffffffffffffffffffffffffffffffffffffffff16611ed7611575565b73ffffffffffffffffffffffffffffffffffffffff1614611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2490613f22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490613de2565b60405180910390fd5b611fa6816124f2565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061207457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612084575061208382612a41565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612172836112d4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121c38261208b565b612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990613e62565b60405180910390fd5b600061220d836112d4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061227c57508373ffffffffffffffffffffffffffffffffffffffff1661226484610979565b73ffffffffffffffffffffffffffffffffffffffff16145b8061228d575061228c8185611cd4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122b6826112d4565b73ffffffffffffffffffffffffffffffffffffffff161461230c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390613f42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561237c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237390613e22565b60405180910390fd5b612387838383612aab565b6123926000826120ff565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123e29190614253565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124399190614172565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261e90613e42565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127189190613d65565b60405180910390a3505050565b61273f828260405180602001604052806000815250612bbf565b5050565b61274e848484612296565b61275a84848484612c1a565b612799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279090613dc2565b60405180910390fd5b50505050565b606060001515601060019054906101000a900460ff161515141561284f57600c80546127ca9061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546127f69061433d565b80156128435780601f1061281857610100808354040283529160200191612843565b820191906000526020600020905b81548152906001019060200180831161282657829003601f168201915b505050505090506128dd565b600b805461285c9061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546128889061433d565b80156128d55780601f106128aa576101008083540402835291602001916128d5565b820191906000526020600020905b8154815290600101906020018083116128b857829003601f168201915b505050505090505b90565b60606000821415612928576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a3c565b600082905060005b6000821461295a578080612943906143a0565b915050600a8261295391906141c8565b9150612930565b60008167ffffffffffffffff81111561297657612975614505565b5b6040519080825280601f01601f1916602001820160405280156129a85781602001600182028036833780820191505090505b5090505b60008514612a35576001826129c19190614253565b9150600a856129d091906143e9565b60306129dc9190614172565b60f81b8183815181106129f2576129f16144d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a2e91906141c8565b94506129ac565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ab6838383612db1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612af957612af481612db6565b612b38565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b3757612b368382612dff565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b7b57612b7681612f6c565b612bba565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bb957612bb8828261303d565b5b5b505050565b612bc983836130bc565b612bd66000848484612c1a565b612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c90613dc2565b60405180910390fd5b505050565b6000612c3b8473ffffffffffffffffffffffffffffffffffffffff1661328a565b15612da4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c646120f7565b8786866040518563ffffffff1660e01b8152600401612c869493929190613d19565b602060405180830381600087803b158015612ca057600080fd5b505af1925050508015612cd157506040513d601f19601f82011682018060405250810190612cce919061380a565b60015b612d54573d8060008114612d01576040519150601f19603f3d011682016040523d82523d6000602084013e612d06565b606091505b50600081511415612d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4390613dc2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612da9565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e0c84611435565b612e169190614253565b9050600060076000848152602001908152602001600020549050818114612efb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612f809190614253565b9050600060096000848152602001908152602001600020549050600060088381548110612fb057612faf6144d6565b5b906000526020600020015490508060088381548110612fd257612fd16144d6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613021576130206144a7565b5b6001900381819060005260206000200160009055905550505050565b600061304883611435565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561312c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312390613ee2565b60405180910390fd5b6131358161208b565b15613175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316c90613e02565b60405180910390fd5b61318160008383612aab565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131d19190614172565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546132a99061433d565b90600052602060002090601f0160209004810192826132cb5760008555613312565b82601f106132e457805160ff1916838001178555613312565b82800160010185558215613312579182015b828111156133115782518255916020019190600101906132f6565b5b50905061331f91906133e4565b5090565b508054600082559060005260206000209081019061334191906133e4565b50565b8280548282559060005260206000209081019282156133d3579160200282015b828111156133d257823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613364565b5b5090506133e091906133e4565b5090565b5b808211156133fd5760008160009055506001016133e5565b5090565b600061341461340f846140c2565b61409d565b9050828152602081018484840111156134305761342f614543565b5b61343b8482856142fb565b509392505050565b6000613456613451846140f3565b61409d565b90508281526020810184848401111561347257613471614543565b5b61347d8482856142fb565b509392505050565b60008135905061349481614b29565b92915050565b60008083601f8401126134b0576134af614539565b5b8235905067ffffffffffffffff8111156134cd576134cc614534565b5b6020830191508360208202830111156134e9576134e861453e565b5b9250929050565b6000813590506134ff81614b40565b92915050565b60008135905061351481614b57565b92915050565b60008151905061352981614b57565b92915050565b600082601f83011261354457613543614539565b5b8135613554848260208601613401565b91505092915050565b600082601f83011261357257613571614539565b5b8135613582848260208601613443565b91505092915050565b60008135905061359a81614b6e565b92915050565b6000602082840312156135b6576135b561454d565b5b60006135c484828501613485565b91505092915050565b600080604083850312156135e4576135e361454d565b5b60006135f285828601613485565b925050602061360385828601613485565b9150509250929050565b6000806000606084860312156136265761362561454d565b5b600061363486828701613485565b935050602061364586828701613485565b92505060406136568682870161358b565b9150509250925092565b6000806000806080858703121561367a5761367961454d565b5b600061368887828801613485565b945050602061369987828801613485565b93505060406136aa8782880161358b565b925050606085013567ffffffffffffffff8111156136cb576136ca614548565b5b6136d78782880161352f565b91505092959194509250565b600080604083850312156136fa576136f961454d565b5b600061370885828601613485565b9250506020613719858286016134f0565b9150509250929050565b6000806040838503121561373a5761373961454d565b5b600061374885828601613485565b92505060206137598582860161358b565b9150509250929050565b6000806020838503121561377a5761377961454d565b5b600083013567ffffffffffffffff81111561379857613797614548565b5b6137a48582860161349a565b92509250509250929050565b6000602082840312156137c6576137c561454d565b5b60006137d4848285016134f0565b91505092915050565b6000602082840312156137f3576137f261454d565b5b600061380184828501613505565b91505092915050565b6000602082840312156138205761381f61454d565b5b600061382e8482850161351a565b91505092915050565b60006020828403121561384d5761384c61454d565b5b600082013567ffffffffffffffff81111561386b5761386a614548565b5b6138778482850161355d565b91505092915050565b6000602082840312156138965761389561454d565b5b60006138a48482850161358b565b91505092915050565b6138b681614287565b82525050565b6138c581614299565b82525050565b60006138d682614124565b6138e0818561413a565b93506138f081856020860161430a565b6138f981614552565b840191505092915050565b600061390f8261412f565b6139198185614156565b935061392981856020860161430a565b61393281614552565b840191505092915050565b60006139488261412f565b6139528185614167565b935061396281856020860161430a565b80840191505092915050565b600061397b602b83614156565b915061398682614563565b604082019050919050565b600061399e603283614156565b91506139a9826145b2565b604082019050919050565b60006139c1602683614156565b91506139cc82614601565b604082019050919050565b60006139e4601c83614156565b91506139ef82614650565b602082019050919050565b6000613a07602483614156565b9150613a1282614679565b604082019050919050565b6000613a2a601983614156565b9150613a35826146c8565b602082019050919050565b6000613a4d602c83614156565b9150613a58826146f1565b604082019050919050565b6000613a70603883614156565b9150613a7b82614740565b604082019050919050565b6000613a93602a83614156565b9150613a9e8261478f565b604082019050919050565b6000613ab6602983614156565b9150613ac1826147de565b604082019050919050565b6000613ad9602083614156565b9150613ae48261482d565b602082019050919050565b6000613afc602c83614156565b9150613b0782614856565b604082019050919050565b6000613b1f602083614156565b9150613b2a826148a5565b602082019050919050565b6000613b42602983614156565b9150613b4d826148ce565b604082019050919050565b6000613b65602f83614156565b9150613b708261491d565b604082019050919050565b6000613b88601183614156565b9150613b938261496c565b602082019050919050565b6000613bab602183614156565b9150613bb682614995565b604082019050919050565b6000613bce601683614156565b9150613bd9826149e4565b602082019050919050565b6000613bf1601483614156565b9150613bfc82614a0d565b602082019050919050565b6000613c1460008361414b565b9150613c1f82614a36565b600082019050919050565b6000613c37603183614156565b9150613c4282614a39565b604082019050919050565b6000613c5a602c83614156565b9150613c6582614a88565b604082019050919050565b6000613c7d601783614156565b9150613c8882614ad7565b602082019050919050565b6000613ca0600e83614156565b9150613cab82614b00565b602082019050919050565b613cbf816142f1565b82525050565b6000613cd1828561393d565b9150613cdd828461393d565b91508190509392505050565b6000613cf482613c07565b9150819050919050565b6000602082019050613d1360008301846138ad565b92915050565b6000608082019050613d2e60008301876138ad565b613d3b60208301866138ad565b613d486040830185613cb6565b8181036060830152613d5a81846138cb565b905095945050505050565b6000602082019050613d7a60008301846138bc565b92915050565b60006020820190508181036000830152613d9a8184613904565b905092915050565b60006020820190508181036000830152613dbb8161396e565b9050919050565b60006020820190508181036000830152613ddb81613991565b9050919050565b60006020820190508181036000830152613dfb816139b4565b9050919050565b60006020820190508181036000830152613e1b816139d7565b9050919050565b60006020820190508181036000830152613e3b816139fa565b9050919050565b60006020820190508181036000830152613e5b81613a1d565b9050919050565b60006020820190508181036000830152613e7b81613a40565b9050919050565b60006020820190508181036000830152613e9b81613a63565b9050919050565b60006020820190508181036000830152613ebb81613a86565b9050919050565b60006020820190508181036000830152613edb81613aa9565b9050919050565b60006020820190508181036000830152613efb81613acc565b9050919050565b60006020820190508181036000830152613f1b81613aef565b9050919050565b60006020820190508181036000830152613f3b81613b12565b9050919050565b60006020820190508181036000830152613f5b81613b35565b9050919050565b60006020820190508181036000830152613f7b81613b58565b9050919050565b60006020820190508181036000830152613f9b81613b7b565b9050919050565b60006020820190508181036000830152613fbb81613b9e565b9050919050565b60006020820190508181036000830152613fdb81613bc1565b9050919050565b60006020820190508181036000830152613ffb81613be4565b9050919050565b6000602082019050818103600083015261401b81613c2a565b9050919050565b6000602082019050818103600083015261403b81613c4d565b9050919050565b6000602082019050818103600083015261405b81613c70565b9050919050565b6000602082019050818103600083015261407b81613c93565b9050919050565b60006020820190506140976000830184613cb6565b92915050565b60006140a76140b8565b90506140b3828261436f565b919050565b6000604051905090565b600067ffffffffffffffff8211156140dd576140dc614505565b5b6140e682614552565b9050602081019050919050565b600067ffffffffffffffff82111561410e5761410d614505565b5b61411782614552565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061417d826142f1565b9150614188836142f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141bd576141bc61441a565b5b828201905092915050565b60006141d3826142f1565b91506141de836142f1565b9250826141ee576141ed614449565b5b828204905092915050565b6000614204826142f1565b915061420f836142f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142485761424761441a565b5b828202905092915050565b600061425e826142f1565b9150614269836142f1565b92508282101561427c5761427b61441a565b5b828203905092915050565b6000614292826142d1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561432857808201518184015260208101905061430d565b83811115614337576000848401525b50505050565b6000600282049050600182168061435557607f821691505b6020821081141561436957614368614478565b5b50919050565b61437882614552565b810181811067ffffffffffffffff8211171561439757614396614505565b5b80604052505050565b60006143ab826142f1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143de576143dd61441a565b5b600182019050919050565b60006143f4826142f1565b91506143ff836142f1565b92508261440f5761440e614449565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4f6e6c7920323020617420612074696d65000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f54582056616c7565206e6f7420636f7272656374000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f53616c6520697320706175736564000000000000000000000000000000000000600082015250565b614b3281614287565b8114614b3d57600080fd5b50565b614b4981614299565b8114614b5457600080fd5b50565b614b60816142a5565b8114614b6b57600080fd5b50565b614b77816142f1565b8114614b8257600080fd5b5056fea2646970667358221220f1975e86115495bd7b1e72640c1d690cd89cd6461f3221132d3229b3f32cb6f364736f6c63430008070033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c51461078a578063eb8d2444146107c7578063edec5f27146107f2578063f2c4ce1e1461081b578063f2fde38b146108445761021a565b8063b88d4fde146106a5578063ba4e5c49146106ce578063ba7d2c761461070b578063c87b56dd14610736578063dd473d2b146107735761021a565b8063a22cb465116100f2578063a22cb46514610607578063a475907414610630578063a475b5dd1461065b578063a723533e14610672578063b0f674271461068e5761021a565b8063715018a6146105715780638da5cb5b1461058857806391b7f5ed146105b357806395d89b41146105dc5761021a565b80633c952764116101a65780635183022711610175578063518302271461046657806355f804b3146104915780636352211e146104ba5780636f9170f6146104f757806370a08231146105345761021a565b80633c952764146103c05780633ccfd60b146103e957806342842e0e146104005780634f6ccce7146104295761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd146103185780632f745c591461034157806334918dfd1461037e578063352bc9bb146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906137dd565b61086d565b6040516102539190613d65565b60405180910390f35b34801561026857600080fd5b506102716108e7565b60405161027e9190613d80565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613880565b610979565b6040516102bb9190613cfe565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613723565b6109fe565b005b3480156102f957600080fd5b50610302610b16565b60405161030f9190614082565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061360d565b610b23565b005b34801561034d57600080fd5b5061036860048036038101906103639190613723565b610b83565b6040516103759190614082565b60405180910390f35b34801561038a57600080fd5b50610393610c28565b005b3480156103a157600080fd5b506103aa610cd0565b6040516103b79190614082565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906137b0565b610cd6565b005b3480156103f557600080fd5b506103fe610d6f565b005b34801561040c57600080fd5b506104276004803603810190610422919061360d565b61119a565b005b34801561043557600080fd5b50610450600480360381019061044b9190613880565b6111ba565b60405161045d9190614082565b60405180910390f35b34801561047257600080fd5b5061047b61122b565b6040516104889190613d65565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190613837565b61123e565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190613880565b6112d4565b6040516104ee9190613cfe565b60405180910390f35b34801561050357600080fd5b5061051e600480360381019061051991906135a0565b611386565b60405161052b9190613d65565b60405180910390f35b34801561054057600080fd5b5061055b600480360381019061055691906135a0565b611435565b6040516105689190614082565b60405180910390f35b34801561057d57600080fd5b506105866114ed565b005b34801561059457600080fd5b5061059d611575565b6040516105aa9190613cfe565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190613880565b61159f565b005b3480156105e857600080fd5b506105f1611625565b6040516105fe9190613d80565b60405180910390f35b34801561061357600080fd5b5061062e600480360381019061062991906136e3565b6116b7565b005b34801561063c57600080fd5b506106456116cd565b6040516106529190613d65565b60405180910390f35b34801561066757600080fd5b506106706116e0565b005b61068c60048036038101906106879190613880565b611779565b005b34801561069a57600080fd5b506106a3611a04565b005b3480156106b157600080fd5b506106cc60048036038101906106c79190613660565b611ac4565b005b3480156106da57600080fd5b506106f560048036038101906106f09190613880565b611b26565b6040516107029190613cfe565b60405180910390f35b34801561071757600080fd5b50610720611b65565b60405161072d9190614082565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190613880565b611b6b565b60405161076a9190613d80565b60405180910390f35b34801561077f57600080fd5b50610788611c12565b005b34801561079657600080fd5b506107b160048036038101906107ac91906135cd565b611cd4565b6040516107be9190613d65565b60405180910390f35b3480156107d357600080fd5b506107dc611d68565b6040516107e99190613d65565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190613763565b611d7b565b005b34801561082757600080fd5b50610842600480360381019061083d9190613837565b611e1b565b005b34801561085057600080fd5b5061086b600480360381019061086691906135a0565b611eb1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e057506108df82611fa9565b5b9050919050565b6060600080546108f69061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546109229061433d565b801561096f5780601f106109445761010080835404028352916020019161096f565b820191906000526020600020905b81548152906001019060200180831161095257829003601f168201915b5050505050905090565b60006109848261208b565b6109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90613f02565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a09826112d4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190613fa2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a996120f7565b73ffffffffffffffffffffffffffffffffffffffff161480610ac85750610ac781610ac26120f7565b611cd4565b5b610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90613e82565b60405180910390fd5b610b1183836120ff565b505050565b6000600880549050905090565b610b34610b2e6120f7565b826121b8565b610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90614002565b60405180910390fd5b610b7e838383612296565b505050565b6000610b8e83611435565b8210610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613da2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c306120f7565b73ffffffffffffffffffffffffffffffffffffffff16610c4e611575565b73ffffffffffffffffffffffffffffffffffffffff1614610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90613f22565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600d5481565b610cde6120f7565b73ffffffffffffffffffffffffffffffffffffffff16610cfc611575565b73ffffffffffffffffffffffffffffffffffffffff1614610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990613f22565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b610d776120f7565b73ffffffffffffffffffffffffffffffffffffffff16610d95611575565b73ffffffffffffffffffffffffffffffffffffffff1614610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290613f22565b60405180910390fd5b60007343ed8c36c4f0ac62461a67c634ceff906d46ca2973ffffffffffffffffffffffffffffffffffffffff166064600a47610e2791906141f9565b610e3191906141c8565b604051610e3d90613ce9565b60006040518083038185875af1925050503d8060008114610e7a576040519150601f19603f3d011682016040523d82523d6000602084013e610e7f565b606091505b5050905080610e8d57600080fd5b600073a04fcef0d826c98753e4f39338a36bf6a970e76373ffffffffffffffffffffffffffffffffffffffff166064600647610ec991906141f9565b610ed391906141c8565b604051610edf90613ce9565b60006040518083038185875af1925050503d8060008114610f1c576040519150601f19603f3d011682016040523d82523d6000602084013e610f21565b606091505b5050905080610f2f57600080fd5b600073a2acc65745d48cdb75bcb768ffdabac9f2570f5e73ffffffffffffffffffffffffffffffffffffffff166064600a47610f6b91906141f9565b610f7591906141c8565b604051610f8190613ce9565b60006040518083038185875af1925050503d8060008114610fbe576040519150601f19603f3d011682016040523d82523d6000602084013e610fc3565b606091505b5050905080610fd157600080fd5b600073461915680bfc447f1cdbe93c3acb4c1c6e0bfe8d73ffffffffffffffffffffffffffffffffffffffff16606460254761100d91906141f9565b61101791906141c8565b60405161102390613ce9565b60006040518083038185875af1925050503d8060008114611060576040519150601f19603f3d011682016040523d82523d6000602084013e611065565b606091505b505090508061107357600080fd5b600073248b6d850e340ca36ed4d507c0c6139b54c88c5573ffffffffffffffffffffffffffffffffffffffff1660646025476110af91906141f9565b6110b991906141c8565b6040516110c590613ce9565b60006040518083038185875af1925050503d8060008114611102576040519150601f19603f3d011682016040523d82523d6000602084013e611107565b606091505b505090508061111557600080fd5b600061111f611575565b73ffffffffffffffffffffffffffffffffffffffff164760405161114290613ce9565b60006040518083038185875af1925050503d806000811461117f576040519150601f19603f3d011682016040523d82523d6000602084013e611184565b606091505b505090508061119257600080fd5b505050505050565b6111b583838360405180602001604052806000815250611ac4565b505050565b60006111c4610b16565b8210611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90614022565b60405180910390fd5b60088281548110611219576112186144d6565b5b90600052602060002001549050919050565b601060019054906101000a900460ff1681565b6112466120f7565b73ffffffffffffffffffffffffffffffffffffffff16611264611575565b73ffffffffffffffffffffffffffffffffffffffff16146112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190613f22565b60405180910390fd5b80600b90805190602001906112d092919061329d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613ec2565b60405180910390fd5b80915050919050565b600080600090505b60118054905081101561142a578273ffffffffffffffffffffffffffffffffffffffff16601182815481106113c6576113c56144d6565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611417576001915050611430565b8080611422906143a0565b91505061138e565b50600090505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90613ea2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114f56120f7565b73ffffffffffffffffffffffffffffffffffffffff16611513611575565b73ffffffffffffffffffffffffffffffffffffffff1614611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090613f22565b60405180910390fd5b61157360006124f2565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115a76120f7565b73ffffffffffffffffffffffffffffffffffffffff166115c5611575565b73ffffffffffffffffffffffffffffffffffffffff161461161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161290613f22565b60405180910390fd5b80600f8190555050565b6060600180546116349061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546116609061433d565b80156116ad5780601f10611682576101008083540402835291602001916116ad565b820191906000526020600020905b81548152906001019060200180831161169057829003601f168201915b5050505050905090565b6116c96116c26120f7565b83836125b8565b5050565b601060029054906101000a900460ff1681565b6116e86120f7565b73ffffffffffffffffffffffffffffffffffffffff16611706611575565b73ffffffffffffffffffffffffffffffffffffffff161461175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390613f22565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b6000611783610b16565b9050601060009054906101000a900460ff166117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90614062565b60405180910390fd5b6117dc611575565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118e957601060029054906101000a900460ff16156118985761182c33611386565b61186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290614042565b60405180910390fd5b600061187633611435565b9050600e5483111561188757600080fd5b600e5481111561189657600080fd5b505b81600f546118a691906141f9565b3410156118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90613fe2565b60405180910390fd5b5b6015821061192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390613f82565b60405180910390fd5b600d54828261193b9190614172565b111561197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390613fc2565b60405180910390fd5b81600f5461198a91906141f9565b3410156119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390613fe2565b60405180910390fd5b60005b828110156119ff576119ec3382846119e79190614172565b612725565b80806119f7906143a0565b9150506119cf565b505050565b611a0c6120f7565b73ffffffffffffffffffffffffffffffffffffffff16611a2a611575565b73ffffffffffffffffffffffffffffffffffffffff1614611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790613f22565b60405180910390fd5b6000611a8a610b16565b905060005b6014811015611ac057611aad338284611aa89190614172565b612725565b8080611ab8906143a0565b915050611a8f565b5050565b611ad5611acf6120f7565b836121b8565b611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90614002565b60405180910390fd5b611b2084848484612743565b50505050565b60118181548110611b3657600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6060611b768261208b565b611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac90613f62565b60405180910390fd5b6000611bbf61279f565b90506000815111611bdf5760405180602001604052806000815250611c0a565b80611be9846128e0565b604051602001611bfa929190613cc5565b6040516020818303038152906040525b915050919050565b611c1a6120f7565b73ffffffffffffffffffffffffffffffffffffffff16611c38611575565b73ffffffffffffffffffffffffffffffffffffffff1614611c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8590613f22565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611cd157600080fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611d836120f7565b73ffffffffffffffffffffffffffffffffffffffff16611da1611575565b73ffffffffffffffffffffffffffffffffffffffff1614611df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dee90613f22565b60405180910390fd5b60116000611e059190613323565b818160119190611e16929190613344565b505050565b611e236120f7565b73ffffffffffffffffffffffffffffffffffffffff16611e41611575565b73ffffffffffffffffffffffffffffffffffffffff1614611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90613f22565b60405180910390fd5b80600c9080519060200190611ead92919061329d565b5050565b611eb96120f7565b73ffffffffffffffffffffffffffffffffffffffff16611ed7611575565b73ffffffffffffffffffffffffffffffffffffffff1614611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2490613f22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490613de2565b60405180910390fd5b611fa6816124f2565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061207457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612084575061208382612a41565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612172836112d4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121c38261208b565b612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990613e62565b60405180910390fd5b600061220d836112d4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061227c57508373ffffffffffffffffffffffffffffffffffffffff1661226484610979565b73ffffffffffffffffffffffffffffffffffffffff16145b8061228d575061228c8185611cd4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122b6826112d4565b73ffffffffffffffffffffffffffffffffffffffff161461230c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390613f42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561237c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237390613e22565b60405180910390fd5b612387838383612aab565b6123926000826120ff565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123e29190614253565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124399190614172565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261e90613e42565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127189190613d65565b60405180910390a3505050565b61273f828260405180602001604052806000815250612bbf565b5050565b61274e848484612296565b61275a84848484612c1a565b612799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279090613dc2565b60405180910390fd5b50505050565b606060001515601060019054906101000a900460ff161515141561284f57600c80546127ca9061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546127f69061433d565b80156128435780601f1061281857610100808354040283529160200191612843565b820191906000526020600020905b81548152906001019060200180831161282657829003601f168201915b505050505090506128dd565b600b805461285c9061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546128889061433d565b80156128d55780601f106128aa576101008083540402835291602001916128d5565b820191906000526020600020905b8154815290600101906020018083116128b857829003601f168201915b505050505090505b90565b60606000821415612928576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a3c565b600082905060005b6000821461295a578080612943906143a0565b915050600a8261295391906141c8565b9150612930565b60008167ffffffffffffffff81111561297657612975614505565b5b6040519080825280601f01601f1916602001820160405280156129a85781602001600182028036833780820191505090505b5090505b60008514612a35576001826129c19190614253565b9150600a856129d091906143e9565b60306129dc9190614172565b60f81b8183815181106129f2576129f16144d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a2e91906141c8565b94506129ac565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ab6838383612db1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612af957612af481612db6565b612b38565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b3757612b368382612dff565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b7b57612b7681612f6c565b612bba565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bb957612bb8828261303d565b5b5b505050565b612bc983836130bc565b612bd66000848484612c1a565b612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c90613dc2565b60405180910390fd5b505050565b6000612c3b8473ffffffffffffffffffffffffffffffffffffffff1661328a565b15612da4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c646120f7565b8786866040518563ffffffff1660e01b8152600401612c869493929190613d19565b602060405180830381600087803b158015612ca057600080fd5b505af1925050508015612cd157506040513d601f19601f82011682018060405250810190612cce919061380a565b60015b612d54573d8060008114612d01576040519150601f19603f3d011682016040523d82523d6000602084013e612d06565b606091505b50600081511415612d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4390613dc2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612da9565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e0c84611435565b612e169190614253565b9050600060076000848152602001908152602001600020549050818114612efb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612f809190614253565b9050600060096000848152602001908152602001600020549050600060088381548110612fb057612faf6144d6565b5b906000526020600020015490508060088381548110612fd257612fd16144d6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613021576130206144a7565b5b6001900381819060005260206000200160009055905550505050565b600061304883611435565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561312c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312390613ee2565b60405180910390fd5b6131358161208b565b15613175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316c90613e02565b60405180910390fd5b61318160008383612aab565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131d19190614172565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546132a99061433d565b90600052602060002090601f0160209004810192826132cb5760008555613312565b82601f106132e457805160ff1916838001178555613312565b82800160010185558215613312579182015b828111156133115782518255916020019190600101906132f6565b5b50905061331f91906133e4565b5090565b508054600082559060005260206000209081019061334191906133e4565b50565b8280548282559060005260206000209081019282156133d3579160200282015b828111156133d257823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613364565b5b5090506133e091906133e4565b5090565b5b808211156133fd5760008160009055506001016133e5565b5090565b600061341461340f846140c2565b61409d565b9050828152602081018484840111156134305761342f614543565b5b61343b8482856142fb565b509392505050565b6000613456613451846140f3565b61409d565b90508281526020810184848401111561347257613471614543565b5b61347d8482856142fb565b509392505050565b60008135905061349481614b29565b92915050565b60008083601f8401126134b0576134af614539565b5b8235905067ffffffffffffffff8111156134cd576134cc614534565b5b6020830191508360208202830111156134e9576134e861453e565b5b9250929050565b6000813590506134ff81614b40565b92915050565b60008135905061351481614b57565b92915050565b60008151905061352981614b57565b92915050565b600082601f83011261354457613543614539565b5b8135613554848260208601613401565b91505092915050565b600082601f83011261357257613571614539565b5b8135613582848260208601613443565b91505092915050565b60008135905061359a81614b6e565b92915050565b6000602082840312156135b6576135b561454d565b5b60006135c484828501613485565b91505092915050565b600080604083850312156135e4576135e361454d565b5b60006135f285828601613485565b925050602061360385828601613485565b9150509250929050565b6000806000606084860312156136265761362561454d565b5b600061363486828701613485565b935050602061364586828701613485565b92505060406136568682870161358b565b9150509250925092565b6000806000806080858703121561367a5761367961454d565b5b600061368887828801613485565b945050602061369987828801613485565b93505060406136aa8782880161358b565b925050606085013567ffffffffffffffff8111156136cb576136ca614548565b5b6136d78782880161352f565b91505092959194509250565b600080604083850312156136fa576136f961454d565b5b600061370885828601613485565b9250506020613719858286016134f0565b9150509250929050565b6000806040838503121561373a5761373961454d565b5b600061374885828601613485565b92505060206137598582860161358b565b9150509250929050565b6000806020838503121561377a5761377961454d565b5b600083013567ffffffffffffffff81111561379857613797614548565b5b6137a48582860161349a565b92509250509250929050565b6000602082840312156137c6576137c561454d565b5b60006137d4848285016134f0565b91505092915050565b6000602082840312156137f3576137f261454d565b5b600061380184828501613505565b91505092915050565b6000602082840312156138205761381f61454d565b5b600061382e8482850161351a565b91505092915050565b60006020828403121561384d5761384c61454d565b5b600082013567ffffffffffffffff81111561386b5761386a614548565b5b6138778482850161355d565b91505092915050565b6000602082840312156138965761389561454d565b5b60006138a48482850161358b565b91505092915050565b6138b681614287565b82525050565b6138c581614299565b82525050565b60006138d682614124565b6138e0818561413a565b93506138f081856020860161430a565b6138f981614552565b840191505092915050565b600061390f8261412f565b6139198185614156565b935061392981856020860161430a565b61393281614552565b840191505092915050565b60006139488261412f565b6139528185614167565b935061396281856020860161430a565b80840191505092915050565b600061397b602b83614156565b915061398682614563565b604082019050919050565b600061399e603283614156565b91506139a9826145b2565b604082019050919050565b60006139c1602683614156565b91506139cc82614601565b604082019050919050565b60006139e4601c83614156565b91506139ef82614650565b602082019050919050565b6000613a07602483614156565b9150613a1282614679565b604082019050919050565b6000613a2a601983614156565b9150613a35826146c8565b602082019050919050565b6000613a4d602c83614156565b9150613a58826146f1565b604082019050919050565b6000613a70603883614156565b9150613a7b82614740565b604082019050919050565b6000613a93602a83614156565b9150613a9e8261478f565b604082019050919050565b6000613ab6602983614156565b9150613ac1826147de565b604082019050919050565b6000613ad9602083614156565b9150613ae48261482d565b602082019050919050565b6000613afc602c83614156565b9150613b0782614856565b604082019050919050565b6000613b1f602083614156565b9150613b2a826148a5565b602082019050919050565b6000613b42602983614156565b9150613b4d826148ce565b604082019050919050565b6000613b65602f83614156565b9150613b708261491d565b604082019050919050565b6000613b88601183614156565b9150613b938261496c565b602082019050919050565b6000613bab602183614156565b9150613bb682614995565b604082019050919050565b6000613bce601683614156565b9150613bd9826149e4565b602082019050919050565b6000613bf1601483614156565b9150613bfc82614a0d565b602082019050919050565b6000613c1460008361414b565b9150613c1f82614a36565b600082019050919050565b6000613c37603183614156565b9150613c4282614a39565b604082019050919050565b6000613c5a602c83614156565b9150613c6582614a88565b604082019050919050565b6000613c7d601783614156565b9150613c8882614ad7565b602082019050919050565b6000613ca0600e83614156565b9150613cab82614b00565b602082019050919050565b613cbf816142f1565b82525050565b6000613cd1828561393d565b9150613cdd828461393d565b91508190509392505050565b6000613cf482613c07565b9150819050919050565b6000602082019050613d1360008301846138ad565b92915050565b6000608082019050613d2e60008301876138ad565b613d3b60208301866138ad565b613d486040830185613cb6565b8181036060830152613d5a81846138cb565b905095945050505050565b6000602082019050613d7a60008301846138bc565b92915050565b60006020820190508181036000830152613d9a8184613904565b905092915050565b60006020820190508181036000830152613dbb8161396e565b9050919050565b60006020820190508181036000830152613ddb81613991565b9050919050565b60006020820190508181036000830152613dfb816139b4565b9050919050565b60006020820190508181036000830152613e1b816139d7565b9050919050565b60006020820190508181036000830152613e3b816139fa565b9050919050565b60006020820190508181036000830152613e5b81613a1d565b9050919050565b60006020820190508181036000830152613e7b81613a40565b9050919050565b60006020820190508181036000830152613e9b81613a63565b9050919050565b60006020820190508181036000830152613ebb81613a86565b9050919050565b60006020820190508181036000830152613edb81613aa9565b9050919050565b60006020820190508181036000830152613efb81613acc565b9050919050565b60006020820190508181036000830152613f1b81613aef565b9050919050565b60006020820190508181036000830152613f3b81613b12565b9050919050565b60006020820190508181036000830152613f5b81613b35565b9050919050565b60006020820190508181036000830152613f7b81613b58565b9050919050565b60006020820190508181036000830152613f9b81613b7b565b9050919050565b60006020820190508181036000830152613fbb81613b9e565b9050919050565b60006020820190508181036000830152613fdb81613bc1565b9050919050565b60006020820190508181036000830152613ffb81613be4565b9050919050565b6000602082019050818103600083015261401b81613c2a565b9050919050565b6000602082019050818103600083015261403b81613c4d565b9050919050565b6000602082019050818103600083015261405b81613c70565b9050919050565b6000602082019050818103600083015261407b81613c93565b9050919050565b60006020820190506140976000830184613cb6565b92915050565b60006140a76140b8565b90506140b3828261436f565b919050565b6000604051905090565b600067ffffffffffffffff8211156140dd576140dc614505565b5b6140e682614552565b9050602081019050919050565b600067ffffffffffffffff82111561410e5761410d614505565b5b61411782614552565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061417d826142f1565b9150614188836142f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141bd576141bc61441a565b5b828201905092915050565b60006141d3826142f1565b91506141de836142f1565b9250826141ee576141ed614449565b5b828204905092915050565b6000614204826142f1565b915061420f836142f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142485761424761441a565b5b828202905092915050565b600061425e826142f1565b9150614269836142f1565b92508282101561427c5761427b61441a565b5b828203905092915050565b6000614292826142d1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561432857808201518184015260208101905061430d565b83811115614337576000848401525b50505050565b6000600282049050600182168061435557607f821691505b6020821081141561436957614368614478565b5b50919050565b61437882614552565b810181811067ffffffffffffffff8211171561439757614396614505565b5b80604052505050565b60006143ab826142f1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143de576143dd61441a565b5b600182019050919050565b60006143f4826142f1565b91506143ff836142f1565b92508261440f5761440e614449565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4f6e6c7920323020617420612074696d65000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f54582056616c7565206e6f7420636f7272656374000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f53616c6520697320706175736564000000000000000000000000000000000000600082015250565b614b3281614287565b8114614b3d57600080fd5b50565b614b4981614299565b8114614b5457600080fd5b50565b614b60816142a5565b8114614b6b57600080fd5b50565b614b77816142f1565b8114614b8257600080fd5b5056fea2646970667358221220f1975e86115495bd7b1e72640c1d690cd89cd6461f3221132d3229b3f32cb6f364736f6c63430008070033
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.