ERC-721
NFT
Overview
Max Total Supply
3,334 WC
Holders
736
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 WCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WaveCatchers
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "../ERC721A.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; // ._. __ __ // | | / \ / \_____ ___ __ ____ // | | \ \/\/ /\__ \\ \/ // __ \ // \| \ / / __ \\ /\ ___/ // __ \__/\ / (____ /\_/ \___ > // \/ \/ \/ \/ // _________ __ .__ // \_ ___ \_____ _/ |_ ____ | |__ ___________ ______ // / \ \/\__ \\ __\/ ___\| | \_/ __ \_ __ \/ ___/ // \ \____/ __ \| | \ \___| Y \ ___/| | \/\___ \ // \______ (____ /__| \___ >___| /\___ >__| /____ > // \/ \/ \/ \/ \/ \/ // @author 0xBori <https://twitter.com/0xBori> contract WaveCatchers is Ownable, ERC721A, ReentrancyGuard { using Strings for uint256; // Variables uint256 public collectionSize = 3334; uint256 public wlSupplyLeft = 334; uint256 public price = 0.025 ether; bytes32 public merkleRoot; string private baseTokenURI; string private defaultURI; bool public isRevealed; bool public saleIsActive; // Mappings mapping(address => bool) internal hasClaimed; constructor() ERC721A("WaveCatchers", "WC", 10) {} // Mint Magic function mint(uint256 _amount) external payable { require( saleIsActive, "Sale is not active" ); require( totalSupply() + _amount <= collectionSize - wlSupplyLeft, "Exceeds max supply" ); require( msg.value == price * _amount, "Incorrect ETH value sent" ); require( tx.origin == msg.sender, "Not allowing contracts" ); _safeMint(msg.sender, _amount); } function OGMint(bytes32[] calldata merkleProof) external { require( saleIsActive, "Sale is not active" ); require( wlSupplyLeft != 0, "No supply left for OG" ); require( !hasClaimed[msg.sender], "Already claimed" ); require( tx.origin == msg.sender, "Not allowing contracts" ); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(merkleProof, merkleRoot, leaf), "Invalid merkle proof"); hasClaimed[msg.sender] = true; unchecked { wlSupplyLeft--; } _safeMint(msg.sender, 1); } function reserve(uint256 _amount) external onlyOwner { require( totalSupply() == 0, "Owner has already minted" ); _safeMint(msg.sender, _amount); } function flipSaleState() external onlyOwner { saleIsActive = !saleIsActive; } // Merkle Magic function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function canClaimOG(address _address, bytes32[] calldata _merkleProof) public view returns (bool){ return !hasClaimed[_address] && MerkleProof.verify( _merkleProof, merkleRoot, keccak256(abi.encodePacked(_address)) ); } // Metadata Magic function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function reveal(string calldata baseURI) external onlyOwner { isRevealed = true; baseTokenURI = baseURI; } function setDefaultURI(string calldata _defaultURI ) external onlyOwner { defaultURI = _defaultURI; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); return isRevealed ? string(abi.encodePacked( baseTokenURI, _tokenId.toString() )) : defaultURI; } // Withdraw Magic function withdraw() external onlyOwner nonReentrant { uint256 balance = address(this).balance; (bool s1, ) = address(0x67eF43A7b0FDC38DB0990413a86f7B0dc0220f7F).call{value: balance / 100 * 4}(""); (bool s2, ) = address(0x70E93674A2f0eE65a5f16baDa5B13952C6671188).call{value: balance / 100 * 5}(""); (bool s3, ) = address(0x6E6ee51549aF3a11488b3D52D91B5e0697170d59).call{value: balance / 100 * 20}(""); (bool s4, ) = address(0xA57a867160240d95Dc317177F700b42bec36515b).call{value: balance / 100 * 71}(""); require(s1 && s2 && s3 && s4, "Transfer failed."); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) 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() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { 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 maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(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 > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"OGMint","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_address","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"canClaimOG","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","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":"uint256","name":"_amount","type":"uint256"}],"name":"reserve","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":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_defaultURI","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","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":[],"name":"wlSupplyLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a060405260006001556000600855610d06600a5561014e600b556658d15e17628000600c553480156200003257600080fd5b506040518060400160405280600c81526020017f57617665436174636865727300000000000000000000000000000000000000008152506040518060400160405280600281526020017f5743000000000000000000000000000000000000000000000000000000000000815250600a620000c1620000b56200015260201b60201c565b6200015a60201b60201c565b6000811162000107576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000fe90620002f5565b60405180910390fd5b82600290805190602001906200011f9291906200021e565b508160039080519060200190620001389291906200021e565b5080608081815250505050506001600981905550620003dc565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022c9062000328565b90600052602060002090601f0160209004810192826200025057600085556200029c565b82601f106200026b57805160ff19168380011785556200029c565b828001600101855582156200029c579182015b828111156200029b5782518255916020019190600101906200027e565b5b509050620002ab9190620002af565b5090565b5b80821115620002ca576000816000905550600101620002b0565b5090565b6000620002dd60278362000317565b9150620002ea826200038d565b604082019050919050565b600060208201905081810360008301526200031081620002ce565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200034157607f821691505b602082108114156200035857620003576200035e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6080516151cb62000406600039600081816128a2015281816128cb0152612ff401526151cb6000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a0712d68116100a0578063d7224ba01161006f578063d7224ba014610746578063da1b9e0814610771578063e985e9c51461079a578063eb8d2444146107d7578063f2fde38b1461080257610204565b8063a0712d681461069b578063a22cb465146106b7578063b88d4fde146106e0578063c87b56dd1461070957610204565b8063819b25ba116100e7578063819b25ba146105c65780638da5cb5b146105ef57806395b52f231461061a57806395d89b4114610645578063a035b1fe1461067057610204565b80636352211e1461050c57806370a0823114610549578063715018a6146105865780637cb647591461059d57610204565b80632f745c591161019b57806342842e0e1161016a57806342842e0e1461042757806345c0f533146104505780634c2612471461047b5780634f6ccce7146104a457806354214f69146104e157610204565b80632f745c591461037f57806334918dfd146103bc57806337df5f53146103d35780633ccfd60b1461041057610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b5780632eb4a7ab1461035457610204565b80630186d1371461020957806301ffc9a71461023257806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613887565b61082b565b005b34801561023e57600080fd5b50610259600480360381019061025491906138f5565b610aee565b6040516102669190614065565b60405180910390f35b34801561027b57600080fd5b50610284610c38565b604051610291919061409b565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061398c565b610cca565b6040516102ce9190613ffe565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061384b565b610d4f565b005b34801561030c57600080fd5b50610315610e68565b604051610322919061447d565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906136ed565b610e72565b005b34801561036057600080fd5b50610369610e82565b6040516103769190614080565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a1919061384b565b610e88565b6040516103b3919061447d565b60405180910390f35b3480156103c857600080fd5b506103d1611086565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906137b7565b61112e565b6040516104079190614065565b60405180910390f35b34801561041c57600080fd5b50610425611203565b005b34801561043357600080fd5b5061044e600480360381019061044991906136ed565b61159c565b005b34801561045c57600080fd5b506104656115bc565b604051610472919061447d565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190613947565b6115c2565b005b3480156104b057600080fd5b506104cb60048036038101906104c6919061398c565b61166f565b6040516104d8919061447d565b60405180910390f35b3480156104ed57600080fd5b506104f66116c2565b6040516105039190614065565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e919061398c565b6116d5565b6040516105409190613ffe565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190613688565b6116eb565b60405161057d919061447d565b60405180910390f35b34801561059257600080fd5b5061059b6117d4565b005b3480156105a957600080fd5b506105c460048036038101906105bf91906138cc565b61185c565b005b3480156105d257600080fd5b506105ed60048036038101906105e8919061398c565b6118e2565b005b3480156105fb57600080fd5b506106046119b5565b6040516106119190613ffe565b60405180910390f35b34801561062657600080fd5b5061062f6119de565b60405161063c919061447d565b60405180910390f35b34801561065157600080fd5b5061065a6119e4565b604051610667919061409b565b60405180910390f35b34801561067c57600080fd5b50610685611a76565b604051610692919061447d565b60405180910390f35b6106b560048036038101906106b0919061398c565b611a7c565b005b3480156106c357600080fd5b506106de60048036038101906106d9919061380f565b611bf9565b005b3480156106ec57600080fd5b506107076004803603810190610702919061373c565b611d7a565b005b34801561071557600080fd5b50610730600480360381019061072b919061398c565b611dd6565b60405161073d919061409b565b60405180910390f35b34801561075257600080fd5b5061075b611ef7565b604051610768919061447d565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190613947565b611efd565b005b3480156107a657600080fd5b506107c160048036038101906107bc91906136b1565b611f8f565b6040516107ce9190614065565b60405180910390f35b3480156107e357600080fd5b506107ec612023565b6040516107f99190614065565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190613688565b612036565b005b601060019054906101000a900460ff1661087a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108719061415d565b60405180910390fd5b6000600b5414156108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b7906141fd565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561094d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610944906141dd565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b29061441d565b60405180910390fd5b6000336040516020016109ce9190613f7e565b604051602081830303815290604052805190602001209050610a34838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d548361212e565b610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a9061425d565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b6000815480929190600190039190505550610ae9336001612145565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bb957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c2157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c315750610c3082612163565b5b9050919050565b606060028054610c47906147e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c73906147e6565b8015610cc05780601f10610c9557610100808354040283529160200191610cc0565b820191906000526020600020905b815481529060010190602001808311610ca357829003601f168201915b5050505050905090565b6000610cd5826121cd565b610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b9061443d565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d5a826116d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906142dd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dea6121db565b73ffffffffffffffffffffffffffffffffffffffff161480610e195750610e1881610e136121db565b611f8f565b5b610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f9061417d565b60405180910390fd5b610e638383836121e3565b505050565b6000600154905090565b610e7d838383612295565b505050565b600d5481565b6000610e93836116eb565b8210610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb906140bd565b60405180910390fd5b6000610ede610e68565b905060008060005b83811015611044576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fd857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110305786841415611021578195505050505050611080565b838061102c90614849565b9450505b50808061103c90614849565b915050610ee6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611077906143bd565b60405180910390fd5b92915050565b61108e6121db565b73ffffffffffffffffffffffffffffffffffffffff166110ac6119b5565b73ffffffffffffffffffffffffffffffffffffffff1614611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f99061423d565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156111fa57506111f9838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54866040516020016111de9190613f7e565b6040516020818303038152906040528051906020012061212e565b5b90509392505050565b61120b6121db565b73ffffffffffffffffffffffffffffffffffffffff166112296119b5565b73ffffffffffffffffffffffffffffffffffffffff161461127f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112769061423d565b60405180910390fd5b600260095414156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc906143dd565b60405180910390fd5b6002600981905550600047905060007367ef43a7b0fdc38db0990413a86f7b0dc0220f7f73ffffffffffffffffffffffffffffffffffffffff16600460648461130e91906145ed565b611318919061461e565b60405161132490613fe9565b60006040518083038185875af1925050503d8060008114611361576040519150601f19603f3d011682016040523d82523d6000602084013e611366565b606091505b5050905060007370e93674a2f0ee65a5f16bada5b13952c667118873ffffffffffffffffffffffffffffffffffffffff1660056064856113a691906145ed565b6113b0919061461e565b6040516113bc90613fe9565b60006040518083038185875af1925050503d80600081146113f9576040519150601f19603f3d011682016040523d82523d6000602084013e6113fe565b606091505b505090506000736e6ee51549af3a11488b3d52d91b5e0697170d5973ffffffffffffffffffffffffffffffffffffffff16601460648661143e91906145ed565b611448919061461e565b60405161145490613fe9565b60006040518083038185875af1925050503d8060008114611491576040519150601f19603f3d011682016040523d82523d6000602084013e611496565b606091505b50509050600073a57a867160240d95dc317177f700b42bec36515b73ffffffffffffffffffffffffffffffffffffffff1660476064876114d691906145ed565b6114e0919061461e565b6040516114ec90613fe9565b60006040518083038185875af1925050503d8060008114611529576040519150601f19603f3d011682016040523d82523d6000602084013e61152e565b606091505b5050905083801561153c5750825b80156115455750815b801561154e5750805b61158d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611584906142fd565b60405180910390fd5b50505050506001600981905550565b6115b783838360405180602001604052806000815250611d7a565b505050565b600a5481565b6115ca6121db565b73ffffffffffffffffffffffffffffffffffffffff166115e86119b5565b73ffffffffffffffffffffffffffffffffffffffff161461163e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116359061423d565b60405180910390fd5b6001601060006101000a81548160ff0219169083151502179055508181600e919061166a929190613431565b505050565b6000611679610e68565b82106116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b19061411d565b60405180910390fd5b819050919050565b601060009054906101000a900460ff1681565b60006116e08261284e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611753906141bd565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117dc6121db565b73ffffffffffffffffffffffffffffffffffffffff166117fa6119b5565b73ffffffffffffffffffffffffffffffffffffffff1614611850576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118479061423d565b60405180910390fd5b61185a6000612a51565b565b6118646121db565b73ffffffffffffffffffffffffffffffffffffffff166118826119b5565b73ffffffffffffffffffffffffffffffffffffffff16146118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf9061423d565b60405180910390fd5b80600d8190555050565b6118ea6121db565b73ffffffffffffffffffffffffffffffffffffffff166119086119b5565b73ffffffffffffffffffffffffffffffffffffffff161461195e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119559061423d565b60405180910390fd5b6000611968610e68565b146119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f9061437d565b60405180910390fd5b6119b23382612145565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6060600380546119f3906147e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1f906147e6565b8015611a6c5780601f10611a4157610100808354040283529160200191611a6c565b820191906000526020600020905b815481529060010190602001808311611a4f57829003601f168201915b5050505050905090565b600c5481565b601060019054906101000a900460ff16611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac29061415d565b60405180910390fd5b600b54600a54611adb91906146ac565b81611ae4610e68565b611aee9190614597565b1115611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b269061419d565b60405180910390fd5b80600c54611b3d919061461e565b3414611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b759061439d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be39061441d565b60405180910390fd5b611bf63382612145565b50565b611c016121db565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c669061429d565b60405180910390fd5b8060076000611c7c6121db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d296121db565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d6e9190614065565b60405180910390a35050565b611d85848484612295565b611d9184848484612b15565b611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc79061431d565b60405180910390fd5b50505050565b6060611de1826121cd565b611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e179061427d565b60405180910390fd5b601060009054906101000a900460ff16611ec457600f8054611e41906147e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6d906147e6565b8015611eba5780601f10611e8f57610100808354040283529160200191611eba565b820191906000526020600020905b815481529060010190602001808311611e9d57829003601f168201915b5050505050611ef0565b600e611ecf83612cac565b604051602001611ee0929190613fc5565b6040516020818303038152906040525b9050919050565b60085481565b611f056121db565b73ffffffffffffffffffffffffffffffffffffffff16611f236119b5565b73ffffffffffffffffffffffffffffffffffffffff1614611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f709061423d565b60405180910390fd5b8181600f9190611f8a929190613431565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060019054906101000a900460ff1681565b61203e6121db565b73ffffffffffffffffffffffffffffffffffffffff1661205c6119b5565b73ffffffffffffffffffffffffffffffffffffffff16146120b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a99061423d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612119906140dd565b60405180910390fd5b61212b81612a51565b50565b60008261213b8584612e59565b1490509392505050565b61215f828260405180602001604052806000815250612f32565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122a08261284e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122c76121db565b73ffffffffffffffffffffffffffffffffffffffff16148061232357506122ec6121db565b73ffffffffffffffffffffffffffffffffffffffff1661230b84610cca565b73ffffffffffffffffffffffffffffffffffffffff16145b8061233f575061233e82600001516123396121db565b611f8f565b5b905080612381576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612378906142bd565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea9061421d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a9061413d565b60405180910390fd5b6124708585856001613412565b61248060008484600001516121e3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124ee9190614678565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125929190614551565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846126989190614597565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127de5761270e816121cd565b156127dd576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128468686866001613418565b505050505050565b6128566134b7565b61285f826121cd565b61289e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612895906140fd565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106129025760017f0000000000000000000000000000000000000000000000000000000000000000846128f591906146ac565b6128ff9190614597565b90505b60008390505b818110612a10576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129fc57809350505050612a4c565b508080612a08906147bc565b915050612908565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a43906143fd565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612b368473ffffffffffffffffffffffffffffffffffffffff1661341e565b15612c9f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b5f6121db565b8786866040518563ffffffff1660e01b8152600401612b819493929190614019565b602060405180830381600087803b158015612b9b57600080fd5b505af1925050508015612bcc57506040513d601f19601f82011682018060405250810190612bc9919061391e565b60015b612c4f573d8060008114612bfc576040519150601f19603f3d011682016040523d82523d6000602084013e612c01565b606091505b50600081511415612c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3e9061431d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca4565b600190505b949350505050565b60606000821415612cf4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e54565b600082905060005b60008214612d26578080612d0f90614849565b915050600a82612d1f91906145ed565b9150612cfc565b60008167ffffffffffffffff811115612d68577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d9a5781602001600182028036833780820191505090505b5090505b60008514612e4d57600182612db391906146ac565b9150600a85612dc291906148c0565b6030612dce9190614597565b60f81b818381518110612e0a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e4691906145ed565b9450612d9e565b8093505050505b919050565b60008082905060005b8451811015612f27576000858281518110612ea6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612ee7578281604051602001612eca929190613f99565b604051602081830303815290604052805190602001209250612f13565b8083604051602001612efa929190613f99565b6040516020818303038152906040528051906020012092505b508080612f1f90614849565b915050612e62565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa09061435d565b60405180910390fd5b612fb2816121cd565b15612ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe99061433d565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304c9061445d565b60405180910390fd5b6130626000858386613412565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161315f9190614551565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131869190614551565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156133f557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133956000888488612b15565b6133d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cb9061431d565b60405180910390fd5b81806133df90614849565b92505080806133ed90614849565b915050613324565b508060018190555061340a6000878588613418565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b82805461343d906147e6565b90600052602060002090601f01602090048101928261345f57600085556134a6565b82601f1061347857803560ff19168380011785556134a6565b828001600101855582156134a6579182015b828111156134a557823582559160200191906001019061348a565b5b5090506134b391906134f1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561350a5760008160009055506001016134f2565b5090565b600061352161351c846144bd565b614498565b90508281526020810184848401111561353957600080fd5b61354484828561477a565b509392505050565b60008135905061355b81615122565b92915050565b60008083601f84011261357357600080fd5b8235905067ffffffffffffffff81111561358c57600080fd5b6020830191508360208202830111156135a457600080fd5b9250929050565b6000813590506135ba81615139565b92915050565b6000813590506135cf81615150565b92915050565b6000813590506135e481615167565b92915050565b6000815190506135f981615167565b92915050565b600082601f83011261361057600080fd5b813561362084826020860161350e565b91505092915050565b60008083601f84011261363b57600080fd5b8235905067ffffffffffffffff81111561365457600080fd5b60208301915083600182028301111561366c57600080fd5b9250929050565b6000813590506136828161517e565b92915050565b60006020828403121561369a57600080fd5b60006136a88482850161354c565b91505092915050565b600080604083850312156136c457600080fd5b60006136d28582860161354c565b92505060206136e38582860161354c565b9150509250929050565b60008060006060848603121561370257600080fd5b60006137108682870161354c565b93505060206137218682870161354c565b925050604061373286828701613673565b9150509250925092565b6000806000806080858703121561375257600080fd5b60006137608782880161354c565b94505060206137718782880161354c565b935050604061378287828801613673565b925050606085013567ffffffffffffffff81111561379f57600080fd5b6137ab878288016135ff565b91505092959194509250565b6000806000604084860312156137cc57600080fd5b60006137da8682870161354c565b935050602084013567ffffffffffffffff8111156137f757600080fd5b61380386828701613561565b92509250509250925092565b6000806040838503121561382257600080fd5b60006138308582860161354c565b9250506020613841858286016135ab565b9150509250929050565b6000806040838503121561385e57600080fd5b600061386c8582860161354c565b925050602061387d85828601613673565b9150509250929050565b6000806020838503121561389a57600080fd5b600083013567ffffffffffffffff8111156138b457600080fd5b6138c085828601613561565b92509250509250929050565b6000602082840312156138de57600080fd5b60006138ec848285016135c0565b91505092915050565b60006020828403121561390757600080fd5b6000613915848285016135d5565b91505092915050565b60006020828403121561393057600080fd5b600061393e848285016135ea565b91505092915050565b6000806020838503121561395a57600080fd5b600083013567ffffffffffffffff81111561397457600080fd5b61398085828601613629565b92509250509250929050565b60006020828403121561399e57600080fd5b60006139ac84828501613673565b91505092915050565b6139be816146e0565b82525050565b6139d56139d0826146e0565b614892565b82525050565b6139e4816146f2565b82525050565b6139f3816146fe565b82525050565b613a0a613a05826146fe565b6148a4565b82525050565b6000613a1b82614503565b613a258185614519565b9350613a35818560208601614789565b613a3e816149ad565b840191505092915050565b6000613a548261450e565b613a5e8185614535565b9350613a6e818560208601614789565b613a77816149ad565b840191505092915050565b6000613a8d8261450e565b613a978185614546565b9350613aa7818560208601614789565b80840191505092915050565b60008154613ac0816147e6565b613aca8186614546565b94506001821660008114613ae55760018114613af657613b29565b60ff19831686528186019350613b29565b613aff856144ee565b60005b83811015613b2157815481890152600182019150602081019050613b02565b838801955050505b50505092915050565b6000613b3f602283614535565b9150613b4a826149cb565b604082019050919050565b6000613b62602683614535565b9150613b6d82614a1a565b604082019050919050565b6000613b85602a83614535565b9150613b9082614a69565b604082019050919050565b6000613ba8602383614535565b9150613bb382614ab8565b604082019050919050565b6000613bcb602583614535565b9150613bd682614b07565b604082019050919050565b6000613bee601283614535565b9150613bf982614b56565b602082019050919050565b6000613c11603983614535565b9150613c1c82614b7f565b604082019050919050565b6000613c34601283614535565b9150613c3f82614bce565b602082019050919050565b6000613c57602b83614535565b9150613c6282614bf7565b604082019050919050565b6000613c7a600f83614535565b9150613c8582614c46565b602082019050919050565b6000613c9d601583614535565b9150613ca882614c6f565b602082019050919050565b6000613cc0602683614535565b9150613ccb82614c98565b604082019050919050565b6000613ce3602083614535565b9150613cee82614ce7565b602082019050919050565b6000613d06601483614535565b9150613d1182614d10565b602082019050919050565b6000613d29602f83614535565b9150613d3482614d39565b604082019050919050565b6000613d4c601a83614535565b9150613d5782614d88565b602082019050919050565b6000613d6f603283614535565b9150613d7a82614db1565b604082019050919050565b6000613d92602283614535565b9150613d9d82614e00565b604082019050919050565b6000613db560008361452a565b9150613dc082614e4f565b600082019050919050565b6000613dd8601083614535565b9150613de382614e52565b602082019050919050565b6000613dfb603383614535565b9150613e0682614e7b565b604082019050919050565b6000613e1e601d83614535565b9150613e2982614eca565b602082019050919050565b6000613e41602183614535565b9150613e4c82614ef3565b604082019050919050565b6000613e64601883614535565b9150613e6f82614f42565b602082019050919050565b6000613e87601883614535565b9150613e9282614f6b565b602082019050919050565b6000613eaa602e83614535565b9150613eb582614f94565b604082019050919050565b6000613ecd601f83614535565b9150613ed882614fe3565b602082019050919050565b6000613ef0602f83614535565b9150613efb8261500c565b604082019050919050565b6000613f13601683614535565b9150613f1e8261505b565b602082019050919050565b6000613f36602d83614535565b9150613f4182615084565b604082019050919050565b6000613f59602283614535565b9150613f64826150d3565b604082019050919050565b613f7881614770565b82525050565b6000613f8a82846139c4565b60148201915081905092915050565b6000613fa582856139f9565b602082019150613fb582846139f9565b6020820191508190509392505050565b6000613fd18285613ab3565b9150613fdd8284613a82565b91508190509392505050565b6000613ff482613da8565b9150819050919050565b600060208201905061401360008301846139b5565b92915050565b600060808201905061402e60008301876139b5565b61403b60208301866139b5565b6140486040830185613f6f565b818103606083015261405a8184613a10565b905095945050505050565b600060208201905061407a60008301846139db565b92915050565b600060208201905061409560008301846139ea565b92915050565b600060208201905081810360008301526140b58184613a49565b905092915050565b600060208201905081810360008301526140d681613b32565b9050919050565b600060208201905081810360008301526140f681613b55565b9050919050565b6000602082019050818103600083015261411681613b78565b9050919050565b6000602082019050818103600083015261413681613b9b565b9050919050565b6000602082019050818103600083015261415681613bbe565b9050919050565b6000602082019050818103600083015261417681613be1565b9050919050565b6000602082019050818103600083015261419681613c04565b9050919050565b600060208201905081810360008301526141b681613c27565b9050919050565b600060208201905081810360008301526141d681613c4a565b9050919050565b600060208201905081810360008301526141f681613c6d565b9050919050565b6000602082019050818103600083015261421681613c90565b9050919050565b6000602082019050818103600083015261423681613cb3565b9050919050565b6000602082019050818103600083015261425681613cd6565b9050919050565b6000602082019050818103600083015261427681613cf9565b9050919050565b6000602082019050818103600083015261429681613d1c565b9050919050565b600060208201905081810360008301526142b681613d3f565b9050919050565b600060208201905081810360008301526142d681613d62565b9050919050565b600060208201905081810360008301526142f681613d85565b9050919050565b6000602082019050818103600083015261431681613dcb565b9050919050565b6000602082019050818103600083015261433681613dee565b9050919050565b6000602082019050818103600083015261435681613e11565b9050919050565b6000602082019050818103600083015261437681613e34565b9050919050565b6000602082019050818103600083015261439681613e57565b9050919050565b600060208201905081810360008301526143b681613e7a565b9050919050565b600060208201905081810360008301526143d681613e9d565b9050919050565b600060208201905081810360008301526143f681613ec0565b9050919050565b6000602082019050818103600083015261441681613ee3565b9050919050565b6000602082019050818103600083015261443681613f06565b9050919050565b6000602082019050818103600083015261445681613f29565b9050919050565b6000602082019050818103600083015261447681613f4c565b9050919050565b60006020820190506144926000830184613f6f565b92915050565b60006144a26144b3565b90506144ae8282614818565b919050565b6000604051905090565b600067ffffffffffffffff8211156144d8576144d761497e565b5b6144e1826149ad565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061455c82614734565b915061456783614734565b9250826fffffffffffffffffffffffffffffffff0382111561458c5761458b6148f1565b5b828201905092915050565b60006145a282614770565b91506145ad83614770565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145e2576145e16148f1565b5b828201905092915050565b60006145f882614770565b915061460383614770565b92508261461357614612614920565b5b828204905092915050565b600061462982614770565b915061463483614770565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561466d5761466c6148f1565b5b828202905092915050565b600061468382614734565b915061468e83614734565b9250828210156146a1576146a06148f1565b5b828203905092915050565b60006146b782614770565b91506146c283614770565b9250828210156146d5576146d46148f1565b5b828203905092915050565b60006146eb82614750565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147a757808201518184015260208101905061478c565b838111156147b6576000848401525b50505050565b60006147c782614770565b915060008214156147db576147da6148f1565b5b600182039050919050565b600060028204905060018216806147fe57607f821691505b602082108114156148125761481161494f565b5b50919050565b614821826149ad565b810181811067ffffffffffffffff821117156148405761483f61497e565b5b80604052505050565b600061485482614770565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614887576148866148f1565b5b600182019050919050565b600061489d826148ae565b9050919050565b6000819050919050565b60006148b9826149be565b9050919050565b60006148cb82614770565b91506148d683614770565b9250826148e6576148e5614920565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b7f4e6f20737570706c79206c65667420666f72204f470000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e65722068617320616c7265616479206d696e7465640000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420616c6c6f77696e6720636f6e74726163747300000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61512b816146e0565b811461513657600080fd5b50565b615142816146f2565b811461514d57600080fd5b50565b615159816146fe565b811461516457600080fd5b50565b61517081614708565b811461517b57600080fd5b50565b61518781614770565b811461519257600080fd5b5056fea26469706673582212201d2515429ba525ef6734f634d543723cf58db6b4c2a7ea489015c5a39c2ab85a64736f6c63430008040033
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636352211e11610118578063a0712d68116100a0578063d7224ba01161006f578063d7224ba014610746578063da1b9e0814610771578063e985e9c51461079a578063eb8d2444146107d7578063f2fde38b1461080257610204565b8063a0712d681461069b578063a22cb465146106b7578063b88d4fde146106e0578063c87b56dd1461070957610204565b8063819b25ba116100e7578063819b25ba146105c65780638da5cb5b146105ef57806395b52f231461061a57806395d89b4114610645578063a035b1fe1461067057610204565b80636352211e1461050c57806370a0823114610549578063715018a6146105865780637cb647591461059d57610204565b80632f745c591161019b57806342842e0e1161016a57806342842e0e1461042757806345c0f533146104505780634c2612471461047b5780634f6ccce7146104a457806354214f69146104e157610204565b80632f745c591461037f57806334918dfd146103bc57806337df5f53146103d35780633ccfd60b1461041057610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b5780632eb4a7ab1461035457610204565b80630186d1371461020957806301ffc9a71461023257806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613887565b61082b565b005b34801561023e57600080fd5b50610259600480360381019061025491906138f5565b610aee565b6040516102669190614065565b60405180910390f35b34801561027b57600080fd5b50610284610c38565b604051610291919061409b565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061398c565b610cca565b6040516102ce9190613ffe565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061384b565b610d4f565b005b34801561030c57600080fd5b50610315610e68565b604051610322919061447d565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906136ed565b610e72565b005b34801561036057600080fd5b50610369610e82565b6040516103769190614080565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a1919061384b565b610e88565b6040516103b3919061447d565b60405180910390f35b3480156103c857600080fd5b506103d1611086565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906137b7565b61112e565b6040516104079190614065565b60405180910390f35b34801561041c57600080fd5b50610425611203565b005b34801561043357600080fd5b5061044e600480360381019061044991906136ed565b61159c565b005b34801561045c57600080fd5b506104656115bc565b604051610472919061447d565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190613947565b6115c2565b005b3480156104b057600080fd5b506104cb60048036038101906104c6919061398c565b61166f565b6040516104d8919061447d565b60405180910390f35b3480156104ed57600080fd5b506104f66116c2565b6040516105039190614065565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e919061398c565b6116d5565b6040516105409190613ffe565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190613688565b6116eb565b60405161057d919061447d565b60405180910390f35b34801561059257600080fd5b5061059b6117d4565b005b3480156105a957600080fd5b506105c460048036038101906105bf91906138cc565b61185c565b005b3480156105d257600080fd5b506105ed60048036038101906105e8919061398c565b6118e2565b005b3480156105fb57600080fd5b506106046119b5565b6040516106119190613ffe565b60405180910390f35b34801561062657600080fd5b5061062f6119de565b60405161063c919061447d565b60405180910390f35b34801561065157600080fd5b5061065a6119e4565b604051610667919061409b565b60405180910390f35b34801561067c57600080fd5b50610685611a76565b604051610692919061447d565b60405180910390f35b6106b560048036038101906106b0919061398c565b611a7c565b005b3480156106c357600080fd5b506106de60048036038101906106d9919061380f565b611bf9565b005b3480156106ec57600080fd5b506107076004803603810190610702919061373c565b611d7a565b005b34801561071557600080fd5b50610730600480360381019061072b919061398c565b611dd6565b60405161073d919061409b565b60405180910390f35b34801561075257600080fd5b5061075b611ef7565b604051610768919061447d565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190613947565b611efd565b005b3480156107a657600080fd5b506107c160048036038101906107bc91906136b1565b611f8f565b6040516107ce9190614065565b60405180910390f35b3480156107e357600080fd5b506107ec612023565b6040516107f99190614065565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190613688565b612036565b005b601060019054906101000a900460ff1661087a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108719061415d565b60405180910390fd5b6000600b5414156108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b7906141fd565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561094d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610944906141dd565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b29061441d565b60405180910390fd5b6000336040516020016109ce9190613f7e565b604051602081830303815290604052805190602001209050610a34838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d548361212e565b610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a9061425d565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b6000815480929190600190039190505550610ae9336001612145565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bb957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c2157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c315750610c3082612163565b5b9050919050565b606060028054610c47906147e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c73906147e6565b8015610cc05780601f10610c9557610100808354040283529160200191610cc0565b820191906000526020600020905b815481529060010190602001808311610ca357829003601f168201915b5050505050905090565b6000610cd5826121cd565b610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b9061443d565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d5a826116d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906142dd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dea6121db565b73ffffffffffffffffffffffffffffffffffffffff161480610e195750610e1881610e136121db565b611f8f565b5b610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f9061417d565b60405180910390fd5b610e638383836121e3565b505050565b6000600154905090565b610e7d838383612295565b505050565b600d5481565b6000610e93836116eb565b8210610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb906140bd565b60405180910390fd5b6000610ede610e68565b905060008060005b83811015611044576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fd857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110305786841415611021578195505050505050611080565b838061102c90614849565b9450505b50808061103c90614849565b915050610ee6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611077906143bd565b60405180910390fd5b92915050565b61108e6121db565b73ffffffffffffffffffffffffffffffffffffffff166110ac6119b5565b73ffffffffffffffffffffffffffffffffffffffff1614611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f99061423d565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156111fa57506111f9838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54866040516020016111de9190613f7e565b6040516020818303038152906040528051906020012061212e565b5b90509392505050565b61120b6121db565b73ffffffffffffffffffffffffffffffffffffffff166112296119b5565b73ffffffffffffffffffffffffffffffffffffffff161461127f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112769061423d565b60405180910390fd5b600260095414156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc906143dd565b60405180910390fd5b6002600981905550600047905060007367ef43a7b0fdc38db0990413a86f7b0dc0220f7f73ffffffffffffffffffffffffffffffffffffffff16600460648461130e91906145ed565b611318919061461e565b60405161132490613fe9565b60006040518083038185875af1925050503d8060008114611361576040519150601f19603f3d011682016040523d82523d6000602084013e611366565b606091505b5050905060007370e93674a2f0ee65a5f16bada5b13952c667118873ffffffffffffffffffffffffffffffffffffffff1660056064856113a691906145ed565b6113b0919061461e565b6040516113bc90613fe9565b60006040518083038185875af1925050503d80600081146113f9576040519150601f19603f3d011682016040523d82523d6000602084013e6113fe565b606091505b505090506000736e6ee51549af3a11488b3d52d91b5e0697170d5973ffffffffffffffffffffffffffffffffffffffff16601460648661143e91906145ed565b611448919061461e565b60405161145490613fe9565b60006040518083038185875af1925050503d8060008114611491576040519150601f19603f3d011682016040523d82523d6000602084013e611496565b606091505b50509050600073a57a867160240d95dc317177f700b42bec36515b73ffffffffffffffffffffffffffffffffffffffff1660476064876114d691906145ed565b6114e0919061461e565b6040516114ec90613fe9565b60006040518083038185875af1925050503d8060008114611529576040519150601f19603f3d011682016040523d82523d6000602084013e61152e565b606091505b5050905083801561153c5750825b80156115455750815b801561154e5750805b61158d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611584906142fd565b60405180910390fd5b50505050506001600981905550565b6115b783838360405180602001604052806000815250611d7a565b505050565b600a5481565b6115ca6121db565b73ffffffffffffffffffffffffffffffffffffffff166115e86119b5565b73ffffffffffffffffffffffffffffffffffffffff161461163e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116359061423d565b60405180910390fd5b6001601060006101000a81548160ff0219169083151502179055508181600e919061166a929190613431565b505050565b6000611679610e68565b82106116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b19061411d565b60405180910390fd5b819050919050565b601060009054906101000a900460ff1681565b60006116e08261284e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611753906141bd565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117dc6121db565b73ffffffffffffffffffffffffffffffffffffffff166117fa6119b5565b73ffffffffffffffffffffffffffffffffffffffff1614611850576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118479061423d565b60405180910390fd5b61185a6000612a51565b565b6118646121db565b73ffffffffffffffffffffffffffffffffffffffff166118826119b5565b73ffffffffffffffffffffffffffffffffffffffff16146118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf9061423d565b60405180910390fd5b80600d8190555050565b6118ea6121db565b73ffffffffffffffffffffffffffffffffffffffff166119086119b5565b73ffffffffffffffffffffffffffffffffffffffff161461195e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119559061423d565b60405180910390fd5b6000611968610e68565b146119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f9061437d565b60405180910390fd5b6119b23382612145565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6060600380546119f3906147e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1f906147e6565b8015611a6c5780601f10611a4157610100808354040283529160200191611a6c565b820191906000526020600020905b815481529060010190602001808311611a4f57829003601f168201915b5050505050905090565b600c5481565b601060019054906101000a900460ff16611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac29061415d565b60405180910390fd5b600b54600a54611adb91906146ac565b81611ae4610e68565b611aee9190614597565b1115611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b269061419d565b60405180910390fd5b80600c54611b3d919061461e565b3414611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b759061439d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be39061441d565b60405180910390fd5b611bf63382612145565b50565b611c016121db565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c669061429d565b60405180910390fd5b8060076000611c7c6121db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d296121db565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d6e9190614065565b60405180910390a35050565b611d85848484612295565b611d9184848484612b15565b611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc79061431d565b60405180910390fd5b50505050565b6060611de1826121cd565b611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e179061427d565b60405180910390fd5b601060009054906101000a900460ff16611ec457600f8054611e41906147e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6d906147e6565b8015611eba5780601f10611e8f57610100808354040283529160200191611eba565b820191906000526020600020905b815481529060010190602001808311611e9d57829003601f168201915b5050505050611ef0565b600e611ecf83612cac565b604051602001611ee0929190613fc5565b6040516020818303038152906040525b9050919050565b60085481565b611f056121db565b73ffffffffffffffffffffffffffffffffffffffff16611f236119b5565b73ffffffffffffffffffffffffffffffffffffffff1614611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f709061423d565b60405180910390fd5b8181600f9190611f8a929190613431565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060019054906101000a900460ff1681565b61203e6121db565b73ffffffffffffffffffffffffffffffffffffffff1661205c6119b5565b73ffffffffffffffffffffffffffffffffffffffff16146120b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a99061423d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612119906140dd565b60405180910390fd5b61212b81612a51565b50565b60008261213b8584612e59565b1490509392505050565b61215f828260405180602001604052806000815250612f32565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122a08261284e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122c76121db565b73ffffffffffffffffffffffffffffffffffffffff16148061232357506122ec6121db565b73ffffffffffffffffffffffffffffffffffffffff1661230b84610cca565b73ffffffffffffffffffffffffffffffffffffffff16145b8061233f575061233e82600001516123396121db565b611f8f565b5b905080612381576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612378906142bd565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea9061421d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a9061413d565b60405180910390fd5b6124708585856001613412565b61248060008484600001516121e3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124ee9190614678565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125929190614551565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846126989190614597565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127de5761270e816121cd565b156127dd576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128468686866001613418565b505050505050565b6128566134b7565b61285f826121cd565b61289e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612895906140fd565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106129025760017f000000000000000000000000000000000000000000000000000000000000000a846128f591906146ac565b6128ff9190614597565b90505b60008390505b818110612a10576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129fc57809350505050612a4c565b508080612a08906147bc565b915050612908565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a43906143fd565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612b368473ffffffffffffffffffffffffffffffffffffffff1661341e565b15612c9f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b5f6121db565b8786866040518563ffffffff1660e01b8152600401612b819493929190614019565b602060405180830381600087803b158015612b9b57600080fd5b505af1925050508015612bcc57506040513d601f19601f82011682018060405250810190612bc9919061391e565b60015b612c4f573d8060008114612bfc576040519150601f19603f3d011682016040523d82523d6000602084013e612c01565b606091505b50600081511415612c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3e9061431d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca4565b600190505b949350505050565b60606000821415612cf4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e54565b600082905060005b60008214612d26578080612d0f90614849565b915050600a82612d1f91906145ed565b9150612cfc565b60008167ffffffffffffffff811115612d68577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d9a5781602001600182028036833780820191505090505b5090505b60008514612e4d57600182612db391906146ac565b9150600a85612dc291906148c0565b6030612dce9190614597565b60f81b818381518110612e0a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e4691906145ed565b9450612d9e565b8093505050505b919050565b60008082905060005b8451811015612f27576000858281518110612ea6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612ee7578281604051602001612eca929190613f99565b604051602081830303815290604052805190602001209250612f13565b8083604051602001612efa929190613f99565b6040516020818303038152906040528051906020012092505b508080612f1f90614849565b915050612e62565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa09061435d565b60405180910390fd5b612fb2816121cd565b15612ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe99061433d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115613055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304c9061445d565b60405180910390fd5b6130626000858386613412565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161315f9190614551565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131869190614551565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156133f557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133956000888488612b15565b6133d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cb9061431d565b60405180910390fd5b81806133df90614849565b92505080806133ed90614849565b915050613324565b508060018190555061340a6000878588613418565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b82805461343d906147e6565b90600052602060002090601f01602090048101928261345f57600085556134a6565b82601f1061347857803560ff19168380011785556134a6565b828001600101855582156134a6579182015b828111156134a557823582559160200191906001019061348a565b5b5090506134b391906134f1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561350a5760008160009055506001016134f2565b5090565b600061352161351c846144bd565b614498565b90508281526020810184848401111561353957600080fd5b61354484828561477a565b509392505050565b60008135905061355b81615122565b92915050565b60008083601f84011261357357600080fd5b8235905067ffffffffffffffff81111561358c57600080fd5b6020830191508360208202830111156135a457600080fd5b9250929050565b6000813590506135ba81615139565b92915050565b6000813590506135cf81615150565b92915050565b6000813590506135e481615167565b92915050565b6000815190506135f981615167565b92915050565b600082601f83011261361057600080fd5b813561362084826020860161350e565b91505092915050565b60008083601f84011261363b57600080fd5b8235905067ffffffffffffffff81111561365457600080fd5b60208301915083600182028301111561366c57600080fd5b9250929050565b6000813590506136828161517e565b92915050565b60006020828403121561369a57600080fd5b60006136a88482850161354c565b91505092915050565b600080604083850312156136c457600080fd5b60006136d28582860161354c565b92505060206136e38582860161354c565b9150509250929050565b60008060006060848603121561370257600080fd5b60006137108682870161354c565b93505060206137218682870161354c565b925050604061373286828701613673565b9150509250925092565b6000806000806080858703121561375257600080fd5b60006137608782880161354c565b94505060206137718782880161354c565b935050604061378287828801613673565b925050606085013567ffffffffffffffff81111561379f57600080fd5b6137ab878288016135ff565b91505092959194509250565b6000806000604084860312156137cc57600080fd5b60006137da8682870161354c565b935050602084013567ffffffffffffffff8111156137f757600080fd5b61380386828701613561565b92509250509250925092565b6000806040838503121561382257600080fd5b60006138308582860161354c565b9250506020613841858286016135ab565b9150509250929050565b6000806040838503121561385e57600080fd5b600061386c8582860161354c565b925050602061387d85828601613673565b9150509250929050565b6000806020838503121561389a57600080fd5b600083013567ffffffffffffffff8111156138b457600080fd5b6138c085828601613561565b92509250509250929050565b6000602082840312156138de57600080fd5b60006138ec848285016135c0565b91505092915050565b60006020828403121561390757600080fd5b6000613915848285016135d5565b91505092915050565b60006020828403121561393057600080fd5b600061393e848285016135ea565b91505092915050565b6000806020838503121561395a57600080fd5b600083013567ffffffffffffffff81111561397457600080fd5b61398085828601613629565b92509250509250929050565b60006020828403121561399e57600080fd5b60006139ac84828501613673565b91505092915050565b6139be816146e0565b82525050565b6139d56139d0826146e0565b614892565b82525050565b6139e4816146f2565b82525050565b6139f3816146fe565b82525050565b613a0a613a05826146fe565b6148a4565b82525050565b6000613a1b82614503565b613a258185614519565b9350613a35818560208601614789565b613a3e816149ad565b840191505092915050565b6000613a548261450e565b613a5e8185614535565b9350613a6e818560208601614789565b613a77816149ad565b840191505092915050565b6000613a8d8261450e565b613a978185614546565b9350613aa7818560208601614789565b80840191505092915050565b60008154613ac0816147e6565b613aca8186614546565b94506001821660008114613ae55760018114613af657613b29565b60ff19831686528186019350613b29565b613aff856144ee565b60005b83811015613b2157815481890152600182019150602081019050613b02565b838801955050505b50505092915050565b6000613b3f602283614535565b9150613b4a826149cb565b604082019050919050565b6000613b62602683614535565b9150613b6d82614a1a565b604082019050919050565b6000613b85602a83614535565b9150613b9082614a69565b604082019050919050565b6000613ba8602383614535565b9150613bb382614ab8565b604082019050919050565b6000613bcb602583614535565b9150613bd682614b07565b604082019050919050565b6000613bee601283614535565b9150613bf982614b56565b602082019050919050565b6000613c11603983614535565b9150613c1c82614b7f565b604082019050919050565b6000613c34601283614535565b9150613c3f82614bce565b602082019050919050565b6000613c57602b83614535565b9150613c6282614bf7565b604082019050919050565b6000613c7a600f83614535565b9150613c8582614c46565b602082019050919050565b6000613c9d601583614535565b9150613ca882614c6f565b602082019050919050565b6000613cc0602683614535565b9150613ccb82614c98565b604082019050919050565b6000613ce3602083614535565b9150613cee82614ce7565b602082019050919050565b6000613d06601483614535565b9150613d1182614d10565b602082019050919050565b6000613d29602f83614535565b9150613d3482614d39565b604082019050919050565b6000613d4c601a83614535565b9150613d5782614d88565b602082019050919050565b6000613d6f603283614535565b9150613d7a82614db1565b604082019050919050565b6000613d92602283614535565b9150613d9d82614e00565b604082019050919050565b6000613db560008361452a565b9150613dc082614e4f565b600082019050919050565b6000613dd8601083614535565b9150613de382614e52565b602082019050919050565b6000613dfb603383614535565b9150613e0682614e7b565b604082019050919050565b6000613e1e601d83614535565b9150613e2982614eca565b602082019050919050565b6000613e41602183614535565b9150613e4c82614ef3565b604082019050919050565b6000613e64601883614535565b9150613e6f82614f42565b602082019050919050565b6000613e87601883614535565b9150613e9282614f6b565b602082019050919050565b6000613eaa602e83614535565b9150613eb582614f94565b604082019050919050565b6000613ecd601f83614535565b9150613ed882614fe3565b602082019050919050565b6000613ef0602f83614535565b9150613efb8261500c565b604082019050919050565b6000613f13601683614535565b9150613f1e8261505b565b602082019050919050565b6000613f36602d83614535565b9150613f4182615084565b604082019050919050565b6000613f59602283614535565b9150613f64826150d3565b604082019050919050565b613f7881614770565b82525050565b6000613f8a82846139c4565b60148201915081905092915050565b6000613fa582856139f9565b602082019150613fb582846139f9565b6020820191508190509392505050565b6000613fd18285613ab3565b9150613fdd8284613a82565b91508190509392505050565b6000613ff482613da8565b9150819050919050565b600060208201905061401360008301846139b5565b92915050565b600060808201905061402e60008301876139b5565b61403b60208301866139b5565b6140486040830185613f6f565b818103606083015261405a8184613a10565b905095945050505050565b600060208201905061407a60008301846139db565b92915050565b600060208201905061409560008301846139ea565b92915050565b600060208201905081810360008301526140b58184613a49565b905092915050565b600060208201905081810360008301526140d681613b32565b9050919050565b600060208201905081810360008301526140f681613b55565b9050919050565b6000602082019050818103600083015261411681613b78565b9050919050565b6000602082019050818103600083015261413681613b9b565b9050919050565b6000602082019050818103600083015261415681613bbe565b9050919050565b6000602082019050818103600083015261417681613be1565b9050919050565b6000602082019050818103600083015261419681613c04565b9050919050565b600060208201905081810360008301526141b681613c27565b9050919050565b600060208201905081810360008301526141d681613c4a565b9050919050565b600060208201905081810360008301526141f681613c6d565b9050919050565b6000602082019050818103600083015261421681613c90565b9050919050565b6000602082019050818103600083015261423681613cb3565b9050919050565b6000602082019050818103600083015261425681613cd6565b9050919050565b6000602082019050818103600083015261427681613cf9565b9050919050565b6000602082019050818103600083015261429681613d1c565b9050919050565b600060208201905081810360008301526142b681613d3f565b9050919050565b600060208201905081810360008301526142d681613d62565b9050919050565b600060208201905081810360008301526142f681613d85565b9050919050565b6000602082019050818103600083015261431681613dcb565b9050919050565b6000602082019050818103600083015261433681613dee565b9050919050565b6000602082019050818103600083015261435681613e11565b9050919050565b6000602082019050818103600083015261437681613e34565b9050919050565b6000602082019050818103600083015261439681613e57565b9050919050565b600060208201905081810360008301526143b681613e7a565b9050919050565b600060208201905081810360008301526143d681613e9d565b9050919050565b600060208201905081810360008301526143f681613ec0565b9050919050565b6000602082019050818103600083015261441681613ee3565b9050919050565b6000602082019050818103600083015261443681613f06565b9050919050565b6000602082019050818103600083015261445681613f29565b9050919050565b6000602082019050818103600083015261447681613f4c565b9050919050565b60006020820190506144926000830184613f6f565b92915050565b60006144a26144b3565b90506144ae8282614818565b919050565b6000604051905090565b600067ffffffffffffffff8211156144d8576144d761497e565b5b6144e1826149ad565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061455c82614734565b915061456783614734565b9250826fffffffffffffffffffffffffffffffff0382111561458c5761458b6148f1565b5b828201905092915050565b60006145a282614770565b91506145ad83614770565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145e2576145e16148f1565b5b828201905092915050565b60006145f882614770565b915061460383614770565b92508261461357614612614920565b5b828204905092915050565b600061462982614770565b915061463483614770565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561466d5761466c6148f1565b5b828202905092915050565b600061468382614734565b915061468e83614734565b9250828210156146a1576146a06148f1565b5b828203905092915050565b60006146b782614770565b91506146c283614770565b9250828210156146d5576146d46148f1565b5b828203905092915050565b60006146eb82614750565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147a757808201518184015260208101905061478c565b838111156147b6576000848401525b50505050565b60006147c782614770565b915060008214156147db576147da6148f1565b5b600182039050919050565b600060028204905060018216806147fe57607f821691505b602082108114156148125761481161494f565b5b50919050565b614821826149ad565b810181811067ffffffffffffffff821117156148405761483f61497e565b5b80604052505050565b600061485482614770565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614887576148866148f1565b5b600182019050919050565b600061489d826148ae565b9050919050565b6000819050919050565b60006148b9826149be565b9050919050565b60006148cb82614770565b91506148d683614770565b9250826148e6576148e5614920565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b7f4e6f20737570706c79206c65667420666f72204f470000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e65722068617320616c7265616479206d696e7465640000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420616c6c6f77696e6720636f6e74726163747300000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61512b816146e0565b811461513657600080fd5b50565b615142816146f2565b811461514d57600080fd5b50565b615159816146fe565b811461516457600080fd5b50565b61517081614708565b811461517b57600080fd5b50565b61518781614770565b811461519257600080fd5b5056fea26469706673582212201d2515429ba525ef6734f634d543723cf58db6b4c2a7ea489015c5a39c2ab85a64736f6c63430008040033
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.