ERC-721
Overview
Max Total Supply
821 CowFrankFrankMoo
Holders
77
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CowFrankFrankMooLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CowFrankFrankMoo
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-07 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; // CowFrankFrankMoo /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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; } // 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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // 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; } } // 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); } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } pragma solidity ^0.8.0; contract CowFrankFrankMoo is ERC721A, Ownable { uint256 public price = 100000000000000000; uint256 public supply = 2000; uint256 public max_per_txn = 10; string public baseURI = ""; constructor() ERC721A("CowFrankFrankMoo", "CowFrankFrankMoo", max_per_txn, supply) {} function mint(uint256 numTokens) public payable { require(numTokens > 0 && numTokens <= max_per_txn); require(totalSupply() + numTokens <= supply); require(msg.value >= price * numTokens); _safeMint(msg.sender, numTokens); } function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } function setPrice(uint256 newPrice) public onlyOwner { price = newPrice; } function setMaxMints(uint256 newMax) public onlyOwner { max_per_txn = newMax; } function setSupply(uint256 newSupply) public onlyOwner { supply = newSupply; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() public onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":[],"name":"max_per_txn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c060405260008055600060075567016345785d8a00006009556107d0600a55600a600b5560405180602001604052806000815250600c90805190602001906200004b92919062000292565b503480156200005957600080fd5b506040518060400160405280601081526020017f436f774672616e6b4672616e6b4d6f6f000000000000000000000000000000008152506040518060400160405280601081526020017f436f774672616e6b4672616e6b4d6f6f00000000000000000000000000000000815250600b54600a546000811162000112576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010990620003b2565b60405180910390fd5b6000821162000158576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014f9062000390565b60405180910390fd5b83600190805190602001906200017092919062000292565b5082600290805190602001906200018992919062000292565b508160a08181525050806080818152505050505050620001be620001b2620001c460201b60201c565b620001cc60201b60201c565b620004e8565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a090620003e5565b90600052602060002090601f016020900481019282620002c4576000855562000310565b82601f10620002df57805160ff191683800117855562000310565b8280016001018555821562000310579182015b828111156200030f578251825591602001919060010190620002f2565b5b5090506200031f919062000323565b5090565b5b808211156200033e57600081600090555060010162000324565b5090565b600062000351602783620003d4565b91506200035e826200044a565b604082019050919050565b600062000378602e83620003d4565b9150620003858262000499565b604082019050919050565b60006020820190508181036000830152620003ab8162000342565b9050919050565b60006020820190508181036000830152620003cd8162000369565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003fe57607f821691505b602082108114156200041557620004146200041b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05161414b6200051960003960008181611ea301528181611ecc015261258d01526000505061414b6000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a0712d6811610095578063d685b64511610064578063d685b64514610665578063d7224ba014610690578063e985e9c5146106bb578063f2fde38b146106f8576101cd565b8063a0712d68146105ba578063a22cb465146105d6578063b88d4fde146105ff578063c87b56dd14610628576101cd565b80638da5cb5b116100d15780638da5cb5b1461051057806391b7f5ed1461053b57806395d89b4114610564578063a035b1fe1461058f576101cd565b806370a0823114610493578063715018a6146104d057806379c9cb7b146104e7576101cd565b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce7146103c557806355f804b3146104025780636352211e1461042b5780636c0360eb14610468576101cd565b80632f745c591461031f5780633b4c4b251461035c5780633ccfd60b1461038557806342842e0e1461039c576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a257806318160ddd146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d2578063047fc9aa1461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612da7565b610721565b60405161020691906132bc565b60405180910390f35b34801561021b57600080fd5b5061022461086b565b6040516102319190613579565b60405180910390f35b34801561024657600080fd5b5061024f610871565b60405161025c91906132d7565b60405180910390f35b34801561027157600080fd5b5061028c60048036038101906102879190612e4a565b610903565b6040516102999190613255565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612d67565b610988565b005b3480156102d757600080fd5b506102e0610aa1565b6040516102ed9190613579565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612c51565b610aaa565b005b34801561032b57600080fd5b5061034660048036038101906103419190612d67565b610aba565b6040516103539190613579565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612e4a565b610cb8565b005b34801561039157600080fd5b5061039a610d3e565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612c51565b610dfa565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612e4a565b610e1a565b6040516103f99190613579565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612e01565b610e6d565b005b34801561043757600080fd5b50610452600480360381019061044d9190612e4a565b610f03565b60405161045f9190613255565b60405180910390f35b34801561047457600080fd5b5061047d610f19565b60405161048a91906132d7565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612be4565b610fa7565b6040516104c79190613579565b60405180910390f35b3480156104dc57600080fd5b506104e5611090565b005b3480156104f357600080fd5b5061050e60048036038101906105099190612e4a565b611118565b005b34801561051c57600080fd5b5061052561119e565b6040516105329190613255565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190612e4a565b6111c8565b005b34801561057057600080fd5b5061057961124e565b60405161058691906132d7565b60405180910390f35b34801561059b57600080fd5b506105a46112e0565b6040516105b19190613579565b60405180910390f35b6105d460048036038101906105cf9190612e4a565b6112e6565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612d27565b611349565b005b34801561060b57600080fd5b5061062660048036038101906106219190612ca4565b6114ca565b005b34801561063457600080fd5b5061064f600480360381019061064a9190612e4a565b611526565b60405161065c91906132d7565b60405180910390f35b34801561067157600080fd5b5061067a6115cd565b6040516106879190613579565b60405180910390f35b34801561069c57600080fd5b506106a56115d3565b6040516106b29190613579565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190612c11565b6115d9565b6040516106ef91906132bc565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612be4565b61166d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610864575061086382611765565b5b9050919050565b600a5481565b606060018054610880906138e9565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac906138e9565b80156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b600061090e826117cf565b61094d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094490613539565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099382610f03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fb90613479565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a236117dc565b73ffffffffffffffffffffffffffffffffffffffff161480610a525750610a5181610a4c6117dc565b6115d9565b5b610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890613399565b60405180910390fd5b610a9c8383836117e4565b505050565b60008054905090565b610ab5838383611896565b505050565b6000610ac583610fa7565b8210610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd906132f9565b60405180910390fd5b6000610b10610aa1565b905060008060005b83811015610c76576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c0a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c625786841415610c53578195505050505050610cb2565b8380610c5e9061394c565b9450505b508080610c6e9061394c565b915050610b18565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca9906134f9565b60405180910390fd5b92915050565b610cc06117dc565b73ffffffffffffffffffffffffffffffffffffffff16610cde61119e565b73ffffffffffffffffffffffffffffffffffffffff1614610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b906133f9565b60405180910390fd5b80600a8190555050565b610d466117dc565b73ffffffffffffffffffffffffffffffffffffffff16610d6461119e565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db1906133f9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610df857600080fd5b565b610e15838383604051806020016040528060008152506114ca565b505050565b6000610e24610aa1565b8210610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90613359565b60405180910390fd5b819050919050565b610e756117dc565b73ffffffffffffffffffffffffffffffffffffffff16610e9361119e565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906133f9565b60405180910390fd5b80600c9080519060200190610eff9291906129be565b5050565b6000610f0e82611e4f565b600001519050919050565b600c8054610f26906138e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f52906138e9565b8015610f9f5780601f10610f7457610100808354040283529160200191610f9f565b820191906000526020600020905b815481529060010190602001808311610f8257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f906133b9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110986117dc565b73ffffffffffffffffffffffffffffffffffffffff166110b661119e565b73ffffffffffffffffffffffffffffffffffffffff161461110c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611103906133f9565b60405180910390fd5b6111166000612052565b565b6111206117dc565b73ffffffffffffffffffffffffffffffffffffffff1661113e61119e565b73ffffffffffffffffffffffffffffffffffffffff1614611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b906133f9565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111d06117dc565b73ffffffffffffffffffffffffffffffffffffffff166111ee61119e565b73ffffffffffffffffffffffffffffffffffffffff1614611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b906133f9565b60405180910390fd5b8060098190555050565b60606002805461125d906138e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611289906138e9565b80156112d65780601f106112ab576101008083540402835291602001916112d6565b820191906000526020600020905b8154815290600101906020018083116112b957829003601f168201915b5050505050905090565b60095481565b6000811180156112f85750600b548111155b61130157600080fd5b600a548161130d610aa1565b61131791906136a4565b111561132257600080fd5b80600954611330919061372b565b34101561133c57600080fd5b6113463382612118565b50565b6113516117dc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690613439565b60405180910390fd5b80600660006113cc6117dc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114796117dc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114be91906132bc565b60405180910390a35050565b6114d5848484611896565b6114e184848484612136565b611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790613499565b60405180910390fd5b50505050565b6060611531826117cf565b611570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156790613419565b60405180910390fd5b600061157a6122cd565b9050600081511161159a57604051806020016040528060008152506115c5565b806115a48461235f565b6040516020016115b5929190613226565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116756117dc565b73ffffffffffffffffffffffffffffffffffffffff1661169361119e565b73ffffffffffffffffffffffffffffffffffffffff16146116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e0906133f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090613319565b60405180910390fd5b61176281612052565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006118a182611e4f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118c86117dc565b73ffffffffffffffffffffffffffffffffffffffff16148061192457506118ed6117dc565b73ffffffffffffffffffffffffffffffffffffffff1661190c84610903565b73ffffffffffffffffffffffffffffffffffffffff16145b80611940575061193f826000015161193a6117dc565b6115d9565b5b905080611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990613459565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb906133d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613379565b60405180910390fd5b611a7185858560016124c0565b611a8160008484600001516117e4565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611aef9190613785565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b93919061365e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c9991906136a4565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ddf57611d0f816117cf565b15611dde576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e4786868660016124c6565b505050505050565b611e57612a44565b611e60826117cf565b611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690613339565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611f035760017f000000000000000000000000000000000000000000000000000000000000000084611ef691906137b9565b611f0091906136a4565b90505b60008390505b818110612011576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ffd5780935050505061204d565b508080612009906138bf565b915050611f09565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490613519565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121328282604051806020016040528060008152506124cc565b5050565b60006121578473ffffffffffffffffffffffffffffffffffffffff166129ab565b156122c0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121806117dc565b8786866040518563ffffffff1660e01b81526004016121a29493929190613270565b602060405180830381600087803b1580156121bc57600080fd5b505af19250505080156121ed57506040513d601f19601f820116820180604052508101906121ea9190612dd4565b60015b612270573d806000811461221d576040519150601f19603f3d011682016040523d82523d6000602084013e612222565b606091505b50600081511415612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90613499565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122c5565b600190505b949350505050565b6060600c80546122dc906138e9565b80601f0160208091040260200160405190810160405280929190818152602001828054612308906138e9565b80156123555780601f1061232a57610100808354040283529160200191612355565b820191906000526020600020905b81548152906001019060200180831161233857829003601f168201915b5050505050905090565b606060008214156123a7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124bb565b600082905060005b600082146123d95780806123c29061394c565b915050600a826123d291906136fa565b91506123af565b60008167ffffffffffffffff8111156123f5576123f4613a82565b5b6040519080825280601f01601f1916602001820160405280156124275781602001600182028036833780820191505090505b5090505b600085146124b45760018261244091906137b9565b9150600a8561244f9190613995565b603061245b91906136a4565b60f81b81838151811061247157612470613a53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ad91906136fa565b945061242b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612539906134d9565b60405180910390fd5b61254b816117cf565b1561258b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612582906134b9565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156125ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e590613559565b60405180910390fd5b6125fb60008583866124c0565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516126f8919061365e565b6fffffffffffffffffffffffffffffffff16815260200185836020015161271f919061365e565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561298e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461292e6000888488612136565b61296d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296490613499565b60405180910390fd5b81806129789061394c565b92505080806129869061394c565b9150506128bd565b50806000819055506129a360008785886124c6565b505050505050565b600080823b905060008111915050919050565b8280546129ca906138e9565b90600052602060002090601f0160209004810192826129ec5760008555612a33565b82601f10612a0557805160ff1916838001178555612a33565b82800160010185558215612a33579182015b82811115612a32578251825591602001919060010190612a17565b5b509050612a409190612a7e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a97576000816000905550600101612a7f565b5090565b6000612aae612aa9846135b9565b613594565b905082815260208101848484011115612aca57612ac9613ab6565b5b612ad584828561387d565b509392505050565b6000612af0612aeb846135ea565b613594565b905082815260208101848484011115612b0c57612b0b613ab6565b5b612b1784828561387d565b509392505050565b600081359050612b2e816140b9565b92915050565b600081359050612b43816140d0565b92915050565b600081359050612b58816140e7565b92915050565b600081519050612b6d816140e7565b92915050565b600082601f830112612b8857612b87613ab1565b5b8135612b98848260208601612a9b565b91505092915050565b600082601f830112612bb657612bb5613ab1565b5b8135612bc6848260208601612add565b91505092915050565b600081359050612bde816140fe565b92915050565b600060208284031215612bfa57612bf9613ac0565b5b6000612c0884828501612b1f565b91505092915050565b60008060408385031215612c2857612c27613ac0565b5b6000612c3685828601612b1f565b9250506020612c4785828601612b1f565b9150509250929050565b600080600060608486031215612c6a57612c69613ac0565b5b6000612c7886828701612b1f565b9350506020612c8986828701612b1f565b9250506040612c9a86828701612bcf565b9150509250925092565b60008060008060808587031215612cbe57612cbd613ac0565b5b6000612ccc87828801612b1f565b9450506020612cdd87828801612b1f565b9350506040612cee87828801612bcf565b925050606085013567ffffffffffffffff811115612d0f57612d0e613abb565b5b612d1b87828801612b73565b91505092959194509250565b60008060408385031215612d3e57612d3d613ac0565b5b6000612d4c85828601612b1f565b9250506020612d5d85828601612b34565b9150509250929050565b60008060408385031215612d7e57612d7d613ac0565b5b6000612d8c85828601612b1f565b9250506020612d9d85828601612bcf565b9150509250929050565b600060208284031215612dbd57612dbc613ac0565b5b6000612dcb84828501612b49565b91505092915050565b600060208284031215612dea57612de9613ac0565b5b6000612df884828501612b5e565b91505092915050565b600060208284031215612e1757612e16613ac0565b5b600082013567ffffffffffffffff811115612e3557612e34613abb565b5b612e4184828501612ba1565b91505092915050565b600060208284031215612e6057612e5f613ac0565b5b6000612e6e84828501612bcf565b91505092915050565b612e80816137ed565b82525050565b612e8f816137ff565b82525050565b6000612ea08261361b565b612eaa8185613631565b9350612eba81856020860161388c565b612ec381613ac5565b840191505092915050565b6000612ed982613626565b612ee38185613642565b9350612ef381856020860161388c565b612efc81613ac5565b840191505092915050565b6000612f1282613626565b612f1c8185613653565b9350612f2c81856020860161388c565b80840191505092915050565b6000612f45602283613642565b9150612f5082613ad6565b604082019050919050565b6000612f68602683613642565b9150612f7382613b25565b604082019050919050565b6000612f8b602a83613642565b9150612f9682613b74565b604082019050919050565b6000612fae602383613642565b9150612fb982613bc3565b604082019050919050565b6000612fd1602583613642565b9150612fdc82613c12565b604082019050919050565b6000612ff4603983613642565b9150612fff82613c61565b604082019050919050565b6000613017602b83613642565b915061302282613cb0565b604082019050919050565b600061303a602683613642565b915061304582613cff565b604082019050919050565b600061305d600583613653565b915061306882613d4e565b600582019050919050565b6000613080602083613642565b915061308b82613d77565b602082019050919050565b60006130a3602f83613642565b91506130ae82613da0565b604082019050919050565b60006130c6601a83613642565b91506130d182613def565b602082019050919050565b60006130e9603283613642565b91506130f482613e18565b604082019050919050565b600061310c602283613642565b915061311782613e67565b604082019050919050565b600061312f603383613642565b915061313a82613eb6565b604082019050919050565b6000613152601d83613642565b915061315d82613f05565b602082019050919050565b6000613175602183613642565b915061318082613f2e565b604082019050919050565b6000613198602e83613642565b91506131a382613f7d565b604082019050919050565b60006131bb602f83613642565b91506131c682613fcc565b604082019050919050565b60006131de602d83613642565b91506131e98261401b565b604082019050919050565b6000613201602283613642565b915061320c8261406a565b604082019050919050565b61322081613873565b82525050565b60006132328285612f07565b915061323e8284612f07565b915061324982613050565b91508190509392505050565b600060208201905061326a6000830184612e77565b92915050565b60006080820190506132856000830187612e77565b6132926020830186612e77565b61329f6040830185613217565b81810360608301526132b18184612e95565b905095945050505050565b60006020820190506132d16000830184612e86565b92915050565b600060208201905081810360008301526132f18184612ece565b905092915050565b6000602082019050818103600083015261331281612f38565b9050919050565b6000602082019050818103600083015261333281612f5b565b9050919050565b6000602082019050818103600083015261335281612f7e565b9050919050565b6000602082019050818103600083015261337281612fa1565b9050919050565b6000602082019050818103600083015261339281612fc4565b9050919050565b600060208201905081810360008301526133b281612fe7565b9050919050565b600060208201905081810360008301526133d28161300a565b9050919050565b600060208201905081810360008301526133f28161302d565b9050919050565b6000602082019050818103600083015261341281613073565b9050919050565b6000602082019050818103600083015261343281613096565b9050919050565b60006020820190508181036000830152613452816130b9565b9050919050565b60006020820190508181036000830152613472816130dc565b9050919050565b60006020820190508181036000830152613492816130ff565b9050919050565b600060208201905081810360008301526134b281613122565b9050919050565b600060208201905081810360008301526134d281613145565b9050919050565b600060208201905081810360008301526134f281613168565b9050919050565b600060208201905081810360008301526135128161318b565b9050919050565b60006020820190508181036000830152613532816131ae565b9050919050565b60006020820190508181036000830152613552816131d1565b9050919050565b60006020820190508181036000830152613572816131f4565b9050919050565b600060208201905061358e6000830184613217565b92915050565b600061359e6135af565b90506135aa828261391b565b919050565b6000604051905090565b600067ffffffffffffffff8211156135d4576135d3613a82565b5b6135dd82613ac5565b9050602081019050919050565b600067ffffffffffffffff82111561360557613604613a82565b5b61360e82613ac5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061366982613837565b915061367483613837565b9250826fffffffffffffffffffffffffffffffff03821115613699576136986139c6565b5b828201905092915050565b60006136af82613873565b91506136ba83613873565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136ef576136ee6139c6565b5b828201905092915050565b600061370582613873565b915061371083613873565b9250826137205761371f6139f5565b5b828204905092915050565b600061373682613873565b915061374183613873565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561377a576137796139c6565b5b828202905092915050565b600061379082613837565b915061379b83613837565b9250828210156137ae576137ad6139c6565b5b828203905092915050565b60006137c482613873565b91506137cf83613873565b9250828210156137e2576137e16139c6565b5b828203905092915050565b60006137f882613853565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138aa57808201518184015260208101905061388f565b838111156138b9576000848401525b50505050565b60006138ca82613873565b915060008214156138de576138dd6139c6565b5b600182039050919050565b6000600282049050600182168061390157607f821691505b6020821081141561391557613914613a24565b5b50919050565b61392482613ac5565b810181811067ffffffffffffffff8211171561394357613942613a82565b5b80604052505050565b600061395782613873565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561398a576139896139c6565b5b600182019050919050565b60006139a082613873565b91506139ab83613873565b9250826139bb576139ba6139f5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6140c2816137ed565b81146140cd57600080fd5b50565b6140d9816137ff565b81146140e457600080fd5b50565b6140f08161380b565b81146140fb57600080fd5b50565b61410781613873565b811461411257600080fd5b5056fea2646970667358221220c9c9ea350a6d04d413576a2376c58a34880f7e6cf54557921a96c36a1b3d93ad64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a0712d6811610095578063d685b64511610064578063d685b64514610665578063d7224ba014610690578063e985e9c5146106bb578063f2fde38b146106f8576101cd565b8063a0712d68146105ba578063a22cb465146105d6578063b88d4fde146105ff578063c87b56dd14610628576101cd565b80638da5cb5b116100d15780638da5cb5b1461051057806391b7f5ed1461053b57806395d89b4114610564578063a035b1fe1461058f576101cd565b806370a0823114610493578063715018a6146104d057806379c9cb7b146104e7576101cd565b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce7146103c557806355f804b3146104025780636352211e1461042b5780636c0360eb14610468576101cd565b80632f745c591461031f5780633b4c4b251461035c5780633ccfd60b1461038557806342842e0e1461039c576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a257806318160ddd146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d2578063047fc9aa1461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612da7565b610721565b60405161020691906132bc565b60405180910390f35b34801561021b57600080fd5b5061022461086b565b6040516102319190613579565b60405180910390f35b34801561024657600080fd5b5061024f610871565b60405161025c91906132d7565b60405180910390f35b34801561027157600080fd5b5061028c60048036038101906102879190612e4a565b610903565b6040516102999190613255565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612d67565b610988565b005b3480156102d757600080fd5b506102e0610aa1565b6040516102ed9190613579565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612c51565b610aaa565b005b34801561032b57600080fd5b5061034660048036038101906103419190612d67565b610aba565b6040516103539190613579565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612e4a565b610cb8565b005b34801561039157600080fd5b5061039a610d3e565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612c51565b610dfa565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612e4a565b610e1a565b6040516103f99190613579565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612e01565b610e6d565b005b34801561043757600080fd5b50610452600480360381019061044d9190612e4a565b610f03565b60405161045f9190613255565b60405180910390f35b34801561047457600080fd5b5061047d610f19565b60405161048a91906132d7565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612be4565b610fa7565b6040516104c79190613579565b60405180910390f35b3480156104dc57600080fd5b506104e5611090565b005b3480156104f357600080fd5b5061050e60048036038101906105099190612e4a565b611118565b005b34801561051c57600080fd5b5061052561119e565b6040516105329190613255565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190612e4a565b6111c8565b005b34801561057057600080fd5b5061057961124e565b60405161058691906132d7565b60405180910390f35b34801561059b57600080fd5b506105a46112e0565b6040516105b19190613579565b60405180910390f35b6105d460048036038101906105cf9190612e4a565b6112e6565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612d27565b611349565b005b34801561060b57600080fd5b5061062660048036038101906106219190612ca4565b6114ca565b005b34801561063457600080fd5b5061064f600480360381019061064a9190612e4a565b611526565b60405161065c91906132d7565b60405180910390f35b34801561067157600080fd5b5061067a6115cd565b6040516106879190613579565b60405180910390f35b34801561069c57600080fd5b506106a56115d3565b6040516106b29190613579565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190612c11565b6115d9565b6040516106ef91906132bc565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612be4565b61166d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610864575061086382611765565b5b9050919050565b600a5481565b606060018054610880906138e9565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac906138e9565b80156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b600061090e826117cf565b61094d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094490613539565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099382610f03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fb90613479565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a236117dc565b73ffffffffffffffffffffffffffffffffffffffff161480610a525750610a5181610a4c6117dc565b6115d9565b5b610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890613399565b60405180910390fd5b610a9c8383836117e4565b505050565b60008054905090565b610ab5838383611896565b505050565b6000610ac583610fa7565b8210610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd906132f9565b60405180910390fd5b6000610b10610aa1565b905060008060005b83811015610c76576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c0a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c625786841415610c53578195505050505050610cb2565b8380610c5e9061394c565b9450505b508080610c6e9061394c565b915050610b18565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca9906134f9565b60405180910390fd5b92915050565b610cc06117dc565b73ffffffffffffffffffffffffffffffffffffffff16610cde61119e565b73ffffffffffffffffffffffffffffffffffffffff1614610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b906133f9565b60405180910390fd5b80600a8190555050565b610d466117dc565b73ffffffffffffffffffffffffffffffffffffffff16610d6461119e565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db1906133f9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610df857600080fd5b565b610e15838383604051806020016040528060008152506114ca565b505050565b6000610e24610aa1565b8210610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90613359565b60405180910390fd5b819050919050565b610e756117dc565b73ffffffffffffffffffffffffffffffffffffffff16610e9361119e565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906133f9565b60405180910390fd5b80600c9080519060200190610eff9291906129be565b5050565b6000610f0e82611e4f565b600001519050919050565b600c8054610f26906138e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f52906138e9565b8015610f9f5780601f10610f7457610100808354040283529160200191610f9f565b820191906000526020600020905b815481529060010190602001808311610f8257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f906133b9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110986117dc565b73ffffffffffffffffffffffffffffffffffffffff166110b661119e565b73ffffffffffffffffffffffffffffffffffffffff161461110c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611103906133f9565b60405180910390fd5b6111166000612052565b565b6111206117dc565b73ffffffffffffffffffffffffffffffffffffffff1661113e61119e565b73ffffffffffffffffffffffffffffffffffffffff1614611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b906133f9565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111d06117dc565b73ffffffffffffffffffffffffffffffffffffffff166111ee61119e565b73ffffffffffffffffffffffffffffffffffffffff1614611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b906133f9565b60405180910390fd5b8060098190555050565b60606002805461125d906138e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611289906138e9565b80156112d65780601f106112ab576101008083540402835291602001916112d6565b820191906000526020600020905b8154815290600101906020018083116112b957829003601f168201915b5050505050905090565b60095481565b6000811180156112f85750600b548111155b61130157600080fd5b600a548161130d610aa1565b61131791906136a4565b111561132257600080fd5b80600954611330919061372b565b34101561133c57600080fd5b6113463382612118565b50565b6113516117dc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690613439565b60405180910390fd5b80600660006113cc6117dc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114796117dc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114be91906132bc565b60405180910390a35050565b6114d5848484611896565b6114e184848484612136565b611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790613499565b60405180910390fd5b50505050565b6060611531826117cf565b611570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156790613419565b60405180910390fd5b600061157a6122cd565b9050600081511161159a57604051806020016040528060008152506115c5565b806115a48461235f565b6040516020016115b5929190613226565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116756117dc565b73ffffffffffffffffffffffffffffffffffffffff1661169361119e565b73ffffffffffffffffffffffffffffffffffffffff16146116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e0906133f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090613319565b60405180910390fd5b61176281612052565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006118a182611e4f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118c86117dc565b73ffffffffffffffffffffffffffffffffffffffff16148061192457506118ed6117dc565b73ffffffffffffffffffffffffffffffffffffffff1661190c84610903565b73ffffffffffffffffffffffffffffffffffffffff16145b80611940575061193f826000015161193a6117dc565b6115d9565b5b905080611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990613459565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb906133d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613379565b60405180910390fd5b611a7185858560016124c0565b611a8160008484600001516117e4565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611aef9190613785565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b93919061365e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c9991906136a4565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ddf57611d0f816117cf565b15611dde576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e4786868660016124c6565b505050505050565b611e57612a44565b611e60826117cf565b611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690613339565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8310611f035760017f000000000000000000000000000000000000000000000000000000000000000a84611ef691906137b9565b611f0091906136a4565b90505b60008390505b818110612011576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ffd5780935050505061204d565b508080612009906138bf565b915050611f09565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490613519565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121328282604051806020016040528060008152506124cc565b5050565b60006121578473ffffffffffffffffffffffffffffffffffffffff166129ab565b156122c0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121806117dc565b8786866040518563ffffffff1660e01b81526004016121a29493929190613270565b602060405180830381600087803b1580156121bc57600080fd5b505af19250505080156121ed57506040513d601f19601f820116820180604052508101906121ea9190612dd4565b60015b612270573d806000811461221d576040519150601f19603f3d011682016040523d82523d6000602084013e612222565b606091505b50600081511415612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90613499565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122c5565b600190505b949350505050565b6060600c80546122dc906138e9565b80601f0160208091040260200160405190810160405280929190818152602001828054612308906138e9565b80156123555780601f1061232a57610100808354040283529160200191612355565b820191906000526020600020905b81548152906001019060200180831161233857829003601f168201915b5050505050905090565b606060008214156123a7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124bb565b600082905060005b600082146123d95780806123c29061394c565b915050600a826123d291906136fa565b91506123af565b60008167ffffffffffffffff8111156123f5576123f4613a82565b5b6040519080825280601f01601f1916602001820160405280156124275781602001600182028036833780820191505090505b5090505b600085146124b45760018261244091906137b9565b9150600a8561244f9190613995565b603061245b91906136a4565b60f81b81838151811061247157612470613a53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ad91906136fa565b945061242b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612539906134d9565b60405180910390fd5b61254b816117cf565b1561258b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612582906134b9565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8311156125ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e590613559565b60405180910390fd5b6125fb60008583866124c0565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516126f8919061365e565b6fffffffffffffffffffffffffffffffff16815260200185836020015161271f919061365e565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561298e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461292e6000888488612136565b61296d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296490613499565b60405180910390fd5b81806129789061394c565b92505080806129869061394c565b9150506128bd565b50806000819055506129a360008785886124c6565b505050505050565b600080823b905060008111915050919050565b8280546129ca906138e9565b90600052602060002090601f0160209004810192826129ec5760008555612a33565b82601f10612a0557805160ff1916838001178555612a33565b82800160010185558215612a33579182015b82811115612a32578251825591602001919060010190612a17565b5b509050612a409190612a7e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a97576000816000905550600101612a7f565b5090565b6000612aae612aa9846135b9565b613594565b905082815260208101848484011115612aca57612ac9613ab6565b5b612ad584828561387d565b509392505050565b6000612af0612aeb846135ea565b613594565b905082815260208101848484011115612b0c57612b0b613ab6565b5b612b1784828561387d565b509392505050565b600081359050612b2e816140b9565b92915050565b600081359050612b43816140d0565b92915050565b600081359050612b58816140e7565b92915050565b600081519050612b6d816140e7565b92915050565b600082601f830112612b8857612b87613ab1565b5b8135612b98848260208601612a9b565b91505092915050565b600082601f830112612bb657612bb5613ab1565b5b8135612bc6848260208601612add565b91505092915050565b600081359050612bde816140fe565b92915050565b600060208284031215612bfa57612bf9613ac0565b5b6000612c0884828501612b1f565b91505092915050565b60008060408385031215612c2857612c27613ac0565b5b6000612c3685828601612b1f565b9250506020612c4785828601612b1f565b9150509250929050565b600080600060608486031215612c6a57612c69613ac0565b5b6000612c7886828701612b1f565b9350506020612c8986828701612b1f565b9250506040612c9a86828701612bcf565b9150509250925092565b60008060008060808587031215612cbe57612cbd613ac0565b5b6000612ccc87828801612b1f565b9450506020612cdd87828801612b1f565b9350506040612cee87828801612bcf565b925050606085013567ffffffffffffffff811115612d0f57612d0e613abb565b5b612d1b87828801612b73565b91505092959194509250565b60008060408385031215612d3e57612d3d613ac0565b5b6000612d4c85828601612b1f565b9250506020612d5d85828601612b34565b9150509250929050565b60008060408385031215612d7e57612d7d613ac0565b5b6000612d8c85828601612b1f565b9250506020612d9d85828601612bcf565b9150509250929050565b600060208284031215612dbd57612dbc613ac0565b5b6000612dcb84828501612b49565b91505092915050565b600060208284031215612dea57612de9613ac0565b5b6000612df884828501612b5e565b91505092915050565b600060208284031215612e1757612e16613ac0565b5b600082013567ffffffffffffffff811115612e3557612e34613abb565b5b612e4184828501612ba1565b91505092915050565b600060208284031215612e6057612e5f613ac0565b5b6000612e6e84828501612bcf565b91505092915050565b612e80816137ed565b82525050565b612e8f816137ff565b82525050565b6000612ea08261361b565b612eaa8185613631565b9350612eba81856020860161388c565b612ec381613ac5565b840191505092915050565b6000612ed982613626565b612ee38185613642565b9350612ef381856020860161388c565b612efc81613ac5565b840191505092915050565b6000612f1282613626565b612f1c8185613653565b9350612f2c81856020860161388c565b80840191505092915050565b6000612f45602283613642565b9150612f5082613ad6565b604082019050919050565b6000612f68602683613642565b9150612f7382613b25565b604082019050919050565b6000612f8b602a83613642565b9150612f9682613b74565b604082019050919050565b6000612fae602383613642565b9150612fb982613bc3565b604082019050919050565b6000612fd1602583613642565b9150612fdc82613c12565b604082019050919050565b6000612ff4603983613642565b9150612fff82613c61565b604082019050919050565b6000613017602b83613642565b915061302282613cb0565b604082019050919050565b600061303a602683613642565b915061304582613cff565b604082019050919050565b600061305d600583613653565b915061306882613d4e565b600582019050919050565b6000613080602083613642565b915061308b82613d77565b602082019050919050565b60006130a3602f83613642565b91506130ae82613da0565b604082019050919050565b60006130c6601a83613642565b91506130d182613def565b602082019050919050565b60006130e9603283613642565b91506130f482613e18565b604082019050919050565b600061310c602283613642565b915061311782613e67565b604082019050919050565b600061312f603383613642565b915061313a82613eb6565b604082019050919050565b6000613152601d83613642565b915061315d82613f05565b602082019050919050565b6000613175602183613642565b915061318082613f2e565b604082019050919050565b6000613198602e83613642565b91506131a382613f7d565b604082019050919050565b60006131bb602f83613642565b91506131c682613fcc565b604082019050919050565b60006131de602d83613642565b91506131e98261401b565b604082019050919050565b6000613201602283613642565b915061320c8261406a565b604082019050919050565b61322081613873565b82525050565b60006132328285612f07565b915061323e8284612f07565b915061324982613050565b91508190509392505050565b600060208201905061326a6000830184612e77565b92915050565b60006080820190506132856000830187612e77565b6132926020830186612e77565b61329f6040830185613217565b81810360608301526132b18184612e95565b905095945050505050565b60006020820190506132d16000830184612e86565b92915050565b600060208201905081810360008301526132f18184612ece565b905092915050565b6000602082019050818103600083015261331281612f38565b9050919050565b6000602082019050818103600083015261333281612f5b565b9050919050565b6000602082019050818103600083015261335281612f7e565b9050919050565b6000602082019050818103600083015261337281612fa1565b9050919050565b6000602082019050818103600083015261339281612fc4565b9050919050565b600060208201905081810360008301526133b281612fe7565b9050919050565b600060208201905081810360008301526133d28161300a565b9050919050565b600060208201905081810360008301526133f28161302d565b9050919050565b6000602082019050818103600083015261341281613073565b9050919050565b6000602082019050818103600083015261343281613096565b9050919050565b60006020820190508181036000830152613452816130b9565b9050919050565b60006020820190508181036000830152613472816130dc565b9050919050565b60006020820190508181036000830152613492816130ff565b9050919050565b600060208201905081810360008301526134b281613122565b9050919050565b600060208201905081810360008301526134d281613145565b9050919050565b600060208201905081810360008301526134f281613168565b9050919050565b600060208201905081810360008301526135128161318b565b9050919050565b60006020820190508181036000830152613532816131ae565b9050919050565b60006020820190508181036000830152613552816131d1565b9050919050565b60006020820190508181036000830152613572816131f4565b9050919050565b600060208201905061358e6000830184613217565b92915050565b600061359e6135af565b90506135aa828261391b565b919050565b6000604051905090565b600067ffffffffffffffff8211156135d4576135d3613a82565b5b6135dd82613ac5565b9050602081019050919050565b600067ffffffffffffffff82111561360557613604613a82565b5b61360e82613ac5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061366982613837565b915061367483613837565b9250826fffffffffffffffffffffffffffffffff03821115613699576136986139c6565b5b828201905092915050565b60006136af82613873565b91506136ba83613873565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136ef576136ee6139c6565b5b828201905092915050565b600061370582613873565b915061371083613873565b9250826137205761371f6139f5565b5b828204905092915050565b600061373682613873565b915061374183613873565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561377a576137796139c6565b5b828202905092915050565b600061379082613837565b915061379b83613837565b9250828210156137ae576137ad6139c6565b5b828203905092915050565b60006137c482613873565b91506137cf83613873565b9250828210156137e2576137e16139c6565b5b828203905092915050565b60006137f882613853565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138aa57808201518184015260208101905061388f565b838111156138b9576000848401525b50505050565b60006138ca82613873565b915060008214156138de576138dd6139c6565b5b600182039050919050565b6000600282049050600182168061390157607f821691505b6020821081141561391557613914613a24565b5b50919050565b61392482613ac5565b810181811067ffffffffffffffff8211171561394357613942613a82565b5b80604052505050565b600061395782613873565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561398a576139896139c6565b5b600182019050919050565b60006139a082613873565b91506139ab83613873565b9250826139bb576139ba6139f5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6140c2816137ed565b81146140cd57600080fd5b50565b6140d9816137ff565b81146140e457600080fd5b50565b6140f08161380b565b81146140fb57600080fd5b50565b61410781613873565b811461411257600080fd5b5056fea2646970667358221220c9c9ea350a6d04d413576a2376c58a34880f7e6cf54557921a96c36a1b3d93ad64736f6c63430008070033
Deployed Bytecode Sourcemap
39804:1218:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24931:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39906:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26657:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28191:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27754:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23492:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29041:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24123:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40691:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40907:112;;;;;;;;;;;;;:::i;:::-;;29246:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23655:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40384:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26480:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39979:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25357:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38923:103;;;;;;;;;;;;;:::i;:::-;;40590:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38272:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40494:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26812:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39858:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40111:265;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28459:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29466:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26973:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39941:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33881:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28796:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39181:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24931:370;25058:4;25103:25;25088:40;;;:11;:40;;;;:99;;;;25154:33;25139:48;;;:11;:48;;;;25088:99;:160;;;;25213:35;25198:50;;;:11;:50;;;;25088:160;:207;;;;25259:36;25283:11;25259:23;:36::i;:::-;25088:207;25074:221;;24931:370;;;:::o;39906:28::-;;;;:::o;26657:94::-;26711:13;26740:5;26733:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26657:94;:::o;28191:204::-;28259:7;28283:16;28291:7;28283;:16::i;:::-;28275:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28365:15;:24;28381:7;28365:24;;;;;;;;;;;;;;;;;;;;;28358:31;;28191:204;;;:::o;27754:379::-;27823:13;27839:24;27855:7;27839:15;:24::i;:::-;27823:40;;27884:5;27878:11;;:2;:11;;;;27870:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27969:5;27953:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27978:37;27995:5;28002:12;:10;:12::i;:::-;27978:16;:37::i;:::-;27953:62;27937:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;28099:28;28108:2;28112:7;28121:5;28099:8;:28::i;:::-;27816:317;27754:379;;:::o;23492:94::-;23545:7;23568:12;;23561:19;;23492:94;:::o;29041:142::-;29149:28;29159:4;29165:2;29169:7;29149:9;:28::i;:::-;29041:142;;;:::o;24123:744::-;24232:7;24267:16;24277:5;24267:9;:16::i;:::-;24259:5;:24;24251:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24329:22;24354:13;:11;:13::i;:::-;24329:38;;24374:19;24404:25;24454:9;24449:350;24473:14;24469:1;:18;24449:350;;;24503:31;24537:11;:14;24549:1;24537:14;;;;;;;;;;;24503:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24590:1;24564:28;;:9;:14;;;:28;;;24560:89;;24625:9;:14;;;24605:34;;24560:89;24682:5;24661:26;;:17;:26;;;24657:135;;;24719:5;24704:11;:20;24700:59;;;24746:1;24739:8;;;;;;;;;24700:59;24769:13;;;;;:::i;:::-;;;;24657:135;24494:305;24489:3;;;;;:::i;:::-;;;;24449:350;;;;24805:56;;;;;;;;;;:::i;:::-;;;;;;;;24123:744;;;;;:::o;40691:92::-;38503:12;:10;:12::i;:::-;38492:23;;:7;:5;:7::i;:::-;:23;;;38484:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40766:9:::1;40757:6;:18;;;;40691:92:::0;:::o;40907:112::-;38503:12;:10;:12::i;:::-;38492:23;;:7;:5;:7::i;:::-;:23;;;38484:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40971:10:::1;40963:24;;:47;40988:21;40963:47;;;;;;;;;;;;;;;;;;;;;;;40955:56;;;::::0;::::1;;40907:112::o:0;29246:157::-;29358:39;29375:4;29381:2;29385:7;29358:39;;;;;;;;;;;;:16;:39::i;:::-;29246:157;;;:::o;23655:177::-;23722:7;23754:13;:11;:13::i;:::-;23746:5;:21;23738:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23821:5;23814:12;;23655:177;;;:::o;40384:102::-;38503:12;:10;:12::i;:::-;38492:23;;:7;:5;:7::i;:::-;:23;;;38484:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40468:10:::1;40458:7;:20;;;;;;;;;;;;:::i;:::-;;40384:102:::0;:::o;26480:118::-;26544:7;26567:20;26579:7;26567:11;:20::i;:::-;:25;;;26560:32;;26480:118;;;:::o;39979:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25357:211::-;25421:7;25462:1;25445:19;;:5;:19;;;;25437:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25534:12;:19;25547:5;25534:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25526:36;;25519:43;;25357:211;;;:::o;38923:103::-;38503:12;:10;:12::i;:::-;38492:23;;:7;:5;:7::i;:::-;:23;;;38484:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38988:30:::1;39015:1;38988:18;:30::i;:::-;38923:103::o:0;40590:93::-;38503:12;:10;:12::i;:::-;38492:23;;:7;:5;:7::i;:::-;:23;;;38484:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40669:6:::1;40655:11;:20;;;;40590:93:::0;:::o;38272:87::-;38318:7;38345:6;;;;;;;;;;;38338:13;;38272:87;:::o;40494:88::-;38503:12;:10;:12::i;:::-;38492:23;;:7;:5;:7::i;:::-;:23;;;38484:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40566:8:::1;40558:5;:16;;;;40494:88:::0;:::o;26812:98::-;26868:13;26897:7;26890:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26812:98;:::o;39858:41::-;;;;:::o;40111:265::-;40190:1;40178:9;:13;:41;;;;;40208:11;;40195:9;:24;;40178:41;40170:50;;;;;;40268:6;;40255:9;40239:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:35;;40231:44;;;;;;40315:9;40307:5;;:17;;;;:::i;:::-;40294:9;:30;;40286:39;;;;;;40336:32;40346:10;40358:9;40336;:32::i;:::-;40111:265;:::o;28459:274::-;28562:12;:10;:12::i;:::-;28550:24;;:8;:24;;;;28542:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28659:8;28614:18;:32;28633:12;:10;:12::i;:::-;28614:32;;;;;;;;;;;;;;;:42;28647:8;28614:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28708:8;28679:48;;28694:12;:10;:12::i;:::-;28679:48;;;28718:8;28679:48;;;;;;:::i;:::-;;;;;;;;28459:274;;:::o;29466:311::-;29603:28;29613:4;29619:2;29623:7;29603:9;:28::i;:::-;29654:48;29677:4;29683:2;29687:7;29696:5;29654:22;:48::i;:::-;29638:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29466:311;;;;:::o;26973:403::-;27071:13;27112:16;27120:7;27112;:16::i;:::-;27096:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;27202:21;27226:10;:8;:10::i;:::-;27202:34;;27281:1;27263:7;27257:21;:25;:113;;;;;;;;;;;;;;;;;27318:7;27327:18;:7;:16;:18::i;:::-;27301:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27257:113;27243:127;;;26973:403;;;:::o;39941:31::-;;;;:::o;33881:43::-;;;;:::o;28796:186::-;28918:4;28941:18;:25;28960:5;28941:25;;;;;;;;;;;;;;;:35;28967:8;28941:35;;;;;;;;;;;;;;;;;;;;;;;;;28934:42;;28796:186;;;;:::o;39181:238::-;38503:12;:10;:12::i;:::-;38492:23;;:7;:5;:7::i;:::-;:23;;;38484:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39304:1:::1;39284:22;;:8;:22;;;;39262:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39383:28;39402:8;39383:18;:28::i;:::-;39181:238:::0;:::o;8503:207::-;8633:4;8677:25;8662:40;;;:11;:40;;;;8655:47;;8503:207;;;:::o;30016:105::-;30073:4;30103:12;;30093:7;:22;30086:29;;30016:105;;;:::o;17902:98::-;17955:7;17982:10;17975:17;;17902:98;:::o;33703:172::-;33827:2;33800:15;:24;33816:7;33800:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33861:7;33857:2;33841:28;;33850:5;33841:28;;;;;;;;;;;;33703:172;;;:::o;32068:1529::-;32165:35;32203:20;32215:7;32203:11;:20::i;:::-;32165:58;;32232:22;32274:13;:18;;;32258:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;32327:12;:10;:12::i;:::-;32303:36;;:20;32315:7;32303:11;:20::i;:::-;:36;;;32258:81;:142;;;;32350:50;32367:13;:18;;;32387:12;:10;:12::i;:::-;32350:16;:50::i;:::-;32258:142;32232:169;;32426:17;32410:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32558:4;32536:26;;:13;:18;;;:26;;;32520:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32647:1;32633:16;;:2;:16;;;;32625:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32700:43;32722:4;32728:2;32732:7;32741:1;32700:21;:43::i;:::-;32800:49;32817:1;32821:7;32830:13;:18;;;32800:8;:49::i;:::-;32888:1;32858:12;:18;32871:4;32858:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32924:1;32896:12;:16;32909:2;32896:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32955:43;;;;;;;;32970:2;32955:43;;;;;;32981:15;32955:43;;;;;32932:11;:20;32944:7;32932:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33226:19;33258:1;33248:7;:11;;;;:::i;:::-;33226:33;;33311:1;33270:43;;:11;:24;33282:11;33270:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;33266:236;;;33328:20;33336:11;33328:7;:20::i;:::-;33324:171;;;33388:97;;;;;;;;33415:13;:18;;;33388:97;;;;;;33446:13;:28;;;33388:97;;;;;33361:11;:24;33373:11;33361:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33324:171;33266:236;33534:7;33530:2;33515:27;;33524:4;33515:27;;;;;;;;;;;;33549:42;33570:4;33576:2;33580:7;33589:1;33549:20;:42::i;:::-;32158:1439;;;32068:1529;;;:::o;25820:606::-;25896:21;;:::i;:::-;25937:16;25945:7;25937;:16::i;:::-;25929:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26009:26;26057:12;26046:7;:23;26042:93;;26126:1;26111:12;26101:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;26080:47;;26042:93;26148:12;26163:7;26148:22;;26143:212;26180:18;26172:4;:26;26143:212;;26217:31;26251:11;:17;26263:4;26251:17;;;;;;;;;;;26217:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26307:1;26281:28;;:9;:14;;;:28;;;26277:71;;26329:9;26322:16;;;;;;;26277:71;26208:147;26200:6;;;;;:::i;:::-;;;;26143:212;;;;26363:57;;;;;;;;;;:::i;:::-;;;;;;;;25820:606;;;;:::o;39579:191::-;39653:16;39672:6;;;;;;;;;;;39653:25;;39698:8;39689:6;;:17;;;;;;;;;;;;;;;;;;39753:8;39722:40;;39743:8;39722:40;;;;;;;;;;;;39642:128;39579:191;:::o;30127:98::-;30192:27;30202:2;30206:8;30192:27;;;;;;;;;;;;:9;:27::i;:::-;30127:98;;:::o;35418:690::-;35555:4;35572:15;:2;:13;;;:15::i;:::-;35568:535;;;35627:2;35611:36;;;35648:12;:10;:12::i;:::-;35662:4;35668:7;35677:5;35611:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35598:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35859:1;35842:6;:13;:18;35838:215;;;35875:61;;;;;;;;;;:::i;:::-;;;;;;;;35838:215;36021:6;36015:13;36006:6;36002:2;35998:15;35991:38;35598:464;35743:45;;;35733:55;;;:6;:55;;;;35726:62;;;;;35568:535;36091:4;36084:11;;35418:690;;;;;;;:::o;40791:108::-;40851:13;40884:7;40877:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40791:108;:::o;18425:723::-;18481:13;18711:1;18702:5;:10;18698:53;;;18729:10;;;;;;;;;;;;;;;;;;;;;18698:53;18761:12;18776:5;18761:20;;18792:14;18817:78;18832:1;18824:4;:9;18817:78;;18850:8;;;;;:::i;:::-;;;;18881:2;18873:10;;;;;:::i;:::-;;;18817:78;;;18905:19;18937:6;18927:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18905:39;;18955:154;18971:1;18962:5;:10;18955:154;;18999:1;18989:11;;;;;:::i;:::-;;;19066:2;19058:5;:10;;;;:::i;:::-;19045:2;:24;;;;:::i;:::-;19032:39;;19015:6;19022;19015:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19095:2;19086:11;;;;;:::i;:::-;;;18955:154;;;19133:6;19119:21;;;;;18425:723;;;;:::o;36570:141::-;;;;;:::o;37097:140::-;;;;;:::o;30564:1272::-;30669:20;30692:12;;30669:35;;30733:1;30719:16;;:2;:16;;;;30711:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30910:21;30918:12;30910:7;:21::i;:::-;30909:22;30901:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30992:12;30980:8;:24;;30972:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31052:61;31082:1;31086:2;31090:12;31104:8;31052:21;:61::i;:::-;31122:30;31155:12;:16;31168:2;31155:16;;;;;;;;;;;;;;;31122:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31197:119;;;;;;;;31247:8;31217:11;:19;;;:39;;;;:::i;:::-;31197:119;;;;;;31300:8;31265:11;:24;;;:44;;;;:::i;:::-;31197:119;;;;;31178:12;:16;31191:2;31178:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31351:43;;;;;;;;31366:2;31351:43;;;;;;31377:15;31351:43;;;;;31323:11;:25;31335:12;31323:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31403:20;31426:12;31403:35;;31452:9;31447:281;31471:8;31467:1;:12;31447:281;;;31525:12;31521:2;31500:38;;31517:1;31500:38;;;;;;;;;;;;31565:59;31596:1;31600:2;31604:12;31618:5;31565:22;:59::i;:::-;31547:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31706:14;;;;;:::i;:::-;;;;31481:3;;;;;:::i;:::-;;;;31447:281;;;;31751:12;31736;:27;;;;31770:60;31799:1;31803:2;31807:12;31821:8;31770:20;:60::i;:::-;30662:1174;;;30564:1272;;;:::o;9481:387::-;9541:4;9749:12;9816:7;9804:20;9796:28;;9859:1;9852:4;:8;9845:15;;;9481:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;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;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:400::-;11652:3;11673:84;11755:1;11750:3;11673:84;:::i;:::-;11666:91;;11766:93;11855:3;11766:93;:::i;:::-;11884:1;11879:3;11875:11;11868:18;;11492:400;;;:::o;11898:366::-;12040:3;12061:67;12125:2;12120:3;12061:67;:::i;:::-;12054:74;;12137:93;12226:3;12137:93;:::i;:::-;12255:2;12250:3;12246:12;12239:19;;11898:366;;;:::o;12270:::-;12412:3;12433:67;12497:2;12492:3;12433:67;:::i;:::-;12426:74;;12509:93;12598:3;12509:93;:::i;:::-;12627:2;12622:3;12618:12;12611:19;;12270:366;;;:::o;12642:::-;12784:3;12805:67;12869:2;12864:3;12805:67;:::i;:::-;12798:74;;12881:93;12970:3;12881:93;:::i;:::-;12999:2;12994:3;12990:12;12983:19;;12642:366;;;:::o;13014:::-;13156:3;13177:67;13241:2;13236:3;13177:67;:::i;:::-;13170:74;;13253:93;13342:3;13253:93;:::i;:::-;13371:2;13366:3;13362:12;13355:19;;13014:366;;;:::o;13386:::-;13528:3;13549:67;13613:2;13608:3;13549:67;:::i;:::-;13542:74;;13625:93;13714:3;13625:93;:::i;:::-;13743:2;13738:3;13734:12;13727:19;;13386:366;;;:::o;13758:::-;13900:3;13921:67;13985:2;13980:3;13921:67;:::i;:::-;13914:74;;13997:93;14086:3;13997:93;:::i;:::-;14115:2;14110:3;14106:12;14099:19;;13758:366;;;:::o;14130:::-;14272:3;14293:67;14357:2;14352:3;14293:67;:::i;:::-;14286:74;;14369:93;14458:3;14369:93;:::i;:::-;14487:2;14482:3;14478:12;14471:19;;14130:366;;;:::o;14502:::-;14644:3;14665:67;14729:2;14724:3;14665:67;:::i;:::-;14658:74;;14741:93;14830:3;14741:93;:::i;:::-;14859:2;14854:3;14850:12;14843:19;;14502:366;;;:::o;14874:::-;15016:3;15037:67;15101:2;15096:3;15037:67;:::i;:::-;15030:74;;15113:93;15202:3;15113:93;:::i;:::-;15231:2;15226:3;15222:12;15215:19;;14874:366;;;:::o;15246:::-;15388:3;15409:67;15473:2;15468:3;15409:67;:::i;:::-;15402:74;;15485:93;15574:3;15485:93;:::i;:::-;15603:2;15598:3;15594:12;15587:19;;15246:366;;;:::o;15618:::-;15760:3;15781:67;15845:2;15840:3;15781:67;:::i;:::-;15774:74;;15857:93;15946:3;15857:93;:::i;:::-;15975:2;15970:3;15966:12;15959:19;;15618:366;;;:::o;15990:::-;16132:3;16153:67;16217:2;16212:3;16153:67;:::i;:::-;16146:74;;16229:93;16318:3;16229:93;:::i;:::-;16347:2;16342:3;16338:12;16331:19;;15990:366;;;:::o;16362:118::-;16449:24;16467:5;16449:24;:::i;:::-;16444:3;16437:37;16362:118;;:::o;16486:701::-;16767:3;16789:95;16880:3;16871:6;16789:95;:::i;:::-;16782:102;;16901:95;16992:3;16983:6;16901:95;:::i;:::-;16894:102;;17013:148;17157:3;17013:148;:::i;:::-;17006:155;;17178:3;17171:10;;16486:701;;;;;:::o;17193:222::-;17286:4;17324:2;17313:9;17309:18;17301:26;;17337:71;17405:1;17394:9;17390:17;17381:6;17337:71;:::i;:::-;17193:222;;;;:::o;17421:640::-;17616:4;17654:3;17643:9;17639:19;17631:27;;17668:71;17736:1;17725:9;17721:17;17712:6;17668:71;:::i;:::-;17749:72;17817:2;17806:9;17802:18;17793:6;17749:72;:::i;:::-;17831;17899:2;17888:9;17884:18;17875:6;17831:72;:::i;:::-;17950:9;17944:4;17940:20;17935:2;17924:9;17920:18;17913:48;17978:76;18049:4;18040:6;17978:76;:::i;:::-;17970:84;;17421:640;;;;;;;:::o;18067:210::-;18154:4;18192:2;18181:9;18177:18;18169:26;;18205:65;18267:1;18256:9;18252:17;18243:6;18205:65;:::i;:::-;18067:210;;;;:::o;18283:313::-;18396:4;18434:2;18423:9;18419:18;18411:26;;18483:9;18477:4;18473:20;18469:1;18458:9;18454:17;18447:47;18511:78;18584:4;18575:6;18511:78;:::i;:::-;18503:86;;18283:313;;;;:::o;18602:419::-;18768:4;18806:2;18795:9;18791:18;18783:26;;18855:9;18849:4;18845:20;18841:1;18830:9;18826:17;18819:47;18883:131;19009:4;18883:131;:::i;:::-;18875:139;;18602:419;;;:::o;19027:::-;19193:4;19231:2;19220:9;19216:18;19208:26;;19280:9;19274:4;19270:20;19266:1;19255:9;19251:17;19244:47;19308:131;19434:4;19308:131;:::i;:::-;19300:139;;19027:419;;;:::o;19452:::-;19618:4;19656:2;19645:9;19641:18;19633:26;;19705:9;19699:4;19695:20;19691:1;19680:9;19676:17;19669:47;19733:131;19859:4;19733:131;:::i;:::-;19725:139;;19452:419;;;:::o;19877:::-;20043:4;20081:2;20070:9;20066:18;20058:26;;20130:9;20124:4;20120:20;20116:1;20105:9;20101:17;20094:47;20158:131;20284:4;20158:131;:::i;:::-;20150:139;;19877:419;;;:::o;20302:::-;20468:4;20506:2;20495:9;20491:18;20483:26;;20555:9;20549:4;20545:20;20541:1;20530:9;20526:17;20519:47;20583:131;20709:4;20583:131;:::i;:::-;20575:139;;20302:419;;;:::o;20727:::-;20893:4;20931:2;20920:9;20916:18;20908:26;;20980:9;20974:4;20970:20;20966:1;20955:9;20951:17;20944:47;21008:131;21134:4;21008:131;:::i;:::-;21000:139;;20727:419;;;:::o;21152:::-;21318:4;21356:2;21345:9;21341:18;21333:26;;21405:9;21399:4;21395:20;21391:1;21380:9;21376:17;21369:47;21433:131;21559:4;21433:131;:::i;:::-;21425:139;;21152:419;;;:::o;21577:::-;21743:4;21781:2;21770:9;21766:18;21758:26;;21830:9;21824:4;21820:20;21816:1;21805:9;21801:17;21794:47;21858:131;21984:4;21858:131;:::i;:::-;21850:139;;21577:419;;;:::o;22002:::-;22168:4;22206:2;22195:9;22191:18;22183:26;;22255:9;22249:4;22245:20;22241:1;22230:9;22226:17;22219:47;22283:131;22409:4;22283:131;:::i;:::-;22275:139;;22002:419;;;:::o;22427:::-;22593:4;22631:2;22620:9;22616:18;22608:26;;22680:9;22674:4;22670:20;22666:1;22655:9;22651:17;22644:47;22708:131;22834:4;22708:131;:::i;:::-;22700:139;;22427:419;;;:::o;22852:::-;23018:4;23056:2;23045:9;23041:18;23033:26;;23105:9;23099:4;23095:20;23091:1;23080:9;23076:17;23069:47;23133:131;23259:4;23133:131;:::i;:::-;23125:139;;22852:419;;;:::o;23277:::-;23443:4;23481:2;23470:9;23466:18;23458:26;;23530:9;23524:4;23520:20;23516:1;23505:9;23501:17;23494:47;23558:131;23684:4;23558:131;:::i;:::-;23550:139;;23277:419;;;:::o;23702:::-;23868:4;23906:2;23895:9;23891:18;23883:26;;23955:9;23949:4;23945:20;23941:1;23930:9;23926:17;23919:47;23983:131;24109:4;23983:131;:::i;:::-;23975:139;;23702:419;;;:::o;24127:::-;24293:4;24331:2;24320:9;24316:18;24308:26;;24380:9;24374:4;24370:20;24366:1;24355:9;24351:17;24344:47;24408:131;24534:4;24408:131;:::i;:::-;24400:139;;24127:419;;;:::o;24552:::-;24718:4;24756:2;24745:9;24741:18;24733:26;;24805:9;24799:4;24795:20;24791:1;24780:9;24776:17;24769:47;24833:131;24959:4;24833:131;:::i;:::-;24825:139;;24552:419;;;:::o;24977:::-;25143:4;25181:2;25170:9;25166:18;25158:26;;25230:9;25224:4;25220:20;25216:1;25205:9;25201:17;25194:47;25258:131;25384:4;25258:131;:::i;:::-;25250:139;;24977:419;;;:::o;25402:::-;25568:4;25606:2;25595:9;25591:18;25583:26;;25655:9;25649:4;25645:20;25641:1;25630:9;25626:17;25619:47;25683:131;25809:4;25683:131;:::i;:::-;25675:139;;25402:419;;;:::o;25827:::-;25993:4;26031:2;26020:9;26016:18;26008:26;;26080:9;26074:4;26070:20;26066:1;26055:9;26051:17;26044:47;26108:131;26234:4;26108:131;:::i;:::-;26100:139;;25827:419;;;:::o;26252:::-;26418:4;26456:2;26445:9;26441:18;26433:26;;26505:9;26499:4;26495:20;26491:1;26480:9;26476:17;26469:47;26533:131;26659:4;26533:131;:::i;:::-;26525:139;;26252:419;;;:::o;26677:::-;26843:4;26881:2;26870:9;26866:18;26858:26;;26930:9;26924:4;26920:20;26916:1;26905:9;26901:17;26894:47;26958:131;27084:4;26958:131;:::i;:::-;26950:139;;26677:419;;;:::o;27102:222::-;27195:4;27233:2;27222:9;27218:18;27210:26;;27246:71;27314:1;27303:9;27299:17;27290:6;27246:71;:::i;:::-;27102:222;;;;:::o;27330:129::-;27364:6;27391:20;;:::i;:::-;27381:30;;27420:33;27448:4;27440:6;27420:33;:::i;:::-;27330:129;;;:::o;27465:75::-;27498:6;27531:2;27525:9;27515:19;;27465:75;:::o;27546:307::-;27607:4;27697:18;27689:6;27686:30;27683:56;;;27719:18;;:::i;:::-;27683:56;27757:29;27779:6;27757:29;:::i;:::-;27749:37;;27841:4;27835;27831:15;27823:23;;27546:307;;;:::o;27859:308::-;27921:4;28011:18;28003:6;28000:30;27997:56;;;28033:18;;:::i;:::-;27997:56;28071:29;28093:6;28071:29;:::i;:::-;28063:37;;28155:4;28149;28145:15;28137:23;;27859:308;;;:::o;28173:98::-;28224:6;28258:5;28252:12;28242:22;;28173:98;;;:::o;28277:99::-;28329:6;28363:5;28357:12;28347:22;;28277:99;;;:::o;28382:168::-;28465:11;28499:6;28494:3;28487:19;28539:4;28534:3;28530:14;28515:29;;28382:168;;;;:::o;28556:169::-;28640:11;28674:6;28669:3;28662:19;28714:4;28709:3;28705:14;28690:29;;28556:169;;;;:::o;28731:148::-;28833:11;28870:3;28855:18;;28731:148;;;;:::o;28885:273::-;28925:3;28944:20;28962:1;28944:20;:::i;:::-;28939:25;;28978:20;28996:1;28978:20;:::i;:::-;28973:25;;29100:1;29064:34;29060:42;29057:1;29054:49;29051:75;;;29106:18;;:::i;:::-;29051:75;29150:1;29147;29143:9;29136:16;;28885:273;;;;:::o;29164:305::-;29204:3;29223:20;29241:1;29223:20;:::i;:::-;29218:25;;29257:20;29275:1;29257:20;:::i;:::-;29252:25;;29411:1;29343:66;29339:74;29336:1;29333:81;29330:107;;;29417:18;;:::i;:::-;29330:107;29461:1;29458;29454:9;29447:16;;29164:305;;;;:::o;29475:185::-;29515:1;29532:20;29550:1;29532:20;:::i;:::-;29527:25;;29566:20;29584:1;29566:20;:::i;:::-;29561:25;;29605:1;29595:35;;29610:18;;:::i;:::-;29595:35;29652:1;29649;29645:9;29640:14;;29475:185;;;;:::o;29666:348::-;29706:7;29729:20;29747:1;29729:20;:::i;:::-;29724:25;;29763:20;29781:1;29763:20;:::i;:::-;29758:25;;29951:1;29883:66;29879:74;29876:1;29873:81;29868:1;29861:9;29854:17;29850:105;29847:131;;;29958:18;;:::i;:::-;29847:131;30006:1;30003;29999:9;29988:20;;29666:348;;;;:::o;30020:191::-;30060:4;30080:20;30098:1;30080:20;:::i;:::-;30075:25;;30114:20;30132:1;30114:20;:::i;:::-;30109:25;;30153:1;30150;30147:8;30144:34;;;30158:18;;:::i;:::-;30144:34;30203:1;30200;30196:9;30188:17;;30020:191;;;;:::o;30217:::-;30257:4;30277:20;30295:1;30277:20;:::i;:::-;30272:25;;30311:20;30329:1;30311:20;:::i;:::-;30306:25;;30350:1;30347;30344:8;30341:34;;;30355:18;;:::i;:::-;30341:34;30400:1;30397;30393:9;30385:17;;30217:191;;;;:::o;30414:96::-;30451:7;30480:24;30498:5;30480:24;:::i;:::-;30469:35;;30414:96;;;:::o;30516:90::-;30550:7;30593:5;30586:13;30579:21;30568:32;;30516:90;;;:::o;30612:149::-;30648:7;30688:66;30681:5;30677:78;30666:89;;30612:149;;;:::o;30767:118::-;30804:7;30844:34;30837:5;30833:46;30822:57;;30767:118;;;:::o;30891:126::-;30928:7;30968:42;30961:5;30957:54;30946:65;;30891:126;;;:::o;31023:77::-;31060:7;31089:5;31078:16;;31023:77;;;:::o;31106:154::-;31190:6;31185:3;31180;31167:30;31252:1;31243:6;31238:3;31234:16;31227:27;31106:154;;;:::o;31266:307::-;31334:1;31344:113;31358:6;31355:1;31352:13;31344:113;;;31443:1;31438:3;31434:11;31428:18;31424:1;31419:3;31415:11;31408:39;31380:2;31377:1;31373:10;31368:15;;31344:113;;;31475:6;31472:1;31469:13;31466:101;;;31555:1;31546:6;31541:3;31537:16;31530:27;31466:101;31315:258;31266:307;;;:::o;31579:171::-;31618:3;31641:24;31659:5;31641:24;:::i;:::-;31632:33;;31687:4;31680:5;31677:15;31674:41;;;31695:18;;:::i;:::-;31674:41;31742:1;31735:5;31731:13;31724:20;;31579:171;;;:::o;31756:320::-;31800:6;31837:1;31831:4;31827:12;31817:22;;31884:1;31878:4;31874:12;31905:18;31895:81;;31961:4;31953:6;31949:17;31939:27;;31895:81;32023:2;32015:6;32012:14;31992:18;31989:38;31986:84;;;32042:18;;:::i;:::-;31986:84;31807:269;31756:320;;;:::o;32082:281::-;32165:27;32187:4;32165:27;:::i;:::-;32157:6;32153:40;32295:6;32283:10;32280:22;32259:18;32247:10;32244:34;32241:62;32238:88;;;32306:18;;:::i;:::-;32238:88;32346:10;32342:2;32335:22;32125:238;32082:281;;:::o;32369:233::-;32408:3;32431:24;32449:5;32431:24;:::i;:::-;32422:33;;32477:66;32470:5;32467:77;32464:103;;;32547:18;;:::i;:::-;32464:103;32594:1;32587:5;32583:13;32576:20;;32369:233;;;:::o;32608:176::-;32640:1;32657:20;32675:1;32657:20;:::i;:::-;32652:25;;32691:20;32709:1;32691:20;:::i;:::-;32686:25;;32730:1;32720:35;;32735:18;;:::i;:::-;32720:35;32776:1;32773;32769:9;32764:14;;32608:176;;;;:::o;32790:180::-;32838:77;32835:1;32828:88;32935:4;32932:1;32925:15;32959:4;32956:1;32949:15;32976:180;33024:77;33021:1;33014:88;33121:4;33118:1;33111:15;33145:4;33142:1;33135:15;33162:180;33210:77;33207:1;33200:88;33307:4;33304:1;33297:15;33331:4;33328:1;33321:15;33348:180;33396:77;33393:1;33386:88;33493:4;33490:1;33483:15;33517:4;33514:1;33507:15;33534:180;33582:77;33579:1;33572:88;33679:4;33676:1;33669:15;33703:4;33700:1;33693:15;33720:117;33829:1;33826;33819:12;33843:117;33952:1;33949;33942:12;33966:117;34075:1;34072;34065:12;34089:117;34198:1;34195;34188:12;34212:102;34253:6;34304:2;34300:7;34295:2;34288:5;34284:14;34280:28;34270:38;;34212:102;;;:::o;34320:221::-;34460:34;34456:1;34448:6;34444:14;34437:58;34529:4;34524:2;34516:6;34512:15;34505:29;34320:221;:::o;34547:225::-;34687:34;34683:1;34675:6;34671:14;34664:58;34756:8;34751:2;34743:6;34739:15;34732:33;34547:225;:::o;34778:229::-;34918:34;34914:1;34906:6;34902:14;34895:58;34987:12;34982:2;34974:6;34970:15;34963:37;34778:229;:::o;35013:222::-;35153:34;35149:1;35141:6;35137:14;35130:58;35222:5;35217:2;35209:6;35205:15;35198:30;35013:222;:::o;35241:224::-;35381:34;35377:1;35369:6;35365:14;35358:58;35450:7;35445:2;35437:6;35433:15;35426:32;35241:224;:::o;35471:244::-;35611:34;35607:1;35599:6;35595:14;35588:58;35680:27;35675:2;35667:6;35663:15;35656:52;35471:244;:::o;35721:230::-;35861:34;35857:1;35849:6;35845:14;35838:58;35930:13;35925:2;35917:6;35913:15;35906:38;35721:230;:::o;35957:225::-;36097:34;36093:1;36085:6;36081:14;36074:58;36166:8;36161:2;36153:6;36149:15;36142:33;35957:225;:::o;36188:155::-;36328:7;36324:1;36316:6;36312:14;36305:31;36188:155;:::o;36349:182::-;36489:34;36485:1;36477:6;36473:14;36466:58;36349:182;:::o;36537:234::-;36677:34;36673:1;36665:6;36661:14;36654:58;36746:17;36741:2;36733:6;36729:15;36722:42;36537:234;:::o;36777:176::-;36917:28;36913:1;36905:6;36901:14;36894:52;36777:176;:::o;36959:237::-;37099:34;37095:1;37087:6;37083:14;37076:58;37168:20;37163:2;37155:6;37151:15;37144:45;36959:237;:::o;37202:221::-;37342:34;37338:1;37330:6;37326:14;37319:58;37411:4;37406:2;37398:6;37394:15;37387:29;37202:221;:::o;37429:238::-;37569:34;37565:1;37557:6;37553:14;37546:58;37638:21;37633:2;37625:6;37621:15;37614:46;37429:238;:::o;37673:179::-;37813:31;37809:1;37801:6;37797:14;37790:55;37673:179;:::o;37858:220::-;37998:34;37994:1;37986:6;37982:14;37975:58;38067:3;38062:2;38054:6;38050:15;38043:28;37858:220;:::o;38084:233::-;38224:34;38220:1;38212:6;38208:14;38201:58;38293:16;38288:2;38280:6;38276:15;38269:41;38084:233;:::o;38323:234::-;38463:34;38459:1;38451:6;38447:14;38440:58;38532:17;38527:2;38519:6;38515:15;38508:42;38323:234;:::o;38563:232::-;38703:34;38699:1;38691:6;38687:14;38680:58;38772:15;38767:2;38759:6;38755:15;38748:40;38563:232;:::o;38801:221::-;38941:34;38937:1;38929:6;38925:14;38918:58;39010:4;39005:2;38997:6;38993:15;38986:29;38801:221;:::o;39028:122::-;39101:24;39119:5;39101:24;:::i;:::-;39094:5;39091:35;39081:63;;39140:1;39137;39130:12;39081:63;39028:122;:::o;39156:116::-;39226:21;39241:5;39226:21;:::i;:::-;39219:5;39216:32;39206:60;;39262:1;39259;39252:12;39206:60;39156:116;:::o;39278:120::-;39350:23;39367:5;39350:23;:::i;:::-;39343:5;39340:34;39330:62;;39388:1;39385;39378:12;39330:62;39278:120;:::o;39404:122::-;39477:24;39495:5;39477:24;:::i;:::-;39470:5;39467:35;39457:63;;39516:1;39513;39506:12;39457:63;39404:122;:::o
Swarm Source
ipfs://c9c9ea350a6d04d413576a2376c58a34880f7e6cf54557921a96c36a1b3d93ad
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.