ERC-721
NFT
Overview
Max Total Supply
9,997 DoE
Holders
2,683
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 DoELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DoE
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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(); } } // File: contracts/doe.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract DoE is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable { event Claim (address indexed buyer, uint256 startWith, uint256 batch); event Received(address, uint256); /// FILL INFO HERE address payable public clientWallet; string public baseURI = "ipfs://QmVoKgyeHD6KLzUyScb72x7nAtUjAqr5PEDoWxdFYCrWer/"; string private _name = "Dogs of Elon"; string private _symbol = "DoE"; uint256 public totalCount = 10000; //Maximum Supply uint256 public initialReserve = 100; //Initial Team Reserve uint256 public price = 0.08 * 10**18; //Mint Price // DO NOT CHANGE uint256 public startindId = 101; uint256 public maxBatch = 20; //Max Mint uint256 public burnCount; bool public canMint = false; constructor() ERC721(_name, _symbol) { transferOwnership(msg.sender); clientWallet = payable(msg.sender); } receive() external payable { emit Received(msg.sender, msg.value); } function setBaseURI(string memory _newURI) public onlyOwner { baseURI = _newURI; } function setTokenURI(uint256 _tokenId, string memory _tokenURI) public onlyOwner { _setTokenURI(_tokenId, _tokenURI); } function setCanMint(bool _canMint) public onlyOwner { canMint = _canMint; } function claim(uint256 _batchCount) payable public {//Will add in getMintTime check using block.timestamp here tomorrow require(canMint, "Claiming not active"); require(_batchCount > 0 && _batchCount <= maxBatch, "Maximum batch exceeded"); require((totalSupply() + initialReserve) + _batchCount + burnCount <= totalCount, "Sale over"); require(msg.value == _batchCount * price, "Insufficient value"); require(balanceOf(msg.sender) + _batchCount <= maxBatch, "Personal mint amount exceeded"); emit Claim(_msgSender(), startindId, _batchCount); for(uint256 i=0; i< _batchCount; i++){ require(startindId <= totalCount); _mint(_msgSender(), startindId++); } _walletDistro(); } function changeWallets( address payable _clientWallet ) external onlyOwner { clientWallet = _clientWallet; } function rescueEther() public onlyOwner { _walletDistro(); } function rescueEtherAmount(uint256 _amount) public onlyOwner { (bool sent,) = clientWallet.call{value: _amount}(""); require(sent, "Failed to send Ether"); } function walletInventory(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } /** * Override isApprovedForAll to auto-approve OS's proxy contract */ function isApprovedForAll( address _owner, address _operator ) public override view returns (bool isOperator) { // if OpenSea's ERC721 Proxy Address is detected, auto-return true if (_operator == address(0xa5409ec958C83C3f309868babACA7c86DCB077c1)) { // OpenSea approval return true; } // otherwise, use the default ERC721.isApprovedForAll() return ERC721.isApprovedForAll(_owner, _operator); } function safeMint(address to, uint256 tokenId) public onlyOwner { require((totalSupply() + burnCount) < totalCount); require(tokenId <= initialReserve); require(tokenId >= 1); _safeMint(to, tokenId); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function burn(uint256 tokenId) public { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId)); _burn(tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { burnCount++; super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory){ return super.tokenURI(tokenId); } //THIS IS MANDATORY or REMOVE DO NOT FORGET function _baseURI() internal view virtual override returns (string memory){ return baseURI; } function _walletDistro() internal { uint256 contractBalance = address(this).balance; (bool sentC,) = clientWallet.call{value: contractBalance}(""); require(sentC, "failed to send to client"); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"batch","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_clientWallet","type":"address"}],"name":"changeWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batchCount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"clientWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"initialReserve","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":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueEtherAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_canMint","type":"bool"}],"name":"setCanMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startindId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"walletInventory","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526040518060600160405280603681526020016200565a60369139600d908051906020019062000035929190620004fb565b506040518060400160405280600c81526020017f446f6773206f6620456c6f6e0000000000000000000000000000000000000000815250600e908051906020019062000083929190620004fb565b506040518060400160405280600381526020017f446f450000000000000000000000000000000000000000000000000000000000815250600f9080519060200190620000d1929190620004fb565b50612710601055606460115567011c37937e0800006012556065601355601480556000601660006101000a81548160ff0219169083151502179055503480156200011a57600080fd5b50600e80546200012a906200064e565b80601f016020809104026020016040519081016040528092919081815260200182805462000158906200064e565b8015620001a95780601f106200017d57610100808354040283529160200191620001a9565b820191906000526020600020905b8154815290600101906020018083116200018b57829003601f168201915b5050505050600f8054620001bd906200064e565b80601f0160208091040260200160405190810160405280929190818152602001828054620001eb906200064e565b80156200023c5780601f1062000210576101008083540402835291602001916200023c565b820191906000526020600020905b8154815290600101906020018083116200021e57829003601f168201915b5050505050816000908051906020019062000259929190620004fb565b50806001908051906020019062000272929190620004fb565b5050506200029562000289620002ed60201b60201c565b620002f560201b60201c565b620002a633620003bb60201b60201c565b33600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200072b565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003cb620002ed60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003f1620004d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200044a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000441906200061b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620004bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b490620005f9565b60405180910390fd5b620004ce81620002f560201b60201c565b50565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000509906200064e565b90600052602060002090601f0160209004810192826200052d576000855562000579565b82601f106200054857805160ff191683800117855562000579565b8280016001018555821562000579579182015b82811115620005785782518255916020019190600101906200055b565b5b5090506200058891906200058c565b5090565b5b80821115620005a75760008160009055506001016200058d565b5090565b6000620005ba6026836200063d565b9150620005c782620006b3565b604082019050919050565b6000620005e16020836200063d565b9150620005ee8262000702565b602082019050919050565b600060208201905081810360008301526200061481620005ab565b9050919050565b600060208201905081810360008301526200063681620005d2565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200066757607f821691505b602082108114156200067e576200067d62000684565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614f1f806200073b6000396000f3fe6080604052600436106102295760003560e01c806368212cc111610123578063a1448194116100ab578063c4ab12b51161006f578063c4ab12b51461082a578063c87b56dd14610853578063e6fd298214610890578063e985e9c5146108bb578063f2fde38b146108f857610269565b8063a144819414610759578063a22cb46514610782578063b88d4fde146107ab578063bc945480146107d4578063beb9716d146107ff57610269565b806373c51751116100f257806373c51751146106845780638da5cb5b146106af57806395d89b41146106da5780639a57829a14610705578063a035b1fe1461072e57610269565b806368212cc1146105dc5780636c0360eb1461060557806370a0823114610630578063715018a61461066d57610269565b806334eafb11116101b15780634f6ccce7116101755780634f6ccce7146104e3578063524773ce1461052057806355f804b31461054b5780636352211e1461057457806367765b87146105b157610269565b806334eafb111461040d578063379607f5146104385780633f3c11361461045457806342842e0e1461049157806342966c68146104ba57610269565b8063162094c4116101f8578063162094c41461033c57806318160ddd1461036557806320969d071461039057806323b872dd146103a75780632f745c59146103d057610269565b806301ffc9a71461026e57806306fdde03146102ab578063081812fc146102d6578063095ea7b31461031357610269565b36610269577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874333460405161025f929190613e8d565b60405180910390a1005b600080fd5b34801561027a57600080fd5b506102956004803603810190610290919061376e565b610921565b6040516102a29190613ed8565b60405180910390f35b3480156102b757600080fd5b506102c0610933565b6040516102cd9190613ef3565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190613811565b6109c5565b60405161030a9190613e0b565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613701565b610a4a565b005b34801561034857600080fd5b50610363600480360381019061035e919061383e565b610b62565b005b34801561037157600080fd5b5061037a610bec565b6040516103879190614275565b60405180910390f35b34801561039c57600080fd5b506103a5610bf9565b005b3480156103b357600080fd5b506103ce60048036038101906103c991906135eb565b610c7f565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190613701565b610cdf565b6040516104049190614275565b60405180910390f35b34801561041957600080fd5b50610422610d84565b60405161042f9190614275565b60405180910390f35b610452600480360381019061044d9190613811565b610d8a565b005b34801561046057600080fd5b5061047b60048036038101906104769190613551565b610ffd565b6040516104889190613eb6565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b391906135eb565b6110ab565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190613811565b6110cb565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613811565b6110f1565b6040516105179190614275565b60405180910390f35b34801561052c57600080fd5b50610535611162565b6040516105429190614275565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d91906137c8565b611168565b005b34801561058057600080fd5b5061059b60048036038101906105969190613811565b6111fe565b6040516105a89190613e0b565b60405180910390f35b3480156105bd57600080fd5b506105c66112b0565b6040516105d39190614275565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613811565b6112b6565b005b34801561061157600080fd5b5061061a611404565b6040516106279190613ef3565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190613551565b611492565b6040516106649190614275565b60405180910390f35b34801561067957600080fd5b5061068261154a565b005b34801561069057600080fd5b506106996115d2565b6040516106a69190613e26565b60405180910390f35b3480156106bb57600080fd5b506106c46115f8565b6040516106d19190613e0b565b60405180910390f35b3480156106e657600080fd5b506106ef611622565b6040516106fc9190613ef3565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190613741565b6116b4565b005b34801561073a57600080fd5b5061074361174d565b6040516107509190614275565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190613701565b611753565b005b34801561078e57600080fd5b506107a960048036038101906107a491906136c1565b61181c565b005b3480156107b757600080fd5b506107d260048036038101906107cd919061363e565b61199d565b005b3480156107e057600080fd5b506107e96119ff565b6040516107f69190614275565b60405180910390f35b34801561080b57600080fd5b50610814611a05565b6040516108219190613ed8565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c919061357e565b611a18565b005b34801561085f57600080fd5b5061087a60048036038101906108759190613811565b611ad8565b6040516108879190613ef3565b60405180910390f35b34801561089c57600080fd5b506108a5611aea565b6040516108b29190614275565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd91906135ab565b611af0565b6040516108ef9190613ed8565b60405180910390f35b34801561090457600080fd5b5061091f600480360381019061091a9190613551565b611b56565b005b600061092c82611c4e565b9050919050565b606060008054610942906145a4565b80601f016020809104026020016040519081016040528092919081815260200182805461096e906145a4565b80156109bb5780601f10610990576101008083540402835291602001916109bb565b820191906000526020600020905b81548152906001019060200180831161099e57829003601f168201915b5050505050905090565b60006109d082611cc8565b610a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0690614135565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a55826111fe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd906141d5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae5611d34565b73ffffffffffffffffffffffffffffffffffffffff161480610b145750610b1381610b0e611d34565b611af0565b5b610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90614075565b60405180910390fd5b610b5d8383611d3c565b505050565b610b6a611d34565b73ffffffffffffffffffffffffffffffffffffffff16610b886115f8565b73ffffffffffffffffffffffffffffffffffffffff1614610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590614155565b60405180910390fd5b610be88282611df5565b5050565b6000600880549050905090565b610c01611d34565b73ffffffffffffffffffffffffffffffffffffffff16610c1f6115f8565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90614155565b60405180910390fd5b610c7d611e69565b565b610c90610c8a611d34565b82611f40565b610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690614215565b60405180910390fd5b610cda83838361201e565b505050565b6000610cea83611492565b8210610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290613f15565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b601660009054906101000a900460ff16610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090613ff5565b60405180910390fd5b600081118015610deb57506014548111155b610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e21906141f5565b60405180910390fd5b60105460155482601154610e3c610bec565b610e4691906143c7565b610e5091906143c7565b610e5a91906143c7565b1115610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290614055565b60405180910390fd5b60125481610ea9919061444e565b3414610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee1906141b5565b60405180910390fd5b60145481610ef733611492565b610f0191906143c7565b1115610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990614015565b60405180910390fd5b610f4a611d34565b73ffffffffffffffffffffffffffffffffffffffff167f34fcbac0073d7c3d388e51312faf357774904998eeb8fca628b9e6f65ee1cbf760135483604051610f93929190614290565b60405180910390a260005b81811015610ff1576010546013541115610fb757600080fd5b610fde610fc2611d34565b60136000815480929190610fd590614607565b9190505561227a565b8080610fe990614607565b915050610f9e565b50610ffa611e69565b50565b6060600061100a83611492565b905060008167ffffffffffffffff8111156110285761102761476c565b5b6040519080825280602002602001820160405280156110565781602001602082028036833780820191505090505b50905060005b828110156110a05761106e8582610cdf565b8282815181106110815761108061473d565b5b602002602001018181525050808061109890614607565b91505061105c565b508092505050919050565b6110c68383836040518060200160405280600081525061199d565b505050565b6110dc6110d6611d34565b82611f40565b6110e557600080fd5b6110ee81612448565b50565b60006110fb610bec565b821061113c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113390614255565b60405180910390fd5b600882815481106111505761114f61473d565b5b90600052602060002001549050919050565b60155481565b611170611d34565b73ffffffffffffffffffffffffffffffffffffffff1661118e6115f8565b73ffffffffffffffffffffffffffffffffffffffff16146111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90614155565b60405180910390fd5b80600d90805190602001906111fa929190613310565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e906140b5565b60405180910390fd5b80915050919050565b60145481565b6112be611d34565b73ffffffffffffffffffffffffffffffffffffffff166112dc6115f8565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990614155565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161137a90613df6565b60006040518083038185875af1925050503d80600081146113b7576040519150601f19603f3d011682016040523d82523d6000602084013e6113bc565b606091505b5050905080611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790613f95565b60405180910390fd5b5050565b600d8054611411906145a4565b80601f016020809104026020016040519081016040528092919081815260200182805461143d906145a4565b801561148a5780601f1061145f5761010080835404028352916020019161148a565b820191906000526020600020905b81548152906001019060200180831161146d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90614095565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611552611d34565b73ffffffffffffffffffffffffffffffffffffffff166115706115f8565b73ffffffffffffffffffffffffffffffffffffffff16146115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90614155565b60405180910390fd5b6115d0600061246c565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611631906145a4565b80601f016020809104026020016040519081016040528092919081815260200182805461165d906145a4565b80156116aa5780601f1061167f576101008083540402835291602001916116aa565b820191906000526020600020905b81548152906001019060200180831161168d57829003601f168201915b5050505050905090565b6116bc611d34565b73ffffffffffffffffffffffffffffffffffffffff166116da6115f8565b73ffffffffffffffffffffffffffffffffffffffff1614611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790614155565b60405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b60125481565b61175b611d34565b73ffffffffffffffffffffffffffffffffffffffff166117796115f8565b73ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690614155565b60405180910390fd5b6010546015546117dd610bec565b6117e791906143c7565b106117f157600080fd5b60115481111561180057600080fd5b600181101561180e57600080fd5b6118188282612532565b5050565b611824611d34565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990613fd5565b60405180910390fd5b806005600061189f611d34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661194c611d34565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119919190613ed8565b60405180910390a35050565b6119ae6119a8611d34565b83611f40565b6119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490614215565b60405180910390fd5b6119f984848484612550565b50505050565b60135481565b601660009054906101000a900460ff1681565b611a20611d34565b73ffffffffffffffffffffffffffffffffffffffff16611a3e6115f8565b73ffffffffffffffffffffffffffffffffffffffff1614611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90614155565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060611ae3826125ac565b9050919050565b60115481565b600073a5409ec958c83c3f309868babaca7c86dcb077c173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b435760019050611b50565b611b4d83836126fe565b90505b92915050565b611b5e611d34565b73ffffffffffffffffffffffffffffffffffffffff16611b7c6115f8565b73ffffffffffffffffffffffffffffffffffffffff1614611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990614155565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990613f55565b60405180910390fd5b611c4b8161246c565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cc15750611cc082612792565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611daf836111fe565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611dfe82611cc8565b611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e34906140d5565b60405180910390fd5b80600a60008481526020019081526020016000209080519060200190611e64929190613310565b505050565b60004790506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611eb690613df6565b60006040518083038185875af1925050503d8060008114611ef3576040519150601f19603f3d011682016040523d82523d6000602084013e611ef8565b606091505b5050905080611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3390614235565b60405180910390fd5b5050565b6000611f4b82611cc8565b611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190614035565b60405180910390fd5b6000611f95836111fe565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061200457508373ffffffffffffffffffffffffffffffffffffffff16611fec846109c5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061201557506120148185611af0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661203e826111fe565b73ffffffffffffffffffffffffffffffffffffffff1614612094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208b90614175565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb90613fb5565b60405180910390fd5b61210f838383612874565b61211a600082611d3c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461216a91906144a8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121c191906143c7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e1906140f5565b60405180910390fd5b6122f381611cc8565b15612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a90613f75565b60405180910390fd5b61233f60008383612874565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461238f91906143c7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6015600081548092919061245b90614607565b919050555061246981612884565b50565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61254c8282604051806020016040528060008152506128d7565b5050565b61255b84848461201e565b61256784848484612932565b6125a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259d90613f35565b60405180910390fd5b50505050565b60606125b782611cc8565b6125f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ed90614115565b60405180910390fd5b6000600a60008481526020019081526020016000208054612616906145a4565b80601f0160208091040260200160405190810160405280929190818152602001828054612642906145a4565b801561268f5780601f106126645761010080835404028352916020019161268f565b820191906000526020600020905b81548152906001019060200180831161267257829003601f168201915b5050505050905060006126a0612ac9565b90506000815114156126b65781925050506126f9565b6000825111156126eb5780826040516020016126d3929190613dd2565b604051602081830303815290604052925050506126f9565b6126f484612b5b565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061285d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061286d575061286c82612c02565b5b9050919050565b61287f838383612c6c565b505050565b61288d81612d80565b6000600a600083815260200190815260200160002080546128ad906145a4565b9050146128d457600a600082815260200190815260200160002060006128d39190613396565b5b50565b6128e1838361227a565b6128ee6000848484612932565b61292d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292490613f35565b60405180910390fd5b505050565b60006129538473ffffffffffffffffffffffffffffffffffffffff16612e91565b15612abc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261297c611d34565b8786866040518563ffffffff1660e01b815260040161299e9493929190613e41565b602060405180830381600087803b1580156129b857600080fd5b505af19250505080156129e957506040513d601f19601f820116820180604052508101906129e6919061379b565b60015b612a6c573d8060008114612a19576040519150601f19603f3d011682016040523d82523d6000602084013e612a1e565b606091505b50600081511415612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b90613f35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ac1565b600190505b949350505050565b6060600d8054612ad8906145a4565b80601f0160208091040260200160405190810160405280929190818152602001828054612b04906145a4565b8015612b515780601f10612b2657610100808354040283529160200191612b51565b820191906000526020600020905b815481529060010190602001808311612b3457829003601f168201915b5050505050905090565b6060612b6682611cc8565b612ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9c90614195565b60405180910390fd5b6000612baf612ac9565b90506000815111612bcf5760405180602001604052806000815250612bfa565b80612bd984612ea4565b604051602001612bea929190613dd2565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c77838383613005565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cba57612cb58161300a565b612cf9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612cf857612cf78382613053565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d3c57612d37816131c0565b612d7b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d7a57612d798282613291565b5b5b505050565b6000612d8b826111fe565b9050612d9981600084612874565b612da4600083611d3c565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612df491906144a8565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415612eec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613000565b600082905060005b60008214612f1e578080612f0790614607565b915050600a82612f17919061441d565b9150612ef4565b60008167ffffffffffffffff811115612f3a57612f3961476c565b5b6040519080825280601f01601f191660200182016040528015612f6c5781602001600182028036833780820191505090505b5090505b60008514612ff957600182612f8591906144a8565b9150600a85612f949190614650565b6030612fa091906143c7565b60f81b818381518110612fb657612fb561473d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ff2919061441d565b9450612f70565b8093505050505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161306084611492565b61306a91906144a8565b905060006007600084815260200190815260200160002054905081811461314f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131d491906144a8565b90506000600960008481526020019081526020016000205490506000600883815481106132045761320361473d565b5b9060005260206000200154905080600883815481106132265761322561473d565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132755761327461470e565b5b6001900381819060005260206000200160009055905550505050565b600061329c83611492565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461331c906145a4565b90600052602060002090601f01602090048101928261333e5760008555613385565b82601f1061335757805160ff1916838001178555613385565b82800160010185558215613385579182015b82811115613384578251825591602001919060010190613369565b5b50905061339291906133d6565b5090565b5080546133a2906145a4565b6000825580601f106133b457506133d3565b601f0160209004906000526020600020908101906133d291906133d6565b5b50565b5b808211156133ef5760008160009055506001016133d7565b5090565b6000613406613401846142de565b6142b9565b905082815260208101848484011115613422576134216147a0565b5b61342d848285614562565b509392505050565b60006134486134438461430f565b6142b9565b905082815260208101848484011115613464576134636147a0565b5b61346f848285614562565b509392505050565b60008135905061348681614e76565b92915050565b60008135905061349b81614e8d565b92915050565b6000813590506134b081614ea4565b92915050565b6000813590506134c581614ebb565b92915050565b6000815190506134da81614ebb565b92915050565b600082601f8301126134f5576134f461479b565b5b81356135058482602086016133f3565b91505092915050565b600082601f8301126135235761352261479b565b5b8135613533848260208601613435565b91505092915050565b60008135905061354b81614ed2565b92915050565b600060208284031215613567576135666147aa565b5b600061357584828501613477565b91505092915050565b600060208284031215613594576135936147aa565b5b60006135a28482850161348c565b91505092915050565b600080604083850312156135c2576135c16147aa565b5b60006135d085828601613477565b92505060206135e185828601613477565b9150509250929050565b600080600060608486031215613604576136036147aa565b5b600061361286828701613477565b935050602061362386828701613477565b92505060406136348682870161353c565b9150509250925092565b60008060008060808587031215613658576136576147aa565b5b600061366687828801613477565b945050602061367787828801613477565b93505060406136888782880161353c565b925050606085013567ffffffffffffffff8111156136a9576136a86147a5565b5b6136b5878288016134e0565b91505092959194509250565b600080604083850312156136d8576136d76147aa565b5b60006136e685828601613477565b92505060206136f7858286016134a1565b9150509250929050565b60008060408385031215613718576137176147aa565b5b600061372685828601613477565b92505060206137378582860161353c565b9150509250929050565b600060208284031215613757576137566147aa565b5b6000613765848285016134a1565b91505092915050565b600060208284031215613784576137836147aa565b5b6000613792848285016134b6565b91505092915050565b6000602082840312156137b1576137b06147aa565b5b60006137bf848285016134cb565b91505092915050565b6000602082840312156137de576137dd6147aa565b5b600082013567ffffffffffffffff8111156137fc576137fb6147a5565b5b6138088482850161350e565b91505092915050565b600060208284031215613827576138266147aa565b5b60006138358482850161353c565b91505092915050565b60008060408385031215613855576138546147aa565b5b60006138638582860161353c565b925050602083013567ffffffffffffffff811115613884576138836147a5565b5b6138908582860161350e565b9150509250929050565b60006138a68383613db4565b60208301905092915050565b6138bb816144ee565b82525050565b6138ca816144dc565b82525050565b60006138db82614350565b6138e5818561437e565b93506138f083614340565b8060005b83811015613921578151613908888261389a565b975061391383614371565b9250506001810190506138f4565b5085935050505092915050565b61393781614500565b82525050565b60006139488261435b565b613952818561438f565b9350613962818560208601614571565b61396b816147af565b840191505092915050565b600061398182614366565b61398b81856143ab565b935061399b818560208601614571565b6139a4816147af565b840191505092915050565b60006139ba82614366565b6139c481856143bc565b93506139d4818560208601614571565b80840191505092915050565b60006139ed602b836143ab565b91506139f8826147c0565b604082019050919050565b6000613a106032836143ab565b9150613a1b8261480f565b604082019050919050565b6000613a336026836143ab565b9150613a3e8261485e565b604082019050919050565b6000613a56601c836143ab565b9150613a61826148ad565b602082019050919050565b6000613a796014836143ab565b9150613a84826148d6565b602082019050919050565b6000613a9c6024836143ab565b9150613aa7826148ff565b604082019050919050565b6000613abf6019836143ab565b9150613aca8261494e565b602082019050919050565b6000613ae26013836143ab565b9150613aed82614977565b602082019050919050565b6000613b05601d836143ab565b9150613b10826149a0565b602082019050919050565b6000613b28602c836143ab565b9150613b33826149c9565b604082019050919050565b6000613b4b6009836143ab565b9150613b5682614a18565b602082019050919050565b6000613b6e6038836143ab565b9150613b7982614a41565b604082019050919050565b6000613b91602a836143ab565b9150613b9c82614a90565b604082019050919050565b6000613bb46029836143ab565b9150613bbf82614adf565b604082019050919050565b6000613bd7602e836143ab565b9150613be282614b2e565b604082019050919050565b6000613bfa6020836143ab565b9150613c0582614b7d565b602082019050919050565b6000613c1d6031836143ab565b9150613c2882614ba6565b604082019050919050565b6000613c40602c836143ab565b9150613c4b82614bf5565b604082019050919050565b6000613c636020836143ab565b9150613c6e82614c44565b602082019050919050565b6000613c866029836143ab565b9150613c9182614c6d565b604082019050919050565b6000613ca9602f836143ab565b9150613cb482614cbc565b604082019050919050565b6000613ccc6012836143ab565b9150613cd782614d0b565b602082019050919050565b6000613cef6021836143ab565b9150613cfa82614d34565b604082019050919050565b6000613d126016836143ab565b9150613d1d82614d83565b602082019050919050565b6000613d356000836143a0565b9150613d4082614dac565b600082019050919050565b6000613d586031836143ab565b9150613d6382614daf565b604082019050919050565b6000613d7b6018836143ab565b9150613d8682614dfe565b602082019050919050565b6000613d9e602c836143ab565b9150613da982614e27565b604082019050919050565b613dbd81614558565b82525050565b613dcc81614558565b82525050565b6000613dde82856139af565b9150613dea82846139af565b91508190509392505050565b6000613e0182613d28565b9150819050919050565b6000602082019050613e2060008301846138c1565b92915050565b6000602082019050613e3b60008301846138b2565b92915050565b6000608082019050613e5660008301876138c1565b613e6360208301866138c1565b613e706040830185613dc3565b8181036060830152613e82818461393d565b905095945050505050565b6000604082019050613ea260008301856138c1565b613eaf6020830184613dc3565b9392505050565b60006020820190508181036000830152613ed081846138d0565b905092915050565b6000602082019050613eed600083018461392e565b92915050565b60006020820190508181036000830152613f0d8184613976565b905092915050565b60006020820190508181036000830152613f2e816139e0565b9050919050565b60006020820190508181036000830152613f4e81613a03565b9050919050565b60006020820190508181036000830152613f6e81613a26565b9050919050565b60006020820190508181036000830152613f8e81613a49565b9050919050565b60006020820190508181036000830152613fae81613a6c565b9050919050565b60006020820190508181036000830152613fce81613a8f565b9050919050565b60006020820190508181036000830152613fee81613ab2565b9050919050565b6000602082019050818103600083015261400e81613ad5565b9050919050565b6000602082019050818103600083015261402e81613af8565b9050919050565b6000602082019050818103600083015261404e81613b1b565b9050919050565b6000602082019050818103600083015261406e81613b3e565b9050919050565b6000602082019050818103600083015261408e81613b61565b9050919050565b600060208201905081810360008301526140ae81613b84565b9050919050565b600060208201905081810360008301526140ce81613ba7565b9050919050565b600060208201905081810360008301526140ee81613bca565b9050919050565b6000602082019050818103600083015261410e81613bed565b9050919050565b6000602082019050818103600083015261412e81613c10565b9050919050565b6000602082019050818103600083015261414e81613c33565b9050919050565b6000602082019050818103600083015261416e81613c56565b9050919050565b6000602082019050818103600083015261418e81613c79565b9050919050565b600060208201905081810360008301526141ae81613c9c565b9050919050565b600060208201905081810360008301526141ce81613cbf565b9050919050565b600060208201905081810360008301526141ee81613ce2565b9050919050565b6000602082019050818103600083015261420e81613d05565b9050919050565b6000602082019050818103600083015261422e81613d4b565b9050919050565b6000602082019050818103600083015261424e81613d6e565b9050919050565b6000602082019050818103600083015261426e81613d91565b9050919050565b600060208201905061428a6000830184613dc3565b92915050565b60006040820190506142a56000830185613dc3565b6142b26020830184613dc3565b9392505050565b60006142c36142d4565b90506142cf82826145d6565b919050565b6000604051905090565b600067ffffffffffffffff8211156142f9576142f861476c565b5b614302826147af565b9050602081019050919050565b600067ffffffffffffffff82111561432a5761432961476c565b5b614333826147af565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143d282614558565b91506143dd83614558565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561441257614411614681565b5b828201905092915050565b600061442882614558565b915061443383614558565b925082614443576144426146b0565b5b828204905092915050565b600061445982614558565b915061446483614558565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561449d5761449c614681565b5b828202905092915050565b60006144b382614558565b91506144be83614558565b9250828210156144d1576144d0614681565b5b828203905092915050565b60006144e782614538565b9050919050565b60006144f982614538565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561458f578082015181840152602081019050614574565b8381111561459e576000848401525b50505050565b600060028204905060018216806145bc57607f821691505b602082108114156145d0576145cf6146df565b5b50919050565b6145df826147af565b810181811067ffffffffffffffff821117156145fe576145fd61476c565b5b80604052505050565b600061461282614558565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561464557614644614681565b5b600182019050919050565b600061465b82614558565b915061466683614558565b925082614676576146756146b0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f436c61696d696e67206e6f742061637469766500000000000000000000000000600082015250565b7f506572736f6e616c206d696e7420616d6f756e74206578636565646564000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206f7665720000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e73756666696369656e742076616c75650000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20626174636820657863656564656400000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6661696c656420746f2073656e6420746f20636c69656e740000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614e7f816144dc565b8114614e8a57600080fd5b50565b614e96816144ee565b8114614ea157600080fd5b50565b614ead81614500565b8114614eb857600080fd5b50565b614ec48161450c565b8114614ecf57600080fd5b50565b614edb81614558565b8114614ee657600080fd5b5056fea2646970667358221220cc4989e46a211b26428422cfbd949944d116cb1cbe0d93a6f7c69c9eec053fe064736f6c63430008070033697066733a2f2f516d566f4b6779654844364b4c7a5579536362373278376e4174556a417172355045446f577864465943725765722f
Deployed Bytecode
0x6080604052600436106102295760003560e01c806368212cc111610123578063a1448194116100ab578063c4ab12b51161006f578063c4ab12b51461082a578063c87b56dd14610853578063e6fd298214610890578063e985e9c5146108bb578063f2fde38b146108f857610269565b8063a144819414610759578063a22cb46514610782578063b88d4fde146107ab578063bc945480146107d4578063beb9716d146107ff57610269565b806373c51751116100f257806373c51751146106845780638da5cb5b146106af57806395d89b41146106da5780639a57829a14610705578063a035b1fe1461072e57610269565b806368212cc1146105dc5780636c0360eb1461060557806370a0823114610630578063715018a61461066d57610269565b806334eafb11116101b15780634f6ccce7116101755780634f6ccce7146104e3578063524773ce1461052057806355f804b31461054b5780636352211e1461057457806367765b87146105b157610269565b806334eafb111461040d578063379607f5146104385780633f3c11361461045457806342842e0e1461049157806342966c68146104ba57610269565b8063162094c4116101f8578063162094c41461033c57806318160ddd1461036557806320969d071461039057806323b872dd146103a75780632f745c59146103d057610269565b806301ffc9a71461026e57806306fdde03146102ab578063081812fc146102d6578063095ea7b31461031357610269565b36610269577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874333460405161025f929190613e8d565b60405180910390a1005b600080fd5b34801561027a57600080fd5b506102956004803603810190610290919061376e565b610921565b6040516102a29190613ed8565b60405180910390f35b3480156102b757600080fd5b506102c0610933565b6040516102cd9190613ef3565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190613811565b6109c5565b60405161030a9190613e0b565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613701565b610a4a565b005b34801561034857600080fd5b50610363600480360381019061035e919061383e565b610b62565b005b34801561037157600080fd5b5061037a610bec565b6040516103879190614275565b60405180910390f35b34801561039c57600080fd5b506103a5610bf9565b005b3480156103b357600080fd5b506103ce60048036038101906103c991906135eb565b610c7f565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190613701565b610cdf565b6040516104049190614275565b60405180910390f35b34801561041957600080fd5b50610422610d84565b60405161042f9190614275565b60405180910390f35b610452600480360381019061044d9190613811565b610d8a565b005b34801561046057600080fd5b5061047b60048036038101906104769190613551565b610ffd565b6040516104889190613eb6565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b391906135eb565b6110ab565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190613811565b6110cb565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613811565b6110f1565b6040516105179190614275565b60405180910390f35b34801561052c57600080fd5b50610535611162565b6040516105429190614275565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d91906137c8565b611168565b005b34801561058057600080fd5b5061059b60048036038101906105969190613811565b6111fe565b6040516105a89190613e0b565b60405180910390f35b3480156105bd57600080fd5b506105c66112b0565b6040516105d39190614275565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613811565b6112b6565b005b34801561061157600080fd5b5061061a611404565b6040516106279190613ef3565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190613551565b611492565b6040516106649190614275565b60405180910390f35b34801561067957600080fd5b5061068261154a565b005b34801561069057600080fd5b506106996115d2565b6040516106a69190613e26565b60405180910390f35b3480156106bb57600080fd5b506106c46115f8565b6040516106d19190613e0b565b60405180910390f35b3480156106e657600080fd5b506106ef611622565b6040516106fc9190613ef3565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190613741565b6116b4565b005b34801561073a57600080fd5b5061074361174d565b6040516107509190614275565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190613701565b611753565b005b34801561078e57600080fd5b506107a960048036038101906107a491906136c1565b61181c565b005b3480156107b757600080fd5b506107d260048036038101906107cd919061363e565b61199d565b005b3480156107e057600080fd5b506107e96119ff565b6040516107f69190614275565b60405180910390f35b34801561080b57600080fd5b50610814611a05565b6040516108219190613ed8565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c919061357e565b611a18565b005b34801561085f57600080fd5b5061087a60048036038101906108759190613811565b611ad8565b6040516108879190613ef3565b60405180910390f35b34801561089c57600080fd5b506108a5611aea565b6040516108b29190614275565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd91906135ab565b611af0565b6040516108ef9190613ed8565b60405180910390f35b34801561090457600080fd5b5061091f600480360381019061091a9190613551565b611b56565b005b600061092c82611c4e565b9050919050565b606060008054610942906145a4565b80601f016020809104026020016040519081016040528092919081815260200182805461096e906145a4565b80156109bb5780601f10610990576101008083540402835291602001916109bb565b820191906000526020600020905b81548152906001019060200180831161099e57829003601f168201915b5050505050905090565b60006109d082611cc8565b610a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0690614135565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a55826111fe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd906141d5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae5611d34565b73ffffffffffffffffffffffffffffffffffffffff161480610b145750610b1381610b0e611d34565b611af0565b5b610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90614075565b60405180910390fd5b610b5d8383611d3c565b505050565b610b6a611d34565b73ffffffffffffffffffffffffffffffffffffffff16610b886115f8565b73ffffffffffffffffffffffffffffffffffffffff1614610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590614155565b60405180910390fd5b610be88282611df5565b5050565b6000600880549050905090565b610c01611d34565b73ffffffffffffffffffffffffffffffffffffffff16610c1f6115f8565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90614155565b60405180910390fd5b610c7d611e69565b565b610c90610c8a611d34565b82611f40565b610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690614215565b60405180910390fd5b610cda83838361201e565b505050565b6000610cea83611492565b8210610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290613f15565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b601660009054906101000a900460ff16610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090613ff5565b60405180910390fd5b600081118015610deb57506014548111155b610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e21906141f5565b60405180910390fd5b60105460155482601154610e3c610bec565b610e4691906143c7565b610e5091906143c7565b610e5a91906143c7565b1115610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290614055565b60405180910390fd5b60125481610ea9919061444e565b3414610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee1906141b5565b60405180910390fd5b60145481610ef733611492565b610f0191906143c7565b1115610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990614015565b60405180910390fd5b610f4a611d34565b73ffffffffffffffffffffffffffffffffffffffff167f34fcbac0073d7c3d388e51312faf357774904998eeb8fca628b9e6f65ee1cbf760135483604051610f93929190614290565b60405180910390a260005b81811015610ff1576010546013541115610fb757600080fd5b610fde610fc2611d34565b60136000815480929190610fd590614607565b9190505561227a565b8080610fe990614607565b915050610f9e565b50610ffa611e69565b50565b6060600061100a83611492565b905060008167ffffffffffffffff8111156110285761102761476c565b5b6040519080825280602002602001820160405280156110565781602001602082028036833780820191505090505b50905060005b828110156110a05761106e8582610cdf565b8282815181106110815761108061473d565b5b602002602001018181525050808061109890614607565b91505061105c565b508092505050919050565b6110c68383836040518060200160405280600081525061199d565b505050565b6110dc6110d6611d34565b82611f40565b6110e557600080fd5b6110ee81612448565b50565b60006110fb610bec565b821061113c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113390614255565b60405180910390fd5b600882815481106111505761114f61473d565b5b90600052602060002001549050919050565b60155481565b611170611d34565b73ffffffffffffffffffffffffffffffffffffffff1661118e6115f8565b73ffffffffffffffffffffffffffffffffffffffff16146111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90614155565b60405180910390fd5b80600d90805190602001906111fa929190613310565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e906140b5565b60405180910390fd5b80915050919050565b60145481565b6112be611d34565b73ffffffffffffffffffffffffffffffffffffffff166112dc6115f8565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990614155565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161137a90613df6565b60006040518083038185875af1925050503d80600081146113b7576040519150601f19603f3d011682016040523d82523d6000602084013e6113bc565b606091505b5050905080611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790613f95565b60405180910390fd5b5050565b600d8054611411906145a4565b80601f016020809104026020016040519081016040528092919081815260200182805461143d906145a4565b801561148a5780601f1061145f5761010080835404028352916020019161148a565b820191906000526020600020905b81548152906001019060200180831161146d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90614095565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611552611d34565b73ffffffffffffffffffffffffffffffffffffffff166115706115f8565b73ffffffffffffffffffffffffffffffffffffffff16146115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90614155565b60405180910390fd5b6115d0600061246c565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611631906145a4565b80601f016020809104026020016040519081016040528092919081815260200182805461165d906145a4565b80156116aa5780601f1061167f576101008083540402835291602001916116aa565b820191906000526020600020905b81548152906001019060200180831161168d57829003601f168201915b5050505050905090565b6116bc611d34565b73ffffffffffffffffffffffffffffffffffffffff166116da6115f8565b73ffffffffffffffffffffffffffffffffffffffff1614611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790614155565b60405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b60125481565b61175b611d34565b73ffffffffffffffffffffffffffffffffffffffff166117796115f8565b73ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690614155565b60405180910390fd5b6010546015546117dd610bec565b6117e791906143c7565b106117f157600080fd5b60115481111561180057600080fd5b600181101561180e57600080fd5b6118188282612532565b5050565b611824611d34565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990613fd5565b60405180910390fd5b806005600061189f611d34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661194c611d34565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119919190613ed8565b60405180910390a35050565b6119ae6119a8611d34565b83611f40565b6119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490614215565b60405180910390fd5b6119f984848484612550565b50505050565b60135481565b601660009054906101000a900460ff1681565b611a20611d34565b73ffffffffffffffffffffffffffffffffffffffff16611a3e6115f8565b73ffffffffffffffffffffffffffffffffffffffff1614611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90614155565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060611ae3826125ac565b9050919050565b60115481565b600073a5409ec958c83c3f309868babaca7c86dcb077c173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b435760019050611b50565b611b4d83836126fe565b90505b92915050565b611b5e611d34565b73ffffffffffffffffffffffffffffffffffffffff16611b7c6115f8565b73ffffffffffffffffffffffffffffffffffffffff1614611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990614155565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990613f55565b60405180910390fd5b611c4b8161246c565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cc15750611cc082612792565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611daf836111fe565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611dfe82611cc8565b611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e34906140d5565b60405180910390fd5b80600a60008481526020019081526020016000209080519060200190611e64929190613310565b505050565b60004790506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611eb690613df6565b60006040518083038185875af1925050503d8060008114611ef3576040519150601f19603f3d011682016040523d82523d6000602084013e611ef8565b606091505b5050905080611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3390614235565b60405180910390fd5b5050565b6000611f4b82611cc8565b611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190614035565b60405180910390fd5b6000611f95836111fe565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061200457508373ffffffffffffffffffffffffffffffffffffffff16611fec846109c5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061201557506120148185611af0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661203e826111fe565b73ffffffffffffffffffffffffffffffffffffffff1614612094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208b90614175565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb90613fb5565b60405180910390fd5b61210f838383612874565b61211a600082611d3c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461216a91906144a8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121c191906143c7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e1906140f5565b60405180910390fd5b6122f381611cc8565b15612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a90613f75565b60405180910390fd5b61233f60008383612874565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461238f91906143c7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6015600081548092919061245b90614607565b919050555061246981612884565b50565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61254c8282604051806020016040528060008152506128d7565b5050565b61255b84848461201e565b61256784848484612932565b6125a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259d90613f35565b60405180910390fd5b50505050565b60606125b782611cc8565b6125f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ed90614115565b60405180910390fd5b6000600a60008481526020019081526020016000208054612616906145a4565b80601f0160208091040260200160405190810160405280929190818152602001828054612642906145a4565b801561268f5780601f106126645761010080835404028352916020019161268f565b820191906000526020600020905b81548152906001019060200180831161267257829003601f168201915b5050505050905060006126a0612ac9565b90506000815114156126b65781925050506126f9565b6000825111156126eb5780826040516020016126d3929190613dd2565b604051602081830303815290604052925050506126f9565b6126f484612b5b565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061285d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061286d575061286c82612c02565b5b9050919050565b61287f838383612c6c565b505050565b61288d81612d80565b6000600a600083815260200190815260200160002080546128ad906145a4565b9050146128d457600a600082815260200190815260200160002060006128d39190613396565b5b50565b6128e1838361227a565b6128ee6000848484612932565b61292d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292490613f35565b60405180910390fd5b505050565b60006129538473ffffffffffffffffffffffffffffffffffffffff16612e91565b15612abc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261297c611d34565b8786866040518563ffffffff1660e01b815260040161299e9493929190613e41565b602060405180830381600087803b1580156129b857600080fd5b505af19250505080156129e957506040513d601f19601f820116820180604052508101906129e6919061379b565b60015b612a6c573d8060008114612a19576040519150601f19603f3d011682016040523d82523d6000602084013e612a1e565b606091505b50600081511415612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b90613f35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ac1565b600190505b949350505050565b6060600d8054612ad8906145a4565b80601f0160208091040260200160405190810160405280929190818152602001828054612b04906145a4565b8015612b515780601f10612b2657610100808354040283529160200191612b51565b820191906000526020600020905b815481529060010190602001808311612b3457829003601f168201915b5050505050905090565b6060612b6682611cc8565b612ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9c90614195565b60405180910390fd5b6000612baf612ac9565b90506000815111612bcf5760405180602001604052806000815250612bfa565b80612bd984612ea4565b604051602001612bea929190613dd2565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c77838383613005565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cba57612cb58161300a565b612cf9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612cf857612cf78382613053565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d3c57612d37816131c0565b612d7b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d7a57612d798282613291565b5b5b505050565b6000612d8b826111fe565b9050612d9981600084612874565b612da4600083611d3c565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612df491906144a8565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415612eec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613000565b600082905060005b60008214612f1e578080612f0790614607565b915050600a82612f17919061441d565b9150612ef4565b60008167ffffffffffffffff811115612f3a57612f3961476c565b5b6040519080825280601f01601f191660200182016040528015612f6c5781602001600182028036833780820191505090505b5090505b60008514612ff957600182612f8591906144a8565b9150600a85612f949190614650565b6030612fa091906143c7565b60f81b818381518110612fb657612fb561473d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ff2919061441d565b9450612f70565b8093505050505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161306084611492565b61306a91906144a8565b905060006007600084815260200190815260200160002054905081811461314f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131d491906144a8565b90506000600960008481526020019081526020016000205490506000600883815481106132045761320361473d565b5b9060005260206000200154905080600883815481106132265761322561473d565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132755761327461470e565b5b6001900381819060005260206000200160009055905550505050565b600061329c83611492565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461331c906145a4565b90600052602060002090601f01602090048101928261333e5760008555613385565b82601f1061335757805160ff1916838001178555613385565b82800160010185558215613385579182015b82811115613384578251825591602001919060010190613369565b5b50905061339291906133d6565b5090565b5080546133a2906145a4565b6000825580601f106133b457506133d3565b601f0160209004906000526020600020908101906133d291906133d6565b5b50565b5b808211156133ef5760008160009055506001016133d7565b5090565b6000613406613401846142de565b6142b9565b905082815260208101848484011115613422576134216147a0565b5b61342d848285614562565b509392505050565b60006134486134438461430f565b6142b9565b905082815260208101848484011115613464576134636147a0565b5b61346f848285614562565b509392505050565b60008135905061348681614e76565b92915050565b60008135905061349b81614e8d565b92915050565b6000813590506134b081614ea4565b92915050565b6000813590506134c581614ebb565b92915050565b6000815190506134da81614ebb565b92915050565b600082601f8301126134f5576134f461479b565b5b81356135058482602086016133f3565b91505092915050565b600082601f8301126135235761352261479b565b5b8135613533848260208601613435565b91505092915050565b60008135905061354b81614ed2565b92915050565b600060208284031215613567576135666147aa565b5b600061357584828501613477565b91505092915050565b600060208284031215613594576135936147aa565b5b60006135a28482850161348c565b91505092915050565b600080604083850312156135c2576135c16147aa565b5b60006135d085828601613477565b92505060206135e185828601613477565b9150509250929050565b600080600060608486031215613604576136036147aa565b5b600061361286828701613477565b935050602061362386828701613477565b92505060406136348682870161353c565b9150509250925092565b60008060008060808587031215613658576136576147aa565b5b600061366687828801613477565b945050602061367787828801613477565b93505060406136888782880161353c565b925050606085013567ffffffffffffffff8111156136a9576136a86147a5565b5b6136b5878288016134e0565b91505092959194509250565b600080604083850312156136d8576136d76147aa565b5b60006136e685828601613477565b92505060206136f7858286016134a1565b9150509250929050565b60008060408385031215613718576137176147aa565b5b600061372685828601613477565b92505060206137378582860161353c565b9150509250929050565b600060208284031215613757576137566147aa565b5b6000613765848285016134a1565b91505092915050565b600060208284031215613784576137836147aa565b5b6000613792848285016134b6565b91505092915050565b6000602082840312156137b1576137b06147aa565b5b60006137bf848285016134cb565b91505092915050565b6000602082840312156137de576137dd6147aa565b5b600082013567ffffffffffffffff8111156137fc576137fb6147a5565b5b6138088482850161350e565b91505092915050565b600060208284031215613827576138266147aa565b5b60006138358482850161353c565b91505092915050565b60008060408385031215613855576138546147aa565b5b60006138638582860161353c565b925050602083013567ffffffffffffffff811115613884576138836147a5565b5b6138908582860161350e565b9150509250929050565b60006138a68383613db4565b60208301905092915050565b6138bb816144ee565b82525050565b6138ca816144dc565b82525050565b60006138db82614350565b6138e5818561437e565b93506138f083614340565b8060005b83811015613921578151613908888261389a565b975061391383614371565b9250506001810190506138f4565b5085935050505092915050565b61393781614500565b82525050565b60006139488261435b565b613952818561438f565b9350613962818560208601614571565b61396b816147af565b840191505092915050565b600061398182614366565b61398b81856143ab565b935061399b818560208601614571565b6139a4816147af565b840191505092915050565b60006139ba82614366565b6139c481856143bc565b93506139d4818560208601614571565b80840191505092915050565b60006139ed602b836143ab565b91506139f8826147c0565b604082019050919050565b6000613a106032836143ab565b9150613a1b8261480f565b604082019050919050565b6000613a336026836143ab565b9150613a3e8261485e565b604082019050919050565b6000613a56601c836143ab565b9150613a61826148ad565b602082019050919050565b6000613a796014836143ab565b9150613a84826148d6565b602082019050919050565b6000613a9c6024836143ab565b9150613aa7826148ff565b604082019050919050565b6000613abf6019836143ab565b9150613aca8261494e565b602082019050919050565b6000613ae26013836143ab565b9150613aed82614977565b602082019050919050565b6000613b05601d836143ab565b9150613b10826149a0565b602082019050919050565b6000613b28602c836143ab565b9150613b33826149c9565b604082019050919050565b6000613b4b6009836143ab565b9150613b5682614a18565b602082019050919050565b6000613b6e6038836143ab565b9150613b7982614a41565b604082019050919050565b6000613b91602a836143ab565b9150613b9c82614a90565b604082019050919050565b6000613bb46029836143ab565b9150613bbf82614adf565b604082019050919050565b6000613bd7602e836143ab565b9150613be282614b2e565b604082019050919050565b6000613bfa6020836143ab565b9150613c0582614b7d565b602082019050919050565b6000613c1d6031836143ab565b9150613c2882614ba6565b604082019050919050565b6000613c40602c836143ab565b9150613c4b82614bf5565b604082019050919050565b6000613c636020836143ab565b9150613c6e82614c44565b602082019050919050565b6000613c866029836143ab565b9150613c9182614c6d565b604082019050919050565b6000613ca9602f836143ab565b9150613cb482614cbc565b604082019050919050565b6000613ccc6012836143ab565b9150613cd782614d0b565b602082019050919050565b6000613cef6021836143ab565b9150613cfa82614d34565b604082019050919050565b6000613d126016836143ab565b9150613d1d82614d83565b602082019050919050565b6000613d356000836143a0565b9150613d4082614dac565b600082019050919050565b6000613d586031836143ab565b9150613d6382614daf565b604082019050919050565b6000613d7b6018836143ab565b9150613d8682614dfe565b602082019050919050565b6000613d9e602c836143ab565b9150613da982614e27565b604082019050919050565b613dbd81614558565b82525050565b613dcc81614558565b82525050565b6000613dde82856139af565b9150613dea82846139af565b91508190509392505050565b6000613e0182613d28565b9150819050919050565b6000602082019050613e2060008301846138c1565b92915050565b6000602082019050613e3b60008301846138b2565b92915050565b6000608082019050613e5660008301876138c1565b613e6360208301866138c1565b613e706040830185613dc3565b8181036060830152613e82818461393d565b905095945050505050565b6000604082019050613ea260008301856138c1565b613eaf6020830184613dc3565b9392505050565b60006020820190508181036000830152613ed081846138d0565b905092915050565b6000602082019050613eed600083018461392e565b92915050565b60006020820190508181036000830152613f0d8184613976565b905092915050565b60006020820190508181036000830152613f2e816139e0565b9050919050565b60006020820190508181036000830152613f4e81613a03565b9050919050565b60006020820190508181036000830152613f6e81613a26565b9050919050565b60006020820190508181036000830152613f8e81613a49565b9050919050565b60006020820190508181036000830152613fae81613a6c565b9050919050565b60006020820190508181036000830152613fce81613a8f565b9050919050565b60006020820190508181036000830152613fee81613ab2565b9050919050565b6000602082019050818103600083015261400e81613ad5565b9050919050565b6000602082019050818103600083015261402e81613af8565b9050919050565b6000602082019050818103600083015261404e81613b1b565b9050919050565b6000602082019050818103600083015261406e81613b3e565b9050919050565b6000602082019050818103600083015261408e81613b61565b9050919050565b600060208201905081810360008301526140ae81613b84565b9050919050565b600060208201905081810360008301526140ce81613ba7565b9050919050565b600060208201905081810360008301526140ee81613bca565b9050919050565b6000602082019050818103600083015261410e81613bed565b9050919050565b6000602082019050818103600083015261412e81613c10565b9050919050565b6000602082019050818103600083015261414e81613c33565b9050919050565b6000602082019050818103600083015261416e81613c56565b9050919050565b6000602082019050818103600083015261418e81613c79565b9050919050565b600060208201905081810360008301526141ae81613c9c565b9050919050565b600060208201905081810360008301526141ce81613cbf565b9050919050565b600060208201905081810360008301526141ee81613ce2565b9050919050565b6000602082019050818103600083015261420e81613d05565b9050919050565b6000602082019050818103600083015261422e81613d4b565b9050919050565b6000602082019050818103600083015261424e81613d6e565b9050919050565b6000602082019050818103600083015261426e81613d91565b9050919050565b600060208201905061428a6000830184613dc3565b92915050565b60006040820190506142a56000830185613dc3565b6142b26020830184613dc3565b9392505050565b60006142c36142d4565b90506142cf82826145d6565b919050565b6000604051905090565b600067ffffffffffffffff8211156142f9576142f861476c565b5b614302826147af565b9050602081019050919050565b600067ffffffffffffffff82111561432a5761432961476c565b5b614333826147af565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143d282614558565b91506143dd83614558565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561441257614411614681565b5b828201905092915050565b600061442882614558565b915061443383614558565b925082614443576144426146b0565b5b828204905092915050565b600061445982614558565b915061446483614558565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561449d5761449c614681565b5b828202905092915050565b60006144b382614558565b91506144be83614558565b9250828210156144d1576144d0614681565b5b828203905092915050565b60006144e782614538565b9050919050565b60006144f982614538565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561458f578082015181840152602081019050614574565b8381111561459e576000848401525b50505050565b600060028204905060018216806145bc57607f821691505b602082108114156145d0576145cf6146df565b5b50919050565b6145df826147af565b810181811067ffffffffffffffff821117156145fe576145fd61476c565b5b80604052505050565b600061461282614558565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561464557614644614681565b5b600182019050919050565b600061465b82614558565b915061466683614558565b925082614676576146756146b0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f436c61696d696e67206e6f742061637469766500000000000000000000000000600082015250565b7f506572736f6e616c206d696e7420616d6f756e74206578636565646564000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206f7665720000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e73756666696369656e742076616c75650000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20626174636820657863656564656400000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6661696c656420746f2073656e6420746f20636c69656e740000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614e7f816144dc565b8114614e8a57600080fd5b50565b614e96816144ee565b8114614ea157600080fd5b50565b614ead81614500565b8114614eb857600080fd5b50565b614ec48161450c565b8114614ecf57600080fd5b50565b614edb81614558565b8114614ee657600080fd5b5056fea2646970667358221220cc4989e46a211b26428422cfbd949944d116cb1cbe0d93a6f7c69c9eec053fe064736f6c63430008070033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.