Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
908 MCATS
Holders
153
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 MCATSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MirroredCats
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Creators: locationtba.eth, 2pmflow.eth pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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 * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: 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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract MirroredCats is ERC721A, Ownable, Pausable { uint public constant MINT_PER_TX_LIMIT = 20; uint public price = 0.04 ether; uint public threshold = 420; uint public limit = 9933; string private apiURI = "https://mirrored-cats.herokuapp.com/token/"; function _baseURI() internal view override returns (string memory) { return apiURI; } /** * @dev ERC721A constructor has 3rd input parameter * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor() ERC721A("MirroredCats", "MCATS", 1000) { _pause(); _safeMint(msg.sender, 1); } /** * @dev Setters region, such as backend, limit and price */ function setApi(string memory _uri) external onlyOwner { apiURI = _uri; } function setThreshold(uint _threshold) external onlyOwner { threshold = _threshold; } function setLimit(uint _limit) external onlyOwner { limit = _limit; } function setPrice(uint _wei) external onlyOwner { price = _wei; } /** * @dev a helper method to get the current price for a certain amount of tokens */ function mintPrice(uint16 _amount) public view returns(uint) { return totalSupply() < threshold ? 0 : price * _amount; } /** * @dev non-limited giweavay (expect total limit). * Used by owner and can be called in Pause mode */ function giveAway(address _wallet, uint16 _amount) public onlyOwner { require(totalSupply() + _amount <= limit, "Out of limit"); _safeMint(_wallet, _amount); } /** * @dev mint method with some default guards (limit, max per Tx amount). * This method uses ERC721A mint function to perform a batch-mint with low gas fees */ function mint(uint16 _amount) public payable whenNotPaused { require(totalSupply() + _amount <= limit, "Out of limit"); require(_amount > 0 && _amount <= MINT_PER_TX_LIMIT, "Invalid mint amount"); require(msg.value == mintPrice(_amount), "Invalid payment amount"); _safeMint(msg.sender, _amount); } /** * @dev Default withdraw, 20% to shareholder */ function withdraw(address _to) external onlyOwner { uint balance = address(this).balance; uint share = (balance * 25) / 100; payable(address(0x7Fe232C4D4e06e26D925AbC03F0C767746d1AFb0)).transfer(share); payable(_to).transfer(balance - share); } /** * @dev These are for Ownable */ function unpause() public onlyOwner { _unpause(); } function pause() external onlyOwner { _pause(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MINT_PER_TX_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"mintPrice","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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":"string","name":"_uri","type":"string"}],"name":"setApi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_threshold","type":"uint256"}],"name":"setThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a0604052600080556000600755668e1bc9bf0400006009556101a4600a556126cd600b556040518060600160405280602a815260200162005b1e602a9139600c90805190602001906200005592919062000a5a565b503480156200006357600080fd5b506040518060400160405280600c81526020017f4d6972726f7265644361747300000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d434154530000000000000000000000000000000000000000000000000000008152506103e86000811162000119576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001109062000b91565b60405180910390fd5b82600190805190602001906200013192919062000a5a565b5081600290805190602001906200014a92919062000a5a565b508060808181525050505050620001766200016a620001ba60201b60201c565b620001c260201b60201c565b6000600860146101000a81548160ff021916908315150217905550620001a16200028860201b60201c565b620001b43360016200034060201b60201c565b620011b3565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002986200036660201b60201c565b15620002db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d29062000c03565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25862000327620001ba60201b60201c565b60405162000336919062000c6a565b60405180910390a1565b620003628282604051806020016040528060008152506200037d60201b60201c565b5050565b6000600860149054906101000a900460ff16905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620003f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ed9062000cfd565b60405180910390fd5b62000407816200087460201b60201c565b156200044a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004419062000d6f565b60405180910390fd5b60805183111562000492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004899062000e07565b60405180910390fd5b620004a760008583866200088160201b60201c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151620005a6919062000e74565b6fffffffffffffffffffffffffffffffff168152602001858360200151620005cf919062000e74565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156200084f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620007e760008884886200088760201b60201c565b62000829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008209062000f37565b60405180910390fd5b8180620008369062000f63565b9250508080620008469062000f63565b9150506200076d565b50806000819055506200086c600087858862000a4160201b60201c565b505050505050565b6000805482109050919050565b50505050565b6000620008b58473ffffffffffffffffffffffffffffffffffffffff1662000a4760201b62001baa1760201c565b1562000a34578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008e7620001ba60201b60201c565b8786866040518563ffffffff1660e01b81526004016200090b949392919062001066565b602060405180830381600087803b1580156200092657600080fd5b505af19250505080156200095a57506040513d601f19601f820116820180604052508101906200095791906200111c565b60015b620009e3573d80600081146200098d576040519150601f19603f3d011682016040523d82523d6000602084013e62000992565b606091505b50600081511415620009db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009d29062000f37565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000a39565b600190505b949350505050565b50505050565b600080823b905060008111915050919050565b82805462000a68906200117d565b90600052602060002090601f01602090048101928262000a8c576000855562000ad8565b82601f1062000aa757805160ff191683800117855562000ad8565b8280016001018555821562000ad8579182015b8281111562000ad757825182559160200191906001019062000aba565b5b50905062000ae7919062000aeb565b5090565b5b8082111562000b0657600081600090555060010162000aec565b5090565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b600062000b7960278362000b0a565b915062000b868262000b1b565b604082019050919050565b6000602082019050818103600083015262000bac8162000b6a565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000beb60108362000b0a565b915062000bf88262000bb3565b602082019050919050565b6000602082019050818103600083015262000c1e8162000bdc565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c528262000c25565b9050919050565b62000c648162000c45565b82525050565b600060208201905062000c81600083018462000c59565b92915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000ce560218362000b0a565b915062000cf28262000c87565b604082019050919050565b6000602082019050818103600083015262000d188162000cd6565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600062000d57601d8362000b0a565b915062000d648262000d1f565b602082019050919050565b6000602082019050818103600083015262000d8a8162000d48565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600062000def60228362000b0a565b915062000dfc8262000d91565b604082019050919050565b6000602082019050818103600083015262000e228162000de0565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e818262000e29565b915062000e8e8362000e29565b9250826fffffffffffffffffffffffffffffffff0382111562000eb65762000eb562000e45565b5b828201905092915050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600062000f1f60338362000b0a565b915062000f2c8262000ec1565b604082019050919050565b6000602082019050818103600083015262000f528162000f10565b9050919050565b6000819050919050565b600062000f708262000f59565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000fa65762000fa562000e45565b5b600182019050919050565b62000fbc8162000f59565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000ffe57808201518184015260208101905062000fe1565b838111156200100e576000848401525b50505050565b6000601f19601f8301169050919050565b6000620010328262000fc2565b6200103e818562000fcd565b93506200105081856020860162000fde565b6200105b8162001014565b840191505092915050565b60006080820190506200107d600083018762000c59565b6200108c602083018662000c59565b6200109b604083018562000fb1565b8181036060830152620010af818462001025565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620010f681620010bf565b81146200110257600080fd5b50565b6000815190506200111681620010eb565b92915050565b600060208284031215620011355762001134620010ba565b5b6000620011458482850162001105565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200119657607f821691505b60208210811415620011ad57620011ac6200114e565b5b50919050565b608051614941620011dd600039600081816123bb015281816123e40152612b2a01526149416000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd14610732578063c9fd3dbc1461076f578063d7224ba014610798578063e985e9c5146107c3578063f2fde38b1461080057610204565b8063a035b1fe1461068a578063a22cb465146106b5578063a4d66daf146106de578063b88d4fde1461070957610204565b80638da5cb5b116100e75780638da5cb5b146105a557806391b7f5ed146105d057806395d89b41146105f9578063960bfe04146106245780639763efc41461064d57610204565b80636352211e146104fd57806370a082311461053a578063715018a6146105775780638456cb591461058e57610204565b80632f745c591161019b57806345d510071161016a57806345d510071461041857806348a6ab7e146104435780634f6ccce71461046c57806351cff8d9146104a95780635c975abb146104d257610204565b80632f745c59146103705780633f4ba83a146103ad57806342842e0e146103c457806342cde4e8146103ed57610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd1461030257806323cf0a221461032b57806327ea6f2b1461034757610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613091565b610829565b60405161023d91906130d9565b60405180910390f35b34801561025257600080fd5b5061025b610973565b604051610268919061318d565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906131e5565b610a05565b6040516102a59190613253565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061329a565b610a8a565b005b3480156102e357600080fd5b506102ec610ba3565b6040516102f991906132e9565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613304565b610bac565b005b61034560048036038101906103409190613391565b610bbc565b005b34801561035357600080fd5b5061036e600480360381019061036991906131e5565b610d12565b005b34801561037c57600080fd5b506103976004803603810190610392919061329a565b610d98565b6040516103a491906132e9565b60405180910390f35b3480156103b957600080fd5b506103c2610f96565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613304565b61101c565b005b3480156103f957600080fd5b5061040261103c565b60405161040f91906132e9565b60405180910390f35b34801561042457600080fd5b5061042d611042565b60405161043a91906132e9565b60405180910390f35b34801561044f57600080fd5b5061046a600480360381019061046591906133be565b611047565b005b34801561047857600080fd5b50610493600480360381019061048e91906131e5565b611130565b6040516104a091906132e9565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906133fe565b611183565b005b3480156104de57600080fd5b506104e76112d3565b6040516104f491906130d9565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f91906131e5565b6112ea565b6040516105319190613253565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c91906133fe565b611300565b60405161056e91906132e9565b60405180910390f35b34801561058357600080fd5b5061058c6113e9565b005b34801561059a57600080fd5b506105a3611471565b005b3480156105b157600080fd5b506105ba6114f7565b6040516105c79190613253565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f291906131e5565b611521565b005b34801561060557600080fd5b5061060e6115a7565b60405161061b919061318d565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906131e5565b611639565b005b34801561065957600080fd5b50610674600480360381019061066f9190613391565b6116bf565b60405161068191906132e9565b60405180910390f35b34801561069657600080fd5b5061069f6116f2565b6040516106ac91906132e9565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190613457565b6116f8565b005b3480156106ea57600080fd5b506106f3611879565b60405161070091906132e9565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b91906135cc565b61187f565b005b34801561073e57600080fd5b50610759600480360381019061075491906131e5565b6118db565b604051610766919061318d565b60405180910390f35b34801561077b57600080fd5b50610796600480360381019061079191906136f0565b611982565b005b3480156107a457600080fd5b506107ad611a18565b6040516107ba91906132e9565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190613739565b611a1e565b6040516107f791906130d9565b60405180910390f35b34801561080c57600080fd5b50610827600480360381019061082291906133fe565b611ab2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096c575061096b82611bbd565b5b9050919050565b606060018054610982906137a8565b80601f01602080910402602001604051908101604052809291908181526020018280546109ae906137a8565b80156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b6000610a1082611c27565b610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a469061384c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a95826112ea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd906138de565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b25611c34565b73ffffffffffffffffffffffffffffffffffffffff161480610b545750610b5381610b4e611c34565b611a1e565b5b610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90613970565b60405180910390fd5b610b9e838383611c3c565b505050565b60008054905090565b610bb7838383611cee565b505050565b610bc46112d3565b15610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb906139dc565b60405180910390fd5b600b548161ffff16610c14610ba3565b610c1e9190613a2b565b1115610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690613acd565b60405180910390fd5b60008161ffff16118015610c78575060148161ffff1611155b610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae90613b39565b60405180910390fd5b610cc0816116bf565b3414610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890613ba5565b60405180910390fd5b610d0f338261ffff166122a7565b50565b610d1a611c34565b73ffffffffffffffffffffffffffffffffffffffff16610d386114f7565b73ffffffffffffffffffffffffffffffffffffffff1614610d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8590613c11565b60405180910390fd5b80600b8190555050565b6000610da383611300565b8210610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90613ca3565b60405180910390fd5b6000610dee610ba3565b905060008060005b83811015610f54576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ee857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f405786841415610f31578195505050505050610f90565b8380610f3c90613cc3565b9450505b508080610f4c90613cc3565b915050610df6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8790613d7e565b60405180910390fd5b92915050565b610f9e611c34565b73ffffffffffffffffffffffffffffffffffffffff16610fbc6114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613c11565b60405180910390fd5b61101a6122c5565b565b6110378383836040518060200160405280600081525061187f565b505050565b600a5481565b601481565b61104f611c34565b73ffffffffffffffffffffffffffffffffffffffff1661106d6114f7565b73ffffffffffffffffffffffffffffffffffffffff16146110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613c11565b60405180910390fd5b600b548161ffff166110d3610ba3565b6110dd9190613a2b565b111561111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590613acd565b60405180910390fd5b61112c828261ffff166122a7565b5050565b600061113a610ba3565b821061117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290613e10565b60405180910390fd5b819050919050565b61118b611c34565b73ffffffffffffffffffffffffffffffffffffffff166111a96114f7565b73ffffffffffffffffffffffffffffffffffffffff16146111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690613c11565b60405180910390fd5b6000479050600060646019836112159190613e30565b61121f9190613eb9565b9050737fe232c4d4e06e26d925abc03f0c767746d1afb073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561127b573d6000803e3d6000fd5b508273ffffffffffffffffffffffffffffffffffffffff166108fc82846112a29190613eea565b9081150290604051600060405180830381858888f193505050501580156112cd573d6000803e3d6000fd5b50505050565b6000600860149054906101000a900460ff16905090565b60006112f582612367565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613f90565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113f1611c34565b73ffffffffffffffffffffffffffffffffffffffff1661140f6114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90613c11565b60405180910390fd5b61146f600061256a565b565b611479611c34565b73ffffffffffffffffffffffffffffffffffffffff166114976114f7565b73ffffffffffffffffffffffffffffffffffffffff16146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490613c11565b60405180910390fd5b6114f5612630565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611529611c34565b73ffffffffffffffffffffffffffffffffffffffff166115476114f7565b73ffffffffffffffffffffffffffffffffffffffff161461159d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159490613c11565b60405180910390fd5b8060098190555050565b6060600280546115b6906137a8565b80601f01602080910402602001604051908101604052809291908181526020018280546115e2906137a8565b801561162f5780601f106116045761010080835404028352916020019161162f565b820191906000526020600020905b81548152906001019060200180831161161257829003601f168201915b5050505050905090565b611641611c34565b73ffffffffffffffffffffffffffffffffffffffff1661165f6114f7565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613c11565b60405180910390fd5b80600a8190555050565b6000600a546116cc610ba3565b106116e8578161ffff166009546116e39190613e30565b6116eb565b60005b9050919050565b60095481565b611700611c34565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590613ffc565b60405180910390fd5b806006600061177b611c34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611828611c34565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161186d91906130d9565b60405180910390a35050565b600b5481565b61188a848484611cee565b611896848484846126d3565b6118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc9061408e565b60405180910390fd5b50505050565b60606118e682611c27565b611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90614120565b60405180910390fd5b600061192f61286a565b9050600081511161194f576040518060200160405280600081525061197a565b80611959846128fc565b60405160200161196a92919061417c565b6040516020818303038152906040525b915050919050565b61198a611c34565b73ffffffffffffffffffffffffffffffffffffffff166119a86114f7565b73ffffffffffffffffffffffffffffffffffffffff16146119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590613c11565b60405180910390fd5b80600c9080519060200190611a14929190612f48565b5050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aba611c34565b73ffffffffffffffffffffffffffffffffffffffff16611ad86114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590613c11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590614212565b60405180910390fd5b611ba78161256a565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611cf982612367565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d20611c34565b73ffffffffffffffffffffffffffffffffffffffff161480611d7c5750611d45611c34565b73ffffffffffffffffffffffffffffffffffffffff16611d6484610a05565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d985750611d978260000151611d92611c34565b611a1e565b5b905080611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd1906142a4565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390614336565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb3906143c8565b60405180910390fd5b611ec98585856001612a5d565b611ed96000848460000151611c3c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f479190614404565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611feb9190614438565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120f19190613a2b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122375761216781611c27565b15612236576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461229f8686866001612a63565b505050505050565b6122c1828260405180602001604052806000815250612a69565b5050565b6122cd6112d3565b61230c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612303906144ca565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612350611c34565b60405161235d9190613253565b60405180910390a1565b61236f612fce565b61237882611c27565b6123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae9061455c565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061241b5760017f00000000000000000000000000000000000000000000000000000000000000008461240e9190613eea565b6124189190613a2b565b90505b60008390505b818110612529576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461251557809350505050612565565b5080806125219061457c565b915050612421565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c90614618565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126386112d3565b15612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f906139dc565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126bc611c34565b6040516126c99190613253565b60405180910390a1565b60006126f48473ffffffffffffffffffffffffffffffffffffffff16611baa565b1561285d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261271d611c34565b8786866040518563ffffffff1660e01b815260040161273f949392919061468d565b602060405180830381600087803b15801561275957600080fd5b505af192505050801561278a57506040513d601f19601f8201168201806040525081019061278791906146ee565b60015b61280d573d80600081146127ba576040519150601f19603f3d011682016040523d82523d6000602084013e6127bf565b606091505b50600081511415612805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fc9061408e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612862565b600190505b949350505050565b6060600c8054612879906137a8565b80601f01602080910402602001604051908101604052809291908181526020018280546128a5906137a8565b80156128f25780601f106128c7576101008083540402835291602001916128f2565b820191906000526020600020905b8154815290600101906020018083116128d557829003601f168201915b5050505050905090565b60606000821415612944576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a58565b600082905060005b6000821461297657808061295f90613cc3565b915050600a8261296f9190613eb9565b915061294c565b60008167ffffffffffffffff811115612992576129916134a1565b5b6040519080825280601f01601f1916602001820160405280156129c45781602001600182028036833780820191505090505b5090505b60008514612a51576001826129dd9190613eea565b9150600a856129ec919061471b565b60306129f89190613a2b565b60f81b818381518110612a0e57612a0d61474c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a4a9190613eb9565b94506129c8565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad6906147ed565b60405180910390fd5b612ae881611c27565b15612b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1f90614859565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b82906148eb565b60405180910390fd5b612b986000858386612a5d565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612c959190614438565b6fffffffffffffffffffffffffffffffff168152602001858360200151612cbc9190614438565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612f2b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ecb60008884886126d3565b612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f019061408e565b60405180910390fd5b8180612f1590613cc3565b9250508080612f2390613cc3565b915050612e5a565b5080600081905550612f406000878588612a63565b505050505050565b828054612f54906137a8565b90600052602060002090601f016020900481019282612f765760008555612fbd565b82601f10612f8f57805160ff1916838001178555612fbd565b82800160010185558215612fbd579182015b82811115612fbc578251825591602001919060010190612fa1565b5b509050612fca9190613008565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613021576000816000905550600101613009565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61306e81613039565b811461307957600080fd5b50565b60008135905061308b81613065565b92915050565b6000602082840312156130a7576130a661302f565b5b60006130b58482850161307c565b91505092915050565b60008115159050919050565b6130d3816130be565b82525050565b60006020820190506130ee60008301846130ca565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561312e578082015181840152602081019050613113565b8381111561313d576000848401525b50505050565b6000601f19601f8301169050919050565b600061315f826130f4565b61316981856130ff565b9350613179818560208601613110565b61318281613143565b840191505092915050565b600060208201905081810360008301526131a78184613154565b905092915050565b6000819050919050565b6131c2816131af565b81146131cd57600080fd5b50565b6000813590506131df816131b9565b92915050565b6000602082840312156131fb576131fa61302f565b5b6000613209848285016131d0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061323d82613212565b9050919050565b61324d81613232565b82525050565b60006020820190506132686000830184613244565b92915050565b61327781613232565b811461328257600080fd5b50565b6000813590506132948161326e565b92915050565b600080604083850312156132b1576132b061302f565b5b60006132bf85828601613285565b92505060206132d0858286016131d0565b9150509250929050565b6132e3816131af565b82525050565b60006020820190506132fe60008301846132da565b92915050565b60008060006060848603121561331d5761331c61302f565b5b600061332b86828701613285565b935050602061333c86828701613285565b925050604061334d868287016131d0565b9150509250925092565b600061ffff82169050919050565b61336e81613357565b811461337957600080fd5b50565b60008135905061338b81613365565b92915050565b6000602082840312156133a7576133a661302f565b5b60006133b58482850161337c565b91505092915050565b600080604083850312156133d5576133d461302f565b5b60006133e385828601613285565b92505060206133f48582860161337c565b9150509250929050565b6000602082840312156134145761341361302f565b5b600061342284828501613285565b91505092915050565b613434816130be565b811461343f57600080fd5b50565b6000813590506134518161342b565b92915050565b6000806040838503121561346e5761346d61302f565b5b600061347c85828601613285565b925050602061348d85828601613442565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134d982613143565b810181811067ffffffffffffffff821117156134f8576134f76134a1565b5b80604052505050565b600061350b613025565b905061351782826134d0565b919050565b600067ffffffffffffffff821115613537576135366134a1565b5b61354082613143565b9050602081019050919050565b82818337600083830152505050565b600061356f61356a8461351c565b613501565b90508281526020810184848401111561358b5761358a61349c565b5b61359684828561354d565b509392505050565b600082601f8301126135b3576135b2613497565b5b81356135c384826020860161355c565b91505092915050565b600080600080608085870312156135e6576135e561302f565b5b60006135f487828801613285565b945050602061360587828801613285565b9350506040613616878288016131d0565b925050606085013567ffffffffffffffff81111561363757613636613034565b5b6136438782880161359e565b91505092959194509250565b600067ffffffffffffffff82111561366a576136696134a1565b5b61367382613143565b9050602081019050919050565b600061369361368e8461364f565b613501565b9050828152602081018484840111156136af576136ae61349c565b5b6136ba84828561354d565b509392505050565b600082601f8301126136d7576136d6613497565b5b81356136e7848260208601613680565b91505092915050565b6000602082840312156137065761370561302f565b5b600082013567ffffffffffffffff81111561372457613723613034565b5b613730848285016136c2565b91505092915050565b600080604083850312156137505761374f61302f565b5b600061375e85828601613285565b925050602061376f85828601613285565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137c057607f821691505b602082108114156137d4576137d3613779565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613836602d836130ff565b9150613841826137da565b604082019050919050565b6000602082019050818103600083015261386581613829565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006138c86022836130ff565b91506138d38261386c565b604082019050919050565b600060208201905081810360008301526138f7816138bb565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061395a6039836130ff565b9150613965826138fe565b604082019050919050565b600060208201905081810360008301526139898161394d565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006139c66010836130ff565b91506139d182613990565b602082019050919050565b600060208201905081810360008301526139f5816139b9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a36826131af565b9150613a41836131af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a7657613a756139fc565b5b828201905092915050565b7f4f7574206f66206c696d69740000000000000000000000000000000000000000600082015250565b6000613ab7600c836130ff565b9150613ac282613a81565b602082019050919050565b60006020820190508181036000830152613ae681613aaa565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613b236013836130ff565b9150613b2e82613aed565b602082019050919050565b60006020820190508181036000830152613b5281613b16565b9050919050565b7f496e76616c6964207061796d656e7420616d6f756e7400000000000000000000600082015250565b6000613b8f6016836130ff565b9150613b9a82613b59565b602082019050919050565b60006020820190508181036000830152613bbe81613b82565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bfb6020836130ff565b9150613c0682613bc5565b602082019050919050565b60006020820190508181036000830152613c2a81613bee565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c8d6022836130ff565b9150613c9882613c31565b604082019050919050565b60006020820190508181036000830152613cbc81613c80565b9050919050565b6000613cce826131af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d0157613d006139fc565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d68602e836130ff565b9150613d7382613d0c565b604082019050919050565b60006020820190508181036000830152613d9781613d5b565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613dfa6023836130ff565b9150613e0582613d9e565b604082019050919050565b60006020820190508181036000830152613e2981613ded565b9050919050565b6000613e3b826131af565b9150613e46836131af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e7f57613e7e6139fc565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ec4826131af565b9150613ecf836131af565b925082613edf57613ede613e8a565b5b828204905092915050565b6000613ef5826131af565b9150613f00836131af565b925082821015613f1357613f126139fc565b5b828203905092915050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613f7a602b836130ff565b9150613f8582613f1e565b604082019050919050565b60006020820190508181036000830152613fa981613f6d565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613fe6601a836130ff565b9150613ff182613fb0565b602082019050919050565b6000602082019050818103600083015261401581613fd9565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006140786033836130ff565b91506140838261401c565b604082019050919050565b600060208201905081810360008301526140a78161406b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061410a602f836130ff565b9150614115826140ae565b604082019050919050565b60006020820190508181036000830152614139816140fd565b9050919050565b600081905092915050565b6000614156826130f4565b6141608185614140565b9350614170818560208601613110565b80840191505092915050565b6000614188828561414b565b9150614194828461414b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141fc6026836130ff565b9150614207826141a0565b604082019050919050565b6000602082019050818103600083015261422b816141ef565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061428e6032836130ff565b915061429982614232565b604082019050919050565b600060208201905081810360008301526142bd81614281565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006143206026836130ff565b915061432b826142c4565b604082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006143b26025836130ff565b91506143bd82614356565b604082019050919050565b600060208201905081810360008301526143e1816143a5565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061440f826143e8565b915061441a836143e8565b92508282101561442d5761442c6139fc565b5b828203905092915050565b6000614443826143e8565b915061444e836143e8565b9250826fffffffffffffffffffffffffffffffff03821115614473576144726139fc565b5b828201905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006144b46014836130ff565b91506144bf8261447e565b602082019050919050565b600060208201905081810360008301526144e3816144a7565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614546602a836130ff565b9150614551826144ea565b604082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b6000614587826131af565b9150600082141561459b5761459a6139fc565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614602602f836130ff565b915061460d826145a6565b604082019050919050565b60006020820190508181036000830152614631816145f5565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061465f82614638565b6146698185614643565b9350614679818560208601613110565b61468281613143565b840191505092915050565b60006080820190506146a26000830187613244565b6146af6020830186613244565b6146bc60408301856132da565b81810360608301526146ce8184614654565b905095945050505050565b6000815190506146e881613065565b92915050565b6000602082840312156147045761470361302f565b5b6000614712848285016146d9565b91505092915050565b6000614726826131af565b9150614731836131af565b92508261474157614740613e8a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006147d76021836130ff565b91506147e28261477b565b604082019050919050565b60006020820190508181036000830152614806816147ca565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614843601d836130ff565b915061484e8261480d565b602082019050919050565b6000602082019050818103600083015261487281614836565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006148d56022836130ff565b91506148e082614879565b604082019050919050565b60006020820190508181036000830152614904816148c8565b905091905056fea26469706673582212206975691a2844ddfdc87f35567634d45a89ebb8876916f0fb2d511af503bc236264736f6c6343000809003368747470733a2f2f6d6972726f7265642d636174732e6865726f6b756170702e636f6d2f746f6b656e2f
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636352211e11610118578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd14610732578063c9fd3dbc1461076f578063d7224ba014610798578063e985e9c5146107c3578063f2fde38b1461080057610204565b8063a035b1fe1461068a578063a22cb465146106b5578063a4d66daf146106de578063b88d4fde1461070957610204565b80638da5cb5b116100e75780638da5cb5b146105a557806391b7f5ed146105d057806395d89b41146105f9578063960bfe04146106245780639763efc41461064d57610204565b80636352211e146104fd57806370a082311461053a578063715018a6146105775780638456cb591461058e57610204565b80632f745c591161019b57806345d510071161016a57806345d510071461041857806348a6ab7e146104435780634f6ccce71461046c57806351cff8d9146104a95780635c975abb146104d257610204565b80632f745c59146103705780633f4ba83a146103ad57806342842e0e146103c457806342cde4e8146103ed57610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd1461030257806323cf0a221461032b57806327ea6f2b1461034757610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613091565b610829565b60405161023d91906130d9565b60405180910390f35b34801561025257600080fd5b5061025b610973565b604051610268919061318d565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906131e5565b610a05565b6040516102a59190613253565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061329a565b610a8a565b005b3480156102e357600080fd5b506102ec610ba3565b6040516102f991906132e9565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613304565b610bac565b005b61034560048036038101906103409190613391565b610bbc565b005b34801561035357600080fd5b5061036e600480360381019061036991906131e5565b610d12565b005b34801561037c57600080fd5b506103976004803603810190610392919061329a565b610d98565b6040516103a491906132e9565b60405180910390f35b3480156103b957600080fd5b506103c2610f96565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613304565b61101c565b005b3480156103f957600080fd5b5061040261103c565b60405161040f91906132e9565b60405180910390f35b34801561042457600080fd5b5061042d611042565b60405161043a91906132e9565b60405180910390f35b34801561044f57600080fd5b5061046a600480360381019061046591906133be565b611047565b005b34801561047857600080fd5b50610493600480360381019061048e91906131e5565b611130565b6040516104a091906132e9565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906133fe565b611183565b005b3480156104de57600080fd5b506104e76112d3565b6040516104f491906130d9565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f91906131e5565b6112ea565b6040516105319190613253565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c91906133fe565b611300565b60405161056e91906132e9565b60405180910390f35b34801561058357600080fd5b5061058c6113e9565b005b34801561059a57600080fd5b506105a3611471565b005b3480156105b157600080fd5b506105ba6114f7565b6040516105c79190613253565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f291906131e5565b611521565b005b34801561060557600080fd5b5061060e6115a7565b60405161061b919061318d565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906131e5565b611639565b005b34801561065957600080fd5b50610674600480360381019061066f9190613391565b6116bf565b60405161068191906132e9565b60405180910390f35b34801561069657600080fd5b5061069f6116f2565b6040516106ac91906132e9565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190613457565b6116f8565b005b3480156106ea57600080fd5b506106f3611879565b60405161070091906132e9565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b91906135cc565b61187f565b005b34801561073e57600080fd5b50610759600480360381019061075491906131e5565b6118db565b604051610766919061318d565b60405180910390f35b34801561077b57600080fd5b50610796600480360381019061079191906136f0565b611982565b005b3480156107a457600080fd5b506107ad611a18565b6040516107ba91906132e9565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190613739565b611a1e565b6040516107f791906130d9565b60405180910390f35b34801561080c57600080fd5b50610827600480360381019061082291906133fe565b611ab2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096c575061096b82611bbd565b5b9050919050565b606060018054610982906137a8565b80601f01602080910402602001604051908101604052809291908181526020018280546109ae906137a8565b80156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b6000610a1082611c27565b610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a469061384c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a95826112ea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd906138de565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b25611c34565b73ffffffffffffffffffffffffffffffffffffffff161480610b545750610b5381610b4e611c34565b611a1e565b5b610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90613970565b60405180910390fd5b610b9e838383611c3c565b505050565b60008054905090565b610bb7838383611cee565b505050565b610bc46112d3565b15610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb906139dc565b60405180910390fd5b600b548161ffff16610c14610ba3565b610c1e9190613a2b565b1115610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690613acd565b60405180910390fd5b60008161ffff16118015610c78575060148161ffff1611155b610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae90613b39565b60405180910390fd5b610cc0816116bf565b3414610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890613ba5565b60405180910390fd5b610d0f338261ffff166122a7565b50565b610d1a611c34565b73ffffffffffffffffffffffffffffffffffffffff16610d386114f7565b73ffffffffffffffffffffffffffffffffffffffff1614610d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8590613c11565b60405180910390fd5b80600b8190555050565b6000610da383611300565b8210610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90613ca3565b60405180910390fd5b6000610dee610ba3565b905060008060005b83811015610f54576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ee857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f405786841415610f31578195505050505050610f90565b8380610f3c90613cc3565b9450505b508080610f4c90613cc3565b915050610df6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8790613d7e565b60405180910390fd5b92915050565b610f9e611c34565b73ffffffffffffffffffffffffffffffffffffffff16610fbc6114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613c11565b60405180910390fd5b61101a6122c5565b565b6110378383836040518060200160405280600081525061187f565b505050565b600a5481565b601481565b61104f611c34565b73ffffffffffffffffffffffffffffffffffffffff1661106d6114f7565b73ffffffffffffffffffffffffffffffffffffffff16146110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613c11565b60405180910390fd5b600b548161ffff166110d3610ba3565b6110dd9190613a2b565b111561111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590613acd565b60405180910390fd5b61112c828261ffff166122a7565b5050565b600061113a610ba3565b821061117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290613e10565b60405180910390fd5b819050919050565b61118b611c34565b73ffffffffffffffffffffffffffffffffffffffff166111a96114f7565b73ffffffffffffffffffffffffffffffffffffffff16146111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690613c11565b60405180910390fd5b6000479050600060646019836112159190613e30565b61121f9190613eb9565b9050737fe232c4d4e06e26d925abc03f0c767746d1afb073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561127b573d6000803e3d6000fd5b508273ffffffffffffffffffffffffffffffffffffffff166108fc82846112a29190613eea565b9081150290604051600060405180830381858888f193505050501580156112cd573d6000803e3d6000fd5b50505050565b6000600860149054906101000a900460ff16905090565b60006112f582612367565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613f90565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113f1611c34565b73ffffffffffffffffffffffffffffffffffffffff1661140f6114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90613c11565b60405180910390fd5b61146f600061256a565b565b611479611c34565b73ffffffffffffffffffffffffffffffffffffffff166114976114f7565b73ffffffffffffffffffffffffffffffffffffffff16146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490613c11565b60405180910390fd5b6114f5612630565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611529611c34565b73ffffffffffffffffffffffffffffffffffffffff166115476114f7565b73ffffffffffffffffffffffffffffffffffffffff161461159d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159490613c11565b60405180910390fd5b8060098190555050565b6060600280546115b6906137a8565b80601f01602080910402602001604051908101604052809291908181526020018280546115e2906137a8565b801561162f5780601f106116045761010080835404028352916020019161162f565b820191906000526020600020905b81548152906001019060200180831161161257829003601f168201915b5050505050905090565b611641611c34565b73ffffffffffffffffffffffffffffffffffffffff1661165f6114f7565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613c11565b60405180910390fd5b80600a8190555050565b6000600a546116cc610ba3565b106116e8578161ffff166009546116e39190613e30565b6116eb565b60005b9050919050565b60095481565b611700611c34565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590613ffc565b60405180910390fd5b806006600061177b611c34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611828611c34565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161186d91906130d9565b60405180910390a35050565b600b5481565b61188a848484611cee565b611896848484846126d3565b6118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc9061408e565b60405180910390fd5b50505050565b60606118e682611c27565b611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90614120565b60405180910390fd5b600061192f61286a565b9050600081511161194f576040518060200160405280600081525061197a565b80611959846128fc565b60405160200161196a92919061417c565b6040516020818303038152906040525b915050919050565b61198a611c34565b73ffffffffffffffffffffffffffffffffffffffff166119a86114f7565b73ffffffffffffffffffffffffffffffffffffffff16146119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590613c11565b60405180910390fd5b80600c9080519060200190611a14929190612f48565b5050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aba611c34565b73ffffffffffffffffffffffffffffffffffffffff16611ad86114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590613c11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590614212565b60405180910390fd5b611ba78161256a565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611cf982612367565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d20611c34565b73ffffffffffffffffffffffffffffffffffffffff161480611d7c5750611d45611c34565b73ffffffffffffffffffffffffffffffffffffffff16611d6484610a05565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d985750611d978260000151611d92611c34565b611a1e565b5b905080611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd1906142a4565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390614336565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb3906143c8565b60405180910390fd5b611ec98585856001612a5d565b611ed96000848460000151611c3c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f479190614404565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611feb9190614438565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120f19190613a2b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122375761216781611c27565b15612236576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461229f8686866001612a63565b505050505050565b6122c1828260405180602001604052806000815250612a69565b5050565b6122cd6112d3565b61230c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612303906144ca565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612350611c34565b60405161235d9190613253565b60405180910390a1565b61236f612fce565b61237882611c27565b6123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae9061455c565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000003e8831061241b5760017f00000000000000000000000000000000000000000000000000000000000003e88461240e9190613eea565b6124189190613a2b565b90505b60008390505b818110612529576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461251557809350505050612565565b5080806125219061457c565b915050612421565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c90614618565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126386112d3565b15612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f906139dc565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126bc611c34565b6040516126c99190613253565b60405180910390a1565b60006126f48473ffffffffffffffffffffffffffffffffffffffff16611baa565b1561285d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261271d611c34565b8786866040518563ffffffff1660e01b815260040161273f949392919061468d565b602060405180830381600087803b15801561275957600080fd5b505af192505050801561278a57506040513d601f19601f8201168201806040525081019061278791906146ee565b60015b61280d573d80600081146127ba576040519150601f19603f3d011682016040523d82523d6000602084013e6127bf565b606091505b50600081511415612805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fc9061408e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612862565b600190505b949350505050565b6060600c8054612879906137a8565b80601f01602080910402602001604051908101604052809291908181526020018280546128a5906137a8565b80156128f25780601f106128c7576101008083540402835291602001916128f2565b820191906000526020600020905b8154815290600101906020018083116128d557829003601f168201915b5050505050905090565b60606000821415612944576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a58565b600082905060005b6000821461297657808061295f90613cc3565b915050600a8261296f9190613eb9565b915061294c565b60008167ffffffffffffffff811115612992576129916134a1565b5b6040519080825280601f01601f1916602001820160405280156129c45781602001600182028036833780820191505090505b5090505b60008514612a51576001826129dd9190613eea565b9150600a856129ec919061471b565b60306129f89190613a2b565b60f81b818381518110612a0e57612a0d61474c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a4a9190613eb9565b94506129c8565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad6906147ed565b60405180910390fd5b612ae881611c27565b15612b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1f90614859565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e8831115612b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b82906148eb565b60405180910390fd5b612b986000858386612a5d565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612c959190614438565b6fffffffffffffffffffffffffffffffff168152602001858360200151612cbc9190614438565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612f2b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ecb60008884886126d3565b612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f019061408e565b60405180910390fd5b8180612f1590613cc3565b9250508080612f2390613cc3565b915050612e5a565b5080600081905550612f406000878588612a63565b505050505050565b828054612f54906137a8565b90600052602060002090601f016020900481019282612f765760008555612fbd565b82601f10612f8f57805160ff1916838001178555612fbd565b82800160010185558215612fbd579182015b82811115612fbc578251825591602001919060010190612fa1565b5b509050612fca9190613008565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613021576000816000905550600101613009565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61306e81613039565b811461307957600080fd5b50565b60008135905061308b81613065565b92915050565b6000602082840312156130a7576130a661302f565b5b60006130b58482850161307c565b91505092915050565b60008115159050919050565b6130d3816130be565b82525050565b60006020820190506130ee60008301846130ca565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561312e578082015181840152602081019050613113565b8381111561313d576000848401525b50505050565b6000601f19601f8301169050919050565b600061315f826130f4565b61316981856130ff565b9350613179818560208601613110565b61318281613143565b840191505092915050565b600060208201905081810360008301526131a78184613154565b905092915050565b6000819050919050565b6131c2816131af565b81146131cd57600080fd5b50565b6000813590506131df816131b9565b92915050565b6000602082840312156131fb576131fa61302f565b5b6000613209848285016131d0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061323d82613212565b9050919050565b61324d81613232565b82525050565b60006020820190506132686000830184613244565b92915050565b61327781613232565b811461328257600080fd5b50565b6000813590506132948161326e565b92915050565b600080604083850312156132b1576132b061302f565b5b60006132bf85828601613285565b92505060206132d0858286016131d0565b9150509250929050565b6132e3816131af565b82525050565b60006020820190506132fe60008301846132da565b92915050565b60008060006060848603121561331d5761331c61302f565b5b600061332b86828701613285565b935050602061333c86828701613285565b925050604061334d868287016131d0565b9150509250925092565b600061ffff82169050919050565b61336e81613357565b811461337957600080fd5b50565b60008135905061338b81613365565b92915050565b6000602082840312156133a7576133a661302f565b5b60006133b58482850161337c565b91505092915050565b600080604083850312156133d5576133d461302f565b5b60006133e385828601613285565b92505060206133f48582860161337c565b9150509250929050565b6000602082840312156134145761341361302f565b5b600061342284828501613285565b91505092915050565b613434816130be565b811461343f57600080fd5b50565b6000813590506134518161342b565b92915050565b6000806040838503121561346e5761346d61302f565b5b600061347c85828601613285565b925050602061348d85828601613442565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134d982613143565b810181811067ffffffffffffffff821117156134f8576134f76134a1565b5b80604052505050565b600061350b613025565b905061351782826134d0565b919050565b600067ffffffffffffffff821115613537576135366134a1565b5b61354082613143565b9050602081019050919050565b82818337600083830152505050565b600061356f61356a8461351c565b613501565b90508281526020810184848401111561358b5761358a61349c565b5b61359684828561354d565b509392505050565b600082601f8301126135b3576135b2613497565b5b81356135c384826020860161355c565b91505092915050565b600080600080608085870312156135e6576135e561302f565b5b60006135f487828801613285565b945050602061360587828801613285565b9350506040613616878288016131d0565b925050606085013567ffffffffffffffff81111561363757613636613034565b5b6136438782880161359e565b91505092959194509250565b600067ffffffffffffffff82111561366a576136696134a1565b5b61367382613143565b9050602081019050919050565b600061369361368e8461364f565b613501565b9050828152602081018484840111156136af576136ae61349c565b5b6136ba84828561354d565b509392505050565b600082601f8301126136d7576136d6613497565b5b81356136e7848260208601613680565b91505092915050565b6000602082840312156137065761370561302f565b5b600082013567ffffffffffffffff81111561372457613723613034565b5b613730848285016136c2565b91505092915050565b600080604083850312156137505761374f61302f565b5b600061375e85828601613285565b925050602061376f85828601613285565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137c057607f821691505b602082108114156137d4576137d3613779565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613836602d836130ff565b9150613841826137da565b604082019050919050565b6000602082019050818103600083015261386581613829565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006138c86022836130ff565b91506138d38261386c565b604082019050919050565b600060208201905081810360008301526138f7816138bb565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061395a6039836130ff565b9150613965826138fe565b604082019050919050565b600060208201905081810360008301526139898161394d565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006139c66010836130ff565b91506139d182613990565b602082019050919050565b600060208201905081810360008301526139f5816139b9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a36826131af565b9150613a41836131af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a7657613a756139fc565b5b828201905092915050565b7f4f7574206f66206c696d69740000000000000000000000000000000000000000600082015250565b6000613ab7600c836130ff565b9150613ac282613a81565b602082019050919050565b60006020820190508181036000830152613ae681613aaa565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613b236013836130ff565b9150613b2e82613aed565b602082019050919050565b60006020820190508181036000830152613b5281613b16565b9050919050565b7f496e76616c6964207061796d656e7420616d6f756e7400000000000000000000600082015250565b6000613b8f6016836130ff565b9150613b9a82613b59565b602082019050919050565b60006020820190508181036000830152613bbe81613b82565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bfb6020836130ff565b9150613c0682613bc5565b602082019050919050565b60006020820190508181036000830152613c2a81613bee565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c8d6022836130ff565b9150613c9882613c31565b604082019050919050565b60006020820190508181036000830152613cbc81613c80565b9050919050565b6000613cce826131af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d0157613d006139fc565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d68602e836130ff565b9150613d7382613d0c565b604082019050919050565b60006020820190508181036000830152613d9781613d5b565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613dfa6023836130ff565b9150613e0582613d9e565b604082019050919050565b60006020820190508181036000830152613e2981613ded565b9050919050565b6000613e3b826131af565b9150613e46836131af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e7f57613e7e6139fc565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ec4826131af565b9150613ecf836131af565b925082613edf57613ede613e8a565b5b828204905092915050565b6000613ef5826131af565b9150613f00836131af565b925082821015613f1357613f126139fc565b5b828203905092915050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613f7a602b836130ff565b9150613f8582613f1e565b604082019050919050565b60006020820190508181036000830152613fa981613f6d565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613fe6601a836130ff565b9150613ff182613fb0565b602082019050919050565b6000602082019050818103600083015261401581613fd9565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006140786033836130ff565b91506140838261401c565b604082019050919050565b600060208201905081810360008301526140a78161406b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061410a602f836130ff565b9150614115826140ae565b604082019050919050565b60006020820190508181036000830152614139816140fd565b9050919050565b600081905092915050565b6000614156826130f4565b6141608185614140565b9350614170818560208601613110565b80840191505092915050565b6000614188828561414b565b9150614194828461414b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141fc6026836130ff565b9150614207826141a0565b604082019050919050565b6000602082019050818103600083015261422b816141ef565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061428e6032836130ff565b915061429982614232565b604082019050919050565b600060208201905081810360008301526142bd81614281565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006143206026836130ff565b915061432b826142c4565b604082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006143b26025836130ff565b91506143bd82614356565b604082019050919050565b600060208201905081810360008301526143e1816143a5565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061440f826143e8565b915061441a836143e8565b92508282101561442d5761442c6139fc565b5b828203905092915050565b6000614443826143e8565b915061444e836143e8565b9250826fffffffffffffffffffffffffffffffff03821115614473576144726139fc565b5b828201905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006144b46014836130ff565b91506144bf8261447e565b602082019050919050565b600060208201905081810360008301526144e3816144a7565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614546602a836130ff565b9150614551826144ea565b604082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b6000614587826131af565b9150600082141561459b5761459a6139fc565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614602602f836130ff565b915061460d826145a6565b604082019050919050565b60006020820190508181036000830152614631816145f5565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061465f82614638565b6146698185614643565b9350614679818560208601613110565b61468281613143565b840191505092915050565b60006080820190506146a26000830187613244565b6146af6020830186613244565b6146bc60408301856132da565b81810360608301526146ce8184614654565b905095945050505050565b6000815190506146e881613065565b92915050565b6000602082840312156147045761470361302f565b5b6000614712848285016146d9565b91505092915050565b6000614726826131af565b9150614731836131af565b92508261474157614740613e8a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006147d76021836130ff565b91506147e28261477b565b604082019050919050565b60006020820190508181036000830152614806816147ca565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614843601d836130ff565b915061484e8261480d565b602082019050919050565b6000602082019050818103600083015261487281614836565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006148d56022836130ff565b91506148e082614879565b604082019050919050565b60006020820190508181036000830152614904816148c8565b905091905056fea26469706673582212206975691a2844ddfdc87f35567634d45a89ebb8876916f0fb2d511af503bc236264736f6c63430008090033
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.