Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
2,000 PEBBLES
Holders
595
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PEBBLESLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Pebble
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Pebble is ERC721Enumerable, Ownable { using Strings for uint256; struct holder { address account; uint num; } mapping(address => uint) skullAndCrystalHolderClaimsAvailable; // whitelist for oily skulls and time crystals mapping(address => bool) oilysV2Claimers; // whitelist for oilyV2 holders /// @notice wallet addresses of the owners address constant LOGAN = 0x8b5B9497e096ee6FfD6041D1Db37a2ac2b41AB0d; address constant DD0SXX = 0xd491e93c6b05e3cdA3073482a5651BCFe3DC1cc7; address constant LCLMACHINE = 0x741BFDB9bea6Fa505fF9dFe9E8947B29863373fA; string _baseTokenURI; uint256 public constant PRICE = 0.1 ether; uint256 private reserve = 462; // total of the three collections + 12 for founders bool public active; address constant OILYSV2 = 0x49623cAEc21B1fF5D04d7Bf7B71531369a69bCe4; modifier onlyActive { require( active, "contract is not active" ); _; } constructor(string memory baseURI) ERC721("Pebbles", "PEBBLES") { setBaseURI(baseURI); // team gets the first 12 pebbles for (uint i = 1; i <= 10; i++) { _safeMint( LOGAN, i ); } for (uint i = 11; i <= 15; i++) { _safeMint( DD0SXX, i ); } for (uint i = 16; i <= 20; i++) { _safeMint( LCLMACHINE, i ); } reserve -= 20; } function printer (uint num) private { uint256 supply = totalSupply(); require( supply + num <= 2000 - reserve, "Exceeds maximum Pebbles supply" ); for(uint256 i = 1; i <= num; i++) { _safeMint( msg.sender, supply + i ); } } function setSkullAndCrystalHoldersClaimsAvailable (holder[] memory array) external onlyOwner { for (uint i; i < array.length; i++) { skullAndCrystalHolderClaimsAvailable[array[i].account] = array[i].num; } } /// @dev function for oily v2 holders to mint for free function mintForOilysV2Holders (uint256 num) external onlyActive { uint max = IERC721(OILYSV2).balanceOf(msg.sender); require( oilysV2Claimers[msg.sender] == false, 'already minted'); require( num <= max && num != 0, 'cannot mint more than you are eligible for or 0'); require( num <= reserve, 'not enough reserved pebbles left'); oilysV2Claimers[msg.sender] = true; reserve -= num; printer(num); } /// @dev for skull and crystal hodlers to mint reserve tokens for free + gas function mintForSkullAndCrystalHolders (uint256 num) external onlyActive { require( num <= skullAndCrystalHolderClaimsAvailable[msg.sender] && num != 0, 'cannot mint more than you are eligible for or 0'); require( num <= reserve, 'not enough reserved pebbles left'); skullAndCrystalHolderClaimsAvailable[msg.sender] = 0; // users can only call this function once reserve -= num; printer(num); } /// @dev this is the regular mint function, which is open to the public when the contract is active function mint(uint256 num) external payable onlyActive { uint256 supply = totalSupply(); require( num <= 20 && num != 0, "You can mint a maximum of 20 Pebbles" ); require( msg.value == PRICE * num, "Ether sent is not correct" ); printer(num); } /// @dev returns the tokens that _walletOwner owns function walletOfOwner(address _walletOwner) external view returns(uint256[] memory) { uint256 tokenCount = balanceOf(_walletOwner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_walletOwner, i); } return tokensId; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } /// @dev allows owner to update URI function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } /// @dev new token uri function function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory json = ".json"; string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), json)) : ""; } /// @dev Activates sale function toggleActivate(bool state) external onlyOwner { active = state; } /// @dev erases reserve allowing unclaimed reserved tokens to enter public sale function setReserve (uint num) external onlyOwner { reserve = num; } /// @dev allows owner to withdraw eth from the contract function withdrawAll() external onlyOwner { require(address(this).balance > 0); uint256 _each = address(this).balance / 3; (bool status1, ) = payable(LOGAN).call{value: _each}(""); (bool status2, ) = payable(DD0SXX).call{value: _each}(""); (bool status3, ) = payable(LCLMACHINE).call{value: _each}(""); require(status1 == true && status2 == true && status3 == true, 'withdraw failed'); } fallback() external payable { revert('You sent ether to this contract without specifying a function'); } }
// 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(to).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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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":[{"internalType":"string","name":"baseURI","type":"string"}],"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintForOilysV2Holders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintForSkullAndCrystalHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"internalType":"struct Pebble.holder[]","name":"array","type":"tuple[]"}],"name":"setSkullAndCrystalHoldersClaimsAvailable","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":"bool","name":"state","type":"bool"}],"name":"toggleActivate","outputs":[],"stateMutability":"nonpayable","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":"_walletOwner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526101ce600e553480156200001757600080fd5b50604051620062da380380620062da83398181016040528101906200003d919062000f74565b6040518060400160405280600781526020017f506562626c6573000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f504542424c4553000000000000000000000000000000000000000000000000008152508160009080519060200190620000c192919062000e0f565b508060019080519060200190620000da92919062000e0f565b505050620000fd620000f16200021860201b60201c565b6200022060201b60201c565b6200010e81620002e660201b60201c565b6000600190505b600a81116200015a5762000144738b5b9497e096ee6ffd6041d1db37a2ac2b41ab0d826200039160201b60201c565b808062000151906200140d565b91505062000115565b506000600b90505b600f8111620001a7576200019173d491e93c6b05e3cda3073482a5651bcfe3dc1cc7826200039160201b60201c565b80806200019e906200140d565b91505062000162565b506000601090505b60148111620001f457620001de73741bfdb9bea6fa505ff9dfe9e8947b29863373fa826200039160201b60201c565b8080620001eb906200140d565b915050620001af565b506014600e60008282546200020a9190620012c6565b92505081905550506200162c565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002f66200021860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031c620003b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000375576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036c90620011bb565b60405180910390fd5b80600d90805190602001906200038d92919062000e0f565b5050565b620003b3828260405180602001604052806000815250620003e160201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620003f383836200044f60201b60201c565b6200040860008484846200063560201b60201c565b6200044a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004419062001133565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b99062001199565b60405180910390fd5b620004d381620007ef60201b60201c565b1562000516576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050d9062001155565b60405180910390fd5b6200052a600083836200085b60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200057c919062001269565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006638473ffffffffffffffffffffffffffffffffffffffff16620009a260201b62001ece1760201c565b15620007e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006956200021860201b60201c565b8786866040518563ffffffff1660e01b8152600401620006b99493929190620010df565b602060405180830381600087803b158015620006d457600080fd5b505af19250505080156200070857506040513d601f19601f8201168201806040525081019062000705919062000f48565b60015b62000791573d80600081146200073b576040519150601f19603f3d011682016040523d82523d6000602084013e62000740565b606091505b5060008151141562000789576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007809062001133565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620007e7565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000873838383620009b560201b62001ee11760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620008c057620008ba81620009ba60201b60201c565b62000908565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009075762000906838262000a0360201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000955576200094f8162000b8060201b60201c565b6200099d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200099c576200099b828262000cc860201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000a1d8462000d5460201b62000eb71760201c565b62000a299190620012c6565b905060006007600084815260200190815260200160002054905081811462000b0f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000b969190620012c6565b905060006009600084815260200190815260200160002054905060006008838154811062000bed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000c36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000cac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000ce08362000d5460201b62000eb71760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000dc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000dbf9062001177565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000e1d90620013a1565b90600052602060002090601f01602090048101928262000e41576000855562000e8d565b82601f1062000e5c57805160ff191683800117855562000e8d565b8280016001018555821562000e8d579182015b8281111562000e8c57825182559160200191906001019062000e6f565b5b50905062000e9c919062000ea0565b5090565b5b8082111562000ebb57600081600090555060010162000ea1565b5090565b600062000ed662000ed08462001206565b620011dd565b90508281526020810184848401111562000eef57600080fd5b62000efc8482856200136b565b509392505050565b60008151905062000f158162001612565b92915050565b600082601f83011262000f2d57600080fd5b815162000f3f84826020860162000ebf565b91505092915050565b60006020828403121562000f5b57600080fd5b600062000f6b8482850162000f04565b91505092915050565b60006020828403121562000f8757600080fd5b600082015167ffffffffffffffff81111562000fa257600080fd5b62000fb08482850162000f1b565b91505092915050565b62000fc48162001301565b82525050565b600062000fd7826200123c565b62000fe3818562001247565b935062000ff58185602086016200136b565b6200100081620014e8565b840191505092915050565b60006200101a60328362001258565b91506200102782620014f9565b604082019050919050565b600062001041601c8362001258565b91506200104e8262001548565b602082019050919050565b600062001068602a8362001258565b9150620010758262001571565b604082019050919050565b60006200108f60208362001258565b91506200109c82620015c0565b602082019050919050565b6000620010b660208362001258565b9150620010c382620015e9565b602082019050919050565b620010d98162001361565b82525050565b6000608082019050620010f6600083018762000fb9565b62001105602083018662000fb9565b620011146040830185620010ce565b818103606083015262001128818462000fca565b905095945050505050565b600060208201905081810360008301526200114e816200100b565b9050919050565b60006020820190508181036000830152620011708162001032565b9050919050565b60006020820190508181036000830152620011928162001059565b9050919050565b60006020820190508181036000830152620011b48162001080565b9050919050565b60006020820190508181036000830152620011d681620010a7565b9050919050565b6000620011e9620011fc565b9050620011f78282620013d7565b919050565b6000604051905090565b600067ffffffffffffffff821115620012245762001223620014b9565b5b6200122f82620014e8565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620012768262001361565b9150620012838362001361565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620012bb57620012ba6200145b565b5b828201905092915050565b6000620012d38262001361565b9150620012e08362001361565b925082821015620012f657620012f56200145b565b5b828203905092915050565b60006200130e8262001341565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200138b5780820151818401526020810190506200136e565b838111156200139b576000848401525b50505050565b60006002820490506001821680620013ba57607f821691505b60208210811415620013d157620013d06200148a565b5b50919050565b620013e282620014e8565b810181811067ffffffffffffffff82111715620014045762001403620014b9565b5b80604052505050565b60006200141a8262001361565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562001450576200144f6200145b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200161d8162001315565b81146200162957600080fd5b50565b614c9e806200163c6000396000f3fe6080604052600436106101d15760003560e01c8063715018a6116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461069e578063df2dae19146106db578063e985e9c514610704578063f2fde38b14610741576101d2565b806395d89b4114610605578063a0712d6814610630578063a22cb4651461064c578063b88d4fde14610675576101d2565b8063853828b6116100d1578063853828b61461056f5780638d859f3e146105865780638da5cb5b146105b1578063924869b3146105dc576101d2565b8063715018a6146105065780637967b3c31461051d5780637c99e26714610546576101d2565b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce71461042657806355f804b3146104635780636352211e1461048c57806370a08231146104c9576101d2565b80632f745c591461035a5780634256dbe31461039757806342842e0e146103c0578063438b6300146103e9576101d2565b8063081812fc116101ab578063081812fc146102a0578063095ea7b3146102dd57806318160ddd1461030657806323b872dd14610331576101d2565b806301ffc9a71461020d57806302fb0c5e1461024a57806306fdde0314610275576101d2565b5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161020490613fa6565b60405180910390fd5b34801561021957600080fd5b50610234600480360381019061022f91906135ec565b61076a565b6040516102419190613cc9565b60405180910390f35b34801561025657600080fd5b5061025f6107e4565b60405161026c9190613cc9565b60405180910390f35b34801561028157600080fd5b5061028a6107f7565b6040516102979190613ce4565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c2919061367f565b610889565b6040516102d49190613c40565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190613546565b61090e565b005b34801561031257600080fd5b5061031b610a26565b6040516103289190614066565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190613440565b610a33565b005b34801561036657600080fd5b50610381600480360381019061037c9190613546565b610a93565b60405161038e9190614066565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b9919061367f565b610b38565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613440565b610bbe565b005b3480156103f557600080fd5b50610410600480360381019061040b91906133db565b610bde565b60405161041d9190613ca7565b60405180910390f35b34801561043257600080fd5b5061044d6004803603810190610448919061367f565b610cd8565b60405161045a9190614066565b60405180910390f35b34801561046f57600080fd5b5061048a6004803603810190610485919061363e565b610d6f565b005b34801561049857600080fd5b506104b360048036038101906104ae919061367f565b610e05565b6040516104c09190613c40565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906133db565b610eb7565b6040516104fd9190614066565b60405180910390f35b34801561051257600080fd5b5061051b610f6f565b005b34801561052957600080fd5b50610544600480360381019061053f919061367f565b610ff7565b005b34801561055257600080fd5b5061056d6004803603810190610568919061367f565b61128d565b005b34801561057b57600080fd5b5061058461141a565b005b34801561059257600080fd5b5061059b6116a1565b6040516105a89190614066565b60405180910390f35b3480156105bd57600080fd5b506105c66116ad565b6040516105d39190613c40565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613582565b6116d7565b005b34801561061157600080fd5b5061061a611842565b6040516106279190613ce4565b60405180910390f35b61064a6004803603810190610645919061367f565b6118d4565b005b34801561065857600080fd5b50610673600480360381019061066e919061350a565b6119e2565b005b34801561068157600080fd5b5061069c6004803603810190610697919061348f565b611b63565b005b3480156106aa57600080fd5b506106c560048036038101906106c0919061367f565b611bc5565b6040516106d29190613ce4565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd91906135c3565b611ca9565b005b34801561071057600080fd5b5061072b60048036038101906107269190613404565b611d42565b6040516107389190613cc9565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906133db565b611dd6565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107dd57506107dc82611ee6565b5b9050919050565b600f60009054906101000a900460ff1681565b60606000805461080690614386565b80601f016020809104026020016040519081016040528092919081815260200182805461083290614386565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600061089482611fc8565b6108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90613ec6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091982610e05565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098190613f66565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a9612034565b73ffffffffffffffffffffffffffffffffffffffff1614806109d857506109d7816109d2612034565b611d42565b5b610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90613e26565b60405180910390fd5b610a21838361203c565b505050565b6000600880549050905090565b610a44610a3e612034565b826120f5565b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90613fc6565b60405180910390fd5b610a8e8383836121d3565b505050565b6000610a9e83610eb7565b8210610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690613d06565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b40612034565b73ffffffffffffffffffffffffffffffffffffffff16610b5e6116ad565b73ffffffffffffffffffffffffffffffffffffffff1614610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90613ee6565b60405180910390fd5b80600e8190555050565b610bd983838360405180602001604052806000815250611b63565b505050565b60606000610beb83610eb7565b905060008167ffffffffffffffff811115610c2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610c5d5781602001602082028036833780820191505090505b50905060005b82811015610ccd57610c758582610a93565b828281518110610cae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610cc5906143e9565b915050610c63565b508092505050919050565b6000610ce2610a26565b8210610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90613fe6565b60405180910390fd5b60088281548110610d5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610d77612034565b73ffffffffffffffffffffffffffffffffffffffff16610d956116ad565b73ffffffffffffffffffffffffffffffffffffffff1614610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290613ee6565b60405180910390fd5b80600d9080519060200190610e01929190613108565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590613e66565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90613e46565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f77612034565b73ffffffffffffffffffffffffffffffffffffffff16610f956116ad565b73ffffffffffffffffffffffffffffffffffffffff1614610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290613ee6565b60405180910390fd5b610ff5600061242f565b565b600f60009054906101000a900460ff16611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613d86565b60405180910390fd5b60007349623caec21b1ff5d04d7bf7b71531369a69bce473ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110959190613c40565b60206040518083038186803b1580156110ad57600080fd5b505afa1580156110c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e591906136a8565b905060001515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190614046565b60405180910390fd5b80821115801561118b575060008214155b6111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190613da6565b60405180910390fd5b600e5482111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690614006565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555081600e6000828254611279919061429c565b92505081905550611289826124f5565b5050565b600f60009054906101000a900460ff166112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390613d86565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115801561132c575060008114155b61136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613da6565b60405180910390fd5b600e548111156113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a790614006565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e6000828254611407919061429c565b92505081905550611417816124f5565b50565b611422612034565b73ffffffffffffffffffffffffffffffffffffffff166114406116ad565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90613ee6565b60405180910390fd5b600047116114a357600080fd5b60006003476114b29190614211565b90506000738b5b9497e096ee6ffd6041d1db37a2ac2b41ab0d73ffffffffffffffffffffffffffffffffffffffff16826040516114ee90613c2b565b60006040518083038185875af1925050503d806000811461152b576040519150601f19603f3d011682016040523d82523d6000602084013e611530565b606091505b50509050600073d491e93c6b05e3cda3073482a5651bcfe3dc1cc773ffffffffffffffffffffffffffffffffffffffff168360405161156e90613c2b565b60006040518083038185875af1925050503d80600081146115ab576040519150601f19603f3d011682016040523d82523d6000602084013e6115b0565b606091505b50509050600073741bfdb9bea6fa505ff9dfe9e8947b29863373fa73ffffffffffffffffffffffffffffffffffffffff16846040516115ee90613c2b565b60006040518083038185875af1925050503d806000811461162b576040519150601f19603f3d011682016040523d82523d6000602084013e611630565b606091505b505090506001151583151514801561164c575060011515821515145b801561165c575060011515811515145b61169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614026565b60405180910390fd5b50505050565b67016345785d8a000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116df612034565b73ffffffffffffffffffffffffffffffffffffffff166116fd6116ad565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613ee6565b60405180910390fd5b60005b815181101561183e57818181518110611798577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160200151600b60008484815181106117e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611836906143e9565b915050611756565b5050565b60606001805461185190614386565b80601f016020809104026020016040519081016040528092919081815260200182805461187d90614386565b80156118ca5780601f1061189f576101008083540402835291602001916118ca565b820191906000526020600020905b8154815290600101906020018083116118ad57829003601f168201915b5050505050905090565b600f60009054906101000a900460ff16611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90613d86565b60405180910390fd5b600061192d610a26565b905060148211158015611941575060008214155b611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613f26565b60405180910390fd5b8167016345785d8a00006119949190614242565b34146119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc90613f86565b60405180910390fd5b6119de826124f5565b5050565b6119ea612034565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90613de6565b60405180910390fd5b8060056000611a65612034565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b12612034565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b579190613cc9565b60405180910390a35050565b611b74611b6e612034565b836120f5565b611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90613fc6565b60405180910390fd5b611bbf84848484612599565b50505050565b6060611bd082611fc8565b611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0690613f46565b60405180910390fd5b60006040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525090506000611c536125f5565b90506000815111611c735760405180602001604052806000815250611ca0565b80611c7d85612687565b83604051602001611c9093929190613bfa565b6040516020818303038152906040525b92505050919050565b611cb1612034565b73ffffffffffffffffffffffffffffffffffffffff16611ccf6116ad565b73ffffffffffffffffffffffffffffffffffffffff1614611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90613ee6565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dde612034565b73ffffffffffffffffffffffffffffffffffffffff16611dfc6116ad565b73ffffffffffffffffffffffffffffffffffffffff1614611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990613ee6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613d46565b60405180910390fd5b611ecb8161242f565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fb157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611fc15750611fc082612834565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120af83610e05565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061210082611fc8565b61213f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213690613e06565b60405180910390fd5b600061214a83610e05565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121b957508373ffffffffffffffffffffffffffffffffffffffff166121a184610889565b73ffffffffffffffffffffffffffffffffffffffff16145b806121ca57506121c98185611d42565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121f382610e05565b73ffffffffffffffffffffffffffffffffffffffff1614612249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224090613f06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b090613dc6565b60405180910390fd5b6122c483838361289e565b6122cf60008261203c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461231f919061429c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461237691906141bb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006124ff610a26565b9050600e546107d0612511919061429c565b828261251d91906141bb565b111561255e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255590613e86565b60405180910390fd5b6000600190505b8281116125945761258133828461257c91906141bb565b6129b2565b808061258c906143e9565b915050612565565b505050565b6125a48484846121d3565b6125b0848484846129d0565b6125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e690613d26565b60405180910390fd5b50505050565b6060600d805461260490614386565b80601f016020809104026020016040519081016040528092919081815260200182805461263090614386565b801561267d5780601f106126525761010080835404028352916020019161267d565b820191906000526020600020905b81548152906001019060200180831161266057829003601f168201915b5050505050905090565b606060008214156126cf576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061282f565b600082905060005b600082146127015780806126ea906143e9565b915050600a826126fa9190614211565b91506126d7565b60008167ffffffffffffffff811115612743577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127755781602001600182028036833780820191505090505b5090505b600085146128285760018261278e919061429c565b9150600a8561279d9190614432565b60306127a991906141bb565b60f81b8183815181106127e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128219190614211565b9450612779565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128a9838383611ee1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128ec576128e781612b67565b61292b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461292a576129298382612bb0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561296e5761296981612d1d565b6129ad565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129ac576129ab8282612e60565b5b5b505050565b6129cc828260405180602001604052806000815250612edf565b5050565b60006129f18473ffffffffffffffffffffffffffffffffffffffff16611ece565b15612b5a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a1a612034565b8786866040518563ffffffff1660e01b8152600401612a3c9493929190613c5b565b602060405180830381600087803b158015612a5657600080fd5b505af1925050508015612a8757506040513d601f19601f82011682018060405250810190612a849190613615565b60015b612b0a573d8060008114612ab7576040519150601f19603f3d011682016040523d82523d6000602084013e612abc565b606091505b50600081511415612b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af990613d26565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b5f565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bbd84610eb7565b612bc7919061429c565b9050600060076000848152602001908152602001600020549050818114612cac576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d31919061429c565b9050600060096000848152602001908152602001600020549050600060088381548110612d87577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612dcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612e6b83610eb7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b612ee98383612f3a565b612ef660008484846129d0565b612f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2c90613d26565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa190613ea6565b60405180910390fd5b612fb381611fc8565b15612ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fea90613d66565b60405180910390fd5b612fff6000838361289e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304f91906141bb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461311490614386565b90600052602060002090601f016020900481019282613136576000855561317d565b82601f1061314f57805160ff191683800117855561317d565b8280016001018555821561317d579182015b8281111561317c578251825591602001919060010190613161565b5b50905061318a919061318e565b5090565b5b808211156131a757600081600090555060010161318f565b5090565b60006131be6131b9846140a6565b614081565b905080838252602082019050828560408602820111156131dd57600080fd5b60005b8581101561320d57816131f38882613365565b8452602084019350604083019250506001810190506131e0565b5050509392505050565b600061322a613225846140d2565b614081565b90508281526020810184848401111561324257600080fd5b61324d848285614344565b509392505050565b600061326861326384614103565b614081565b90508281526020810184848401111561328057600080fd5b61328b848285614344565b509392505050565b6000813590506132a281614c0c565b92915050565b600082601f8301126132b957600080fd5b81356132c98482602086016131ab565b91505092915050565b6000813590506132e181614c23565b92915050565b6000813590506132f681614c3a565b92915050565b60008151905061330b81614c3a565b92915050565b600082601f83011261332257600080fd5b8135613332848260208601613217565b91505092915050565b600082601f83011261334c57600080fd5b813561335c848260208601613255565b91505092915050565b60006040828403121561337757600080fd5b6133816040614081565b9050600061339184828501613293565b60008301525060206133a5848285016133b1565b60208301525092915050565b6000813590506133c081614c51565b92915050565b6000815190506133d581614c51565b92915050565b6000602082840312156133ed57600080fd5b60006133fb84828501613293565b91505092915050565b6000806040838503121561341757600080fd5b600061342585828601613293565b925050602061343685828601613293565b9150509250929050565b60008060006060848603121561345557600080fd5b600061346386828701613293565b935050602061347486828701613293565b9250506040613485868287016133b1565b9150509250925092565b600080600080608085870312156134a557600080fd5b60006134b387828801613293565b94505060206134c487828801613293565b93505060406134d5878288016133b1565b925050606085013567ffffffffffffffff8111156134f257600080fd5b6134fe87828801613311565b91505092959194509250565b6000806040838503121561351d57600080fd5b600061352b85828601613293565b925050602061353c858286016132d2565b9150509250929050565b6000806040838503121561355957600080fd5b600061356785828601613293565b9250506020613578858286016133b1565b9150509250929050565b60006020828403121561359457600080fd5b600082013567ffffffffffffffff8111156135ae57600080fd5b6135ba848285016132a8565b91505092915050565b6000602082840312156135d557600080fd5b60006135e3848285016132d2565b91505092915050565b6000602082840312156135fe57600080fd5b600061360c848285016132e7565b91505092915050565b60006020828403121561362757600080fd5b6000613635848285016132fc565b91505092915050565b60006020828403121561365057600080fd5b600082013567ffffffffffffffff81111561366a57600080fd5b6136768482850161333b565b91505092915050565b60006020828403121561369157600080fd5b600061369f848285016133b1565b91505092915050565b6000602082840312156136ba57600080fd5b60006136c8848285016133c6565b91505092915050565b60006136dd8383613bdc565b60208301905092915050565b6136f2816142d0565b82525050565b600061370382614144565b61370d8185614172565b935061371883614134565b8060005b8381101561374957815161373088826136d1565b975061373b83614165565b92505060018101905061371c565b5085935050505092915050565b61375f816142e2565b82525050565b60006137708261414f565b61377a8185614183565b935061378a818560208601614353565b6137938161451f565b840191505092915050565b60006137a98261415a565b6137b3818561419f565b93506137c3818560208601614353565b6137cc8161451f565b840191505092915050565b60006137e28261415a565b6137ec81856141b0565b93506137fc818560208601614353565b80840191505092915050565b6000613815602b8361419f565b915061382082614530565b604082019050919050565b600061383860328361419f565b91506138438261457f565b604082019050919050565b600061385b60268361419f565b9150613866826145ce565b604082019050919050565b600061387e601c8361419f565b91506138898261461d565b602082019050919050565b60006138a160168361419f565b91506138ac82614646565b602082019050919050565b60006138c4602f8361419f565b91506138cf8261466f565b604082019050919050565b60006138e760248361419f565b91506138f2826146be565b604082019050919050565b600061390a60198361419f565b91506139158261470d565b602082019050919050565b600061392d602c8361419f565b915061393882614736565b604082019050919050565b600061395060388361419f565b915061395b82614785565b604082019050919050565b6000613973602a8361419f565b915061397e826147d4565b604082019050919050565b600061399660298361419f565b91506139a182614823565b604082019050919050565b60006139b9601e8361419f565b91506139c482614872565b602082019050919050565b60006139dc60208361419f565b91506139e78261489b565b602082019050919050565b60006139ff602c8361419f565b9150613a0a826148c4565b604082019050919050565b6000613a2260208361419f565b9150613a2d82614913565b602082019050919050565b6000613a4560298361419f565b9150613a508261493c565b604082019050919050565b6000613a6860248361419f565b9150613a738261498b565b604082019050919050565b6000613a8b602f8361419f565b9150613a96826149da565b604082019050919050565b6000613aae60218361419f565b9150613ab982614a29565b604082019050919050565b6000613ad160198361419f565b9150613adc82614a78565b602082019050919050565b6000613af4603d8361419f565b9150613aff82614aa1565b604082019050919050565b6000613b17600083614194565b9150613b2282614af0565b600082019050919050565b6000613b3a60318361419f565b9150613b4582614af3565b604082019050919050565b6000613b5d602c8361419f565b9150613b6882614b42565b604082019050919050565b6000613b8060208361419f565b9150613b8b82614b91565b602082019050919050565b6000613ba3600f8361419f565b9150613bae82614bba565b602082019050919050565b6000613bc6600e8361419f565b9150613bd182614be3565b602082019050919050565b613be58161433a565b82525050565b613bf48161433a565b82525050565b6000613c0682866137d7565b9150613c1282856137d7565b9150613c1e82846137d7565b9150819050949350505050565b6000613c3682613b0a565b9150819050919050565b6000602082019050613c5560008301846136e9565b92915050565b6000608082019050613c7060008301876136e9565b613c7d60208301866136e9565b613c8a6040830185613beb565b8181036060830152613c9c8184613765565b905095945050505050565b60006020820190508181036000830152613cc181846136f8565b905092915050565b6000602082019050613cde6000830184613756565b92915050565b60006020820190508181036000830152613cfe818461379e565b905092915050565b60006020820190508181036000830152613d1f81613808565b9050919050565b60006020820190508181036000830152613d3f8161382b565b9050919050565b60006020820190508181036000830152613d5f8161384e565b9050919050565b60006020820190508181036000830152613d7f81613871565b9050919050565b60006020820190508181036000830152613d9f81613894565b9050919050565b60006020820190508181036000830152613dbf816138b7565b9050919050565b60006020820190508181036000830152613ddf816138da565b9050919050565b60006020820190508181036000830152613dff816138fd565b9050919050565b60006020820190508181036000830152613e1f81613920565b9050919050565b60006020820190508181036000830152613e3f81613943565b9050919050565b60006020820190508181036000830152613e5f81613966565b9050919050565b60006020820190508181036000830152613e7f81613989565b9050919050565b60006020820190508181036000830152613e9f816139ac565b9050919050565b60006020820190508181036000830152613ebf816139cf565b9050919050565b60006020820190508181036000830152613edf816139f2565b9050919050565b60006020820190508181036000830152613eff81613a15565b9050919050565b60006020820190508181036000830152613f1f81613a38565b9050919050565b60006020820190508181036000830152613f3f81613a5b565b9050919050565b60006020820190508181036000830152613f5f81613a7e565b9050919050565b60006020820190508181036000830152613f7f81613aa1565b9050919050565b60006020820190508181036000830152613f9f81613ac4565b9050919050565b60006020820190508181036000830152613fbf81613ae7565b9050919050565b60006020820190508181036000830152613fdf81613b2d565b9050919050565b60006020820190508181036000830152613fff81613b50565b9050919050565b6000602082019050818103600083015261401f81613b73565b9050919050565b6000602082019050818103600083015261403f81613b96565b9050919050565b6000602082019050818103600083015261405f81613bb9565b9050919050565b600060208201905061407b6000830184613beb565b92915050565b600061408b61409c565b905061409782826143b8565b919050565b6000604051905090565b600067ffffffffffffffff8211156140c1576140c06144f0565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140ed576140ec6144f0565b5b6140f68261451f565b9050602081019050919050565b600067ffffffffffffffff82111561411e5761411d6144f0565b5b6141278261451f565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141c68261433a565b91506141d18361433a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561420657614205614463565b5b828201905092915050565b600061421c8261433a565b91506142278361433a565b92508261423757614236614492565b5b828204905092915050565b600061424d8261433a565b91506142588361433a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561429157614290614463565b5b828202905092915050565b60006142a78261433a565b91506142b28361433a565b9250828210156142c5576142c4614463565b5b828203905092915050565b60006142db8261431a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614371578082015181840152602081019050614356565b83811115614380576000848401525b50505050565b6000600282049050600182168061439e57607f821691505b602082108114156143b2576143b16144c1565b5b50919050565b6143c18261451f565b810181811067ffffffffffffffff821117156143e0576143df6144f0565b5b80604052505050565b60006143f48261433a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561442757614426614463565b5b600182019050919050565b600061443d8261433a565b91506144488361433a565b92508261445857614457614492565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f636f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b7f63616e6e6f74206d696e74206d6f7265207468616e20796f752061726520656c60008201527f696769626c6520666f72206f7220300000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20506562626c657320737570706c790000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206d696e742061206d6178696d756d206f662032302050656260008201527f626c657300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f596f752073656e7420657468657220746f207468697320636f6e74726163742060008201527f776974686f75742073706563696679696e6720612066756e6374696f6e000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f75676820726573657276656420706562626c6573206c656674600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b614c15816142d0565b8114614c2057600080fd5b50565b614c2c816142e2565b8114614c3757600080fd5b50565b614c43816142ee565b8114614c4e57600080fd5b50565b614c5a8161433a565b8114614c6557600080fd5b5056fea26469706673582212203b1b5cfee07ae242184b6fc5904d3fddc4002e4b7e6fcc33901313d46aa5ad3964736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5772737553707476797033714567374c796936716756467173584e4777567735446439744b785042444d39782f00000000000000000000
Deployed Bytecode
0x6080604052600436106101d15760003560e01c8063715018a6116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461069e578063df2dae19146106db578063e985e9c514610704578063f2fde38b14610741576101d2565b806395d89b4114610605578063a0712d6814610630578063a22cb4651461064c578063b88d4fde14610675576101d2565b8063853828b6116100d1578063853828b61461056f5780638d859f3e146105865780638da5cb5b146105b1578063924869b3146105dc576101d2565b8063715018a6146105065780637967b3c31461051d5780637c99e26714610546576101d2565b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce71461042657806355f804b3146104635780636352211e1461048c57806370a08231146104c9576101d2565b80632f745c591461035a5780634256dbe31461039757806342842e0e146103c0578063438b6300146103e9576101d2565b8063081812fc116101ab578063081812fc146102a0578063095ea7b3146102dd57806318160ddd1461030657806323b872dd14610331576101d2565b806301ffc9a71461020d57806302fb0c5e1461024a57806306fdde0314610275576101d2565b5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161020490613fa6565b60405180910390fd5b34801561021957600080fd5b50610234600480360381019061022f91906135ec565b61076a565b6040516102419190613cc9565b60405180910390f35b34801561025657600080fd5b5061025f6107e4565b60405161026c9190613cc9565b60405180910390f35b34801561028157600080fd5b5061028a6107f7565b6040516102979190613ce4565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c2919061367f565b610889565b6040516102d49190613c40565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190613546565b61090e565b005b34801561031257600080fd5b5061031b610a26565b6040516103289190614066565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190613440565b610a33565b005b34801561036657600080fd5b50610381600480360381019061037c9190613546565b610a93565b60405161038e9190614066565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b9919061367f565b610b38565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613440565b610bbe565b005b3480156103f557600080fd5b50610410600480360381019061040b91906133db565b610bde565b60405161041d9190613ca7565b60405180910390f35b34801561043257600080fd5b5061044d6004803603810190610448919061367f565b610cd8565b60405161045a9190614066565b60405180910390f35b34801561046f57600080fd5b5061048a6004803603810190610485919061363e565b610d6f565b005b34801561049857600080fd5b506104b360048036038101906104ae919061367f565b610e05565b6040516104c09190613c40565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906133db565b610eb7565b6040516104fd9190614066565b60405180910390f35b34801561051257600080fd5b5061051b610f6f565b005b34801561052957600080fd5b50610544600480360381019061053f919061367f565b610ff7565b005b34801561055257600080fd5b5061056d6004803603810190610568919061367f565b61128d565b005b34801561057b57600080fd5b5061058461141a565b005b34801561059257600080fd5b5061059b6116a1565b6040516105a89190614066565b60405180910390f35b3480156105bd57600080fd5b506105c66116ad565b6040516105d39190613c40565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613582565b6116d7565b005b34801561061157600080fd5b5061061a611842565b6040516106279190613ce4565b60405180910390f35b61064a6004803603810190610645919061367f565b6118d4565b005b34801561065857600080fd5b50610673600480360381019061066e919061350a565b6119e2565b005b34801561068157600080fd5b5061069c6004803603810190610697919061348f565b611b63565b005b3480156106aa57600080fd5b506106c560048036038101906106c0919061367f565b611bc5565b6040516106d29190613ce4565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd91906135c3565b611ca9565b005b34801561071057600080fd5b5061072b60048036038101906107269190613404565b611d42565b6040516107389190613cc9565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906133db565b611dd6565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107dd57506107dc82611ee6565b5b9050919050565b600f60009054906101000a900460ff1681565b60606000805461080690614386565b80601f016020809104026020016040519081016040528092919081815260200182805461083290614386565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600061089482611fc8565b6108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90613ec6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091982610e05565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098190613f66565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a9612034565b73ffffffffffffffffffffffffffffffffffffffff1614806109d857506109d7816109d2612034565b611d42565b5b610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90613e26565b60405180910390fd5b610a21838361203c565b505050565b6000600880549050905090565b610a44610a3e612034565b826120f5565b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90613fc6565b60405180910390fd5b610a8e8383836121d3565b505050565b6000610a9e83610eb7565b8210610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690613d06565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b40612034565b73ffffffffffffffffffffffffffffffffffffffff16610b5e6116ad565b73ffffffffffffffffffffffffffffffffffffffff1614610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90613ee6565b60405180910390fd5b80600e8190555050565b610bd983838360405180602001604052806000815250611b63565b505050565b60606000610beb83610eb7565b905060008167ffffffffffffffff811115610c2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610c5d5781602001602082028036833780820191505090505b50905060005b82811015610ccd57610c758582610a93565b828281518110610cae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610cc5906143e9565b915050610c63565b508092505050919050565b6000610ce2610a26565b8210610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90613fe6565b60405180910390fd5b60088281548110610d5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610d77612034565b73ffffffffffffffffffffffffffffffffffffffff16610d956116ad565b73ffffffffffffffffffffffffffffffffffffffff1614610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290613ee6565b60405180910390fd5b80600d9080519060200190610e01929190613108565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590613e66565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90613e46565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f77612034565b73ffffffffffffffffffffffffffffffffffffffff16610f956116ad565b73ffffffffffffffffffffffffffffffffffffffff1614610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290613ee6565b60405180910390fd5b610ff5600061242f565b565b600f60009054906101000a900460ff16611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613d86565b60405180910390fd5b60007349623caec21b1ff5d04d7bf7b71531369a69bce473ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110959190613c40565b60206040518083038186803b1580156110ad57600080fd5b505afa1580156110c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e591906136a8565b905060001515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190614046565b60405180910390fd5b80821115801561118b575060008214155b6111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190613da6565b60405180910390fd5b600e5482111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690614006565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555081600e6000828254611279919061429c565b92505081905550611289826124f5565b5050565b600f60009054906101000a900460ff166112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390613d86565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115801561132c575060008114155b61136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613da6565b60405180910390fd5b600e548111156113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a790614006565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e6000828254611407919061429c565b92505081905550611417816124f5565b50565b611422612034565b73ffffffffffffffffffffffffffffffffffffffff166114406116ad565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90613ee6565b60405180910390fd5b600047116114a357600080fd5b60006003476114b29190614211565b90506000738b5b9497e096ee6ffd6041d1db37a2ac2b41ab0d73ffffffffffffffffffffffffffffffffffffffff16826040516114ee90613c2b565b60006040518083038185875af1925050503d806000811461152b576040519150601f19603f3d011682016040523d82523d6000602084013e611530565b606091505b50509050600073d491e93c6b05e3cda3073482a5651bcfe3dc1cc773ffffffffffffffffffffffffffffffffffffffff168360405161156e90613c2b565b60006040518083038185875af1925050503d80600081146115ab576040519150601f19603f3d011682016040523d82523d6000602084013e6115b0565b606091505b50509050600073741bfdb9bea6fa505ff9dfe9e8947b29863373fa73ffffffffffffffffffffffffffffffffffffffff16846040516115ee90613c2b565b60006040518083038185875af1925050503d806000811461162b576040519150601f19603f3d011682016040523d82523d6000602084013e611630565b606091505b505090506001151583151514801561164c575060011515821515145b801561165c575060011515811515145b61169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614026565b60405180910390fd5b50505050565b67016345785d8a000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116df612034565b73ffffffffffffffffffffffffffffffffffffffff166116fd6116ad565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613ee6565b60405180910390fd5b60005b815181101561183e57818181518110611798577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160200151600b60008484815181106117e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611836906143e9565b915050611756565b5050565b60606001805461185190614386565b80601f016020809104026020016040519081016040528092919081815260200182805461187d90614386565b80156118ca5780601f1061189f576101008083540402835291602001916118ca565b820191906000526020600020905b8154815290600101906020018083116118ad57829003601f168201915b5050505050905090565b600f60009054906101000a900460ff16611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90613d86565b60405180910390fd5b600061192d610a26565b905060148211158015611941575060008214155b611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613f26565b60405180910390fd5b8167016345785d8a00006119949190614242565b34146119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc90613f86565b60405180910390fd5b6119de826124f5565b5050565b6119ea612034565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90613de6565b60405180910390fd5b8060056000611a65612034565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b12612034565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b579190613cc9565b60405180910390a35050565b611b74611b6e612034565b836120f5565b611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90613fc6565b60405180910390fd5b611bbf84848484612599565b50505050565b6060611bd082611fc8565b611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0690613f46565b60405180910390fd5b60006040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525090506000611c536125f5565b90506000815111611c735760405180602001604052806000815250611ca0565b80611c7d85612687565b83604051602001611c9093929190613bfa565b6040516020818303038152906040525b92505050919050565b611cb1612034565b73ffffffffffffffffffffffffffffffffffffffff16611ccf6116ad565b73ffffffffffffffffffffffffffffffffffffffff1614611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90613ee6565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dde612034565b73ffffffffffffffffffffffffffffffffffffffff16611dfc6116ad565b73ffffffffffffffffffffffffffffffffffffffff1614611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990613ee6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613d46565b60405180910390fd5b611ecb8161242f565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fb157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611fc15750611fc082612834565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120af83610e05565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061210082611fc8565b61213f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213690613e06565b60405180910390fd5b600061214a83610e05565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121b957508373ffffffffffffffffffffffffffffffffffffffff166121a184610889565b73ffffffffffffffffffffffffffffffffffffffff16145b806121ca57506121c98185611d42565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121f382610e05565b73ffffffffffffffffffffffffffffffffffffffff1614612249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224090613f06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b090613dc6565b60405180910390fd5b6122c483838361289e565b6122cf60008261203c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461231f919061429c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461237691906141bb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006124ff610a26565b9050600e546107d0612511919061429c565b828261251d91906141bb565b111561255e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255590613e86565b60405180910390fd5b6000600190505b8281116125945761258133828461257c91906141bb565b6129b2565b808061258c906143e9565b915050612565565b505050565b6125a48484846121d3565b6125b0848484846129d0565b6125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e690613d26565b60405180910390fd5b50505050565b6060600d805461260490614386565b80601f016020809104026020016040519081016040528092919081815260200182805461263090614386565b801561267d5780601f106126525761010080835404028352916020019161267d565b820191906000526020600020905b81548152906001019060200180831161266057829003601f168201915b5050505050905090565b606060008214156126cf576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061282f565b600082905060005b600082146127015780806126ea906143e9565b915050600a826126fa9190614211565b91506126d7565b60008167ffffffffffffffff811115612743577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127755781602001600182028036833780820191505090505b5090505b600085146128285760018261278e919061429c565b9150600a8561279d9190614432565b60306127a991906141bb565b60f81b8183815181106127e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128219190614211565b9450612779565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128a9838383611ee1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128ec576128e781612b67565b61292b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461292a576129298382612bb0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561296e5761296981612d1d565b6129ad565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129ac576129ab8282612e60565b5b5b505050565b6129cc828260405180602001604052806000815250612edf565b5050565b60006129f18473ffffffffffffffffffffffffffffffffffffffff16611ece565b15612b5a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a1a612034565b8786866040518563ffffffff1660e01b8152600401612a3c9493929190613c5b565b602060405180830381600087803b158015612a5657600080fd5b505af1925050508015612a8757506040513d601f19601f82011682018060405250810190612a849190613615565b60015b612b0a573d8060008114612ab7576040519150601f19603f3d011682016040523d82523d6000602084013e612abc565b606091505b50600081511415612b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af990613d26565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b5f565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bbd84610eb7565b612bc7919061429c565b9050600060076000848152602001908152602001600020549050818114612cac576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d31919061429c565b9050600060096000848152602001908152602001600020549050600060088381548110612d87577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612dcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612e6b83610eb7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b612ee98383612f3a565b612ef660008484846129d0565b612f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2c90613d26565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa190613ea6565b60405180910390fd5b612fb381611fc8565b15612ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fea90613d66565b60405180910390fd5b612fff6000838361289e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304f91906141bb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461311490614386565b90600052602060002090601f016020900481019282613136576000855561317d565b82601f1061314f57805160ff191683800117855561317d565b8280016001018555821561317d579182015b8281111561317c578251825591602001919060010190613161565b5b50905061318a919061318e565b5090565b5b808211156131a757600081600090555060010161318f565b5090565b60006131be6131b9846140a6565b614081565b905080838252602082019050828560408602820111156131dd57600080fd5b60005b8581101561320d57816131f38882613365565b8452602084019350604083019250506001810190506131e0565b5050509392505050565b600061322a613225846140d2565b614081565b90508281526020810184848401111561324257600080fd5b61324d848285614344565b509392505050565b600061326861326384614103565b614081565b90508281526020810184848401111561328057600080fd5b61328b848285614344565b509392505050565b6000813590506132a281614c0c565b92915050565b600082601f8301126132b957600080fd5b81356132c98482602086016131ab565b91505092915050565b6000813590506132e181614c23565b92915050565b6000813590506132f681614c3a565b92915050565b60008151905061330b81614c3a565b92915050565b600082601f83011261332257600080fd5b8135613332848260208601613217565b91505092915050565b600082601f83011261334c57600080fd5b813561335c848260208601613255565b91505092915050565b60006040828403121561337757600080fd5b6133816040614081565b9050600061339184828501613293565b60008301525060206133a5848285016133b1565b60208301525092915050565b6000813590506133c081614c51565b92915050565b6000815190506133d581614c51565b92915050565b6000602082840312156133ed57600080fd5b60006133fb84828501613293565b91505092915050565b6000806040838503121561341757600080fd5b600061342585828601613293565b925050602061343685828601613293565b9150509250929050565b60008060006060848603121561345557600080fd5b600061346386828701613293565b935050602061347486828701613293565b9250506040613485868287016133b1565b9150509250925092565b600080600080608085870312156134a557600080fd5b60006134b387828801613293565b94505060206134c487828801613293565b93505060406134d5878288016133b1565b925050606085013567ffffffffffffffff8111156134f257600080fd5b6134fe87828801613311565b91505092959194509250565b6000806040838503121561351d57600080fd5b600061352b85828601613293565b925050602061353c858286016132d2565b9150509250929050565b6000806040838503121561355957600080fd5b600061356785828601613293565b9250506020613578858286016133b1565b9150509250929050565b60006020828403121561359457600080fd5b600082013567ffffffffffffffff8111156135ae57600080fd5b6135ba848285016132a8565b91505092915050565b6000602082840312156135d557600080fd5b60006135e3848285016132d2565b91505092915050565b6000602082840312156135fe57600080fd5b600061360c848285016132e7565b91505092915050565b60006020828403121561362757600080fd5b6000613635848285016132fc565b91505092915050565b60006020828403121561365057600080fd5b600082013567ffffffffffffffff81111561366a57600080fd5b6136768482850161333b565b91505092915050565b60006020828403121561369157600080fd5b600061369f848285016133b1565b91505092915050565b6000602082840312156136ba57600080fd5b60006136c8848285016133c6565b91505092915050565b60006136dd8383613bdc565b60208301905092915050565b6136f2816142d0565b82525050565b600061370382614144565b61370d8185614172565b935061371883614134565b8060005b8381101561374957815161373088826136d1565b975061373b83614165565b92505060018101905061371c565b5085935050505092915050565b61375f816142e2565b82525050565b60006137708261414f565b61377a8185614183565b935061378a818560208601614353565b6137938161451f565b840191505092915050565b60006137a98261415a565b6137b3818561419f565b93506137c3818560208601614353565b6137cc8161451f565b840191505092915050565b60006137e28261415a565b6137ec81856141b0565b93506137fc818560208601614353565b80840191505092915050565b6000613815602b8361419f565b915061382082614530565b604082019050919050565b600061383860328361419f565b91506138438261457f565b604082019050919050565b600061385b60268361419f565b9150613866826145ce565b604082019050919050565b600061387e601c8361419f565b91506138898261461d565b602082019050919050565b60006138a160168361419f565b91506138ac82614646565b602082019050919050565b60006138c4602f8361419f565b91506138cf8261466f565b604082019050919050565b60006138e760248361419f565b91506138f2826146be565b604082019050919050565b600061390a60198361419f565b91506139158261470d565b602082019050919050565b600061392d602c8361419f565b915061393882614736565b604082019050919050565b600061395060388361419f565b915061395b82614785565b604082019050919050565b6000613973602a8361419f565b915061397e826147d4565b604082019050919050565b600061399660298361419f565b91506139a182614823565b604082019050919050565b60006139b9601e8361419f565b91506139c482614872565b602082019050919050565b60006139dc60208361419f565b91506139e78261489b565b602082019050919050565b60006139ff602c8361419f565b9150613a0a826148c4565b604082019050919050565b6000613a2260208361419f565b9150613a2d82614913565b602082019050919050565b6000613a4560298361419f565b9150613a508261493c565b604082019050919050565b6000613a6860248361419f565b9150613a738261498b565b604082019050919050565b6000613a8b602f8361419f565b9150613a96826149da565b604082019050919050565b6000613aae60218361419f565b9150613ab982614a29565b604082019050919050565b6000613ad160198361419f565b9150613adc82614a78565b602082019050919050565b6000613af4603d8361419f565b9150613aff82614aa1565b604082019050919050565b6000613b17600083614194565b9150613b2282614af0565b600082019050919050565b6000613b3a60318361419f565b9150613b4582614af3565b604082019050919050565b6000613b5d602c8361419f565b9150613b6882614b42565b604082019050919050565b6000613b8060208361419f565b9150613b8b82614b91565b602082019050919050565b6000613ba3600f8361419f565b9150613bae82614bba565b602082019050919050565b6000613bc6600e8361419f565b9150613bd182614be3565b602082019050919050565b613be58161433a565b82525050565b613bf48161433a565b82525050565b6000613c0682866137d7565b9150613c1282856137d7565b9150613c1e82846137d7565b9150819050949350505050565b6000613c3682613b0a565b9150819050919050565b6000602082019050613c5560008301846136e9565b92915050565b6000608082019050613c7060008301876136e9565b613c7d60208301866136e9565b613c8a6040830185613beb565b8181036060830152613c9c8184613765565b905095945050505050565b60006020820190508181036000830152613cc181846136f8565b905092915050565b6000602082019050613cde6000830184613756565b92915050565b60006020820190508181036000830152613cfe818461379e565b905092915050565b60006020820190508181036000830152613d1f81613808565b9050919050565b60006020820190508181036000830152613d3f8161382b565b9050919050565b60006020820190508181036000830152613d5f8161384e565b9050919050565b60006020820190508181036000830152613d7f81613871565b9050919050565b60006020820190508181036000830152613d9f81613894565b9050919050565b60006020820190508181036000830152613dbf816138b7565b9050919050565b60006020820190508181036000830152613ddf816138da565b9050919050565b60006020820190508181036000830152613dff816138fd565b9050919050565b60006020820190508181036000830152613e1f81613920565b9050919050565b60006020820190508181036000830152613e3f81613943565b9050919050565b60006020820190508181036000830152613e5f81613966565b9050919050565b60006020820190508181036000830152613e7f81613989565b9050919050565b60006020820190508181036000830152613e9f816139ac565b9050919050565b60006020820190508181036000830152613ebf816139cf565b9050919050565b60006020820190508181036000830152613edf816139f2565b9050919050565b60006020820190508181036000830152613eff81613a15565b9050919050565b60006020820190508181036000830152613f1f81613a38565b9050919050565b60006020820190508181036000830152613f3f81613a5b565b9050919050565b60006020820190508181036000830152613f5f81613a7e565b9050919050565b60006020820190508181036000830152613f7f81613aa1565b9050919050565b60006020820190508181036000830152613f9f81613ac4565b9050919050565b60006020820190508181036000830152613fbf81613ae7565b9050919050565b60006020820190508181036000830152613fdf81613b2d565b9050919050565b60006020820190508181036000830152613fff81613b50565b9050919050565b6000602082019050818103600083015261401f81613b73565b9050919050565b6000602082019050818103600083015261403f81613b96565b9050919050565b6000602082019050818103600083015261405f81613bb9565b9050919050565b600060208201905061407b6000830184613beb565b92915050565b600061408b61409c565b905061409782826143b8565b919050565b6000604051905090565b600067ffffffffffffffff8211156140c1576140c06144f0565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140ed576140ec6144f0565b5b6140f68261451f565b9050602081019050919050565b600067ffffffffffffffff82111561411e5761411d6144f0565b5b6141278261451f565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141c68261433a565b91506141d18361433a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561420657614205614463565b5b828201905092915050565b600061421c8261433a565b91506142278361433a565b92508261423757614236614492565b5b828204905092915050565b600061424d8261433a565b91506142588361433a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561429157614290614463565b5b828202905092915050565b60006142a78261433a565b91506142b28361433a565b9250828210156142c5576142c4614463565b5b828203905092915050565b60006142db8261431a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614371578082015181840152602081019050614356565b83811115614380576000848401525b50505050565b6000600282049050600182168061439e57607f821691505b602082108114156143b2576143b16144c1565b5b50919050565b6143c18261451f565b810181811067ffffffffffffffff821117156143e0576143df6144f0565b5b80604052505050565b60006143f48261433a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561442757614426614463565b5b600182019050919050565b600061443d8261433a565b91506144488361433a565b92508261445857614457614492565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f636f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b7f63616e6e6f74206d696e74206d6f7265207468616e20796f752061726520656c60008201527f696769626c6520666f72206f7220300000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20506562626c657320737570706c790000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206d696e742061206d6178696d756d206f662032302050656260008201527f626c657300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f596f752073656e7420657468657220746f207468697320636f6e74726163742060008201527f776974686f75742073706563696679696e6720612066756e6374696f6e000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f75676820726573657276656420706562626c6573206c656674600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b614c15816142d0565b8114614c2057600080fd5b50565b614c2c816142e2565b8114614c3757600080fd5b50565b614c43816142ee565b8114614c4e57600080fd5b50565b614c5a8161433a565b8114614c6557600080fd5b5056fea26469706673582212203b1b5cfee07ae242184b6fc5904d3fddc4002e4b7e6fcc33901313d46aa5ad3964736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5772737553707476797033714567374c796936716756467173584e4777567735446439744b785042444d39782f00000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmWrsuSptvyp3qEg7Lyi6qgVFqsXNGwVw5Dd9tKxPBDM9x/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5772737553707476797033714567374c79693671675646
Arg [3] : 7173584e4777567735446439744b785042444d39782f00000000000000000000
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.