ERC-721
Overview
Max Total Supply
838 DLZ
Holders
253
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DLZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Deadlarvaz
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.2; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract Deadlarvaz is ERC721A,Ownable{ using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; bool openForMint=false; uint256 public _larvazPrice = 0.03 ether; uint256 public larvazSupply =6666; uint public freesupply=666; bool unveil = false; bool openForFree=false; string private _BaseURI = ''; string private _tokenRevealedBaseURI = ''; mapping(address => uint256) private _claimed; constructor( uint256 maxBatchSize_, uint256 collectionSize_) ERC721A("Deadlarvaz","DLZ", maxBatchSize_, collectionSize_) { _BaseURI = ''; } function mintlarvaz(uint amount) external payable { require(msg.value >= _larvazPrice * amount , "Ether value sent is not enough"); require(openForMint,"Mint Function is not Active yet"); require(totalSupply()+amount<=larvazSupply,"All minted"); require(amount>0,"Cannot mint 0 or below 0"); require(amount<=15,"Cannot mint over 15"); _safeMint(msg.sender,amount); } function freeMint(uint amount) external payable { require(amount>0,"Cannot mint 0 or below 0"); require(amount<=2,"Cannot mint 3 or more"); require(openForFree, "Free minting is not active"); require(totalSupply()+amount <= freesupply,"Free token is all claimed"); _safeMint(msg.sender, amount); } function devMint(uint256 amount) external onlyOwner{ _safeMint(msg.sender, amount); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawPart(uint256 amount) external onlyOwner { payable(msg.sender).transfer(amount); } function reveal(string memory baseURI) external onlyOwner { unveil=true; _BaseURI = baseURI; } function setActive() external onlyOwner{ openForMint=true; openForFree=true; } function setNonActive() external onlyOwner{ openForMint=false; openForFree=false; } function max_supply() public view virtual returns (uint256) { return larvazSupply; } function price() public view virtual returns (uint256){ return _larvazPrice; } function _baseURI() internal view override returns (string memory) { return _BaseURI; } function setBaseURI(string calldata URI) public onlyOwner { _BaseURI = URI; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// 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 "@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"; /** * @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..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * 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 collectionSize; 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. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @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(collectionSize). 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: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `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 > collectionSize - 1) { endIndex = collectionSize - 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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev 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; /** * @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 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; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../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; /** * @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 "../../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; /** * @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" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_larvazPrice","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":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freesupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"larvazSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintlarvaz","outputs":[],"stateMutability":"payable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"reveal","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":[],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setNonActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawPart","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526000805560006007556000600a60006101000a81548160ff021916908315150217905550666a94d74f430000600b55611a0a600c5561029a600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff02191690831515021790555060405180602001604052806000815250600f90805190602001906200009c92919062000356565b506040518060200160405280600081525060109080519060200190620000c492919062000356565b50348015620000d257600080fd5b5060405162005054380380620050548339818101604052810190620000f891906200041d565b6040518060400160405280600a81526020017f446561646c617276617a000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f444c5a0000000000000000000000000000000000000000000000000000000000815250838360008111620001ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a390620004d4565b60405180910390fd5b60008211620001f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001e990620004b2565b60405180910390fd5b83600190805190602001906200020a92919062000356565b5082600290805190602001906200022392919062000356565b508160a08181525050806080818152505050505050620002586200024c6200028860201b60201c565b6200029060201b60201c565b60405180602001604052806000815250600f90805190602001906200027f92919062000356565b50505062000633565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003649062000511565b90600052602060002090601f016020900481019282620003885760008555620003d4565b82601f10620003a357805160ff1916838001178555620003d4565b82800160010185558215620003d4579182015b82811115620003d3578251825591602001919060010190620003b6565b5b509050620003e39190620003e7565b5090565b5b8082111562000402576000816000905550600101620003e8565b5090565b600081519050620004178162000619565b92915050565b6000806040838503121562000437576200043662000576565b5b6000620004478582860162000406565b92505060206200045a8582860162000406565b9150509250929050565b600062000473602783620004f6565b915062000480826200057b565b604082019050919050565b60006200049a602e83620004f6565b9150620004a782620005ca565b604082019050919050565b60006020820190508181036000830152620004cd8162000464565b9050919050565b60006020820190508181036000830152620004ef816200048b565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200052a57607f821691505b6020821081141562000541576200054062000547565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b620006248162000507565b81146200063057600080fd5b50565b60805160a0516149f0620006646000396000818161232a0152818161235301526129f60152600050506149f06000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd146106c9578063c9c528da14610706578063d7224ba014610731578063e985e9c51461075c578063f2fde38b14610799576101f9565b806395d89b4114610621578063a035b1fe1461064c578063a22cb46514610677578063b88d4fde146106a0576101f9565b80637c928fe9116100dc5780637c928fe9146105865780637daf06fd146105a25780638a333b50146105cb5780638da5cb5b146105f6576101f9565b80636352211e146104de57806370a082311461051b578063715018a614610558578063760a8c2a1461056f576101f9565b8063375a069a116101905780634a670b741161015f5780634a670b74146104085780634c261247146104245780634f6ccce71461044d5780635025beae1461048a57806355f804b3146104b5576101f9565b8063375a069a146103745780633895ef101461039d5780633ccfd60b146103c857806342842e0e146103df576101f9565b8063095ea7b3116101cc578063095ea7b3146102ba57806318160ddd146102e357806323b872dd1461030e5780632f745c5914610337576101f9565b806301ffc9a7146101fe57806303b7f6b41461023b57806306fdde0314610252578063081812fc1461027d575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906132ec565b6107c2565b6040516102329190613938565b60405180910390f35b34801561024757600080fd5b5061025061090c565b005b34801561025e57600080fd5b506102676109c0565b6040516102749190613953565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f91906133dc565b610a52565b6040516102b191906138d1565b60405180910390f35b3480156102c657600080fd5b506102e160048036038101906102dc91906132ac565b610ad7565b005b3480156102ef57600080fd5b506102f8610bf0565b6040516103059190613cf5565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190613196565b610bf9565b005b34801561034357600080fd5b5061035e600480360381019061035991906132ac565b610c09565b60405161036b9190613cf5565b60405180910390f35b34801561038057600080fd5b5061039b600480360381019061039691906133dc565b610e07565b005b3480156103a957600080fd5b506103b2610e90565b6040516103bf9190613cf5565b60405180910390f35b3480156103d457600080fd5b506103dd610e96565b005b3480156103eb57600080fd5b5061040660048036038101906104019190613196565b610f61565b005b610422600480360381019061041d91906133dc565b610f81565b005b34801561043057600080fd5b5061044b60048036038101906104469190613393565b61110b565b005b34801561045957600080fd5b50610474600480360381019061046f91906133dc565b6111bc565b6040516104819190613cf5565b60405180910390f35b34801561049657600080fd5b5061049f61120f565b6040516104ac9190613cf5565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190613346565b611215565b005b3480156104ea57600080fd5b50610505600480360381019061050091906133dc565b6112a7565b60405161051291906138d1565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190613129565b6112bd565b60405161054f9190613cf5565b60405180910390f35b34801561056457600080fd5b5061056d6113a6565b005b34801561057b57600080fd5b5061058461142e565b005b6105a0600480360381019061059b91906133dc565b6114e2565b005b3480156105ae57600080fd5b506105c960048036038101906105c491906133dc565b61161c565b005b3480156105d757600080fd5b506105e06116e2565b6040516105ed9190613cf5565b60405180910390f35b34801561060257600080fd5b5061060b6116ec565b60405161061891906138d1565b60405180910390f35b34801561062d57600080fd5b50610636611716565b6040516106439190613953565b60405180910390f35b34801561065857600080fd5b506106616117a8565b60405161066e9190613cf5565b60405180910390f35b34801561068357600080fd5b5061069e6004803603810190610699919061326c565b6117b2565b005b3480156106ac57600080fd5b506106c760048036038101906106c291906131e9565b611933565b005b3480156106d557600080fd5b506106f060048036038101906106eb91906133dc565b61198f565b6040516106fd9190613953565b60405180910390f35b34801561071257600080fd5b5061071b611a36565b6040516107289190613cf5565b60405180910390f35b34801561073d57600080fd5b50610746611a3c565b6040516107539190613cf5565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613156565b611a42565b6040516107909190613938565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb9190613129565b611ad6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610905575061090482611bce565b5b9050919050565b610914611c38565b73ffffffffffffffffffffffffffffffffffffffff166109326116ec565b73ffffffffffffffffffffffffffffffffffffffff1614610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f90613ad5565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550565b6060600180546109cf90614065565b80601f01602080910402602001604051908101604052809291908181526020018280546109fb90614065565b8015610a485780601f10610a1d57610100808354040283529160200191610a48565b820191906000526020600020905b815481529060010190602001808311610a2b57829003601f168201915b5050505050905090565b6000610a5d82611c40565b610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390613cb5565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae2826112a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90613bb5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b72611c38565b73ffffffffffffffffffffffffffffffffffffffff161480610ba15750610ba081610b9b611c38565b611a42565b5b610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790613a55565b60405180910390fd5b610beb838383611c4d565b505050565b60008054905090565b610c04838383611cff565b505050565b6000610c14836112bd565b8210610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90613975565b60405180910390fd5b6000610c5f610bf0565b905060008060005b83811015610dc5576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d5957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db15786841415610da2578195505050505050610e01565b8380610dad906140c8565b9450505b508080610dbd906140c8565b915050610c67565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890613c35565b60405180910390fd5b92915050565b610e0f611c38565b73ffffffffffffffffffffffffffffffffffffffff16610e2d6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613ad5565b60405180910390fd5b610e8d33826122b8565b50565b600d5481565b610e9e611c38565b73ffffffffffffffffffffffffffffffffffffffff16610ebc6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990613ad5565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f5d573d6000803e3d6000fd5b5050565b610f7c83838360405180602001604052806000815250611933565b505050565b80600b54610f8f9190613ea7565b341015610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890613c95565b60405180910390fd5b600a60009054906101000a900460ff16611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790613b75565b60405180910390fd5b600c548161102c610bf0565b6110369190613e20565b1115611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613995565b60405180910390fd5b600081116110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613c55565b60405180910390fd5b600f8111156110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f590613b95565b60405180910390fd5b61110833826122b8565b50565b611113611c38565b73ffffffffffffffffffffffffffffffffffffffff166111316116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90613ad5565b60405180910390fd5b6001600e60006101000a81548160ff02191690831515021790555080600f90805190602001906111b8929190612e27565b5050565b60006111c6610bf0565b8210611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe906139f5565b60405180910390fd5b819050919050565b600b5481565b61121d611c38565b73ffffffffffffffffffffffffffffffffffffffff1661123b6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890613ad5565b60405180910390fd5b8181600f91906112a2929190612ead565b505050565b60006112b2826122d6565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590613a95565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113ae611c38565b73ffffffffffffffffffffffffffffffffffffffff166113cc6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990613ad5565b60405180910390fd5b61142c60006124d9565b565b611436611c38565b73ffffffffffffffffffffffffffffffffffffffff166114546116ec565b73ffffffffffffffffffffffffffffffffffffffff16146114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190613ad5565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff021916908315150217905550565b60008111611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90613c55565b60405180910390fd5b6002811115611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090613a75565b60405180910390fd5b600e60019054906101000a900460ff166115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90613b55565b60405180910390fd5b600d54816115c4610bf0565b6115ce9190613e20565b111561160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690613a35565b60405180910390fd5b61161933826122b8565b50565b611624611c38565b73ffffffffffffffffffffffffffffffffffffffff166116426116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f90613ad5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156116de573d6000803e3d6000fd5b5050565b6000600c54905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461172590614065565b80601f016020809104026020016040519081016040528092919081815260200182805461175190614065565b801561179e5780601f106117735761010080835404028352916020019161179e565b820191906000526020600020905b81548152906001019060200180831161178157829003601f168201915b5050505050905090565b6000600b54905090565b6117ba611c38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613b15565b60405180910390fd5b8060066000611835611c38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118e2611c38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119279190613938565b60405180910390a35050565b61193e848484611cff565b61194a8484848461259f565b611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090613bd5565b60405180910390fd5b50505050565b606061199a82611c40565b6119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090613af5565b60405180910390fd5b60006119e3612736565b90506000815111611a035760405180602001604052806000815250611a2e565b80611a0d846127c8565b604051602001611a1e9291906138ad565b6040516020818303038152906040525b915050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ade611c38565b73ffffffffffffffffffffffffffffffffffffffff16611afc6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990613ad5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb9906139b5565b60405180910390fd5b611bcb816124d9565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d0a826122d6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d31611c38565b73ffffffffffffffffffffffffffffffffffffffff161480611d8d5750611d56611c38565b73ffffffffffffffffffffffffffffffffffffffff16611d7584610a52565b73ffffffffffffffffffffffffffffffffffffffff16145b80611da95750611da88260000151611da3611c38565b611a42565b5b905080611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290613b35565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5490613ab5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490613a15565b60405180910390fd5b611eda8585856001612929565b611eea6000848460000151611c4d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f589190613f01565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ffc9190613dda565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121029190613e20565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122485761217881611c40565b15612247576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122b0868686600161292f565b505050505050565b6122d2828260405180602001604052806000815250612935565b5050565b6122de612f33565b6122e782611c40565b612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d906139d5565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061238a5760017f00000000000000000000000000000000000000000000000000000000000000008461237d9190613f35565b6123879190613e20565b90505b60008390505b818110612498576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612484578093505050506124d4565b5080806124909061403b565b915050612390565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb90613c75565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006125c08473ffffffffffffffffffffffffffffffffffffffff16612e14565b15612729578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125e9611c38565b8786866040518563ffffffff1660e01b815260040161260b94939291906138ec565b602060405180830381600087803b15801561262557600080fd5b505af192505050801561265657506040513d601f19601f820116820180604052508101906126539190613319565b60015b6126d9573d8060008114612686576040519150601f19603f3d011682016040523d82523d6000602084013e61268b565b606091505b506000815114156126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c890613bd5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061272e565b600190505b949350505050565b6060600f805461274590614065565b80601f016020809104026020016040519081016040528092919081815260200182805461277190614065565b80156127be5780601f10612793576101008083540402835291602001916127be565b820191906000526020600020905b8154815290600101906020018083116127a157829003601f168201915b5050505050905090565b60606000821415612810576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612924565b600082905060005b6000821461284257808061282b906140c8565b915050600a8261283b9190613e76565b9150612818565b60008167ffffffffffffffff81111561285e5761285d6141fe565b5b6040519080825280601f01601f1916602001820160405280156128905781602001600182028036833780820191505090505b5090505b6000851461291d576001826128a99190613f35565b9150600a856128b89190614111565b60306128c49190613e20565b60f81b8183815181106128da576128d96141cf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129169190613e76565b9450612894565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a290613c15565b60405180910390fd5b6129b481611c40565b156129f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129eb90613bf5565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4e90613cd5565b60405180910390fd5b612a646000858386612929565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b619190613dda565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b889190613dda565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612df757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d97600088848861259f565b612dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcd90613bd5565b60405180910390fd5b8180612de1906140c8565b9250508080612def906140c8565b915050612d26565b5080600081905550612e0c600087858861292f565b505050505050565b600080823b905060008111915050919050565b828054612e3390614065565b90600052602060002090601f016020900481019282612e555760008555612e9c565b82601f10612e6e57805160ff1916838001178555612e9c565b82800160010185558215612e9c579182015b82811115612e9b578251825591602001919060010190612e80565b5b509050612ea99190612f6d565b5090565b828054612eb990614065565b90600052602060002090601f016020900481019282612edb5760008555612f22565b82601f10612ef457803560ff1916838001178555612f22565b82800160010185558215612f22579182015b82811115612f21578235825591602001919060010190612f06565b5b509050612f2f9190612f6d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f86576000816000905550600101612f6e565b5090565b6000612f9d612f9884613d35565b613d10565b905082815260208101848484011115612fb957612fb861423c565b5b612fc4848285613ff9565b509392505050565b6000612fdf612fda84613d66565b613d10565b905082815260208101848484011115612ffb57612ffa61423c565b5b613006848285613ff9565b509392505050565b60008135905061301d8161495e565b92915050565b60008135905061303281614975565b92915050565b6000813590506130478161498c565b92915050565b60008151905061305c8161498c565b92915050565b600082601f83011261307757613076614232565b5b8135613087848260208601612f8a565b91505092915050565b60008083601f8401126130a6576130a5614232565b5b8235905067ffffffffffffffff8111156130c3576130c261422d565b5b6020830191508360018202830111156130df576130de614237565b5b9250929050565b600082601f8301126130fb576130fa614232565b5b813561310b848260208601612fcc565b91505092915050565b600081359050613123816149a3565b92915050565b60006020828403121561313f5761313e614246565b5b600061314d8482850161300e565b91505092915050565b6000806040838503121561316d5761316c614246565b5b600061317b8582860161300e565b925050602061318c8582860161300e565b9150509250929050565b6000806000606084860312156131af576131ae614246565b5b60006131bd8682870161300e565b93505060206131ce8682870161300e565b92505060406131df86828701613114565b9150509250925092565b6000806000806080858703121561320357613202614246565b5b60006132118782880161300e565b94505060206132228782880161300e565b935050604061323387828801613114565b925050606085013567ffffffffffffffff81111561325457613253614241565b5b61326087828801613062565b91505092959194509250565b6000806040838503121561328357613282614246565b5b60006132918582860161300e565b92505060206132a285828601613023565b9150509250929050565b600080604083850312156132c3576132c2614246565b5b60006132d18582860161300e565b92505060206132e285828601613114565b9150509250929050565b60006020828403121561330257613301614246565b5b600061331084828501613038565b91505092915050565b60006020828403121561332f5761332e614246565b5b600061333d8482850161304d565b91505092915050565b6000806020838503121561335d5761335c614246565b5b600083013567ffffffffffffffff81111561337b5761337a614241565b5b61338785828601613090565b92509250509250929050565b6000602082840312156133a9576133a8614246565b5b600082013567ffffffffffffffff8111156133c7576133c6614241565b5b6133d3848285016130e6565b91505092915050565b6000602082840312156133f2576133f1614246565b5b600061340084828501613114565b91505092915050565b61341281613f69565b82525050565b61342181613f7b565b82525050565b600061343282613d97565b61343c8185613dad565b935061344c818560208601614008565b6134558161424b565b840191505092915050565b600061346b82613da2565b6134758185613dbe565b9350613485818560208601614008565b61348e8161424b565b840191505092915050565b60006134a482613da2565b6134ae8185613dcf565b93506134be818560208601614008565b80840191505092915050565b60006134d7602283613dbe565b91506134e28261425c565b604082019050919050565b60006134fa600a83613dbe565b9150613505826142ab565b602082019050919050565b600061351d602683613dbe565b9150613528826142d4565b604082019050919050565b6000613540602a83613dbe565b915061354b82614323565b604082019050919050565b6000613563602383613dbe565b915061356e82614372565b604082019050919050565b6000613586602583613dbe565b9150613591826143c1565b604082019050919050565b60006135a9601983613dbe565b91506135b482614410565b602082019050919050565b60006135cc603983613dbe565b91506135d782614439565b604082019050919050565b60006135ef601583613dbe565b91506135fa82614488565b602082019050919050565b6000613612602b83613dbe565b915061361d826144b1565b604082019050919050565b6000613635602683613dbe565b915061364082614500565b604082019050919050565b6000613658602083613dbe565b91506136638261454f565b602082019050919050565b600061367b602f83613dbe565b915061368682614578565b604082019050919050565b600061369e601a83613dbe565b91506136a9826145c7565b602082019050919050565b60006136c1603283613dbe565b91506136cc826145f0565b604082019050919050565b60006136e4601a83613dbe565b91506136ef8261463f565b602082019050919050565b6000613707601f83613dbe565b915061371282614668565b602082019050919050565b600061372a601383613dbe565b915061373582614691565b602082019050919050565b600061374d602283613dbe565b9150613758826146ba565b604082019050919050565b6000613770603383613dbe565b915061377b82614709565b604082019050919050565b6000613793601d83613dbe565b915061379e82614758565b602082019050919050565b60006137b6602183613dbe565b91506137c182614781565b604082019050919050565b60006137d9602e83613dbe565b91506137e4826147d0565b604082019050919050565b60006137fc601883613dbe565b91506138078261481f565b602082019050919050565b600061381f602f83613dbe565b915061382a82614848565b604082019050919050565b6000613842601e83613dbe565b915061384d82614897565b602082019050919050565b6000613865602d83613dbe565b9150613870826148c0565b604082019050919050565b6000613888602283613dbe565b91506138938261490f565b604082019050919050565b6138a781613fef565b82525050565b60006138b98285613499565b91506138c58284613499565b91508190509392505050565b60006020820190506138e66000830184613409565b92915050565b60006080820190506139016000830187613409565b61390e6020830186613409565b61391b604083018561389e565b818103606083015261392d8184613427565b905095945050505050565b600060208201905061394d6000830184613418565b92915050565b6000602082019050818103600083015261396d8184613460565b905092915050565b6000602082019050818103600083015261398e816134ca565b9050919050565b600060208201905081810360008301526139ae816134ed565b9050919050565b600060208201905081810360008301526139ce81613510565b9050919050565b600060208201905081810360008301526139ee81613533565b9050919050565b60006020820190508181036000830152613a0e81613556565b9050919050565b60006020820190508181036000830152613a2e81613579565b9050919050565b60006020820190508181036000830152613a4e8161359c565b9050919050565b60006020820190508181036000830152613a6e816135bf565b9050919050565b60006020820190508181036000830152613a8e816135e2565b9050919050565b60006020820190508181036000830152613aae81613605565b9050919050565b60006020820190508181036000830152613ace81613628565b9050919050565b60006020820190508181036000830152613aee8161364b565b9050919050565b60006020820190508181036000830152613b0e8161366e565b9050919050565b60006020820190508181036000830152613b2e81613691565b9050919050565b60006020820190508181036000830152613b4e816136b4565b9050919050565b60006020820190508181036000830152613b6e816136d7565b9050919050565b60006020820190508181036000830152613b8e816136fa565b9050919050565b60006020820190508181036000830152613bae8161371d565b9050919050565b60006020820190508181036000830152613bce81613740565b9050919050565b60006020820190508181036000830152613bee81613763565b9050919050565b60006020820190508181036000830152613c0e81613786565b9050919050565b60006020820190508181036000830152613c2e816137a9565b9050919050565b60006020820190508181036000830152613c4e816137cc565b9050919050565b60006020820190508181036000830152613c6e816137ef565b9050919050565b60006020820190508181036000830152613c8e81613812565b9050919050565b60006020820190508181036000830152613cae81613835565b9050919050565b60006020820190508181036000830152613cce81613858565b9050919050565b60006020820190508181036000830152613cee8161387b565b9050919050565b6000602082019050613d0a600083018461389e565b92915050565b6000613d1a613d2b565b9050613d268282614097565b919050565b6000604051905090565b600067ffffffffffffffff821115613d5057613d4f6141fe565b5b613d598261424b565b9050602081019050919050565b600067ffffffffffffffff821115613d8157613d806141fe565b5b613d8a8261424b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613de582613fb3565b9150613df083613fb3565b9250826fffffffffffffffffffffffffffffffff03821115613e1557613e14614142565b5b828201905092915050565b6000613e2b82613fef565b9150613e3683613fef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e6b57613e6a614142565b5b828201905092915050565b6000613e8182613fef565b9150613e8c83613fef565b925082613e9c57613e9b614171565b5b828204905092915050565b6000613eb282613fef565b9150613ebd83613fef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ef657613ef5614142565b5b828202905092915050565b6000613f0c82613fb3565b9150613f1783613fb3565b925082821015613f2a57613f29614142565b5b828203905092915050565b6000613f4082613fef565b9150613f4b83613fef565b925082821015613f5e57613f5d614142565b5b828203905092915050565b6000613f7482613fcf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561402657808201518184015260208101905061400b565b83811115614035576000848401525b50505050565b600061404682613fef565b9150600082141561405a57614059614142565b5b600182039050919050565b6000600282049050600182168061407d57607f821691505b60208210811415614091576140906141a0565b5b50919050565b6140a08261424b565b810181811067ffffffffffffffff821117156140bf576140be6141fe565b5b80604052505050565b60006140d382613fef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561410657614105614142565b5b600182019050919050565b600061411c82613fef565b915061412783613fef565b92508261413757614136614171565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c6c206d696e74656400000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4672656520746f6b656e20697320616c6c20636c61696d656400000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f43616e6e6f74206d696e742033206f72206d6f72650000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f46726565206d696e74696e67206973206e6f7420616374697665000000000000600082015250565b7f4d696e742046756e6374696f6e206973206e6f74204163746976652079657400600082015250565b7f43616e6e6f74206d696e74206f76657220313500000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e742030206f722062656c6f7720300000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420656e6f7567680000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61496781613f69565b811461497257600080fd5b50565b61497e81613f7b565b811461498957600080fd5b50565b61499581613f87565b81146149a057600080fd5b50565b6149ac81613fef565b81146149b757600080fd5b5056fea2646970667358221220998b086de37944cf02c0d9c3199d8b4431a0f5fa151c7df3e6773b5e3a4a18ce64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000029a0000000000000000000000000000000000000000000000000000000000001a0a
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80636352211e1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd146106c9578063c9c528da14610706578063d7224ba014610731578063e985e9c51461075c578063f2fde38b14610799576101f9565b806395d89b4114610621578063a035b1fe1461064c578063a22cb46514610677578063b88d4fde146106a0576101f9565b80637c928fe9116100dc5780637c928fe9146105865780637daf06fd146105a25780638a333b50146105cb5780638da5cb5b146105f6576101f9565b80636352211e146104de57806370a082311461051b578063715018a614610558578063760a8c2a1461056f576101f9565b8063375a069a116101905780634a670b741161015f5780634a670b74146104085780634c261247146104245780634f6ccce71461044d5780635025beae1461048a57806355f804b3146104b5576101f9565b8063375a069a146103745780633895ef101461039d5780633ccfd60b146103c857806342842e0e146103df576101f9565b8063095ea7b3116101cc578063095ea7b3146102ba57806318160ddd146102e357806323b872dd1461030e5780632f745c5914610337576101f9565b806301ffc9a7146101fe57806303b7f6b41461023b57806306fdde0314610252578063081812fc1461027d575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906132ec565b6107c2565b6040516102329190613938565b60405180910390f35b34801561024757600080fd5b5061025061090c565b005b34801561025e57600080fd5b506102676109c0565b6040516102749190613953565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f91906133dc565b610a52565b6040516102b191906138d1565b60405180910390f35b3480156102c657600080fd5b506102e160048036038101906102dc91906132ac565b610ad7565b005b3480156102ef57600080fd5b506102f8610bf0565b6040516103059190613cf5565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190613196565b610bf9565b005b34801561034357600080fd5b5061035e600480360381019061035991906132ac565b610c09565b60405161036b9190613cf5565b60405180910390f35b34801561038057600080fd5b5061039b600480360381019061039691906133dc565b610e07565b005b3480156103a957600080fd5b506103b2610e90565b6040516103bf9190613cf5565b60405180910390f35b3480156103d457600080fd5b506103dd610e96565b005b3480156103eb57600080fd5b5061040660048036038101906104019190613196565b610f61565b005b610422600480360381019061041d91906133dc565b610f81565b005b34801561043057600080fd5b5061044b60048036038101906104469190613393565b61110b565b005b34801561045957600080fd5b50610474600480360381019061046f91906133dc565b6111bc565b6040516104819190613cf5565b60405180910390f35b34801561049657600080fd5b5061049f61120f565b6040516104ac9190613cf5565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190613346565b611215565b005b3480156104ea57600080fd5b50610505600480360381019061050091906133dc565b6112a7565b60405161051291906138d1565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190613129565b6112bd565b60405161054f9190613cf5565b60405180910390f35b34801561056457600080fd5b5061056d6113a6565b005b34801561057b57600080fd5b5061058461142e565b005b6105a0600480360381019061059b91906133dc565b6114e2565b005b3480156105ae57600080fd5b506105c960048036038101906105c491906133dc565b61161c565b005b3480156105d757600080fd5b506105e06116e2565b6040516105ed9190613cf5565b60405180910390f35b34801561060257600080fd5b5061060b6116ec565b60405161061891906138d1565b60405180910390f35b34801561062d57600080fd5b50610636611716565b6040516106439190613953565b60405180910390f35b34801561065857600080fd5b506106616117a8565b60405161066e9190613cf5565b60405180910390f35b34801561068357600080fd5b5061069e6004803603810190610699919061326c565b6117b2565b005b3480156106ac57600080fd5b506106c760048036038101906106c291906131e9565b611933565b005b3480156106d557600080fd5b506106f060048036038101906106eb91906133dc565b61198f565b6040516106fd9190613953565b60405180910390f35b34801561071257600080fd5b5061071b611a36565b6040516107289190613cf5565b60405180910390f35b34801561073d57600080fd5b50610746611a3c565b6040516107539190613cf5565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613156565b611a42565b6040516107909190613938565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb9190613129565b611ad6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610905575061090482611bce565b5b9050919050565b610914611c38565b73ffffffffffffffffffffffffffffffffffffffff166109326116ec565b73ffffffffffffffffffffffffffffffffffffffff1614610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f90613ad5565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550565b6060600180546109cf90614065565b80601f01602080910402602001604051908101604052809291908181526020018280546109fb90614065565b8015610a485780601f10610a1d57610100808354040283529160200191610a48565b820191906000526020600020905b815481529060010190602001808311610a2b57829003601f168201915b5050505050905090565b6000610a5d82611c40565b610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390613cb5565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae2826112a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90613bb5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b72611c38565b73ffffffffffffffffffffffffffffffffffffffff161480610ba15750610ba081610b9b611c38565b611a42565b5b610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790613a55565b60405180910390fd5b610beb838383611c4d565b505050565b60008054905090565b610c04838383611cff565b505050565b6000610c14836112bd565b8210610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90613975565b60405180910390fd5b6000610c5f610bf0565b905060008060005b83811015610dc5576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d5957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db15786841415610da2578195505050505050610e01565b8380610dad906140c8565b9450505b508080610dbd906140c8565b915050610c67565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890613c35565b60405180910390fd5b92915050565b610e0f611c38565b73ffffffffffffffffffffffffffffffffffffffff16610e2d6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613ad5565b60405180910390fd5b610e8d33826122b8565b50565b600d5481565b610e9e611c38565b73ffffffffffffffffffffffffffffffffffffffff16610ebc6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990613ad5565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f5d573d6000803e3d6000fd5b5050565b610f7c83838360405180602001604052806000815250611933565b505050565b80600b54610f8f9190613ea7565b341015610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890613c95565b60405180910390fd5b600a60009054906101000a900460ff16611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790613b75565b60405180910390fd5b600c548161102c610bf0565b6110369190613e20565b1115611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613995565b60405180910390fd5b600081116110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613c55565b60405180910390fd5b600f8111156110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f590613b95565b60405180910390fd5b61110833826122b8565b50565b611113611c38565b73ffffffffffffffffffffffffffffffffffffffff166111316116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90613ad5565b60405180910390fd5b6001600e60006101000a81548160ff02191690831515021790555080600f90805190602001906111b8929190612e27565b5050565b60006111c6610bf0565b8210611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe906139f5565b60405180910390fd5b819050919050565b600b5481565b61121d611c38565b73ffffffffffffffffffffffffffffffffffffffff1661123b6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890613ad5565b60405180910390fd5b8181600f91906112a2929190612ead565b505050565b60006112b2826122d6565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590613a95565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113ae611c38565b73ffffffffffffffffffffffffffffffffffffffff166113cc6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990613ad5565b60405180910390fd5b61142c60006124d9565b565b611436611c38565b73ffffffffffffffffffffffffffffffffffffffff166114546116ec565b73ffffffffffffffffffffffffffffffffffffffff16146114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190613ad5565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff021916908315150217905550565b60008111611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90613c55565b60405180910390fd5b6002811115611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090613a75565b60405180910390fd5b600e60019054906101000a900460ff166115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90613b55565b60405180910390fd5b600d54816115c4610bf0565b6115ce9190613e20565b111561160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690613a35565b60405180910390fd5b61161933826122b8565b50565b611624611c38565b73ffffffffffffffffffffffffffffffffffffffff166116426116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f90613ad5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156116de573d6000803e3d6000fd5b5050565b6000600c54905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461172590614065565b80601f016020809104026020016040519081016040528092919081815260200182805461175190614065565b801561179e5780601f106117735761010080835404028352916020019161179e565b820191906000526020600020905b81548152906001019060200180831161178157829003601f168201915b5050505050905090565b6000600b54905090565b6117ba611c38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613b15565b60405180910390fd5b8060066000611835611c38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118e2611c38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119279190613938565b60405180910390a35050565b61193e848484611cff565b61194a8484848461259f565b611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090613bd5565b60405180910390fd5b50505050565b606061199a82611c40565b6119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090613af5565b60405180910390fd5b60006119e3612736565b90506000815111611a035760405180602001604052806000815250611a2e565b80611a0d846127c8565b604051602001611a1e9291906138ad565b6040516020818303038152906040525b915050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ade611c38565b73ffffffffffffffffffffffffffffffffffffffff16611afc6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990613ad5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb9906139b5565b60405180910390fd5b611bcb816124d9565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d0a826122d6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d31611c38565b73ffffffffffffffffffffffffffffffffffffffff161480611d8d5750611d56611c38565b73ffffffffffffffffffffffffffffffffffffffff16611d7584610a52565b73ffffffffffffffffffffffffffffffffffffffff16145b80611da95750611da88260000151611da3611c38565b611a42565b5b905080611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290613b35565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5490613ab5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490613a15565b60405180910390fd5b611eda8585856001612929565b611eea6000848460000151611c4d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f589190613f01565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ffc9190613dda565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121029190613e20565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122485761217881611c40565b15612247576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122b0868686600161292f565b505050505050565b6122d2828260405180602001604052806000815250612935565b5050565b6122de612f33565b6122e782611c40565b612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d906139d5565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000029a831061238a5760017f000000000000000000000000000000000000000000000000000000000000029a8461237d9190613f35565b6123879190613e20565b90505b60008390505b818110612498576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612484578093505050506124d4565b5080806124909061403b565b915050612390565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb90613c75565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006125c08473ffffffffffffffffffffffffffffffffffffffff16612e14565b15612729578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125e9611c38565b8786866040518563ffffffff1660e01b815260040161260b94939291906138ec565b602060405180830381600087803b15801561262557600080fd5b505af192505050801561265657506040513d601f19601f820116820180604052508101906126539190613319565b60015b6126d9573d8060008114612686576040519150601f19603f3d011682016040523d82523d6000602084013e61268b565b606091505b506000815114156126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c890613bd5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061272e565b600190505b949350505050565b6060600f805461274590614065565b80601f016020809104026020016040519081016040528092919081815260200182805461277190614065565b80156127be5780601f10612793576101008083540402835291602001916127be565b820191906000526020600020905b8154815290600101906020018083116127a157829003601f168201915b5050505050905090565b60606000821415612810576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612924565b600082905060005b6000821461284257808061282b906140c8565b915050600a8261283b9190613e76565b9150612818565b60008167ffffffffffffffff81111561285e5761285d6141fe565b5b6040519080825280601f01601f1916602001820160405280156128905781602001600182028036833780820191505090505b5090505b6000851461291d576001826128a99190613f35565b9150600a856128b89190614111565b60306128c49190613e20565b60f81b8183815181106128da576128d96141cf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129169190613e76565b9450612894565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a290613c15565b60405180910390fd5b6129b481611c40565b156129f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129eb90613bf5565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000029a831115612a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4e90613cd5565b60405180910390fd5b612a646000858386612929565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b619190613dda565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b889190613dda565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612df757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d97600088848861259f565b612dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcd90613bd5565b60405180910390fd5b8180612de1906140c8565b9250508080612def906140c8565b915050612d26565b5080600081905550612e0c600087858861292f565b505050505050565b600080823b905060008111915050919050565b828054612e3390614065565b90600052602060002090601f016020900481019282612e555760008555612e9c565b82601f10612e6e57805160ff1916838001178555612e9c565b82800160010185558215612e9c579182015b82811115612e9b578251825591602001919060010190612e80565b5b509050612ea99190612f6d565b5090565b828054612eb990614065565b90600052602060002090601f016020900481019282612edb5760008555612f22565b82601f10612ef457803560ff1916838001178555612f22565b82800160010185558215612f22579182015b82811115612f21578235825591602001919060010190612f06565b5b509050612f2f9190612f6d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f86576000816000905550600101612f6e565b5090565b6000612f9d612f9884613d35565b613d10565b905082815260208101848484011115612fb957612fb861423c565b5b612fc4848285613ff9565b509392505050565b6000612fdf612fda84613d66565b613d10565b905082815260208101848484011115612ffb57612ffa61423c565b5b613006848285613ff9565b509392505050565b60008135905061301d8161495e565b92915050565b60008135905061303281614975565b92915050565b6000813590506130478161498c565b92915050565b60008151905061305c8161498c565b92915050565b600082601f83011261307757613076614232565b5b8135613087848260208601612f8a565b91505092915050565b60008083601f8401126130a6576130a5614232565b5b8235905067ffffffffffffffff8111156130c3576130c261422d565b5b6020830191508360018202830111156130df576130de614237565b5b9250929050565b600082601f8301126130fb576130fa614232565b5b813561310b848260208601612fcc565b91505092915050565b600081359050613123816149a3565b92915050565b60006020828403121561313f5761313e614246565b5b600061314d8482850161300e565b91505092915050565b6000806040838503121561316d5761316c614246565b5b600061317b8582860161300e565b925050602061318c8582860161300e565b9150509250929050565b6000806000606084860312156131af576131ae614246565b5b60006131bd8682870161300e565b93505060206131ce8682870161300e565b92505060406131df86828701613114565b9150509250925092565b6000806000806080858703121561320357613202614246565b5b60006132118782880161300e565b94505060206132228782880161300e565b935050604061323387828801613114565b925050606085013567ffffffffffffffff81111561325457613253614241565b5b61326087828801613062565b91505092959194509250565b6000806040838503121561328357613282614246565b5b60006132918582860161300e565b92505060206132a285828601613023565b9150509250929050565b600080604083850312156132c3576132c2614246565b5b60006132d18582860161300e565b92505060206132e285828601613114565b9150509250929050565b60006020828403121561330257613301614246565b5b600061331084828501613038565b91505092915050565b60006020828403121561332f5761332e614246565b5b600061333d8482850161304d565b91505092915050565b6000806020838503121561335d5761335c614246565b5b600083013567ffffffffffffffff81111561337b5761337a614241565b5b61338785828601613090565b92509250509250929050565b6000602082840312156133a9576133a8614246565b5b600082013567ffffffffffffffff8111156133c7576133c6614241565b5b6133d3848285016130e6565b91505092915050565b6000602082840312156133f2576133f1614246565b5b600061340084828501613114565b91505092915050565b61341281613f69565b82525050565b61342181613f7b565b82525050565b600061343282613d97565b61343c8185613dad565b935061344c818560208601614008565b6134558161424b565b840191505092915050565b600061346b82613da2565b6134758185613dbe565b9350613485818560208601614008565b61348e8161424b565b840191505092915050565b60006134a482613da2565b6134ae8185613dcf565b93506134be818560208601614008565b80840191505092915050565b60006134d7602283613dbe565b91506134e28261425c565b604082019050919050565b60006134fa600a83613dbe565b9150613505826142ab565b602082019050919050565b600061351d602683613dbe565b9150613528826142d4565b604082019050919050565b6000613540602a83613dbe565b915061354b82614323565b604082019050919050565b6000613563602383613dbe565b915061356e82614372565b604082019050919050565b6000613586602583613dbe565b9150613591826143c1565b604082019050919050565b60006135a9601983613dbe565b91506135b482614410565b602082019050919050565b60006135cc603983613dbe565b91506135d782614439565b604082019050919050565b60006135ef601583613dbe565b91506135fa82614488565b602082019050919050565b6000613612602b83613dbe565b915061361d826144b1565b604082019050919050565b6000613635602683613dbe565b915061364082614500565b604082019050919050565b6000613658602083613dbe565b91506136638261454f565b602082019050919050565b600061367b602f83613dbe565b915061368682614578565b604082019050919050565b600061369e601a83613dbe565b91506136a9826145c7565b602082019050919050565b60006136c1603283613dbe565b91506136cc826145f0565b604082019050919050565b60006136e4601a83613dbe565b91506136ef8261463f565b602082019050919050565b6000613707601f83613dbe565b915061371282614668565b602082019050919050565b600061372a601383613dbe565b915061373582614691565b602082019050919050565b600061374d602283613dbe565b9150613758826146ba565b604082019050919050565b6000613770603383613dbe565b915061377b82614709565b604082019050919050565b6000613793601d83613dbe565b915061379e82614758565b602082019050919050565b60006137b6602183613dbe565b91506137c182614781565b604082019050919050565b60006137d9602e83613dbe565b91506137e4826147d0565b604082019050919050565b60006137fc601883613dbe565b91506138078261481f565b602082019050919050565b600061381f602f83613dbe565b915061382a82614848565b604082019050919050565b6000613842601e83613dbe565b915061384d82614897565b602082019050919050565b6000613865602d83613dbe565b9150613870826148c0565b604082019050919050565b6000613888602283613dbe565b91506138938261490f565b604082019050919050565b6138a781613fef565b82525050565b60006138b98285613499565b91506138c58284613499565b91508190509392505050565b60006020820190506138e66000830184613409565b92915050565b60006080820190506139016000830187613409565b61390e6020830186613409565b61391b604083018561389e565b818103606083015261392d8184613427565b905095945050505050565b600060208201905061394d6000830184613418565b92915050565b6000602082019050818103600083015261396d8184613460565b905092915050565b6000602082019050818103600083015261398e816134ca565b9050919050565b600060208201905081810360008301526139ae816134ed565b9050919050565b600060208201905081810360008301526139ce81613510565b9050919050565b600060208201905081810360008301526139ee81613533565b9050919050565b60006020820190508181036000830152613a0e81613556565b9050919050565b60006020820190508181036000830152613a2e81613579565b9050919050565b60006020820190508181036000830152613a4e8161359c565b9050919050565b60006020820190508181036000830152613a6e816135bf565b9050919050565b60006020820190508181036000830152613a8e816135e2565b9050919050565b60006020820190508181036000830152613aae81613605565b9050919050565b60006020820190508181036000830152613ace81613628565b9050919050565b60006020820190508181036000830152613aee8161364b565b9050919050565b60006020820190508181036000830152613b0e8161366e565b9050919050565b60006020820190508181036000830152613b2e81613691565b9050919050565b60006020820190508181036000830152613b4e816136b4565b9050919050565b60006020820190508181036000830152613b6e816136d7565b9050919050565b60006020820190508181036000830152613b8e816136fa565b9050919050565b60006020820190508181036000830152613bae8161371d565b9050919050565b60006020820190508181036000830152613bce81613740565b9050919050565b60006020820190508181036000830152613bee81613763565b9050919050565b60006020820190508181036000830152613c0e81613786565b9050919050565b60006020820190508181036000830152613c2e816137a9565b9050919050565b60006020820190508181036000830152613c4e816137cc565b9050919050565b60006020820190508181036000830152613c6e816137ef565b9050919050565b60006020820190508181036000830152613c8e81613812565b9050919050565b60006020820190508181036000830152613cae81613835565b9050919050565b60006020820190508181036000830152613cce81613858565b9050919050565b60006020820190508181036000830152613cee8161387b565b9050919050565b6000602082019050613d0a600083018461389e565b92915050565b6000613d1a613d2b565b9050613d268282614097565b919050565b6000604051905090565b600067ffffffffffffffff821115613d5057613d4f6141fe565b5b613d598261424b565b9050602081019050919050565b600067ffffffffffffffff821115613d8157613d806141fe565b5b613d8a8261424b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613de582613fb3565b9150613df083613fb3565b9250826fffffffffffffffffffffffffffffffff03821115613e1557613e14614142565b5b828201905092915050565b6000613e2b82613fef565b9150613e3683613fef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e6b57613e6a614142565b5b828201905092915050565b6000613e8182613fef565b9150613e8c83613fef565b925082613e9c57613e9b614171565b5b828204905092915050565b6000613eb282613fef565b9150613ebd83613fef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ef657613ef5614142565b5b828202905092915050565b6000613f0c82613fb3565b9150613f1783613fb3565b925082821015613f2a57613f29614142565b5b828203905092915050565b6000613f4082613fef565b9150613f4b83613fef565b925082821015613f5e57613f5d614142565b5b828203905092915050565b6000613f7482613fcf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561402657808201518184015260208101905061400b565b83811115614035576000848401525b50505050565b600061404682613fef565b9150600082141561405a57614059614142565b5b600182039050919050565b6000600282049050600182168061407d57607f821691505b60208210811415614091576140906141a0565b5b50919050565b6140a08261424b565b810181811067ffffffffffffffff821117156140bf576140be6141fe565b5b80604052505050565b60006140d382613fef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561410657614105614142565b5b600182019050919050565b600061411c82613fef565b915061412783613fef565b92508261413757614136614171565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c6c206d696e74656400000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4672656520746f6b656e20697320616c6c20636c61696d656400000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f43616e6e6f74206d696e742033206f72206d6f72650000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f46726565206d696e74696e67206973206e6f7420616374697665000000000000600082015250565b7f4d696e742046756e6374696f6e206973206e6f74204163746976652079657400600082015250565b7f43616e6e6f74206d696e74206f76657220313500000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e742030206f722062656c6f7720300000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420656e6f7567680000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61496781613f69565b811461497257600080fd5b50565b61497e81613f7b565b811461498957600080fd5b50565b61499581613f87565b81146149a057600080fd5b50565b6149ac81613fef565b81146149b757600080fd5b5056fea2646970667358221220998b086de37944cf02c0d9c3199d8b4431a0f5fa151c7df3e6773b5e3a4a18ce64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000029a0000000000000000000000000000000000000000000000000000000000001a0a
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 666
Arg [1] : collectionSize_ (uint256): 6666
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000029a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001a0a
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.