Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
1,000 FVT
Holders
41
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FVTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FunkiVIPToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-19 */ /** ____________________ _____ ________ ________ ___ ____ __ ____ ___ / ____/ ____/ ____/ / / _/ | / / ____/ / ____/ / / / | / / //_// _/ /__ \ / /_ / __/ / __/ / / / // |/ / / __ / /_ / / / / |/ / ,< / / / _/ / __/ / /___/ /___/ /____/ // /| / /_/ / / __/ / /_/ / /| / /| |_/ / /_/ /_/ /_____/_____/_____/___/_/ |_/\____/ /_/ \____/_/ |_/_/ |_/___/ (_) .::. :- +@%%%#++=: .+##*%- .%++*%%*=+#+: .:-==: -*#*****%: *#+***#%*==+*+=--=***++##*+::=##******+%= .%****#@%+=====++=====+#*++++**#%#**++*# .##**#@#========================+####%. +#%%=============================+## +#===========================+++==+%. %+=========+*****+========+####*##++%. %========*#********+=====***#%%%#%%*+# *+++=====**%@@#%%##*=====**%*#*#+#=#=**: :%+++====*@*###**+*+======+==+=======++%#:. **++=====+++***#######*++==+*#%###*+==*%%= .#++++*##*++=-:::.....::-+*@%#####@-..:+%#= *%###*=::::::..... +@%##%%+*-:=#- .#%+#%@+:--:::....... :*@@+::#-#+ =@*===##**#@===-:.....:-=========-:--::#: #%=========**+++****+-:..............=-%: ##===================+*#*==+*******%+#@+: #*========================*+========+*=%+ #+======================================+% #+========================================%: +*=========================================*+ .#===========================================% *+===========================================% :%============================================%: #+============================================%- .@=============================================%= -%=============================================@= =%========================================+++++@+ =%=================================++*##**+++++*##*=: -@========**+===============++*#%%%@+-:::::::::::*%@@%+ .@=========+##%##########%%##*+==+%+::::::::::::::-=*#+: @+============================+#%=:::::::::::::::::::-*%= *%=========================+##*=::::::::::::::::::::::::%* .@+====================+*#*+-:::::::::::::::::::::::::::#* +%====================*###**++++*#%#:::::::::::::::::-**. *%========================+++++#%+:::::::::::::::=*%#. -%#========================+#%+::::::::::::::-=++%# -#%+==============+++*###*-::::::::::::::::::-#* .+%%*+==========#@%+::::::::::::::::::::-+#*: .-*#%#*++======+#%#+=---:::::--=+*##*+: :=+**********+-=++++++**++=:. */ /** In the beginning... Before the awakening, There was a gift; Only the chosen would receive. */ // 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); } /** * @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; } /** * @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); } /** * @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); } /** * @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"); } /** *the truth is programmed in form of a riddle. */ /** * @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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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); } } } } /* * @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; } } /** * @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); } } /** * @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; } } /** * @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(to).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 {} } /** * @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); } } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } library CustomString { // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) { bytes memory _ba = bytes(_a); bytes memory _bb = bytes(_b); bytes memory _bc = bytes(_c); bytes memory _bd = bytes(_d); bytes memory _be = bytes(_e); string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length); bytes memory babcde = bytes(abcde); uint k = 0; for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i]; for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i]; for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i]; for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i]; for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i]; return string(babcde); } function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) { return strConcat(_a, _b, _c, _d, ""); } function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) { return strConcat(_a, _b, _c, "", ""); } function strConcat(string memory _a, string memory _b) internal pure returns (string memory) { return strConcat(_a, _b, "", "", ""); } function uint2str( uint256 _i ) internal pure returns (string memory str) { if (_i == 0) { return "0"; } uint256 j = _i; uint256 length; while (j != 0) { length++; j /= 10; } bytes memory bstr = new bytes(length); uint256 k = length; j = _i; while (j != 0) { bstr[--k] = bytes1(uint8(48 + j % 10)); j /= 10; } str = string(bstr); } } contract FunkiVIPToken is ERC721, Ownable { using SafeMath for uint256; string public FVT_PROVENANCE = ""; uint256 public currentSupply = 0; uint256 public totalSupply = 1000; uint256 public mintPrice = 0 ether; mapping (address=>uint256) private _tokenBalance; string baseTokenURI; uint256 public maxMintNumber = 10; bool public paused = false; bool public onlyWhitelisted = true; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; struct FVT { uint256 tokenId; address creator; address owner; string uri; } mapping(uint256=>FVT) private fvts; event FVTMint(address indexed to, FVT _fvt); event SetPrice(uint256 _value); event ChangePaused(bool _value); event SetMintNumber(uint256 _value); constructor() ERC721("Funki VIP Token", "FVT") { baseTokenURI = "https://ipfs.funkifoxes.com/fvt-metadata/"; mintFVT(20); } function setPaused() public onlyOwner { paused = !paused; emit ChangePaused(paused); } function setMintPrice(uint256 _mintPrice) public onlyOwner { mintPrice = _mintPrice; emit SetPrice(mintPrice); } function setmaxMintNumber(uint256 _maxMintNumber) public onlyOwner { maxMintNumber = _maxMintNumber; emit SetMintNumber(maxMintNumber); } function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner { baseTokenURI = _baseTokenURI; } function createTokenURI(uint256 tokenId) public view returns(string memory) { return CustomString.strConcat(baseTokenURI, CustomString.uint2str(tokenId)); } function setProvenanceHash(string memory provenanceHash) public onlyOwner { FVT_PROVENANCE = provenanceHash; } function mintFVT(uint256 _numberOfTokens) public payable { require(currentSupply.add(_numberOfTokens) < totalSupply, "No fvt available for minting!"); if (msg.sender != owner()) { if(onlyWhitelisted == true) { require(isWhitelisted(msg.sender), "user is not whitelisted"); }else { require(!paused, "Minting is paused");} require(_numberOfTokens == 1, "Too many tokens to mint at once."); } uint256 _index = currentSupply; currentSupply += _numberOfTokens; _tokenBalance[_msgSender()] += _numberOfTokens; for (uint256 i = 0; i < _numberOfTokens; i++) { FVT storage newFVT = fvts[_index.add(i)]; newFVT.tokenId = _index.add(i); newFVT.creator = _msgSender(); newFVT.owner = _msgSender(); newFVT.uri = createTokenURI(_index.add(i)); _safeMint(_msgSender(), _index.add(i)); emit FVTMint(_msgSender(), newFVT); } } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function creatorOf(uint256 _tokenId) public view returns (address) { return fvts[_tokenId].creator; } function balanceOf(address account) public view virtual override returns(uint256) { return _tokenBalance[account]; } function tokenURI(uint256 _tokenId) override public view returns (string memory) { require(_tokenId < currentSupply, "ERC721Metadata: URI query for nonexistent token"); return fvts[_tokenId].uri; } function withdrawAll() public onlyOwner { payable(_msgSender()).transfer(address(this).balance); } function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = fvts[tokenId].owner; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } function _transfer(address from, address to, uint256 tokenId) internal virtual override { // check token index is available require(tokenId < currentSupply, "Undefined tokenID!"); // check owner of token require(ownerOf(tokenId) == from, "Caller is not owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); _approve(address(0), tokenId); fvts[tokenId].owner = to; _tokenBalance[from]--; _tokenBalance[to]++; emit Transfer(from, to, tokenId); } } /** __ __ __ _________________ __________________________ ___ ____ __ ____ __/ // /_/ / / ____/_ __/ ___// ____/ ____/_ __/ ____/ / / / | / / //_// _/ /_ _ __/ / / __/ / / \__ \/ / __/ __/ / / / /_ / / / / |/ / ,< / / /_ _ __/ /___/ /___ / / ___/ / /_/ / /___ / / / __/ / /_/ / /| / /| |_/ / /_//_/ /_____/_____/ /_/ /____/\____/_____/ /_/ /_/ \____/_/ |_/_/ |_/___/ */
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":false,"internalType":"bool","name":"_value","type":"bool"}],"name":"ChangePaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"creator","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"indexed":false,"internalType":"struct FunkiVIPToken.FVT","name":"_fvt","type":"tuple"}],"name":"FVTMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"SetMintNumber","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"SetPrice","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":"FVT_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"createTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"creatorOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"mintFVT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintNumber","type":"uint256"}],"name":"setmaxMintNumber","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":"_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":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b9160079162000d91565b50600060088190556103e8600955600a908155600d55600e805461ffff19166101001790553480156200004d57600080fd5b50604080518082018252600f81526e233ab735b4902b24a8102a37b5b2b760891b60208083019182528351808501909452600384526211959560ea1b908401528151919291620000a09160009162000d91565b508051620000b690600190602084019062000d91565b505050620000d3620000cd6200011660201b60201c565b6200011a565b60405180606001604052806029815260200162003c446029913980516200010391600c9160209091019062000d91565b506200011060146200016c565b62001250565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6009546200018b826008546200045060201b620013741790919060201c565b10620001b45760405162461bcd60e51b8152600401620001ab9062000f63565b60405180910390fd5b620001be62000465565b6001600160a01b0316336001600160a01b0316146200026757600e5460ff610100909104161515600114156200021e57620001f93362000474565b620002185760405162461bcd60e51b8152600401620001ab906200102f565b62000244565b600e5460ff1615620002445760405162461bcd60e51b8152600401620001ab9062001004565b80600114620002675760405162461bcd60e51b8152600401620001ab9062000fcf565b6008805490829060006200027c838562001166565b90915550829050600b60006200029162000116565b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254620002c2919062001166565b90915550600090505b828110156200044b57600060116000620002f484866200045060201b620013741790919060201c565b815260200190815260200160002090506200031e82846200045060201b620013741790919060201c565b81556200032a62000116565b6001820180546001600160a01b0319166001600160a01b03929092169190911790556200035662000116565b8160020160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550620003a26200039c83856200045060201b620013741790919060201c565b620004f6565b8051620003ba91600384019160209091019062000d91565b50620003e9620003c962000116565b620003e384866200045060201b620013741790919060201c565b620005bc565b620003f362000116565b6001600160a01b03167f14f3c4bbd5646e5544320916608350015d559a3e0faf307712fa01b8819e94bc826040516200042d919062001066565b60405180910390a250806200044281620011ef565b915050620002cb565b505050565b60006200045e828462001166565b9392505050565b6006546001600160a01b031690565b6000805b600f54811015620004eb57826001600160a01b0316600f8281548110620004af57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415620004d6576001915050620004f1565b80620004e281620011ef565b91505062000478565b50600090505b919050565b6060620005b6600c80546200050b90620011b2565b80601f01602080910402602001604051908101604052809291908181526020018280546200053990620011b2565b80156200058a5780601f106200055e576101008083540402835291602001916200058a565b820191906000526020600020905b8154815290600101906020018083116200056c57829003601f168201915b5050505050620005a584620005e260201b620013871760201c565b6200071c60201b620014ad1760201c565b92915050565b620005de8282604051806020016040528060008152506200076060201b60201c565b5050565b6060816200060957506040805180820190915260018152600360fc1b6020820152620004f1565b8160005b81156200063957806200062081620011ef565b9150620006319050600a8362001181565b91506200060d565b6000816001600160401b038111156200066257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156200068d576020820181803683370190505b508593509050815b83156200071357620006a9600a856200120d565b620006b690603062001166565b60f81b82620006c58362001198565b92508281518110620006e757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506200070b600a8562001181565b935062000695565b50949350505050565b60606200045e83836040518060200160405280600081525060405180602001604052806000815250604051806020016040528060008152506200079a60201b60201c565b6200076c838362000b4a565b6200077b600084848462000c35565b6200044b5760405162461bcd60e51b8152600401620001ab9062000eda565b805182518451865188516060948a948a948a948a948a94600094909390929091620007c6919062001166565b620007d2919062001166565b620007de919062001166565b620007ea919062001166565b6001600160401b038111156200081057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156200083b576020820181803683370190505b509050806000805b8851811015620008d7578881815181106200086e57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b03191683836200088a81620011ef565b945081518110620008ab57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535080620008ce81620011ef565b91505062000843565b5060005b87518110156200096f578781815181106200090657634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b03191683836200092281620011ef565b9450815181106200094357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350806200096681620011ef565b915050620008db565b5060005b865181101562000a07578681815181106200099e57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319168383620009ba81620011ef565b945081518110620009db57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535080620009fe81620011ef565b91505062000973565b5060005b855181101562000a9f5785818151811062000a3657634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916838362000a5281620011ef565b94508151811062000a7357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053508062000a9681620011ef565b91505062000a0b565b5060005b845181101562000b375784818151811062000ace57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916838362000aea81620011ef565b94508151811062000b0b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053508062000b2e81620011ef565b91505062000aa3565b50909d9c50505050505050505050505050565b6001600160a01b03821662000b735760405162461bcd60e51b8152600401620001ab9062000f9a565b62000b7e8162000d6e565b1562000b9e5760405162461bcd60e51b8152600401620001ab9062000f2c565b62000bac600083836200044b565b6001600160a01b038216600090815260036020526040812080546001929062000bd790849062001166565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000c56846001600160a01b031662000d8b60201b620014e91760201c565b1562000d62576001600160a01b03841663150b7a0262000c7562000116565b8786866040518563ffffffff1660e01b815260040162000c99949392919062000e61565b602060405180830381600087803b15801562000cb457600080fd5b505af192505050801562000ce7575060408051601f3d908101601f1916820190925262000ce49181019062000e37565b60015b62000d47573d80801562000d18576040519150601f19603f3d011682016040523d82523d6000602084013e62000d1d565b606091505b50805162000d3f5760405162461bcd60e51b8152600401620001ab9062000eda565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000d66565b5060015b949350505050565b6000908152600260205260409020546001600160a01b0316151590565b3b151590565b82805462000d9f90620011b2565b90600052602060002090601f01602090048101928262000dc3576000855562000e0e565b82601f1062000dde57805160ff191683800117855562000e0e565b8280016001018555821562000e0e579182015b8281111562000e0e57825182559160200191906001019062000df1565b5062000e1c92915062000e20565b5090565b5b8082111562000e1c576000815560010162000e21565b60006020828403121562000e49578081fd5b81516001600160e01b0319811681146200045e578182fd5b600060018060a01b0380871683526020818716818501528560408501526080606085015284519150816080850152825b8281101562000eaf5785810182015185820160a00152810162000e91565b8281111562000ec1578360a084870101525b5050601f01601f19169190910160a00195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601d908201527f4e6f2066767420617661696c61626c6520666f72206d696e74696e6721000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252818101527f546f6f206d616e7920746f6b656e7320746f206d696e74206174206f6e63652e604082015260600190565b602080825260119082015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604082015260600190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b60208082528254828201526001808401546001600160a01b0390811660408501526002808601549091166060850152608080850152600385018054600094939192859190810481841680620010bc57607f821691505b868210811415620010db57634e487b7160e01b88526022600452602488fd5b620010ea8260a08b016200115d565b818015620011015760018114620011135762001141565b60ff1985168252888201955062001141565b6200111e8862001151565b8a5b858110156200113b57815484820152908801908a0162001120565b83019650505b50939a9950505050505050505050565b60009081526020902090565b90815260200190565b600082198211156200117c576200117c62001224565b500190565b6000826200119357620011936200123a565b500490565b600081620011aa57620011aa62001224565b506000190190565b600281046001821680620011c757607f821691505b60208210811415620011e957634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562001206576200120662001224565b5060010190565b6000826200121f576200121f6200123a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6129e480620012606000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a22cb465116100ab578063e3325faf1161006f578063e3325faf146105c2578063e985e9c5146105e2578063edec5f2714610602578063f2fde38b14610622578063f4a0a528146106425761021a565b8063a22cb46514610522578063b86aeb9014610542578063b88d4fde14610562578063ba4e5c4914610582578063c87b56dd146105a25761021a565b8063853828b6116100f2578063853828b6146104b95780638da5cb5b146104ce57806395d89b41146104e35780639a997c47146104f85780639c70b5121461050d5761021a565b806370a082311461045c578063715018a61461047c578063771282f61461049157806382b9632d146104a65761021a565b806330176e13116101a657806342842e0e1161017557806342842e0e146103d2578063589a1743146103f25780635c975abb146104125780636352211e146104275780636817c76c146104475761021a565b806330176e131461035d57806337a66d851461037d5780633af32abf146103925780633c952764146103b25761021a565b8063095ea7b3116101ed578063095ea7b3146102b957806310969523146102db57806318160ddd146102fb57806318cae2691461031d57806323b872dd1461033d5761021a565b806301ffc9a71461021f57806306fdde0314610255578063081812fc146102775780630925c9e9146102a4575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461216b565b610662565b60405161024c919061229d565b60405180910390f35b34801561026157600080fd5b5061026a6106aa565b60405161024c91906122a8565b34801561028357600080fd5b506102976102923660046121e9565b61073c565b60405161024c919061224c565b3480156102b057600080fd5b5061026a610788565b3480156102c557600080fd5b506102d96102d43660046120b9565b610816565b005b3480156102e757600080fd5b506102d96102f63660046121a3565b6108ae565b34801561030757600080fd5b50610310610904565b60405161024c9190612894565b34801561032957600080fd5b50610310610338366004611f90565b61090a565b34801561034957600080fd5b506102d9610358366004611fdc565b61091c565b34801561036957600080fd5b506102d96103783660046121a3565b610954565b34801561038957600080fd5b506102d96109a6565b34801561039e57600080fd5b5061023f6103ad366004611f90565b610a33565b3480156103be57600080fd5b506102d96103cd366004612151565b610aac565b3480156103de57600080fd5b506102d96103ed366004611fdc565b610b05565b3480156103fe57600080fd5b5061029761040d3660046121e9565b610b20565b34801561041e57600080fd5b5061023f610b3e565b34801561043357600080fd5b506102976104423660046121e9565b610b47565b34801561045357600080fd5b50610310610b7f565b34801561046857600080fd5b50610310610477366004611f90565b610b85565b34801561048857600080fd5b506102d9610ba0565b34801561049d57600080fd5b50610310610beb565b6102d96104b43660046121e9565b610bf1565b3480156104c557600080fd5b506102d9610e41565b3480156104da57600080fd5b50610297610ec3565b3480156104ef57600080fd5b5061026a610ed2565b34801561050457600080fd5b50610310610ee1565b34801561051957600080fd5b5061023f610ee7565b34801561052e57600080fd5b506102d961053d366004612090565b610ef5565b34801561054e57600080fd5b5061026a61055d3660046121e9565b610fc3565b34801561056e57600080fd5b506102d961057d366004612017565b611061565b34801561058e57600080fd5b5061029761059d3660046121e9565b6110a0565b3480156105ae57600080fd5b5061026a6105bd3660046121e9565b6110ca565b3480156105ce57600080fd5b506102d96105dd3660046121e9565b61118e565b3480156105ee57600080fd5b5061023f6105fd366004611faa565b61120d565b34801561060e57600080fd5b506102d961061d3660046120e2565b61123b565b34801561062e57600080fd5b506102d961063d366004611f90565b611292565b34801561064e57600080fd5b506102d961065d3660046121e9565b611300565b60006001600160e01b031982166380ac58cd60e01b148061069357506001600160e01b03198216635b5e139f60e01b145b806106a257506106a2826114ef565b90505b919050565b6060600080546106b9906128ec565b80601f01602080910402602001604051908101604052809291908181526020018280546106e5906128ec565b80156107325780601f1061070757610100808354040283529160200191610732565b820191906000526020600020905b81548152906001019060200180831161071557829003601f168201915b5050505050905090565b600061074782611508565b61076c5760405162461bcd60e51b815260040161076390612590565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60078054610795906128ec565b80601f01602080910402602001604051908101604052809291908181526020018280546107c1906128ec565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b505050505081565b600061082182611525565b9050806001600160a01b0316836001600160a01b031614156108555760405162461bcd60e51b815260040161076390612660565b806001600160a01b031661086761155a565b6001600160a01b031614806108835750610883816105fd61155a565b61089f5760405162461bcd60e51b8152600401610763906124b5565b6108a9838361155e565b505050565b6108b661155a565b6001600160a01b03166108c7610ec3565b6001600160a01b0316146108ed5760405162461bcd60e51b8152600401610763906125dc565b8051610900906007906020840190611def565b5050565b60095481565b60106020526000908152604090205481565b61092d61092761155a565b826115cc565b6109495760405162461bcd60e51b8152600401610763906126d6565b6108a9838383611651565b61095c61155a565b6001600160a01b031661096d610ec3565b6001600160a01b0316146109935760405162461bcd60e51b8152600401610763906125dc565b805161090090600c906020840190611def565b6109ae61155a565b6001600160a01b03166109bf610ec3565b6001600160a01b0316146109e55760405162461bcd60e51b8152600401610763906125dc565b600e805460ff19811660ff9182161517918290556040517fb1d5bda31737a94a6118f5a6861736c3b90d5b59780ef4c6469d4d9f0b4d10d092610a2992169061229d565b60405180910390a1565b6000805b600f54811015610aa357826001600160a01b0316600f8281548110610a6c57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610a915760019150506106a5565b80610a9b81612927565b915050610a37565b50600092915050565b610ab461155a565b6001600160a01b0316610ac5610ec3565b6001600160a01b031614610aeb5760405162461bcd60e51b8152600401610763906125dc565b600e80549115156101000261ff0019909216919091179055565b6108a983838360405180602001604052806000815250611061565b6000908152601160205260409020600101546001600160a01b031690565b600e5460ff1681565b6000818152601160205260408120600201546001600160a01b0316806106a25760405162461bcd60e51b815260040161076390612512565b600a5481565b6001600160a01b03166000908152600b602052604090205490565b610ba861155a565b6001600160a01b0316610bb9610ec3565b6001600160a01b031614610bdf5760405162461bcd60e51b8152600401610763906125dc565b610be960006117a4565b565b60085481565b600954600854610c019083611374565b10610c1e5760405162461bcd60e51b81526004016107639061247e565b610c26610ec3565b6001600160a01b0316336001600160a01b031614610cc157600e5460ff61010090910416151560011415610c7e57610c5d33610a33565b610c795760405162461bcd60e51b81526004016107639061277e565b610ca1565b600e5460ff1615610ca15760405162461bcd60e51b815260040161076390612727565b80600114610cc15760405162461bcd60e51b8152600401610763906126a1565b600880549082906000610cd483856128a9565b90915550829050600b6000610ce761155a565b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254610d1691906128a9565b90915550600090505b828110156108a9576000601181610d368585611374565b815260208101919091526040016000209050610d528383611374565b8155610d5c61155a565b6001820180546001600160a01b0319166001600160a01b0392909216919091179055610d8661155a565b6002820180546001600160a01b0319166001600160a01b0392909216919091179055610db561055d8484611374565b8051610dcb916003840191602090910190611def565b50610de6610dd761155a565b610de18585611374565b6117f6565b610dee61155a565b6001600160a01b03167f14f3c4bbd5646e5544320916608350015d559a3e0faf307712fa01b8819e94bc82604051610e2691906127b5565b60405180910390a25080610e3981612927565b915050610d1f565b610e4961155a565b6001600160a01b0316610e5a610ec3565b6001600160a01b031614610e805760405162461bcd60e51b8152600401610763906125dc565b610e8861155a565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050158015610ec0573d6000803e3d6000fd5b50565b6006546001600160a01b031690565b6060600180546106b9906128ec565b600d5481565b600e54610100900460ff1681565b610efd61155a565b6001600160a01b0316826001600160a01b03161415610f2e5760405162461bcd60e51b8152600401610763906123fb565b8060056000610f3b61155a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f7f61155a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fb7919061229d565b60405180910390a35050565b60606106a2600c8054610fd5906128ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611001906128ec565b801561104e5780601f106110235761010080835404028352916020019161104e565b820191906000526020600020905b81548152906001019060200180831161103157829003601f168201915b505050505061105c84611387565b6114ad565b61107261106c61155a565b836115cc565b61108e5760405162461bcd60e51b8152600401610763906126d6565b61109a84848484611810565b50505050565b600f81815481106110b057600080fd5b6000918252602090912001546001600160a01b0316905081565b606060085482106110ed5760405162461bcd60e51b815260040161076390612611565b60008281526011602052604090206003018054611109906128ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611135906128ec565b80156111825780601f1061115757610100808354040283529160200191611182565b820191906000526020600020905b81548152906001019060200180831161116557829003601f168201915b50505050509050919050565b61119661155a565b6001600160a01b03166111a7610ec3565b6001600160a01b0316146111cd5760405162461bcd60e51b8152600401610763906125dc565b600d8190556040517fa5e3136e4726c3c137af659489a9986b4e077182e345bb03bd45a270449c9d0590611202908390612894565b60405180910390a150565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61124361155a565b6001600160a01b0316611254610ec3565b6001600160a01b03161461127a5760405162461bcd60e51b8152600401610763906125dc565b611286600f6000611e73565b6108a9600f8383611e91565b61129a61155a565b6001600160a01b03166112ab610ec3565b6001600160a01b0316146112d15760405162461bcd60e51b8152600401610763906125dc565b6001600160a01b0381166112f75760405162461bcd60e51b81526004016107639061230d565b610ec0816117a4565b61130861155a565b6001600160a01b0316611319610ec3565b6001600160a01b03161461133f5760405162461bcd60e51b8152600401610763906125dc565b600a8190556040517f4f5539c0409dfc4cb06f64cbd31237e1fbfe443f531584bf4dd77ec7fc5ba7b190611202908390612894565b600061138082846128a9565b9392505050565b6060816113ac57506040805180820190915260018152600360fc1b60208201526106a5565b8160005b81156113d657806113c081612927565b91506113cf9050600a836128c1565b91506113b0565b60008167ffffffffffffffff8111156113ff57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611429576020820181803683370190505b508593509050815b83156114a457611442600a85612942565b61144d9060306128a9565b60f81b8261145a836128d5565b9250828151811061147b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061149d600a856128c1565b9350611431565b50949350505050565b60606113808383604051806020016040528060008152506040518060200160405280600081525060405180602001604052806000815250611843565b3b151590565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b6000818152600260205260408120546001600160a01b0316806106a25760405162461bcd60e51b815260040161076390612512565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159382611525565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115d782611508565b6115f35760405162461bcd60e51b815260040161076390612432565b60006115fe83611525565b9050806001600160a01b0316846001600160a01b031614806116395750836001600160a01b031661162e8461073c565b6001600160a01b0316145b806116495750611649818561120d565b949350505050565b60085481106116725760405162461bcd60e51b815260040161076390612752565b826001600160a01b031661168582610b47565b6001600160a01b0316146116ab5760405162461bcd60e51b81526004016107639061238a565b6001600160a01b0382166116d15760405162461bcd60e51b8152600401610763906123b7565b6116dc8383836108a9565b6116e760008261155e565b600081815260116020908152604080832060020180546001600160a01b0319166001600160a01b038781169190911790915586168352600b9091528120805491611730836128d5565b90915550506001600160a01b0382166000908152600b6020526040812080549161175983612927565b919050555080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610900828260405180602001604052806000815250611bc2565b61181b848484611651565b61182784848484611bf5565b61109a5760405162461bcd60e51b8152600401610763906122bb565b805182518451865188516060948a948a948a948a948a9460009490939092909161186d91906128a9565b61187791906128a9565b61188191906128a9565b61188b91906128a9565b67ffffffffffffffff8111156118b157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118db576020820181803683370190505b509050806000805b885181101561196f5788818151811061190c57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916838361192681612927565b94508151811061194657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053508061196781612927565b9150506118e3565b5060005b87518110156119ff5787818151811061199c57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b03191683836119b681612927565b9450815181106119d657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350806119f781612927565b915050611973565b5060005b8651811015611a8f57868181518110611a2c57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319168383611a4681612927565b945081518110611a6657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535080611a8781612927565b915050611a03565b5060005b8551811015611b1f57858181518110611abc57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319168383611ad681612927565b945081518110611af657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535080611b1781612927565b915050611a93565b5060005b8451811015611baf57848181518110611b4c57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319168383611b6681612927565b945081518110611b8657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535080611ba781612927565b915050611b23565b50909d9c50505050505050505050505050565b611bcc8383611d10565b611bd96000848484611bf5565b6108a95760405162461bcd60e51b8152600401610763906122bb565b6000611c09846001600160a01b03166114e9565b15611d0557836001600160a01b031663150b7a02611c2561155a565b8786866040518563ffffffff1660e01b8152600401611c479493929190612260565b602060405180830381600087803b158015611c6157600080fd5b505af1925050508015611c91575060408051601f3d908101601f19168201909252611c8e91810190612187565b60015b611ceb573d808015611cbf576040519150601f19603f3d011682016040523d82523d6000602084013e611cc4565b606091505b508051611ce35760405162461bcd60e51b8152600401610763906122bb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611649565b506001949350505050565b6001600160a01b038216611d365760405162461bcd60e51b81526004016107639061255b565b611d3f81611508565b15611d5c5760405162461bcd60e51b815260040161076390612353565b611d68600083836108a9565b6001600160a01b0382166000908152600360205260408120805460019290611d919084906128a9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611dfb906128ec565b90600052602060002090601f016020900481019282611e1d5760008555611e63565b82601f10611e3657805160ff1916838001178555611e63565b82800160010185558215611e63579182015b82811115611e63578251825591602001919060010190611e48565b50611e6f929150611ee4565b5090565b5080546000825590600052602060002090810190610ec09190611ee4565b828054828255906000526020600020908101928215611e63579160200282015b82811115611e635781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611eb1565b5b80821115611e6f5760008155600101611ee5565b600067ffffffffffffffff80841115611f1457611f14612982565b604051601f8501601f191681016020018281118282101715611f3857611f38612982565b604052848152915081838501861015611f5057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106a557600080fd5b803580151581146106a557600080fd5b600060208284031215611fa1578081fd5b61138082611f69565b60008060408385031215611fbc578081fd5b611fc583611f69565b9150611fd360208401611f69565b90509250929050565b600080600060608486031215611ff0578081fd5b611ff984611f69565b925061200760208501611f69565b9150604084013590509250925092565b6000806000806080858703121561202c578081fd5b61203585611f69565b935061204360208601611f69565b925060408501359150606085013567ffffffffffffffff811115612065578182fd5b8501601f81018713612075578182fd5b61208487823560208401611ef9565b91505092959194509250565b600080604083850312156120a2578182fd5b6120ab83611f69565b9150611fd360208401611f80565b600080604083850312156120cb578182fd5b6120d483611f69565b946020939093013593505050565b600080602083850312156120f4578182fd5b823567ffffffffffffffff8082111561210b578384fd5b818501915085601f83011261211e578384fd5b81358181111561212c578485fd5b866020808302850101111561213f578485fd5b60209290920196919550909350505050565b600060208284031215612162578081fd5b61138082611f80565b60006020828403121561217c578081fd5b813561138081612998565b600060208284031215612198578081fd5b815161138081612998565b6000602082840312156121b4578081fd5b813567ffffffffffffffff8111156121ca578182fd5b8201601f810184136121da578182fd5b61164984823560208401611ef9565b6000602082840312156121fa578081fd5b5035919050565b60008151808452815b818110156122265760208185018101518683018201520161220a565b818111156122375782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061229390830184612201565b9695505050505050565b901515815260200190565b6000602082526113806020830184612201565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526013908201527221b0b63632b91034b9903737ba1037bbb732b960691b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601d908201527f4e6f2066767420617661696c61626c6520666f72206d696e74696e6721000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f546f6f206d616e7920746f6b656e7320746f206d696e74206174206f6e63652e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260119082015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604082015260600190565b602080825260129082015271556e646566696e656420746f6b656e49442160701b604082015260600190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b60208082528254828201526001808401546001600160a01b039081166040850152600280860154909116606085015260808085015260038501805460009493919285919081048184168061280a57607f821691505b86821081141561282857634e487b7160e01b88526022600452602488fd5b6128358260a08b01612894565b818015612849576001811461285a57612884565b60ff19851682528882019550612884565b6128638861289d565b8a5b8581101561287e57815484820152908801908a01612865565b83019650505b50939a9950505050505050505050565b90815260200190565b60009081526020902090565b600082198211156128bc576128bc612956565b500190565b6000826128d0576128d061296c565b500490565b6000816128e4576128e4612956565b506000190190565b60028104600182168061290057607f821691505b6020821081141561292157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561293b5761293b612956565b5060010190565b6000826129515761295161296c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ec057600080fdfea2646970667358221220435fd2998cc92c03d5c8f1d704aad7e8b104fc0a5b8a8798fb708211511ff22264736f6c6343000800003368747470733a2f2f697066732e66756e6b69666f7865732e636f6d2f6676742d6d657461646174612f
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806370a0823111610123578063a22cb465116100ab578063e3325faf1161006f578063e3325faf146105c2578063e985e9c5146105e2578063edec5f2714610602578063f2fde38b14610622578063f4a0a528146106425761021a565b8063a22cb46514610522578063b86aeb9014610542578063b88d4fde14610562578063ba4e5c4914610582578063c87b56dd146105a25761021a565b8063853828b6116100f2578063853828b6146104b95780638da5cb5b146104ce57806395d89b41146104e35780639a997c47146104f85780639c70b5121461050d5761021a565b806370a082311461045c578063715018a61461047c578063771282f61461049157806382b9632d146104a65761021a565b806330176e13116101a657806342842e0e1161017557806342842e0e146103d2578063589a1743146103f25780635c975abb146104125780636352211e146104275780636817c76c146104475761021a565b806330176e131461035d57806337a66d851461037d5780633af32abf146103925780633c952764146103b25761021a565b8063095ea7b3116101ed578063095ea7b3146102b957806310969523146102db57806318160ddd146102fb57806318cae2691461031d57806323b872dd1461033d5761021a565b806301ffc9a71461021f57806306fdde0314610255578063081812fc146102775780630925c9e9146102a4575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461216b565b610662565b60405161024c919061229d565b60405180910390f35b34801561026157600080fd5b5061026a6106aa565b60405161024c91906122a8565b34801561028357600080fd5b506102976102923660046121e9565b61073c565b60405161024c919061224c565b3480156102b057600080fd5b5061026a610788565b3480156102c557600080fd5b506102d96102d43660046120b9565b610816565b005b3480156102e757600080fd5b506102d96102f63660046121a3565b6108ae565b34801561030757600080fd5b50610310610904565b60405161024c9190612894565b34801561032957600080fd5b50610310610338366004611f90565b61090a565b34801561034957600080fd5b506102d9610358366004611fdc565b61091c565b34801561036957600080fd5b506102d96103783660046121a3565b610954565b34801561038957600080fd5b506102d96109a6565b34801561039e57600080fd5b5061023f6103ad366004611f90565b610a33565b3480156103be57600080fd5b506102d96103cd366004612151565b610aac565b3480156103de57600080fd5b506102d96103ed366004611fdc565b610b05565b3480156103fe57600080fd5b5061029761040d3660046121e9565b610b20565b34801561041e57600080fd5b5061023f610b3e565b34801561043357600080fd5b506102976104423660046121e9565b610b47565b34801561045357600080fd5b50610310610b7f565b34801561046857600080fd5b50610310610477366004611f90565b610b85565b34801561048857600080fd5b506102d9610ba0565b34801561049d57600080fd5b50610310610beb565b6102d96104b43660046121e9565b610bf1565b3480156104c557600080fd5b506102d9610e41565b3480156104da57600080fd5b50610297610ec3565b3480156104ef57600080fd5b5061026a610ed2565b34801561050457600080fd5b50610310610ee1565b34801561051957600080fd5b5061023f610ee7565b34801561052e57600080fd5b506102d961053d366004612090565b610ef5565b34801561054e57600080fd5b5061026a61055d3660046121e9565b610fc3565b34801561056e57600080fd5b506102d961057d366004612017565b611061565b34801561058e57600080fd5b5061029761059d3660046121e9565b6110a0565b3480156105ae57600080fd5b5061026a6105bd3660046121e9565b6110ca565b3480156105ce57600080fd5b506102d96105dd3660046121e9565b61118e565b3480156105ee57600080fd5b5061023f6105fd366004611faa565b61120d565b34801561060e57600080fd5b506102d961061d3660046120e2565b61123b565b34801561062e57600080fd5b506102d961063d366004611f90565b611292565b34801561064e57600080fd5b506102d961065d3660046121e9565b611300565b60006001600160e01b031982166380ac58cd60e01b148061069357506001600160e01b03198216635b5e139f60e01b145b806106a257506106a2826114ef565b90505b919050565b6060600080546106b9906128ec565b80601f01602080910402602001604051908101604052809291908181526020018280546106e5906128ec565b80156107325780601f1061070757610100808354040283529160200191610732565b820191906000526020600020905b81548152906001019060200180831161071557829003601f168201915b5050505050905090565b600061074782611508565b61076c5760405162461bcd60e51b815260040161076390612590565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60078054610795906128ec565b80601f01602080910402602001604051908101604052809291908181526020018280546107c1906128ec565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b505050505081565b600061082182611525565b9050806001600160a01b0316836001600160a01b031614156108555760405162461bcd60e51b815260040161076390612660565b806001600160a01b031661086761155a565b6001600160a01b031614806108835750610883816105fd61155a565b61089f5760405162461bcd60e51b8152600401610763906124b5565b6108a9838361155e565b505050565b6108b661155a565b6001600160a01b03166108c7610ec3565b6001600160a01b0316146108ed5760405162461bcd60e51b8152600401610763906125dc565b8051610900906007906020840190611def565b5050565b60095481565b60106020526000908152604090205481565b61092d61092761155a565b826115cc565b6109495760405162461bcd60e51b8152600401610763906126d6565b6108a9838383611651565b61095c61155a565b6001600160a01b031661096d610ec3565b6001600160a01b0316146109935760405162461bcd60e51b8152600401610763906125dc565b805161090090600c906020840190611def565b6109ae61155a565b6001600160a01b03166109bf610ec3565b6001600160a01b0316146109e55760405162461bcd60e51b8152600401610763906125dc565b600e805460ff19811660ff9182161517918290556040517fb1d5bda31737a94a6118f5a6861736c3b90d5b59780ef4c6469d4d9f0b4d10d092610a2992169061229d565b60405180910390a1565b6000805b600f54811015610aa357826001600160a01b0316600f8281548110610a6c57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610a915760019150506106a5565b80610a9b81612927565b915050610a37565b50600092915050565b610ab461155a565b6001600160a01b0316610ac5610ec3565b6001600160a01b031614610aeb5760405162461bcd60e51b8152600401610763906125dc565b600e80549115156101000261ff0019909216919091179055565b6108a983838360405180602001604052806000815250611061565b6000908152601160205260409020600101546001600160a01b031690565b600e5460ff1681565b6000818152601160205260408120600201546001600160a01b0316806106a25760405162461bcd60e51b815260040161076390612512565b600a5481565b6001600160a01b03166000908152600b602052604090205490565b610ba861155a565b6001600160a01b0316610bb9610ec3565b6001600160a01b031614610bdf5760405162461bcd60e51b8152600401610763906125dc565b610be960006117a4565b565b60085481565b600954600854610c019083611374565b10610c1e5760405162461bcd60e51b81526004016107639061247e565b610c26610ec3565b6001600160a01b0316336001600160a01b031614610cc157600e5460ff61010090910416151560011415610c7e57610c5d33610a33565b610c795760405162461bcd60e51b81526004016107639061277e565b610ca1565b600e5460ff1615610ca15760405162461bcd60e51b815260040161076390612727565b80600114610cc15760405162461bcd60e51b8152600401610763906126a1565b600880549082906000610cd483856128a9565b90915550829050600b6000610ce761155a565b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254610d1691906128a9565b90915550600090505b828110156108a9576000601181610d368585611374565b815260208101919091526040016000209050610d528383611374565b8155610d5c61155a565b6001820180546001600160a01b0319166001600160a01b0392909216919091179055610d8661155a565b6002820180546001600160a01b0319166001600160a01b0392909216919091179055610db561055d8484611374565b8051610dcb916003840191602090910190611def565b50610de6610dd761155a565b610de18585611374565b6117f6565b610dee61155a565b6001600160a01b03167f14f3c4bbd5646e5544320916608350015d559a3e0faf307712fa01b8819e94bc82604051610e2691906127b5565b60405180910390a25080610e3981612927565b915050610d1f565b610e4961155a565b6001600160a01b0316610e5a610ec3565b6001600160a01b031614610e805760405162461bcd60e51b8152600401610763906125dc565b610e8861155a565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050158015610ec0573d6000803e3d6000fd5b50565b6006546001600160a01b031690565b6060600180546106b9906128ec565b600d5481565b600e54610100900460ff1681565b610efd61155a565b6001600160a01b0316826001600160a01b03161415610f2e5760405162461bcd60e51b8152600401610763906123fb565b8060056000610f3b61155a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f7f61155a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fb7919061229d565b60405180910390a35050565b60606106a2600c8054610fd5906128ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611001906128ec565b801561104e5780601f106110235761010080835404028352916020019161104e565b820191906000526020600020905b81548152906001019060200180831161103157829003601f168201915b505050505061105c84611387565b6114ad565b61107261106c61155a565b836115cc565b61108e5760405162461bcd60e51b8152600401610763906126d6565b61109a84848484611810565b50505050565b600f81815481106110b057600080fd5b6000918252602090912001546001600160a01b0316905081565b606060085482106110ed5760405162461bcd60e51b815260040161076390612611565b60008281526011602052604090206003018054611109906128ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611135906128ec565b80156111825780601f1061115757610100808354040283529160200191611182565b820191906000526020600020905b81548152906001019060200180831161116557829003601f168201915b50505050509050919050565b61119661155a565b6001600160a01b03166111a7610ec3565b6001600160a01b0316146111cd5760405162461bcd60e51b8152600401610763906125dc565b600d8190556040517fa5e3136e4726c3c137af659489a9986b4e077182e345bb03bd45a270449c9d0590611202908390612894565b60405180910390a150565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61124361155a565b6001600160a01b0316611254610ec3565b6001600160a01b03161461127a5760405162461bcd60e51b8152600401610763906125dc565b611286600f6000611e73565b6108a9600f8383611e91565b61129a61155a565b6001600160a01b03166112ab610ec3565b6001600160a01b0316146112d15760405162461bcd60e51b8152600401610763906125dc565b6001600160a01b0381166112f75760405162461bcd60e51b81526004016107639061230d565b610ec0816117a4565b61130861155a565b6001600160a01b0316611319610ec3565b6001600160a01b03161461133f5760405162461bcd60e51b8152600401610763906125dc565b600a8190556040517f4f5539c0409dfc4cb06f64cbd31237e1fbfe443f531584bf4dd77ec7fc5ba7b190611202908390612894565b600061138082846128a9565b9392505050565b6060816113ac57506040805180820190915260018152600360fc1b60208201526106a5565b8160005b81156113d657806113c081612927565b91506113cf9050600a836128c1565b91506113b0565b60008167ffffffffffffffff8111156113ff57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611429576020820181803683370190505b508593509050815b83156114a457611442600a85612942565b61144d9060306128a9565b60f81b8261145a836128d5565b9250828151811061147b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061149d600a856128c1565b9350611431565b50949350505050565b60606113808383604051806020016040528060008152506040518060200160405280600081525060405180602001604052806000815250611843565b3b151590565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b6000818152600260205260408120546001600160a01b0316806106a25760405162461bcd60e51b815260040161076390612512565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159382611525565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115d782611508565b6115f35760405162461bcd60e51b815260040161076390612432565b60006115fe83611525565b9050806001600160a01b0316846001600160a01b031614806116395750836001600160a01b031661162e8461073c565b6001600160a01b0316145b806116495750611649818561120d565b949350505050565b60085481106116725760405162461bcd60e51b815260040161076390612752565b826001600160a01b031661168582610b47565b6001600160a01b0316146116ab5760405162461bcd60e51b81526004016107639061238a565b6001600160a01b0382166116d15760405162461bcd60e51b8152600401610763906123b7565b6116dc8383836108a9565b6116e760008261155e565b600081815260116020908152604080832060020180546001600160a01b0319166001600160a01b038781169190911790915586168352600b9091528120805491611730836128d5565b90915550506001600160a01b0382166000908152600b6020526040812080549161175983612927565b919050555080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610900828260405180602001604052806000815250611bc2565b61181b848484611651565b61182784848484611bf5565b61109a5760405162461bcd60e51b8152600401610763906122bb565b805182518451865188516060948a948a948a948a948a9460009490939092909161186d91906128a9565b61187791906128a9565b61188191906128a9565b61188b91906128a9565b67ffffffffffffffff8111156118b157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118db576020820181803683370190505b509050806000805b885181101561196f5788818151811061190c57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916838361192681612927565b94508151811061194657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053508061196781612927565b9150506118e3565b5060005b87518110156119ff5787818151811061199c57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b03191683836119b681612927565b9450815181106119d657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350806119f781612927565b915050611973565b5060005b8651811015611a8f57868181518110611a2c57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319168383611a4681612927565b945081518110611a6657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535080611a8781612927565b915050611a03565b5060005b8551811015611b1f57858181518110611abc57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319168383611ad681612927565b945081518110611af657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535080611b1781612927565b915050611a93565b5060005b8451811015611baf57848181518110611b4c57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319168383611b6681612927565b945081518110611b8657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535080611ba781612927565b915050611b23565b50909d9c50505050505050505050505050565b611bcc8383611d10565b611bd96000848484611bf5565b6108a95760405162461bcd60e51b8152600401610763906122bb565b6000611c09846001600160a01b03166114e9565b15611d0557836001600160a01b031663150b7a02611c2561155a565b8786866040518563ffffffff1660e01b8152600401611c479493929190612260565b602060405180830381600087803b158015611c6157600080fd5b505af1925050508015611c91575060408051601f3d908101601f19168201909252611c8e91810190612187565b60015b611ceb573d808015611cbf576040519150601f19603f3d011682016040523d82523d6000602084013e611cc4565b606091505b508051611ce35760405162461bcd60e51b8152600401610763906122bb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611649565b506001949350505050565b6001600160a01b038216611d365760405162461bcd60e51b81526004016107639061255b565b611d3f81611508565b15611d5c5760405162461bcd60e51b815260040161076390612353565b611d68600083836108a9565b6001600160a01b0382166000908152600360205260408120805460019290611d919084906128a9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611dfb906128ec565b90600052602060002090601f016020900481019282611e1d5760008555611e63565b82601f10611e3657805160ff1916838001178555611e63565b82800160010185558215611e63579182015b82811115611e63578251825591602001919060010190611e48565b50611e6f929150611ee4565b5090565b5080546000825590600052602060002090810190610ec09190611ee4565b828054828255906000526020600020908101928215611e63579160200282015b82811115611e635781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611eb1565b5b80821115611e6f5760008155600101611ee5565b600067ffffffffffffffff80841115611f1457611f14612982565b604051601f8501601f191681016020018281118282101715611f3857611f38612982565b604052848152915081838501861015611f5057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106a557600080fd5b803580151581146106a557600080fd5b600060208284031215611fa1578081fd5b61138082611f69565b60008060408385031215611fbc578081fd5b611fc583611f69565b9150611fd360208401611f69565b90509250929050565b600080600060608486031215611ff0578081fd5b611ff984611f69565b925061200760208501611f69565b9150604084013590509250925092565b6000806000806080858703121561202c578081fd5b61203585611f69565b935061204360208601611f69565b925060408501359150606085013567ffffffffffffffff811115612065578182fd5b8501601f81018713612075578182fd5b61208487823560208401611ef9565b91505092959194509250565b600080604083850312156120a2578182fd5b6120ab83611f69565b9150611fd360208401611f80565b600080604083850312156120cb578182fd5b6120d483611f69565b946020939093013593505050565b600080602083850312156120f4578182fd5b823567ffffffffffffffff8082111561210b578384fd5b818501915085601f83011261211e578384fd5b81358181111561212c578485fd5b866020808302850101111561213f578485fd5b60209290920196919550909350505050565b600060208284031215612162578081fd5b61138082611f80565b60006020828403121561217c578081fd5b813561138081612998565b600060208284031215612198578081fd5b815161138081612998565b6000602082840312156121b4578081fd5b813567ffffffffffffffff8111156121ca578182fd5b8201601f810184136121da578182fd5b61164984823560208401611ef9565b6000602082840312156121fa578081fd5b5035919050565b60008151808452815b818110156122265760208185018101518683018201520161220a565b818111156122375782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061229390830184612201565b9695505050505050565b901515815260200190565b6000602082526113806020830184612201565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526013908201527221b0b63632b91034b9903737ba1037bbb732b960691b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601d908201527f4e6f2066767420617661696c61626c6520666f72206d696e74696e6721000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f546f6f206d616e7920746f6b656e7320746f206d696e74206174206f6e63652e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260119082015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604082015260600190565b602080825260129082015271556e646566696e656420746f6b656e49442160701b604082015260600190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b60208082528254828201526001808401546001600160a01b039081166040850152600280860154909116606085015260808085015260038501805460009493919285919081048184168061280a57607f821691505b86821081141561282857634e487b7160e01b88526022600452602488fd5b6128358260a08b01612894565b818015612849576001811461285a57612884565b60ff19851682528882019550612884565b6128638861289d565b8a5b8581101561287e57815484820152908801908a01612865565b83019650505b50939a9950505050505050505050565b90815260200190565b60009081526020902090565b600082198211156128bc576128bc612956565b500190565b6000826128d0576128d061296c565b500490565b6000816128e4576128e4612956565b506000190190565b60028104600182168061290057607f821691505b6020821081141561292157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561293b5761293b612956565b5060010190565b6000826129515761295161296c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ec057600080fdfea2646970667358221220435fd2998cc92c03d5c8f1d704aad7e8b104fc0a5b8a8798fb708211511ff22264736f6c63430008000033
Deployed Bytecode Sourcemap
47499:4935:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24503:305;;;;;;;;;;-1:-1:-1;24503:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25448:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27007:221::-;;;;;;;;;;-1:-1:-1;27007:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47583:33::-;;;;;;;;;;;;;:::i;26530:411::-;;;;;;;;;;-1:-1:-1;26530:411:0;;;;;:::i;:::-;;:::i;:::-;;49278:124;;;;;;;;;;-1:-1:-1;49278:124:0;;;;;:::i;:::-;;:::i;47662:33::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47982:55::-;;;;;;;;;;-1:-1:-1;47982:55:0;;;;;:::i;:::-;;:::i;27897:339::-;;;;;;;;;;-1:-1:-1;27897:339:0;;;;;:::i;:::-;;:::i;48974:118::-;;;;;;;;;;-1:-1:-1;48974:118:0;;;;;:::i;:::-;;:::i;48542:109::-;;;;;;;;;;;;;:::i;50458:239::-;;;;;;;;;;-1:-1:-1;50458:239:0;;;;;:::i;:::-;;:::i;50705:95::-;;;;;;;;;;-1:-1:-1;50705:95:0;;;;;:::i;:::-;;:::i;28307:185::-;;;;;;;;;;-1:-1:-1;28307:185:0;;;;;:::i;:::-;;:::i;50962:115::-;;;;;;;;;;-1:-1:-1;50962:115:0;;;;;:::i;:::-;;:::i;47864:26::-;;;;;;;;;;;;;:::i;51571:242::-;;;;;;;;;;-1:-1:-1;51571:242:0;;;;;:::i;:::-;;:::i;47702:34::-;;;;;;;;;;;;;:::i;51085:130::-;;;;;;;;;;-1:-1:-1;51085:130:0;;;;;:::i;:::-;;:::i;38191:94::-;;;;;;;;;;;;;:::i;47623:32::-;;;;;;;;;;;;;:::i;49410:1035::-;;;;;;:::i;:::-;;:::i;51451:112::-;;;;;;;;;;;;;:::i;37540:87::-;;;;;;;;;;;;;:::i;25617:104::-;;;;;;;;;;;;;:::i;47824:33::-;;;;;;;;;;;;;:::i;47897:34::-;;;;;;;;;;;;;:::i;27300:295::-;;;;;;;;;;-1:-1:-1;27300:295:0;;;;;:::i;:::-;;:::i;49100:170::-;;;;;;;;;;-1:-1:-1;49100:170:0;;;;;:::i;:::-;;:::i;28563:328::-;;;;;;;;;;-1:-1:-1;28563:328:0;;;;;:::i;:::-;;:::i;47938:37::-;;;;;;;;;;-1:-1:-1;47938:37:0;;;;;:::i;:::-;;:::i;51223:220::-;;;;;;;;;;-1:-1:-1;51223:220:0;;;;;:::i;:::-;;:::i;48806:160::-;;;;;;;;;;-1:-1:-1;48806:160:0;;;;;:::i;:::-;;:::i;27666:164::-;;;;;;;;;;-1:-1:-1;27666:164:0;;;;;:::i;:::-;;:::i;50808:144::-;;;;;;;;;;-1:-1:-1;50808:144:0;;;;;:::i;:::-;;:::i;38440:192::-;;;;;;;;;;-1:-1:-1;38440:192:0;;;;;:::i;:::-;;:::i;48659:135::-;;;;;;;;;;-1:-1:-1;48659:135:0;;;;;:::i;:::-;;:::i;24503:305::-;24605:4;-1:-1:-1;;;;;;24642:40:0;;-1:-1:-1;;;24642:40:0;;:105;;-1:-1:-1;;;;;;;24699:48:0;;-1:-1:-1;;;24699:48:0;24642:105;:158;;;;24764:36;24788:11;24764:23;:36::i;:::-;24622:178;;24503:305;;;;:::o;25448:100::-;25502:13;25535:5;25528:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25448:100;:::o;27007:221::-;27083:7;27111:16;27119:7;27111;:16::i;:::-;27103:73;;;;-1:-1:-1;;;27103:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;27196:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27196:24:0;;27007:221::o;47583:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26530:411::-;26611:13;26627:23;26642:7;26627:14;:23::i;:::-;26611:39;;26675:5;-1:-1:-1;;;;;26669:11:0;:2;-1:-1:-1;;;;;26669:11:0;;;26661:57;;;;-1:-1:-1;;;26661:57:0;;;;;;;:::i;:::-;26769:5;-1:-1:-1;;;;;26753:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26753:21:0;;:62;;;;26778:37;26795:5;26802:12;:10;:12::i;26778:37::-;26731:168;;;;-1:-1:-1;;;26731:168:0;;;;;;;:::i;:::-;26912:21;26921:2;26925:7;26912:8;:21::i;:::-;26530:411;;;:::o;49278:124::-;37771:12;:10;:12::i;:::-;-1:-1:-1;;;;;37760:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37760:23:0;;37752:68;;;;-1:-1:-1;;;37752:68:0;;;;;;;:::i;:::-;49363:31;;::::1;::::0;:14:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49278:124:::0;:::o;47662:33::-;;;;:::o;47982:55::-;;;;;;;;;;;;;:::o;27897:339::-;28092:41;28111:12;:10;:12::i;:::-;28125:7;28092:18;:41::i;:::-;28084:103;;;;-1:-1:-1;;;28084:103:0;;;;;;;:::i;:::-;28200:28;28210:4;28216:2;28220:7;28200:9;:28::i;48974:118::-;37771:12;:10;:12::i;:::-;-1:-1:-1;;;;;37760:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37760:23:0;;37752:68;;;;-1:-1:-1;;;37752:68:0;;;;;;;:::i;:::-;49056:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;48542:109::-:0;37771:12;:10;:12::i;:::-;-1:-1:-1;;;;;37760:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37760:23:0;;37752:68;;;;-1:-1:-1;;;37752:68:0;;;;;;;:::i;:::-;48601:6:::1;::::0;;-1:-1:-1;;48591:16:0;::::1;48601:6;::::0;;::::1;48600:7;48591:16;::::0;;;;48623:20:::1;::::0;::::1;::::0;::::1;::::0;48636:6:::1;::::0;48623:20:::1;:::i;:::-;;;;;;;;48542:109::o:0;50458:239::-;50517:4;;50530:143;50551:20;:27;50547:31;;50530:143;;;50625:5;-1:-1:-1;;;;;50598:32:0;:20;50619:1;50598:23;;;;;;-1:-1:-1;;;50598:23:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50598:23:0;:32;50594:72;;;50652:4;50645:11;;;;;50594:72;50580:3;;;;:::i;:::-;;;;50530:143;;;-1:-1:-1;50686:5:0;;50458:239;-1:-1:-1;;50458:239:0:o;50705:95::-;37771:12;:10;:12::i;:::-;-1:-1:-1;;;;;37760:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37760:23:0;;37752:68;;;;-1:-1:-1;;;37752:68:0;;;;;;;:::i;:::-;50770:15:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;50770:24:0;;::::1;::::0;;;::::1;::::0;;50705:95::o;28307:185::-;28445:39;28462:4;28468:2;28472:7;28445:39;;;;;;;;;;;;:16;:39::i;50962:115::-;51020:7;51047:14;;;:4;:14;;;;;:22;;;-1:-1:-1;;;;;51047:22:0;;50962:115::o;47864:26::-;;;;;;:::o;51571:242::-;51643:7;51679:13;;;:4;:13;;;;;:19;;;-1:-1:-1;;;;;51679:19:0;51717;51709:73;;;;-1:-1:-1;;;51709:73:0;;;;;;;:::i;47702:34::-;;;;:::o;51085:130::-;-1:-1:-1;;;;;51185:22:0;51158:7;51185:22;;;:13;:22;;;;;;;51085:130::o;38191:94::-;37771:12;:10;:12::i;:::-;-1:-1:-1;;;;;37760:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37760:23:0;;37752:68;;;;-1:-1:-1;;;37752:68:0;;;;;;;:::i;:::-;38256:21:::1;38274:1;38256:9;:21::i;:::-;38191:94::o:0;47623:32::-;;;;:::o;49410:1035::-;49525:11;;49488:13;;:34;;49506:15;49488:17;:34::i;:::-;:48;49480:90;;;;-1:-1:-1;;;49480:90:0;;;;;;;:::i;:::-;49595:7;:5;:7::i;:::-;-1:-1:-1;;;;;49581:21:0;:10;-1:-1:-1;;;;;49581:21:0;;49577:306;;49618:15;;;;;;;;:23;;:15;:23;49615:174;;;49666:25;49680:10;49666:13;:25::i;:::-;49658:61;;;;-1:-1:-1;;;49658:61:0;;;;;;;:::i;:::-;49615:174;;;49759:6;;;;49758:7;49750:37;;;;-1:-1:-1;;;49750:37:0;;;;;;;:::i;:::-;49810:15;49829:1;49810:20;49802:65;;;;-1:-1:-1;;;49802:65:0;;;;;;;:::i;:::-;49911:13;;;;49952:15;;49894:14;49935:32;49952:15;49911:13;49935:32;:::i;:::-;;;;-1:-1:-1;50009:15:0;;-1:-1:-1;49978:13:0;:27;49992:12;:10;:12::i;:::-;-1:-1:-1;;;;;49978:27:0;-1:-1:-1;;;;;49978:27:0;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;50040:9:0;;-1:-1:-1;50035:403:0;50059:15;50055:1;:19;50035:403;;;50096:18;50117:4;50096:18;50122:13;:6;50133:1;50122:10;:13::i;:::-;50117:19;;;;;;;;;;;-1:-1:-1;50117:19:0;;-1:-1:-1;50168:13:0;:6;50179:1;50168:10;:13::i;:::-;50151:30;;50213:12;:10;:12::i;:::-;50196:14;;;:29;;-1:-1:-1;;;;;;50196:29:0;-1:-1:-1;;;;;50196:29:0;;;;;;;;;;50255:12;:10;:12::i;:::-;50240;;;:27;;-1:-1:-1;;;;;;50240:27:0;-1:-1:-1;;;;;50240:27:0;;;;;;;;;;50295:29;50310:13;:6;50321:1;50310:10;:13::i;50295:29::-;50282:42;;;;:10;;;;:42;;;;;;:::i;:::-;;50339:38;50349:12;:10;:12::i;:::-;50363:13;:6;50374:1;50363:10;:13::i;:::-;50339:9;:38::i;:::-;50405:12;:10;:12::i;:::-;-1:-1:-1;;;;;50397:29:0;;50419:6;50397:29;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;50076:3:0;;;;:::i;:::-;;;;50035:403;;51451:112;37771:12;:10;:12::i;:::-;-1:-1:-1;;;;;37760:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37760:23:0;;37752:68;;;;-1:-1:-1;;;37752:68:0;;;;;;;:::i;:::-;51510:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;51502:30:0::1;:53;51533:21;51502:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;51451:112::o:0;37540:87::-;37613:6;;-1:-1:-1;;;;;37613:6:0;37540:87;:::o;25617:104::-;25673:13;25706:7;25699:14;;;;;:::i;47824:33::-;;;;:::o;47897:34::-;;;;;;;;;:::o;27300:295::-;27415:12;:10;:12::i;:::-;-1:-1:-1;;;;;27403:24:0;:8;-1:-1:-1;;;;;27403:24:0;;;27395:62;;;;-1:-1:-1;;;27395:62:0;;;;;;;:::i;:::-;27515:8;27470:18;:32;27489:12;:10;:12::i;:::-;-1:-1:-1;;;;;27470:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;27470:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;27470:53:0;;;;;;;;;;;27554:12;:10;:12::i;:::-;-1:-1:-1;;;;;27539:48:0;;27578:8;27539:48;;;;;;:::i;:::-;;;;;;;;27300:295;;:::o;49100:170::-;49161:13;49194:68;49217:12;49194:68;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49231:30;49253:7;49231:21;:30::i;:::-;49194:22;:68::i;28563:328::-;28738:41;28757:12;:10;:12::i;:::-;28771:7;28738:18;:41::i;:::-;28730:103;;;;-1:-1:-1;;;28730:103:0;;;;;;;:::i;:::-;28844:39;28858:4;28864:2;28868:7;28877:5;28844:13;:39::i;:::-;28563:328;;;;:::o;47938:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47938:37:0;;-1:-1:-1;47938:37:0;:::o;51223:220::-;51289:13;51334;;51323:8;:24;51315:84;;;;-1:-1:-1;;;51315:84:0;;;;;;;:::i;:::-;51417:14;;;;:4;:14;;;;;:18;;51410:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51223:220;;;:::o;48806:160::-;37771:12;:10;:12::i;:::-;-1:-1:-1;;;;;37760:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37760:23:0;;37752:68;;;;-1:-1:-1;;;37752:68:0;;;;;;;:::i;:::-;48884:13:::1;:30:::0;;;48930:28:::1;::::0;::::1;::::0;::::1;::::0;48900:14;;48930:28:::1;:::i;:::-;;;;;;;;48806:160:::0;:::o;27666:164::-;-1:-1:-1;;;;;27787:25:0;;;27763:4;27787:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27666:164::o;50808:144::-;37771:12;:10;:12::i;:::-;-1:-1:-1;;;;;37760:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37760:23:0;;37752:68;;;;-1:-1:-1;;;37752:68:0;;;;;;;:::i;:::-;50883:27:::1;50890:20;;50883:27;:::i;:::-;50917:29;:20;50940:6:::0;;50917:29:::1;:::i;38440:192::-:0;37771:12;:10;:12::i;:::-;-1:-1:-1;;;;;37760:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37760:23:0;;37752:68;;;;-1:-1:-1;;;37752:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38529:22:0;::::1;38521:73;;;;-1:-1:-1::0;;;38521:73:0::1;;;;;;;:::i;:::-;38605:19;38615:8;38605:9;:19::i;48659:135::-:0;37771:12;:10;:12::i;:::-;-1:-1:-1;;;;;37760:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37760:23:0;;37752:68;;;;-1:-1:-1;;;37752:68:0;;;;;;;:::i;:::-;48729:9:::1;:22:::0;;;48767:19:::1;::::0;::::1;::::0;::::1;::::0;48741:10;;48767:19:::1;:::i;41304:98::-:0;41362:7;41389:5;41393:1;41389;:5;:::i;:::-;41382:12;41304:98;-1:-1:-1;;;41304:98:0:o;46944:548::-;46999:17;47033:7;47029:59;;-1:-1:-1;47066:10:0;;;;;;;;;;;;-1:-1:-1;;;47066:10:0;;;;;;47029:59;47116:2;47104:9;47154:81;47161:6;;47154:81;;47193:8;;;;:::i;:::-;;-1:-1:-1;47216:7:0;;-1:-1:-1;47221:2:0;47216:7;;:::i;:::-;;;47154:81;;;47251:17;47281:6;47271:17;;;;;;-1:-1:-1;;;47271:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47271:17:0;-1:-1:-1;47332:2:0;;-1:-1:-1;47251:37:0;-1:-1:-1;47311:6:0;47345:111;47352:6;;47345:111;;47414:6;47418:2;47414:1;:6;:::i;:::-;47409:11;;:2;:11;:::i;:::-;47396:26;;47384:4;47389:3;;;:::i;:::-;;;;47384:9;;;;;;-1:-1:-1;;;47384:9:0;;;;;;;;;;;;:38;-1:-1:-1;;;;;47384:38:0;;;;;;;;-1:-1:-1;47437:7:0;47442:2;47437:7;;:::i;:::-;;;47345:111;;;-1:-1:-1;47479:4:0;46944:548;-1:-1:-1;;;;46944:548:0:o;46788:148::-;46866:13;46899:29;46909:2;46913;46899:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;12489:387::-;12812:20;12860:8;;;12489:387::o;23112:157::-;-1:-1:-1;;;;;;23221:40:0;;-1:-1:-1;;;23221:40:0;23112:157;;;:::o;30401:127::-;30466:4;30490:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30490:16:0;:30;;;30401:127::o;25142:239::-;25214:7;25250:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25250:16:0;25285:19;25277:73;;;;-1:-1:-1;;;25277:73:0;;;;;;;:::i;20215:98::-;20295:10;20215:98;:::o;34383:174::-;34458:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34458:29:0;-1:-1:-1;;;;;34458:29:0;;;;;;;;:24;;34512:23;34458:24;34512:14;:23::i;:::-;-1:-1:-1;;;;;34503:46:0;;;;;;;;;;;34383:174;;:::o;30695:348::-;30788:4;30813:16;30821:7;30813;:16::i;:::-;30805:73;;;;-1:-1:-1;;;30805:73:0;;;;;;;:::i;:::-;30889:13;30905:23;30920:7;30905:14;:23::i;:::-;30889:39;;30958:5;-1:-1:-1;;;;;30947:16:0;:7;-1:-1:-1;;;;;30947:16:0;;:51;;;;30991:7;-1:-1:-1;;;;;30967:31:0;:20;30979:7;30967:11;:20::i;:::-;-1:-1:-1;;;;;30967:31:0;;30947:51;:87;;;;31002:32;31019:5;31026:7;31002:16;:32::i;:::-;30939:96;30695:348;-1:-1:-1;;;;30695:348:0:o;51821:610::-;51981:13;;51971:7;:23;51963:54;;;;-1:-1:-1;;;51963:54:0;;;;;;;:::i;:::-;52089:4;-1:-1:-1;;;;;52069:24:0;:16;52077:7;52069;:16::i;:::-;-1:-1:-1;;;;;52069:24:0;;52061:56;;;;-1:-1:-1;;;52061:56:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52136:16:0;;52128:65;;;;-1:-1:-1;;;52128:65:0;;;;;;;:::i;:::-;52204:39;52225:4;52231:2;52235:7;52204:20;:39::i;:::-;52254:29;52271:1;52275:7;52254:8;:29::i;:::-;52294:13;;;;:4;:13;;;;;;;;:19;;:24;;-1:-1:-1;;;;;;52294:24:0;-1:-1:-1;;;;;52294:24:0;;;;;;;;;;52329:19;;;;:13;:19;;;;;:21;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;52361:17:0;;;;;;:13;:17;;;;;:19;;;;;;:::i;:::-;;;;;;52415:7;52411:2;-1:-1:-1;;;;;52396:27:0;52405:4;-1:-1:-1;;;;;52396:27:0;;;;;;;;;;;51821:610;;;:::o;38640:173::-;38715:6;;;-1:-1:-1;;;;;38732:17:0;;;-1:-1:-1;;;;;;38732:17:0;;;;;;;38765:40;;38715:6;;;38732:17;38715:6;;38765:40;;38696:16;;38765:40;38640:173;;:::o;31385:110::-;31461:26;31471:2;31475:7;31461:26;;;;;;;;;;;;:9;:26::i;29773:315::-;29930:28;29940:4;29946:2;29950:7;29930:9;:28::i;:::-;29977:48;30000:4;30006:2;30010:7;30019:5;29977:22;:48::i;:::-;29969:111;;;;-1:-1:-1;;;29969:111:0;;;;;;;:::i;45542:872::-;45968:10;;45955;;45942;;45929;;45916;;45674:13;;45723:2;;45760;;45797;;45834;;45871;;45698:16;;45968:10;;45955;;45942;;45916:23;;45929:10;45916:23;:::i;:::-;:36;;;;:::i;:::-;:49;;;;:::i;:::-;:62;;;;:::i;:::-;45905:74;;;;;;-1:-1:-1;;;45905:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45905:74:0;-1:-1:-1;45883:96:0;-1:-1:-1;45883:96:0;45988:19;;46050:58;46071:3;:10;46067:1;:14;46050:58;;;46102:3;46106:1;46102:6;;;;;;-1:-1:-1;;;46102:6:0;;;;;;;;;;;;;-1:-1:-1;;;;;;46102:6:0;46088;46095:3;;;;:::i;:::-;;;46088:11;;;;;;-1:-1:-1;;;46088:11:0;;;;;;;;;;;;:20;-1:-1:-1;;;;;46088:20:0;;;;;;;;-1:-1:-1;46083:3:0;;;;:::i;:::-;;;;46050:58;;;;46122:6;46117:58;46138:3;:10;46134:1;:14;46117:58;;;46169:3;46173:1;46169:6;;;;;;-1:-1:-1;;;46169:6:0;;;;;;;;;;;;;-1:-1:-1;;;;;;46169:6:0;46155;46162:3;;;;:::i;:::-;;;46155:11;;;;;;-1:-1:-1;;;46155:11:0;;;;;;;;;;;;:20;-1:-1:-1;;;;;46155:20:0;;;;;;;;-1:-1:-1;46150:3:0;;;;:::i;:::-;;;;46117:58;;;;46189:6;46184:58;46205:3;:10;46201:1;:14;46184:58;;;46236:3;46240:1;46236:6;;;;;;-1:-1:-1;;;46236:6:0;;;;;;;;;;;;;-1:-1:-1;;;;;;46236:6:0;46222;46229:3;;;;:::i;:::-;;;46222:11;;;;;;-1:-1:-1;;;46222:11:0;;;;;;;;;;;;:20;-1:-1:-1;;;;;46222:20:0;;;;;;;;-1:-1:-1;46217:3:0;;;;:::i;:::-;;;;46184:58;;;;46256:6;46251:58;46272:3;:10;46268:1;:14;46251:58;;;46303:3;46307:1;46303:6;;;;;;-1:-1:-1;;;46303:6:0;;;;;;;;;;;;;-1:-1:-1;;;;;;46303:6:0;46289;46296:3;;;;:::i;:::-;;;46289:11;;;;;;-1:-1:-1;;;46289:11:0;;;;;;;;;;;;:20;-1:-1:-1;;;;;46289:20:0;;;;;;;;-1:-1:-1;46284:3:0;;;;:::i;:::-;;;;46251:58;;;;46323:6;46318:58;46339:3;:10;46335:1;:14;46318:58;;;46370:3;46374:1;46370:6;;;;;;-1:-1:-1;;;46370:6:0;;;;;;;;;;;;;-1:-1:-1;;;;;;46370:6:0;46356;46363:3;;;;:::i;:::-;;;46356:11;;;;;;-1:-1:-1;;;46356:11:0;;;;;;;;;;;;:20;-1:-1:-1;;;;;46356:20:0;;;;;;;;-1:-1:-1;46351:3:0;;;;:::i;:::-;;;;46318:58;;;-1:-1:-1;46399:6:0;;45542:872;-1:-1:-1;;;;;;;;;;;;;45542:872:0:o;31722:321::-;31852:18;31858:2;31862:7;31852:5;:18::i;:::-;31903:54;31934:1;31938:2;31942:7;31951:5;31903:22;:54::i;:::-;31881:154;;;;-1:-1:-1;;;31881:154:0;;;;;;;:::i;35122:803::-;35277:4;35298:15;:2;-1:-1:-1;;;;;35298:13:0;;:15::i;:::-;35294:624;;;35350:2;-1:-1:-1;;;;;35334:36:0;;35371:12;:10;:12::i;:::-;35385:4;35391:7;35400:5;35334:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35334:72:0;;;;;;;;-1:-1:-1;;35334:72:0;;;;;;;;;;;;:::i;:::-;;;35330:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35580:13:0;;35576:272;;35623:60;;-1:-1:-1;;;35623:60:0;;;;;;;:::i;35576:272::-;35798:6;35792:13;35783:6;35779:2;35775:15;35768:38;35330:533;-1:-1:-1;;;;;;35457:55:0;-1:-1:-1;;;35457:55:0;;-1:-1:-1;35450:62:0;;35294:624;-1:-1:-1;35902:4:0;35122:803;;;;;;:::o;32379:382::-;-1:-1:-1;;;;;32459:16:0;;32451:61;;;;-1:-1:-1;;;32451:61:0;;;;;;;:::i;:::-;32532:16;32540:7;32532;:16::i;:::-;32531:17;32523:58;;;;-1:-1:-1;;;32523:58:0;;;;;;;:::i;:::-;32594:45;32623:1;32627:2;32631:7;32594:20;:45::i;:::-;-1:-1:-1;;;;;32652:13:0;;;;;;:9;:13;;;;;:18;;32669:1;;32652:13;:18;;32669:1;;32652:18;:::i;:::-;;;;-1:-1:-1;;32681:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32681:21:0;-1:-1:-1;;;;;32681:21:0;;;;;;;;32720:33;;32681:16;;;32720:33;;32681:16;;32720:33;32379:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:666::-;;;3200:2;3188:9;3179:7;3175:23;3171:32;3168:2;;;3221:6;3213;3206:22;3168:2;3266:9;3253:23;3295:18;3336:2;3328:6;3325:14;3322:2;;;3357:6;3349;3342:22;3322:2;3400:6;3389:9;3385:22;3375:32;;3445:7;3438:4;3434:2;3430:13;3426:27;3416:2;;3472:6;3464;3457:22;3416:2;3517;3504:16;3543:2;3535:6;3532:14;3529:2;;;3564:6;3556;3549:22;3529:2;3623:7;3618:2;3612;3604:6;3600:15;3596:2;3592:24;3588:33;3585:46;3582:2;;;3649:6;3641;3634:22;3582:2;3685;3677:11;;;;;3707:6;;-1:-1:-1;3158:561:1;;-1:-1:-1;;;;3158:561:1:o;3724:192::-;;3833:2;3821:9;3812:7;3808:23;3804:32;3801:2;;;3854:6;3846;3839:22;3801:2;3882:28;3900:9;3882:28;:::i;3921:257::-;;4032:2;4020:9;4011:7;4007:23;4003:32;4000:2;;;4053:6;4045;4038:22;4000:2;4097:9;4084:23;4116:32;4142:5;4116:32;:::i;4183:261::-;;4305:2;4293:9;4284:7;4280:23;4276:32;4273:2;;;4326:6;4318;4311:22;4273:2;4363:9;4357:16;4382:32;4408:5;4382:32;:::i;4449:482::-;;4571:2;4559:9;4550:7;4546:23;4542:32;4539:2;;;4592:6;4584;4577:22;4539:2;4637:9;4624:23;4670:18;4662:6;4659:30;4656:2;;;4707:6;4699;4692:22;4656:2;4735:22;;4788:4;4780:13;;4776:27;-1:-1:-1;4766:2:1;;4822:6;4814;4807:22;4766:2;4850:75;4917:7;4912:2;4899:16;4894:2;4890;4886:11;4850:75;:::i;4936:190::-;;5048:2;5036:9;5027:7;5023:23;5019:32;5016:2;;;5069:6;5061;5054:22;5016:2;-1:-1:-1;5097:23:1;;5006:120;-1:-1:-1;5006:120:1:o;5131:477::-;;5212:5;5206:12;5239:6;5234:3;5227:19;5264:3;5276:162;5290:6;5287:1;5284:13;5276:162;;;5352:4;5408:13;;;5404:22;;5398:29;5380:11;;;5376:20;;5369:59;5305:12;5276:162;;;5456:6;5453:1;5450:13;5447:2;;;5522:3;5515:4;5506:6;5501:3;5497:16;5493:27;5486:40;5447:2;-1:-1:-1;5590:2:1;5569:15;-1:-1:-1;;5565:29:1;5556:39;;;;5597:4;5552:50;;5182:426;-1:-1:-1;;5182:426:1:o;5613:203::-;-1:-1:-1;;;;;5777:32:1;;;;5759:51;;5747:2;5732:18;;5714:102::o;5821:490::-;-1:-1:-1;;;;;6090:15:1;;;6072:34;;6142:15;;6137:2;6122:18;;6115:43;6189:2;6174:18;;6167:34;;;6237:3;6232:2;6217:18;;6210:31;;;5821:490;;6258:47;;6285:19;;6277:6;6258:47;:::i;:::-;6250:55;6024:287;-1:-1:-1;;;;;;6024:287:1:o;6316:187::-;6481:14;;6474:22;6456:41;;6444:2;6429:18;;6411:92::o;6508:221::-;;6657:2;6646:9;6639:21;6677:46;6719:2;6708:9;6704:18;6696:6;6677:46;:::i;6734:414::-;6936:2;6918:21;;;6975:2;6955:18;;;6948:30;7014:34;7009:2;6994:18;;6987:62;-1:-1:-1;;;7080:2:1;7065:18;;7058:48;7138:3;7123:19;;6908:240::o;7153:402::-;7355:2;7337:21;;;7394:2;7374:18;;;7367:30;7433:34;7428:2;7413:18;;7406:62;-1:-1:-1;;;7499:2:1;7484:18;;7477:36;7545:3;7530:19;;7327:228::o;7560:352::-;7762:2;7744:21;;;7801:2;7781:18;;;7774:30;7840;7835:2;7820:18;;7813:58;7903:2;7888:18;;7734:178::o;7917:343::-;8119:2;8101:21;;;8158:2;8138:18;;;8131:30;-1:-1:-1;;;8192:2:1;8177:18;;8170:49;8251:2;8236:18;;8091:169::o;8265:400::-;8467:2;8449:21;;;8506:2;8486:18;;;8479:30;8545:34;8540:2;8525:18;;8518:62;-1:-1:-1;;;8611:2:1;8596:18;;8589:34;8655:3;8640:19;;8439:226::o;8670:349::-;8872:2;8854:21;;;8911:2;8891:18;;;8884:30;8950:27;8945:2;8930:18;;8923:55;9010:2;8995:18;;8844:175::o;9024:408::-;9226:2;9208:21;;;9265:2;9245:18;;;9238:30;9304:34;9299:2;9284:18;;9277:62;-1:-1:-1;;;9370:2:1;9355:18;;9348:42;9422:3;9407:19;;9198:234::o;9437:353::-;9639:2;9621:21;;;9678:2;9658:18;;;9651:30;9717:31;9712:2;9697:18;;9690:59;9781:2;9766:18;;9611:179::o;9795:420::-;9997:2;9979:21;;;10036:2;10016:18;;;10009:30;10075:34;10070:2;10055:18;;10048:62;10146:26;10141:2;10126:18;;10119:54;10205:3;10190:19;;9969:246::o;10220:405::-;10422:2;10404:21;;;10461:2;10441:18;;;10434:30;10500:34;10495:2;10480:18;;10473:62;-1:-1:-1;;;10566:2:1;10551:18;;10544:39;10615:3;10600:19;;10394:231::o;10630:356::-;10832:2;10814:21;;;10851:18;;;10844:30;10910:34;10905:2;10890:18;;10883:62;10977:2;10962:18;;10804:182::o;10991:408::-;11193:2;11175:21;;;11232:2;11212:18;;;11205:30;11271:34;11266:2;11251:18;;11244:62;-1:-1:-1;;;11337:2:1;11322:18;;11315:42;11389:3;11374:19;;11165:234::o;11404:356::-;11606:2;11588:21;;;11625:18;;;11618:30;11684:34;11679:2;11664:18;;11657:62;11751:2;11736:18;;11578:182::o;11765:411::-;11967:2;11949:21;;;12006:2;11986:18;;;11979:30;12045:34;12040:2;12025:18;;12018:62;-1:-1:-1;;;12111:2:1;12096:18;;12089:45;12166:3;12151:19;;11939:237::o;12181:397::-;12383:2;12365:21;;;12422:2;12402:18;;;12395:30;12461:34;12456:2;12441:18;;12434:62;-1:-1:-1;;;12527:2:1;12512:18;;12505:31;12568:3;12553:19;;12355:223::o;12583:356::-;12785:2;12767:21;;;12804:18;;;12797:30;12863:34;12858:2;12843:18;;12836:62;12930:2;12915:18;;12757:182::o;12944:413::-;13146:2;13128:21;;;13185:2;13165:18;;;13158:30;13224:34;13219:2;13204:18;;13197:62;-1:-1:-1;;;13290:2:1;13275:18;;13268:47;13347:3;13332:19;;13118:239::o;13362:341::-;13564:2;13546:21;;;13603:2;13583:18;;;13576:30;-1:-1:-1;;;13637:2:1;13622:18;;13615:47;13694:2;13679:18;;13536:167::o;13708:342::-;13910:2;13892:21;;;13949:2;13929:18;;;13922:30;-1:-1:-1;;;13983:2:1;13968:18;;13961:48;14041:2;14026:18;;13882:168::o;14055:347::-;14257:2;14239:21;;;14296:2;14276:18;;;14269:30;14335:25;14330:2;14315:18;;14308:53;14393:2;14378:18;;14229:173::o;14407:1557::-;14571:2;14582:21;;;14639:13;;14619:18;;;14612:41;14689:1;14760:15;;;14754:22;-1:-1:-1;;;;;14750:31:1;;;14745:2;14730:18;;14723:59;14840:4;14828:17;;;14822:24;14818:33;;;14813:2;14798:18;;14791:61;14936:4;14914:20;;;14907:34;14893:4;14881:17;;14991:19;;14407:1557;;14571:2;14881:17;;14407:1557;;14991:19;15056:20;;15111:18;;;;15138:2;;15192:4;15184:6;15180:17;15170:27;;15138:2;15245;15237:6;15234:14;15214:18;15211:38;15208:2;;;-1:-1:-1;;;15272:34:1;;15329:4;15326:1;15319:15;15360:4;15279;15347:18;15208:2;15395:65;15453:6;15447:3;15436:9;15432:19;15395:65;:::i;:::-;15476:18;15503:100;;;;15617:1;15612:326;;;;15469:469;;15503:100;-1:-1:-1;;15536:24:1;;15524:37;;15581:12;;;;-1:-1:-1;15503:100:1;;15612:326;15648:45;15680:12;15648:45;:::i;:::-;15715:4;15732:165;15746:6;15743:1;15740:13;15732:165;;;15824:14;;15811:11;;;15804:35;15867:16;;;;15761:10;;15732:165;;;15917:11;;;-1:-1:-1;;15469:469:1;-1:-1:-1;15955:3:1;;14551:1413;-1:-1:-1;;;;;;;;;;14551:1413:1:o;15969:177::-;16115:25;;;16103:2;16088:18;;16070:76::o;16151:129::-;;16219:17;;;16269:4;16253:21;;;16209:71::o;16441:128::-;;16512:1;16508:6;16505:1;16502:13;16499:2;;;16518:18;;:::i;:::-;-1:-1:-1;16554:9:1;;16489:80::o;16574:120::-;;16640:1;16630:2;;16645:18;;:::i;:::-;-1:-1:-1;16679:9:1;;16620:74::o;16699:136::-;;16766:5;16756:2;;16775:18;;:::i;:::-;-1:-1:-1;;;16811:18:1;;16746:89::o;16840:380::-;16925:1;16915:12;;16972:1;16962:12;;;16983:2;;17037:4;17029:6;17025:17;17015:27;;16983:2;17090;17082:6;17079:14;17059:18;17056:38;17053:2;;;17136:10;17131:3;17127:20;17124:1;17117:31;17171:4;17168:1;17161:15;17199:4;17196:1;17189:15;17053:2;;16895:325;;;:::o;17225:135::-;;-1:-1:-1;;17285:17:1;;17282:2;;;17305:18;;:::i;:::-;-1:-1:-1;17352:1:1;17341:13;;17272:88::o;17365:112::-;;17423:1;17413:2;;17428:18;;:::i;:::-;-1:-1:-1;17462:9:1;;17403:74::o;17482:127::-;17543:10;17538:3;17534:20;17531:1;17524:31;17574:4;17571:1;17564:15;17598:4;17595:1;17588:15;17614:127;17675:10;17670:3;17666:20;17663:1;17656:31;17706:4;17703:1;17696:15;17730:4;17727:1;17720:15;17746:127;17807:10;17802:3;17798:20;17795:1;17788:31;17838:4;17835:1;17828:15;17862:4;17859:1;17852:15;17878:133;-1:-1:-1;;;;;;17954:32:1;;17944:43;;17934:2;;18001:1;17998;17991:12
Swarm Source
ipfs://435fd2998cc92c03d5c8f1d704aad7e8b104fc0a5b8a8798fb708211511ff222
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.