ERC-721
Overview
Max Total Supply
49 YODA
Holders
22
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 YODALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Yoda
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-03 */ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/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; } // File: @openzeppelin/contracts/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); } // File: @openzeppelin/contracts/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); } // File: @openzeppelin/contracts/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); } } } } // File: @openzeppelin/contracts/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; } } // File: @openzeppelin/contracts/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); } } // File: @openzeppelin/contracts/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; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: 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 virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/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); } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: yoda.sol pragma solidity ^0.8.0; contract Yoda is ERC721Enumerable, Ownable { using Strings for uint256; string _baseTokenURI; uint256 private _maxMint = 30; uint256 private _price = 4 * 10**16; //0.04 ETH; bool public _paused = false; uint public constant MAX_ENTRIES = 8888; constructor() ERC721("Yoda", "YODA") { setBaseURI("ipfs://"); } function mint(address _to, uint256 num) public payable { uint256 supply = totalSupply(); if(msg.sender != owner()) { require(!_paused, "Sale Paused"); require( num < (_maxMint+1),"You can adopt a maximum of _maxMint Yodas" ); require( msg.value >= _price * num,"Ether sent is not correct" ); } require( supply + num <= MAX_ENTRIES, "Exceeds maximum supply" ); for(uint256 i; i < num; i++){ _safeMint( _to, supply + i ); } } function walletOfOwner(address _owner) public view returns(uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function getPrice() public view returns (uint256){ if(msg.sender == owner()) { return 0; } return _price; } function setPrice(uint256 _newPrice) public onlyOwner() { _price = _newPrice; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function pause(bool val) public onlyOwner { _paused = val; } function withdrawAll() public payable 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":[],"name":"MAX_ENTRIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052601e600c55668e1bc9bf040000600d556000600e60006101000a81548160ff0219169083151502179055503480156200003c57600080fd5b506040518060400160405280600481526020017f596f6461000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f594f4441000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c1929190620002ec565b508060019080519060200190620000da929190620002ec565b505050620000fd620000f16200014960201b60201c565b6200015160201b60201c565b620001436040518060400160405280600781526020017f697066733a2f2f000000000000000000000000000000000000000000000000008152506200021760201b60201c565b62000476565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002276200014960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200024d620002c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029d90620003de565b60405180910390fd5b80600b9080519060200190620002be929190620002ec565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002fa9062000411565b90600052602060002090601f0160209004810192826200031e57600085556200036a565b82601f106200033957805160ff19168380011785556200036a565b828001600101855582156200036a579182015b82811115620003695782518255916020019190600101906200034c565b5b5090506200037991906200037d565b5090565b5b80821115620003985760008160009055506001016200037e565b5090565b6000620003ab60208362000400565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620003f9816200039c565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200042a57607f821691505b6020821081141562000441576200044062000447565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f3a80620004866000396000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde146105f0578063c87b56dd14610619578063e985e9c514610656578063f2fde38b14610693576101b7565b806395d89b411461057157806398d5fdca1461059c578063a22cb465146105c7576101b7565b80637d4cb964116100c65780637d4cb964146104e8578063853828b6146105135780638da5cb5b1461051d57806391b7f5ed14610548576101b7565b80636352211e1461045757806370a0823114610494578063715018a6146104d1576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461038b578063438b6300146103b45780634f6ccce7146103f157806355f804b31461042e576101b7565b806323b872dd146103095780632f745c591461033257806340c10f191461036f576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806316c61ccc146102b357806318160ddd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612cc7565b6106bc565b6040516101f0919061373f565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612c9e565b610736565b005b34801561022e57600080fd5b506102376107cf565b604051610244919061375a565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612d5a565b610861565b60405161028191906136b6565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612c62565b6108e6565b005b3480156102bf57600080fd5b506102c86109fe565b6040516102d5919061373f565b60405180910390f35b3480156102ea57600080fd5b506102f3610a11565b6040516103009190613a3c565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190612b5c565b610a1e565b005b34801561033e57600080fd5b5061035960048036038101906103549190612c62565b610a7e565b6040516103669190613a3c565b60405180910390f35b61038960048036038101906103849190612c62565b610b23565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612b5c565b610ce3565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612af7565b610d03565b6040516103e8919061371d565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190612d5a565b610dfd565b6040516104259190613a3c565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190612d19565b610e94565b005b34801561046357600080fd5b5061047e60048036038101906104799190612d5a565b610f2a565b60405161048b91906136b6565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612af7565b610fdc565b6040516104c89190613a3c565b60405180910390f35b3480156104dd57600080fd5b506104e6611094565b005b3480156104f457600080fd5b506104fd61111c565b60405161050a9190613a3c565b60405180910390f35b61051b611122565b005b34801561052957600080fd5b506105326111de565b60405161053f91906136b6565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612d5a565b611208565b005b34801561057d57600080fd5b5061058661128e565b604051610593919061375a565b60405180910390f35b3480156105a857600080fd5b506105b1611320565b6040516105be9190613a3c565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190612c26565b61136f565b005b3480156105fc57600080fd5b5061061760048036038101906106129190612bab565b6114f0565b005b34801561062557600080fd5b50610640600480360381019061063b9190612d5a565b611552565b60405161064d919061375a565b60405180910390f35b34801561066257600080fd5b5061067d60048036038101906106789190612b20565b6115f9565b60405161068a919061373f565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190612af7565b61168d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072f575061072e82611785565b5b9050919050565b61073e611867565b73ffffffffffffffffffffffffffffffffffffffff1661075c6111de565b73ffffffffffffffffffffffffffffffffffffffff16146107b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a99061393c565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546107de90613d2f565b80601f016020809104026020016040519081016040528092919081815260200182805461080a90613d2f565b80156108575780601f1061082c57610100808354040283529160200191610857565b820191906000526020600020905b81548152906001019060200180831161083a57829003601f168201915b5050505050905090565b600061086c8261186f565b6108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a29061391c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f182610f2a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610962576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109599061399c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610981611867565b73ffffffffffffffffffffffffffffffffffffffff1614806109b057506109af816109aa611867565b6115f9565b5b6109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e69061387c565b60405180910390fd5b6109f983836118db565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b610a2f610a29611867565b82611994565b610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a65906139fc565b60405180910390fd5b610a79838383611a72565b505050565b6000610a8983610fdc565b8210610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061377c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610b2d610a11565b9050610b376111de565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c5a57600e60009054906101000a900460ff1615610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb0906138fc565b60405180910390fd5b6001600c54610bc89190613b64565b8210610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c009061385c565b60405180910390fd5b81600d54610c179190613beb565b341015610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c50906139dc565b60405180910390fd5b5b6122b88282610c699190613b64565b1115610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca1906139bc565b60405180910390fd5b60005b82811015610cdd57610cca848284610cc59190613b64565b611cce565b8080610cd590613d61565b915050610cad565b50505050565b610cfe838383604051806020016040528060008152506114f0565b505050565b60606000610d1083610fdc565b905060008167ffffffffffffffff811115610d54577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d825781602001602082028036833780820191505090505b50905060005b82811015610df257610d9a8582610a7e565b828281518110610dd3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610dea90613d61565b915050610d88565b508092505050919050565b6000610e07610a11565b8210610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90613a1c565b60405180910390fd5b60088281548110610e82577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e9c611867565b73ffffffffffffffffffffffffffffffffffffffff16610eba6111de565b73ffffffffffffffffffffffffffffffffffffffff1614610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f079061393c565b60405180910390fd5b80600b9080519060200190610f2692919061291b565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca906138bc565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110449061389c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61109c611867565b73ffffffffffffffffffffffffffffffffffffffff166110ba6111de565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111079061393c565b60405180910390fd5b61111a6000611cec565b565b6122b881565b61112a611867565b73ffffffffffffffffffffffffffffffffffffffff166111486111de565b73ffffffffffffffffffffffffffffffffffffffff161461119e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111959061393c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506111dc57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611210611867565b73ffffffffffffffffffffffffffffffffffffffff1661122e6111de565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b9061393c565b60405180910390fd5b80600d8190555050565b60606001805461129d90613d2f565b80601f01602080910402602001604051908101604052809291908181526020018280546112c990613d2f565b80156113165780601f106112eb57610100808354040283529160200191611316565b820191906000526020600020905b8154815290600101906020018083116112f957829003601f168201915b5050505050905090565b600061132a6111de565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611366576000905061136c565b600d5490505b90565b611377611867565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc9061381c565b60405180910390fd5b80600560006113f2611867565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149f611867565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e4919061373f565b60405180910390a35050565b6115016114fb611867565b83611994565b611540576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611537906139fc565b60405180910390fd5b61154c84848484611db2565b50505050565b606061155d8261186f565b61159c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115939061397c565b60405180910390fd5b60006115a6611e0e565b905060008151116115c657604051806020016040528060008152506115f1565b806115d084611ea0565b6040516020016115e1929190613692565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611695611867565b73ffffffffffffffffffffffffffffffffffffffff166116b36111de565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061393c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611779576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611770906137bc565b60405180910390fd5b61178281611cec565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061185057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611860575061185f8261204d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661194e83610f2a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061199f8261186f565b6119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d59061383c565b60405180910390fd5b60006119e983610f2a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a5857508373ffffffffffffffffffffffffffffffffffffffff16611a4084610861565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a695750611a6881856115f9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a9282610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf9061395c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906137fc565b60405180910390fd5b611b638383836120b7565b611b6e6000826118db565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bbe9190613c45565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c159190613b64565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611ce88282604051806020016040528060008152506121cb565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611dbd848484611a72565b611dc984848484612226565b611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff9061379c565b60405180910390fd5b50505050565b6060600b8054611e1d90613d2f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4990613d2f565b8015611e965780601f10611e6b57610100808354040283529160200191611e96565b820191906000526020600020905b815481529060010190602001808311611e7957829003601f168201915b5050505050905090565b60606000821415611ee8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612048565b600082905060005b60008214611f1a578080611f0390613d61565b915050600a82611f139190613bba565b9150611ef0565b60008167ffffffffffffffff811115611f5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f8e5781602001600182028036833780820191505090505b5090505b6000851461204157600182611fa79190613c45565b9150600a85611fb69190613daa565b6030611fc29190613b64565b60f81b818381518110611ffe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561203a9190613bba565b9450611f92565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120c28383836123bd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561210557612100816123c2565b612144565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461214357612142838261240b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121875761218281612578565b6121c6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121c5576121c482826126bb565b5b5b505050565b6121d5838361273a565b6121e26000848484612226565b612221576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122189061379c565b60405180910390fd5b505050565b60006122478473ffffffffffffffffffffffffffffffffffffffff16612908565b156123b0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612270611867565b8786866040518563ffffffff1660e01b815260040161229294939291906136d1565b602060405180830381600087803b1580156122ac57600080fd5b505af19250505080156122dd57506040513d601f19601f820116820180604052508101906122da9190612cf0565b60015b612360573d806000811461230d576040519150601f19603f3d011682016040523d82523d6000602084013e612312565b606091505b50600081511415612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f9061379c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123b5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161241884610fdc565b6124229190613c45565b9050600060076000848152602001908152602001600020549050818114612507576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061258c9190613c45565b90506000600960008481526020019081526020016000205490506000600883815481106125e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061262a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061269f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006126c683610fdc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a1906138dc565b60405180910390fd5b6127b38161186f565b156127f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ea906137dc565b60405180910390fd5b6127ff600083836120b7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461284f9190613b64565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461292790613d2f565b90600052602060002090601f0160209004810192826129495760008555612990565b82601f1061296257805160ff1916838001178555612990565b82800160010185558215612990579182015b8281111561298f578251825591602001919060010190612974565b5b50905061299d91906129a1565b5090565b5b808211156129ba5760008160009055506001016129a2565b5090565b60006129d16129cc84613a88565b613a57565b9050828152602081018484840111156129e957600080fd5b6129f4848285613ced565b509392505050565b6000612a0f612a0a84613ab8565b613a57565b905082815260208101848484011115612a2757600080fd5b612a32848285613ced565b509392505050565b600081359050612a4981613ea8565b92915050565b600081359050612a5e81613ebf565b92915050565b600081359050612a7381613ed6565b92915050565b600081519050612a8881613ed6565b92915050565b600082601f830112612a9f57600080fd5b8135612aaf8482602086016129be565b91505092915050565b600082601f830112612ac957600080fd5b8135612ad98482602086016129fc565b91505092915050565b600081359050612af181613eed565b92915050565b600060208284031215612b0957600080fd5b6000612b1784828501612a3a565b91505092915050565b60008060408385031215612b3357600080fd5b6000612b4185828601612a3a565b9250506020612b5285828601612a3a565b9150509250929050565b600080600060608486031215612b7157600080fd5b6000612b7f86828701612a3a565b9350506020612b9086828701612a3a565b9250506040612ba186828701612ae2565b9150509250925092565b60008060008060808587031215612bc157600080fd5b6000612bcf87828801612a3a565b9450506020612be087828801612a3a565b9350506040612bf187828801612ae2565b925050606085013567ffffffffffffffff811115612c0e57600080fd5b612c1a87828801612a8e565b91505092959194509250565b60008060408385031215612c3957600080fd5b6000612c4785828601612a3a565b9250506020612c5885828601612a4f565b9150509250929050565b60008060408385031215612c7557600080fd5b6000612c8385828601612a3a565b9250506020612c9485828601612ae2565b9150509250929050565b600060208284031215612cb057600080fd5b6000612cbe84828501612a4f565b91505092915050565b600060208284031215612cd957600080fd5b6000612ce784828501612a64565b91505092915050565b600060208284031215612d0257600080fd5b6000612d1084828501612a79565b91505092915050565b600060208284031215612d2b57600080fd5b600082013567ffffffffffffffff811115612d4557600080fd5b612d5184828501612ab8565b91505092915050565b600060208284031215612d6c57600080fd5b6000612d7a84828501612ae2565b91505092915050565b6000612d8f8383613674565b60208301905092915050565b612da481613c79565b82525050565b6000612db582613af8565b612dbf8185613b26565b9350612dca83613ae8565b8060005b83811015612dfb578151612de28882612d83565b9750612ded83613b19565b925050600181019050612dce565b5085935050505092915050565b612e1181613c8b565b82525050565b6000612e2282613b03565b612e2c8185613b37565b9350612e3c818560208601613cfc565b612e4581613e97565b840191505092915050565b6000612e5b82613b0e565b612e658185613b48565b9350612e75818560208601613cfc565b612e7e81613e97565b840191505092915050565b6000612e9482613b0e565b612e9e8185613b59565b9350612eae818560208601613cfc565b80840191505092915050565b6000612ec7602b83613b48565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612f2d603283613b48565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612f93602683613b48565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ff9601c83613b48565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613039602483613b48565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061309f601983613b48565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006130df602c83613b48565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613145602983613b48565b91507f596f752063616e2061646f70742061206d6178696d756d206f66205f6d61784d60008301527f696e7420596f64617300000000000000000000000000000000000000000000006020830152604082019050919050565b60006131ab603883613b48565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613211602a83613b48565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613277602983613b48565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006132dd602083613b48565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061331d600b83613b48565b91507f53616c65205061757365640000000000000000000000000000000000000000006000830152602082019050919050565b600061335d602c83613b48565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006133c3602083613b48565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613403602983613b48565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613469602f83613b48565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006134cf602183613b48565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613535601683613b48565b91507f45786365656473206d6178696d756d20737570706c79000000000000000000006000830152602082019050919050565b6000613575601983613b48565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b60006135b5603183613b48565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061361b602c83613b48565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61367d81613ce3565b82525050565b61368c81613ce3565b82525050565b600061369e8285612e89565b91506136aa8284612e89565b91508190509392505050565b60006020820190506136cb6000830184612d9b565b92915050565b60006080820190506136e66000830187612d9b565b6136f36020830186612d9b565b6137006040830185613683565b81810360608301526137128184612e17565b905095945050505050565b600060208201905081810360008301526137378184612daa565b905092915050565b60006020820190506137546000830184612e08565b92915050565b600060208201905081810360008301526137748184612e50565b905092915050565b6000602082019050818103600083015261379581612eba565b9050919050565b600060208201905081810360008301526137b581612f20565b9050919050565b600060208201905081810360008301526137d581612f86565b9050919050565b600060208201905081810360008301526137f581612fec565b9050919050565b600060208201905081810360008301526138158161302c565b9050919050565b6000602082019050818103600083015261383581613092565b9050919050565b60006020820190508181036000830152613855816130d2565b9050919050565b6000602082019050818103600083015261387581613138565b9050919050565b600060208201905081810360008301526138958161319e565b9050919050565b600060208201905081810360008301526138b581613204565b9050919050565b600060208201905081810360008301526138d58161326a565b9050919050565b600060208201905081810360008301526138f5816132d0565b9050919050565b6000602082019050818103600083015261391581613310565b9050919050565b6000602082019050818103600083015261393581613350565b9050919050565b60006020820190508181036000830152613955816133b6565b9050919050565b60006020820190508181036000830152613975816133f6565b9050919050565b600060208201905081810360008301526139958161345c565b9050919050565b600060208201905081810360008301526139b5816134c2565b9050919050565b600060208201905081810360008301526139d581613528565b9050919050565b600060208201905081810360008301526139f581613568565b9050919050565b60006020820190508181036000830152613a15816135a8565b9050919050565b60006020820190508181036000830152613a358161360e565b9050919050565b6000602082019050613a516000830184613683565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613a7e57613a7d613e68565b5b8060405250919050565b600067ffffffffffffffff821115613aa357613aa2613e68565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ad357613ad2613e68565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b6f82613ce3565b9150613b7a83613ce3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613baf57613bae613ddb565b5b828201905092915050565b6000613bc582613ce3565b9150613bd083613ce3565b925082613be057613bdf613e0a565b5b828204905092915050565b6000613bf682613ce3565b9150613c0183613ce3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c3a57613c39613ddb565b5b828202905092915050565b6000613c5082613ce3565b9150613c5b83613ce3565b925082821015613c6e57613c6d613ddb565b5b828203905092915050565b6000613c8482613cc3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d1a578082015181840152602081019050613cff565b83811115613d29576000848401525b50505050565b60006002820490506001821680613d4757607f821691505b60208210811415613d5b57613d5a613e39565b5b50919050565b6000613d6c82613ce3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d9f57613d9e613ddb565b5b600182019050919050565b6000613db582613ce3565b9150613dc083613ce3565b925082613dd057613dcf613e0a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613eb181613c79565b8114613ebc57600080fd5b50565b613ec881613c8b565b8114613ed357600080fd5b50565b613edf81613c97565b8114613eea57600080fd5b50565b613ef681613ce3565b8114613f0157600080fd5b5056fea26469706673582212207ddbf72b7cbb3f96f6ce64d6d6fd1a3e1ff69ce0119104ea46f4fcdaeb96014b64736f6c63430008000033
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80636352211e116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde146105f0578063c87b56dd14610619578063e985e9c514610656578063f2fde38b14610693576101b7565b806395d89b411461057157806398d5fdca1461059c578063a22cb465146105c7576101b7565b80637d4cb964116100c65780637d4cb964146104e8578063853828b6146105135780638da5cb5b1461051d57806391b7f5ed14610548576101b7565b80636352211e1461045757806370a0823114610494578063715018a6146104d1576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461038b578063438b6300146103b45780634f6ccce7146103f157806355f804b31461042e576101b7565b806323b872dd146103095780632f745c591461033257806340c10f191461036f576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806316c61ccc146102b357806318160ddd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612cc7565b6106bc565b6040516101f0919061373f565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612c9e565b610736565b005b34801561022e57600080fd5b506102376107cf565b604051610244919061375a565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612d5a565b610861565b60405161028191906136b6565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612c62565b6108e6565b005b3480156102bf57600080fd5b506102c86109fe565b6040516102d5919061373f565b60405180910390f35b3480156102ea57600080fd5b506102f3610a11565b6040516103009190613a3c565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190612b5c565b610a1e565b005b34801561033e57600080fd5b5061035960048036038101906103549190612c62565b610a7e565b6040516103669190613a3c565b60405180910390f35b61038960048036038101906103849190612c62565b610b23565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612b5c565b610ce3565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612af7565b610d03565b6040516103e8919061371d565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190612d5a565b610dfd565b6040516104259190613a3c565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190612d19565b610e94565b005b34801561046357600080fd5b5061047e60048036038101906104799190612d5a565b610f2a565b60405161048b91906136b6565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612af7565b610fdc565b6040516104c89190613a3c565b60405180910390f35b3480156104dd57600080fd5b506104e6611094565b005b3480156104f457600080fd5b506104fd61111c565b60405161050a9190613a3c565b60405180910390f35b61051b611122565b005b34801561052957600080fd5b506105326111de565b60405161053f91906136b6565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612d5a565b611208565b005b34801561057d57600080fd5b5061058661128e565b604051610593919061375a565b60405180910390f35b3480156105a857600080fd5b506105b1611320565b6040516105be9190613a3c565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190612c26565b61136f565b005b3480156105fc57600080fd5b5061061760048036038101906106129190612bab565b6114f0565b005b34801561062557600080fd5b50610640600480360381019061063b9190612d5a565b611552565b60405161064d919061375a565b60405180910390f35b34801561066257600080fd5b5061067d60048036038101906106789190612b20565b6115f9565b60405161068a919061373f565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190612af7565b61168d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072f575061072e82611785565b5b9050919050565b61073e611867565b73ffffffffffffffffffffffffffffffffffffffff1661075c6111de565b73ffffffffffffffffffffffffffffffffffffffff16146107b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a99061393c565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546107de90613d2f565b80601f016020809104026020016040519081016040528092919081815260200182805461080a90613d2f565b80156108575780601f1061082c57610100808354040283529160200191610857565b820191906000526020600020905b81548152906001019060200180831161083a57829003601f168201915b5050505050905090565b600061086c8261186f565b6108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a29061391c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f182610f2a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610962576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109599061399c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610981611867565b73ffffffffffffffffffffffffffffffffffffffff1614806109b057506109af816109aa611867565b6115f9565b5b6109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e69061387c565b60405180910390fd5b6109f983836118db565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b610a2f610a29611867565b82611994565b610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a65906139fc565b60405180910390fd5b610a79838383611a72565b505050565b6000610a8983610fdc565b8210610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061377c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610b2d610a11565b9050610b376111de565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c5a57600e60009054906101000a900460ff1615610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb0906138fc565b60405180910390fd5b6001600c54610bc89190613b64565b8210610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c009061385c565b60405180910390fd5b81600d54610c179190613beb565b341015610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c50906139dc565b60405180910390fd5b5b6122b88282610c699190613b64565b1115610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca1906139bc565b60405180910390fd5b60005b82811015610cdd57610cca848284610cc59190613b64565b611cce565b8080610cd590613d61565b915050610cad565b50505050565b610cfe838383604051806020016040528060008152506114f0565b505050565b60606000610d1083610fdc565b905060008167ffffffffffffffff811115610d54577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d825781602001602082028036833780820191505090505b50905060005b82811015610df257610d9a8582610a7e565b828281518110610dd3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610dea90613d61565b915050610d88565b508092505050919050565b6000610e07610a11565b8210610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90613a1c565b60405180910390fd5b60088281548110610e82577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e9c611867565b73ffffffffffffffffffffffffffffffffffffffff16610eba6111de565b73ffffffffffffffffffffffffffffffffffffffff1614610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f079061393c565b60405180910390fd5b80600b9080519060200190610f2692919061291b565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca906138bc565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110449061389c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61109c611867565b73ffffffffffffffffffffffffffffffffffffffff166110ba6111de565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111079061393c565b60405180910390fd5b61111a6000611cec565b565b6122b881565b61112a611867565b73ffffffffffffffffffffffffffffffffffffffff166111486111de565b73ffffffffffffffffffffffffffffffffffffffff161461119e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111959061393c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506111dc57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611210611867565b73ffffffffffffffffffffffffffffffffffffffff1661122e6111de565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b9061393c565b60405180910390fd5b80600d8190555050565b60606001805461129d90613d2f565b80601f01602080910402602001604051908101604052809291908181526020018280546112c990613d2f565b80156113165780601f106112eb57610100808354040283529160200191611316565b820191906000526020600020905b8154815290600101906020018083116112f957829003601f168201915b5050505050905090565b600061132a6111de565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611366576000905061136c565b600d5490505b90565b611377611867565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc9061381c565b60405180910390fd5b80600560006113f2611867565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149f611867565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e4919061373f565b60405180910390a35050565b6115016114fb611867565b83611994565b611540576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611537906139fc565b60405180910390fd5b61154c84848484611db2565b50505050565b606061155d8261186f565b61159c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115939061397c565b60405180910390fd5b60006115a6611e0e565b905060008151116115c657604051806020016040528060008152506115f1565b806115d084611ea0565b6040516020016115e1929190613692565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611695611867565b73ffffffffffffffffffffffffffffffffffffffff166116b36111de565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061393c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611779576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611770906137bc565b60405180910390fd5b61178281611cec565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061185057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611860575061185f8261204d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661194e83610f2a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061199f8261186f565b6119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d59061383c565b60405180910390fd5b60006119e983610f2a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a5857508373ffffffffffffffffffffffffffffffffffffffff16611a4084610861565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a695750611a6881856115f9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a9282610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf9061395c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906137fc565b60405180910390fd5b611b638383836120b7565b611b6e6000826118db565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bbe9190613c45565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c159190613b64565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611ce88282604051806020016040528060008152506121cb565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611dbd848484611a72565b611dc984848484612226565b611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff9061379c565b60405180910390fd5b50505050565b6060600b8054611e1d90613d2f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4990613d2f565b8015611e965780601f10611e6b57610100808354040283529160200191611e96565b820191906000526020600020905b815481529060010190602001808311611e7957829003601f168201915b5050505050905090565b60606000821415611ee8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612048565b600082905060005b60008214611f1a578080611f0390613d61565b915050600a82611f139190613bba565b9150611ef0565b60008167ffffffffffffffff811115611f5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f8e5781602001600182028036833780820191505090505b5090505b6000851461204157600182611fa79190613c45565b9150600a85611fb69190613daa565b6030611fc29190613b64565b60f81b818381518110611ffe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561203a9190613bba565b9450611f92565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120c28383836123bd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561210557612100816123c2565b612144565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461214357612142838261240b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121875761218281612578565b6121c6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121c5576121c482826126bb565b5b5b505050565b6121d5838361273a565b6121e26000848484612226565b612221576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122189061379c565b60405180910390fd5b505050565b60006122478473ffffffffffffffffffffffffffffffffffffffff16612908565b156123b0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612270611867565b8786866040518563ffffffff1660e01b815260040161229294939291906136d1565b602060405180830381600087803b1580156122ac57600080fd5b505af19250505080156122dd57506040513d601f19601f820116820180604052508101906122da9190612cf0565b60015b612360573d806000811461230d576040519150601f19603f3d011682016040523d82523d6000602084013e612312565b606091505b50600081511415612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f9061379c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123b5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161241884610fdc565b6124229190613c45565b9050600060076000848152602001908152602001600020549050818114612507576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061258c9190613c45565b90506000600960008481526020019081526020016000205490506000600883815481106125e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061262a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061269f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006126c683610fdc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a1906138dc565b60405180910390fd5b6127b38161186f565b156127f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ea906137dc565b60405180910390fd5b6127ff600083836120b7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461284f9190613b64565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461292790613d2f565b90600052602060002090601f0160209004810192826129495760008555612990565b82601f1061296257805160ff1916838001178555612990565b82800160010185558215612990579182015b8281111561298f578251825591602001919060010190612974565b5b50905061299d91906129a1565b5090565b5b808211156129ba5760008160009055506001016129a2565b5090565b60006129d16129cc84613a88565b613a57565b9050828152602081018484840111156129e957600080fd5b6129f4848285613ced565b509392505050565b6000612a0f612a0a84613ab8565b613a57565b905082815260208101848484011115612a2757600080fd5b612a32848285613ced565b509392505050565b600081359050612a4981613ea8565b92915050565b600081359050612a5e81613ebf565b92915050565b600081359050612a7381613ed6565b92915050565b600081519050612a8881613ed6565b92915050565b600082601f830112612a9f57600080fd5b8135612aaf8482602086016129be565b91505092915050565b600082601f830112612ac957600080fd5b8135612ad98482602086016129fc565b91505092915050565b600081359050612af181613eed565b92915050565b600060208284031215612b0957600080fd5b6000612b1784828501612a3a565b91505092915050565b60008060408385031215612b3357600080fd5b6000612b4185828601612a3a565b9250506020612b5285828601612a3a565b9150509250929050565b600080600060608486031215612b7157600080fd5b6000612b7f86828701612a3a565b9350506020612b9086828701612a3a565b9250506040612ba186828701612ae2565b9150509250925092565b60008060008060808587031215612bc157600080fd5b6000612bcf87828801612a3a565b9450506020612be087828801612a3a565b9350506040612bf187828801612ae2565b925050606085013567ffffffffffffffff811115612c0e57600080fd5b612c1a87828801612a8e565b91505092959194509250565b60008060408385031215612c3957600080fd5b6000612c4785828601612a3a565b9250506020612c5885828601612a4f565b9150509250929050565b60008060408385031215612c7557600080fd5b6000612c8385828601612a3a565b9250506020612c9485828601612ae2565b9150509250929050565b600060208284031215612cb057600080fd5b6000612cbe84828501612a4f565b91505092915050565b600060208284031215612cd957600080fd5b6000612ce784828501612a64565b91505092915050565b600060208284031215612d0257600080fd5b6000612d1084828501612a79565b91505092915050565b600060208284031215612d2b57600080fd5b600082013567ffffffffffffffff811115612d4557600080fd5b612d5184828501612ab8565b91505092915050565b600060208284031215612d6c57600080fd5b6000612d7a84828501612ae2565b91505092915050565b6000612d8f8383613674565b60208301905092915050565b612da481613c79565b82525050565b6000612db582613af8565b612dbf8185613b26565b9350612dca83613ae8565b8060005b83811015612dfb578151612de28882612d83565b9750612ded83613b19565b925050600181019050612dce565b5085935050505092915050565b612e1181613c8b565b82525050565b6000612e2282613b03565b612e2c8185613b37565b9350612e3c818560208601613cfc565b612e4581613e97565b840191505092915050565b6000612e5b82613b0e565b612e658185613b48565b9350612e75818560208601613cfc565b612e7e81613e97565b840191505092915050565b6000612e9482613b0e565b612e9e8185613b59565b9350612eae818560208601613cfc565b80840191505092915050565b6000612ec7602b83613b48565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612f2d603283613b48565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612f93602683613b48565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ff9601c83613b48565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613039602483613b48565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061309f601983613b48565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006130df602c83613b48565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613145602983613b48565b91507f596f752063616e2061646f70742061206d6178696d756d206f66205f6d61784d60008301527f696e7420596f64617300000000000000000000000000000000000000000000006020830152604082019050919050565b60006131ab603883613b48565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613211602a83613b48565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613277602983613b48565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006132dd602083613b48565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061331d600b83613b48565b91507f53616c65205061757365640000000000000000000000000000000000000000006000830152602082019050919050565b600061335d602c83613b48565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006133c3602083613b48565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613403602983613b48565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613469602f83613b48565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006134cf602183613b48565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613535601683613b48565b91507f45786365656473206d6178696d756d20737570706c79000000000000000000006000830152602082019050919050565b6000613575601983613b48565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b60006135b5603183613b48565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061361b602c83613b48565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61367d81613ce3565b82525050565b61368c81613ce3565b82525050565b600061369e8285612e89565b91506136aa8284612e89565b91508190509392505050565b60006020820190506136cb6000830184612d9b565b92915050565b60006080820190506136e66000830187612d9b565b6136f36020830186612d9b565b6137006040830185613683565b81810360608301526137128184612e17565b905095945050505050565b600060208201905081810360008301526137378184612daa565b905092915050565b60006020820190506137546000830184612e08565b92915050565b600060208201905081810360008301526137748184612e50565b905092915050565b6000602082019050818103600083015261379581612eba565b9050919050565b600060208201905081810360008301526137b581612f20565b9050919050565b600060208201905081810360008301526137d581612f86565b9050919050565b600060208201905081810360008301526137f581612fec565b9050919050565b600060208201905081810360008301526138158161302c565b9050919050565b6000602082019050818103600083015261383581613092565b9050919050565b60006020820190508181036000830152613855816130d2565b9050919050565b6000602082019050818103600083015261387581613138565b9050919050565b600060208201905081810360008301526138958161319e565b9050919050565b600060208201905081810360008301526138b581613204565b9050919050565b600060208201905081810360008301526138d58161326a565b9050919050565b600060208201905081810360008301526138f5816132d0565b9050919050565b6000602082019050818103600083015261391581613310565b9050919050565b6000602082019050818103600083015261393581613350565b9050919050565b60006020820190508181036000830152613955816133b6565b9050919050565b60006020820190508181036000830152613975816133f6565b9050919050565b600060208201905081810360008301526139958161345c565b9050919050565b600060208201905081810360008301526139b5816134c2565b9050919050565b600060208201905081810360008301526139d581613528565b9050919050565b600060208201905081810360008301526139f581613568565b9050919050565b60006020820190508181036000830152613a15816135a8565b9050919050565b60006020820190508181036000830152613a358161360e565b9050919050565b6000602082019050613a516000830184613683565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613a7e57613a7d613e68565b5b8060405250919050565b600067ffffffffffffffff821115613aa357613aa2613e68565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ad357613ad2613e68565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b6f82613ce3565b9150613b7a83613ce3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613baf57613bae613ddb565b5b828201905092915050565b6000613bc582613ce3565b9150613bd083613ce3565b925082613be057613bdf613e0a565b5b828204905092915050565b6000613bf682613ce3565b9150613c0183613ce3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c3a57613c39613ddb565b5b828202905092915050565b6000613c5082613ce3565b9150613c5b83613ce3565b925082821015613c6e57613c6d613ddb565b5b828203905092915050565b6000613c8482613cc3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d1a578082015181840152602081019050613cff565b83811115613d29576000848401525b50505050565b60006002820490506001821680613d4757607f821691505b60208210811415613d5b57613d5a613e39565b5b50919050565b6000613d6c82613ce3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d9f57613d9e613ddb565b5b600182019050919050565b6000613db582613ce3565b9150613dc083613ce3565b925082613dd057613dcf613e0a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613eb181613c79565b8114613ebc57600080fd5b50565b613ec881613c8b565b8114613ed357600080fd5b50565b613edf81613c97565b8114613eea57600080fd5b50565b613ef681613ce3565b8114613f0157600080fd5b5056fea26469706673582212207ddbf72b7cbb3f96f6ce64d6d6fd1a3e1ff69ce0119104ea46f4fcdaeb96014b64736f6c63430008000033
Deployed Bytecode Sourcemap
43176:1962:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34700:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44930:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21605:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23164:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22687:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43379:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35340:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24054:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35008:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43547:532;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24464:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44087:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35530:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44820:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21299:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21029:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42495:94;;;;;;;;;;;;;:::i;:::-;;43413:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45012:123;;;:::i;:::-;;41844:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44597:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21774:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44437:152;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23457:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24720:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21949:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23823:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42744:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34700:224;34802:4;34841:35;34826:50;;;:11;:50;;;;:90;;;;34880:36;34904:11;34880:23;:36::i;:::-;34826:90;34819:97;;34700:224;;;:::o;44930:74::-;42075:12;:10;:12::i;:::-;42064:23;;:7;:5;:7::i;:::-;:23;;;42056:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44993:3:::1;44983:7;;:13;;;;;;;;;;;;;;;;;;44930:74:::0;:::o;21605:100::-;21659:13;21692:5;21685:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21605:100;:::o;23164:221::-;23240:7;23268:16;23276:7;23268;:16::i;:::-;23260:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23353:15;:24;23369:7;23353:24;;;;;;;;;;;;;;;;;;;;;23346:31;;23164:221;;;:::o;22687:411::-;22768:13;22784:23;22799:7;22784:14;:23::i;:::-;22768:39;;22832:5;22826:11;;:2;:11;;;;22818:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22926:5;22910:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22935:37;22952:5;22959:12;:10;:12::i;:::-;22935:16;:37::i;:::-;22910:62;22888:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23069:21;23078:2;23082:7;23069:8;:21::i;:::-;22687:411;;;:::o;43379:27::-;;;;;;;;;;;;;:::o;35340:113::-;35401:7;35428:10;:17;;;;35421:24;;35340:113;:::o;24054:339::-;24249:41;24268:12;:10;:12::i;:::-;24282:7;24249:18;:41::i;:::-;24241:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24357:28;24367:4;24373:2;24377:7;24357:9;:28::i;:::-;24054:339;;;:::o;35008:256::-;35105:7;35141:23;35158:5;35141:16;:23::i;:::-;35133:5;:31;35125:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35230:12;:19;35243:5;35230:19;;;;;;;;;;;;;;;:26;35250:5;35230:26;;;;;;;;;;;;35223:33;;35008:256;;;;:::o;43547:532::-;43613:14;43630:13;:11;:13::i;:::-;43613:30;;43673:7;:5;:7::i;:::-;43659:21;;:10;:21;;;43656:246;;43704:7;;;;;;;;;;;43703:8;43695:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;43765:1;43756:8;;:10;;;;:::i;:::-;43749:3;:18;43740:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43857:3;43848:6;;:12;;;;:::i;:::-;43835:9;:25;;43826:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43656:246;43448:4;43932:3;43923:6;:12;;;;:::i;:::-;:27;;43914:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43995:9;43991:81;44010:3;44006:1;:7;43991:81;;;44032:28;44043:3;44057:1;44048:6;:10;;;;:::i;:::-;44032:9;:28::i;:::-;44015:3;;;;;:::i;:::-;;;;43991:81;;;;43547:532;;;:::o;24464:185::-;24602:39;24619:4;24625:2;24629:7;24602:39;;;;;;;;;;;;:16;:39::i;:::-;24464:185;;;:::o;44087:342::-;44146:16;44175:18;44196:17;44206:6;44196:9;:17::i;:::-;44175:38;;44226:25;44268:10;44254:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44226:53;;44294:9;44290:106;44309:10;44305:1;:14;44290:106;;;44354:30;44374:6;44382:1;44354:19;:30::i;:::-;44340:8;44349:1;44340:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;44321:3;;;;;:::i;:::-;;;;44290:106;;;;44413:8;44406:15;;;;44087:342;;;:::o;35530:233::-;35605:7;35641:30;:28;:30::i;:::-;35633:5;:38;35625:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35738:10;35749:5;35738:17;;;;;;;;;;;;;;;;;;;;;;;;35731:24;;35530:233;;;:::o;44820:102::-;42075:12;:10;:12::i;:::-;42064:23;;:7;:5;:7::i;:::-;:23;;;42056:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44907:7:::1;44891:13;:23;;;;;;;;;;;;:::i;:::-;;44820:102:::0;:::o;21299:239::-;21371:7;21391:13;21407:7;:16;21415:7;21407:16;;;;;;;;;;;;;;;;;;;;;21391:32;;21459:1;21442:19;;:5;:19;;;;21434:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21525:5;21518:12;;;21299:239;;;:::o;21029:208::-;21101:7;21146:1;21129:19;;:5;:19;;;;21121:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21213:9;:16;21223:5;21213:16;;;;;;;;;;;;;;;;21206:23;;21029:208;;;:::o;42495:94::-;42075:12;:10;:12::i;:::-;42064:23;;:7;:5;:7::i;:::-;:23;;;42056:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42560:21:::1;42578:1;42560:9;:21::i;:::-;42495:94::o:0;43413:39::-;43448:4;43413:39;:::o;45012:123::-;42075:12;:10;:12::i;:::-;42064:23;;:7;:5;:7::i;:::-;:23;;;42056:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45087:10:::1;45079:24;;:47;45104:21;45079:47;;;;;;;;;;;;;;;;;;;;;;;45071:56;;;::::0;::::1;;45012:123::o:0;41844:87::-;41890:7;41917:6;;;;;;;;;;;41910:13;;41844:87;:::o;44597:93::-;42075:12;:10;:12::i;:::-;42064:23;;:7;:5;:7::i;:::-;:23;;;42056:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44673:9:::1;44664:6;:18;;;;44597:93:::0;:::o;21774:104::-;21830:13;21863:7;21856:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21774:104;:::o;44437:152::-;44478:7;44514;:5;:7::i;:::-;44500:21;;:10;:21;;;44497:61;;;44545:1;44538:8;;;;44497:61;44575:6;;44568:13;;44437:152;;:::o;23457:295::-;23572:12;:10;:12::i;:::-;23560:24;;:8;:24;;;;23552:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23672:8;23627:18;:32;23646:12;:10;:12::i;:::-;23627:32;;;;;;;;;;;;;;;:42;23660:8;23627:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23725:8;23696:48;;23711:12;:10;:12::i;:::-;23696:48;;;23735:8;23696:48;;;;;;:::i;:::-;;;;;;;;23457:295;;:::o;24720:328::-;24895:41;24914:12;:10;:12::i;:::-;24928:7;24895:18;:41::i;:::-;24887:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25001:39;25015:4;25021:2;25025:7;25034:5;25001:13;:39::i;:::-;24720:328;;;;:::o;21949:334::-;22022:13;22056:16;22064:7;22056;:16::i;:::-;22048:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22137:21;22161:10;:8;:10::i;:::-;22137:34;;22213:1;22195:7;22189:21;:25;:86;;;;;;;;;;;;;;;;;22241:7;22250:18;:7;:16;:18::i;:::-;22224:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22189:86;22182:93;;;21949:334;;;:::o;23823:164::-;23920:4;23944:18;:25;23963:5;23944:25;;;;;;;;;;;;;;;:35;23970:8;23944:35;;;;;;;;;;;;;;;;;;;;;;;;;23937:42;;23823:164;;;;:::o;42744:192::-;42075:12;:10;:12::i;:::-;42064:23;;:7;:5;:7::i;:::-;:23;;;42056:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42853:1:::1;42833:22;;:8;:22;;;;42825:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42909:19;42919:8;42909:9;:19::i;:::-;42744:192:::0;:::o;20660:305::-;20762:4;20814:25;20799:40;;;:11;:40;;;;:105;;;;20871:33;20856:48;;;:11;:48;;;;20799:105;:158;;;;20921:36;20945:11;20921:23;:36::i;:::-;20799:158;20779:178;;20660:305;;;:::o;16088:98::-;16141:7;16168:10;16161:17;;16088:98;:::o;26558:127::-;26623:4;26675:1;26647:30;;:7;:16;26655:7;26647:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26640:37;;26558:127;;;:::o;30540:174::-;30642:2;30615:15;:24;30631:7;30615:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30698:7;30694:2;30660:46;;30669:23;30684:7;30669:14;:23::i;:::-;30660:46;;;;;;;;;;;;30540:174;;:::o;26852:348::-;26945:4;26970:16;26978:7;26970;:16::i;:::-;26962:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27046:13;27062:23;27077:7;27062:14;:23::i;:::-;27046:39;;27115:5;27104:16;;:7;:16;;;:51;;;;27148:7;27124:31;;:20;27136:7;27124:11;:20::i;:::-;:31;;;27104:51;:87;;;;27159:32;27176:5;27183:7;27159:16;:32::i;:::-;27104:87;27096:96;;;26852:348;;;;:::o;29844:578::-;30003:4;29976:31;;:23;29991:7;29976:14;:23::i;:::-;:31;;;29968:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30086:1;30072:16;;:2;:16;;;;30064:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30142:39;30163:4;30169:2;30173:7;30142:20;:39::i;:::-;30246:29;30263:1;30267:7;30246:8;:29::i;:::-;30307:1;30288:9;:15;30298:4;30288:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30336:1;30319:9;:13;30329:2;30319:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30367:2;30348:7;:16;30356:7;30348:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30406:7;30402:2;30387:27;;30396:4;30387:27;;;;;;;;;;;;29844:578;;;:::o;27542:110::-;27618:26;27628:2;27632:7;27618:26;;;;;;;;;;;;:9;:26::i;:::-;27542:110;;:::o;42944:173::-;43000:16;43019:6;;;;;;;;;;;43000:25;;43045:8;43036:6;;:17;;;;;;;;;;;;;;;;;;43100:8;43069:40;;43090:8;43069:40;;;;;;;;;;;;42944:173;;:::o;25930:315::-;26087:28;26097:4;26103:2;26107:7;26087:9;:28::i;:::-;26134:48;26157:4;26163:2;26167:7;26176:5;26134:22;:48::i;:::-;26126:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25930:315;;;;:::o;44698:114::-;44758:13;44791;44784:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44698:114;:::o;16611:723::-;16667:13;16897:1;16888:5;:10;16884:53;;;16915:10;;;;;;;;;;;;;;;;;;;;;16884:53;16947:12;16962:5;16947:20;;16978:14;17003:78;17018:1;17010:4;:9;17003:78;;17036:8;;;;;:::i;:::-;;;;17067:2;17059:10;;;;;:::i;:::-;;;17003:78;;;17091:19;17123:6;17113:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17091:39;;17141:154;17157:1;17148:5;:10;17141:154;;17185:1;17175:11;;;;;:::i;:::-;;;17252:2;17244:5;:10;;;;:::i;:::-;17231:2;:24;;;;:::i;:::-;17218:39;;17201:6;17208;17201:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17281:2;17272:11;;;;;:::i;:::-;;;17141:154;;;17319:6;17305:21;;;;;16611:723;;;;:::o;19166:157::-;19251:4;19290:25;19275:40;;;:11;:40;;;;19268:47;;19166:157;;;:::o;36376:589::-;36520:45;36547:4;36553:2;36557:7;36520:26;:45::i;:::-;36598:1;36582:18;;:4;:18;;;36578:187;;;36617:40;36649:7;36617:31;:40::i;:::-;36578:187;;;36687:2;36679:10;;:4;:10;;;36675:90;;36706:47;36739:4;36745:7;36706:32;:47::i;:::-;36675:90;36578:187;36793:1;36779:16;;:2;:16;;;36775:183;;;36812:45;36849:7;36812:36;:45::i;:::-;36775:183;;;36885:4;36879:10;;:2;:10;;;36875:83;;36906:40;36934:2;36938:7;36906:27;:40::i;:::-;36875:83;36775:183;36376:589;;;:::o;27879:321::-;28009:18;28015:2;28019:7;28009:5;:18::i;:::-;28060:54;28091:1;28095:2;28099:7;28108:5;28060:22;:54::i;:::-;28038:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27879:321;;;:::o;31279:799::-;31434:4;31455:15;:2;:13;;;:15::i;:::-;31451:620;;;31507:2;31491:36;;;31528:12;:10;:12::i;:::-;31542:4;31548:7;31557:5;31491:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31487:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31750:1;31733:6;:13;:18;31729:272;;;31776:60;;;;;;;;;;:::i;:::-;;;;;;;;31729:272;31951:6;31945:13;31936:6;31932:2;31928:15;31921:38;31487:529;31624:41;;;31614:51;;;:6;:51;;;;31607:58;;;;;31451:620;32055:4;32048:11;;31279:799;;;;;;;:::o;32650:126::-;;;;:::o;37688:164::-;37792:10;:17;;;;37765:15;:24;37781:7;37765:24;;;;;;;;;;;:44;;;;37820:10;37836:7;37820:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37688:164;:::o;38479:988::-;38745:22;38795:1;38770:22;38787:4;38770:16;:22::i;:::-;:26;;;;:::i;:::-;38745:51;;38807:18;38828:17;:26;38846:7;38828:26;;;;;;;;;;;;38807:47;;38975:14;38961:10;:28;38957:328;;39006:19;39028:12;:18;39041:4;39028:18;;;;;;;;;;;;;;;:34;39047:14;39028:34;;;;;;;;;;;;39006:56;;39112:11;39079:12;:18;39092:4;39079:18;;;;;;;;;;;;;;;:30;39098:10;39079:30;;;;;;;;;;;:44;;;;39229:10;39196:17;:30;39214:11;39196:30;;;;;;;;;;;:43;;;;38957:328;;39381:17;:26;39399:7;39381:26;;;;;;;;;;;39374:33;;;39425:12;:18;39438:4;39425:18;;;;;;;;;;;;;;;:34;39444:14;39425:34;;;;;;;;;;;39418:41;;;38479:988;;;;:::o;39762:1079::-;40015:22;40060:1;40040:10;:17;;;;:21;;;;:::i;:::-;40015:46;;40072:18;40093:15;:24;40109:7;40093:24;;;;;;;;;;;;40072:45;;40444:19;40466:10;40477:14;40466:26;;;;;;;;;;;;;;;;;;;;;;;;40444:48;;40530:11;40505:10;40516;40505:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40641:10;40610:15;:28;40626:11;40610:28;;;;;;;;;;;:41;;;;40782:15;:24;40798:7;40782:24;;;;;;;;;;;40775:31;;;40817:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39762:1079;;;;:::o;37266:221::-;37351:14;37368:20;37385:2;37368:16;:20::i;:::-;37351:37;;37426:7;37399:12;:16;37412:2;37399:16;;;;;;;;;;;;;;;:24;37416:6;37399:24;;;;;;;;;;;:34;;;;37473:6;37444:17;:26;37462:7;37444:26;;;;;;;;;;;:35;;;;37266:221;;;:::o;28536:382::-;28630:1;28616:16;;:2;:16;;;;28608:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28689:16;28697:7;28689;:16::i;:::-;28688:17;28680:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28751:45;28780:1;28784:2;28788:7;28751:20;:45::i;:::-;28826:1;28809:9;:13;28819:2;28809:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28857:2;28838:7;:16;28846:7;28838:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28902:7;28898:2;28877:33;;28894:1;28877:33;;;;;;;;;;;;28536:382;;:::o;8134:387::-;8194:4;8402:12;8469:7;8457:20;8449:28;;8512:1;8505:4;:8;8498:15;;;8134:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:179::-;;6436:46;6478:3;6470:6;6436:46;:::i;:::-;6514:4;6509:3;6505:14;6491:28;;6426:99;;;;:::o;6531:118::-;6618:24;6636:5;6618:24;:::i;:::-;6613:3;6606:37;6596:53;;:::o;6685:732::-;;6833:54;6881:5;6833:54;:::i;:::-;6903:86;6982:6;6977:3;6903:86;:::i;:::-;6896:93;;7013:56;7063:5;7013:56;:::i;:::-;7092:7;7123:1;7108:284;7133:6;7130:1;7127:13;7108:284;;;7209:6;7203:13;7236:63;7295:3;7280:13;7236:63;:::i;:::-;7229:70;;7322:60;7375:6;7322:60;:::i;:::-;7312:70;;7168:224;7155:1;7152;7148:9;7143:14;;7108:284;;;7112:14;7408:3;7401:10;;6809:608;;;;;;;:::o;7423:109::-;7504:21;7519:5;7504:21;:::i;:::-;7499:3;7492:34;7482:50;;:::o;7538:360::-;;7652:38;7684:5;7652:38;:::i;:::-;7706:70;7769:6;7764:3;7706:70;:::i;:::-;7699:77;;7785:52;7830:6;7825:3;7818:4;7811:5;7807:16;7785:52;:::i;:::-;7862:29;7884:6;7862:29;:::i;:::-;7857:3;7853:39;7846:46;;7628:270;;;;;:::o;7904:364::-;;8020:39;8053:5;8020:39;:::i;:::-;8075:71;8139:6;8134:3;8075:71;:::i;:::-;8068:78;;8155:52;8200:6;8195:3;8188:4;8181:5;8177:16;8155:52;:::i;:::-;8232:29;8254:6;8232:29;:::i;:::-;8227:3;8223:39;8216:46;;7996:272;;;;;:::o;8274:377::-;;8408:39;8441:5;8408:39;:::i;:::-;8463:89;8545:6;8540:3;8463:89;:::i;:::-;8456:96;;8561:52;8606:6;8601:3;8594:4;8587:5;8583:16;8561:52;:::i;:::-;8638:6;8633:3;8629:16;8622:23;;8384:267;;;;;:::o;8657:375::-;;8820:67;8884:2;8879:3;8820:67;:::i;:::-;8813:74;;8917:34;8913:1;8908:3;8904:11;8897:55;8983:13;8978:2;8973:3;8969:12;8962:35;9023:2;9018:3;9014:12;9007:19;;8803:229;;;:::o;9038:382::-;;9201:67;9265:2;9260:3;9201:67;:::i;:::-;9194:74;;9298:34;9294:1;9289:3;9285:11;9278:55;9364:20;9359:2;9354:3;9350:12;9343:42;9411:2;9406:3;9402:12;9395:19;;9184:236;;;:::o;9426:370::-;;9589:67;9653:2;9648:3;9589:67;:::i;:::-;9582:74;;9686:34;9682:1;9677:3;9673:11;9666:55;9752:8;9747:2;9742:3;9738:12;9731:30;9787:2;9782:3;9778:12;9771:19;;9572:224;;;:::o;9802:326::-;;9965:67;10029:2;10024:3;9965:67;:::i;:::-;9958:74;;10062:30;10058:1;10053:3;10049:11;10042:51;10119:2;10114:3;10110:12;10103:19;;9948:180;;;:::o;10134:368::-;;10297:67;10361:2;10356:3;10297:67;:::i;:::-;10290:74;;10394:34;10390:1;10385:3;10381:11;10374:55;10460:6;10455:2;10450:3;10446:12;10439:28;10493:2;10488:3;10484:12;10477:19;;10280:222;;;:::o;10508:323::-;;10671:67;10735:2;10730:3;10671:67;:::i;:::-;10664:74;;10768:27;10764:1;10759:3;10755:11;10748:48;10822:2;10817:3;10813:12;10806:19;;10654:177;;;:::o;10837:376::-;;11000:67;11064:2;11059:3;11000:67;:::i;:::-;10993:74;;11097:34;11093:1;11088:3;11084:11;11077:55;11163:14;11158:2;11153:3;11149:12;11142:36;11204:2;11199:3;11195:12;11188:19;;10983:230;;;:::o;11219:373::-;;11382:67;11446:2;11441:3;11382:67;:::i;:::-;11375:74;;11479:34;11475:1;11470:3;11466:11;11459:55;11545:11;11540:2;11535:3;11531:12;11524:33;11583:2;11578:3;11574:12;11567:19;;11365:227;;;:::o;11598:388::-;;11761:67;11825:2;11820:3;11761:67;:::i;:::-;11754:74;;11858:34;11854:1;11849:3;11845:11;11838:55;11924:26;11919:2;11914:3;11910:12;11903:48;11977:2;11972:3;11968:12;11961:19;;11744:242;;;:::o;11992:374::-;;12155:67;12219:2;12214:3;12155:67;:::i;:::-;12148:74;;12252:34;12248:1;12243:3;12239:11;12232:55;12318:12;12313:2;12308:3;12304:12;12297:34;12357:2;12352:3;12348:12;12341:19;;12138:228;;;:::o;12372:373::-;;12535:67;12599:2;12594:3;12535:67;:::i;:::-;12528:74;;12632:34;12628:1;12623:3;12619:11;12612:55;12698:11;12693:2;12688:3;12684:12;12677:33;12736:2;12731:3;12727:12;12720:19;;12518:227;;;:::o;12751:330::-;;12914:67;12978:2;12973:3;12914:67;:::i;:::-;12907:74;;13011:34;13007:1;13002:3;12998:11;12991:55;13072:2;13067:3;13063:12;13056:19;;12897:184;;;:::o;13087:309::-;;13250:67;13314:2;13309:3;13250:67;:::i;:::-;13243:74;;13347:13;13343:1;13338:3;13334:11;13327:34;13387:2;13382:3;13378:12;13371:19;;13233:163;;;:::o;13402:376::-;;13565:67;13629:2;13624:3;13565:67;:::i;:::-;13558:74;;13662:34;13658:1;13653:3;13649:11;13642:55;13728:14;13723:2;13718:3;13714:12;13707:36;13769:2;13764:3;13760:12;13753:19;;13548:230;;;:::o;13784:330::-;;13947:67;14011:2;14006:3;13947:67;:::i;:::-;13940:74;;14044:34;14040:1;14035:3;14031:11;14024:55;14105:2;14100:3;14096:12;14089:19;;13930:184;;;:::o;14120:373::-;;14283:67;14347:2;14342:3;14283:67;:::i;:::-;14276:74;;14380:34;14376:1;14371:3;14367:11;14360:55;14446:11;14441:2;14436:3;14432:12;14425:33;14484:2;14479:3;14475:12;14468:19;;14266:227;;;:::o;14499:379::-;;14662:67;14726:2;14721:3;14662:67;:::i;:::-;14655:74;;14759:34;14755:1;14750:3;14746:11;14739:55;14825:17;14820:2;14815:3;14811:12;14804:39;14869:2;14864:3;14860:12;14853:19;;14645:233;;;:::o;14884:365::-;;15047:67;15111:2;15106:3;15047:67;:::i;:::-;15040:74;;15144:34;15140:1;15135:3;15131:11;15124:55;15210:3;15205:2;15200:3;15196:12;15189:25;15240:2;15235:3;15231:12;15224:19;;15030:219;;;:::o;15255:320::-;;15418:67;15482:2;15477:3;15418:67;:::i;:::-;15411:74;;15515:24;15511:1;15506:3;15502:11;15495:45;15566:2;15561:3;15557:12;15550:19;;15401:174;;;:::o;15581:323::-;;15744:67;15808:2;15803:3;15744:67;:::i;:::-;15737:74;;15841:27;15837:1;15832:3;15828:11;15821:48;15895:2;15890:3;15886:12;15879:19;;15727:177;;;:::o;15910:381::-;;16073:67;16137:2;16132:3;16073:67;:::i;:::-;16066:74;;16170:34;16166:1;16161:3;16157:11;16150:55;16236:19;16231:2;16226:3;16222:12;16215:41;16282:2;16277:3;16273:12;16266:19;;16056:235;;;:::o;16297:376::-;;16460:67;16524:2;16519:3;16460:67;:::i;:::-;16453:74;;16557:34;16553:1;16548:3;16544:11;16537:55;16623:14;16618:2;16613:3;16609:12;16602:36;16664:2;16659:3;16655:12;16648:19;;16443:230;;;:::o;16679:108::-;16756:24;16774:5;16756:24;:::i;:::-;16751:3;16744:37;16734:53;;:::o;16793:118::-;16880:24;16898:5;16880:24;:::i;:::-;16875:3;16868:37;16858:53;;:::o;16917:435::-;;17119:95;17210:3;17201:6;17119:95;:::i;:::-;17112:102;;17231:95;17322:3;17313:6;17231:95;:::i;:::-;17224:102;;17343:3;17336:10;;17101:251;;;;;:::o;17358:222::-;;17489:2;17478:9;17474:18;17466:26;;17502:71;17570:1;17559:9;17555:17;17546:6;17502:71;:::i;:::-;17456:124;;;;:::o;17586:640::-;;17819:3;17808:9;17804:19;17796:27;;17833:71;17901:1;17890:9;17886:17;17877:6;17833:71;:::i;:::-;17914:72;17982:2;17971:9;17967:18;17958:6;17914:72;:::i;:::-;17996;18064:2;18053:9;18049:18;18040:6;17996:72;:::i;:::-;18115:9;18109:4;18105:20;18100:2;18089:9;18085:18;18078:48;18143:76;18214:4;18205:6;18143:76;:::i;:::-;18135:84;;17786:440;;;;;;;:::o;18232:373::-;;18413:2;18402:9;18398:18;18390:26;;18462:9;18456:4;18452:20;18448:1;18437:9;18433:17;18426:47;18490:108;18593:4;18584:6;18490:108;:::i;:::-;18482:116;;18380:225;;;;:::o;18611:210::-;;18736:2;18725:9;18721:18;18713:26;;18749:65;18811:1;18800:9;18796:17;18787:6;18749:65;:::i;:::-;18703:118;;;;:::o;18827:313::-;;18978:2;18967:9;18963:18;18955:26;;19027:9;19021:4;19017:20;19013:1;19002:9;18998:17;18991:47;19055:78;19128:4;19119:6;19055:78;:::i;:::-;19047:86;;18945:195;;;;:::o;19146:419::-;;19350:2;19339:9;19335:18;19327:26;;19399:9;19393:4;19389:20;19385:1;19374:9;19370:17;19363:47;19427:131;19553:4;19427:131;:::i;:::-;19419:139;;19317:248;;;:::o;19571:419::-;;19775:2;19764:9;19760:18;19752:26;;19824:9;19818:4;19814:20;19810:1;19799:9;19795:17;19788:47;19852:131;19978:4;19852:131;:::i;:::-;19844:139;;19742:248;;;:::o;19996:419::-;;20200:2;20189:9;20185:18;20177:26;;20249:9;20243:4;20239:20;20235:1;20224:9;20220:17;20213:47;20277:131;20403:4;20277:131;:::i;:::-;20269:139;;20167:248;;;:::o;20421:419::-;;20625:2;20614:9;20610:18;20602:26;;20674:9;20668:4;20664:20;20660:1;20649:9;20645:17;20638:47;20702:131;20828:4;20702:131;:::i;:::-;20694:139;;20592:248;;;:::o;20846:419::-;;21050:2;21039:9;21035:18;21027:26;;21099:9;21093:4;21089:20;21085:1;21074:9;21070:17;21063:47;21127:131;21253:4;21127:131;:::i;:::-;21119:139;;21017:248;;;:::o;21271:419::-;;21475:2;21464:9;21460:18;21452:26;;21524:9;21518:4;21514:20;21510:1;21499:9;21495:17;21488:47;21552:131;21678:4;21552:131;:::i;:::-;21544:139;;21442:248;;;:::o;21696:419::-;;21900:2;21889:9;21885:18;21877:26;;21949:9;21943:4;21939:20;21935:1;21924:9;21920:17;21913:47;21977:131;22103:4;21977:131;:::i;:::-;21969:139;;21867:248;;;:::o;22121:419::-;;22325:2;22314:9;22310:18;22302:26;;22374:9;22368:4;22364:20;22360:1;22349:9;22345:17;22338:47;22402:131;22528:4;22402:131;:::i;:::-;22394:139;;22292:248;;;:::o;22546:419::-;;22750:2;22739:9;22735:18;22727:26;;22799:9;22793:4;22789:20;22785:1;22774:9;22770:17;22763:47;22827:131;22953:4;22827:131;:::i;:::-;22819:139;;22717:248;;;:::o;22971:419::-;;23175:2;23164:9;23160:18;23152:26;;23224:9;23218:4;23214:20;23210:1;23199:9;23195:17;23188:47;23252:131;23378:4;23252:131;:::i;:::-;23244:139;;23142:248;;;:::o;23396:419::-;;23600:2;23589:9;23585:18;23577:26;;23649:9;23643:4;23639:20;23635:1;23624:9;23620:17;23613:47;23677:131;23803:4;23677:131;:::i;:::-;23669:139;;23567:248;;;:::o;23821:419::-;;24025:2;24014:9;24010:18;24002:26;;24074:9;24068:4;24064:20;24060:1;24049:9;24045:17;24038:47;24102:131;24228:4;24102:131;:::i;:::-;24094:139;;23992:248;;;:::o;24246:419::-;;24450:2;24439:9;24435:18;24427:26;;24499:9;24493:4;24489:20;24485:1;24474:9;24470:17;24463:47;24527:131;24653:4;24527:131;:::i;:::-;24519:139;;24417:248;;;:::o;24671:419::-;;24875:2;24864:9;24860:18;24852:26;;24924:9;24918:4;24914:20;24910:1;24899:9;24895:17;24888:47;24952:131;25078:4;24952:131;:::i;:::-;24944:139;;24842:248;;;:::o;25096:419::-;;25300:2;25289:9;25285:18;25277:26;;25349:9;25343:4;25339:20;25335:1;25324:9;25320:17;25313:47;25377:131;25503:4;25377:131;:::i;:::-;25369:139;;25267:248;;;:::o;25521:419::-;;25725:2;25714:9;25710:18;25702:26;;25774:9;25768:4;25764:20;25760:1;25749:9;25745:17;25738:47;25802:131;25928:4;25802:131;:::i;:::-;25794:139;;25692:248;;;:::o;25946:419::-;;26150:2;26139:9;26135:18;26127:26;;26199:9;26193:4;26189:20;26185:1;26174:9;26170:17;26163:47;26227:131;26353:4;26227:131;:::i;:::-;26219:139;;26117:248;;;:::o;26371:419::-;;26575:2;26564:9;26560:18;26552:26;;26624:9;26618:4;26614:20;26610:1;26599:9;26595:17;26588:47;26652:131;26778:4;26652:131;:::i;:::-;26644:139;;26542:248;;;:::o;26796:419::-;;27000:2;26989:9;26985:18;26977:26;;27049:9;27043:4;27039:20;27035:1;27024:9;27020:17;27013:47;27077:131;27203:4;27077:131;:::i;:::-;27069:139;;26967:248;;;:::o;27221:419::-;;27425:2;27414:9;27410:18;27402:26;;27474:9;27468:4;27464:20;27460:1;27449:9;27445:17;27438:47;27502:131;27628:4;27502:131;:::i;:::-;27494:139;;27392:248;;;:::o;27646:419::-;;27850:2;27839:9;27835:18;27827:26;;27899:9;27893:4;27889:20;27885:1;27874:9;27870:17;27863:47;27927:131;28053:4;27927:131;:::i;:::-;27919:139;;27817:248;;;:::o;28071:419::-;;28275:2;28264:9;28260:18;28252:26;;28324:9;28318:4;28314:20;28310:1;28299:9;28295:17;28288:47;28352:131;28478:4;28352:131;:::i;:::-;28344:139;;28242:248;;;:::o;28496:222::-;;28627:2;28616:9;28612:18;28604:26;;28640:71;28708:1;28697:9;28693:17;28684:6;28640:71;:::i;:::-;28594:124;;;;:::o;28724:283::-;;28790:2;28784:9;28774:19;;28832:4;28824:6;28820:17;28939:6;28927:10;28924:22;28903:18;28891:10;28888:34;28885:62;28882:2;;;28950:18;;:::i;:::-;28882:2;28990:10;28986:2;28979:22;28764:243;;;;:::o;29013:331::-;;29164:18;29156:6;29153:30;29150:2;;;29186:18;;:::i;:::-;29150:2;29271:4;29267:9;29260:4;29252:6;29248:17;29244:33;29236:41;;29332:4;29326;29322:15;29314:23;;29079:265;;;:::o;29350:332::-;;29502:18;29494:6;29491:30;29488:2;;;29524:18;;:::i;:::-;29488:2;29609:4;29605:9;29598:4;29590:6;29586:17;29582:33;29574:41;;29670:4;29664;29660:15;29652:23;;29417:265;;;:::o;29688:132::-;;29778:3;29770:11;;29808:4;29803:3;29799:14;29791:22;;29760:60;;;:::o;29826:114::-;;29927:5;29921:12;29911:22;;29900:40;;;:::o;29946:98::-;;30031:5;30025:12;30015:22;;30004:40;;;:::o;30050:99::-;;30136:5;30130:12;30120:22;;30109:40;;;:::o;30155:113::-;;30257:4;30252:3;30248:14;30240:22;;30230:38;;;:::o;30274:184::-;;30407:6;30402:3;30395:19;30447:4;30442:3;30438:14;30423:29;;30385:73;;;;:::o;30464:168::-;;30581:6;30576:3;30569:19;30621:4;30616:3;30612:14;30597:29;;30559:73;;;;:::o;30638:169::-;;30756:6;30751:3;30744:19;30796:4;30791:3;30787:14;30772:29;;30734:73;;;;:::o;30813:148::-;;30952:3;30937:18;;30927:34;;;;:::o;30967:305::-;;31026:20;31044:1;31026:20;:::i;:::-;31021:25;;31060:20;31078:1;31060:20;:::i;:::-;31055:25;;31214:1;31146:66;31142:74;31139:1;31136:81;31133:2;;;31220:18;;:::i;:::-;31133:2;31264:1;31261;31257:9;31250:16;;31011:261;;;;:::o;31278:185::-;;31335:20;31353:1;31335:20;:::i;:::-;31330:25;;31369:20;31387:1;31369:20;:::i;:::-;31364:25;;31408:1;31398:2;;31413:18;;:::i;:::-;31398:2;31455:1;31452;31448:9;31443:14;;31320:143;;;;:::o;31469:348::-;;31532:20;31550:1;31532:20;:::i;:::-;31527:25;;31566:20;31584:1;31566:20;:::i;:::-;31561:25;;31754:1;31686:66;31682:74;31679:1;31676:81;31671:1;31664:9;31657:17;31653:105;31650:2;;;31761:18;;:::i;:::-;31650:2;31809:1;31806;31802:9;31791:20;;31517:300;;;;:::o;31823:191::-;;31883:20;31901:1;31883:20;:::i;:::-;31878:25;;31917:20;31935:1;31917:20;:::i;:::-;31912:25;;31956:1;31953;31950:8;31947:2;;;31961:18;;:::i;:::-;31947:2;32006:1;32003;31999:9;31991:17;;31868:146;;;;:::o;32020:96::-;;32086:24;32104:5;32086:24;:::i;:::-;32075:35;;32065:51;;;:::o;32122:90::-;;32199:5;32192:13;32185:21;32174:32;;32164:48;;;:::o;32218:149::-;;32294:66;32287:5;32283:78;32272:89;;32262:105;;;:::o;32373:126::-;;32450:42;32443:5;32439:54;32428:65;;32418:81;;;:::o;32505:77::-;;32571:5;32560:16;;32550:32;;;:::o;32588:154::-;32672:6;32667:3;32662;32649:30;32734:1;32725:6;32720:3;32716:16;32709:27;32639:103;;;:::o;32748:307::-;32816:1;32826:113;32840:6;32837:1;32834:13;32826:113;;;32925:1;32920:3;32916:11;32910:18;32906:1;32901:3;32897:11;32890:39;32862:2;32859:1;32855:10;32850:15;;32826:113;;;32957:6;32954:1;32951:13;32948:2;;;33037:1;33028:6;33023:3;33019:16;33012:27;32948:2;32797:258;;;;:::o;33061:320::-;;33142:1;33136:4;33132:12;33122:22;;33189:1;33183:4;33179:12;33210:18;33200:2;;33266:4;33258:6;33254:17;33244:27;;33200:2;33328;33320:6;33317:14;33297:18;33294:38;33291:2;;;33347:18;;:::i;:::-;33291:2;33112:269;;;;:::o;33387:233::-;;33449:24;33467:5;33449:24;:::i;:::-;33440:33;;33495:66;33488:5;33485:77;33482:2;;;33565:18;;:::i;:::-;33482:2;33612:1;33605:5;33601:13;33594:20;;33430:190;;;:::o;33626:176::-;;33675:20;33693:1;33675:20;:::i;:::-;33670:25;;33709:20;33727:1;33709:20;:::i;:::-;33704:25;;33748:1;33738:2;;33753:18;;:::i;:::-;33738:2;33794:1;33791;33787:9;33782:14;;33660:142;;;;:::o;33808:180::-;33856:77;33853:1;33846:88;33953:4;33950:1;33943:15;33977:4;33974:1;33967:15;33994:180;34042:77;34039:1;34032:88;34139:4;34136:1;34129:15;34163:4;34160:1;34153:15;34180:180;34228:77;34225:1;34218:88;34325:4;34322:1;34315:15;34349:4;34346:1;34339:15;34366:180;34414:77;34411:1;34404:88;34511:4;34508:1;34501:15;34535:4;34532:1;34525:15;34552:102;;34644:2;34640:7;34635:2;34628:5;34624:14;34620:28;34610:38;;34600:54;;;:::o;34660:122::-;34733:24;34751:5;34733:24;:::i;:::-;34726:5;34723:35;34713:2;;34772:1;34769;34762:12;34713:2;34703:79;:::o;34788:116::-;34858:21;34873:5;34858:21;:::i;:::-;34851:5;34848:32;34838:2;;34894:1;34891;34884:12;34838:2;34828:76;:::o;34910:120::-;34982:23;34999:5;34982:23;:::i;:::-;34975:5;34972:34;34962:2;;35020:1;35017;35010:12;34962:2;34952:78;:::o;35036:122::-;35109:24;35127:5;35109:24;:::i;:::-;35102:5;35099:35;35089:2;;35148:1;35145;35138:12;35089:2;35079:79;:::o
Swarm Source
ipfs://7ddbf72b7cbb3f96f6ce64d6d6fd1a3e1ff69ce0119104ea46f4fcdaeb96014b
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.