Feature Tip: Add private address tag to any address under My Name Tag !
NFT
Overview
TokenID
3848
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PartyPenguins
Compiler Version
v0.8.5+commit.a4f2e591
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; contract PartyPenguins is ERC721Enumerable, Ownable { using Strings for uint256; string _baseTokenURI; uint256 private _maxMint = 20; uint256 private _price = 3 * 10**16; //0.03 ETH; bool public _paused = true; uint public constant MAX_ENTRIES = 10000; constructor(string memory baseURI) ERC721("Party Penguins", "PartyPenguins") { setBaseURI(baseURI); // team gets the first 50 mint(msg.sender, 50); } function mint(address _to, uint256 num) public payable { uint256 supply = totalSupply(); if(msg.sender != owner()) { require(!_paused, "Sale Paused"); require( num < (_maxMint+1),"You can adopt a maximum of _maxMint Penguins" ); require( msg.value >= _price * num,"Ether sent is not correct" ); } require( supply + num < MAX_ENTRIES, "Exceeds maximum supply" ); for(uint256 i; i < num; i++){ _safeMint( _to, supply + i ); } } function walletOfOwner(address _owner) public view returns(uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function getPrice() public view returns (uint256){ if(msg.sender == owner()) { return 0; } return _price; } function setPrice(uint256 _newPrice) public onlyOwner() { _price = _newPrice; } function getMaxMint() public view returns (uint256){ return _maxMint; } function setMaxMint(uint256 _newMaxMint) public onlyOwner() { _maxMint = _newMaxMint; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function pause(bool val) public onlyOwner { _paused = val; } function withdrawAll() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(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"},{"inputs":[],"name":"MAX_ENTRIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","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":[],"name":"getMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526014600c55666a94d74f430000600d556001600e60006101000a81548160ff0219169083151502179055503480156200003c57600080fd5b5060405162005ac938038062005ac983398181016040528101906200006291906200104c565b6040518060400160405280600e81526020017f50617274792050656e6775696e730000000000000000000000000000000000008152506040518060400160405280600d81526020017f506172747950656e6775696e73000000000000000000000000000000000000008152508160009080519060200190620000e692919062000ed5565b508060019080519060200190620000ff92919062000ed5565b50505062000122620001166200014d60201b60201c565b6200015560201b60201c565b62000133816200021b60201b60201c565b62000146336032620002c660201b60201c565b50620019d1565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022b6200014d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000251620004b660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a1906200135d565b60405180910390fd5b80600b9080519060200190620002c292919062000ed5565b5050565b6000620002d8620004e060201b60201c565b9050620002ea620004b660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200041b57600e60009054906101000a900460ff161562000370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000367906200133b565b60405180910390fd5b6001600c5462000381919062001471565b8210620003c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bc906200137f565b60405180910390fd5b81600d54620003d59190620014ce565b3410156200041a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041190620013c3565b60405180910390fd5b5b61271082826200042c919062001471565b106200046f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046690620013a1565b60405180910390fd5b60005b82811015620004b0576200049a8482846200048e919062001471565b620004ed60201b60201c565b8080620004a79062001676565b91505062000472565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b6200050f8282604051806020016040528060008152506200051360201b60201c565b5050565b6200052583836200058160201b60201c565b6200053a60008484846200076760201b60201c565b6200057c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200057390620012b3565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005eb9062001319565b60405180910390fd5b62000605816200092160201b60201c565b1562000648576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063f90620012d5565b60405180910390fd5b6200065c600083836200098d60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620006ae919062001471565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007958473ffffffffffffffffffffffffffffffffffffffff1662000ad460201b6200180c1760201c565b1562000914578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007c76200014d60201b60201c565b8786866040518563ffffffff1660e01b8152600401620007eb94939291906200125f565b602060405180830381600087803b1580156200080657600080fd5b505af19250505080156200083a57506040513d601f19601f820116820180604052508101906200083791906200101a565b60015b620008c3573d80600081146200086d576040519150601f19603f3d011682016040523d82523d6000602084013e62000872565b606091505b50600081511415620008bb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008b290620012b3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000919565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620009a583838362000ae760201b6200181f1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009f257620009ec8162000aec60201b60201c565b62000a3a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000a395762000a38838262000b3560201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a875762000a818162000cb260201b60201c565b62000acf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000ace5762000acd828262000d8e60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000b4f8462000e1a60201b620010631760201c565b62000b5b91906200152f565b905060006007600084815260200190815260200160002054905081811462000c41576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000cc891906200152f565b905060006009600084815260200190815260200160002054905060006008838154811062000cfb5762000cfa62001751565b5b90600052602060002001549050806008838154811062000d205762000d1f62001751565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d725762000d7162001722565b5b6001900381819060005260206000200160009055905550505050565b600062000da68362000e1a60201b620010631760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000e8e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e8590620012f7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000ee3906200160a565b90600052602060002090601f01602090048101928262000f07576000855562000f53565b82601f1062000f2257805160ff191683800117855562000f53565b8280016001018555821562000f53579182015b8281111562000f5257825182559160200191906001019062000f35565b5b50905062000f62919062000f66565b5090565b5b8082111562000f8157600081600090555060010162000f67565b5090565b600062000f9c62000f96846200140e565b620013e5565b90508281526020810184848401111562000fbb5762000fba620017b4565b5b62000fc8848285620015d4565b509392505050565b60008151905062000fe181620019b7565b92915050565b600082601f83011262000fff5762000ffe620017af565b5b81516200101184826020860162000f85565b91505092915050565b600060208284031215620010335762001032620017be565b5b6000620010438482850162000fd0565b91505092915050565b600060208284031215620010655762001064620017be565b5b600082015167ffffffffffffffff811115620010865762001085620017b9565b5b620010948482850162000fe7565b91505092915050565b620010a8816200156a565b82525050565b6000620010bb8262001444565b620010c781856200144f565b9350620010d9818560208601620015d4565b620010e481620017c3565b840191505092915050565b6000620010fe60328362001460565b91506200110b82620017d4565b604082019050919050565b600062001125601c8362001460565b9150620011328262001823565b602082019050919050565b60006200114c602a8362001460565b915062001159826200184c565b604082019050919050565b60006200117360208362001460565b915062001180826200189b565b602082019050919050565b60006200119a600b8362001460565b9150620011a782620018c4565b602082019050919050565b6000620011c160208362001460565b9150620011ce82620018ed565b602082019050919050565b6000620011e8602c8362001460565b9150620011f58262001916565b604082019050919050565b60006200120f60168362001460565b91506200121c8262001965565b602082019050919050565b60006200123660198362001460565b915062001243826200198e565b602082019050919050565b6200125981620015ca565b82525050565b60006080820190506200127660008301876200109d565b6200128560208301866200109d565b6200129460408301856200124e565b8181036060830152620012a88184620010ae565b905095945050505050565b60006020820190508181036000830152620012ce81620010ef565b9050919050565b60006020820190508181036000830152620012f08162001116565b9050919050565b6000602082019050818103600083015262001312816200113d565b9050919050565b60006020820190508181036000830152620013348162001164565b9050919050565b6000602082019050818103600083015262001356816200118b565b9050919050565b600060208201905081810360008301526200137881620011b2565b9050919050565b600060208201905081810360008301526200139a81620011d9565b9050919050565b60006020820190508181036000830152620013bc8162001200565b9050919050565b60006020820190508181036000830152620013de8162001227565b9050919050565b6000620013f162001404565b9050620013ff828262001640565b919050565b6000604051905090565b600067ffffffffffffffff8211156200142c576200142b62001780565b5b6200143782620017c3565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200147e82620015ca565b91506200148b83620015ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620014c357620014c2620016c4565b5b828201905092915050565b6000620014db82620015ca565b9150620014e883620015ca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620015245762001523620016c4565b5b828202905092915050565b60006200153c82620015ca565b91506200154983620015ca565b9250828210156200155f576200155e620016c4565b5b828203905092915050565b60006200157782620015aa565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620015f4578082015181840152602081019050620015d7565b8381111562001604576000848401525b50505050565b600060028204905060018216806200162357607f821691505b602082108114156200163a5762001639620016f3565b5b50919050565b6200164b82620017c3565b810181811067ffffffffffffffff821117156200166d576200166c62001780565b5b80604052505050565b60006200168382620015ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620016b957620016b8620016c4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520506175736564000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e2061646f70742061206d6178696d756d206f66205f6d61784d60008201527f696e742050656e6775696e730000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b620019c2816200157e565b8114620019ce57600080fd5b50565b6140e880620019e16000396000f3fe6080604052600436106101cd5760003560e01c806355f804b3116100f757806391b7f5ed11610095578063b88d4fde11610064578063b88d4fde1461065a578063c87b56dd14610683578063e985e9c5146106c0578063f2fde38b146106fd576101cd565b806391b7f5ed146105b257806395d89b41146105db57806398d5fdca14610606578063a22cb46514610631576101cd565b8063715018a6116100d1578063715018a61461053b5780637d4cb96414610552578063853828b61461057d5780638da5cb5b14610587576101cd565b806355f804b3146104985780636352211e146104c157806370a08231146104fe576101cd565b80631f46452f1161016f57806342842e0e1161013e57806342842e0e146103cc578063438b6300146103f55780634f6ccce714610432578063547520fe1461046f576101cd565b80631f46452f1461031f57806323b872dd1461034a5780632f745c591461037357806340c10f19146103b0576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806316c61ccc146102c957806318160ddd146102f4576101cd565b806301ffc9a7146101d257806302329a291461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612cc0565b610726565b6040516102069190613294565b60405180910390f35b34801561021b57600080fd5b5061023660048036038101906102319190612c93565b6107a0565b005b34801561024457600080fd5b5061024d610839565b60405161025a91906132af565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612d63565b6108cb565b604051610297919061320b565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612c53565b610950565b005b3480156102d557600080fd5b506102de610a68565b6040516102eb9190613294565b60405180910390f35b34801561030057600080fd5b50610309610a7b565b6040516103169190613591565b60405180910390f35b34801561032b57600080fd5b50610334610a88565b6040516103419190613591565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612b3d565b610a92565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612c53565b610af2565b6040516103a79190613591565b60405180910390f35b6103ca60048036038101906103c59190612c53565b610b97565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612b3d565b610d56565b005b34801561040157600080fd5b5061041c60048036038101906104179190612ad0565b610d76565b6040516104299190613272565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190612d63565b610e24565b6040516104669190613591565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190612d63565b610e95565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612d1a565b610f1b565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190612d63565b610fb1565b6040516104f5919061320b565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190612ad0565b611063565b6040516105329190613591565b60405180910390f35b34801561054757600080fd5b5061055061111b565b005b34801561055e57600080fd5b506105676111a3565b6040516105749190613591565b60405180910390f35b6105856111a9565b005b34801561059357600080fd5b5061059c611265565b6040516105a9919061320b565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612d63565b61128f565b005b3480156105e757600080fd5b506105f0611315565b6040516105fd91906132af565b60405180910390f35b34801561061257600080fd5b5061061b6113a7565b6040516106289190613591565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190612c13565b6113f6565b005b34801561066657600080fd5b50610681600480360381019061067c9190612b90565b611577565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612d63565b6115d9565b6040516106b791906132af565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190612afd565b611680565b6040516106f49190613294565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f9190612ad0565b611714565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610799575061079882611824565b5b9050919050565b6107a8611906565b73ffffffffffffffffffffffffffffffffffffffff166107c6611265565b73ffffffffffffffffffffffffffffffffffffffff161461081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390613471565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546108489061387a565b80601f01602080910402602001604051908101604052809291908181526020018280546108749061387a565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d68261190e565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90613451565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b82610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c3906134f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109eb611906565b73ffffffffffffffffffffffffffffffffffffffff161480610a1a5750610a1981610a14611906565b611680565b5b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a50906133b1565b60405180910390fd5b610a63838361197a565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b6000600c54905090565b610aa3610a9d611906565b82611a33565b610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990613551565b60405180910390fd5b610aed838383611b11565b505050565b6000610afd83611063565b8210610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b35906132d1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610ba1610a7b565b9050610bab611265565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cce57600e60009054906101000a900460ff1615610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490613431565b60405180910390fd5b6001600c54610c3c91906136af565b8210610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c74906134d1565b60405180910390fd5b81600d54610c8b9190613736565b341015610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490613531565b60405180910390fd5b5b6127108282610cdd91906136af565b10610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490613511565b60405180910390fd5b60005b82811015610d5057610d3d848284610d3891906136af565b611d6d565b8080610d48906138dd565b915050610d20565b50505050565b610d7183838360405180602001604052806000815250611577565b505050565b60606000610d8383611063565b905060008167ffffffffffffffff811115610da157610da0613a42565b5b604051908082528060200260200182016040528015610dcf5781602001602082028036833780820191505090505b50905060005b82811015610e1957610de78582610af2565b828281518110610dfa57610df9613a13565b5b6020026020010181815250508080610e11906138dd565b915050610dd5565b508092505050919050565b6000610e2e610a7b565b8210610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690613571565b60405180910390fd5b60088281548110610e8357610e82613a13565b5b90600052602060002001549050919050565b610e9d611906565b73ffffffffffffffffffffffffffffffffffffffff16610ebb611265565b73ffffffffffffffffffffffffffffffffffffffff1614610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613471565b60405180910390fd5b80600c8190555050565b610f23611906565b73ffffffffffffffffffffffffffffffffffffffff16610f41611265565b73ffffffffffffffffffffffffffffffffffffffff1614610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90613471565b60405180910390fd5b80600b9080519060200190610fad9291906128e4565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561105a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611051906133f1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb906133d1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611123611906565b73ffffffffffffffffffffffffffffffffffffffff16611141611265565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90613471565b60405180910390fd5b6111a16000611d8b565b565b61271081565b6111b1611906565b73ffffffffffffffffffffffffffffffffffffffff166111cf611265565b73ffffffffffffffffffffffffffffffffffffffff1614611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90613471565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061126357600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611297611906565b73ffffffffffffffffffffffffffffffffffffffff166112b5611265565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613471565b60405180910390fd5b80600d8190555050565b6060600180546113249061387a565b80601f01602080910402602001604051908101604052809291908181526020018280546113509061387a565b801561139d5780601f106113725761010080835404028352916020019161139d565b820191906000526020600020905b81548152906001019060200180831161138057829003601f168201915b5050505050905090565b60006113b1611265565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156113ed57600090506113f3565b600d5490505b90565b6113fe611906565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390613371565b60405180910390fd5b8060056000611479611906565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611526611906565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161156b9190613294565b60405180910390a35050565b611588611582611906565b83611a33565b6115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613551565b60405180910390fd5b6115d384848484611e51565b50505050565b60606115e48261190e565b611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a906134b1565b60405180910390fd5b600061162d611ead565b9050600081511161164d5760405180602001604052806000815250611678565b8061165784611f3f565b6040516020016116689291906131e7565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61171c611906565b73ffffffffffffffffffffffffffffffffffffffff1661173a611265565b73ffffffffffffffffffffffffffffffffffffffff1614611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613471565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613311565b60405180910390fd5b61180981611d8b565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118ef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118ff57506118fe826120a0565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119ed83610fb1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a3e8261190e565b611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490613391565b60405180910390fd5b6000611a8883610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611af757508373ffffffffffffffffffffffffffffffffffffffff16611adf846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b085750611b078185611680565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b3182610fb1565b73ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90613491565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee90613351565b60405180910390fd5b611c0283838361210a565b611c0d60008261197a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5d9190613790565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb491906136af565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611d8782826040518060200160405280600081525061221e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e5c848484611b11565b611e6884848484612279565b611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e906132f1565b60405180910390fd5b50505050565b6060600b8054611ebc9061387a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee89061387a565b8015611f355780601f10611f0a57610100808354040283529160200191611f35565b820191906000526020600020905b815481529060010190602001808311611f1857829003601f168201915b5050505050905090565b60606000821415611f87576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061209b565b600082905060005b60008214611fb9578080611fa2906138dd565b915050600a82611fb29190613705565b9150611f8f565b60008167ffffffffffffffff811115611fd557611fd4613a42565b5b6040519080825280601f01601f1916602001820160405280156120075781602001600182028036833780820191505090505b5090505b60008514612094576001826120209190613790565b9150600a8561202f9190613926565b603061203b91906136af565b60f81b81838151811061205157612050613a13565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561208d9190613705565b945061200b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61211583838361181f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121585761215381612410565b612197565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612196576121958382612459565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121da576121d5816125c6565b612219565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612218576122178282612697565b5b5b505050565b6122288383612716565b6122356000848484612279565b612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906132f1565b60405180910390fd5b505050565b600061229a8473ffffffffffffffffffffffffffffffffffffffff1661180c565b15612403578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c3611906565b8786866040518563ffffffff1660e01b81526004016122e59493929190613226565b602060405180830381600087803b1580156122ff57600080fd5b505af192505050801561233057506040513d601f19601f8201168201806040525081019061232d9190612ced565b60015b6123b3573d8060008114612360576040519150601f19603f3d011682016040523d82523d6000602084013e612365565b606091505b506000815114156123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a2906132f1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612408565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161246684611063565b6124709190613790565b9050600060076000848152602001908152602001600020549050818114612555576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506125da9190613790565b905060006009600084815260200190815260200160002054905060006008838154811061260a57612609613a13565b5b90600052602060002001549050806008838154811061262c5761262b613a13565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061267b5761267a6139e4565b5b6001900381819060005260206000200160009055905550505050565b60006126a283611063565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277d90613411565b60405180910390fd5b61278f8161190e565b156127cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c690613331565b60405180910390fd5b6127db6000838361210a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461282b91906136af565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546128f09061387a565b90600052602060002090601f0160209004810192826129125760008555612959565b82601f1061292b57805160ff1916838001178555612959565b82800160010185558215612959579182015b8281111561295857825182559160200191906001019061293d565b5b509050612966919061296a565b5090565b5b8082111561298357600081600090555060010161296b565b5090565b600061299a612995846135d1565b6135ac565b9050828152602081018484840111156129b6576129b5613a76565b5b6129c1848285613838565b509392505050565b60006129dc6129d784613602565b6135ac565b9050828152602081018484840111156129f8576129f7613a76565b5b612a03848285613838565b509392505050565b600081359050612a1a81614056565b92915050565b600081359050612a2f8161406d565b92915050565b600081359050612a4481614084565b92915050565b600081519050612a5981614084565b92915050565b600082601f830112612a7457612a73613a71565b5b8135612a84848260208601612987565b91505092915050565b600082601f830112612aa257612aa1613a71565b5b8135612ab28482602086016129c9565b91505092915050565b600081359050612aca8161409b565b92915050565b600060208284031215612ae657612ae5613a80565b5b6000612af484828501612a0b565b91505092915050565b60008060408385031215612b1457612b13613a80565b5b6000612b2285828601612a0b565b9250506020612b3385828601612a0b565b9150509250929050565b600080600060608486031215612b5657612b55613a80565b5b6000612b6486828701612a0b565b9350506020612b7586828701612a0b565b9250506040612b8686828701612abb565b9150509250925092565b60008060008060808587031215612baa57612ba9613a80565b5b6000612bb887828801612a0b565b9450506020612bc987828801612a0b565b9350506040612bda87828801612abb565b925050606085013567ffffffffffffffff811115612bfb57612bfa613a7b565b5b612c0787828801612a5f565b91505092959194509250565b60008060408385031215612c2a57612c29613a80565b5b6000612c3885828601612a0b565b9250506020612c4985828601612a20565b9150509250929050565b60008060408385031215612c6a57612c69613a80565b5b6000612c7885828601612a0b565b9250506020612c8985828601612abb565b9150509250929050565b600060208284031215612ca957612ca8613a80565b5b6000612cb784828501612a20565b91505092915050565b600060208284031215612cd657612cd5613a80565b5b6000612ce484828501612a35565b91505092915050565b600060208284031215612d0357612d02613a80565b5b6000612d1184828501612a4a565b91505092915050565b600060208284031215612d3057612d2f613a80565b5b600082013567ffffffffffffffff811115612d4e57612d4d613a7b565b5b612d5a84828501612a8d565b91505092915050565b600060208284031215612d7957612d78613a80565b5b6000612d8784828501612abb565b91505092915050565b6000612d9c83836131c9565b60208301905092915050565b612db1816137c4565b82525050565b6000612dc282613643565b612dcc8185613671565b9350612dd783613633565b8060005b83811015612e08578151612def8882612d90565b9750612dfa83613664565b925050600181019050612ddb565b5085935050505092915050565b612e1e816137d6565b82525050565b6000612e2f8261364e565b612e398185613682565b9350612e49818560208601613847565b612e5281613a85565b840191505092915050565b6000612e6882613659565b612e728185613693565b9350612e82818560208601613847565b612e8b81613a85565b840191505092915050565b6000612ea182613659565b612eab81856136a4565b9350612ebb818560208601613847565b80840191505092915050565b6000612ed4602b83613693565b9150612edf82613a96565b604082019050919050565b6000612ef7603283613693565b9150612f0282613ae5565b604082019050919050565b6000612f1a602683613693565b9150612f2582613b34565b604082019050919050565b6000612f3d601c83613693565b9150612f4882613b83565b602082019050919050565b6000612f60602483613693565b9150612f6b82613bac565b604082019050919050565b6000612f83601983613693565b9150612f8e82613bfb565b602082019050919050565b6000612fa6602c83613693565b9150612fb182613c24565b604082019050919050565b6000612fc9603883613693565b9150612fd482613c73565b604082019050919050565b6000612fec602a83613693565b9150612ff782613cc2565b604082019050919050565b600061300f602983613693565b915061301a82613d11565b604082019050919050565b6000613032602083613693565b915061303d82613d60565b602082019050919050565b6000613055600b83613693565b915061306082613d89565b602082019050919050565b6000613078602c83613693565b915061308382613db2565b604082019050919050565b600061309b602083613693565b91506130a682613e01565b602082019050919050565b60006130be602983613693565b91506130c982613e2a565b604082019050919050565b60006130e1602f83613693565b91506130ec82613e79565b604082019050919050565b6000613104602c83613693565b915061310f82613ec8565b604082019050919050565b6000613127602183613693565b915061313282613f17565b604082019050919050565b600061314a601683613693565b915061315582613f66565b602082019050919050565b600061316d601983613693565b915061317882613f8f565b602082019050919050565b6000613190603183613693565b915061319b82613fb8565b604082019050919050565b60006131b3602c83613693565b91506131be82614007565b604082019050919050565b6131d28161382e565b82525050565b6131e18161382e565b82525050565b60006131f38285612e96565b91506131ff8284612e96565b91508190509392505050565b60006020820190506132206000830184612da8565b92915050565b600060808201905061323b6000830187612da8565b6132486020830186612da8565b61325560408301856131d8565b81810360608301526132678184612e24565b905095945050505050565b6000602082019050818103600083015261328c8184612db7565b905092915050565b60006020820190506132a96000830184612e15565b92915050565b600060208201905081810360008301526132c98184612e5d565b905092915050565b600060208201905081810360008301526132ea81612ec7565b9050919050565b6000602082019050818103600083015261330a81612eea565b9050919050565b6000602082019050818103600083015261332a81612f0d565b9050919050565b6000602082019050818103600083015261334a81612f30565b9050919050565b6000602082019050818103600083015261336a81612f53565b9050919050565b6000602082019050818103600083015261338a81612f76565b9050919050565b600060208201905081810360008301526133aa81612f99565b9050919050565b600060208201905081810360008301526133ca81612fbc565b9050919050565b600060208201905081810360008301526133ea81612fdf565b9050919050565b6000602082019050818103600083015261340a81613002565b9050919050565b6000602082019050818103600083015261342a81613025565b9050919050565b6000602082019050818103600083015261344a81613048565b9050919050565b6000602082019050818103600083015261346a8161306b565b9050919050565b6000602082019050818103600083015261348a8161308e565b9050919050565b600060208201905081810360008301526134aa816130b1565b9050919050565b600060208201905081810360008301526134ca816130d4565b9050919050565b600060208201905081810360008301526134ea816130f7565b9050919050565b6000602082019050818103600083015261350a8161311a565b9050919050565b6000602082019050818103600083015261352a8161313d565b9050919050565b6000602082019050818103600083015261354a81613160565b9050919050565b6000602082019050818103600083015261356a81613183565b9050919050565b6000602082019050818103600083015261358a816131a6565b9050919050565b60006020820190506135a660008301846131d8565b92915050565b60006135b66135c7565b90506135c282826138ac565b919050565b6000604051905090565b600067ffffffffffffffff8211156135ec576135eb613a42565b5b6135f582613a85565b9050602081019050919050565b600067ffffffffffffffff82111561361d5761361c613a42565b5b61362682613a85565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136ba8261382e565b91506136c58361382e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136fa576136f9613957565b5b828201905092915050565b60006137108261382e565b915061371b8361382e565b92508261372b5761372a613986565b5b828204905092915050565b60006137418261382e565b915061374c8361382e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561378557613784613957565b5b828202905092915050565b600061379b8261382e565b91506137a68361382e565b9250828210156137b9576137b8613957565b5b828203905092915050565b60006137cf8261380e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561386557808201518184015260208101905061384a565b83811115613874576000848401525b50505050565b6000600282049050600182168061389257607f821691505b602082108114156138a6576138a56139b5565b5b50919050565b6138b582613a85565b810181811067ffffffffffffffff821117156138d4576138d3613a42565b5b80604052505050565b60006138e88261382e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561391b5761391a613957565b5b600182019050919050565b60006139318261382e565b915061393c8361382e565b92508261394c5761394b613986565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520506175736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f752063616e2061646f70742061206d6178696d756d206f66205f6d61784d60008201527f696e742050656e6775696e730000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61405f816137c4565b811461406a57600080fd5b50565b614076816137d6565b811461408157600080fd5b50565b61408d816137e2565b811461409857600080fd5b50565b6140a48161382e565b81146140af57600080fd5b5056fea264697066735822122056b815489d49259cf28024e7d18ce4a72d919141bc666bb487f08f1c9527640e64736f6c634300080500330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f706172747970656e6775696e732e636c75622f6170692f70656e6775696e2f00000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806355f804b3116100f757806391b7f5ed11610095578063b88d4fde11610064578063b88d4fde1461065a578063c87b56dd14610683578063e985e9c5146106c0578063f2fde38b146106fd576101cd565b806391b7f5ed146105b257806395d89b41146105db57806398d5fdca14610606578063a22cb46514610631576101cd565b8063715018a6116100d1578063715018a61461053b5780637d4cb96414610552578063853828b61461057d5780638da5cb5b14610587576101cd565b806355f804b3146104985780636352211e146104c157806370a08231146104fe576101cd565b80631f46452f1161016f57806342842e0e1161013e57806342842e0e146103cc578063438b6300146103f55780634f6ccce714610432578063547520fe1461046f576101cd565b80631f46452f1461031f57806323b872dd1461034a5780632f745c591461037357806340c10f19146103b0576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806316c61ccc146102c957806318160ddd146102f4576101cd565b806301ffc9a7146101d257806302329a291461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612cc0565b610726565b6040516102069190613294565b60405180910390f35b34801561021b57600080fd5b5061023660048036038101906102319190612c93565b6107a0565b005b34801561024457600080fd5b5061024d610839565b60405161025a91906132af565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612d63565b6108cb565b604051610297919061320b565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612c53565b610950565b005b3480156102d557600080fd5b506102de610a68565b6040516102eb9190613294565b60405180910390f35b34801561030057600080fd5b50610309610a7b565b6040516103169190613591565b60405180910390f35b34801561032b57600080fd5b50610334610a88565b6040516103419190613591565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612b3d565b610a92565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612c53565b610af2565b6040516103a79190613591565b60405180910390f35b6103ca60048036038101906103c59190612c53565b610b97565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612b3d565b610d56565b005b34801561040157600080fd5b5061041c60048036038101906104179190612ad0565b610d76565b6040516104299190613272565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190612d63565b610e24565b6040516104669190613591565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190612d63565b610e95565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612d1a565b610f1b565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190612d63565b610fb1565b6040516104f5919061320b565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190612ad0565b611063565b6040516105329190613591565b60405180910390f35b34801561054757600080fd5b5061055061111b565b005b34801561055e57600080fd5b506105676111a3565b6040516105749190613591565b60405180910390f35b6105856111a9565b005b34801561059357600080fd5b5061059c611265565b6040516105a9919061320b565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612d63565b61128f565b005b3480156105e757600080fd5b506105f0611315565b6040516105fd91906132af565b60405180910390f35b34801561061257600080fd5b5061061b6113a7565b6040516106289190613591565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190612c13565b6113f6565b005b34801561066657600080fd5b50610681600480360381019061067c9190612b90565b611577565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612d63565b6115d9565b6040516106b791906132af565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190612afd565b611680565b6040516106f49190613294565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f9190612ad0565b611714565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610799575061079882611824565b5b9050919050565b6107a8611906565b73ffffffffffffffffffffffffffffffffffffffff166107c6611265565b73ffffffffffffffffffffffffffffffffffffffff161461081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390613471565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546108489061387a565b80601f01602080910402602001604051908101604052809291908181526020018280546108749061387a565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d68261190e565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90613451565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b82610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c3906134f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109eb611906565b73ffffffffffffffffffffffffffffffffffffffff161480610a1a5750610a1981610a14611906565b611680565b5b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a50906133b1565b60405180910390fd5b610a63838361197a565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b6000600c54905090565b610aa3610a9d611906565b82611a33565b610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990613551565b60405180910390fd5b610aed838383611b11565b505050565b6000610afd83611063565b8210610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b35906132d1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610ba1610a7b565b9050610bab611265565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cce57600e60009054906101000a900460ff1615610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490613431565b60405180910390fd5b6001600c54610c3c91906136af565b8210610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c74906134d1565b60405180910390fd5b81600d54610c8b9190613736565b341015610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490613531565b60405180910390fd5b5b6127108282610cdd91906136af565b10610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490613511565b60405180910390fd5b60005b82811015610d5057610d3d848284610d3891906136af565b611d6d565b8080610d48906138dd565b915050610d20565b50505050565b610d7183838360405180602001604052806000815250611577565b505050565b60606000610d8383611063565b905060008167ffffffffffffffff811115610da157610da0613a42565b5b604051908082528060200260200182016040528015610dcf5781602001602082028036833780820191505090505b50905060005b82811015610e1957610de78582610af2565b828281518110610dfa57610df9613a13565b5b6020026020010181815250508080610e11906138dd565b915050610dd5565b508092505050919050565b6000610e2e610a7b565b8210610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690613571565b60405180910390fd5b60088281548110610e8357610e82613a13565b5b90600052602060002001549050919050565b610e9d611906565b73ffffffffffffffffffffffffffffffffffffffff16610ebb611265565b73ffffffffffffffffffffffffffffffffffffffff1614610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613471565b60405180910390fd5b80600c8190555050565b610f23611906565b73ffffffffffffffffffffffffffffffffffffffff16610f41611265565b73ffffffffffffffffffffffffffffffffffffffff1614610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90613471565b60405180910390fd5b80600b9080519060200190610fad9291906128e4565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561105a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611051906133f1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb906133d1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611123611906565b73ffffffffffffffffffffffffffffffffffffffff16611141611265565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90613471565b60405180910390fd5b6111a16000611d8b565b565b61271081565b6111b1611906565b73ffffffffffffffffffffffffffffffffffffffff166111cf611265565b73ffffffffffffffffffffffffffffffffffffffff1614611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90613471565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061126357600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611297611906565b73ffffffffffffffffffffffffffffffffffffffff166112b5611265565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613471565b60405180910390fd5b80600d8190555050565b6060600180546113249061387a565b80601f01602080910402602001604051908101604052809291908181526020018280546113509061387a565b801561139d5780601f106113725761010080835404028352916020019161139d565b820191906000526020600020905b81548152906001019060200180831161138057829003601f168201915b5050505050905090565b60006113b1611265565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156113ed57600090506113f3565b600d5490505b90565b6113fe611906565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390613371565b60405180910390fd5b8060056000611479611906565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611526611906565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161156b9190613294565b60405180910390a35050565b611588611582611906565b83611a33565b6115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613551565b60405180910390fd5b6115d384848484611e51565b50505050565b60606115e48261190e565b611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a906134b1565b60405180910390fd5b600061162d611ead565b9050600081511161164d5760405180602001604052806000815250611678565b8061165784611f3f565b6040516020016116689291906131e7565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61171c611906565b73ffffffffffffffffffffffffffffffffffffffff1661173a611265565b73ffffffffffffffffffffffffffffffffffffffff1614611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613471565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613311565b60405180910390fd5b61180981611d8b565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118ef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118ff57506118fe826120a0565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119ed83610fb1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a3e8261190e565b611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490613391565b60405180910390fd5b6000611a8883610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611af757508373ffffffffffffffffffffffffffffffffffffffff16611adf846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b085750611b078185611680565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b3182610fb1565b73ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90613491565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee90613351565b60405180910390fd5b611c0283838361210a565b611c0d60008261197a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5d9190613790565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb491906136af565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611d8782826040518060200160405280600081525061221e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e5c848484611b11565b611e6884848484612279565b611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e906132f1565b60405180910390fd5b50505050565b6060600b8054611ebc9061387a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee89061387a565b8015611f355780601f10611f0a57610100808354040283529160200191611f35565b820191906000526020600020905b815481529060010190602001808311611f1857829003601f168201915b5050505050905090565b60606000821415611f87576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061209b565b600082905060005b60008214611fb9578080611fa2906138dd565b915050600a82611fb29190613705565b9150611f8f565b60008167ffffffffffffffff811115611fd557611fd4613a42565b5b6040519080825280601f01601f1916602001820160405280156120075781602001600182028036833780820191505090505b5090505b60008514612094576001826120209190613790565b9150600a8561202f9190613926565b603061203b91906136af565b60f81b81838151811061205157612050613a13565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561208d9190613705565b945061200b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61211583838361181f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121585761215381612410565b612197565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612196576121958382612459565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121da576121d5816125c6565b612219565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612218576122178282612697565b5b5b505050565b6122288383612716565b6122356000848484612279565b612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906132f1565b60405180910390fd5b505050565b600061229a8473ffffffffffffffffffffffffffffffffffffffff1661180c565b15612403578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c3611906565b8786866040518563ffffffff1660e01b81526004016122e59493929190613226565b602060405180830381600087803b1580156122ff57600080fd5b505af192505050801561233057506040513d601f19601f8201168201806040525081019061232d9190612ced565b60015b6123b3573d8060008114612360576040519150601f19603f3d011682016040523d82523d6000602084013e612365565b606091505b506000815114156123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a2906132f1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612408565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161246684611063565b6124709190613790565b9050600060076000848152602001908152602001600020549050818114612555576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506125da9190613790565b905060006009600084815260200190815260200160002054905060006008838154811061260a57612609613a13565b5b90600052602060002001549050806008838154811061262c5761262b613a13565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061267b5761267a6139e4565b5b6001900381819060005260206000200160009055905550505050565b60006126a283611063565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277d90613411565b60405180910390fd5b61278f8161190e565b156127cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c690613331565b60405180910390fd5b6127db6000838361210a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461282b91906136af565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546128f09061387a565b90600052602060002090601f0160209004810192826129125760008555612959565b82601f1061292b57805160ff1916838001178555612959565b82800160010185558215612959579182015b8281111561295857825182559160200191906001019061293d565b5b509050612966919061296a565b5090565b5b8082111561298357600081600090555060010161296b565b5090565b600061299a612995846135d1565b6135ac565b9050828152602081018484840111156129b6576129b5613a76565b5b6129c1848285613838565b509392505050565b60006129dc6129d784613602565b6135ac565b9050828152602081018484840111156129f8576129f7613a76565b5b612a03848285613838565b509392505050565b600081359050612a1a81614056565b92915050565b600081359050612a2f8161406d565b92915050565b600081359050612a4481614084565b92915050565b600081519050612a5981614084565b92915050565b600082601f830112612a7457612a73613a71565b5b8135612a84848260208601612987565b91505092915050565b600082601f830112612aa257612aa1613a71565b5b8135612ab28482602086016129c9565b91505092915050565b600081359050612aca8161409b565b92915050565b600060208284031215612ae657612ae5613a80565b5b6000612af484828501612a0b565b91505092915050565b60008060408385031215612b1457612b13613a80565b5b6000612b2285828601612a0b565b9250506020612b3385828601612a0b565b9150509250929050565b600080600060608486031215612b5657612b55613a80565b5b6000612b6486828701612a0b565b9350506020612b7586828701612a0b565b9250506040612b8686828701612abb565b9150509250925092565b60008060008060808587031215612baa57612ba9613a80565b5b6000612bb887828801612a0b565b9450506020612bc987828801612a0b565b9350506040612bda87828801612abb565b925050606085013567ffffffffffffffff811115612bfb57612bfa613a7b565b5b612c0787828801612a5f565b91505092959194509250565b60008060408385031215612c2a57612c29613a80565b5b6000612c3885828601612a0b565b9250506020612c4985828601612a20565b9150509250929050565b60008060408385031215612c6a57612c69613a80565b5b6000612c7885828601612a0b565b9250506020612c8985828601612abb565b9150509250929050565b600060208284031215612ca957612ca8613a80565b5b6000612cb784828501612a20565b91505092915050565b600060208284031215612cd657612cd5613a80565b5b6000612ce484828501612a35565b91505092915050565b600060208284031215612d0357612d02613a80565b5b6000612d1184828501612a4a565b91505092915050565b600060208284031215612d3057612d2f613a80565b5b600082013567ffffffffffffffff811115612d4e57612d4d613a7b565b5b612d5a84828501612a8d565b91505092915050565b600060208284031215612d7957612d78613a80565b5b6000612d8784828501612abb565b91505092915050565b6000612d9c83836131c9565b60208301905092915050565b612db1816137c4565b82525050565b6000612dc282613643565b612dcc8185613671565b9350612dd783613633565b8060005b83811015612e08578151612def8882612d90565b9750612dfa83613664565b925050600181019050612ddb565b5085935050505092915050565b612e1e816137d6565b82525050565b6000612e2f8261364e565b612e398185613682565b9350612e49818560208601613847565b612e5281613a85565b840191505092915050565b6000612e6882613659565b612e728185613693565b9350612e82818560208601613847565b612e8b81613a85565b840191505092915050565b6000612ea182613659565b612eab81856136a4565b9350612ebb818560208601613847565b80840191505092915050565b6000612ed4602b83613693565b9150612edf82613a96565b604082019050919050565b6000612ef7603283613693565b9150612f0282613ae5565b604082019050919050565b6000612f1a602683613693565b9150612f2582613b34565b604082019050919050565b6000612f3d601c83613693565b9150612f4882613b83565b602082019050919050565b6000612f60602483613693565b9150612f6b82613bac565b604082019050919050565b6000612f83601983613693565b9150612f8e82613bfb565b602082019050919050565b6000612fa6602c83613693565b9150612fb182613c24565b604082019050919050565b6000612fc9603883613693565b9150612fd482613c73565b604082019050919050565b6000612fec602a83613693565b9150612ff782613cc2565b604082019050919050565b600061300f602983613693565b915061301a82613d11565b604082019050919050565b6000613032602083613693565b915061303d82613d60565b602082019050919050565b6000613055600b83613693565b915061306082613d89565b602082019050919050565b6000613078602c83613693565b915061308382613db2565b604082019050919050565b600061309b602083613693565b91506130a682613e01565b602082019050919050565b60006130be602983613693565b91506130c982613e2a565b604082019050919050565b60006130e1602f83613693565b91506130ec82613e79565b604082019050919050565b6000613104602c83613693565b915061310f82613ec8565b604082019050919050565b6000613127602183613693565b915061313282613f17565b604082019050919050565b600061314a601683613693565b915061315582613f66565b602082019050919050565b600061316d601983613693565b915061317882613f8f565b602082019050919050565b6000613190603183613693565b915061319b82613fb8565b604082019050919050565b60006131b3602c83613693565b91506131be82614007565b604082019050919050565b6131d28161382e565b82525050565b6131e18161382e565b82525050565b60006131f38285612e96565b91506131ff8284612e96565b91508190509392505050565b60006020820190506132206000830184612da8565b92915050565b600060808201905061323b6000830187612da8565b6132486020830186612da8565b61325560408301856131d8565b81810360608301526132678184612e24565b905095945050505050565b6000602082019050818103600083015261328c8184612db7565b905092915050565b60006020820190506132a96000830184612e15565b92915050565b600060208201905081810360008301526132c98184612e5d565b905092915050565b600060208201905081810360008301526132ea81612ec7565b9050919050565b6000602082019050818103600083015261330a81612eea565b9050919050565b6000602082019050818103600083015261332a81612f0d565b9050919050565b6000602082019050818103600083015261334a81612f30565b9050919050565b6000602082019050818103600083015261336a81612f53565b9050919050565b6000602082019050818103600083015261338a81612f76565b9050919050565b600060208201905081810360008301526133aa81612f99565b9050919050565b600060208201905081810360008301526133ca81612fbc565b9050919050565b600060208201905081810360008301526133ea81612fdf565b9050919050565b6000602082019050818103600083015261340a81613002565b9050919050565b6000602082019050818103600083015261342a81613025565b9050919050565b6000602082019050818103600083015261344a81613048565b9050919050565b6000602082019050818103600083015261346a8161306b565b9050919050565b6000602082019050818103600083015261348a8161308e565b9050919050565b600060208201905081810360008301526134aa816130b1565b9050919050565b600060208201905081810360008301526134ca816130d4565b9050919050565b600060208201905081810360008301526134ea816130f7565b9050919050565b6000602082019050818103600083015261350a8161311a565b9050919050565b6000602082019050818103600083015261352a8161313d565b9050919050565b6000602082019050818103600083015261354a81613160565b9050919050565b6000602082019050818103600083015261356a81613183565b9050919050565b6000602082019050818103600083015261358a816131a6565b9050919050565b60006020820190506135a660008301846131d8565b92915050565b60006135b66135c7565b90506135c282826138ac565b919050565b6000604051905090565b600067ffffffffffffffff8211156135ec576135eb613a42565b5b6135f582613a85565b9050602081019050919050565b600067ffffffffffffffff82111561361d5761361c613a42565b5b61362682613a85565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136ba8261382e565b91506136c58361382e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136fa576136f9613957565b5b828201905092915050565b60006137108261382e565b915061371b8361382e565b92508261372b5761372a613986565b5b828204905092915050565b60006137418261382e565b915061374c8361382e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561378557613784613957565b5b828202905092915050565b600061379b8261382e565b91506137a68361382e565b9250828210156137b9576137b8613957565b5b828203905092915050565b60006137cf8261380e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561386557808201518184015260208101905061384a565b83811115613874576000848401525b50505050565b6000600282049050600182168061389257607f821691505b602082108114156138a6576138a56139b5565b5b50919050565b6138b582613a85565b810181811067ffffffffffffffff821117156138d4576138d3613a42565b5b80604052505050565b60006138e88261382e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561391b5761391a613957565b5b600182019050919050565b60006139318261382e565b915061393c8361382e565b92508261394c5761394b613986565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520506175736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f752063616e2061646f70742061206d6178696d756d206f66205f6d61784d60008201527f696e742050656e6775696e730000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61405f816137c4565b811461406a57600080fd5b50565b614076816137d6565b811461408157600080fd5b50565b61408d816137e2565b811461409857600080fd5b50565b6140a48161382e565b81146140af57600080fd5b5056fea264697066735822122056b815489d49259cf28024e7d18ce4a72d919141bc666bb487f08f1c9527640e64736f6c63430008050033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f706172747970656e6775696e732e636c75622f6170692f70656e6775696e2f00000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://partypenguins.club/api/penguin/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [2] : 68747470733a2f2f706172747970656e6775696e732e636c75622f6170692f70
Arg [3] : 656e6775696e2f00000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ 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.