Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 91 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 18212968 | 495 days ago | IN | 0 ETH | 0.00045474 | ||||
Set Approval For... | 16527778 | 732 days ago | IN | 0 ETH | 0.00130221 | ||||
Set Approval For... | 16347299 | 757 days ago | IN | 0 ETH | 0.00071886 | ||||
Set Approval For... | 16240151 | 772 days ago | IN | 0 ETH | 0.00108426 | ||||
Set Approval For... | 15884197 | 822 days ago | IN | 0 ETH | 0.00084075 | ||||
Set Approval For... | 15822994 | 830 days ago | IN | 0 ETH | 0.00058217 | ||||
Set Approval For... | 15821010 | 830 days ago | IN | 0 ETH | 0.00077039 | ||||
Set Approval For... | 15712944 | 845 days ago | IN | 0 ETH | 0.00249347 | ||||
Set Approval For... | 15630252 | 857 days ago | IN | 0 ETH | 0.00031204 | ||||
Set Approval For... | 15557229 | 867 days ago | IN | 0 ETH | 0.00019436 | ||||
Set Approval For... | 15530477 | 871 days ago | IN | 0 ETH | 0.00028587 | ||||
Set Pre Sale Sta... | 15205279 | 923 days ago | IN | 0 ETH | 0.00023678 | ||||
Set Public Sale ... | 15205273 | 923 days ago | IN | 0 ETH | 0.00024095 | ||||
Release All | 15107906 | 938 days ago | IN | 0 ETH | 0.00184107 | ||||
Transfer From | 15006730 | 955 days ago | IN | 0 ETH | 0.00139088 | ||||
Transfer From | 14942244 | 966 days ago | IN | 0 ETH | 0.00192402 | ||||
Set Approval For... | 14838796 | 983 days ago | IN | 0 ETH | 0.00142728 | ||||
Set Approval For... | 14731789 | 1000 days ago | IN | 0 ETH | 0.00114285 | ||||
Set Approval For... | 14727872 | 1001 days ago | IN | 0 ETH | 0.00143986 | ||||
Transfer From | 14722700 | 1002 days ago | IN | 0 ETH | 0.00217927 | ||||
Public Sale Mint | 14708841 | 1004 days ago | IN | 0.15 ETH | 0.00310382 | ||||
Transfer From | 14668660 | 1010 days ago | IN | 0 ETH | 0.00429457 | ||||
Public Sale Mint | 14667458 | 1011 days ago | IN | 0.15 ETH | 0.00366974 | ||||
Transfer From | 14665193 | 1011 days ago | IN | 0 ETH | 0.00263647 | ||||
Set Approval For... | 14662942 | 1011 days ago | IN | 0 ETH | 0.0008584 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
NftPulseAngelToken
Compiler Version
v0.8.12+commit.f00d7308
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.12; /// @author mpoplavkov https://github.com/mpoplavkov import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "erc721a/contracts/ERC721A.sol"; /// @custom:security-contact [email protected] contract NftPulseAngelToken is ERC721A, Ownable, ReentrancyGuard, PaymentSplitter { uint256 public constant MAX_SUPPLY = 999; uint256 public constant RESERVED_AMOUNT_FOR_DEVS = 49; uint256 public constant MINT_PRICE = 0.15 ether; uint256 public constant MAX_MINT_AMOUNT_PER_TRANSACTION = 10; uint256 public constant MAX_MINT_AMOUNT_PER_WHITELIST = 3; uint256 public preSaleStartDate = 1649512800; // Saturday, April 9, 2022 14:00:00 GMT uint256 public publicSaleStartDate = 1649534400; // Saturday, April 9, 2022 20:00:00 GMT mapping(address => uint256) public whitelistMinted; uint256 private teamSize; string private _baseTokenURI = "https://api.nftpulse.app/angeltoken/metadata/"; // Whitelist bytes32 public merkleRoot; enum MintStatus { CLOSED, PRESALE, PUBLIC, FINISHED } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor( address[] memory _team, uint256[] memory _shares, bytes32 _merkleRoot ) ERC721A("Pulse App Lifetime Access", "NFTPULSE") PaymentSplitter(_team, _shares) { updateMerkleRoot(_merkleRoot); teamSize = _team.length; // developer tokens mint _safeMint(msg.sender, RESERVED_AMOUNT_FOR_DEVS); } function verifyWhitelist(address addr, bytes32[] calldata proof) public view returns (bool) { return MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(addr))); } function preSaleMint(uint256 quantity, bytes32[] calldata proof) external payable callerIsUser nonReentrant { require(preSaleStarted(), "Presale has not started yet"); require(verifyWhitelist(msg.sender, proof), "Not in the whitelist"); incrementMintedAmountForWhitelist(quantity); mintCheckConditions(quantity); } function publicSaleMint(uint256 quantity) external payable callerIsUser nonReentrant { require(publicSaleStarted(), "Public sale has not started yet"); mintCheckConditions(quantity); } function mintStatus() external view returns (MintStatus) { if (allTokensAreMinted()) { return MintStatus.FINISHED; } if (publicSaleStarted()) { return MintStatus.PUBLIC; } if (preSaleStarted()) { return MintStatus.PRESALE; } return MintStatus.CLOSED; } function releaseAll() external nonReentrant { for (uint256 i = 0; i < teamSize; i++) { release(payable(payee(i))); } } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function preSaleStarted() private view returns (bool) { return block.timestamp >= preSaleStartDate; } function publicSaleStarted() private view returns (bool) { return block.timestamp >= publicSaleStartDate; } function allTokensAreMinted() private view returns (bool) { return totalSupply() >= MAX_SUPPLY; } function incrementMintedAmountForWhitelist(uint256 quantity) private { uint256 newMintedAmount = whitelistMinted[msg.sender] + quantity; require(newMintedAmount <= MAX_MINT_AMOUNT_PER_WHITELIST, "Reached the mint limit for whitelist"); whitelistMinted[msg.sender] = newMintedAmount; } function mintCheckConditions(uint256 quantity) private { require(totalSupply() + quantity <= MAX_SUPPLY, "Reached max supply"); if (msg.sender != owner()) { require(quantity <= MAX_MINT_AMOUNT_PER_TRANSACTION, "Too many tokens requested in a single transaction"); require(msg.value == MINT_PRICE * quantity, "Wrong ether amount"); } _safeMint(msg.sender, quantity); } function checkSaleDatesOrder() private view { require(preSaleStartDate < publicSaleStartDate, "Presale should start before the public sale"); } // ONLY OWNER FUNCTIONS BELOW function renounceOwnership() public override onlyOwner { require(allTokensAreMinted(), "Mint is not finished yet"); require(address(this).balance == 0, "Ownership can be renounced only if the contract balance is 0"); super.renounceOwnership(); } function updateMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } function setPreSaleStartDate(uint256 _preSaleStartDate) external onlyOwner { preSaleStartDate = _preSaleStartDate; checkSaleDatesOrder(); } function setPublicSaleStartDate(uint256 _publicSaleStartDate) external onlyOwner { publicSaleStartDate = _publicSaleStartDate; checkSaleDatesOrder(); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; 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'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // 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) internal _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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _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 || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = 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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { 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 TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * 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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ 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. * And also called after one token has been burned. * * 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` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `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 (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; import "../token/ERC20/utils/SafeERC20.sol"; import "../utils/Address.sol"; import "../utils/Context.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); uint256 payment = _pendingPayment(account, totalReceived, released(token, account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// 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 (last updated v4.5.0) (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 = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// 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 // 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/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/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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 (last updated v4.5.0) (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); /** * @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 (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/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/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/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"_team","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_AMOUNT_FOR_DEVS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"enum NftPulseAngelToken.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleStartDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleStartDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleStartDate","type":"uint256"}],"name":"setPreSaleStartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleStartDate","type":"uint256"}],"name":"setPublicSaleStartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verifyWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526362519160601155636251e5c06012556040518060600160405280602d815260200162006cd8602d9139601590805190602001906200004592919062000c2b565b503480156200005357600080fd5b5060405162006d0538038062006d05833981810160405281019062000079919062001015565b82826040518060400160405280601981526020017f50756c736520417070204c69666574696d6520416363657373000000000000008152506040518060400160405280600881526020017f4e465450554c53450000000000000000000000000000000000000000000000008152508160029080519060200190620000ff92919062000c2b565b5080600390805190602001906200011892919062000c2b565b50620001296200028e60201b60201c565b600081905550505062000151620001456200029360201b60201c565b6200029b60201b60201c565b60016009819055508051825114620001a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001979062001136565b60405180910390fd5b6000825111620001e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001de90620011a8565b60405180910390fd5b60005b82518110156200025657620002408382815181106200020e576200020d620011ca565b5b60200260200101518383815181106200022c576200022b620011ca565b5b60200260200101516200036160201b60201c565b80806200024d9062001228565b915050620001ea565b5050506200026a816200059b60201b60201c565b8251601481905550620002853360316200063460201b60201c565b50505062001711565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cb90620012ec565b60405180910390fd5b600081116200041a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000411906200135e565b60405180910390fd5b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146200049f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049690620013f6565b60405180910390fd5b600e829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600a5462000556919062001418565b600a819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200058f92919062001497565b60405180910390a15050565b620005ab6200029360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005d16200065a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200062a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006219062001514565b60405180910390fd5b8060168190555050565b620006568282604051806020016040528060008152506200068460201b60201c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200069983838360016200069e60201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156200070c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000748576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200075d600086838762000a9a60201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620009355750620009348773ffffffffffffffffffffffffffffffffffffffff1662000aa060201b6200213f1760201c565b5b1562000a08575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620009b3600088848060010195508862000ac360201b60201c565b620009ea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156200093c57826000541462000a0257600080fd5b62000a75565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141562000a09575b81600081905550505062000a93600086838762000c2560201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000af16200029360201b60201c565b8786866040518563ffffffff1660e01b815260040162000b159493929190620015c9565b6020604051808303816000875af192505050801562000b5457506040513d601f19601f8201168201806040525081019062000b5191906200167a565b60015b62000bd2573d806000811462000b87576040519150601f19603f3d011682016040523d82523d6000602084013e62000b8c565b606091505b5060008151141562000bca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b82805462000c3990620016db565b90600052602060002090601f01602090048101928262000c5d576000855562000ca9565b82601f1062000c7857805160ff191683800117855562000ca9565b8280016001018555821562000ca9579182015b8281111562000ca857825182559160200191906001019062000c8b565b5b50905062000cb8919062000cbc565b5090565b5b8082111562000cd757600081600090555060010162000cbd565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d3f8262000cf4565b810181811067ffffffffffffffff8211171562000d615762000d6062000d05565b5b80604052505050565b600062000d7662000cdb565b905062000d84828262000d34565b919050565b600067ffffffffffffffff82111562000da75762000da662000d05565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000dea8262000dbd565b9050919050565b62000dfc8162000ddd565b811462000e0857600080fd5b50565b60008151905062000e1c8162000df1565b92915050565b600062000e3962000e338462000d89565b62000d6a565b9050808382526020820190506020840283018581111562000e5f5762000e5e62000db8565b5b835b8181101562000e8c578062000e77888262000e0b565b84526020840193505060208101905062000e61565b5050509392505050565b600082601f83011262000eae5762000ead62000cef565b5b815162000ec084826020860162000e22565b91505092915050565b600067ffffffffffffffff82111562000ee75762000ee662000d05565b5b602082029050602081019050919050565b6000819050919050565b62000f0d8162000ef8565b811462000f1957600080fd5b50565b60008151905062000f2d8162000f02565b92915050565b600062000f4a62000f448462000ec9565b62000d6a565b9050808382526020820190506020840283018581111562000f705762000f6f62000db8565b5b835b8181101562000f9d578062000f88888262000f1c565b84526020840193505060208101905062000f72565b5050509392505050565b600082601f83011262000fbf5762000fbe62000cef565b5b815162000fd184826020860162000f33565b91505092915050565b6000819050919050565b62000fef8162000fda565b811462000ffb57600080fd5b50565b6000815190506200100f8162000fe4565b92915050565b60008060006060848603121562001031576200103062000ce5565b5b600084015167ffffffffffffffff81111562001052576200105162000cea565b5b620010608682870162000e96565b935050602084015167ffffffffffffffff81111562001084576200108362000cea565b5b620010928682870162000fa7565b9250506040620010a58682870162000ffe565b9150509250925092565b600082825260208201905092915050565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b60006200111e603283620010af565b91506200112b82620010c0565b604082019050919050565b6000602082019050818103600083015262001151816200110f565b9050919050565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b600062001190601a83620010af565b91506200119d8262001158565b602082019050919050565b60006020820190508181036000830152620011c38162001181565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620012358262000ef8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200126b576200126a620011f9565b5b600182019050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b6000620012d4602c83620010af565b9150620012e18262001276565b604082019050919050565b600060208201905081810360008301526200130781620012c5565b9050919050565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b600062001346601d83620010af565b915062001353826200130e565b602082019050919050565b60006020820190508181036000830152620013798162001337565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b6000620013de602b83620010af565b9150620013eb8262001380565b604082019050919050565b600060208201905081810360008301526200141181620013cf565b9050919050565b6000620014258262000ef8565b9150620014328362000ef8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200146a5762001469620011f9565b5b828201905092915050565b620014808162000ddd565b82525050565b620014918162000ef8565b82525050565b6000604082019050620014ae600083018562001475565b620014bd602083018462001486565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620014fc602083620010af565b91506200150982620014c4565b602082019050919050565b600060208201905081810360008301526200152f81620014ed565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200157257808201518184015260208101905062001555565b8381111562001582576000848401525b50505050565b6000620015958262001536565b620015a1818562001541565b9350620015b381856020860162001552565b620015be8162000cf4565b840191505092915050565b6000608082019050620015e0600083018762001475565b620015ef602083018662001475565b620015fe604083018562001486565b818103606083015262001612818462001588565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62001654816200161d565b81146200166057600080fd5b50565b600081519050620016748162001649565b92915050565b60006020828403121562001693576200169262000ce5565b5b6000620016a38482850162001663565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620016f457607f821691505b602082108114156200170b576200170a620016ac565b5b50919050565b6155b780620017216000396000f3fe60806040526004361061026b5760003560e01c80636086c41b116101445780639da3f8fd116100b6578063c87b56dd1161007a578063c87b56dd1461095f578063ce7c2ac21461099c578063d79779b2146109d9578063e33b7de314610a16578063e985e9c514610a41578063f2fde38b14610a7e576102b2565b80639da3f8fd1461089b578063a22cb465146108c6578063b3ab66b0146108ef578063b88d4fde1461090b578063c002d23d14610934576102b2565b8063893ed91d11610108578063893ed91d146107655780638b83209b1461078e5780638da5cb5b146107cb57806395d89b41146107f65780639852595c1461082157806398a8cffe1461085e576102b2565b80636086c41b1461067e5780636352211e146106a957806370a08231146106e65780637146ad2014610723578063715018a61461074e576102b2565b80633a98ef39116101dd57806348b75044116101a157806348b75044146105a35780634c220f6e146105cc5780634f389b3f146105e85780635055225f1461061357806355f804b31461063e5780635be7fde814610667576102b2565b80633a98ef39146104c0578063405200cd146104eb578063406072a91461051457806342842e0e146105515780634783f0ef1461057a576102b2565b806315c6cd8f1161022f57806315c6cd8f146103b057806318160ddd146103ed578063191655871461041857806323b872dd146104415780632eb4a7ab1461046a57806332cb6b0c14610495576102b2565b806301ffc9a7146102b7578063050fa6d4146102f457806306fdde031461031f578063081812fc1461034a578063095ea7b314610387576102b2565b366102b2577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610299610aa7565b346040516102a8929190613b9b565b60405180910390a1005b600080fd5b3480156102c357600080fd5b506102de60048036038101906102d99190613c30565b610aaf565b6040516102eb9190613c78565b60405180910390f35b34801561030057600080fd5b50610309610b91565b6040516103169190613c93565b60405180910390f35b34801561032b57600080fd5b50610334610b96565b6040516103419190613d47565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190613d95565b610c28565b60405161037e9190613dc2565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613e09565b610ca4565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190613eae565b610daf565b6040516103e49190613c78565b60405180910390f35b3480156103f957600080fd5b50610402610e2e565b60405161040f9190613c93565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613f4c565b610e45565b005b34801561044d57600080fd5b5061046860048036038101906104639190613f79565b610ff0565b005b34801561047657600080fd5b5061047f611000565b60405161048c9190613fe5565b60405180910390f35b3480156104a157600080fd5b506104aa611006565b6040516104b79190613c93565b60405180910390f35b3480156104cc57600080fd5b506104d561100c565b6040516104e29190613c93565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190613d95565b611016565b005b34801561052057600080fd5b5061053b6004803603810190610536919061403e565b6110a4565b6040516105489190613c93565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613f79565b61112b565b005b34801561058657600080fd5b506105a1600480360381019061059c91906140aa565b61114b565b005b3480156105af57600080fd5b506105ca60048036038101906105c5919061403e565b6111d1565b005b6105e660048036038101906105e191906140d7565b61148a565b005b3480156105f457600080fd5b506105fd6115f6565b60405161060a9190613c93565b60405180910390f35b34801561061f57600080fd5b506106286115fc565b6040516106359190613c93565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190614267565b611602565b005b34801561067357600080fd5b5061067c611698565b005b34801561068a57600080fd5b50610693611722565b6040516106a09190613c93565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190613d95565b611727565b6040516106dd9190613dc2565b60405180910390f35b3480156106f257600080fd5b5061070d600480360381019061070891906142b0565b61173d565b60405161071a9190613c93565b60405180910390f35b34801561072f57600080fd5b5061073861180d565b6040516107459190613c93565b60405180910390f35b34801561075a57600080fd5b50610763611812565b005b34801561077157600080fd5b5061078c60048036038101906107879190613d95565b611922565b005b34801561079a57600080fd5b506107b560048036038101906107b09190613d95565b6119b0565b6040516107c29190613dc2565b60405180910390f35b3480156107d757600080fd5b506107e06119f8565b6040516107ed9190613dc2565b60405180910390f35b34801561080257600080fd5b5061080b611a22565b6040516108189190613d47565b60405180910390f35b34801561082d57600080fd5b50610848600480360381019061084391906142b0565b611ab4565b6040516108559190613c93565b60405180910390f35b34801561086a57600080fd5b50610885600480360381019061088091906142b0565b611afd565b6040516108929190613c93565b60405180910390f35b3480156108a757600080fd5b506108b0611b15565b6040516108bd9190614354565b60405180910390f35b3480156108d257600080fd5b506108ed60048036038101906108e8919061439b565b611b61565b005b61090960048036038101906109049190613d95565b611cd9565b005b34801561091757600080fd5b50610932600480360381019061092d919061447c565b611df0565b005b34801561094057600080fd5b50610949611e6c565b6040516109569190613c93565b60405180910390f35b34801561096b57600080fd5b5061098660048036038101906109819190613d95565b611e78565b6040516109939190613d47565b60405180910390f35b3480156109a857600080fd5b506109c360048036038101906109be91906142b0565b611f17565b6040516109d09190613c93565b60405180910390f35b3480156109e557600080fd5b50610a0060048036038101906109fb91906144ff565b611f60565b604051610a0d9190613c93565b60405180910390f35b348015610a2257600080fd5b50610a2b611fa9565b604051610a389190613c93565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a63919061452c565b611fb3565b604051610a759190613c78565b60405180910390f35b348015610a8a57600080fd5b50610aa56004803603810190610aa091906142b0565b612047565b005b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8a5750610b8982612162565b5b9050919050565b600381565b606060028054610ba59061459b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd19061459b565b8015610c1e5780601f10610bf357610100808354040283529160200191610c1e565b820191906000526020600020905b815481529060010190602001808311610c0157829003601f168201915b5050505050905090565b6000610c33826121cc565b610c69576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610caf82611727565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d17576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d36610aa7565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d685750610d6681610d61610aa7565b611fb3565b155b15610d9f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610daa83838361221a565b505050565b6000610e25838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060165486604051602001610e0a9190614615565b604051602081830303815290604052805190602001206122cc565b90509392505050565b6000610e386122e3565b6001546000540303905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe906146a2565b60405180910390fd5b6000610ed1611fa9565b47610edc91906146f1565b90506000610ef38383610eee86611ab4565b6122e8565b90506000811415610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f30906147b9565b60405180910390fd5b80600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f8891906146f1565b9250508190555080600b6000828254610fa191906146f1565b92505081905550610fb28382612356565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610fe3929190614838565b60405180910390a1505050565b610ffb83838361244a565b505050565b60165481565b6103e781565b6000600a54905090565b61101e610aa7565b73ffffffffffffffffffffffffffffffffffffffff1661103c6119f8565b73ffffffffffffffffffffffffffffffffffffffff1614611092576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611089906148ad565b60405180910390fd5b806012819055506110a161293b565b50565b6000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61114683838360405180602001604052806000815250611df0565b505050565b611153610aa7565b73ffffffffffffffffffffffffffffffffffffffff166111716119f8565b73ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be906148ad565b60405180910390fd5b8060168190555050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a906146a2565b60405180910390fd5b600061125e83611f60565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112979190613dc2565b602060405180830381865afa1580156112b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d891906148e2565b6112e291906146f1565b905060006112fa83836112f587876110a4565b6122e8565b90506000811415611340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611337906147b9565b60405180910390fd5b80601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113cc91906146f1565b9250508190555080600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142291906146f1565b92505081905550611434848483612983565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a848360405161147c929190613b9b565b60405180910390a250505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef9061495b565b60405180910390fd5b6002600954141561153e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611535906149c7565b60405180910390fd5b600260098190555061154e612a09565b61158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158490614a33565b60405180910390fd5b611598338383610daf565b6115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90614a9f565b60405180910390fd5b6115e083612a16565b6115e983612af1565b6001600981905550505050565b60125481565b60115481565b61160a610aa7565b73ffffffffffffffffffffffffffffffffffffffff166116286119f8565b73ffffffffffffffffffffffffffffffffffffffff161461167e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611675906148ad565b60405180910390fd5b8060159080519060200190611694929190613a5b565b5050565b600260095414156116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d5906149c7565b60405180910390fd5b600260098190555060005b601454811015611717576117046116ff826119b0565b610e45565b808061170f90614abf565b9150506116e9565b506001600981905550565b600a81565b600061173282612c29565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b603181565b61181a610aa7565b73ffffffffffffffffffffffffffffffffffffffff166118386119f8565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611885906148ad565b60405180910390fd5b611896612eb8565b6118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90614b54565b60405180910390fd5b60004714611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f90614be6565b60405180910390fd5b611920612ecc565b565b61192a610aa7565b73ffffffffffffffffffffffffffffffffffffffff166119486119f8565b73ffffffffffffffffffffffffffffffffffffffff161461199e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611995906148ad565b60405180910390fd5b806011819055506119ad61293b565b50565b6000600e82815481106119c6576119c5614c06565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611a319061459b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5d9061459b565b8015611aaa5780601f10611a7f57610100808354040283529160200191611aaa565b820191906000526020600020905b815481529060010190602001808311611a8d57829003601f168201915b5050505050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60136020528060005260406000206000915090505481565b6000611b1f612eb8565b15611b2d5760039050611b5e565b611b35612f54565b15611b435760029050611b5e565b611b4b612a09565b15611b595760019050611b5e565b600090505b90565b611b69610aa7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bce576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bdb610aa7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c88610aa7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ccd9190613c78565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e9061495b565b60405180910390fd5b60026009541415611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d84906149c7565b60405180910390fd5b6002600981905550611d9d612f54565b611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390614c81565b60405180910390fd5b611de581612af1565b600160098190555050565b611dfb84848461244a565b611e1a8373ffffffffffffffffffffffffffffffffffffffff1661213f565b8015611e2f5750611e2d84848484612f61565b155b15611e66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b670214e8348c4f000081565b6060611e83826121cc565b611eb9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ec36130b2565b9050600081511415611ee45760405180602001604052806000815250611f0f565b80611eee84613144565b604051602001611eff929190614cdd565b6040516020818303038152906040525b915050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600b54905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61204f610aa7565b73ffffffffffffffffffffffffffffffffffffffff1661206d6119f8565b73ffffffffffffffffffffffffffffffffffffffff16146120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba906148ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a90614d73565b60405180910390fd5b61213c816132a5565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816121d76122e3565b111580156121e6575060005482105b8015612213575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000826122d9858461336b565b1490509392505050565b600090565b600081600a54600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856123399190614d93565b6123439190614e1c565b61234d9190614e4d565b90509392505050565b80471015612399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239090614ecd565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516123bf90614f1e565b60006040518083038185875af1925050503d80600081146123fc576040519150601f19603f3d011682016040523d82523d6000602084013e612401565b606091505b5050905080612445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243c90614fa5565b60405180910390fd5b505050565b600061245582612c29565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661247c610aa7565b73ffffffffffffffffffffffffffffffffffffffff1614806124af57506124ae82600001516124a9610aa7565b611fb3565b5b806124f457506124bd610aa7565b73ffffffffffffffffffffffffffffffffffffffff166124dc84610c28565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061252d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612596576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125fd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61260a85858560016133e0565b61261a600084846000015161221a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128cb576000548110156128ca5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461293485858560016133e6565b5050505050565b60125460115410612981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297890615037565b60405180910390fd5b565b612a048363a9059cbb60e01b84846040516024016129a2929190613b9b565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506133ec565b505050565b6000601154421015905090565b600081601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a6391906146f1565b90506003811115612aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa0906150c9565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6103e781612afd610e2e565b612b0791906146f1565b1115612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f90615135565b60405180910390fd5b612b506119f8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612c1c57600a811115612bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbd906151c7565b60405180910390fd5b80670214e8348c4f0000612bda9190614d93565b3414612c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1290615233565b60405180910390fd5b5b612c2633826134b3565b50565b612c31613ae1565b600082905080612c3f6122e3565b11158015612c4e575060005481105b15612e81576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e7f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d63578092505050612eb3565b5b600115612e7e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e79578092505050612eb3565b612d64565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006103e7612ec5610e2e565b1015905090565b612ed4610aa7565b73ffffffffffffffffffffffffffffffffffffffff16612ef26119f8565b73ffffffffffffffffffffffffffffffffffffffff1614612f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3f906148ad565b60405180910390fd5b612f5260006132a5565b565b6000601254421015905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f87610aa7565b8786866040518563ffffffff1660e01b8152600401612fa994939291906152a8565b6020604051808303816000875af1925050508015612fe557506040513d601f19601f82011682018060405250810190612fe29190615309565b60015b61305f573d8060008114613015576040519150601f19603f3d011682016040523d82523d6000602084013e61301a565b606091505b50600081511415613057576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601580546130c19061459b565b80601f01602080910402602001604051908101604052809291908181526020018280546130ed9061459b565b801561313a5780601f1061310f5761010080835404028352916020019161313a565b820191906000526020600020905b81548152906001019060200180831161311d57829003601f168201915b5050505050905090565b6060600082141561318c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132a0565b600082905060005b600082146131be5780806131a790614abf565b915050600a826131b79190614e1c565b9150613194565b60008167ffffffffffffffff8111156131da576131d961413c565b5b6040519080825280601f01601f19166020018201604052801561320c5781602001600182028036833780820191505090505b5090505b60008514613299576001826132259190614e4d565b9150600a856132349190615336565b603061324091906146f1565b60f81b81838151811061325657613255614c06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132929190614e1c565b9450613210565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082905060005b84518110156133d557600085828151811061339257613391614c06565b5b602002602001015190508083116133b4576133ad83826134d1565b92506133c1565b6133be81846134d1565b92505b5080806133cd90614abf565b915050613374565b508091505092915050565b50505050565b50505050565b600061344e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166134e89092919063ffffffff16565b90506000815111156134ae578080602001905181019061346e919061537c565b6134ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a49061541b565b60405180910390fd5b5b505050565b6134cd828260405180602001604052806000815250613500565b5050565b600082600052816020526040600020905092915050565b60606134f78484600085613512565b90509392505050565b61350d8383836001613626565b505050565b606082471015613557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354e906154ad565b60405180910390fd5b6135608561213f565b61359f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359690615519565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516135c8919061556a565b60006040518083038185875af1925050503d8060008114613605576040519150601f19603f3d011682016040523d82523d6000602084013e61360a565b606091505b509150915061361a8282866139f4565b92505050949350505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613693576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156136ce576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6136db60008683876133e0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156138a557506138a48773ffffffffffffffffffffffffffffffffffffffff1661213f565b5b1561396b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461391a6000888480600101955088612f61565b613950576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156138ab57826000541461396657600080fd5b6139d7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561396c575b8160008190555050506139ed60008683876133e6565b5050505050565b60608315613a0457829050613a54565b600083511115613a175782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4b9190613d47565b60405180910390fd5b9392505050565b828054613a679061459b565b90600052602060002090601f016020900481019282613a895760008555613ad0565b82601f10613aa257805160ff1916838001178555613ad0565b82800160010185558215613ad0579182015b82811115613acf578251825591602001919060010190613ab4565b5b509050613add9190613b24565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b3d576000816000905550600101613b25565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b6c82613b41565b9050919050565b613b7c81613b61565b82525050565b6000819050919050565b613b9581613b82565b82525050565b6000604082019050613bb06000830185613b73565b613bbd6020830184613b8c565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c0d81613bd8565b8114613c1857600080fd5b50565b600081359050613c2a81613c04565b92915050565b600060208284031215613c4657613c45613bce565b5b6000613c5484828501613c1b565b91505092915050565b60008115159050919050565b613c7281613c5d565b82525050565b6000602082019050613c8d6000830184613c69565b92915050565b6000602082019050613ca86000830184613b8c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ce8578082015181840152602081019050613ccd565b83811115613cf7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d1982613cae565b613d238185613cb9565b9350613d33818560208601613cca565b613d3c81613cfd565b840191505092915050565b60006020820190508181036000830152613d618184613d0e565b905092915050565b613d7281613b82565b8114613d7d57600080fd5b50565b600081359050613d8f81613d69565b92915050565b600060208284031215613dab57613daa613bce565b5b6000613db984828501613d80565b91505092915050565b6000602082019050613dd76000830184613b73565b92915050565b613de681613b61565b8114613df157600080fd5b50565b600081359050613e0381613ddd565b92915050565b60008060408385031215613e2057613e1f613bce565b5b6000613e2e85828601613df4565b9250506020613e3f85828601613d80565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e6e57613e6d613e49565b5b8235905067ffffffffffffffff811115613e8b57613e8a613e4e565b5b602083019150836020820283011115613ea757613ea6613e53565b5b9250929050565b600080600060408486031215613ec757613ec6613bce565b5b6000613ed586828701613df4565b935050602084013567ffffffffffffffff811115613ef657613ef5613bd3565b5b613f0286828701613e58565b92509250509250925092565b6000613f1982613b41565b9050919050565b613f2981613f0e565b8114613f3457600080fd5b50565b600081359050613f4681613f20565b92915050565b600060208284031215613f6257613f61613bce565b5b6000613f7084828501613f37565b91505092915050565b600080600060608486031215613f9257613f91613bce565b5b6000613fa086828701613df4565b9350506020613fb186828701613df4565b9250506040613fc286828701613d80565b9150509250925092565b6000819050919050565b613fdf81613fcc565b82525050565b6000602082019050613ffa6000830184613fd6565b92915050565b600061400b82613b61565b9050919050565b61401b81614000565b811461402657600080fd5b50565b60008135905061403881614012565b92915050565b6000806040838503121561405557614054613bce565b5b600061406385828601614029565b925050602061407485828601613df4565b9150509250929050565b61408781613fcc565b811461409257600080fd5b50565b6000813590506140a48161407e565b92915050565b6000602082840312156140c0576140bf613bce565b5b60006140ce84828501614095565b91505092915050565b6000806000604084860312156140f0576140ef613bce565b5b60006140fe86828701613d80565b935050602084013567ffffffffffffffff81111561411f5761411e613bd3565b5b61412b86828701613e58565b92509250509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61417482613cfd565b810181811067ffffffffffffffff821117156141935761419261413c565b5b80604052505050565b60006141a6613bc4565b90506141b2828261416b565b919050565b600067ffffffffffffffff8211156141d2576141d161413c565b5b6141db82613cfd565b9050602081019050919050565b82818337600083830152505050565b600061420a614205846141b7565b61419c565b90508281526020810184848401111561422657614225614137565b5b6142318482856141e8565b509392505050565b600082601f83011261424e5761424d613e49565b5b813561425e8482602086016141f7565b91505092915050565b60006020828403121561427d5761427c613bce565b5b600082013567ffffffffffffffff81111561429b5761429a613bd3565b5b6142a784828501614239565b91505092915050565b6000602082840312156142c6576142c5613bce565b5b60006142d484828501613df4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061431d5761431c6142dd565b5b50565b600081905061432e8261430c565b919050565b600061433e82614320565b9050919050565b61434e81614333565b82525050565b60006020820190506143696000830184614345565b92915050565b61437881613c5d565b811461438357600080fd5b50565b6000813590506143958161436f565b92915050565b600080604083850312156143b2576143b1613bce565b5b60006143c085828601613df4565b92505060206143d185828601614386565b9150509250929050565b600067ffffffffffffffff8211156143f6576143f561413c565b5b6143ff82613cfd565b9050602081019050919050565b600061441f61441a846143db565b61419c565b90508281526020810184848401111561443b5761443a614137565b5b6144468482856141e8565b509392505050565b600082601f83011261446357614462613e49565b5b813561447384826020860161440c565b91505092915050565b6000806000806080858703121561449657614495613bce565b5b60006144a487828801613df4565b94505060206144b587828801613df4565b93505060406144c687828801613d80565b925050606085013567ffffffffffffffff8111156144e7576144e6613bd3565b5b6144f38782880161444e565b91505092959194509250565b60006020828403121561451557614514613bce565b5b600061452384828501614029565b91505092915050565b6000806040838503121561454357614542613bce565b5b600061455185828601613df4565b925050602061456285828601613df4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145b357607f821691505b602082108114156145c7576145c661456c565b5b50919050565b60008160601b9050919050565b60006145e5826145cd565b9050919050565b60006145f7826145da565b9050919050565b61460f61460a82613b61565b6145ec565b82525050565b600061462182846145fe565b60148201915081905092915050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b600061468c602683613cb9565b915061469782614630565b604082019050919050565b600060208201905081810360008301526146bb8161467f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146fc82613b82565b915061470783613b82565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561473c5761473b6146c2565b5b828201905092915050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b60006147a3602b83613cb9565b91506147ae82614747565b604082019050919050565b600060208201905081810360008301526147d281614796565b9050919050565b6000819050919050565b60006147fe6147f96147f484613b41565b6147d9565b613b41565b9050919050565b6000614810826147e3565b9050919050565b600061482282614805565b9050919050565b61483281614817565b82525050565b600060408201905061484d6000830185614829565b61485a6020830184613b8c565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614897602083613cb9565b91506148a282614861565b602082019050919050565b600060208201905081810360008301526148c68161488a565b9050919050565b6000815190506148dc81613d69565b92915050565b6000602082840312156148f8576148f7613bce565b5b6000614906848285016148cd565b91505092915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614945601e83613cb9565b91506149508261490f565b602082019050919050565b6000602082019050818103600083015261497481614938565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006149b1601f83613cb9565b91506149bc8261497b565b602082019050919050565b600060208201905081810360008301526149e0816149a4565b9050919050565b7f50726573616c6520686173206e6f742073746172746564207965740000000000600082015250565b6000614a1d601b83613cb9565b9150614a28826149e7565b602082019050919050565b60006020820190508181036000830152614a4c81614a10565b9050919050565b7f4e6f7420696e207468652077686974656c697374000000000000000000000000600082015250565b6000614a89601483613cb9565b9150614a9482614a53565b602082019050919050565b60006020820190508181036000830152614ab881614a7c565b9050919050565b6000614aca82613b82565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614afd57614afc6146c2565b5b600182019050919050565b7f4d696e74206973206e6f742066696e6973686564207965740000000000000000600082015250565b6000614b3e601883613cb9565b9150614b4982614b08565b602082019050919050565b60006020820190508181036000830152614b6d81614b31565b9050919050565b7f4f776e6572736869702063616e2062652072656e6f756e636564206f6e6c792060008201527f69662074686520636f6e74726163742062616c616e6365206973203000000000602082015250565b6000614bd0603c83613cb9565b9150614bdb82614b74565b604082019050919050565b60006020820190508181036000830152614bff81614bc3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5075626c69632073616c6520686173206e6f7420737461727465642079657400600082015250565b6000614c6b601f83613cb9565b9150614c7682614c35565b602082019050919050565b60006020820190508181036000830152614c9a81614c5e565b9050919050565b600081905092915050565b6000614cb782613cae565b614cc18185614ca1565b9350614cd1818560208601613cca565b80840191505092915050565b6000614ce98285614cac565b9150614cf58284614cac565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d5d602683613cb9565b9150614d6882614d01565b604082019050919050565b60006020820190508181036000830152614d8c81614d50565b9050919050565b6000614d9e82613b82565b9150614da983613b82565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614de257614de16146c2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e2782613b82565b9150614e3283613b82565b925082614e4257614e41614ded565b5b828204905092915050565b6000614e5882613b82565b9150614e6383613b82565b925082821015614e7657614e756146c2565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614eb7601d83613cb9565b9150614ec282614e81565b602082019050919050565b60006020820190508181036000830152614ee681614eaa565b9050919050565b600081905092915050565b50565b6000614f08600083614eed565b9150614f1382614ef8565b600082019050919050565b6000614f2982614efb565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614f8f603a83613cb9565b9150614f9a82614f33565b604082019050919050565b60006020820190508181036000830152614fbe81614f82565b9050919050565b7f50726573616c652073686f756c64207374617274206265666f7265207468652060008201527f7075626c69632073616c65000000000000000000000000000000000000000000602082015250565b6000615021602b83613cb9565b915061502c82614fc5565b604082019050919050565b6000602082019050818103600083015261505081615014565b9050919050565b7f5265616368656420746865206d696e74206c696d697420666f7220776869746560008201527f6c69737400000000000000000000000000000000000000000000000000000000602082015250565b60006150b3602483613cb9565b91506150be82615057565b604082019050919050565b600060208201905081810360008301526150e2816150a6565b9050919050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b600061511f601283613cb9565b915061512a826150e9565b602082019050919050565b6000602082019050818103600083015261514e81615112565b9050919050565b7f546f6f206d616e7920746f6b656e732072657175657374656420696e2061207360008201527f696e676c65207472616e73616374696f6e000000000000000000000000000000602082015250565b60006151b1603183613cb9565b91506151bc82615155565b604082019050919050565b600060208201905081810360008301526151e0816151a4565b9050919050565b7f57726f6e6720657468657220616d6f756e740000000000000000000000000000600082015250565b600061521d601283613cb9565b9150615228826151e7565b602082019050919050565b6000602082019050818103600083015261524c81615210565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061527a82615253565b615284818561525e565b9350615294818560208601613cca565b61529d81613cfd565b840191505092915050565b60006080820190506152bd6000830187613b73565b6152ca6020830186613b73565b6152d76040830185613b8c565b81810360608301526152e9818461526f565b905095945050505050565b60008151905061530381613c04565b92915050565b60006020828403121561531f5761531e613bce565b5b600061532d848285016152f4565b91505092915050565b600061534182613b82565b915061534c83613b82565b92508261535c5761535b614ded565b5b828206905092915050565b6000815190506153768161436f565b92915050565b60006020828403121561539257615391613bce565b5b60006153a084828501615367565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000615405602a83613cb9565b9150615410826153a9565b604082019050919050565b60006020820190508181036000830152615434816153f8565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000615497602683613cb9565b91506154a28261543b565b604082019050919050565b600060208201905081810360008301526154c68161548a565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000615503601d83613cb9565b915061550e826154cd565b602082019050919050565b60006020820190508181036000830152615532816154f6565b9050919050565b600061554482615253565b61554e8185614eed565b935061555e818560208601613cca565b80840191505092915050565b60006155768284615539565b91508190509291505056fea264697066735822122020aac9265bc6fa3274c4bbe7ebd76edd07db32acdaa05401ab3f565a52e579f464736f6c634300080c003368747470733a2f2f6170692e6e667470756c73652e6170702f616e67656c746f6b656e2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e049a66b3175842b37af251738bb4eec9244ed4a7b9dd6a12f613ecd9dcfb3467e0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c74efa1d9109fab3a0bdb1e069689feeac7225dc000000000000000000000000f92869c6d558dc36f6f22719624513dca0200caa000000000000000000000000eddbe5269c245a0c3f4166fdc2626cf51839f929000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000004b500000000000000000000000000000000000000000000000000000000000005730000000000000000000000000000000000000000000000000000000000001ce8
Deployed Bytecode
0x60806040526004361061026b5760003560e01c80636086c41b116101445780639da3f8fd116100b6578063c87b56dd1161007a578063c87b56dd1461095f578063ce7c2ac21461099c578063d79779b2146109d9578063e33b7de314610a16578063e985e9c514610a41578063f2fde38b14610a7e576102b2565b80639da3f8fd1461089b578063a22cb465146108c6578063b3ab66b0146108ef578063b88d4fde1461090b578063c002d23d14610934576102b2565b8063893ed91d11610108578063893ed91d146107655780638b83209b1461078e5780638da5cb5b146107cb57806395d89b41146107f65780639852595c1461082157806398a8cffe1461085e576102b2565b80636086c41b1461067e5780636352211e146106a957806370a08231146106e65780637146ad2014610723578063715018a61461074e576102b2565b80633a98ef39116101dd57806348b75044116101a157806348b75044146105a35780634c220f6e146105cc5780634f389b3f146105e85780635055225f1461061357806355f804b31461063e5780635be7fde814610667576102b2565b80633a98ef39146104c0578063405200cd146104eb578063406072a91461051457806342842e0e146105515780634783f0ef1461057a576102b2565b806315c6cd8f1161022f57806315c6cd8f146103b057806318160ddd146103ed578063191655871461041857806323b872dd146104415780632eb4a7ab1461046a57806332cb6b0c14610495576102b2565b806301ffc9a7146102b7578063050fa6d4146102f457806306fdde031461031f578063081812fc1461034a578063095ea7b314610387576102b2565b366102b2577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610299610aa7565b346040516102a8929190613b9b565b60405180910390a1005b600080fd5b3480156102c357600080fd5b506102de60048036038101906102d99190613c30565b610aaf565b6040516102eb9190613c78565b60405180910390f35b34801561030057600080fd5b50610309610b91565b6040516103169190613c93565b60405180910390f35b34801561032b57600080fd5b50610334610b96565b6040516103419190613d47565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190613d95565b610c28565b60405161037e9190613dc2565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613e09565b610ca4565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190613eae565b610daf565b6040516103e49190613c78565b60405180910390f35b3480156103f957600080fd5b50610402610e2e565b60405161040f9190613c93565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613f4c565b610e45565b005b34801561044d57600080fd5b5061046860048036038101906104639190613f79565b610ff0565b005b34801561047657600080fd5b5061047f611000565b60405161048c9190613fe5565b60405180910390f35b3480156104a157600080fd5b506104aa611006565b6040516104b79190613c93565b60405180910390f35b3480156104cc57600080fd5b506104d561100c565b6040516104e29190613c93565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190613d95565b611016565b005b34801561052057600080fd5b5061053b6004803603810190610536919061403e565b6110a4565b6040516105489190613c93565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613f79565b61112b565b005b34801561058657600080fd5b506105a1600480360381019061059c91906140aa565b61114b565b005b3480156105af57600080fd5b506105ca60048036038101906105c5919061403e565b6111d1565b005b6105e660048036038101906105e191906140d7565b61148a565b005b3480156105f457600080fd5b506105fd6115f6565b60405161060a9190613c93565b60405180910390f35b34801561061f57600080fd5b506106286115fc565b6040516106359190613c93565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190614267565b611602565b005b34801561067357600080fd5b5061067c611698565b005b34801561068a57600080fd5b50610693611722565b6040516106a09190613c93565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190613d95565b611727565b6040516106dd9190613dc2565b60405180910390f35b3480156106f257600080fd5b5061070d600480360381019061070891906142b0565b61173d565b60405161071a9190613c93565b60405180910390f35b34801561072f57600080fd5b5061073861180d565b6040516107459190613c93565b60405180910390f35b34801561075a57600080fd5b50610763611812565b005b34801561077157600080fd5b5061078c60048036038101906107879190613d95565b611922565b005b34801561079a57600080fd5b506107b560048036038101906107b09190613d95565b6119b0565b6040516107c29190613dc2565b60405180910390f35b3480156107d757600080fd5b506107e06119f8565b6040516107ed9190613dc2565b60405180910390f35b34801561080257600080fd5b5061080b611a22565b6040516108189190613d47565b60405180910390f35b34801561082d57600080fd5b50610848600480360381019061084391906142b0565b611ab4565b6040516108559190613c93565b60405180910390f35b34801561086a57600080fd5b50610885600480360381019061088091906142b0565b611afd565b6040516108929190613c93565b60405180910390f35b3480156108a757600080fd5b506108b0611b15565b6040516108bd9190614354565b60405180910390f35b3480156108d257600080fd5b506108ed60048036038101906108e8919061439b565b611b61565b005b61090960048036038101906109049190613d95565b611cd9565b005b34801561091757600080fd5b50610932600480360381019061092d919061447c565b611df0565b005b34801561094057600080fd5b50610949611e6c565b6040516109569190613c93565b60405180910390f35b34801561096b57600080fd5b5061098660048036038101906109819190613d95565b611e78565b6040516109939190613d47565b60405180910390f35b3480156109a857600080fd5b506109c360048036038101906109be91906142b0565b611f17565b6040516109d09190613c93565b60405180910390f35b3480156109e557600080fd5b50610a0060048036038101906109fb91906144ff565b611f60565b604051610a0d9190613c93565b60405180910390f35b348015610a2257600080fd5b50610a2b611fa9565b604051610a389190613c93565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a63919061452c565b611fb3565b604051610a759190613c78565b60405180910390f35b348015610a8a57600080fd5b50610aa56004803603810190610aa091906142b0565b612047565b005b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8a5750610b8982612162565b5b9050919050565b600381565b606060028054610ba59061459b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd19061459b565b8015610c1e5780601f10610bf357610100808354040283529160200191610c1e565b820191906000526020600020905b815481529060010190602001808311610c0157829003601f168201915b5050505050905090565b6000610c33826121cc565b610c69576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610caf82611727565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d17576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d36610aa7565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d685750610d6681610d61610aa7565b611fb3565b155b15610d9f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610daa83838361221a565b505050565b6000610e25838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060165486604051602001610e0a9190614615565b604051602081830303815290604052805190602001206122cc565b90509392505050565b6000610e386122e3565b6001546000540303905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe906146a2565b60405180910390fd5b6000610ed1611fa9565b47610edc91906146f1565b90506000610ef38383610eee86611ab4565b6122e8565b90506000811415610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f30906147b9565b60405180910390fd5b80600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f8891906146f1565b9250508190555080600b6000828254610fa191906146f1565b92505081905550610fb28382612356565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610fe3929190614838565b60405180910390a1505050565b610ffb83838361244a565b505050565b60165481565b6103e781565b6000600a54905090565b61101e610aa7565b73ffffffffffffffffffffffffffffffffffffffff1661103c6119f8565b73ffffffffffffffffffffffffffffffffffffffff1614611092576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611089906148ad565b60405180910390fd5b806012819055506110a161293b565b50565b6000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61114683838360405180602001604052806000815250611df0565b505050565b611153610aa7565b73ffffffffffffffffffffffffffffffffffffffff166111716119f8565b73ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be906148ad565b60405180910390fd5b8060168190555050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a906146a2565b60405180910390fd5b600061125e83611f60565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112979190613dc2565b602060405180830381865afa1580156112b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d891906148e2565b6112e291906146f1565b905060006112fa83836112f587876110a4565b6122e8565b90506000811415611340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611337906147b9565b60405180910390fd5b80601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113cc91906146f1565b9250508190555080600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142291906146f1565b92505081905550611434848483612983565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a848360405161147c929190613b9b565b60405180910390a250505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef9061495b565b60405180910390fd5b6002600954141561153e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611535906149c7565b60405180910390fd5b600260098190555061154e612a09565b61158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158490614a33565b60405180910390fd5b611598338383610daf565b6115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90614a9f565b60405180910390fd5b6115e083612a16565b6115e983612af1565b6001600981905550505050565b60125481565b60115481565b61160a610aa7565b73ffffffffffffffffffffffffffffffffffffffff166116286119f8565b73ffffffffffffffffffffffffffffffffffffffff161461167e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611675906148ad565b60405180910390fd5b8060159080519060200190611694929190613a5b565b5050565b600260095414156116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d5906149c7565b60405180910390fd5b600260098190555060005b601454811015611717576117046116ff826119b0565b610e45565b808061170f90614abf565b9150506116e9565b506001600981905550565b600a81565b600061173282612c29565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b603181565b61181a610aa7565b73ffffffffffffffffffffffffffffffffffffffff166118386119f8565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611885906148ad565b60405180910390fd5b611896612eb8565b6118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90614b54565b60405180910390fd5b60004714611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f90614be6565b60405180910390fd5b611920612ecc565b565b61192a610aa7565b73ffffffffffffffffffffffffffffffffffffffff166119486119f8565b73ffffffffffffffffffffffffffffffffffffffff161461199e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611995906148ad565b60405180910390fd5b806011819055506119ad61293b565b50565b6000600e82815481106119c6576119c5614c06565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611a319061459b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5d9061459b565b8015611aaa5780601f10611a7f57610100808354040283529160200191611aaa565b820191906000526020600020905b815481529060010190602001808311611a8d57829003601f168201915b5050505050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60136020528060005260406000206000915090505481565b6000611b1f612eb8565b15611b2d5760039050611b5e565b611b35612f54565b15611b435760029050611b5e565b611b4b612a09565b15611b595760019050611b5e565b600090505b90565b611b69610aa7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bce576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bdb610aa7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c88610aa7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ccd9190613c78565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e9061495b565b60405180910390fd5b60026009541415611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d84906149c7565b60405180910390fd5b6002600981905550611d9d612f54565b611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390614c81565b60405180910390fd5b611de581612af1565b600160098190555050565b611dfb84848461244a565b611e1a8373ffffffffffffffffffffffffffffffffffffffff1661213f565b8015611e2f5750611e2d84848484612f61565b155b15611e66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b670214e8348c4f000081565b6060611e83826121cc565b611eb9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ec36130b2565b9050600081511415611ee45760405180602001604052806000815250611f0f565b80611eee84613144565b604051602001611eff929190614cdd565b6040516020818303038152906040525b915050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600b54905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61204f610aa7565b73ffffffffffffffffffffffffffffffffffffffff1661206d6119f8565b73ffffffffffffffffffffffffffffffffffffffff16146120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba906148ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a90614d73565b60405180910390fd5b61213c816132a5565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816121d76122e3565b111580156121e6575060005482105b8015612213575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000826122d9858461336b565b1490509392505050565b600090565b600081600a54600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856123399190614d93565b6123439190614e1c565b61234d9190614e4d565b90509392505050565b80471015612399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239090614ecd565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516123bf90614f1e565b60006040518083038185875af1925050503d80600081146123fc576040519150601f19603f3d011682016040523d82523d6000602084013e612401565b606091505b5050905080612445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243c90614fa5565b60405180910390fd5b505050565b600061245582612c29565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661247c610aa7565b73ffffffffffffffffffffffffffffffffffffffff1614806124af57506124ae82600001516124a9610aa7565b611fb3565b5b806124f457506124bd610aa7565b73ffffffffffffffffffffffffffffffffffffffff166124dc84610c28565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061252d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612596576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125fd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61260a85858560016133e0565b61261a600084846000015161221a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128cb576000548110156128ca5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461293485858560016133e6565b5050505050565b60125460115410612981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297890615037565b60405180910390fd5b565b612a048363a9059cbb60e01b84846040516024016129a2929190613b9b565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506133ec565b505050565b6000601154421015905090565b600081601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a6391906146f1565b90506003811115612aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa0906150c9565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6103e781612afd610e2e565b612b0791906146f1565b1115612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f90615135565b60405180910390fd5b612b506119f8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612c1c57600a811115612bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbd906151c7565b60405180910390fd5b80670214e8348c4f0000612bda9190614d93565b3414612c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1290615233565b60405180910390fd5b5b612c2633826134b3565b50565b612c31613ae1565b600082905080612c3f6122e3565b11158015612c4e575060005481105b15612e81576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e7f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d63578092505050612eb3565b5b600115612e7e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e79578092505050612eb3565b612d64565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006103e7612ec5610e2e565b1015905090565b612ed4610aa7565b73ffffffffffffffffffffffffffffffffffffffff16612ef26119f8565b73ffffffffffffffffffffffffffffffffffffffff1614612f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3f906148ad565b60405180910390fd5b612f5260006132a5565b565b6000601254421015905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f87610aa7565b8786866040518563ffffffff1660e01b8152600401612fa994939291906152a8565b6020604051808303816000875af1925050508015612fe557506040513d601f19601f82011682018060405250810190612fe29190615309565b60015b61305f573d8060008114613015576040519150601f19603f3d011682016040523d82523d6000602084013e61301a565b606091505b50600081511415613057576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601580546130c19061459b565b80601f01602080910402602001604051908101604052809291908181526020018280546130ed9061459b565b801561313a5780601f1061310f5761010080835404028352916020019161313a565b820191906000526020600020905b81548152906001019060200180831161311d57829003601f168201915b5050505050905090565b6060600082141561318c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132a0565b600082905060005b600082146131be5780806131a790614abf565b915050600a826131b79190614e1c565b9150613194565b60008167ffffffffffffffff8111156131da576131d961413c565b5b6040519080825280601f01601f19166020018201604052801561320c5781602001600182028036833780820191505090505b5090505b60008514613299576001826132259190614e4d565b9150600a856132349190615336565b603061324091906146f1565b60f81b81838151811061325657613255614c06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132929190614e1c565b9450613210565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082905060005b84518110156133d557600085828151811061339257613391614c06565b5b602002602001015190508083116133b4576133ad83826134d1565b92506133c1565b6133be81846134d1565b92505b5080806133cd90614abf565b915050613374565b508091505092915050565b50505050565b50505050565b600061344e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166134e89092919063ffffffff16565b90506000815111156134ae578080602001905181019061346e919061537c565b6134ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a49061541b565b60405180910390fd5b5b505050565b6134cd828260405180602001604052806000815250613500565b5050565b600082600052816020526040600020905092915050565b60606134f78484600085613512565b90509392505050565b61350d8383836001613626565b505050565b606082471015613557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354e906154ad565b60405180910390fd5b6135608561213f565b61359f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359690615519565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516135c8919061556a565b60006040518083038185875af1925050503d8060008114613605576040519150601f19603f3d011682016040523d82523d6000602084013e61360a565b606091505b509150915061361a8282866139f4565b92505050949350505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613693576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156136ce576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6136db60008683876133e0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156138a557506138a48773ffffffffffffffffffffffffffffffffffffffff1661213f565b5b1561396b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461391a6000888480600101955088612f61565b613950576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156138ab57826000541461396657600080fd5b6139d7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561396c575b8160008190555050506139ed60008683876133e6565b5050505050565b60608315613a0457829050613a54565b600083511115613a175782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4b9190613d47565b60405180910390fd5b9392505050565b828054613a679061459b565b90600052602060002090601f016020900481019282613a895760008555613ad0565b82601f10613aa257805160ff1916838001178555613ad0565b82800160010185558215613ad0579182015b82811115613acf578251825591602001919060010190613ab4565b5b509050613add9190613b24565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b3d576000816000905550600101613b25565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b6c82613b41565b9050919050565b613b7c81613b61565b82525050565b6000819050919050565b613b9581613b82565b82525050565b6000604082019050613bb06000830185613b73565b613bbd6020830184613b8c565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c0d81613bd8565b8114613c1857600080fd5b50565b600081359050613c2a81613c04565b92915050565b600060208284031215613c4657613c45613bce565b5b6000613c5484828501613c1b565b91505092915050565b60008115159050919050565b613c7281613c5d565b82525050565b6000602082019050613c8d6000830184613c69565b92915050565b6000602082019050613ca86000830184613b8c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ce8578082015181840152602081019050613ccd565b83811115613cf7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d1982613cae565b613d238185613cb9565b9350613d33818560208601613cca565b613d3c81613cfd565b840191505092915050565b60006020820190508181036000830152613d618184613d0e565b905092915050565b613d7281613b82565b8114613d7d57600080fd5b50565b600081359050613d8f81613d69565b92915050565b600060208284031215613dab57613daa613bce565b5b6000613db984828501613d80565b91505092915050565b6000602082019050613dd76000830184613b73565b92915050565b613de681613b61565b8114613df157600080fd5b50565b600081359050613e0381613ddd565b92915050565b60008060408385031215613e2057613e1f613bce565b5b6000613e2e85828601613df4565b9250506020613e3f85828601613d80565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e6e57613e6d613e49565b5b8235905067ffffffffffffffff811115613e8b57613e8a613e4e565b5b602083019150836020820283011115613ea757613ea6613e53565b5b9250929050565b600080600060408486031215613ec757613ec6613bce565b5b6000613ed586828701613df4565b935050602084013567ffffffffffffffff811115613ef657613ef5613bd3565b5b613f0286828701613e58565b92509250509250925092565b6000613f1982613b41565b9050919050565b613f2981613f0e565b8114613f3457600080fd5b50565b600081359050613f4681613f20565b92915050565b600060208284031215613f6257613f61613bce565b5b6000613f7084828501613f37565b91505092915050565b600080600060608486031215613f9257613f91613bce565b5b6000613fa086828701613df4565b9350506020613fb186828701613df4565b9250506040613fc286828701613d80565b9150509250925092565b6000819050919050565b613fdf81613fcc565b82525050565b6000602082019050613ffa6000830184613fd6565b92915050565b600061400b82613b61565b9050919050565b61401b81614000565b811461402657600080fd5b50565b60008135905061403881614012565b92915050565b6000806040838503121561405557614054613bce565b5b600061406385828601614029565b925050602061407485828601613df4565b9150509250929050565b61408781613fcc565b811461409257600080fd5b50565b6000813590506140a48161407e565b92915050565b6000602082840312156140c0576140bf613bce565b5b60006140ce84828501614095565b91505092915050565b6000806000604084860312156140f0576140ef613bce565b5b60006140fe86828701613d80565b935050602084013567ffffffffffffffff81111561411f5761411e613bd3565b5b61412b86828701613e58565b92509250509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61417482613cfd565b810181811067ffffffffffffffff821117156141935761419261413c565b5b80604052505050565b60006141a6613bc4565b90506141b2828261416b565b919050565b600067ffffffffffffffff8211156141d2576141d161413c565b5b6141db82613cfd565b9050602081019050919050565b82818337600083830152505050565b600061420a614205846141b7565b61419c565b90508281526020810184848401111561422657614225614137565b5b6142318482856141e8565b509392505050565b600082601f83011261424e5761424d613e49565b5b813561425e8482602086016141f7565b91505092915050565b60006020828403121561427d5761427c613bce565b5b600082013567ffffffffffffffff81111561429b5761429a613bd3565b5b6142a784828501614239565b91505092915050565b6000602082840312156142c6576142c5613bce565b5b60006142d484828501613df4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061431d5761431c6142dd565b5b50565b600081905061432e8261430c565b919050565b600061433e82614320565b9050919050565b61434e81614333565b82525050565b60006020820190506143696000830184614345565b92915050565b61437881613c5d565b811461438357600080fd5b50565b6000813590506143958161436f565b92915050565b600080604083850312156143b2576143b1613bce565b5b60006143c085828601613df4565b92505060206143d185828601614386565b9150509250929050565b600067ffffffffffffffff8211156143f6576143f561413c565b5b6143ff82613cfd565b9050602081019050919050565b600061441f61441a846143db565b61419c565b90508281526020810184848401111561443b5761443a614137565b5b6144468482856141e8565b509392505050565b600082601f83011261446357614462613e49565b5b813561447384826020860161440c565b91505092915050565b6000806000806080858703121561449657614495613bce565b5b60006144a487828801613df4565b94505060206144b587828801613df4565b93505060406144c687828801613d80565b925050606085013567ffffffffffffffff8111156144e7576144e6613bd3565b5b6144f38782880161444e565b91505092959194509250565b60006020828403121561451557614514613bce565b5b600061452384828501614029565b91505092915050565b6000806040838503121561454357614542613bce565b5b600061455185828601613df4565b925050602061456285828601613df4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145b357607f821691505b602082108114156145c7576145c661456c565b5b50919050565b60008160601b9050919050565b60006145e5826145cd565b9050919050565b60006145f7826145da565b9050919050565b61460f61460a82613b61565b6145ec565b82525050565b600061462182846145fe565b60148201915081905092915050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b600061468c602683613cb9565b915061469782614630565b604082019050919050565b600060208201905081810360008301526146bb8161467f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146fc82613b82565b915061470783613b82565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561473c5761473b6146c2565b5b828201905092915050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b60006147a3602b83613cb9565b91506147ae82614747565b604082019050919050565b600060208201905081810360008301526147d281614796565b9050919050565b6000819050919050565b60006147fe6147f96147f484613b41565b6147d9565b613b41565b9050919050565b6000614810826147e3565b9050919050565b600061482282614805565b9050919050565b61483281614817565b82525050565b600060408201905061484d6000830185614829565b61485a6020830184613b8c565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614897602083613cb9565b91506148a282614861565b602082019050919050565b600060208201905081810360008301526148c68161488a565b9050919050565b6000815190506148dc81613d69565b92915050565b6000602082840312156148f8576148f7613bce565b5b6000614906848285016148cd565b91505092915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614945601e83613cb9565b91506149508261490f565b602082019050919050565b6000602082019050818103600083015261497481614938565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006149b1601f83613cb9565b91506149bc8261497b565b602082019050919050565b600060208201905081810360008301526149e0816149a4565b9050919050565b7f50726573616c6520686173206e6f742073746172746564207965740000000000600082015250565b6000614a1d601b83613cb9565b9150614a28826149e7565b602082019050919050565b60006020820190508181036000830152614a4c81614a10565b9050919050565b7f4e6f7420696e207468652077686974656c697374000000000000000000000000600082015250565b6000614a89601483613cb9565b9150614a9482614a53565b602082019050919050565b60006020820190508181036000830152614ab881614a7c565b9050919050565b6000614aca82613b82565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614afd57614afc6146c2565b5b600182019050919050565b7f4d696e74206973206e6f742066696e6973686564207965740000000000000000600082015250565b6000614b3e601883613cb9565b9150614b4982614b08565b602082019050919050565b60006020820190508181036000830152614b6d81614b31565b9050919050565b7f4f776e6572736869702063616e2062652072656e6f756e636564206f6e6c792060008201527f69662074686520636f6e74726163742062616c616e6365206973203000000000602082015250565b6000614bd0603c83613cb9565b9150614bdb82614b74565b604082019050919050565b60006020820190508181036000830152614bff81614bc3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5075626c69632073616c6520686173206e6f7420737461727465642079657400600082015250565b6000614c6b601f83613cb9565b9150614c7682614c35565b602082019050919050565b60006020820190508181036000830152614c9a81614c5e565b9050919050565b600081905092915050565b6000614cb782613cae565b614cc18185614ca1565b9350614cd1818560208601613cca565b80840191505092915050565b6000614ce98285614cac565b9150614cf58284614cac565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d5d602683613cb9565b9150614d6882614d01565b604082019050919050565b60006020820190508181036000830152614d8c81614d50565b9050919050565b6000614d9e82613b82565b9150614da983613b82565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614de257614de16146c2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e2782613b82565b9150614e3283613b82565b925082614e4257614e41614ded565b5b828204905092915050565b6000614e5882613b82565b9150614e6383613b82565b925082821015614e7657614e756146c2565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614eb7601d83613cb9565b9150614ec282614e81565b602082019050919050565b60006020820190508181036000830152614ee681614eaa565b9050919050565b600081905092915050565b50565b6000614f08600083614eed565b9150614f1382614ef8565b600082019050919050565b6000614f2982614efb565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614f8f603a83613cb9565b9150614f9a82614f33565b604082019050919050565b60006020820190508181036000830152614fbe81614f82565b9050919050565b7f50726573616c652073686f756c64207374617274206265666f7265207468652060008201527f7075626c69632073616c65000000000000000000000000000000000000000000602082015250565b6000615021602b83613cb9565b915061502c82614fc5565b604082019050919050565b6000602082019050818103600083015261505081615014565b9050919050565b7f5265616368656420746865206d696e74206c696d697420666f7220776869746560008201527f6c69737400000000000000000000000000000000000000000000000000000000602082015250565b60006150b3602483613cb9565b91506150be82615057565b604082019050919050565b600060208201905081810360008301526150e2816150a6565b9050919050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b600061511f601283613cb9565b915061512a826150e9565b602082019050919050565b6000602082019050818103600083015261514e81615112565b9050919050565b7f546f6f206d616e7920746f6b656e732072657175657374656420696e2061207360008201527f696e676c65207472616e73616374696f6e000000000000000000000000000000602082015250565b60006151b1603183613cb9565b91506151bc82615155565b604082019050919050565b600060208201905081810360008301526151e0816151a4565b9050919050565b7f57726f6e6720657468657220616d6f756e740000000000000000000000000000600082015250565b600061521d601283613cb9565b9150615228826151e7565b602082019050919050565b6000602082019050818103600083015261524c81615210565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061527a82615253565b615284818561525e565b9350615294818560208601613cca565b61529d81613cfd565b840191505092915050565b60006080820190506152bd6000830187613b73565b6152ca6020830186613b73565b6152d76040830185613b8c565b81810360608301526152e9818461526f565b905095945050505050565b60008151905061530381613c04565b92915050565b60006020828403121561531f5761531e613bce565b5b600061532d848285016152f4565b91505092915050565b600061534182613b82565b915061534c83613b82565b92508261535c5761535b614ded565b5b828206905092915050565b6000815190506153768161436f565b92915050565b60006020828403121561539257615391613bce565b5b60006153a084828501615367565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000615405602a83613cb9565b9150615410826153a9565b604082019050919050565b60006020820190508181036000830152615434816153f8565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000615497602683613cb9565b91506154a28261543b565b604082019050919050565b600060208201905081810360008301526154c68161548a565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000615503601d83613cb9565b915061550e826154cd565b602082019050919050565b60006020820190508181036000830152615532816154f6565b9050919050565b600061554482615253565b61554e8185614eed565b935061555e818560208601613cca565b80840191505092915050565b60006155768284615539565b91508190509291505056fea264697066735822122020aac9265bc6fa3274c4bbe7ebd76edd07db32acdaa05401ab3f565a52e579f464736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e049a66b3175842b37af251738bb4eec9244ed4a7b9dd6a12f613ecd9dcfb3467e0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c74efa1d9109fab3a0bdb1e069689feeac7225dc000000000000000000000000f92869c6d558dc36f6f22719624513dca0200caa000000000000000000000000eddbe5269c245a0c3f4166fdc2626cf51839f929000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000004b500000000000000000000000000000000000000000000000000000000000005730000000000000000000000000000000000000000000000000000000000001ce8
-----Decoded View---------------
Arg [0] : _team (address[]): 0xc74eFa1D9109fab3A0bDb1E069689FEEAc7225dC,0xF92869c6d558dC36F6f22719624513DCa0200cAa,0xeDdBE5269C245a0C3f4166FDC2626CF51839F929
Arg [1] : _shares (uint256[]): 1205,1395,7400
Arg [2] : _merkleRoot (bytes32): 0x49a66b3175842b37af251738bb4eec9244ed4a7b9dd6a12f613ecd9dcfb3467e
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 49a66b3175842b37af251738bb4eec9244ed4a7b9dd6a12f613ecd9dcfb3467e
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 000000000000000000000000c74efa1d9109fab3a0bdb1e069689feeac7225dc
Arg [5] : 000000000000000000000000f92869c6d558dc36f6f22719624513dca0200caa
Arg [6] : 000000000000000000000000eddbe5269c245a0c3f4166fdc2626cf51839f929
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 00000000000000000000000000000000000000000000000000000000000004b5
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000573
Arg [10] : 0000000000000000000000000000000000000000000000000000000000001ce8
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.