ERC-721
Overview
Max Total Supply
87 VB
Holders
57
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 VBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
VoxelBoys
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "ERC721A.sol"; import "Ownable.sol"; import "MerkleProof.sol"; contract VoxelBoys is ERC721A, Ownable { using Strings for uint256; string public baseURI; bool public paused = false; uint256 MAX_SUPPLY = 3000; string public notRevealedUri; bool public revealed = false; uint256 public whitelistCost = 0.02 ether; uint256 public publicSaleCost = 0.04 ether; bytes32 public whitelistSigner; mapping(address => uint256) public whitelist_claimed; mapping(address => uint256) public publicmint_claimed; mapping(uint256 => uint256) public withdrawals_taken_out; uint256 public withdrawalCount; constructor(string memory _initBaseURI, string memory _initNotRevealedUri) ERC721A("Voxel Boys", "VB") { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); mint(20); } function mint(uint256 quantity) public payable { // _safeMint's second argument now takes in a quantity, not a tokenId. require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); if (msg.sender != owner()) { require(!paused, "the contract is paused"); require(msg.value >= (publicSaleCost * quantity), "Not enough ether sent"); } _safeMint(msg.sender, quantity); publicmint_claimed[msg.sender] = publicmint_claimed[msg.sender] + quantity; } // whitelist minting function whitelistMint(bytes32[] calldata _proof, uint256 quantity) payable public{ require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); require(whitelist_claimed[msg.sender] + quantity <= 3,"Per wallet whitelist limit reached"); require(msg.value >= whitelistCost * quantity, "insufficient funds"); require(!paused, "the contract is paused"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_proof,leaf,whitelistSigner),"Invalid Proof"); _safeMint(msg.sender, quantity); whitelist_claimed[msg.sender] = whitelist_claimed[msg.sender] + quantity; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if(revealed == false) { return notRevealedUri; } return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : ''; } function _baseURI() internal view override returns (string memory) { return baseURI; } //only owner function toggleReveal() public onlyOwner { if(revealed==false){ revealed = true; }else{ revealed = false; } } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setWhitelistSigner(bytes32 newWhitelistSigner) external onlyOwner { whitelistSigner = newWhitelistSigner; } function withdraw() public payable onlyOwner { withdrawals_taken_out[withdrawalCount] = address(this).balance; (bool main1, ) = payable(0xaC64E665e7E312E96317a50E39B9BdDf60454389).call{value: withdrawals_taken_out[withdrawalCount]* 4/100}(""); require(main1); (bool main2, ) = payable(0xC729B09919125C89da72F8E3c1302E5c9c0910d6).call{value: withdrawals_taken_out[withdrawalCount]*25/100}(""); require(main2); (bool main3, ) = payable(0xFD717050b2d3fFC06027C517f1339E058dF7FA25).call{value: withdrawals_taken_out[withdrawalCount]*4/100}(""); require(main3); (bool main4, ) = payable(0xde2e48a835eE8397Fe52C7D391bC6F5961284e61).call{value: withdrawals_taken_out[withdrawalCount]*4/100}(""); require(main4); (bool main5, ) = payable(0x8C019FD54f6509190cC44e8b74f032a4153edf72).call{value: withdrawals_taken_out[withdrawalCount]*1/100}(""); require(main5); (bool main6, ) = payable(owner()).call{value: address(this).balance}(""); require(main6); withdrawalCount++; } function setWhitelistCost(uint256 _whitelistCost) public onlyOwner { whitelistCost = _whitelistCost; } function setPublicSaleCost(uint256 _publicSaleCost) public onlyOwner { publicSaleCost = _publicSaleCost; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function pause(bool _state) public onlyOwner { paused = _state; } }
// 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 v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 // Creator: Chiru Labs pragma solidity ^0.8.4; import 'IERC721.sol'; import 'IERC721Receiver.sol'; import 'IERC721Metadata.sol'; import 'IERC721Enumerable.sol'; import 'Address.sol'; import 'Context.sol'; import 'Strings.sol'; import 'ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); 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 and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes 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**128 - 1 (max value of uint128). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { 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; } // Compiler will pack the following // _currentIndex and _burnCounter into a single 256bit word. // The tokenId of the next token to be minted. uint128 internal _currentIndex; // The number of tokens burned. uint128 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * 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 (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 (!_checkOnERC721Received(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 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 > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = uint128(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**128. 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**128. 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 address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * 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 (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 v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "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 (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); }
// contracts/MerkleProofVerify.sol // SPDX-License-Identifier: MIT // based upon https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.1/contracts/mocks/MerkleProofWrapper.sol pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle trees (hash trees), */ 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[] calldata proof, bytes32 leaf, bytes32 root) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } } /* pragma solidity ^0.8.0; contract MerkleProofVerify { function verify(bytes32[] calldata proof, bytes32 root) public view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); return MerkleProof.verify(proof, root, leaf); } } */
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "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/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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicmint_claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistCost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newWhitelistSigner","type":"bytes32"}],"name":"setWhitelistSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSigner","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist_claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawals_taken_out","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526000600960006101000a81548160ff021916908315150217905550610bb8600a556000600c60006101000a81548160ff02191690831515021790555066470de4df820000600d55668e1bc9bf040000600e553480156200006357600080fd5b5060405162005e4b38038062005e4b833981810160405281019062000089919062000d66565b6040518060400160405280600a81526020017f566f78656c20426f7973000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f564200000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200010d92919062000bef565b5080600290805190602001906200012692919062000bef565b505050620001496200013d6200018560201b60201c565b6200018d60201b60201c565b6200015a826200025360201b60201c565b6200016b81620002fe60201b60201c565b6200017d6014620003a960201b60201c565b50506200138c565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002636200018560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002896200059e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d99062000f60565b60405180910390fd5b8060089080519060200190620002fa92919062000bef565b5050565b6200030e6200018560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003346200059e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200038d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003849062000f60565b60405180910390fd5b80600b9080519060200190620003a592919062000bef565b5050565b600a5481620003bd620005c860201b60201c565b620003c9919062001052565b11156200040d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004049062000f3e565b60405180910390fd5b6200041d6200059e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620004f957600960009054906101000a900460ff1615620004a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049a9062000f82565b60405180910390fd5b80600e54620004b39190620010af565b341015620004f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ef9062000fa4565b60405180910390fd5b5b6200050b33826200061d60201b60201c565b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000558919062001052565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b6200063f8282604051806020016040528060008152506200064360201b60201c565b5050565b6200065883838360016200065d60201b60201c565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620006f9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000735576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200074a600086838762000a1160201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015620009bb57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156200096d57506200096b600088848862000a1760201b60201c565b155b15620009a5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050620008e8565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055505062000a0a600086838762000bc660201b60201c565b5050505050565b50505050565b600062000a458473ffffffffffffffffffffffffffffffffffffffff1662000bcc60201b6200266c1760201c565b1562000bb9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000a776200018560201b60201c565b8786866040518563ffffffff1660e01b815260040162000a9b949392919062000eea565b602060405180830381600087803b15801562000ab657600080fd5b505af192505050801562000aea57506040513d601f19601f8201168201806040525081019062000ae7919062000d34565b60015b62000b68573d806000811462000b1d576040519150601f19603f3d011682016040523d82523d6000602084013e62000b22565b606091505b5060008151141562000b60576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000bbe565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805462000bfd90620011b0565b90600052602060002090601f01602090048101928262000c21576000855562000c6d565b82601f1062000c3c57805160ff191683800117855562000c6d565b8280016001018555821562000c6d579182015b8281111562000c6c57825182559160200191906001019062000c4f565b5b50905062000c7c919062000c80565b5090565b5b8082111562000c9b57600081600090555060010162000c81565b5090565b600062000cb662000cb08462000fef565b62000fc6565b90508281526020810184848401111562000cd55762000cd4620012ae565b5b62000ce28482856200117a565b509392505050565b60008151905062000cfb8162001372565b92915050565b600082601f83011262000d195762000d18620012a9565b5b815162000d2b84826020860162000c9f565b91505092915050565b60006020828403121562000d4d5762000d4c620012b8565b5b600062000d5d8482850162000cea565b91505092915050565b6000806040838503121562000d805762000d7f620012b8565b5b600083015167ffffffffffffffff81111562000da15762000da0620012b3565b5b62000daf8582860162000d01565b925050602083015167ffffffffffffffff81111562000dd35762000dd2620012b3565b5b62000de18582860162000d01565b9150509250929050565b62000df68162001110565b82525050565b600062000e098262001025565b62000e15818562001030565b935062000e278185602086016200117a565b62000e3281620012bd565b840191505092915050565b600062000e4c60168362001041565b915062000e5982620012ce565b602082019050919050565b600062000e7360208362001041565b915062000e8082620012f7565b602082019050919050565b600062000e9a60168362001041565b915062000ea78262001320565b602082019050919050565b600062000ec160158362001041565b915062000ece8262001349565b602082019050919050565b62000ee48162001170565b82525050565b600060808201905062000f01600083018762000deb565b62000f10602083018662000deb565b62000f1f604083018562000ed9565b818103606083015262000f33818462000dfc565b905095945050505050565b6000602082019050818103600083015262000f598162000e3d565b9050919050565b6000602082019050818103600083015262000f7b8162000e64565b9050919050565b6000602082019050818103600083015262000f9d8162000e8b565b9050919050565b6000602082019050818103600083015262000fbf8162000eb2565b9050919050565b600062000fd262000fe5565b905062000fe08282620011e6565b919050565b6000604051905090565b600067ffffffffffffffff8211156200100d576200100c6200127a565b5b6200101882620012bd565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200105f8262001170565b91506200106c8362001170565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620010a457620010a36200121c565b5b828201905092915050565b6000620010bc8262001170565b9150620010c98362001170565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200110557620011046200121c565b5b828202905092915050565b60006200111d8262001150565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200119a5780820151818401526020810190506200117d565b83811115620011aa576000848401525b50505050565b60006002820490506001821680620011c957607f821691505b60208210811415620011e057620011df6200124b565b5b50919050565b620011f182620012bd565b810181811067ffffffffffffffff821117156200121357620012126200127a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6200137d8162001124565b81146200138957600080fd5b50565b614aaf806200139c6000396000f3fe60806040526004361061023b5760003560e01c80635c975abb1161012e578063a22cb465116100ab578063e985e9c51161006f578063e985e9c514610848578063ef81b4d414610885578063f0d23192146108b0578063f2c4ce1e146108ed578063f2fde38b146109165761023b565b8063a22cb46514610765578063b88d4fde1461078e578063c87b56dd146107b7578063d49479eb146107f4578063e7b99ec71461081d5761023b565b806371706cbe116100f257806371706cbe1461069f5780638da5cb5b146106ca5780638dbb7c06146106f557806395d89b411461071e578063a0712d68146107495761023b565b80635c975abb146105b85780636352211e146105e35780636c0360eb1461062057806370a082311461064b578063715018a6146106885761023b565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146104d35780635183022714610510578063523853231461053b57806355f804b3146105785780635b8ad429146105a15761023b565b80632f745c59146103fb57806335ce5395146104385780633ccfd60b1461047557806342842e0e1461047f578063453afb0f146104a85761023b565b8063095ea7b311610203578063095ea7b31461033957806318160ddd1461036257806323b872dd1461038d57806325389421146103b65780632904e6d9146103df5761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063081c8c441461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613d36565b61093f565b60405161027491906141e2565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190613cdc565b610a89565b005b3480156102b257600080fd5b506102bb610b22565b6040516102c89190614218565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613dd9565b610bb4565b604051610305919061417b565b60405180910390f35b34801561031a57600080fd5b50610323610c30565b6040516103309190614218565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613c3c565b610cbe565b005b34801561036e57600080fd5b50610377610dc9565b604051610384919061433a565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613b26565b610e1e565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190613d09565b610e2e565b005b6103f960048036038101906103f49190613c7c565b610eb4565b005b34801561040757600080fd5b50610422600480360381019061041d9190613c3c565b61114f565b60405161042f919061433a565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613ab9565b611356565b60405161046c919061433a565b60405180910390f35b61047d61136e565b005b34801561048b57600080fd5b506104a660048036038101906104a19190613b26565b611834565b005b3480156104b457600080fd5b506104bd611854565b6040516104ca919061433a565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190613dd9565b61185a565b604051610507919061433a565b60405180910390f35b34801561051c57600080fd5b506105256119cb565b60405161053291906141e2565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190613dd9565b6119de565b60405161056f919061433a565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613d90565b6119f6565b005b3480156105ad57600080fd5b506105b6611a8c565b005b3480156105c457600080fd5b506105cd611b62565b6040516105da91906141e2565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190613dd9565b611b75565b604051610617919061417b565b60405180910390f35b34801561062c57600080fd5b50610635611b8b565b6040516106429190614218565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613ab9565b611c19565b60405161067f919061433a565b60405180910390f35b34801561069457600080fd5b5061069d611ce9565b005b3480156106ab57600080fd5b506106b4611d71565b6040516106c1919061433a565b60405180910390f35b3480156106d657600080fd5b506106df611d77565b6040516106ec919061417b565b60405180910390f35b34801561070157600080fd5b5061071c60048036038101906107179190613dd9565b611da1565b005b34801561072a57600080fd5b50610733611e27565b6040516107409190614218565b60405180910390f35b610763600480360381019061075e9190613dd9565b611eb9565b005b34801561077157600080fd5b5061078c60048036038101906107879190613bfc565b612086565b005b34801561079a57600080fd5b506107b560048036038101906107b09190613b79565b6121fe565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613dd9565b612251565b6040516107eb9190614218565b60405180910390f35b34801561080057600080fd5b5061081b60048036038101906108169190613dd9565b6123a0565b005b34801561082957600080fd5b50610832612426565b60405161083f919061433a565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a9190613ae6565b61242c565b60405161087c91906141e2565b60405180910390f35b34801561089157600080fd5b5061089a6124c0565b6040516108a791906141fd565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190613ab9565b6124c6565b6040516108e4919061433a565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f9190613d90565b6124de565b005b34801561092257600080fd5b5061093d60048036038101906109389190613ab9565b612574565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a825750610a818261268f565b5b9050919050565b610a916126f9565b73ffffffffffffffffffffffffffffffffffffffff16610aaf611d77565b73ffffffffffffffffffffffffffffffffffffffff1614610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc9061429a565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b606060018054610b3190614614565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d90614614565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b5050505050905090565b6000610bbf82612701565b610bf5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610c3d90614614565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6990614614565b8015610cb65780601f10610c8b57610100808354040283529160200191610cb6565b820191906000526020600020905b815481529060010190602001808311610c9957829003601f168201915b505050505081565b6000610cc982611b75565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d31576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d506126f9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d825750610d8081610d7b6126f9565b61242c565b155b15610db9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dc4838383612769565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610e2983838361281b565b505050565b610e366126f9565b73ffffffffffffffffffffffffffffffffffffffff16610e54611d77565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea19061429a565b60405180910390fd5b80600f8190555050565b600a5481610ec0610dc9565b610eca919061443f565b1115610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f029061427a565b60405180910390fd5b600381601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f58919061443f565b1115610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f909061425a565b60405180910390fd5b80600d54610fa791906144c6565b341015610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe0906142da565b60405180910390fd5b600960009054906101000a900460ff1615611039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611030906142ba565b60405180910390fd5b60003360405160200161104c91906140f0565b604051602081830303815290604052805190602001209050611072848483600f54612d38565b6110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a89061431a565b60405180910390fd5b6110bb3383612df0565b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611106919061443f565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600061115a83611c19565b8210611192576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b8381101561134a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156112a9575061133d565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146112e957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561133b5786841415611332578195505050505050611350565b83806001019450505b505b80806001019150506111cc565b50600080fd5b92915050565b60106020528060005260406000206000915090505481565b6113766126f9565b73ffffffffffffffffffffffffffffffffffffffff16611394611d77565b73ffffffffffffffffffffffffffffffffffffffff16146113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e19061429a565b60405180910390fd5b4760126000601354815260200190815260200160002081905550600073ac64e665e7e312e96317a50e39b9bddf6045438973ffffffffffffffffffffffffffffffffffffffff16606460046012600060135481526020019081526020016000205461145591906144c6565b61145f9190614495565b60405161146b90614166565b60006040518083038185875af1925050503d80600081146114a8576040519150601f19603f3d011682016040523d82523d6000602084013e6114ad565b606091505b50509050806114bb57600080fd5b600073c729b09919125c89da72f8e3c1302e5c9c0910d673ffffffffffffffffffffffffffffffffffffffff16606460196012600060135481526020019081526020016000205461150c91906144c6565b6115169190614495565b60405161152290614166565b60006040518083038185875af1925050503d806000811461155f576040519150601f19603f3d011682016040523d82523d6000602084013e611564565b606091505b505090508061157257600080fd5b600073fd717050b2d3ffc06027c517f1339e058df7fa2573ffffffffffffffffffffffffffffffffffffffff1660646004601260006013548152602001908152602001600020546115c391906144c6565b6115cd9190614495565b6040516115d990614166565b60006040518083038185875af1925050503d8060008114611616576040519150601f19603f3d011682016040523d82523d6000602084013e61161b565b606091505b505090508061162957600080fd5b600073de2e48a835ee8397fe52c7d391bc6f5961284e6173ffffffffffffffffffffffffffffffffffffffff16606460046012600060135481526020019081526020016000205461167a91906144c6565b6116849190614495565b60405161169090614166565b60006040518083038185875af1925050503d80600081146116cd576040519150601f19603f3d011682016040523d82523d6000602084013e6116d2565b606091505b50509050806116e057600080fd5b6000738c019fd54f6509190cc44e8b74f032a4153edf7273ffffffffffffffffffffffffffffffffffffffff16606460016012600060135481526020019081526020016000205461173191906144c6565b61173b9190614495565b60405161174790614166565b60006040518083038185875af1925050503d8060008114611784576040519150601f19603f3d011682016040523d82523d6000602084013e611789565b606091505b505090508061179757600080fd5b60006117a1611d77565b73ffffffffffffffffffffffffffffffffffffffff16476040516117c490614166565b60006040518083038185875af1925050503d8060008114611801576040519150601f19603f3d011682016040523d82523d6000602084013e611806565b606091505b505090508061181457600080fd5b6013600081548092919061182790614677565b9190505550505050505050565b61184f838383604051806020016040528060008152506121fe565b505050565b600e5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611993576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611985578583141561197c57819450505050506119c6565b82806001019350505b508080600101915050611892565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600c60009054906101000a900460ff1681565b60126020528060005260406000206000915090505481565b6119fe6126f9565b73ffffffffffffffffffffffffffffffffffffffff16611a1c611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a699061429a565b60405180910390fd5b8060089080519060200190611a8892919061381f565b5050565b611a946126f9565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff9061429a565b60405180910390fd5b60001515600c60009054906101000a900460ff1615151415611b44576001600c60006101000a81548160ff021916908315150217905550611b60565b6000600c60006101000a81548160ff0219169083151502179055505b565b600960009054906101000a900460ff1681565b6000611b8082612e0e565b600001519050919050565b60088054611b9890614614565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc490614614565b8015611c115780601f10611be657610100808354040283529160200191611c11565b820191906000526020600020905b815481529060010190602001808311611bf457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c81576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611cf16126f9565b73ffffffffffffffffffffffffffffffffffffffff16611d0f611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5c9061429a565b60405180910390fd5b611d6f60006130b6565b565b60135481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611da96126f9565b73ffffffffffffffffffffffffffffffffffffffff16611dc7611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e149061429a565b60405180910390fd5b80600e8190555050565b606060028054611e3690614614565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6290614614565b8015611eaf5780601f10611e8457610100808354040283529160200191611eaf565b820191906000526020600020905b815481529060010190602001808311611e9257829003601f168201915b5050505050905090565b600a5481611ec5610dc9565b611ecf919061443f565b1115611f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f079061427a565b60405180910390fd5b611f18611d77565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611feb57600960009054906101000a900460ff1615611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f91906142ba565b60405180910390fd5b80600e54611fa891906144c6565b341015611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe1906142fa565b60405180910390fd5b5b611ff53382612df0565b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612040919061443f565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b61208e6126f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006121006126f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121ad6126f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121f291906141e2565b60405180910390a35050565b61220984848461281b565b6122158484848461317c565b61224b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061225c82612701565b612292576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600c60009054906101000a900460ff161515141561234057600b80546122bb90614614565b80601f01602080910402602001604051908101604052809291908181526020018280546122e790614614565b80156123345780601f1061230957610100808354040283529160200191612334565b820191906000526020600020905b81548152906001019060200180831161231757829003601f168201915b5050505050905061239b565b60006008805461234f90614614565b9050141561236c5760405180602001604052806000815250612398565b60086123778361330a565b604051602001612388929190614137565b6040516020818303038152906040525b90505b919050565b6123a86126f9565b73ffffffffffffffffffffffffffffffffffffffff166123c6611d77565b73ffffffffffffffffffffffffffffffffffffffff161461241c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124139061429a565b60405180910390fd5b80600d8190555050565b600d5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f5481565b60116020528060005260406000206000915090505481565b6124e66126f9565b73ffffffffffffffffffffffffffffffffffffffff16612504611d77565b73ffffffffffffffffffffffffffffffffffffffff161461255a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125519061429a565b60405180910390fd5b80600b908051906020019061257092919061381f565b5050565b61257c6126f9565b73ffffffffffffffffffffffffffffffffffffffff1661259a611d77565b73ffffffffffffffffffffffffffffffffffffffff16146125f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e79061429a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126579061423a565b60405180910390fd5b612669816130b6565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612762575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061282682612e0e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661284d6126f9565b73ffffffffffffffffffffffffffffffffffffffff161480612880575061287f826000015161287a6126f9565b61242c565b5b806128c5575061288e6126f9565b73ffffffffffffffffffffffffffffffffffffffff166128ad84610bb4565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806128fe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612967576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129ce576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129db858585600161346b565b6129eb6000848460000151612769565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612cc85760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612cc75782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d318585856001613471565b5050505050565b60008083905060005b86869050811015612de1576000878783818110612d6157612d606147ac565b5b905060200201359050808311612da1578281604051602001612d8492919061410b565b604051602081830303815290604052805190602001209250612dcd565b8083604051602001612db492919061410b565b6040516020818303038152906040528051906020012092505b508080612dd990614677565b915050612d41565b50828114915050949350505050565b612e0a828260405180602001604052806000815250613477565b5050565b612e166138a5565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561307f576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161307d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f615780925050506130b1565b5b60011561307c57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130775780925050506130b1565b612f62565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061319d8473ffffffffffffffffffffffffffffffffffffffff1661266c565b156132fd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131c66126f9565b8786866040518563ffffffff1660e01b81526004016131e89493929190614196565b602060405180830381600087803b15801561320257600080fd5b505af192505050801561323357506040513d601f19601f820116820180604052508101906132309190613d63565b60015b6132ad573d8060008114613263576040519150601f19603f3d011682016040523d82523d6000602084013e613268565b606091505b506000815114156132a5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613302565b600190505b949350505050565b60606000821415613352576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613466565b600082905060005b6000821461338457808061336d90614677565b915050600a8261337d9190614495565b915061335a565b60008167ffffffffffffffff8111156133a05761339f6147db565b5b6040519080825280601f01601f1916602001820160405280156133d25781602001600182028036833780820191505090505b5090505b6000851461345f576001826133eb9190614520565b9150600a856133fa91906146ee565b6030613406919061443f565b60f81b81838151811061341c5761341b6147ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134589190614495565b94506133d6565b8093505050505b919050565b50505050565b50505050565b6134848383836001613489565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613524576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561355f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61356c600086838761346b565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156137d157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156137855750613783600088848861317c565b155b156137bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061370a565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506138186000868387613471565b5050505050565b82805461382b90614614565b90600052602060002090601f01602090048101928261384d5760008555613894565b82601f1061386657805160ff1916838001178555613894565b82800160010185558215613894579182015b82811115613893578251825591602001919060010190613878565b5b5090506138a191906138e8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156139015760008160009055506001016138e9565b5090565b60006139186139138461437a565b614355565b90508281526020810184848401111561393457613933614819565b5b61393f8482856145d2565b509392505050565b600061395a613955846143ab565b614355565b90508281526020810184848401111561397657613975614819565b5b6139818482856145d2565b509392505050565b60008135905061399881614a06565b92915050565b60008083601f8401126139b4576139b361480f565b5b8235905067ffffffffffffffff8111156139d1576139d061480a565b5b6020830191508360208202830111156139ed576139ec614814565b5b9250929050565b600081359050613a0381614a1d565b92915050565b600081359050613a1881614a34565b92915050565b600081359050613a2d81614a4b565b92915050565b600081519050613a4281614a4b565b92915050565b600082601f830112613a5d57613a5c61480f565b5b8135613a6d848260208601613905565b91505092915050565b600082601f830112613a8b57613a8a61480f565b5b8135613a9b848260208601613947565b91505092915050565b600081359050613ab381614a62565b92915050565b600060208284031215613acf57613ace614823565b5b6000613add84828501613989565b91505092915050565b60008060408385031215613afd57613afc614823565b5b6000613b0b85828601613989565b9250506020613b1c85828601613989565b9150509250929050565b600080600060608486031215613b3f57613b3e614823565b5b6000613b4d86828701613989565b9350506020613b5e86828701613989565b9250506040613b6f86828701613aa4565b9150509250925092565b60008060008060808587031215613b9357613b92614823565b5b6000613ba187828801613989565b9450506020613bb287828801613989565b9350506040613bc387828801613aa4565b925050606085013567ffffffffffffffff811115613be457613be361481e565b5b613bf087828801613a48565b91505092959194509250565b60008060408385031215613c1357613c12614823565b5b6000613c2185828601613989565b9250506020613c32858286016139f4565b9150509250929050565b60008060408385031215613c5357613c52614823565b5b6000613c6185828601613989565b9250506020613c7285828601613aa4565b9150509250929050565b600080600060408486031215613c9557613c94614823565b5b600084013567ffffffffffffffff811115613cb357613cb261481e565b5b613cbf8682870161399e565b93509350506020613cd286828701613aa4565b9150509250925092565b600060208284031215613cf257613cf1614823565b5b6000613d00848285016139f4565b91505092915050565b600060208284031215613d1f57613d1e614823565b5b6000613d2d84828501613a09565b91505092915050565b600060208284031215613d4c57613d4b614823565b5b6000613d5a84828501613a1e565b91505092915050565b600060208284031215613d7957613d78614823565b5b6000613d8784828501613a33565b91505092915050565b600060208284031215613da657613da5614823565b5b600082013567ffffffffffffffff811115613dc457613dc361481e565b5b613dd084828501613a76565b91505092915050565b600060208284031215613def57613dee614823565b5b6000613dfd84828501613aa4565b91505092915050565b613e0f81614554565b82525050565b613e26613e2182614554565b6146c0565b82525050565b613e3581614566565b82525050565b613e4481614572565b82525050565b613e5b613e5682614572565b6146d2565b82525050565b6000613e6c826143f1565b613e768185614407565b9350613e868185602086016145e1565b613e8f81614828565b840191505092915050565b6000613ea5826143fc565b613eaf8185614423565b9350613ebf8185602086016145e1565b613ec881614828565b840191505092915050565b6000613ede826143fc565b613ee88185614434565b9350613ef88185602086016145e1565b80840191505092915050565b60008154613f1181614614565b613f1b8186614434565b94506001821660008114613f365760018114613f4757613f7a565b60ff19831686528186019350613f7a565b613f50856143dc565b60005b83811015613f7257815481890152600182019150602081019050613f53565b838801955050505b50505092915050565b6000613f90602683614423565b9150613f9b82614846565b604082019050919050565b6000613fb3602283614423565b9150613fbe82614895565b604082019050919050565b6000613fd6601683614423565b9150613fe1826148e4565b602082019050919050565b6000613ff9600583614434565b91506140048261490d565b600582019050919050565b600061401c602083614423565b915061402782614936565b602082019050919050565b600061403f601683614423565b915061404a8261495f565b602082019050919050565b6000614062600083614418565b915061406d82614988565b600082019050919050565b6000614085601283614423565b91506140908261498b565b602082019050919050565b60006140a8601583614423565b91506140b3826149b4565b602082019050919050565b60006140cb600d83614423565b91506140d6826149dd565b602082019050919050565b6140ea816145c8565b82525050565b60006140fc8284613e15565b60148201915081905092915050565b60006141178285613e4a565b6020820191506141278284613e4a565b6020820191508190509392505050565b60006141438285613f04565b915061414f8284613ed3565b915061415a82613fec565b91508190509392505050565b600061417182614055565b9150819050919050565b60006020820190506141906000830184613e06565b92915050565b60006080820190506141ab6000830187613e06565b6141b86020830186613e06565b6141c560408301856140e1565b81810360608301526141d78184613e61565b905095945050505050565b60006020820190506141f76000830184613e2c565b92915050565b60006020820190506142126000830184613e3b565b92915050565b600060208201905081810360008301526142328184613e9a565b905092915050565b6000602082019050818103600083015261425381613f83565b9050919050565b6000602082019050818103600083015261427381613fa6565b9050919050565b6000602082019050818103600083015261429381613fc9565b9050919050565b600060208201905081810360008301526142b38161400f565b9050919050565b600060208201905081810360008301526142d381614032565b9050919050565b600060208201905081810360008301526142f381614078565b9050919050565b600060208201905081810360008301526143138161409b565b9050919050565b60006020820190508181036000830152614333816140be565b9050919050565b600060208201905061434f60008301846140e1565b92915050565b600061435f614370565b905061436b8282614646565b919050565b6000604051905090565b600067ffffffffffffffff821115614395576143946147db565b5b61439e82614828565b9050602081019050919050565b600067ffffffffffffffff8211156143c6576143c56147db565b5b6143cf82614828565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061444a826145c8565b9150614455836145c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561448a5761448961471f565b5b828201905092915050565b60006144a0826145c8565b91506144ab836145c8565b9250826144bb576144ba61474e565b5b828204905092915050565b60006144d1826145c8565b91506144dc836145c8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145155761451461471f565b5b828202905092915050565b600061452b826145c8565b9150614536836145c8565b9250828210156145495761454861471f565b5b828203905092915050565b600061455f826145a8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145ff5780820151818401526020810190506145e4565b8381111561460e576000848401525b50505050565b6000600282049050600182168061462c57607f821691505b602082108114156146405761463f61477d565b5b50919050565b61464f82614828565b810181811067ffffffffffffffff8211171561466e5761466d6147db565b5b80604052505050565b6000614682826145c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146b5576146b461471f565b5b600182019050919050565b60006146cb826146dc565b9050919050565b6000819050919050565b60006146e782614839565b9050919050565b60006146f9826145c8565b9150614704836145c8565b9250826147145761471361474e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5065722077616c6c65742077686974656c697374206c696d697420726561636860008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b614a0f81614554565b8114614a1a57600080fd5b50565b614a2681614566565b8114614a3157600080fd5b50565b614a3d81614572565b8114614a4857600080fd5b50565b614a548161457c565b8114614a5f57600080fd5b50565b614a6b816145c8565b8114614a7657600080fd5b5056fea264697066735822122083613b7395f36a138ccd037954adea2938c347e7b58df2d5086e538971e4499a64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80635c975abb1161012e578063a22cb465116100ab578063e985e9c51161006f578063e985e9c514610848578063ef81b4d414610885578063f0d23192146108b0578063f2c4ce1e146108ed578063f2fde38b146109165761023b565b8063a22cb46514610765578063b88d4fde1461078e578063c87b56dd146107b7578063d49479eb146107f4578063e7b99ec71461081d5761023b565b806371706cbe116100f257806371706cbe1461069f5780638da5cb5b146106ca5780638dbb7c06146106f557806395d89b411461071e578063a0712d68146107495761023b565b80635c975abb146105b85780636352211e146105e35780636c0360eb1461062057806370a082311461064b578063715018a6146106885761023b565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146104d35780635183022714610510578063523853231461053b57806355f804b3146105785780635b8ad429146105a15761023b565b80632f745c59146103fb57806335ce5395146104385780633ccfd60b1461047557806342842e0e1461047f578063453afb0f146104a85761023b565b8063095ea7b311610203578063095ea7b31461033957806318160ddd1461036257806323b872dd1461038d57806325389421146103b65780632904e6d9146103df5761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063081c8c441461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613d36565b61093f565b60405161027491906141e2565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190613cdc565b610a89565b005b3480156102b257600080fd5b506102bb610b22565b6040516102c89190614218565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613dd9565b610bb4565b604051610305919061417b565b60405180910390f35b34801561031a57600080fd5b50610323610c30565b6040516103309190614218565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613c3c565b610cbe565b005b34801561036e57600080fd5b50610377610dc9565b604051610384919061433a565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613b26565b610e1e565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190613d09565b610e2e565b005b6103f960048036038101906103f49190613c7c565b610eb4565b005b34801561040757600080fd5b50610422600480360381019061041d9190613c3c565b61114f565b60405161042f919061433a565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613ab9565b611356565b60405161046c919061433a565b60405180910390f35b61047d61136e565b005b34801561048b57600080fd5b506104a660048036038101906104a19190613b26565b611834565b005b3480156104b457600080fd5b506104bd611854565b6040516104ca919061433a565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190613dd9565b61185a565b604051610507919061433a565b60405180910390f35b34801561051c57600080fd5b506105256119cb565b60405161053291906141e2565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190613dd9565b6119de565b60405161056f919061433a565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613d90565b6119f6565b005b3480156105ad57600080fd5b506105b6611a8c565b005b3480156105c457600080fd5b506105cd611b62565b6040516105da91906141e2565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190613dd9565b611b75565b604051610617919061417b565b60405180910390f35b34801561062c57600080fd5b50610635611b8b565b6040516106429190614218565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613ab9565b611c19565b60405161067f919061433a565b60405180910390f35b34801561069457600080fd5b5061069d611ce9565b005b3480156106ab57600080fd5b506106b4611d71565b6040516106c1919061433a565b60405180910390f35b3480156106d657600080fd5b506106df611d77565b6040516106ec919061417b565b60405180910390f35b34801561070157600080fd5b5061071c60048036038101906107179190613dd9565b611da1565b005b34801561072a57600080fd5b50610733611e27565b6040516107409190614218565b60405180910390f35b610763600480360381019061075e9190613dd9565b611eb9565b005b34801561077157600080fd5b5061078c60048036038101906107879190613bfc565b612086565b005b34801561079a57600080fd5b506107b560048036038101906107b09190613b79565b6121fe565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613dd9565b612251565b6040516107eb9190614218565b60405180910390f35b34801561080057600080fd5b5061081b60048036038101906108169190613dd9565b6123a0565b005b34801561082957600080fd5b50610832612426565b60405161083f919061433a565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a9190613ae6565b61242c565b60405161087c91906141e2565b60405180910390f35b34801561089157600080fd5b5061089a6124c0565b6040516108a791906141fd565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190613ab9565b6124c6565b6040516108e4919061433a565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f9190613d90565b6124de565b005b34801561092257600080fd5b5061093d60048036038101906109389190613ab9565b612574565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a825750610a818261268f565b5b9050919050565b610a916126f9565b73ffffffffffffffffffffffffffffffffffffffff16610aaf611d77565b73ffffffffffffffffffffffffffffffffffffffff1614610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc9061429a565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b606060018054610b3190614614565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d90614614565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b5050505050905090565b6000610bbf82612701565b610bf5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610c3d90614614565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6990614614565b8015610cb65780601f10610c8b57610100808354040283529160200191610cb6565b820191906000526020600020905b815481529060010190602001808311610c9957829003601f168201915b505050505081565b6000610cc982611b75565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d31576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d506126f9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d825750610d8081610d7b6126f9565b61242c565b155b15610db9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dc4838383612769565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610e2983838361281b565b505050565b610e366126f9565b73ffffffffffffffffffffffffffffffffffffffff16610e54611d77565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea19061429a565b60405180910390fd5b80600f8190555050565b600a5481610ec0610dc9565b610eca919061443f565b1115610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f029061427a565b60405180910390fd5b600381601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f58919061443f565b1115610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f909061425a565b60405180910390fd5b80600d54610fa791906144c6565b341015610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe0906142da565b60405180910390fd5b600960009054906101000a900460ff1615611039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611030906142ba565b60405180910390fd5b60003360405160200161104c91906140f0565b604051602081830303815290604052805190602001209050611072848483600f54612d38565b6110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a89061431a565b60405180910390fd5b6110bb3383612df0565b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611106919061443f565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600061115a83611c19565b8210611192576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b8381101561134a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156112a9575061133d565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146112e957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561133b5786841415611332578195505050505050611350565b83806001019450505b505b80806001019150506111cc565b50600080fd5b92915050565b60106020528060005260406000206000915090505481565b6113766126f9565b73ffffffffffffffffffffffffffffffffffffffff16611394611d77565b73ffffffffffffffffffffffffffffffffffffffff16146113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e19061429a565b60405180910390fd5b4760126000601354815260200190815260200160002081905550600073ac64e665e7e312e96317a50e39b9bddf6045438973ffffffffffffffffffffffffffffffffffffffff16606460046012600060135481526020019081526020016000205461145591906144c6565b61145f9190614495565b60405161146b90614166565b60006040518083038185875af1925050503d80600081146114a8576040519150601f19603f3d011682016040523d82523d6000602084013e6114ad565b606091505b50509050806114bb57600080fd5b600073c729b09919125c89da72f8e3c1302e5c9c0910d673ffffffffffffffffffffffffffffffffffffffff16606460196012600060135481526020019081526020016000205461150c91906144c6565b6115169190614495565b60405161152290614166565b60006040518083038185875af1925050503d806000811461155f576040519150601f19603f3d011682016040523d82523d6000602084013e611564565b606091505b505090508061157257600080fd5b600073fd717050b2d3ffc06027c517f1339e058df7fa2573ffffffffffffffffffffffffffffffffffffffff1660646004601260006013548152602001908152602001600020546115c391906144c6565b6115cd9190614495565b6040516115d990614166565b60006040518083038185875af1925050503d8060008114611616576040519150601f19603f3d011682016040523d82523d6000602084013e61161b565b606091505b505090508061162957600080fd5b600073de2e48a835ee8397fe52c7d391bc6f5961284e6173ffffffffffffffffffffffffffffffffffffffff16606460046012600060135481526020019081526020016000205461167a91906144c6565b6116849190614495565b60405161169090614166565b60006040518083038185875af1925050503d80600081146116cd576040519150601f19603f3d011682016040523d82523d6000602084013e6116d2565b606091505b50509050806116e057600080fd5b6000738c019fd54f6509190cc44e8b74f032a4153edf7273ffffffffffffffffffffffffffffffffffffffff16606460016012600060135481526020019081526020016000205461173191906144c6565b61173b9190614495565b60405161174790614166565b60006040518083038185875af1925050503d8060008114611784576040519150601f19603f3d011682016040523d82523d6000602084013e611789565b606091505b505090508061179757600080fd5b60006117a1611d77565b73ffffffffffffffffffffffffffffffffffffffff16476040516117c490614166565b60006040518083038185875af1925050503d8060008114611801576040519150601f19603f3d011682016040523d82523d6000602084013e611806565b606091505b505090508061181457600080fd5b6013600081548092919061182790614677565b9190505550505050505050565b61184f838383604051806020016040528060008152506121fe565b505050565b600e5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611993576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611985578583141561197c57819450505050506119c6565b82806001019350505b508080600101915050611892565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600c60009054906101000a900460ff1681565b60126020528060005260406000206000915090505481565b6119fe6126f9565b73ffffffffffffffffffffffffffffffffffffffff16611a1c611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a699061429a565b60405180910390fd5b8060089080519060200190611a8892919061381f565b5050565b611a946126f9565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff9061429a565b60405180910390fd5b60001515600c60009054906101000a900460ff1615151415611b44576001600c60006101000a81548160ff021916908315150217905550611b60565b6000600c60006101000a81548160ff0219169083151502179055505b565b600960009054906101000a900460ff1681565b6000611b8082612e0e565b600001519050919050565b60088054611b9890614614565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc490614614565b8015611c115780601f10611be657610100808354040283529160200191611c11565b820191906000526020600020905b815481529060010190602001808311611bf457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c81576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611cf16126f9565b73ffffffffffffffffffffffffffffffffffffffff16611d0f611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5c9061429a565b60405180910390fd5b611d6f60006130b6565b565b60135481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611da96126f9565b73ffffffffffffffffffffffffffffffffffffffff16611dc7611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e149061429a565b60405180910390fd5b80600e8190555050565b606060028054611e3690614614565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6290614614565b8015611eaf5780601f10611e8457610100808354040283529160200191611eaf565b820191906000526020600020905b815481529060010190602001808311611e9257829003601f168201915b5050505050905090565b600a5481611ec5610dc9565b611ecf919061443f565b1115611f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f079061427a565b60405180910390fd5b611f18611d77565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611feb57600960009054906101000a900460ff1615611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f91906142ba565b60405180910390fd5b80600e54611fa891906144c6565b341015611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe1906142fa565b60405180910390fd5b5b611ff53382612df0565b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612040919061443f565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b61208e6126f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006121006126f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121ad6126f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121f291906141e2565b60405180910390a35050565b61220984848461281b565b6122158484848461317c565b61224b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061225c82612701565b612292576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600c60009054906101000a900460ff161515141561234057600b80546122bb90614614565b80601f01602080910402602001604051908101604052809291908181526020018280546122e790614614565b80156123345780601f1061230957610100808354040283529160200191612334565b820191906000526020600020905b81548152906001019060200180831161231757829003601f168201915b5050505050905061239b565b60006008805461234f90614614565b9050141561236c5760405180602001604052806000815250612398565b60086123778361330a565b604051602001612388929190614137565b6040516020818303038152906040525b90505b919050565b6123a86126f9565b73ffffffffffffffffffffffffffffffffffffffff166123c6611d77565b73ffffffffffffffffffffffffffffffffffffffff161461241c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124139061429a565b60405180910390fd5b80600d8190555050565b600d5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f5481565b60116020528060005260406000206000915090505481565b6124e66126f9565b73ffffffffffffffffffffffffffffffffffffffff16612504611d77565b73ffffffffffffffffffffffffffffffffffffffff161461255a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125519061429a565b60405180910390fd5b80600b908051906020019061257092919061381f565b5050565b61257c6126f9565b73ffffffffffffffffffffffffffffffffffffffff1661259a611d77565b73ffffffffffffffffffffffffffffffffffffffff16146125f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e79061429a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126579061423a565b60405180910390fd5b612669816130b6565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612762575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061282682612e0e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661284d6126f9565b73ffffffffffffffffffffffffffffffffffffffff161480612880575061287f826000015161287a6126f9565b61242c565b5b806128c5575061288e6126f9565b73ffffffffffffffffffffffffffffffffffffffff166128ad84610bb4565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806128fe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612967576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129ce576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129db858585600161346b565b6129eb6000848460000151612769565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612cc85760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612cc75782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d318585856001613471565b5050505050565b60008083905060005b86869050811015612de1576000878783818110612d6157612d606147ac565b5b905060200201359050808311612da1578281604051602001612d8492919061410b565b604051602081830303815290604052805190602001209250612dcd565b8083604051602001612db492919061410b565b6040516020818303038152906040528051906020012092505b508080612dd990614677565b915050612d41565b50828114915050949350505050565b612e0a828260405180602001604052806000815250613477565b5050565b612e166138a5565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561307f576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161307d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f615780925050506130b1565b5b60011561307c57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130775780925050506130b1565b612f62565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061319d8473ffffffffffffffffffffffffffffffffffffffff1661266c565b156132fd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131c66126f9565b8786866040518563ffffffff1660e01b81526004016131e89493929190614196565b602060405180830381600087803b15801561320257600080fd5b505af192505050801561323357506040513d601f19601f820116820180604052508101906132309190613d63565b60015b6132ad573d8060008114613263576040519150601f19603f3d011682016040523d82523d6000602084013e613268565b606091505b506000815114156132a5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613302565b600190505b949350505050565b60606000821415613352576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613466565b600082905060005b6000821461338457808061336d90614677565b915050600a8261337d9190614495565b915061335a565b60008167ffffffffffffffff8111156133a05761339f6147db565b5b6040519080825280601f01601f1916602001820160405280156133d25781602001600182028036833780820191505090505b5090505b6000851461345f576001826133eb9190614520565b9150600a856133fa91906146ee565b6030613406919061443f565b60f81b81838151811061341c5761341b6147ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134589190614495565b94506133d6565b8093505050505b919050565b50505050565b50505050565b6134848383836001613489565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613524576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561355f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61356c600086838761346b565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156137d157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156137855750613783600088848861317c565b155b156137bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061370a565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506138186000868387613471565b5050505050565b82805461382b90614614565b90600052602060002090601f01602090048101928261384d5760008555613894565b82601f1061386657805160ff1916838001178555613894565b82800160010185558215613894579182015b82811115613893578251825591602001919060010190613878565b5b5090506138a191906138e8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156139015760008160009055506001016138e9565b5090565b60006139186139138461437a565b614355565b90508281526020810184848401111561393457613933614819565b5b61393f8482856145d2565b509392505050565b600061395a613955846143ab565b614355565b90508281526020810184848401111561397657613975614819565b5b6139818482856145d2565b509392505050565b60008135905061399881614a06565b92915050565b60008083601f8401126139b4576139b361480f565b5b8235905067ffffffffffffffff8111156139d1576139d061480a565b5b6020830191508360208202830111156139ed576139ec614814565b5b9250929050565b600081359050613a0381614a1d565b92915050565b600081359050613a1881614a34565b92915050565b600081359050613a2d81614a4b565b92915050565b600081519050613a4281614a4b565b92915050565b600082601f830112613a5d57613a5c61480f565b5b8135613a6d848260208601613905565b91505092915050565b600082601f830112613a8b57613a8a61480f565b5b8135613a9b848260208601613947565b91505092915050565b600081359050613ab381614a62565b92915050565b600060208284031215613acf57613ace614823565b5b6000613add84828501613989565b91505092915050565b60008060408385031215613afd57613afc614823565b5b6000613b0b85828601613989565b9250506020613b1c85828601613989565b9150509250929050565b600080600060608486031215613b3f57613b3e614823565b5b6000613b4d86828701613989565b9350506020613b5e86828701613989565b9250506040613b6f86828701613aa4565b9150509250925092565b60008060008060808587031215613b9357613b92614823565b5b6000613ba187828801613989565b9450506020613bb287828801613989565b9350506040613bc387828801613aa4565b925050606085013567ffffffffffffffff811115613be457613be361481e565b5b613bf087828801613a48565b91505092959194509250565b60008060408385031215613c1357613c12614823565b5b6000613c2185828601613989565b9250506020613c32858286016139f4565b9150509250929050565b60008060408385031215613c5357613c52614823565b5b6000613c6185828601613989565b9250506020613c7285828601613aa4565b9150509250929050565b600080600060408486031215613c9557613c94614823565b5b600084013567ffffffffffffffff811115613cb357613cb261481e565b5b613cbf8682870161399e565b93509350506020613cd286828701613aa4565b9150509250925092565b600060208284031215613cf257613cf1614823565b5b6000613d00848285016139f4565b91505092915050565b600060208284031215613d1f57613d1e614823565b5b6000613d2d84828501613a09565b91505092915050565b600060208284031215613d4c57613d4b614823565b5b6000613d5a84828501613a1e565b91505092915050565b600060208284031215613d7957613d78614823565b5b6000613d8784828501613a33565b91505092915050565b600060208284031215613da657613da5614823565b5b600082013567ffffffffffffffff811115613dc457613dc361481e565b5b613dd084828501613a76565b91505092915050565b600060208284031215613def57613dee614823565b5b6000613dfd84828501613aa4565b91505092915050565b613e0f81614554565b82525050565b613e26613e2182614554565b6146c0565b82525050565b613e3581614566565b82525050565b613e4481614572565b82525050565b613e5b613e5682614572565b6146d2565b82525050565b6000613e6c826143f1565b613e768185614407565b9350613e868185602086016145e1565b613e8f81614828565b840191505092915050565b6000613ea5826143fc565b613eaf8185614423565b9350613ebf8185602086016145e1565b613ec881614828565b840191505092915050565b6000613ede826143fc565b613ee88185614434565b9350613ef88185602086016145e1565b80840191505092915050565b60008154613f1181614614565b613f1b8186614434565b94506001821660008114613f365760018114613f4757613f7a565b60ff19831686528186019350613f7a565b613f50856143dc565b60005b83811015613f7257815481890152600182019150602081019050613f53565b838801955050505b50505092915050565b6000613f90602683614423565b9150613f9b82614846565b604082019050919050565b6000613fb3602283614423565b9150613fbe82614895565b604082019050919050565b6000613fd6601683614423565b9150613fe1826148e4565b602082019050919050565b6000613ff9600583614434565b91506140048261490d565b600582019050919050565b600061401c602083614423565b915061402782614936565b602082019050919050565b600061403f601683614423565b915061404a8261495f565b602082019050919050565b6000614062600083614418565b915061406d82614988565b600082019050919050565b6000614085601283614423565b91506140908261498b565b602082019050919050565b60006140a8601583614423565b91506140b3826149b4565b602082019050919050565b60006140cb600d83614423565b91506140d6826149dd565b602082019050919050565b6140ea816145c8565b82525050565b60006140fc8284613e15565b60148201915081905092915050565b60006141178285613e4a565b6020820191506141278284613e4a565b6020820191508190509392505050565b60006141438285613f04565b915061414f8284613ed3565b915061415a82613fec565b91508190509392505050565b600061417182614055565b9150819050919050565b60006020820190506141906000830184613e06565b92915050565b60006080820190506141ab6000830187613e06565b6141b86020830186613e06565b6141c560408301856140e1565b81810360608301526141d78184613e61565b905095945050505050565b60006020820190506141f76000830184613e2c565b92915050565b60006020820190506142126000830184613e3b565b92915050565b600060208201905081810360008301526142328184613e9a565b905092915050565b6000602082019050818103600083015261425381613f83565b9050919050565b6000602082019050818103600083015261427381613fa6565b9050919050565b6000602082019050818103600083015261429381613fc9565b9050919050565b600060208201905081810360008301526142b38161400f565b9050919050565b600060208201905081810360008301526142d381614032565b9050919050565b600060208201905081810360008301526142f381614078565b9050919050565b600060208201905081810360008301526143138161409b565b9050919050565b60006020820190508181036000830152614333816140be565b9050919050565b600060208201905061434f60008301846140e1565b92915050565b600061435f614370565b905061436b8282614646565b919050565b6000604051905090565b600067ffffffffffffffff821115614395576143946147db565b5b61439e82614828565b9050602081019050919050565b600067ffffffffffffffff8211156143c6576143c56147db565b5b6143cf82614828565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061444a826145c8565b9150614455836145c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561448a5761448961471f565b5b828201905092915050565b60006144a0826145c8565b91506144ab836145c8565b9250826144bb576144ba61474e565b5b828204905092915050565b60006144d1826145c8565b91506144dc836145c8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145155761451461471f565b5b828202905092915050565b600061452b826145c8565b9150614536836145c8565b9250828210156145495761454861471f565b5b828203905092915050565b600061455f826145a8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145ff5780820151818401526020810190506145e4565b8381111561460e576000848401525b50505050565b6000600282049050600182168061462c57607f821691505b602082108114156146405761463f61477d565b5b50919050565b61464f82614828565b810181811067ffffffffffffffff8211171561466e5761466d6147db565b5b80604052505050565b6000614682826145c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146b5576146b461471f565b5b600182019050919050565b60006146cb826146dc565b9050919050565b6000819050919050565b60006146e782614839565b9050919050565b60006146f9826145c8565b9150614704836145c8565b9250826147145761471361474e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5065722077616c6c65742077686974656c697374206c696d697420726561636860008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b614a0f81614554565b8114614a1a57600080fd5b50565b614a2681614566565b8114614a3157600080fd5b50565b614a3d81614572565b8114614a4857600080fd5b50565b614a548161457c565b8114614a5f57600080fd5b50565b614a6b816145c8565b8114614a7657600080fd5b5056fea264697066735822122083613b7395f36a138ccd037954adea2938c347e7b58df2d5086e538971e4499a64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string):
Arg [1] : _initNotRevealedUri (string):
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
137:4643:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6211:372:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4689:79:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8821:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10324:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;318:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9887:371:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3448:280;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11181:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3109:130:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1599:661;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5034:1105:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;534:52:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3252:1062;;;:::i;:::-;;11422:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;444:42:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4021:713:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;359:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;653:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4578:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2783:177;;;;;;;;;;;;;:::i;:::-;;249:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8630:124:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;219:21:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6647:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1712:103:10;;;;;;;;;;;;;:::i;:::-;;718:30:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1061:87:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4450:120:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8990:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;987:571:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10600:279:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11678:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2270:361:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4322:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;396:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10950:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;495:30:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;593:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2971:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1970:201:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6211:372:3;6313:4;6365:25;6350:40;;;:11;:40;;;;:105;;;;6422:33;6407:48;;;:11;:48;;;;6350:105;:172;;;;6487:35;6472:50;;;:11;:50;;;;6350:172;:225;;;;6539:36;6563:11;6539:23;:36::i;:::-;6350:225;6330:245;;6211:372;;;:::o;4689:79:12:-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4754:6:12::1;4745;;:15;;;;;;;;;;;;;;;;;;4689:79:::0;:::o;8821:100:3:-;8875:13;8908:5;8901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8821:100;:::o;10324:204::-;10392:7;10417:16;10425:7;10417;:16::i;:::-;10412:64;;10442:34;;;;;;;;;;;;;;10412:64;10496:15;:24;10512:7;10496:24;;;;;;;;;;;;;;;;;;;;;10489:31;;10324:204;;;:::o;318:28:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9887:371:3:-;9960:13;9976:24;9992:7;9976:15;:24::i;:::-;9960:40;;10021:5;10015:11;;:2;:11;;;10011:48;;;10035:24;;;;;;;;;;;;;;10011:48;10092:5;10076:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;10102:37;10119:5;10126:12;:10;:12::i;:::-;10102:16;:37::i;:::-;10101:38;10076:63;10072:138;;;10163:35;;;;;;;;;;;;;;10072:138;10222:28;10231:2;10235:7;10244:5;10222:8;:28::i;:::-;9949:309;9887:371;;:::o;3448:280::-;3501:7;3693:12;;;;;;;;;;;3677:13;;;;;;;;;;:28;3670:35;;;;3448:280;:::o;11181:170::-;11315:28;11325:4;11331:2;11335:7;11315:9;:28::i;:::-;11181:170;;;:::o;3109:130:12:-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3213:18:12::1;3195:15;:36;;;;3109:130:::0;:::o;1599:661::-;1726:10;;1714:8;1698:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;1690:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1821:1;1809:8;1777:17;:29;1795:10;1777:29;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:45;;1769:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;1905:8;1889:13;;:24;;;;:::i;:::-;1876:9;:37;;1868:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1951:6;;;;;;;;;;;1950:7;1942:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:12;2034:10;2017:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;2007:39;;;;;;1992:54;;2060:47;2079:6;;2086:4;2091:15;;2060:18;:47::i;:::-;2052:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;2138:31;2148:10;2160:8;2138:9;:31::i;:::-;2239:8;2207:17;:29;2225:10;2207:29;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;2175:17;:29;2193:10;2175:29;;;;;;;;;;;;;;;:72;;;;1682:578;1599:661;;;:::o;5034:1105:3:-;5123:7;5156:16;5166:5;5156:9;:16::i;:::-;5147:5;:25;5143:61;;5181:23;;;;;;;;;;;;;;5143:61;5215:22;5240:13;;;;;;;;;;;5215:38;;;;5264:19;5294:25;5495:9;5490:557;5510:14;5506:1;:18;5490:557;;;5550:31;5584:11;:14;5596:1;5584:14;;;;;;;;;;;5550:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5621:9;:16;;;5617:73;;;5662:8;;;5617:73;5738:1;5712:28;;:9;:14;;;:28;;;5708:111;;5785:9;:14;;;5765:34;;5708:111;5862:5;5841:26;;:17;:26;;;5837:195;;;5911:5;5896:11;:20;5892:85;;;5952:1;5945:8;;;;;;;;;5892:85;5999:13;;;;;;;5837:195;5531:516;5490:557;5526:3;;;;;;;5490:557;;;;6123:8;;;5034:1105;;;;;:::o;534:52:12:-;;;;;;;;;;;;;;;;;:::o;3252:1062::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3351:21:12::1;3310;:38;3332:15;;3310:38;;;;;;;;;;;:62;;;;3384:10;3408:42;3400:56;;3506:3;3504:1;3464:21;:38;3486:15;;3464:38;;;;;;;;;;;;:41;;;;:::i;:::-;:45;;;;:::i;:::-;3400:114;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3383:131;;;3529:5;3521:14;;;::::0;::::1;;3545:10;3569:42;3561:56;;3667:3;3664:2;3625:21;:38;3647:15;;3625:38;;;;;;;;;;;;:41;;;;:::i;:::-;:45;;;;:::i;:::-;3561:114;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3544:131;;;3690:5;3682:14;;;::::0;::::1;;3706:10;3730:42;3722:56;;3827:3;3825:1;3786:21;:38;3808:15;;3786:38;;;;;;;;;;;;:40;;;;:::i;:::-;:44;;;;:::i;:::-;3722:113;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3705:130;;;3850:5;3842:14;;;::::0;::::1;;3866:10;3890:42;3882:56;;3987:3;3985:1;3946:21;:38;3968:15;;3946:38;;;;;;;;;;;;:40;;;;:::i;:::-;:44;;;;:::i;:::-;3882:113;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3865:130;;;4010:5;4002:14;;;::::0;::::1;;4026:10;4050:42;4042:56;;4147:3;4145:1;4106:21;:38;4128:15;;4106:38;;;;;;;;;;;;:40;;;;:::i;:::-;:44;;;;:::i;:::-;4042:113;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4025:130;;;4170:5;4162:14;;;::::0;::::1;;4186:10;4210:7;:5;:7::i;:::-;4202:21;;4231;4202:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4185:72;;;4272:5;4264:14;;;::::0;::::1;;4287:15;;:17;;;;;;;;;:::i;:::-;;;;;;3297:1017;;;;;;3252:1062::o:0;11422:185:3:-;11560:39;11577:4;11583:2;11587:7;11560:39;;;;;;;;;;;;:16;:39::i;:::-;11422:185;;;:::o;444:42:12:-;;;;:::o;4021:713:3:-;4088:7;4108:22;4133:13;;;;;;;;;;4108:38;;;;4157:19;4352:9;4347:328;4367:14;4363:1;:18;4347:328;;;4407:31;4441:11;:14;4453:1;4441:14;;;;;;;;;;;4407:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4479:9;:16;;;4474:186;;4539:5;4524:11;:20;4520:85;;;4580:1;4573:8;;;;;;;;4520:85;4627:13;;;;;;;4474:186;4388:287;4383:3;;;;;;;4347:328;;;;4703:23;;;;;;;;;;;;;;4021:713;;;;:::o;359:28:12:-;;;;;;;;;;;;;:::o;653:56::-;;;;;;;;;;;;;;;;;:::o;4578:103::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4663:11:12::1;4653:7;:21;;;;;;;;;;;;:::i;:::-;;4578:103:::0;:::o;2783:177::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2858:5:12::1;2848:15;;:8;;;;;;;;;;;:15;;;2845:108;;;2890:4;2879:8;;:15;;;;;;;;;;;;;;;;;;2845:108;;;2936:5;2925:8;;:16;;;;;;;;;;;;;;;;;;2845:108;2783:177::o:0;249:26::-;;;;;;;;;;;;;:::o;8630:124:3:-;8694:7;8721:20;8733:7;8721:11;:20::i;:::-;:25;;;8714:32;;8630:124;;;:::o;219:21:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6647:206:3:-;6711:7;6752:1;6735:19;;:5;:19;;;6731:60;;;6763:28;;;;;;;;;;;;;;6731:60;6817:12;:19;6830:5;6817:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6809:36;;6802:43;;6647:206;;;:::o;1712:103:10:-;1292:12;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1777:30:::1;1804:1;1777:18;:30::i;:::-;1712:103::o:0;718:30:12:-;;;;:::o;1061:87:10:-;1107:7;1134:6;;;;;;;;;;;1127:13;;1061:87;:::o;4450:120:12:-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4547:15:12::1;4530:14;:32;;;;4450:120:::0;:::o;8990:104:3:-;9046:13;9079:7;9072:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8990:104;:::o;987:571:12:-;1162:10;;1150:8;1134:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;1126:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1230:7;:5;:7::i;:::-;1216:21;;:10;:21;;;1212:208;;1263:6;;;;;;;;;;;1262:7;1254:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;1350:8;1333:14;;:25;;;;:::i;:::-;1319:9;:40;;1311:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1212:208;1430:31;1440:10;1452:8;1430:9;:31::i;:::-;1540:8;1507:18;:30;1526:10;1507:30;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;1473:18;:30;1492:10;1473:30;;;;;;;;;;;;;;;:75;;;;987:571;:::o;10600:279:3:-;10703:12;:10;:12::i;:::-;10691:24;;:8;:24;;;10687:54;;;10724:17;;;;;;;;;;;;;;10687:54;10799:8;10754:18;:32;10773:12;:10;:12::i;:::-;10754:32;;;;;;;;;;;;;;;:42;10787:8;10754:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10852:8;10823:48;;10838:12;:10;:12::i;:::-;10823:48;;;10862:8;10823:48;;;;;;:::i;:::-;;;;;;;;10600:279;;:::o;11678:342::-;11845:28;11855:4;11861:2;11865:7;11845:9;:28::i;:::-;11889:48;11912:4;11918:2;11922:7;11931:5;11889:22;:48::i;:::-;11884:129;;11961:40;;;;;;;;;;;;;;11884:129;11678:342;;;;:::o;2270:361:12:-;2343:13;2374:16;2382:7;2374;:16::i;:::-;2369:59;;2399:29;;;;;;;;;;;;;;2369:59;2452:5;2440:17;;:8;;;;;;;;;;;:17;;;2437:66;;;2477:14;2470:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2437:66;2553:1;2534:7;2528:21;;;;;:::i;:::-;;;:26;;:95;;;;;;;;;;;;;;;;;2581:7;2590:18;:7;:16;:18::i;:::-;2564:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2528:95;2521:102;;2270:361;;;;:::o;4322:116::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4416:14:12::1;4400:13;:30;;;;4322:116:::0;:::o;396:41::-;;;;:::o;10950:164:3:-;11047:4;11071:18;:25;11090:5;11071:25;;;;;;;;;;;;;;;:35;11097:8;11071:35;;;;;;;;;;;;;;;;;;;;;;;;;11064:42;;10950:164;;;;:::o;495:30:12:-;;;;:::o;593:53::-;;;;;;;;;;;;;;;;;:::o;2971:126::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3074:15:12::1;3057:14;:32;;;;;;;;;;;;:::i;:::-;;2971:126:::0;:::o;1970:201:10:-;1292:12;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2079:1:::1;2059:22;;:8;:22;;;;2051:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2135:28;2154:8;2135:18;:28::i;:::-;1970:201:::0;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;852:157:2:-;937:4;976:25;961:40;;;:11;:40;;;;954:47;;852:157;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;12275:144:3:-;12332:4;12366:13;;;;;;;;;;;12356:23;;:7;:23;:55;;;;;12384:11;:20;12396:7;12384:20;;;;;;;;;;;:27;;;;;;;;;;;;12383:28;12356:55;12349:62;;12275:144;;;:::o;19491:196::-;19633:2;19606:15;:24;19622:7;19606:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19671:7;19667:2;19651:28;;19660:5;19651:28;;;;;;;;;;;;19491:196;;;:::o;14992:2112::-;15107:35;15145:20;15157:7;15145:11;:20::i;:::-;15107:58;;15178:22;15220:13;:18;;;15204:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15255:50;15272:13;:18;;;15292:12;:10;:12::i;:::-;15255:16;:50::i;:::-;15204:101;:154;;;;15346:12;:10;:12::i;:::-;15322:36;;:20;15334:7;15322:11;:20::i;:::-;:36;;;15204:154;15178:181;;15377:17;15372:66;;15403:35;;;;;;;;;;;;;;15372:66;15475:4;15453:26;;:13;:18;;;:26;;;15449:67;;15488:28;;;;;;;;;;;;;;15449:67;15545:1;15531:16;;:2;:16;;;15527:52;;;15556:23;;;;;;;;;;;;;;15527:52;15592:43;15614:4;15620:2;15624:7;15633:1;15592:21;:43::i;:::-;15700:49;15717:1;15721:7;15730:13;:18;;;15700:8;:49::i;:::-;16075:1;16045:12;:18;16058:4;16045:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16119:1;16091:12;:16;16104:2;16091:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16165:2;16137:11;:20;16149:7;16137:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16227:15;16182:11;:20;16194:7;16182:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16495:19;16527:1;16517:7;:11;16495:33;;16588:1;16547:43;;:11;:24;16559:11;16547:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16543:445;;;16772:13;;;;;;;;;;16758:27;;:11;:27;16754:219;;;16842:13;:18;;;16810:11;:24;16822:11;16810:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16925:13;:28;;;16883:11;:24;16895:11;16883:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16754:219;16543:445;16020:979;17035:7;17031:2;17016:27;;17025:4;17016:27;;;;;;;;;;;;17054:42;17075:4;17081:2;17085:7;17094:1;17054:20;:42::i;:::-;15096:2008;;14992:2112;;;:::o;668:798:9:-;761:4;778:20;801:4;778:27;;823:9;818:525;842:5;;:12;;838:1;:16;818:525;;;876:20;899:5;;905:1;899:8;;;;;;;:::i;:::-;;;;;;;;876:31;;944:12;928;:28;924:408;;1098:12;1112;1081:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1071:55;;;;;;1056:70;;924:408;;;1288:12;1302;1271:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1261:55;;;;;;1246:70;;924:408;861:482;856:3;;;;;:::i;:::-;;;;818:525;;;;1454:4;1438:12;:20;1431:27;;;668:798;;;;;;:::o;12427:104:3:-;12496:27;12506:2;12510:8;12496:27;;;;;;;;;;;;:9;:27::i;:::-;12427:104;;:::o;7485:1083::-;7546:21;;:::i;:::-;7580:12;7595:7;7580:22;;7651:13;;;;;;;;;;7644:20;;:4;:20;7640:861;;;7685:31;7719:11;:17;7731:4;7719:17;;;;;;;;;;;7685:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7760:9;:16;;;7755:731;;7831:1;7805:28;;:9;:14;;;:28;;;7801:101;;7869:9;7862:16;;;;;;7801:101;8206:261;8213:4;8206:261;;;8246:6;;;;;;;;8291:11;:17;8303:4;8291:17;;;;;;;;;;;8279:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8365:1;8339:28;;:9;:14;;;:28;;;8335:109;;8407:9;8400:16;;;;;;8335:109;8206:261;;;7755:731;7666:835;7640:861;8529:31;;;;;;;;;;;;;;7485:1083;;;;:::o;2331:191:10:-;2405:16;2424:6;;;;;;;;;;;2405:25;;2450:8;2441:6;;:17;;;;;;;;;;;;;;;;;;2505:8;2474:40;;2495:8;2474:40;;;;;;;;;;;;2394:128;2331:191;:::o;20252:790:3:-;20407:4;20428:15;:2;:13;;;:15::i;:::-;20424:611;;;20480:2;20464:36;;;20501:12;:10;:12::i;:::-;20515:4;20521:7;20530:5;20464:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20460:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20727:1;20710:6;:13;:18;20706:259;;;20760:40;;;;;;;;;;;;;;20706:259;20915:6;20909:13;20900:6;20896:2;20892:15;20885:38;20460:520;20597:45;;;20587:55;;;:6;:55;;;;20580:62;;;;;20424:611;21019:4;21012:11;;20252:790;;;;;;;:::o;342:723:11:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;21690:159:3:-;;;;;:::o;22508:158::-;;;;;:::o;12894:163::-;13017:32;13023:2;13027:8;13037:5;13044:4;13017:5;:32::i;:::-;12894:163;;;:::o;13316:1422::-;13455:20;13478:13;;;;;;;;;;;13455:36;;;;13520:1;13506:16;;:2;:16;;;13502:48;;;13531:19;;;;;;;;;;;;;;13502:48;13577:1;13565:8;:13;13561:44;;;13587:18;;;;;;;;;;;;;;13561:44;13618:61;13648:1;13652:2;13656:12;13670:8;13618:21;:61::i;:::-;13992:8;13957:12;:16;13970:2;13957:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14056:8;14016:12;:16;14029:2;14016:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14115:2;14082:11;:25;14094:12;14082:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14182:15;14132:11;:25;14144:12;14132:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14215:20;14238:12;14215:35;;14272:9;14267:328;14287:8;14283:1;:12;14267:328;;;14351:12;14347:2;14326:38;;14343:1;14326:38;;;;;;;;;;;;14387:4;:68;;;;;14396:59;14427:1;14431:2;14435:12;14449:5;14396:22;:59::i;:::-;14395:60;14387:68;14383:164;;;14487:40;;;;;;;;;;;;;;14383:164;14565:14;;;;;;;14297:3;;;;;;;14267:328;;;;14635:12;14611:13;;:37;;;;;;;;;;;;;;;;;;13932:728;14670:60;14699:1;14703:2;14707:12;14721:8;14670:20;:60::i;:::-;13444:1294;13316:1422;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:704::-;6451:6;6459;6467;6516:2;6504:9;6495:7;6491:23;6487:32;6484:119;;;6522:79;;:::i;:::-;6484:119;6670:1;6659:9;6655:17;6642:31;6700:18;6692:6;6689:30;6686:117;;;6722:79;;:::i;:::-;6686:117;6835:80;6907:7;6898:6;6887:9;6883:22;6835:80;:::i;:::-;6817:98;;;;6613:312;6964:2;6990:53;7035:7;7026:6;7015:9;7011:22;6990:53;:::i;:::-;6980:63;;6935:118;6356:704;;;;;:::o;7066:323::-;7122:6;7171:2;7159:9;7150:7;7146:23;7142:32;7139:119;;;7177:79;;:::i;:::-;7139:119;7297:1;7322:50;7364:7;7355:6;7344:9;7340:22;7322:50;:::i;:::-;7312:60;;7268:114;7066:323;;;;:::o;7395:329::-;7454:6;7503:2;7491:9;7482:7;7478:23;7474:32;7471:119;;;7509:79;;:::i;:::-;7471:119;7629:1;7654:53;7699:7;7690:6;7679:9;7675:22;7654:53;:::i;:::-;7644:63;;7600:117;7395:329;;;;:::o;7730:327::-;7788:6;7837:2;7825:9;7816:7;7812:23;7808:32;7805:119;;;7843:79;;:::i;:::-;7805:119;7963:1;7988:52;8032:7;8023:6;8012:9;8008:22;7988:52;:::i;:::-;7978:62;;7934:116;7730:327;;;;:::o;8063:349::-;8132:6;8181:2;8169:9;8160:7;8156:23;8152:32;8149:119;;;8187:79;;:::i;:::-;8149:119;8307:1;8332:63;8387:7;8378:6;8367:9;8363:22;8332:63;:::i;:::-;8322:73;;8278:127;8063:349;;;;:::o;8418:509::-;8487:6;8536:2;8524:9;8515:7;8511:23;8507:32;8504:119;;;8542:79;;:::i;:::-;8504:119;8690:1;8679:9;8675:17;8662:31;8720:18;8712:6;8709:30;8706:117;;;8742:79;;:::i;:::-;8706:117;8847:63;8902:7;8893:6;8882:9;8878:22;8847:63;:::i;:::-;8837:73;;8633:287;8418:509;;;;:::o;8933:329::-;8992:6;9041:2;9029:9;9020:7;9016:23;9012:32;9009:119;;;9047:79;;:::i;:::-;9009:119;9167:1;9192:53;9237:7;9228:6;9217:9;9213:22;9192:53;:::i;:::-;9182:63;;9138:117;8933:329;;;;:::o;9268:118::-;9355:24;9373:5;9355:24;:::i;:::-;9350:3;9343:37;9268:118;;:::o;9392:157::-;9497:45;9517:24;9535:5;9517:24;:::i;:::-;9497:45;:::i;:::-;9492:3;9485:58;9392:157;;:::o;9555:109::-;9636:21;9651:5;9636:21;:::i;:::-;9631:3;9624:34;9555:109;;:::o;9670:118::-;9757:24;9775:5;9757:24;:::i;:::-;9752:3;9745:37;9670:118;;:::o;9794:157::-;9899:45;9919:24;9937:5;9919:24;:::i;:::-;9899:45;:::i;:::-;9894:3;9887:58;9794:157;;:::o;9957:360::-;10043:3;10071:38;10103:5;10071:38;:::i;:::-;10125:70;10188:6;10183:3;10125:70;:::i;:::-;10118:77;;10204:52;10249:6;10244:3;10237:4;10230:5;10226:16;10204:52;:::i;:::-;10281:29;10303:6;10281:29;:::i;:::-;10276:3;10272:39;10265:46;;10047:270;9957:360;;;;:::o;10323:364::-;10411:3;10439:39;10472:5;10439:39;:::i;:::-;10494:71;10558:6;10553:3;10494:71;:::i;:::-;10487:78;;10574:52;10619:6;10614:3;10607:4;10600:5;10596:16;10574:52;:::i;:::-;10651:29;10673:6;10651:29;:::i;:::-;10646:3;10642:39;10635:46;;10415:272;10323:364;;;;:::o;10693:377::-;10799:3;10827:39;10860:5;10827:39;:::i;:::-;10882:89;10964:6;10959:3;10882:89;:::i;:::-;10875:96;;10980:52;11025:6;11020:3;11013:4;11006:5;11002:16;10980:52;:::i;:::-;11057:6;11052:3;11048:16;11041:23;;10803:267;10693:377;;;;:::o;11100:845::-;11203:3;11240:5;11234:12;11269:36;11295:9;11269:36;:::i;:::-;11321:89;11403:6;11398:3;11321:89;:::i;:::-;11314:96;;11441:1;11430:9;11426:17;11457:1;11452:137;;;;11603:1;11598:341;;;;11419:520;;11452:137;11536:4;11532:9;11521;11517:25;11512:3;11505:38;11572:6;11567:3;11563:16;11556:23;;11452:137;;11598:341;11665:38;11697:5;11665:38;:::i;:::-;11725:1;11739:154;11753:6;11750:1;11747:13;11739:154;;;11827:7;11821:14;11817:1;11812:3;11808:11;11801:35;11877:1;11868:7;11864:15;11853:26;;11775:4;11772:1;11768:12;11763:17;;11739:154;;;11922:6;11917:3;11913:16;11906:23;;11605:334;;11419:520;;11207:738;;11100:845;;;;:::o;11951:366::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:::-;12465:3;12486:67;12550:2;12545:3;12486:67;:::i;:::-;12479:74;;12562:93;12651:3;12562:93;:::i;:::-;12680:2;12675:3;12671:12;12664:19;;12323:366;;;:::o;12695:::-;12837:3;12858:67;12922:2;12917:3;12858:67;:::i;:::-;12851:74;;12934:93;13023:3;12934:93;:::i;:::-;13052:2;13047:3;13043:12;13036:19;;12695:366;;;:::o;13067:400::-;13227:3;13248:84;13330:1;13325:3;13248:84;:::i;:::-;13241:91;;13341:93;13430:3;13341:93;:::i;:::-;13459:1;13454:3;13450:11;13443:18;;13067:400;;;:::o;13473:366::-;13615:3;13636:67;13700:2;13695:3;13636:67;:::i;:::-;13629:74;;13712:93;13801:3;13712:93;:::i;:::-;13830:2;13825:3;13821:12;13814:19;;13473:366;;;:::o;13845:::-;13987:3;14008:67;14072:2;14067:3;14008:67;:::i;:::-;14001:74;;14084:93;14173:3;14084:93;:::i;:::-;14202:2;14197:3;14193:12;14186:19;;13845:366;;;:::o;14217:398::-;14376:3;14397:83;14478:1;14473:3;14397:83;:::i;:::-;14390:90;;14489:93;14578:3;14489:93;:::i;:::-;14607:1;14602:3;14598:11;14591:18;;14217:398;;;:::o;14621:366::-;14763:3;14784:67;14848:2;14843:3;14784:67;:::i;:::-;14777:74;;14860:93;14949:3;14860:93;:::i;:::-;14978:2;14973:3;14969:12;14962:19;;14621:366;;;:::o;14993:::-;15135:3;15156:67;15220:2;15215:3;15156:67;:::i;:::-;15149:74;;15232:93;15321:3;15232:93;:::i;:::-;15350:2;15345:3;15341:12;15334:19;;14993:366;;;:::o;15365:::-;15507:3;15528:67;15592:2;15587:3;15528:67;:::i;:::-;15521:74;;15604:93;15693:3;15604:93;:::i;:::-;15722:2;15717:3;15713:12;15706:19;;15365:366;;;:::o;15737:118::-;15824:24;15842:5;15824:24;:::i;:::-;15819:3;15812:37;15737:118;;:::o;15861:256::-;15973:3;15988:75;16059:3;16050:6;15988:75;:::i;:::-;16088:2;16083:3;16079:12;16072:19;;16108:3;16101:10;;15861:256;;;;:::o;16123:397::-;16263:3;16278:75;16349:3;16340:6;16278:75;:::i;:::-;16378:2;16373:3;16369:12;16362:19;;16391:75;16462:3;16453:6;16391:75;:::i;:::-;16491:2;16486:3;16482:12;16475:19;;16511:3;16504:10;;16123:397;;;;;:::o;16526:695::-;16804:3;16826:92;16914:3;16905:6;16826:92;:::i;:::-;16819:99;;16935:95;17026:3;17017:6;16935:95;:::i;:::-;16928:102;;17047:148;17191:3;17047:148;:::i;:::-;17040:155;;17212:3;17205:10;;16526:695;;;;;:::o;17227:379::-;17411:3;17433:147;17576:3;17433:147;:::i;:::-;17426:154;;17597:3;17590:10;;17227:379;;;:::o;17612:222::-;17705:4;17743:2;17732:9;17728:18;17720:26;;17756:71;17824:1;17813:9;17809:17;17800:6;17756:71;:::i;:::-;17612:222;;;;:::o;17840:640::-;18035:4;18073:3;18062:9;18058:19;18050:27;;18087:71;18155:1;18144:9;18140:17;18131:6;18087:71;:::i;:::-;18168:72;18236:2;18225:9;18221:18;18212:6;18168:72;:::i;:::-;18250;18318:2;18307:9;18303:18;18294:6;18250:72;:::i;:::-;18369:9;18363:4;18359:20;18354:2;18343:9;18339:18;18332:48;18397:76;18468:4;18459:6;18397:76;:::i;:::-;18389:84;;17840:640;;;;;;;:::o;18486:210::-;18573:4;18611:2;18600:9;18596:18;18588:26;;18624:65;18686:1;18675:9;18671:17;18662:6;18624:65;:::i;:::-;18486:210;;;;:::o;18702:222::-;18795:4;18833:2;18822:9;18818:18;18810:26;;18846:71;18914:1;18903:9;18899:17;18890:6;18846:71;:::i;:::-;18702:222;;;;:::o;18930:313::-;19043:4;19081:2;19070:9;19066:18;19058:26;;19130:9;19124:4;19120:20;19116:1;19105:9;19101:17;19094:47;19158:78;19231:4;19222:6;19158:78;:::i;:::-;19150:86;;18930:313;;;;:::o;19249:419::-;19415:4;19453:2;19442:9;19438:18;19430:26;;19502:9;19496:4;19492:20;19488:1;19477:9;19473:17;19466:47;19530:131;19656:4;19530:131;:::i;:::-;19522:139;;19249:419;;;:::o;19674:::-;19840:4;19878:2;19867:9;19863:18;19855:26;;19927:9;19921:4;19917:20;19913:1;19902:9;19898:17;19891:47;19955:131;20081:4;19955:131;:::i;:::-;19947:139;;19674:419;;;:::o;20099:::-;20265:4;20303:2;20292:9;20288:18;20280:26;;20352:9;20346:4;20342:20;20338:1;20327:9;20323:17;20316:47;20380:131;20506:4;20380:131;:::i;:::-;20372:139;;20099:419;;;:::o;20524:::-;20690:4;20728:2;20717:9;20713:18;20705:26;;20777:9;20771:4;20767:20;20763:1;20752:9;20748:17;20741:47;20805:131;20931:4;20805:131;:::i;:::-;20797:139;;20524:419;;;:::o;20949:::-;21115:4;21153:2;21142:9;21138:18;21130:26;;21202:9;21196:4;21192:20;21188:1;21177:9;21173:17;21166:47;21230:131;21356:4;21230:131;:::i;:::-;21222:139;;20949:419;;;:::o;21374:::-;21540:4;21578:2;21567:9;21563:18;21555:26;;21627:9;21621:4;21617:20;21613:1;21602:9;21598:17;21591:47;21655:131;21781:4;21655:131;:::i;:::-;21647:139;;21374:419;;;:::o;21799:::-;21965:4;22003:2;21992:9;21988:18;21980:26;;22052:9;22046:4;22042:20;22038:1;22027:9;22023:17;22016:47;22080:131;22206:4;22080:131;:::i;:::-;22072:139;;21799:419;;;:::o;22224:::-;22390:4;22428:2;22417:9;22413:18;22405:26;;22477:9;22471:4;22467:20;22463:1;22452:9;22448:17;22441:47;22505:131;22631:4;22505:131;:::i;:::-;22497:139;;22224:419;;;:::o;22649:222::-;22742:4;22780:2;22769:9;22765:18;22757:26;;22793:71;22861:1;22850:9;22846:17;22837:6;22793:71;:::i;:::-;22649:222;;;;:::o;22877:129::-;22911:6;22938:20;;:::i;:::-;22928:30;;22967:33;22995:4;22987:6;22967:33;:::i;:::-;22877:129;;;:::o;23012:75::-;23045:6;23078:2;23072:9;23062:19;;23012:75;:::o;23093:307::-;23154:4;23244:18;23236:6;23233:30;23230:56;;;23266:18;;:::i;:::-;23230:56;23304:29;23326:6;23304:29;:::i;:::-;23296:37;;23388:4;23382;23378:15;23370:23;;23093:307;;;:::o;23406:308::-;23468:4;23558:18;23550:6;23547:30;23544:56;;;23580:18;;:::i;:::-;23544:56;23618:29;23640:6;23618:29;:::i;:::-;23610:37;;23702:4;23696;23692:15;23684:23;;23406:308;;;:::o;23720:141::-;23769:4;23792:3;23784:11;;23815:3;23812:1;23805:14;23849:4;23846:1;23836:18;23828:26;;23720:141;;;:::o;23867:98::-;23918:6;23952:5;23946:12;23936:22;;23867:98;;;:::o;23971:99::-;24023:6;24057:5;24051:12;24041:22;;23971:99;;;:::o;24076:168::-;24159:11;24193:6;24188:3;24181:19;24233:4;24228:3;24224:14;24209:29;;24076:168;;;;:::o;24250:147::-;24351:11;24388:3;24373:18;;24250:147;;;;:::o;24403:169::-;24487:11;24521:6;24516:3;24509:19;24561:4;24556:3;24552:14;24537:29;;24403:169;;;;:::o;24578:148::-;24680:11;24717:3;24702:18;;24578:148;;;;:::o;24732:305::-;24772:3;24791:20;24809:1;24791:20;:::i;:::-;24786:25;;24825:20;24843:1;24825:20;:::i;:::-;24820:25;;24979:1;24911:66;24907:74;24904:1;24901:81;24898:107;;;24985:18;;:::i;:::-;24898:107;25029:1;25026;25022:9;25015:16;;24732:305;;;;:::o;25043:185::-;25083:1;25100:20;25118:1;25100:20;:::i;:::-;25095:25;;25134:20;25152:1;25134:20;:::i;:::-;25129:25;;25173:1;25163:35;;25178:18;;:::i;:::-;25163:35;25220:1;25217;25213:9;25208:14;;25043:185;;;;:::o;25234:348::-;25274:7;25297:20;25315:1;25297:20;:::i;:::-;25292:25;;25331:20;25349:1;25331:20;:::i;:::-;25326:25;;25519:1;25451:66;25447:74;25444:1;25441:81;25436:1;25429:9;25422:17;25418:105;25415:131;;;25526:18;;:::i;:::-;25415:131;25574:1;25571;25567:9;25556:20;;25234:348;;;;:::o;25588:191::-;25628:4;25648:20;25666:1;25648:20;:::i;:::-;25643:25;;25682:20;25700:1;25682:20;:::i;:::-;25677:25;;25721:1;25718;25715:8;25712:34;;;25726:18;;:::i;:::-;25712:34;25771:1;25768;25764:9;25756:17;;25588:191;;;;:::o;25785:96::-;25822:7;25851:24;25869:5;25851:24;:::i;:::-;25840:35;;25785:96;;;:::o;25887:90::-;25921:7;25964:5;25957:13;25950:21;25939:32;;25887:90;;;:::o;25983:77::-;26020:7;26049:5;26038:16;;25983:77;;;:::o;26066:149::-;26102:7;26142:66;26135:5;26131:78;26120:89;;26066:149;;;:::o;26221:126::-;26258:7;26298:42;26291:5;26287:54;26276:65;;26221:126;;;:::o;26353:77::-;26390:7;26419:5;26408:16;;26353:77;;;:::o;26436:154::-;26520:6;26515:3;26510;26497:30;26582:1;26573:6;26568:3;26564:16;26557:27;26436:154;;;:::o;26596:307::-;26664:1;26674:113;26688:6;26685:1;26682:13;26674:113;;;26773:1;26768:3;26764:11;26758:18;26754:1;26749:3;26745:11;26738:39;26710:2;26707:1;26703:10;26698:15;;26674:113;;;26805:6;26802:1;26799:13;26796:101;;;26885:1;26876:6;26871:3;26867:16;26860:27;26796:101;26645:258;26596:307;;;:::o;26909:320::-;26953:6;26990:1;26984:4;26980:12;26970:22;;27037:1;27031:4;27027:12;27058:18;27048:81;;27114:4;27106:6;27102:17;27092:27;;27048:81;27176:2;27168:6;27165:14;27145:18;27142:38;27139:84;;;27195:18;;:::i;:::-;27139:84;26960:269;26909:320;;;:::o;27235:281::-;27318:27;27340:4;27318:27;:::i;:::-;27310:6;27306:40;27448:6;27436:10;27433:22;27412:18;27400:10;27397:34;27394:62;27391:88;;;27459:18;;:::i;:::-;27391:88;27499:10;27495:2;27488:22;27278:238;27235:281;;:::o;27522:233::-;27561:3;27584:24;27602:5;27584:24;:::i;:::-;27575:33;;27630:66;27623:5;27620:77;27617:103;;;27700:18;;:::i;:::-;27617:103;27747:1;27740:5;27736:13;27729:20;;27522:233;;;:::o;27761:100::-;27800:7;27829:26;27849:5;27829:26;:::i;:::-;27818:37;;27761:100;;;:::o;27867:79::-;27906:7;27935:5;27924:16;;27867:79;;;:::o;27952:94::-;27991:7;28020:20;28034:5;28020:20;:::i;:::-;28009:31;;27952:94;;;:::o;28052:176::-;28084:1;28101:20;28119:1;28101:20;:::i;:::-;28096:25;;28135:20;28153:1;28135:20;:::i;:::-;28130:25;;28174:1;28164:35;;28179:18;;:::i;:::-;28164:35;28220:1;28217;28213:9;28208:14;;28052:176;;;;:::o;28234:180::-;28282:77;28279:1;28272:88;28379:4;28376:1;28369:15;28403:4;28400:1;28393:15;28420:180;28468:77;28465:1;28458:88;28565:4;28562:1;28555:15;28589:4;28586:1;28579:15;28606:180;28654:77;28651:1;28644:88;28751:4;28748:1;28741:15;28775:4;28772:1;28765:15;28792:180;28840:77;28837:1;28830:88;28937:4;28934:1;28927:15;28961:4;28958:1;28951:15;28978:180;29026:77;29023:1;29016:88;29123:4;29120:1;29113:15;29147:4;29144:1;29137:15;29164:117;29273:1;29270;29263:12;29287:117;29396:1;29393;29386:12;29410:117;29519:1;29516;29509:12;29533:117;29642:1;29639;29632:12;29656:117;29765:1;29762;29755:12;29779:117;29888:1;29885;29878:12;29902:102;29943:6;29994:2;29990:7;29985:2;29978:5;29974:14;29970:28;29960:38;;29902:102;;;:::o;30010:94::-;30043:8;30091:5;30087:2;30083:14;30062:35;;30010:94;;;:::o;30110:225::-;30250:34;30246:1;30238:6;30234:14;30227:58;30319:8;30314:2;30306:6;30302:15;30295:33;30110:225;:::o;30341:221::-;30481:34;30477:1;30469:6;30465:14;30458:58;30550:4;30545:2;30537:6;30533:15;30526:29;30341:221;:::o;30568:172::-;30708:24;30704:1;30696:6;30692:14;30685:48;30568:172;:::o;30746:155::-;30886:7;30882:1;30874:6;30870:14;30863:31;30746:155;:::o;30907:182::-;31047:34;31043:1;31035:6;31031:14;31024:58;30907:182;:::o;31095:172::-;31235:24;31231:1;31223:6;31219:14;31212:48;31095:172;:::o;31273:114::-;;:::o;31393:168::-;31533:20;31529:1;31521:6;31517:14;31510:44;31393:168;:::o;31567:171::-;31707:23;31703:1;31695:6;31691:14;31684:47;31567:171;:::o;31744:163::-;31884:15;31880:1;31872:6;31868:14;31861:39;31744:163;:::o;31913:122::-;31986:24;32004:5;31986:24;:::i;:::-;31979:5;31976:35;31966:63;;32025:1;32022;32015:12;31966:63;31913:122;:::o;32041:116::-;32111:21;32126:5;32111:21;:::i;:::-;32104:5;32101:32;32091:60;;32147:1;32144;32137:12;32091:60;32041:116;:::o;32163:122::-;32236:24;32254:5;32236:24;:::i;:::-;32229:5;32226:35;32216:63;;32275:1;32272;32265:12;32216:63;32163:122;:::o;32291:120::-;32363:23;32380:5;32363:23;:::i;:::-;32356:5;32353:34;32343:62;;32401:1;32398;32391:12;32343:62;32291:120;:::o;32417:122::-;32490:24;32508:5;32490:24;:::i;:::-;32483:5;32480:35;32470:63;;32529:1;32526;32519:12;32470:63;32417:122;:::o
Swarm Source
ipfs://83613b7395f36a138ccd037954adea2938c347e7b58df2d5086e538971e4499a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.