ERC-721
Overview
Max Total Supply
0 WAIFU
Holders
13
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
6 WAIFULoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Waifu
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract Waifu is ERC721, ERC721URIStorage, Pausable, Ownable { using Counters for Counters.Counter; using SafeMath for uint256; string private _baseURIPrefix; uint private constant maxTokensPerTransaction = 50; uint256 private tokenPrice = 3500000000000000; //0.035 ETH uint256 private constant nftsNumber = 5025; uint256 private constant nftsPublicNumber = 5000; Counters.Counter private _tokenIdCounter; bool public pauseValue; constructor() ERC721("WaifuMaterial", "WAIFU") { _tokenIdCounter.increment(); } function prevent() public onlyOwner { pauseValue = !pauseValue; } function waifu() public pure returns (string memory){ return "WAIFU"; } function setBaseURI(string memory baseURIPrefix) public onlyOwner { _baseURIPrefix = baseURIPrefix; } function _baseURI() internal view override returns (string memory) { return _baseURIPrefix; } function safeMint(address to) public onlyOwner { require (_tokenIdCounter.current() <= nftsNumber, "Nice try."); _safeMint(to, _tokenIdCounter.current()); _tokenIdCounter.increment(); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function howManyWaifu() public view returns(uint256 a){ return Counters.current(_tokenIdCounter); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function mintGiveawayWaifu(address to, uint256 tokenId) public onlyOwner { require(tokenId > nftsPublicNumber, "Wait for the sale to end first"); _safeMint(to, tokenId); } function buyWaifu(uint tokensNumber) whenNotPaused public payable { require (pauseValue); require(tokensNumber > 0, "You can't mint 0 Catgirls bro"); require(tokensNumber <= maxTokensPerTransaction, "Woah easy there, save some for others"); require(_tokenIdCounter.current().add(tokensNumber) <= nftsPublicNumber, "Sorry theres no Catgirls left :("); require(tokenPrice.mul(tokensNumber) <= msg.value, "Thats not enough, sorry!"); for(uint i = 0; i < tokensNumber; i++) { _safeMint(msg.sender, _tokenIdCounter.current()); _tokenIdCounter.increment(); } } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //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 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 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 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 pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT 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 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 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 pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT 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 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 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":[{"internalType":"uint256","name":"tokensNumber","type":"uint256"}],"name":"buyWaifu","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"howManyWaifu","outputs":[{"internalType":"uint256","name":"a","type":"uint256"}],"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintGiveawayWaifu","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prevent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURIPrefix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"waifu","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052660c6f3b40b6c0006009553480156200001c57600080fd5b506040518060400160405280600d81526020017f57616966754d6174657269616c000000000000000000000000000000000000008152506040518060400160405280600581526020017f57414946550000000000000000000000000000000000000000000000000000008152508160009080519060200190620000a1929190620001f9565b508060019080519060200190620000ba929190620001f9565b5050506000600760006101000a81548160ff021916908315150217905550620000f8620000ec6200011560201b60201c565b6200011d60201b60201c565b6200010f600a620001e360201b6200173a1760201c565b6200030e565b600033905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b8280546200020790620002a9565b90600052602060002090601f0160209004810192826200022b576000855562000277565b82601f106200024657805160ff191683800117855562000277565b8280016001018555821562000277579182015b828111156200027657825182559160200191906001019062000259565b5b5090506200028691906200028a565b5090565b5b80821115620002a55760008160009055506001016200028b565b5090565b60006002820490506001821680620002c257607f821691505b60208210811415620002d957620002d8620002df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e63806200031e6000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146105aa578063f2fde38b146105e7578063f5f636db14610610578063fcaefb191461063b576101b7565b8063c87b56dd14610519578063d4401c6e14610556578063e62653531461057f576101b7565b80638da5cb5b116100c65780638da5cb5b1461047157806395d89b411461049c578063a22cb465146104c7578063b88d4fde146104f0576101b7565b8063715018a6146104185780638456cb591461042f578063856efd2e14610446576101b7565b806340d097c3116101595780635c975abb116101335780635c975abb1461035c5780636352211e1461038757806364c9bc60146103c457806370a08231146103db576101b7565b806340d097c3146102e157806342842e0e1461030a57806355f804b314610333576101b7565b8063095ea7b311610195578063095ea7b31461026157806323b872dd1461028a5780633ccfd60b146102b35780633f4ba83a146102ca576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612a83565b610657565b6040516101f09190613005565b60405180910390f35b34801561020557600080fd5b5061020e610739565b60405161021b9190613020565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612b16565b6107cb565b6040516102589190612f9e565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612a47565b610850565b005b34801561029657600080fd5b506102b160048036038101906102ac9190612941565b610968565b005b3480156102bf57600080fd5b506102c86109c8565b005b3480156102d657600080fd5b506102df610a93565b005b3480156102ed57600080fd5b50610308600480360381019061030391906128dc565b610b19565b005b34801561031657600080fd5b50610331600480360381019061032c9190612941565b610c03565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612ad5565b610c23565b005b34801561036857600080fd5b50610371610cb9565b60405161037e9190613005565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190612b16565b610cd0565b6040516103bb9190612f9e565b60405180910390f35b3480156103d057600080fd5b506103d9610d82565b005b3480156103e757600080fd5b5061040260048036038101906103fd91906128dc565b610e2a565b60405161040f9190613362565b60405180910390f35b34801561042457600080fd5b5061042d610ee2565b005b34801561043b57600080fd5b50610444610f6a565b005b34801561045257600080fd5b5061045b610ff0565b6040516104689190613020565b60405180910390f35b34801561047d57600080fd5b5061048661102d565b6040516104939190612f9e565b60405180910390f35b3480156104a857600080fd5b506104b1611057565b6040516104be9190613020565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612a0b565b6110e9565b005b3480156104fc57600080fd5b5061051760048036038101906105129190612990565b61126a565b005b34801561052557600080fd5b50610540600480360381019061053b9190612b16565b6112cc565b60405161054d9190613020565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190612a47565b6112de565b005b34801561058b57600080fd5b506105946113ac565b6040516105a19190613362565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190612905565b6113bd565b6040516105de9190613005565b60405180910390f35b3480156105f357600080fd5b5061060e600480360381019061060991906128dc565b611451565b005b34801561061c57600080fd5b50610625611549565b6040516106329190613005565b60405180910390f35b61065560048036038101906106509190612b16565b61155c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610732575061073182611750565b5b9050919050565b60606000805461074890613612565b80601f016020809104026020016040519081016040528092919081815260200182805461077490613612565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b60006107d6826117ba565b610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c90613242565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085b82610cd0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390613302565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108eb611826565b73ffffffffffffffffffffffffffffffffffffffff16148061091a575061091981610914611826565b6113bd565b5b610959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610950906131a2565b60405180910390fd5b610963838361182e565b505050565b610979610973611826565b826118e7565b6109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90613322565b60405180910390fd5b6109c38383836119c5565b505050565b6109d0611826565b73ffffffffffffffffffffffffffffffffffffffff166109ee61102d565b73ffffffffffffffffffffffffffffffffffffffff1614610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90613282565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a8f573d6000803e3d6000fd5b5050565b610a9b611826565b73ffffffffffffffffffffffffffffffffffffffff16610ab961102d565b73ffffffffffffffffffffffffffffffffffffffff1614610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690613282565b60405180910390fd5b610b17611c21565b565b610b21611826565b73ffffffffffffffffffffffffffffffffffffffff16610b3f61102d565b73ffffffffffffffffffffffffffffffffffffffff1614610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613282565b60405180910390fd5b6113a1610ba2600a611cc3565b1115610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906130e2565b60405180910390fd5b610bf681610bf1600a611cc3565b611cd1565b610c00600a61173a565b50565b610c1e8383836040518060200160405280600081525061126a565b505050565b610c2b611826565b73ffffffffffffffffffffffffffffffffffffffff16610c4961102d565b73ffffffffffffffffffffffffffffffffffffffff1614610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690613282565b60405180910390fd5b8060089080519060200190610cb5929190612700565b5050565b6000600760009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d70906131e2565b60405180910390fd5b80915050919050565b610d8a611826565b73ffffffffffffffffffffffffffffffffffffffff16610da861102d565b73ffffffffffffffffffffffffffffffffffffffff1614610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df590613282565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e92906131c2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eea611826565b73ffffffffffffffffffffffffffffffffffffffff16610f0861102d565b73ffffffffffffffffffffffffffffffffffffffff1614610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590613282565b60405180910390fd5b610f686000611cef565b565b610f72611826565b73ffffffffffffffffffffffffffffffffffffffff16610f9061102d565b73ffffffffffffffffffffffffffffffffffffffff1614610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90613282565b60405180910390fd5b610fee611db5565b565b60606040518060400160405280600581526020017f5741494655000000000000000000000000000000000000000000000000000000815250905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461106690613612565b80601f016020809104026020016040519081016040528092919081815260200182805461109290613612565b80156110df5780601f106110b4576101008083540402835291602001916110df565b820191906000526020600020905b8154815290600101906020018083116110c257829003601f168201915b5050505050905090565b6110f1611826565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690613142565b60405180910390fd5b806005600061116c611826565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611219611826565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161125e9190613005565b60405180910390a35050565b61127b611275611826565b836118e7565b6112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190613322565b60405180910390fd5b6112c684848484611e58565b50505050565b60606112d782611eb4565b9050919050565b6112e6611826565b73ffffffffffffffffffffffffffffffffffffffff1661130461102d565b73ffffffffffffffffffffffffffffffffffffffff161461135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613282565b60405180910390fd5b611388811161139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590613102565b60405180910390fd5b6113a88282611cd1565b5050565b60006113b8600a611cc3565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611459611826565b73ffffffffffffffffffffffffffffffffffffffff1661147761102d565b73ffffffffffffffffffffffffffffffffffffffff16146114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490613282565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561153d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611534906130a2565b60405180910390fd5b61154681611cef565b50565b600b60009054906101000a900460ff1681565b611564610cb9565b156115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613182565b60405180910390fd5b600b60009054906101000a900460ff166115bd57600080fd5b60008111611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790613342565b60405180910390fd5b6032811115611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906132e2565b60405180910390fd5b61138861166382611655600a611cc3565b61200690919063ffffffff16565b11156116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90613062565b60405180910390fd5b346116ba8260095461201c90919063ffffffff16565b11156116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290613262565b60405180910390fd5b60005b818110156117365761171933611714600a611cc3565b611cd1565b611723600a61173a565b808061172e90613675565b9150506116fe565b5050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118a183610cd0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118f2826117ba565b611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890613162565b60405180910390fd5b600061193c83610cd0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119ab57508373ffffffffffffffffffffffffffffffffffffffff16611993846107cb565b73ffffffffffffffffffffffffffffffffffffffff16145b806119bc57506119bb81856113bd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119e582610cd0565b73ffffffffffffffffffffffffffffffffffffffff1614611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a32906132a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613122565b60405180910390fd5b611ab6838383612032565b611ac160008261182e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b119190613528565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b689190613447565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611c29610cb9565b611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90613042565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611cac611826565b604051611cb99190612f9e565b60405180910390a1565b600081600001549050919050565b611ceb828260405180602001604052806000815250612042565b5050565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611dbd610cb9565b15611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613182565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e41611826565b604051611e4e9190612f9e565b60405180910390a1565b611e638484846119c5565b611e6f8484848461209d565b611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea590613082565b60405180910390fd5b50505050565b6060611ebf826117ba565b611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590613222565b60405180910390fd5b6000600660008481526020019081526020016000208054611f1e90613612565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4a90613612565b8015611f975780601f10611f6c57610100808354040283529160200191611f97565b820191906000526020600020905b815481529060010190602001808311611f7a57829003601f168201915b505050505090506000611fa8612234565b9050600081511415611fbe578192505050612001565b600082511115611ff3578082604051602001611fdb929190612f7a565b60405160208183030381529060405292505050612001565b611ffc846122c6565b925050505b919050565b600081836120149190613447565b905092915050565b6000818361202a91906134ce565b905092915050565b61203d83838361236d565b505050565b61204c8383612372565b612059600084848461209d565b612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f90613082565b60405180910390fd5b505050565b60006120be8473ffffffffffffffffffffffffffffffffffffffff16612540565b15612227578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120e7611826565b8786866040518563ffffffff1660e01b81526004016121099493929190612fb9565b602060405180830381600087803b15801561212357600080fd5b505af192505050801561215457506040513d601f19601f820116820180604052508101906121519190612aac565b60015b6121d7573d8060008114612184576040519150601f19603f3d011682016040523d82523d6000602084013e612189565b606091505b506000815114156121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690613082565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061222c565b600190505b949350505050565b60606008805461224390613612565b80601f016020809104026020016040519081016040528092919081815260200182805461226f90613612565b80156122bc5780601f10612291576101008083540402835291602001916122bc565b820191906000526020600020905b81548152906001019060200180831161229f57829003601f168201915b5050505050905090565b60606122d1826117ba565b612310576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612307906132c2565b60405180910390fd5b600061231a612234565b9050600081511161233a5760405180602001604052806000815250612365565b8061234484612553565b604051602001612355929190612f7a565b6040516020818303038152906040525b915050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d990613202565b60405180910390fd5b6123eb816117ba565b1561242b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612422906130c2565b60405180910390fd5b61243760008383612032565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124879190613447565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060600082141561259b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fb565b600082905060005b600082146125cd5780806125b690613675565b915050600a826125c6919061349d565b91506125a3565b60008167ffffffffffffffff81111561260f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126415781602001600182028036833780820191505090505b5090505b600085146126f45760018261265a9190613528565b9150600a8561266991906136be565b60306126759190613447565b60f81b8183815181106126b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ed919061349d565b9450612645565b8093505050505b919050565b82805461270c90613612565b90600052602060002090601f01602090048101928261272e5760008555612775565b82601f1061274757805160ff1916838001178555612775565b82800160010185558215612775579182015b82811115612774578251825591602001919060010190612759565b5b5090506127829190612786565b5090565b5b8082111561279f576000816000905550600101612787565b5090565b60006127b66127b1846133a2565b61337d565b9050828152602081018484840111156127ce57600080fd5b6127d98482856135d0565b509392505050565b60006127f46127ef846133d3565b61337d565b90508281526020810184848401111561280c57600080fd5b6128178482856135d0565b509392505050565b60008135905061282e81613dd1565b92915050565b60008135905061284381613de8565b92915050565b60008135905061285881613dff565b92915050565b60008151905061286d81613dff565b92915050565b600082601f83011261288457600080fd5b81356128948482602086016127a3565b91505092915050565b600082601f8301126128ae57600080fd5b81356128be8482602086016127e1565b91505092915050565b6000813590506128d681613e16565b92915050565b6000602082840312156128ee57600080fd5b60006128fc8482850161281f565b91505092915050565b6000806040838503121561291857600080fd5b60006129268582860161281f565b92505060206129378582860161281f565b9150509250929050565b60008060006060848603121561295657600080fd5b60006129648682870161281f565b93505060206129758682870161281f565b9250506040612986868287016128c7565b9150509250925092565b600080600080608085870312156129a657600080fd5b60006129b48782880161281f565b94505060206129c58782880161281f565b93505060406129d6878288016128c7565b925050606085013567ffffffffffffffff8111156129f357600080fd5b6129ff87828801612873565b91505092959194509250565b60008060408385031215612a1e57600080fd5b6000612a2c8582860161281f565b9250506020612a3d85828601612834565b9150509250929050565b60008060408385031215612a5a57600080fd5b6000612a688582860161281f565b9250506020612a79858286016128c7565b9150509250929050565b600060208284031215612a9557600080fd5b6000612aa384828501612849565b91505092915050565b600060208284031215612abe57600080fd5b6000612acc8482850161285e565b91505092915050565b600060208284031215612ae757600080fd5b600082013567ffffffffffffffff811115612b0157600080fd5b612b0d8482850161289d565b91505092915050565b600060208284031215612b2857600080fd5b6000612b36848285016128c7565b91505092915050565b612b488161355c565b82525050565b612b578161356e565b82525050565b6000612b6882613404565b612b72818561341a565b9350612b828185602086016135df565b612b8b816137ab565b840191505092915050565b6000612ba18261340f565b612bab818561342b565b9350612bbb8185602086016135df565b612bc4816137ab565b840191505092915050565b6000612bda8261340f565b612be4818561343c565b9350612bf48185602086016135df565b80840191505092915050565b6000612c0d60148361342b565b9150612c18826137bc565b602082019050919050565b6000612c3060208361342b565b9150612c3b826137e5565b602082019050919050565b6000612c5360328361342b565b9150612c5e8261380e565b604082019050919050565b6000612c7660268361342b565b9150612c818261385d565b604082019050919050565b6000612c99601c8361342b565b9150612ca4826138ac565b602082019050919050565b6000612cbc60098361342b565b9150612cc7826138d5565b602082019050919050565b6000612cdf601e8361342b565b9150612cea826138fe565b602082019050919050565b6000612d0260248361342b565b9150612d0d82613927565b604082019050919050565b6000612d2560198361342b565b9150612d3082613976565b602082019050919050565b6000612d48602c8361342b565b9150612d538261399f565b604082019050919050565b6000612d6b60108361342b565b9150612d76826139ee565b602082019050919050565b6000612d8e60388361342b565b9150612d9982613a17565b604082019050919050565b6000612db1602a8361342b565b9150612dbc82613a66565b604082019050919050565b6000612dd460298361342b565b9150612ddf82613ab5565b604082019050919050565b6000612df760208361342b565b9150612e0282613b04565b602082019050919050565b6000612e1a60318361342b565b9150612e2582613b2d565b604082019050919050565b6000612e3d602c8361342b565b9150612e4882613b7c565b604082019050919050565b6000612e6060188361342b565b9150612e6b82613bcb565b602082019050919050565b6000612e8360208361342b565b9150612e8e82613bf4565b602082019050919050565b6000612ea660298361342b565b9150612eb182613c1d565b604082019050919050565b6000612ec9602f8361342b565b9150612ed482613c6c565b604082019050919050565b6000612eec60258361342b565b9150612ef782613cbb565b604082019050919050565b6000612f0f60218361342b565b9150612f1a82613d0a565b604082019050919050565b6000612f3260318361342b565b9150612f3d82613d59565b604082019050919050565b6000612f55601d8361342b565b9150612f6082613da8565b602082019050919050565b612f74816135c6565b82525050565b6000612f868285612bcf565b9150612f928284612bcf565b91508190509392505050565b6000602082019050612fb36000830184612b3f565b92915050565b6000608082019050612fce6000830187612b3f565b612fdb6020830186612b3f565b612fe86040830185612f6b565b8181036060830152612ffa8184612b5d565b905095945050505050565b600060208201905061301a6000830184612b4e565b92915050565b6000602082019050818103600083015261303a8184612b96565b905092915050565b6000602082019050818103600083015261305b81612c00565b9050919050565b6000602082019050818103600083015261307b81612c23565b9050919050565b6000602082019050818103600083015261309b81612c46565b9050919050565b600060208201905081810360008301526130bb81612c69565b9050919050565b600060208201905081810360008301526130db81612c8c565b9050919050565b600060208201905081810360008301526130fb81612caf565b9050919050565b6000602082019050818103600083015261311b81612cd2565b9050919050565b6000602082019050818103600083015261313b81612cf5565b9050919050565b6000602082019050818103600083015261315b81612d18565b9050919050565b6000602082019050818103600083015261317b81612d3b565b9050919050565b6000602082019050818103600083015261319b81612d5e565b9050919050565b600060208201905081810360008301526131bb81612d81565b9050919050565b600060208201905081810360008301526131db81612da4565b9050919050565b600060208201905081810360008301526131fb81612dc7565b9050919050565b6000602082019050818103600083015261321b81612dea565b9050919050565b6000602082019050818103600083015261323b81612e0d565b9050919050565b6000602082019050818103600083015261325b81612e30565b9050919050565b6000602082019050818103600083015261327b81612e53565b9050919050565b6000602082019050818103600083015261329b81612e76565b9050919050565b600060208201905081810360008301526132bb81612e99565b9050919050565b600060208201905081810360008301526132db81612ebc565b9050919050565b600060208201905081810360008301526132fb81612edf565b9050919050565b6000602082019050818103600083015261331b81612f02565b9050919050565b6000602082019050818103600083015261333b81612f25565b9050919050565b6000602082019050818103600083015261335b81612f48565b9050919050565b60006020820190506133776000830184612f6b565b92915050565b6000613387613398565b90506133938282613644565b919050565b6000604051905090565b600067ffffffffffffffff8211156133bd576133bc61377c565b5b6133c6826137ab565b9050602081019050919050565b600067ffffffffffffffff8211156133ee576133ed61377c565b5b6133f7826137ab565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613452826135c6565b915061345d836135c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613492576134916136ef565b5b828201905092915050565b60006134a8826135c6565b91506134b3836135c6565b9250826134c3576134c261371e565b5b828204905092915050565b60006134d9826135c6565b91506134e4836135c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561351d5761351c6136ef565b5b828202905092915050565b6000613533826135c6565b915061353e836135c6565b925082821015613551576135506136ef565b5b828203905092915050565b6000613567826135a6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135fd5780820151818401526020810190506135e2565b8381111561360c576000848401525b50505050565b6000600282049050600182168061362a57607f821691505b6020821081141561363e5761363d61374d565b5b50919050565b61364d826137ab565b810181811067ffffffffffffffff8211171561366c5761366b61377c565b5b80604052505050565b6000613680826135c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136b3576136b26136ef565b5b600182019050919050565b60006136c9826135c6565b91506136d4836135c6565b9250826136e4576136e361371e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f536f72727920746865726573206e6f204361746769726c73206c656674203a28600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e696365207472792e0000000000000000000000000000000000000000000000600082015250565b7f5761697420666f72207468652073616c6520746f20656e642066697273740000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5468617473206e6f7420656e6f7567682c20736f727279210000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f576f616820656173792074686572652c207361766520736f6d6520666f72206f60008201527f7468657273000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f752063616e2774206d696e742030204361746769726c732062726f000000600082015250565b613dda8161355c565b8114613de557600080fd5b50565b613df18161356e565b8114613dfc57600080fd5b50565b613e088161357a565b8114613e1357600080fd5b50565b613e1f816135c6565b8114613e2a57600080fd5b5056fea2646970667358221220f57921ed2c0f366553c12ce102f4502fd51ac29106971c1419a1dbca356b4b6264736f6c63430008040033
Deployed Bytecode
0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146105aa578063f2fde38b146105e7578063f5f636db14610610578063fcaefb191461063b576101b7565b8063c87b56dd14610519578063d4401c6e14610556578063e62653531461057f576101b7565b80638da5cb5b116100c65780638da5cb5b1461047157806395d89b411461049c578063a22cb465146104c7578063b88d4fde146104f0576101b7565b8063715018a6146104185780638456cb591461042f578063856efd2e14610446576101b7565b806340d097c3116101595780635c975abb116101335780635c975abb1461035c5780636352211e1461038757806364c9bc60146103c457806370a08231146103db576101b7565b806340d097c3146102e157806342842e0e1461030a57806355f804b314610333576101b7565b8063095ea7b311610195578063095ea7b31461026157806323b872dd1461028a5780633ccfd60b146102b35780633f4ba83a146102ca576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612a83565b610657565b6040516101f09190613005565b60405180910390f35b34801561020557600080fd5b5061020e610739565b60405161021b9190613020565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612b16565b6107cb565b6040516102589190612f9e565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612a47565b610850565b005b34801561029657600080fd5b506102b160048036038101906102ac9190612941565b610968565b005b3480156102bf57600080fd5b506102c86109c8565b005b3480156102d657600080fd5b506102df610a93565b005b3480156102ed57600080fd5b50610308600480360381019061030391906128dc565b610b19565b005b34801561031657600080fd5b50610331600480360381019061032c9190612941565b610c03565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612ad5565b610c23565b005b34801561036857600080fd5b50610371610cb9565b60405161037e9190613005565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190612b16565b610cd0565b6040516103bb9190612f9e565b60405180910390f35b3480156103d057600080fd5b506103d9610d82565b005b3480156103e757600080fd5b5061040260048036038101906103fd91906128dc565b610e2a565b60405161040f9190613362565b60405180910390f35b34801561042457600080fd5b5061042d610ee2565b005b34801561043b57600080fd5b50610444610f6a565b005b34801561045257600080fd5b5061045b610ff0565b6040516104689190613020565b60405180910390f35b34801561047d57600080fd5b5061048661102d565b6040516104939190612f9e565b60405180910390f35b3480156104a857600080fd5b506104b1611057565b6040516104be9190613020565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612a0b565b6110e9565b005b3480156104fc57600080fd5b5061051760048036038101906105129190612990565b61126a565b005b34801561052557600080fd5b50610540600480360381019061053b9190612b16565b6112cc565b60405161054d9190613020565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190612a47565b6112de565b005b34801561058b57600080fd5b506105946113ac565b6040516105a19190613362565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190612905565b6113bd565b6040516105de9190613005565b60405180910390f35b3480156105f357600080fd5b5061060e600480360381019061060991906128dc565b611451565b005b34801561061c57600080fd5b50610625611549565b6040516106329190613005565b60405180910390f35b61065560048036038101906106509190612b16565b61155c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610732575061073182611750565b5b9050919050565b60606000805461074890613612565b80601f016020809104026020016040519081016040528092919081815260200182805461077490613612565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b60006107d6826117ba565b610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c90613242565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085b82610cd0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390613302565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108eb611826565b73ffffffffffffffffffffffffffffffffffffffff16148061091a575061091981610914611826565b6113bd565b5b610959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610950906131a2565b60405180910390fd5b610963838361182e565b505050565b610979610973611826565b826118e7565b6109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90613322565b60405180910390fd5b6109c38383836119c5565b505050565b6109d0611826565b73ffffffffffffffffffffffffffffffffffffffff166109ee61102d565b73ffffffffffffffffffffffffffffffffffffffff1614610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90613282565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a8f573d6000803e3d6000fd5b5050565b610a9b611826565b73ffffffffffffffffffffffffffffffffffffffff16610ab961102d565b73ffffffffffffffffffffffffffffffffffffffff1614610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690613282565b60405180910390fd5b610b17611c21565b565b610b21611826565b73ffffffffffffffffffffffffffffffffffffffff16610b3f61102d565b73ffffffffffffffffffffffffffffffffffffffff1614610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613282565b60405180910390fd5b6113a1610ba2600a611cc3565b1115610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906130e2565b60405180910390fd5b610bf681610bf1600a611cc3565b611cd1565b610c00600a61173a565b50565b610c1e8383836040518060200160405280600081525061126a565b505050565b610c2b611826565b73ffffffffffffffffffffffffffffffffffffffff16610c4961102d565b73ffffffffffffffffffffffffffffffffffffffff1614610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690613282565b60405180910390fd5b8060089080519060200190610cb5929190612700565b5050565b6000600760009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d70906131e2565b60405180910390fd5b80915050919050565b610d8a611826565b73ffffffffffffffffffffffffffffffffffffffff16610da861102d565b73ffffffffffffffffffffffffffffffffffffffff1614610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df590613282565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e92906131c2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eea611826565b73ffffffffffffffffffffffffffffffffffffffff16610f0861102d565b73ffffffffffffffffffffffffffffffffffffffff1614610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590613282565b60405180910390fd5b610f686000611cef565b565b610f72611826565b73ffffffffffffffffffffffffffffffffffffffff16610f9061102d565b73ffffffffffffffffffffffffffffffffffffffff1614610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90613282565b60405180910390fd5b610fee611db5565b565b60606040518060400160405280600581526020017f5741494655000000000000000000000000000000000000000000000000000000815250905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461106690613612565b80601f016020809104026020016040519081016040528092919081815260200182805461109290613612565b80156110df5780601f106110b4576101008083540402835291602001916110df565b820191906000526020600020905b8154815290600101906020018083116110c257829003601f168201915b5050505050905090565b6110f1611826565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690613142565b60405180910390fd5b806005600061116c611826565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611219611826565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161125e9190613005565b60405180910390a35050565b61127b611275611826565b836118e7565b6112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190613322565b60405180910390fd5b6112c684848484611e58565b50505050565b60606112d782611eb4565b9050919050565b6112e6611826565b73ffffffffffffffffffffffffffffffffffffffff1661130461102d565b73ffffffffffffffffffffffffffffffffffffffff161461135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613282565b60405180910390fd5b611388811161139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590613102565b60405180910390fd5b6113a88282611cd1565b5050565b60006113b8600a611cc3565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611459611826565b73ffffffffffffffffffffffffffffffffffffffff1661147761102d565b73ffffffffffffffffffffffffffffffffffffffff16146114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490613282565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561153d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611534906130a2565b60405180910390fd5b61154681611cef565b50565b600b60009054906101000a900460ff1681565b611564610cb9565b156115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613182565b60405180910390fd5b600b60009054906101000a900460ff166115bd57600080fd5b60008111611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790613342565b60405180910390fd5b6032811115611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906132e2565b60405180910390fd5b61138861166382611655600a611cc3565b61200690919063ffffffff16565b11156116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90613062565b60405180910390fd5b346116ba8260095461201c90919063ffffffff16565b11156116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290613262565b60405180910390fd5b60005b818110156117365761171933611714600a611cc3565b611cd1565b611723600a61173a565b808061172e90613675565b9150506116fe565b5050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118a183610cd0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118f2826117ba565b611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890613162565b60405180910390fd5b600061193c83610cd0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119ab57508373ffffffffffffffffffffffffffffffffffffffff16611993846107cb565b73ffffffffffffffffffffffffffffffffffffffff16145b806119bc57506119bb81856113bd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119e582610cd0565b73ffffffffffffffffffffffffffffffffffffffff1614611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a32906132a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613122565b60405180910390fd5b611ab6838383612032565b611ac160008261182e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b119190613528565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b689190613447565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611c29610cb9565b611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90613042565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611cac611826565b604051611cb99190612f9e565b60405180910390a1565b600081600001549050919050565b611ceb828260405180602001604052806000815250612042565b5050565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611dbd610cb9565b15611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613182565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e41611826565b604051611e4e9190612f9e565b60405180910390a1565b611e638484846119c5565b611e6f8484848461209d565b611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea590613082565b60405180910390fd5b50505050565b6060611ebf826117ba565b611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590613222565b60405180910390fd5b6000600660008481526020019081526020016000208054611f1e90613612565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4a90613612565b8015611f975780601f10611f6c57610100808354040283529160200191611f97565b820191906000526020600020905b815481529060010190602001808311611f7a57829003601f168201915b505050505090506000611fa8612234565b9050600081511415611fbe578192505050612001565b600082511115611ff3578082604051602001611fdb929190612f7a565b60405160208183030381529060405292505050612001565b611ffc846122c6565b925050505b919050565b600081836120149190613447565b905092915050565b6000818361202a91906134ce565b905092915050565b61203d83838361236d565b505050565b61204c8383612372565b612059600084848461209d565b612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f90613082565b60405180910390fd5b505050565b60006120be8473ffffffffffffffffffffffffffffffffffffffff16612540565b15612227578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120e7611826565b8786866040518563ffffffff1660e01b81526004016121099493929190612fb9565b602060405180830381600087803b15801561212357600080fd5b505af192505050801561215457506040513d601f19601f820116820180604052508101906121519190612aac565b60015b6121d7573d8060008114612184576040519150601f19603f3d011682016040523d82523d6000602084013e612189565b606091505b506000815114156121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690613082565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061222c565b600190505b949350505050565b60606008805461224390613612565b80601f016020809104026020016040519081016040528092919081815260200182805461226f90613612565b80156122bc5780601f10612291576101008083540402835291602001916122bc565b820191906000526020600020905b81548152906001019060200180831161229f57829003601f168201915b5050505050905090565b60606122d1826117ba565b612310576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612307906132c2565b60405180910390fd5b600061231a612234565b9050600081511161233a5760405180602001604052806000815250612365565b8061234484612553565b604051602001612355929190612f7a565b6040516020818303038152906040525b915050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d990613202565b60405180910390fd5b6123eb816117ba565b1561242b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612422906130c2565b60405180910390fd5b61243760008383612032565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124879190613447565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060600082141561259b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fb565b600082905060005b600082146125cd5780806125b690613675565b915050600a826125c6919061349d565b91506125a3565b60008167ffffffffffffffff81111561260f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126415781602001600182028036833780820191505090505b5090505b600085146126f45760018261265a9190613528565b9150600a8561266991906136be565b60306126759190613447565b60f81b8183815181106126b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ed919061349d565b9450612645565b8093505050505b919050565b82805461270c90613612565b90600052602060002090601f01602090048101928261272e5760008555612775565b82601f1061274757805160ff1916838001178555612775565b82800160010185558215612775579182015b82811115612774578251825591602001919060010190612759565b5b5090506127829190612786565b5090565b5b8082111561279f576000816000905550600101612787565b5090565b60006127b66127b1846133a2565b61337d565b9050828152602081018484840111156127ce57600080fd5b6127d98482856135d0565b509392505050565b60006127f46127ef846133d3565b61337d565b90508281526020810184848401111561280c57600080fd5b6128178482856135d0565b509392505050565b60008135905061282e81613dd1565b92915050565b60008135905061284381613de8565b92915050565b60008135905061285881613dff565b92915050565b60008151905061286d81613dff565b92915050565b600082601f83011261288457600080fd5b81356128948482602086016127a3565b91505092915050565b600082601f8301126128ae57600080fd5b81356128be8482602086016127e1565b91505092915050565b6000813590506128d681613e16565b92915050565b6000602082840312156128ee57600080fd5b60006128fc8482850161281f565b91505092915050565b6000806040838503121561291857600080fd5b60006129268582860161281f565b92505060206129378582860161281f565b9150509250929050565b60008060006060848603121561295657600080fd5b60006129648682870161281f565b93505060206129758682870161281f565b9250506040612986868287016128c7565b9150509250925092565b600080600080608085870312156129a657600080fd5b60006129b48782880161281f565b94505060206129c58782880161281f565b93505060406129d6878288016128c7565b925050606085013567ffffffffffffffff8111156129f357600080fd5b6129ff87828801612873565b91505092959194509250565b60008060408385031215612a1e57600080fd5b6000612a2c8582860161281f565b9250506020612a3d85828601612834565b9150509250929050565b60008060408385031215612a5a57600080fd5b6000612a688582860161281f565b9250506020612a79858286016128c7565b9150509250929050565b600060208284031215612a9557600080fd5b6000612aa384828501612849565b91505092915050565b600060208284031215612abe57600080fd5b6000612acc8482850161285e565b91505092915050565b600060208284031215612ae757600080fd5b600082013567ffffffffffffffff811115612b0157600080fd5b612b0d8482850161289d565b91505092915050565b600060208284031215612b2857600080fd5b6000612b36848285016128c7565b91505092915050565b612b488161355c565b82525050565b612b578161356e565b82525050565b6000612b6882613404565b612b72818561341a565b9350612b828185602086016135df565b612b8b816137ab565b840191505092915050565b6000612ba18261340f565b612bab818561342b565b9350612bbb8185602086016135df565b612bc4816137ab565b840191505092915050565b6000612bda8261340f565b612be4818561343c565b9350612bf48185602086016135df565b80840191505092915050565b6000612c0d60148361342b565b9150612c18826137bc565b602082019050919050565b6000612c3060208361342b565b9150612c3b826137e5565b602082019050919050565b6000612c5360328361342b565b9150612c5e8261380e565b604082019050919050565b6000612c7660268361342b565b9150612c818261385d565b604082019050919050565b6000612c99601c8361342b565b9150612ca4826138ac565b602082019050919050565b6000612cbc60098361342b565b9150612cc7826138d5565b602082019050919050565b6000612cdf601e8361342b565b9150612cea826138fe565b602082019050919050565b6000612d0260248361342b565b9150612d0d82613927565b604082019050919050565b6000612d2560198361342b565b9150612d3082613976565b602082019050919050565b6000612d48602c8361342b565b9150612d538261399f565b604082019050919050565b6000612d6b60108361342b565b9150612d76826139ee565b602082019050919050565b6000612d8e60388361342b565b9150612d9982613a17565b604082019050919050565b6000612db1602a8361342b565b9150612dbc82613a66565b604082019050919050565b6000612dd460298361342b565b9150612ddf82613ab5565b604082019050919050565b6000612df760208361342b565b9150612e0282613b04565b602082019050919050565b6000612e1a60318361342b565b9150612e2582613b2d565b604082019050919050565b6000612e3d602c8361342b565b9150612e4882613b7c565b604082019050919050565b6000612e6060188361342b565b9150612e6b82613bcb565b602082019050919050565b6000612e8360208361342b565b9150612e8e82613bf4565b602082019050919050565b6000612ea660298361342b565b9150612eb182613c1d565b604082019050919050565b6000612ec9602f8361342b565b9150612ed482613c6c565b604082019050919050565b6000612eec60258361342b565b9150612ef782613cbb565b604082019050919050565b6000612f0f60218361342b565b9150612f1a82613d0a565b604082019050919050565b6000612f3260318361342b565b9150612f3d82613d59565b604082019050919050565b6000612f55601d8361342b565b9150612f6082613da8565b602082019050919050565b612f74816135c6565b82525050565b6000612f868285612bcf565b9150612f928284612bcf565b91508190509392505050565b6000602082019050612fb36000830184612b3f565b92915050565b6000608082019050612fce6000830187612b3f565b612fdb6020830186612b3f565b612fe86040830185612f6b565b8181036060830152612ffa8184612b5d565b905095945050505050565b600060208201905061301a6000830184612b4e565b92915050565b6000602082019050818103600083015261303a8184612b96565b905092915050565b6000602082019050818103600083015261305b81612c00565b9050919050565b6000602082019050818103600083015261307b81612c23565b9050919050565b6000602082019050818103600083015261309b81612c46565b9050919050565b600060208201905081810360008301526130bb81612c69565b9050919050565b600060208201905081810360008301526130db81612c8c565b9050919050565b600060208201905081810360008301526130fb81612caf565b9050919050565b6000602082019050818103600083015261311b81612cd2565b9050919050565b6000602082019050818103600083015261313b81612cf5565b9050919050565b6000602082019050818103600083015261315b81612d18565b9050919050565b6000602082019050818103600083015261317b81612d3b565b9050919050565b6000602082019050818103600083015261319b81612d5e565b9050919050565b600060208201905081810360008301526131bb81612d81565b9050919050565b600060208201905081810360008301526131db81612da4565b9050919050565b600060208201905081810360008301526131fb81612dc7565b9050919050565b6000602082019050818103600083015261321b81612dea565b9050919050565b6000602082019050818103600083015261323b81612e0d565b9050919050565b6000602082019050818103600083015261325b81612e30565b9050919050565b6000602082019050818103600083015261327b81612e53565b9050919050565b6000602082019050818103600083015261329b81612e76565b9050919050565b600060208201905081810360008301526132bb81612e99565b9050919050565b600060208201905081810360008301526132db81612ebc565b9050919050565b600060208201905081810360008301526132fb81612edf565b9050919050565b6000602082019050818103600083015261331b81612f02565b9050919050565b6000602082019050818103600083015261333b81612f25565b9050919050565b6000602082019050818103600083015261335b81612f48565b9050919050565b60006020820190506133776000830184612f6b565b92915050565b6000613387613398565b90506133938282613644565b919050565b6000604051905090565b600067ffffffffffffffff8211156133bd576133bc61377c565b5b6133c6826137ab565b9050602081019050919050565b600067ffffffffffffffff8211156133ee576133ed61377c565b5b6133f7826137ab565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613452826135c6565b915061345d836135c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613492576134916136ef565b5b828201905092915050565b60006134a8826135c6565b91506134b3836135c6565b9250826134c3576134c261371e565b5b828204905092915050565b60006134d9826135c6565b91506134e4836135c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561351d5761351c6136ef565b5b828202905092915050565b6000613533826135c6565b915061353e836135c6565b925082821015613551576135506136ef565b5b828203905092915050565b6000613567826135a6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135fd5780820151818401526020810190506135e2565b8381111561360c576000848401525b50505050565b6000600282049050600182168061362a57607f821691505b6020821081141561363e5761363d61374d565b5b50919050565b61364d826137ab565b810181811067ffffffffffffffff8211171561366c5761366b61377c565b5b80604052505050565b6000613680826135c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136b3576136b26136ef565b5b600182019050919050565b60006136c9826135c6565b91506136d4836135c6565b9250826136e4576136e361371e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f536f72727920746865726573206e6f204361746769726c73206c656674203a28600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e696365207472792e0000000000000000000000000000000000000000000000600082015250565b7f5761697420666f72207468652073616c6520746f20656e642066697273740000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5468617473206e6f7420656e6f7567682c20736f727279210000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f576f616820656173792074686572652c207361766520736f6d6520666f72206f60008201527f7468657273000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f752063616e2774206d696e742030204361746769726c732062726f000000600082015250565b613dda8161355c565b8114613de557600080fd5b50565b613df18161356e565b8114613dfc57600080fd5b50565b613e088161357a565b8114613e1357600080fd5b50565b613e1f816135c6565b8114613e2a57600080fd5b5056fea2646970667358221220f57921ed2c0f366553c12ce102f4502fd51ac29106971c1419a1dbca356b4b6264736f6c63430008040033
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.