Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
891 MACH
Holders
107
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MACHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Machinie
Compiler Version
v0.8.6+commit.11564f7e
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.6; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Machinie is ERC721Enumerable, Ownable { using Strings for uint256; uint256 public constant _maxSupply = 8888; uint public constant _maxPurchasable = 20; bool public _paused = true; uint256 private _price = 0.018 ether ; //0.018 eth uint256 private _reserved = 88; uint256 public _quota = 0; address kingAddress = 0x714FdF665698837f2F31c57A3dB2Dd23a4Efe84c; address hathumAddress = 0xD37a936ACAe6e186f3938C550f11910E0809D67B; constructor() ERC721("Machinie", "MACH") { _safeMint(kingAddress,0); _safeMint(hathumAddress,1); } function giveAway(address _to, uint256 _amount) external onlyOwner() { require( _amount <= _reserved, "" ); uint256 supply = totalSupply(); for(uint256 i; i < _amount; i++){ _safeMint( _to, supply + i ); } _reserved -= _amount; } function _baseURI() internal view virtual override returns (string memory) { return "https://rest-api-machinie-nft.herokuapp.com/tokens/"; } //LEAK!! function leak() public { uint256 supply = totalSupply(); require(balanceOf(msg.sender) < 1); require(totalSupply() <= 97); _safeMint(msg.sender, supply); } function teleport(uint256 num) public payable { uint256 supply = totalSupply(); require( !_paused, "Sale paused" ); require( num <= _maxPurchasable, "Only 20 Machinies can fit through the portal!" ); require( supply + num < _maxSupply - _reserved, "Exceeds maximum Machines alive" ); require( msg.value >= _price * num, "Ether sent is not correct" ); require(num <= _quota, "This exceeds the limit of jump!"); for(uint256 i; i < num; i++){ _safeMint( msg.sender, supply + i ); } _quota -= num; } function setPrice(uint256 _newPrice) public onlyOwner { _price = _newPrice; } function pause(bool val) public onlyOwner { _paused = val; } function setQuota(uint256 _newQuota) public onlyOwner { _quota = _newQuota; } function setReserve(uint256 _newReserved) public onlyOwner { _reserved = _newReserved; } function walletOfOwner(address _owner) public view returns(uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT 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 "./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 "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT 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 "../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; /** * @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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxPurchasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_quota","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"leak","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":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newQuota","type":"uint256"}],"name":"setQuota","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newReserved","type":"uint256"}],"name":"setReserve","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":"num","type":"uint256"}],"name":"teleport","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526001600a60146101000a81548160ff021916908315150217905550663ff2e795f50000600b556058600c556000600d5573714fdf665698837f2f31c57a3db2dd23a4efe84c600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d37a936acae6e186f3938c550f11910e0809d67b600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000eb57600080fd5b506040518060400160405280600881526020017f4d616368696e69650000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4143480000000000000000000000000000000000000000000000000000000081525081600090805190602001906200017092919062000cd2565b5080600190805190602001906200018992919062000cd2565b505050620001ac620001a06200021c60201b60201c565b6200022460201b60201c565b620001e1600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000620002ea60201b60201c565b62000216600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620002ea60201b60201c565b6200131d565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200030c8282604051806020016040528060008152506200031060201b60201c565b5050565b6200032283836200037e60201b60201c565b6200033760008484846200056460201b60201c565b62000379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003709062000f1e565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e89062000f84565b60405180910390fd5b62000402816200071e60201b60201c565b1562000445576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043c9062000f40565b60405180910390fd5b62000459600083836200078a60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004ab919062000fd3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005928473ffffffffffffffffffffffffffffffffffffffff16620008d160201b620019891760201c565b1562000711578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005c46200021c60201b60201c565b8786866040518563ffffffff1660e01b8152600401620005e8949392919062000eca565b602060405180830381600087803b1580156200060357600080fd5b505af19250505080156200063757506040513d601f19601f8201168201806040525081019062000634919062000d99565b60015b620006c0573d80600081146200066a576040519150601f19603f3d011682016040523d82523d6000602084013e6200066f565b606091505b50600081511415620006b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006af9062000f1e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000716565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620007a2838383620008e460201b6200199c1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620007ef57620007e981620008e960201b60201c565b62000837565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000836576200083583826200093260201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000884576200087e8162000aaf60201b60201c565b620008cc565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620008cb57620008ca828262000b8b60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016200094c8462000c1760201b62000f221760201c565b62000958919062001030565b905060006007600084815260200190815260200160002054905081811462000a3e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000ac5919062001030565b905060006009600084815260200190815260200160002054905060006008838154811062000af85762000af7620011ce565b5b90600052602060002001549050806008838154811062000b1d5762000b1c620011ce565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000b6f5762000b6e6200119f565b5b6001900381819060005260206000200160009055905550505050565b600062000ba38362000c1760201b62000f221760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c829062000f62565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000ce0906200110b565b90600052602060002090601f01602090048101928262000d04576000855562000d50565b82601f1062000d1f57805160ff191683800117855562000d50565b8280016001018555821562000d50579182015b8281111562000d4f57825182559160200191906001019062000d32565b5b50905062000d5f919062000d63565b5090565b5b8082111562000d7e57600081600090555060010162000d64565b5090565b60008151905062000d938162001303565b92915050565b60006020828403121562000db25762000db1620011fd565b5b600062000dc28482850162000d82565b91505092915050565b62000dd6816200106b565b82525050565b600062000de98262000fa6565b62000df5818562000fb1565b935062000e07818560208601620010d5565b62000e128162001202565b840191505092915050565b600062000e2c60328362000fc2565b915062000e398262001213565b604082019050919050565b600062000e53601c8362000fc2565b915062000e608262001262565b602082019050919050565b600062000e7a602a8362000fc2565b915062000e87826200128b565b604082019050919050565b600062000ea160208362000fc2565b915062000eae82620012da565b602082019050919050565b62000ec481620010cb565b82525050565b600060808201905062000ee1600083018762000dcb565b62000ef0602083018662000dcb565b62000eff604083018562000eb9565b818103606083015262000f13818462000ddc565b905095945050505050565b6000602082019050818103600083015262000f398162000e1d565b9050919050565b6000602082019050818103600083015262000f5b8162000e44565b9050919050565b6000602082019050818103600083015262000f7d8162000e6b565b9050919050565b6000602082019050818103600083015262000f9f8162000e92565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000fe082620010cb565b915062000fed83620010cb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001025576200102462001141565b5b828201905092915050565b60006200103d82620010cb565b91506200104a83620010cb565b92508282101562001060576200105f62001141565b5b828203905092915050565b60006200107882620010ab565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620010f5578082015181840152602081019050620010d8565b8381111562001105576000848401525b50505050565b600060028204905060018216806200112457607f821691505b602082108114156200113b576200113a62001170565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6200130e816200107f565b81146200131a57600080fd5b50565b61414b806200132d6000396000f3fe6080604052600436106101e35760003560e01c80636352211e1161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd146106b0578063ca800144146106ed578063e985e9c514610716578063f2fde38b14610753576101e3565b806395d89b411461060a578063a22cb46514610635578063a257db8e1461065e578063b88d4fde14610687576101e3565b806389832beb116100d157806389832beb146105835780638da5cb5b1461059f5780638fd66f25146105ca57806391b7f5ed146105e1576101e3565b80636352211e146104c757806370a0823114610504578063715018a614610541578063805be57714610558576101e3565b806323b872dd1161017a5780634256dbe3116101495780634256dbe3146103fb57806342842e0e14610424578063438b63001461044d5780634f6ccce71461048a576101e3565b806323b872dd146103605780632f745c59146103895780633ccfd60b146103c65780633f0120e6146103d0576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806316c61ccc146102df57806318160ddd1461030a57806322f4596f14610335576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612cb8565b61077c565b60405161021c9190613289565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612c8b565b6107f6565b005b34801561025a57600080fd5b5061026361088f565b60405161027091906132a4565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612d12565b610921565b6040516102ad9190613200565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612c4b565b6109a6565b005b3480156102eb57600080fd5b506102f4610abe565b6040516103019190613289565b60405180910390f35b34801561031657600080fd5b5061031f610ad1565b60405161032c91906135c6565b60405180910390f35b34801561034157600080fd5b5061034a610ade565b60405161035791906135c6565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612b35565b610ae4565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612c4b565b610b44565b6040516103bd91906135c6565b60405180910390f35b6103ce610be9565b005b3480156103dc57600080fd5b506103e5610ca5565b6040516103f291906135c6565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d9190612d12565b610cab565b005b34801561043057600080fd5b5061044b60048036038101906104469190612b35565b610d31565b005b34801561045957600080fd5b50610474600480360381019061046f9190612ac8565b610d51565b6040516104819190613267565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190612d12565b610dff565b6040516104be91906135c6565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612d12565b610e70565b6040516104fb9190613200565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190612ac8565b610f22565b60405161053891906135c6565b60405180910390f35b34801561054d57600080fd5b50610556610fda565b005b34801561056457600080fd5b5061056d611062565b60405161057a91906135c6565b60405180910390f35b61059d60048036038101906105989190612d12565b611067565b005b3480156105ab57600080fd5b506105b4611249565b6040516105c19190613200565b60405180910390f35b3480156105d657600080fd5b506105df611273565b005b3480156105ed57600080fd5b5061060860048036038101906106039190612d12565b6112b6565b005b34801561061657600080fd5b5061061f61133c565b60405161062c91906132a4565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612c0b565b6113ce565b005b34801561066a57600080fd5b5061068560048036038101906106809190612d12565b61154f565b005b34801561069357600080fd5b506106ae60048036038101906106a99190612b88565b6115d5565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190612d12565b611637565b6040516106e491906132a4565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190612c4b565b6116de565b005b34801561072257600080fd5b5061073d60048036038101906107389190612af5565b6117fd565b60405161074a9190613289565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612ac8565b611891565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ef57506107ee826119a1565b5b9050919050565b6107fe611a83565b73ffffffffffffffffffffffffffffffffffffffff1661081c611249565b73ffffffffffffffffffffffffffffffffffffffff1614610872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086990613486565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b60606000805461089e9061387e565b80601f01602080910402602001604051908101604052809291908181526020018280546108ca9061387e565b80156109175780601f106108ec57610100808354040283529160200191610917565b820191906000526020600020905b8154815290600101906020018083116108fa57829003601f168201915b5050505050905090565b600061092c82611a8b565b61096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096290613466565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b182610e70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a19906134e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a41611a83565b73ffffffffffffffffffffffffffffffffffffffff161480610a705750610a6f81610a6a611a83565b6117fd565b5b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa6906133e6565b60405180910390fd5b610ab98383611af7565b505050565b600a60149054906101000a900460ff1681565b6000600880549050905090565b6122b881565b610af5610aef611a83565b82611bb0565b610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90613546565b60405180910390fd5b610b3f838383611c8e565b505050565b6000610b4f83610f22565b8210610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906132e6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610bf1611a83565b73ffffffffffffffffffffffffffffffffffffffff16610c0f611249565b73ffffffffffffffffffffffffffffffffffffffff1614610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613486565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ca357600080fd5b565b600d5481565b610cb3611a83565b73ffffffffffffffffffffffffffffffffffffffff16610cd1611249565b73ffffffffffffffffffffffffffffffffffffffff1614610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90613486565b60405180910390fd5b80600c8190555050565b610d4c838383604051806020016040528060008152506115d5565b505050565b60606000610d5e83610f22565b905060008167ffffffffffffffff811115610d7c57610d7b613a46565b5b604051908082528060200260200182016040528015610daa5781602001602082028036833780820191505090505b50905060005b82811015610df457610dc28582610b44565b828281518110610dd557610dd4613a17565b5b6020026020010181815250508080610dec906138e1565b915050610db0565b508092505050919050565b6000610e09610ad1565b8210610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190613566565b60405180910390fd5b60088281548110610e5e57610e5d613a17565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090613426565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90613406565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fe2611a83565b73ffffffffffffffffffffffffffffffffffffffff16611000611249565b73ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90613486565b60405180910390fd5b6110606000611eea565b565b601481565b6000611071610ad1565b9050600a60149054906101000a900460ff16156110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba906132c6565b60405180910390fd5b6014821115611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613586565b60405180910390fd5b600c546122b86111179190613794565b828261112391906136b3565b10611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90613346565b60405180910390fd5b81600b54611171919061373a565b3410156111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613506565b60405180910390fd5b600d548211156111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef906135a6565b60405180910390fd5b60005b8281101561122b5761121833828461121391906136b3565b611fb0565b8080611223906138e1565b9150506111fb565b5081600d600082825461123e9190613794565b925050819055505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061127d610ad1565b9050600161128a33610f22565b1061129457600080fd5b606161129e610ad1565b11156112a957600080fd5b6112b33382611fb0565b50565b6112be611a83565b73ffffffffffffffffffffffffffffffffffffffff166112dc611249565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613486565b60405180910390fd5b80600b8190555050565b60606001805461134b9061387e565b80601f01602080910402602001604051908101604052809291908181526020018280546113779061387e565b80156113c45780601f10611399576101008083540402835291602001916113c4565b820191906000526020600020905b8154815290600101906020018083116113a757829003601f168201915b5050505050905090565b6113d6611a83565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b906133a6565b60405180910390fd5b8060056000611451611a83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114fe611a83565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115439190613289565b60405180910390a35050565b611557611a83565b73ffffffffffffffffffffffffffffffffffffffff16611575611249565b73ffffffffffffffffffffffffffffffffffffffff16146115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c290613486565b60405180910390fd5b80600d8190555050565b6115e66115e0611a83565b83611bb0565b611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613546565b60405180910390fd5b61163184848484611fce565b50505050565b606061164282611a8b565b611681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611678906134c6565b60405180910390fd5b600061168b61202a565b905060008151116116ab57604051806020016040528060008152506116d6565b806116b58461204a565b6040516020016116c69291906131dc565b6040516020818303038152906040525b915050919050565b6116e6611a83565b73ffffffffffffffffffffffffffffffffffffffff16611704611249565b73ffffffffffffffffffffffffffffffffffffffff161461175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190613486565b60405180910390fd5b600c5481111561179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179690613526565b60405180910390fd5b60006117a9610ad1565b905060005b828110156117de576117cb8482846117c691906136b3565b611fb0565b80806117d6906138e1565b9150506117ae565b5081600c60008282546117f19190613794565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611899611a83565b73ffffffffffffffffffffffffffffffffffffffff166118b7611249565b73ffffffffffffffffffffffffffffffffffffffff161461190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490613486565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490613326565b60405180910390fd5b61198681611eea565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a6c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a7c5750611a7b826121ab565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b6a83610e70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bbb82611a8b565b611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf1906133c6565b60405180910390fd5b6000611c0583610e70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c7457508373ffffffffffffffffffffffffffffffffffffffff16611c5c84610921565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c855750611c8481856117fd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cae82610e70565b73ffffffffffffffffffffffffffffffffffffffff1614611d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfb906134a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90613386565b60405180910390fd5b611d7f838383612215565b611d8a600082611af7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dda9190613794565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e3191906136b3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fca828260405180602001604052806000815250612329565b5050565b611fd9848484611c8e565b611fe584848484612384565b612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90613306565b60405180910390fd5b50505050565b60606040518060600160405280603381526020016140e360339139905090565b60606000821415612092576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121a6565b600082905060005b600082146120c45780806120ad906138e1565b915050600a826120bd9190613709565b915061209a565b60008167ffffffffffffffff8111156120e0576120df613a46565b5b6040519080825280601f01601f1916602001820160405280156121125781602001600182028036833780820191505090505b5090505b6000851461219f5760018261212b9190613794565b9150600a8561213a919061392a565b603061214691906136b3565b60f81b81838151811061215c5761215b613a17565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121989190613709565b9450612116565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61222083838361199c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122635761225e8161251b565b6122a2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122a1576122a08382612564565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122e5576122e0816126d1565b612324565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123235761232282826127a2565b5b5b505050565b6123338383612821565b6123406000848484612384565b61237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690613306565b60405180910390fd5b505050565b60006123a58473ffffffffffffffffffffffffffffffffffffffff16611989565b1561250e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ce611a83565b8786866040518563ffffffff1660e01b81526004016123f0949392919061321b565b602060405180830381600087803b15801561240a57600080fd5b505af192505050801561243b57506040513d601f19601f820116820180604052508101906124389190612ce5565b60015b6124be573d806000811461246b576040519150601f19603f3d011682016040523d82523d6000602084013e612470565b606091505b506000815114156124b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ad90613306565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612513565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161257184610f22565b61257b9190613794565b9050600060076000848152602001908152602001600020549050818114612660576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126e59190613794565b905060006009600084815260200190815260200160002054905060006008838154811061271557612714613a17565b5b90600052602060002001549050806008838154811061273757612736613a17565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612786576127856139e8565b5b6001900381819060005260206000200160009055905550505050565b60006127ad83610f22565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288890613446565b60405180910390fd5b61289a81611a8b565b156128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d190613366565b60405180910390fd5b6128e660008383612215565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293691906136b3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612a026129fd84613606565b6135e1565b905082815260208101848484011115612a1e57612a1d613a7a565b5b612a2984828561383c565b509392505050565b600081359050612a4081614086565b92915050565b600081359050612a558161409d565b92915050565b600081359050612a6a816140b4565b92915050565b600081519050612a7f816140b4565b92915050565b600082601f830112612a9a57612a99613a75565b5b8135612aaa8482602086016129ef565b91505092915050565b600081359050612ac2816140cb565b92915050565b600060208284031215612ade57612add613a84565b5b6000612aec84828501612a31565b91505092915050565b60008060408385031215612b0c57612b0b613a84565b5b6000612b1a85828601612a31565b9250506020612b2b85828601612a31565b9150509250929050565b600080600060608486031215612b4e57612b4d613a84565b5b6000612b5c86828701612a31565b9350506020612b6d86828701612a31565b9250506040612b7e86828701612ab3565b9150509250925092565b60008060008060808587031215612ba257612ba1613a84565b5b6000612bb087828801612a31565b9450506020612bc187828801612a31565b9350506040612bd287828801612ab3565b925050606085013567ffffffffffffffff811115612bf357612bf2613a7f565b5b612bff87828801612a85565b91505092959194509250565b60008060408385031215612c2257612c21613a84565b5b6000612c3085828601612a31565b9250506020612c4185828601612a46565b9150509250929050565b60008060408385031215612c6257612c61613a84565b5b6000612c7085828601612a31565b9250506020612c8185828601612ab3565b9150509250929050565b600060208284031215612ca157612ca0613a84565b5b6000612caf84828501612a46565b91505092915050565b600060208284031215612cce57612ccd613a84565b5b6000612cdc84828501612a5b565b91505092915050565b600060208284031215612cfb57612cfa613a84565b5b6000612d0984828501612a70565b91505092915050565b600060208284031215612d2857612d27613a84565b5b6000612d3684828501612ab3565b91505092915050565b6000612d4b83836131be565b60208301905092915050565b612d60816137c8565b82525050565b6000612d7182613647565b612d7b8185613675565b9350612d8683613637565b8060005b83811015612db7578151612d9e8882612d3f565b9750612da983613668565b925050600181019050612d8a565b5085935050505092915050565b612dcd816137da565b82525050565b6000612dde82613652565b612de88185613686565b9350612df881856020860161384b565b612e0181613a89565b840191505092915050565b6000612e178261365d565b612e218185613697565b9350612e3181856020860161384b565b612e3a81613a89565b840191505092915050565b6000612e508261365d565b612e5a81856136a8565b9350612e6a81856020860161384b565b80840191505092915050565b6000612e83600b83613697565b9150612e8e82613a9a565b602082019050919050565b6000612ea6602b83613697565b9150612eb182613ac3565b604082019050919050565b6000612ec9603283613697565b9150612ed482613b12565b604082019050919050565b6000612eec602683613697565b9150612ef782613b61565b604082019050919050565b6000612f0f601e83613697565b9150612f1a82613bb0565b602082019050919050565b6000612f32601c83613697565b9150612f3d82613bd9565b602082019050919050565b6000612f55602483613697565b9150612f6082613c02565b604082019050919050565b6000612f78601983613697565b9150612f8382613c51565b602082019050919050565b6000612f9b602c83613697565b9150612fa682613c7a565b604082019050919050565b6000612fbe603883613697565b9150612fc982613cc9565b604082019050919050565b6000612fe1602a83613697565b9150612fec82613d18565b604082019050919050565b6000613004602983613697565b915061300f82613d67565b604082019050919050565b6000613027602083613697565b915061303282613db6565b602082019050919050565b600061304a602c83613697565b915061305582613ddf565b604082019050919050565b600061306d602083613697565b915061307882613e2e565b602082019050919050565b6000613090602983613697565b915061309b82613e57565b604082019050919050565b60006130b3602f83613697565b91506130be82613ea6565b604082019050919050565b60006130d6602183613697565b91506130e182613ef5565b604082019050919050565b60006130f9601983613697565b915061310482613f44565b602082019050919050565b600061311c600083613697565b915061312782613f6d565b600082019050919050565b600061313f603183613697565b915061314a82613f70565b604082019050919050565b6000613162602c83613697565b915061316d82613fbf565b604082019050919050565b6000613185602d83613697565b91506131908261400e565b604082019050919050565b60006131a8601f83613697565b91506131b38261405d565b602082019050919050565b6131c781613832565b82525050565b6131d681613832565b82525050565b60006131e88285612e45565b91506131f48284612e45565b91508190509392505050565b60006020820190506132156000830184612d57565b92915050565b60006080820190506132306000830187612d57565b61323d6020830186612d57565b61324a60408301856131cd565b818103606083015261325c8184612dd3565b905095945050505050565b600060208201905081810360008301526132818184612d66565b905092915050565b600060208201905061329e6000830184612dc4565b92915050565b600060208201905081810360008301526132be8184612e0c565b905092915050565b600060208201905081810360008301526132df81612e76565b9050919050565b600060208201905081810360008301526132ff81612e99565b9050919050565b6000602082019050818103600083015261331f81612ebc565b9050919050565b6000602082019050818103600083015261333f81612edf565b9050919050565b6000602082019050818103600083015261335f81612f02565b9050919050565b6000602082019050818103600083015261337f81612f25565b9050919050565b6000602082019050818103600083015261339f81612f48565b9050919050565b600060208201905081810360008301526133bf81612f6b565b9050919050565b600060208201905081810360008301526133df81612f8e565b9050919050565b600060208201905081810360008301526133ff81612fb1565b9050919050565b6000602082019050818103600083015261341f81612fd4565b9050919050565b6000602082019050818103600083015261343f81612ff7565b9050919050565b6000602082019050818103600083015261345f8161301a565b9050919050565b6000602082019050818103600083015261347f8161303d565b9050919050565b6000602082019050818103600083015261349f81613060565b9050919050565b600060208201905081810360008301526134bf81613083565b9050919050565b600060208201905081810360008301526134df816130a6565b9050919050565b600060208201905081810360008301526134ff816130c9565b9050919050565b6000602082019050818103600083015261351f816130ec565b9050919050565b6000602082019050818103600083015261353f8161310f565b9050919050565b6000602082019050818103600083015261355f81613132565b9050919050565b6000602082019050818103600083015261357f81613155565b9050919050565b6000602082019050818103600083015261359f81613178565b9050919050565b600060208201905081810360008301526135bf8161319b565b9050919050565b60006020820190506135db60008301846131cd565b92915050565b60006135eb6135fc565b90506135f782826138b0565b919050565b6000604051905090565b600067ffffffffffffffff82111561362157613620613a46565b5b61362a82613a89565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136be82613832565b91506136c983613832565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136fe576136fd61395b565b5b828201905092915050565b600061371482613832565b915061371f83613832565b92508261372f5761372e61398a565b5b828204905092915050565b600061374582613832565b915061375083613832565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137895761378861395b565b5b828202905092915050565b600061379f82613832565b91506137aa83613832565b9250828210156137bd576137bc61395b565b5b828203905092915050565b60006137d382613812565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561386957808201518184015260208101905061384e565b83811115613878576000848401525b50505050565b6000600282049050600182168061389657607f821691505b602082108114156138aa576138a96139b9565b5b50919050565b6138b982613a89565b810181811067ffffffffffffffff821117156138d8576138d7613a46565b5b80604052505050565b60006138ec82613832565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561391f5761391e61395b565b5b600182019050919050565b600061393582613832565b915061394083613832565b9250826139505761394f61398a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d204d616368696e657320616c6976650000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4f6e6c79203230204d616368696e6965732063616e20666974207468726f756760008201527f682074686520706f7274616c2100000000000000000000000000000000000000602082015250565b7f54686973206578636565647320746865206c696d6974206f66206a756d702100600082015250565b61408f816137c8565b811461409a57600080fd5b50565b6140a6816137da565b81146140b157600080fd5b50565b6140bd816137e6565b81146140c857600080fd5b50565b6140d481613832565b81146140df57600080fd5b5056fe68747470733a2f2f726573742d6170692d6d616368696e69652d6e66742e6865726f6b756170702e636f6d2f746f6b656e732fa264697066735822122013d84cf0d666cce89305511f2f84bae0fd90122c7b608e9933e22f5b82218b7c64736f6c63430008060033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80636352211e1161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd146106b0578063ca800144146106ed578063e985e9c514610716578063f2fde38b14610753576101e3565b806395d89b411461060a578063a22cb46514610635578063a257db8e1461065e578063b88d4fde14610687576101e3565b806389832beb116100d157806389832beb146105835780638da5cb5b1461059f5780638fd66f25146105ca57806391b7f5ed146105e1576101e3565b80636352211e146104c757806370a0823114610504578063715018a614610541578063805be57714610558576101e3565b806323b872dd1161017a5780634256dbe3116101495780634256dbe3146103fb57806342842e0e14610424578063438b63001461044d5780634f6ccce71461048a576101e3565b806323b872dd146103605780632f745c59146103895780633ccfd60b146103c65780633f0120e6146103d0576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806316c61ccc146102df57806318160ddd1461030a57806322f4596f14610335576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612cb8565b61077c565b60405161021c9190613289565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612c8b565b6107f6565b005b34801561025a57600080fd5b5061026361088f565b60405161027091906132a4565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612d12565b610921565b6040516102ad9190613200565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612c4b565b6109a6565b005b3480156102eb57600080fd5b506102f4610abe565b6040516103019190613289565b60405180910390f35b34801561031657600080fd5b5061031f610ad1565b60405161032c91906135c6565b60405180910390f35b34801561034157600080fd5b5061034a610ade565b60405161035791906135c6565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612b35565b610ae4565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612c4b565b610b44565b6040516103bd91906135c6565b60405180910390f35b6103ce610be9565b005b3480156103dc57600080fd5b506103e5610ca5565b6040516103f291906135c6565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d9190612d12565b610cab565b005b34801561043057600080fd5b5061044b60048036038101906104469190612b35565b610d31565b005b34801561045957600080fd5b50610474600480360381019061046f9190612ac8565b610d51565b6040516104819190613267565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190612d12565b610dff565b6040516104be91906135c6565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612d12565b610e70565b6040516104fb9190613200565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190612ac8565b610f22565b60405161053891906135c6565b60405180910390f35b34801561054d57600080fd5b50610556610fda565b005b34801561056457600080fd5b5061056d611062565b60405161057a91906135c6565b60405180910390f35b61059d60048036038101906105989190612d12565b611067565b005b3480156105ab57600080fd5b506105b4611249565b6040516105c19190613200565b60405180910390f35b3480156105d657600080fd5b506105df611273565b005b3480156105ed57600080fd5b5061060860048036038101906106039190612d12565b6112b6565b005b34801561061657600080fd5b5061061f61133c565b60405161062c91906132a4565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612c0b565b6113ce565b005b34801561066a57600080fd5b5061068560048036038101906106809190612d12565b61154f565b005b34801561069357600080fd5b506106ae60048036038101906106a99190612b88565b6115d5565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190612d12565b611637565b6040516106e491906132a4565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190612c4b565b6116de565b005b34801561072257600080fd5b5061073d60048036038101906107389190612af5565b6117fd565b60405161074a9190613289565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612ac8565b611891565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ef57506107ee826119a1565b5b9050919050565b6107fe611a83565b73ffffffffffffffffffffffffffffffffffffffff1661081c611249565b73ffffffffffffffffffffffffffffffffffffffff1614610872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086990613486565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b60606000805461089e9061387e565b80601f01602080910402602001604051908101604052809291908181526020018280546108ca9061387e565b80156109175780601f106108ec57610100808354040283529160200191610917565b820191906000526020600020905b8154815290600101906020018083116108fa57829003601f168201915b5050505050905090565b600061092c82611a8b565b61096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096290613466565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b182610e70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a19906134e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a41611a83565b73ffffffffffffffffffffffffffffffffffffffff161480610a705750610a6f81610a6a611a83565b6117fd565b5b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa6906133e6565b60405180910390fd5b610ab98383611af7565b505050565b600a60149054906101000a900460ff1681565b6000600880549050905090565b6122b881565b610af5610aef611a83565b82611bb0565b610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90613546565b60405180910390fd5b610b3f838383611c8e565b505050565b6000610b4f83610f22565b8210610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906132e6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610bf1611a83565b73ffffffffffffffffffffffffffffffffffffffff16610c0f611249565b73ffffffffffffffffffffffffffffffffffffffff1614610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613486565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ca357600080fd5b565b600d5481565b610cb3611a83565b73ffffffffffffffffffffffffffffffffffffffff16610cd1611249565b73ffffffffffffffffffffffffffffffffffffffff1614610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90613486565b60405180910390fd5b80600c8190555050565b610d4c838383604051806020016040528060008152506115d5565b505050565b60606000610d5e83610f22565b905060008167ffffffffffffffff811115610d7c57610d7b613a46565b5b604051908082528060200260200182016040528015610daa5781602001602082028036833780820191505090505b50905060005b82811015610df457610dc28582610b44565b828281518110610dd557610dd4613a17565b5b6020026020010181815250508080610dec906138e1565b915050610db0565b508092505050919050565b6000610e09610ad1565b8210610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190613566565b60405180910390fd5b60088281548110610e5e57610e5d613a17565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090613426565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90613406565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fe2611a83565b73ffffffffffffffffffffffffffffffffffffffff16611000611249565b73ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90613486565b60405180910390fd5b6110606000611eea565b565b601481565b6000611071610ad1565b9050600a60149054906101000a900460ff16156110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba906132c6565b60405180910390fd5b6014821115611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613586565b60405180910390fd5b600c546122b86111179190613794565b828261112391906136b3565b10611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90613346565b60405180910390fd5b81600b54611171919061373a565b3410156111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613506565b60405180910390fd5b600d548211156111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef906135a6565b60405180910390fd5b60005b8281101561122b5761121833828461121391906136b3565b611fb0565b8080611223906138e1565b9150506111fb565b5081600d600082825461123e9190613794565b925050819055505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061127d610ad1565b9050600161128a33610f22565b1061129457600080fd5b606161129e610ad1565b11156112a957600080fd5b6112b33382611fb0565b50565b6112be611a83565b73ffffffffffffffffffffffffffffffffffffffff166112dc611249565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613486565b60405180910390fd5b80600b8190555050565b60606001805461134b9061387e565b80601f01602080910402602001604051908101604052809291908181526020018280546113779061387e565b80156113c45780601f10611399576101008083540402835291602001916113c4565b820191906000526020600020905b8154815290600101906020018083116113a757829003601f168201915b5050505050905090565b6113d6611a83565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b906133a6565b60405180910390fd5b8060056000611451611a83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114fe611a83565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115439190613289565b60405180910390a35050565b611557611a83565b73ffffffffffffffffffffffffffffffffffffffff16611575611249565b73ffffffffffffffffffffffffffffffffffffffff16146115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c290613486565b60405180910390fd5b80600d8190555050565b6115e66115e0611a83565b83611bb0565b611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613546565b60405180910390fd5b61163184848484611fce565b50505050565b606061164282611a8b565b611681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611678906134c6565b60405180910390fd5b600061168b61202a565b905060008151116116ab57604051806020016040528060008152506116d6565b806116b58461204a565b6040516020016116c69291906131dc565b6040516020818303038152906040525b915050919050565b6116e6611a83565b73ffffffffffffffffffffffffffffffffffffffff16611704611249565b73ffffffffffffffffffffffffffffffffffffffff161461175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190613486565b60405180910390fd5b600c5481111561179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179690613526565b60405180910390fd5b60006117a9610ad1565b905060005b828110156117de576117cb8482846117c691906136b3565b611fb0565b80806117d6906138e1565b9150506117ae565b5081600c60008282546117f19190613794565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611899611a83565b73ffffffffffffffffffffffffffffffffffffffff166118b7611249565b73ffffffffffffffffffffffffffffffffffffffff161461190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490613486565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490613326565b60405180910390fd5b61198681611eea565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a6c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a7c5750611a7b826121ab565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b6a83610e70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bbb82611a8b565b611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf1906133c6565b60405180910390fd5b6000611c0583610e70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c7457508373ffffffffffffffffffffffffffffffffffffffff16611c5c84610921565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c855750611c8481856117fd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cae82610e70565b73ffffffffffffffffffffffffffffffffffffffff1614611d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfb906134a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90613386565b60405180910390fd5b611d7f838383612215565b611d8a600082611af7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dda9190613794565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e3191906136b3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fca828260405180602001604052806000815250612329565b5050565b611fd9848484611c8e565b611fe584848484612384565b612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90613306565b60405180910390fd5b50505050565b60606040518060600160405280603381526020016140e360339139905090565b60606000821415612092576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121a6565b600082905060005b600082146120c45780806120ad906138e1565b915050600a826120bd9190613709565b915061209a565b60008167ffffffffffffffff8111156120e0576120df613a46565b5b6040519080825280601f01601f1916602001820160405280156121125781602001600182028036833780820191505090505b5090505b6000851461219f5760018261212b9190613794565b9150600a8561213a919061392a565b603061214691906136b3565b60f81b81838151811061215c5761215b613a17565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121989190613709565b9450612116565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61222083838361199c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122635761225e8161251b565b6122a2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122a1576122a08382612564565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122e5576122e0816126d1565b612324565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123235761232282826127a2565b5b5b505050565b6123338383612821565b6123406000848484612384565b61237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690613306565b60405180910390fd5b505050565b60006123a58473ffffffffffffffffffffffffffffffffffffffff16611989565b1561250e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ce611a83565b8786866040518563ffffffff1660e01b81526004016123f0949392919061321b565b602060405180830381600087803b15801561240a57600080fd5b505af192505050801561243b57506040513d601f19601f820116820180604052508101906124389190612ce5565b60015b6124be573d806000811461246b576040519150601f19603f3d011682016040523d82523d6000602084013e612470565b606091505b506000815114156124b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ad90613306565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612513565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161257184610f22565b61257b9190613794565b9050600060076000848152602001908152602001600020549050818114612660576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126e59190613794565b905060006009600084815260200190815260200160002054905060006008838154811061271557612714613a17565b5b90600052602060002001549050806008838154811061273757612736613a17565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612786576127856139e8565b5b6001900381819060005260206000200160009055905550505050565b60006127ad83610f22565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288890613446565b60405180910390fd5b61289a81611a8b565b156128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d190613366565b60405180910390fd5b6128e660008383612215565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293691906136b3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612a026129fd84613606565b6135e1565b905082815260208101848484011115612a1e57612a1d613a7a565b5b612a2984828561383c565b509392505050565b600081359050612a4081614086565b92915050565b600081359050612a558161409d565b92915050565b600081359050612a6a816140b4565b92915050565b600081519050612a7f816140b4565b92915050565b600082601f830112612a9a57612a99613a75565b5b8135612aaa8482602086016129ef565b91505092915050565b600081359050612ac2816140cb565b92915050565b600060208284031215612ade57612add613a84565b5b6000612aec84828501612a31565b91505092915050565b60008060408385031215612b0c57612b0b613a84565b5b6000612b1a85828601612a31565b9250506020612b2b85828601612a31565b9150509250929050565b600080600060608486031215612b4e57612b4d613a84565b5b6000612b5c86828701612a31565b9350506020612b6d86828701612a31565b9250506040612b7e86828701612ab3565b9150509250925092565b60008060008060808587031215612ba257612ba1613a84565b5b6000612bb087828801612a31565b9450506020612bc187828801612a31565b9350506040612bd287828801612ab3565b925050606085013567ffffffffffffffff811115612bf357612bf2613a7f565b5b612bff87828801612a85565b91505092959194509250565b60008060408385031215612c2257612c21613a84565b5b6000612c3085828601612a31565b9250506020612c4185828601612a46565b9150509250929050565b60008060408385031215612c6257612c61613a84565b5b6000612c7085828601612a31565b9250506020612c8185828601612ab3565b9150509250929050565b600060208284031215612ca157612ca0613a84565b5b6000612caf84828501612a46565b91505092915050565b600060208284031215612cce57612ccd613a84565b5b6000612cdc84828501612a5b565b91505092915050565b600060208284031215612cfb57612cfa613a84565b5b6000612d0984828501612a70565b91505092915050565b600060208284031215612d2857612d27613a84565b5b6000612d3684828501612ab3565b91505092915050565b6000612d4b83836131be565b60208301905092915050565b612d60816137c8565b82525050565b6000612d7182613647565b612d7b8185613675565b9350612d8683613637565b8060005b83811015612db7578151612d9e8882612d3f565b9750612da983613668565b925050600181019050612d8a565b5085935050505092915050565b612dcd816137da565b82525050565b6000612dde82613652565b612de88185613686565b9350612df881856020860161384b565b612e0181613a89565b840191505092915050565b6000612e178261365d565b612e218185613697565b9350612e3181856020860161384b565b612e3a81613a89565b840191505092915050565b6000612e508261365d565b612e5a81856136a8565b9350612e6a81856020860161384b565b80840191505092915050565b6000612e83600b83613697565b9150612e8e82613a9a565b602082019050919050565b6000612ea6602b83613697565b9150612eb182613ac3565b604082019050919050565b6000612ec9603283613697565b9150612ed482613b12565b604082019050919050565b6000612eec602683613697565b9150612ef782613b61565b604082019050919050565b6000612f0f601e83613697565b9150612f1a82613bb0565b602082019050919050565b6000612f32601c83613697565b9150612f3d82613bd9565b602082019050919050565b6000612f55602483613697565b9150612f6082613c02565b604082019050919050565b6000612f78601983613697565b9150612f8382613c51565b602082019050919050565b6000612f9b602c83613697565b9150612fa682613c7a565b604082019050919050565b6000612fbe603883613697565b9150612fc982613cc9565b604082019050919050565b6000612fe1602a83613697565b9150612fec82613d18565b604082019050919050565b6000613004602983613697565b915061300f82613d67565b604082019050919050565b6000613027602083613697565b915061303282613db6565b602082019050919050565b600061304a602c83613697565b915061305582613ddf565b604082019050919050565b600061306d602083613697565b915061307882613e2e565b602082019050919050565b6000613090602983613697565b915061309b82613e57565b604082019050919050565b60006130b3602f83613697565b91506130be82613ea6565b604082019050919050565b60006130d6602183613697565b91506130e182613ef5565b604082019050919050565b60006130f9601983613697565b915061310482613f44565b602082019050919050565b600061311c600083613697565b915061312782613f6d565b600082019050919050565b600061313f603183613697565b915061314a82613f70565b604082019050919050565b6000613162602c83613697565b915061316d82613fbf565b604082019050919050565b6000613185602d83613697565b91506131908261400e565b604082019050919050565b60006131a8601f83613697565b91506131b38261405d565b602082019050919050565b6131c781613832565b82525050565b6131d681613832565b82525050565b60006131e88285612e45565b91506131f48284612e45565b91508190509392505050565b60006020820190506132156000830184612d57565b92915050565b60006080820190506132306000830187612d57565b61323d6020830186612d57565b61324a60408301856131cd565b818103606083015261325c8184612dd3565b905095945050505050565b600060208201905081810360008301526132818184612d66565b905092915050565b600060208201905061329e6000830184612dc4565b92915050565b600060208201905081810360008301526132be8184612e0c565b905092915050565b600060208201905081810360008301526132df81612e76565b9050919050565b600060208201905081810360008301526132ff81612e99565b9050919050565b6000602082019050818103600083015261331f81612ebc565b9050919050565b6000602082019050818103600083015261333f81612edf565b9050919050565b6000602082019050818103600083015261335f81612f02565b9050919050565b6000602082019050818103600083015261337f81612f25565b9050919050565b6000602082019050818103600083015261339f81612f48565b9050919050565b600060208201905081810360008301526133bf81612f6b565b9050919050565b600060208201905081810360008301526133df81612f8e565b9050919050565b600060208201905081810360008301526133ff81612fb1565b9050919050565b6000602082019050818103600083015261341f81612fd4565b9050919050565b6000602082019050818103600083015261343f81612ff7565b9050919050565b6000602082019050818103600083015261345f8161301a565b9050919050565b6000602082019050818103600083015261347f8161303d565b9050919050565b6000602082019050818103600083015261349f81613060565b9050919050565b600060208201905081810360008301526134bf81613083565b9050919050565b600060208201905081810360008301526134df816130a6565b9050919050565b600060208201905081810360008301526134ff816130c9565b9050919050565b6000602082019050818103600083015261351f816130ec565b9050919050565b6000602082019050818103600083015261353f8161310f565b9050919050565b6000602082019050818103600083015261355f81613132565b9050919050565b6000602082019050818103600083015261357f81613155565b9050919050565b6000602082019050818103600083015261359f81613178565b9050919050565b600060208201905081810360008301526135bf8161319b565b9050919050565b60006020820190506135db60008301846131cd565b92915050565b60006135eb6135fc565b90506135f782826138b0565b919050565b6000604051905090565b600067ffffffffffffffff82111561362157613620613a46565b5b61362a82613a89565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136be82613832565b91506136c983613832565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136fe576136fd61395b565b5b828201905092915050565b600061371482613832565b915061371f83613832565b92508261372f5761372e61398a565b5b828204905092915050565b600061374582613832565b915061375083613832565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137895761378861395b565b5b828202905092915050565b600061379f82613832565b91506137aa83613832565b9250828210156137bd576137bc61395b565b5b828203905092915050565b60006137d382613812565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561386957808201518184015260208101905061384e565b83811115613878576000848401525b50505050565b6000600282049050600182168061389657607f821691505b602082108114156138aa576138a96139b9565b5b50919050565b6138b982613a89565b810181811067ffffffffffffffff821117156138d8576138d7613a46565b5b80604052505050565b60006138ec82613832565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561391f5761391e61395b565b5b600182019050919050565b600061393582613832565b915061394083613832565b9250826139505761394f61398a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d204d616368696e657320616c6976650000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4f6e6c79203230204d616368696e6965732063616e20666974207468726f756760008201527f682074686520706f7274616c2100000000000000000000000000000000000000602082015250565b7f54686973206578636565647320746865206c696d6974206f66206a756d702100600082015250565b61408f816137c8565b811461409a57600080fd5b50565b6140a6816137da565b81146140b157600080fd5b50565b6140bd816137e6565b81146140c857600080fd5b50565b6140d481613832565b81146140df57600080fd5b5056fe68747470733a2f2f726573742d6170692d6d616368696e69652d6e66742e6865726f6b756170702e636f6d2f746f6b656e732fa264697066735822122013d84cf0d666cce89305511f2f84bae0fd90122c7b608e9933e22f5b82218b7c64736f6c63430008060033
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.