ERC-721
Overview
Max Total Supply
729 CVIP_ESTATE
Holders
206
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CVIP_ESTATELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LandsaleNFT_ESTATE
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-16 */ // 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"); } /** * @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 {} } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { //unchecked { counter._value += 1; //} } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); //unchecked { counter._value = value - 1; //} } function reset(Counter storage counter) internal { counter._value = 0; } } contract LandsaleNFT_ESTATE is ERC721Enumerable, AccessControl { // CVIP_ESTATE (L2 / on ETH) // CVIP_PARCEL (L3 / on Polygon) constructor() ERC721("CVIP_ESTATE", "CVIP_ESTATE") { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); } mapping(uint256 => uint256) internal tokenIds_attributes; using Counters for Counters.Counter; Counters.Counter private _tokenIds; string _baseTokenURI = "https://api.cryptoverse.vip/metadata/"; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); address public upgradedToAddress = address(0); function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } function getCurrentTokenId() public view returns (uint256) { return _tokenIds.current(); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not a admin"); _baseTokenURI = baseURI; } function mintNextToken(address _mintTo) external returns (bool) { _tokenIds.increment(); return mint(_mintTo, _tokenIds.current()); } function mint(address _mintTo, uint256 _tokenId) public returns (bool) { require(address(0) == upgradedToAddress, "Contract has been upgraded to a new address"); require(hasRole(MINTER_ROLE, _msgSender()), "Caller is not a minter"); require(_mintTo != address(0), "ERC721: mint to the zero address"); require(!_exists(_tokenId), "ERC721: token already minted"); _safeMint(_mintTo, _tokenId); return true; } function upgrade(address _upgradedToAddress) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not a admin"); upgradedToAddress = _upgradedToAddress; } function getAttributes(uint256 _tokenId) public view returns (uint256 attributes) { return (tokenIds_attributes[_tokenId]); } function updateAttributes(uint256 _tokenId, uint256 _attributes) public { require(hasRole(MINTER_ROLE, _msgSender()), "Caller is not a minter"); require(_exists(_tokenId), "Token does not exist"); tokenIds_attributes[_tokenId] = _attributes; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getAttributes","outputs":[{"internalType":"uint256","name":"attributes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_mintTo","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mintTo","type":"address"}],"name":"mintNextToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_attributes","type":"uint256"}],"name":"updateAttributes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_upgradedToAddress","type":"address"}],"name":"upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upgradedToAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060600160405280602581526020016200480b60259139600d9080519060200190620000359291906200030c565b506000600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008557600080fd5b506040518060400160405280600b81526020017f435649505f4553544154450000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f435649505f45535441544500000000000000000000000000000000000000000081525081600090805190602001906200010a9291906200030c565b508060019080519060200190620001239291906200030c565b5050506200014a6000801b6200013e6200019160201b60201c565b6200019960201b60201c565b6200018b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200017f6200019160201b60201c565b6200019960201b60201c565b62000421565b600033905090565b620001ab8282620001af60201b60201c565b5050565b620001c18282620002a160201b60201c565b6200029d576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002426200019160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8280546200031a90620003bc565b90600052602060002090601f0160209004810192826200033e57600085556200038a565b82601f106200035957805160ff19168380011785556200038a565b828001600101855582156200038a579182015b82811115620003895782518255916020019190600101906200036c565b5b5090506200039991906200039d565b5090565b5b80821115620003b85760008160009055506001016200039e565b5090565b60006002820490506001821680620003d557607f821691505b60208210811415620003ec57620003eb620003f2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6143da80620004316000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806355f804b31161010f578063a22cb465116100a2578063d00ff23f11610071578063d00ff23f146105da578063d5391393146105f6578063d547741f14610614578063e985e9c514610630576101e5565b8063a22cb46514610554578063b88d4fde14610570578063c1244e8d1461058c578063c87b56dd146105aa576101e5565b80637b006774116100de5780637b006774146104b857806391d14854146104e857806395d89b4114610518578063a217fddf14610536576101e5565b806355f804b31461041e578063561892361461043a5780636352211e1461045857806370a0823114610488576101e5565b8063248a9ca31161018757806340c10f191161015657806340c10f191461037257806342842e0e146103a25780634378a6e3146103be5780634f6ccce7146103ee576101e5565b8063248a9ca3146102da5780632f2ff15d1461030a5780632f745c591461032657806336568abe14610356576101e5565b80630900f010116101c35780630900f01014610268578063095ea7b31461028457806318160ddd146102a057806323b872dd146102be576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff9190612f0b565b610660565b6040516102119190613507565b60405180910390f35b610222610672565b60405161022f919061353d565b60405180910390f35b610252600480360381019061024d9190612fae565b610704565b60405161025f91906134a0565b60405180910390f35b610282600480360381019061027d9190612cdb565b610789565b005b61029e60048036038101906102999190612e5e565b610820565b005b6102a8610938565b6040516102b5919061381f565b60405180910390f35b6102d860048036038101906102d39190612d48565b610945565b005b6102f460048036038101906102ef9190612e9e565b6109a5565b6040516103019190613522565b60405180910390f35b610324600480360381019061031f9190612ecb565b6109c5565b005b610340600480360381019061033b9190612e5e565b6109ee565b60405161034d919061381f565b60405180910390f35b610370600480360381019061036b9190612ecb565b610a93565b005b61038c60048036038101906103879190612e5e565b610b16565b6040516103999190613507565b60405180910390f35b6103bc60048036038101906103b79190612d48565b610ce6565b005b6103d860048036038101906103d39190612fae565b610d06565b6040516103e5919061381f565b60405180910390f35b61040860048036038101906104039190612fae565b610d23565b604051610415919061381f565b60405180910390f35b61043860048036038101906104339190612f65565b610d94565b005b610442610e01565b60405161044f919061381f565b60405180910390f35b610472600480360381019061046d9190612fae565b610e12565b60405161047f91906134a0565b60405180910390f35b6104a2600480360381019061049d9190612cdb565b610ec4565b6040516104af919061381f565b60405180910390f35b6104d260048036038101906104cd9190612cdb565b610f7c565b6040516104df9190613507565b60405180910390f35b61050260048036038101906104fd9190612ecb565b610fa2565b60405161050f9190613507565b60405180910390f35b61052061100d565b60405161052d919061353d565b60405180910390f35b61053e61109f565b60405161054b9190613522565b60405180910390f35b61056e60048036038101906105699190612e1e565b6110a6565b005b61058a60048036038101906105859190612d9b565b611227565b005b610594611289565b6040516105a191906134a0565b60405180910390f35b6105c460048036038101906105bf9190612fae565b6112af565b6040516105d1919061353d565b60405180910390f35b6105f460048036038101906105ef9190612fdb565b611356565b005b6105fe61142a565b60405161060b9190613522565b60405180910390f35b61062e60048036038101906106299190612ecb565b61144e565b005b61064a60048036038101906106459190612d08565b611477565b6040516106579190613507565b60405180910390f35b600061066b8261150b565b9050919050565b60606000805461068190613b03565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad90613b03565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b600061070f82611585565b61074e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107459061373f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61079d6000801b6107986115f1565b610fa2565b6107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d39061355f565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061082b82610e12565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561089c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108939061379f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108bb6115f1565b73ffffffffffffffffffffffffffffffffffffffff1614806108ea57506108e9816108e46115f1565b611477565b5b610929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109209061369f565b60405180910390fd5b61093383836115f9565b505050565b6000600880549050905090565b6109566109506115f1565b826116b2565b610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c906137bf565b60405180910390fd5b6109a0838383611790565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b6109ce826109a5565b6109df816109da6115f1565b6119ec565b6109e98383611a89565b505050565b60006109f983610ec4565b8210610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a319061359f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a9b6115f1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff906137ff565b60405180910390fd5b610b128282611b6a565b5050565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1614610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba09061367f565b60405180910390fd5b610bda7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610bd56115f1565b610fa2565b610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c10906136bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c809061371f565b60405180910390fd5b610c9282611585565b15610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906135df565b60405180910390fd5b610cdc8383611c4c565b6001905092915050565b610d0183838360405180602001604052806000815250611227565b505050565b6000600b6000838152602001908152602001600020549050919050565b6000610d2d610938565b8210610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d65906137df565b60405180910390fd5b60088281548110610d8257610d81613c9c565b5b90600052602060002001549050919050565b610da86000801b610da36115f1565b610fa2565b610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde9061355f565b60405180910390fd5b80600d9080519060200190610dfd929190612ada565b5050565b6000610e0d600c611c6a565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb2906136ff565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c906136df565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610f88600c611c78565b610f9b82610f96600c611c6a565b610b16565b9050919050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606001805461101c90613b03565b80601f016020809104026020016040519081016040528092919081815260200182805461104890613b03565b80156110955780601f1061106a57610100808354040283529160200191611095565b820191906000526020600020905b81548152906001019060200180831161107857829003601f168201915b5050505050905090565b6000801b81565b6110ae6115f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111139061361f565b60405180910390fd5b80600560006111296115f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111d66115f1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161121b9190613507565b60405180910390a35050565b6112386112326115f1565b836116b2565b611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e906137bf565b60405180910390fd5b61128384848484611c97565b50505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606112ba82611585565b6112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f09061377f565b60405180910390fd5b6000611303611cf3565b90506000815111611323576040518060200160405280600081525061134e565b8061132d84611d85565b60405160200161133e929190613442565b6040516020818303038152906040525b915050919050565b6113877f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66113826115f1565b610fa2565b6113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd906136bf565b60405180910390fd5b6113cf82611585565b61140e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114059061363f565b60405180910390fd5b80600b6000848152602001908152602001600020819055505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611457826109a5565b611468816114636115f1565b6119ec565b6114728383611b6a565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061157e575061157d82611ee6565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661166c83610e12565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116bd82611585565b6116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f39061365f565b60405180910390fd5b600061170783610e12565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061177657508373ffffffffffffffffffffffffffffffffffffffff1661175e84610704565b73ffffffffffffffffffffffffffffffffffffffff16145b8061178757506117868185611477565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117b082610e12565b73ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd9061375f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d906135ff565b60405180910390fd5b611881838383611f60565b61188c6000826115f9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118dc91906139e5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119339190613904565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6119f68282610fa2565b611a8557611a1b8173ffffffffffffffffffffffffffffffffffffffff166014612074565b611a298360001c6020612074565b604051602001611a3a929190613466565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c919061353d565b60405180910390fd5b5050565b611a938282610fa2565b611b66576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b0b6115f1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611b748282610fa2565b15611c48576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611bed6115f1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611c668282604051806020016040528060008152506122b0565b5050565b600081600001549050919050565b6001816000016000828254611c8d9190613904565b9250508190555050565b611ca2848484611790565b611cae8484848461230b565b611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce4906135bf565b60405180910390fd5b50505050565b6060600d8054611d0290613b03565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2e90613b03565b8015611d7b5780601f10611d5057610100808354040283529160200191611d7b565b820191906000526020600020905b815481529060010190602001808311611d5e57829003601f168201915b5050505050905090565b60606000821415611dcd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ee1565b600082905060005b60008214611dff578080611de890613b66565b915050600a82611df8919061395a565b9150611dd5565b60008167ffffffffffffffff811115611e1b57611e1a613ccb565b5b6040519080825280601f01601f191660200182016040528015611e4d5781602001600182028036833780820191505090505b5090505b60008514611eda57600182611e6691906139e5565b9150600a85611e759190613baf565b6030611e819190613904565b60f81b818381518110611e9757611e96613c9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ed3919061395a565b9450611e51565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f595750611f58826124a2565b5b9050919050565b611f6b838383612584565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fae57611fa981612589565b611fed565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611fec57611feb83826125d2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120305761202b8161273f565b61206f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461206e5761206d8282612810565b5b5b505050565b606060006002836002612087919061398b565b6120919190613904565b67ffffffffffffffff8111156120aa576120a9613ccb565b5b6040519080825280601f01601f1916602001820160405280156120dc5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061211457612113613c9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061217857612177613c9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026121b8919061398b565b6121c29190613904565b90505b6001811115612262577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061220457612203613c9c565b5b1a60f81b82828151811061221b5761221a613c9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061225b90613ad9565b90506121c5565b50600084146122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d9061357f565b60405180910390fd5b8091505092915050565b6122ba838361288f565b6122c7600084848461230b565b612306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fd906135bf565b60405180910390fd5b505050565b600061232c8473ffffffffffffffffffffffffffffffffffffffff16612a5d565b15612495578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123556115f1565b8786866040518563ffffffff1660e01b815260040161237794939291906134bb565b602060405180830381600087803b15801561239157600080fd5b505af19250505080156123c257506040513d601f19601f820116820180604052508101906123bf9190612f38565b60015b612445573d80600081146123f2576040519150601f19603f3d011682016040523d82523d6000602084013e6123f7565b606091505b5060008151141561243d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612434906135bf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061249a565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061256d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061257d575061257c82612a70565b5b9050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125df84610ec4565b6125e991906139e5565b90506000600760008481526020019081526020016000205490508181146126ce576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061275391906139e5565b905060006009600084815260200190815260200160002054905060006008838154811061278357612782613c9c565b5b9060005260206000200154905080600883815481106127a5576127a4613c9c565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127f4576127f3613c6d565b5b6001900381819060005260206000200160009055905550505050565b600061281b83610ec4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f69061371f565b60405180910390fd5b61290881611585565b15612948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293f906135df565b60405180910390fd5b61295460008383611f60565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129a49190613904565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612ae690613b03565b90600052602060002090601f016020900481019282612b085760008555612b4f565b82601f10612b2157805160ff1916838001178555612b4f565b82800160010185558215612b4f579182015b82811115612b4e578251825591602001919060010190612b33565b5b509050612b5c9190612b60565b5090565b5b80821115612b79576000816000905550600101612b61565b5090565b6000612b90612b8b8461385f565b61383a565b905082815260208101848484011115612bac57612bab613cff565b5b612bb7848285613a97565b509392505050565b6000612bd2612bcd84613890565b61383a565b905082815260208101848484011115612bee57612bed613cff565b5b612bf9848285613a97565b509392505050565b600081359050612c1081614331565b92915050565b600081359050612c2581614348565b92915050565b600081359050612c3a8161435f565b92915050565b600081359050612c4f81614376565b92915050565b600081519050612c6481614376565b92915050565b600082601f830112612c7f57612c7e613cfa565b5b8135612c8f848260208601612b7d565b91505092915050565b600082601f830112612cad57612cac613cfa565b5b8135612cbd848260208601612bbf565b91505092915050565b600081359050612cd58161438d565b92915050565b600060208284031215612cf157612cf0613d09565b5b6000612cff84828501612c01565b91505092915050565b60008060408385031215612d1f57612d1e613d09565b5b6000612d2d85828601612c01565b9250506020612d3e85828601612c01565b9150509250929050565b600080600060608486031215612d6157612d60613d09565b5b6000612d6f86828701612c01565b9350506020612d8086828701612c01565b9250506040612d9186828701612cc6565b9150509250925092565b60008060008060808587031215612db557612db4613d09565b5b6000612dc387828801612c01565b9450506020612dd487828801612c01565b9350506040612de587828801612cc6565b925050606085013567ffffffffffffffff811115612e0657612e05613d04565b5b612e1287828801612c6a565b91505092959194509250565b60008060408385031215612e3557612e34613d09565b5b6000612e4385828601612c01565b9250506020612e5485828601612c16565b9150509250929050565b60008060408385031215612e7557612e74613d09565b5b6000612e8385828601612c01565b9250506020612e9485828601612cc6565b9150509250929050565b600060208284031215612eb457612eb3613d09565b5b6000612ec284828501612c2b565b91505092915050565b60008060408385031215612ee257612ee1613d09565b5b6000612ef085828601612c2b565b9250506020612f0185828601612c01565b9150509250929050565b600060208284031215612f2157612f20613d09565b5b6000612f2f84828501612c40565b91505092915050565b600060208284031215612f4e57612f4d613d09565b5b6000612f5c84828501612c55565b91505092915050565b600060208284031215612f7b57612f7a613d09565b5b600082013567ffffffffffffffff811115612f9957612f98613d04565b5b612fa584828501612c98565b91505092915050565b600060208284031215612fc457612fc3613d09565b5b6000612fd284828501612cc6565b91505092915050565b60008060408385031215612ff257612ff1613d09565b5b600061300085828601612cc6565b925050602061301185828601612cc6565b9150509250929050565b61302481613a19565b82525050565b61303381613a2b565b82525050565b61304281613a37565b82525050565b6000613053826138c1565b61305d81856138d7565b935061306d818560208601613aa6565b61307681613d0e565b840191505092915050565b600061308c826138cc565b61309681856138e8565b93506130a6818560208601613aa6565b6130af81613d0e565b840191505092915050565b60006130c5826138cc565b6130cf81856138f9565b93506130df818560208601613aa6565b80840191505092915050565b60006130f86015836138e8565b915061310382613d1f565b602082019050919050565b600061311b6020836138e8565b915061312682613d48565b602082019050919050565b600061313e602b836138e8565b915061314982613d71565b604082019050919050565b60006131616032836138e8565b915061316c82613dc0565b604082019050919050565b6000613184601c836138e8565b915061318f82613e0f565b602082019050919050565b60006131a76024836138e8565b91506131b282613e38565b604082019050919050565b60006131ca6019836138e8565b91506131d582613e87565b602082019050919050565b60006131ed6014836138e8565b91506131f882613eb0565b602082019050919050565b6000613210602c836138e8565b915061321b82613ed9565b604082019050919050565b6000613233602b836138e8565b915061323e82613f28565b604082019050919050565b60006132566038836138e8565b915061326182613f77565b604082019050919050565b60006132796016836138e8565b915061328482613fc6565b602082019050919050565b600061329c602a836138e8565b91506132a782613fef565b604082019050919050565b60006132bf6029836138e8565b91506132ca8261403e565b604082019050919050565b60006132e26020836138e8565b91506132ed8261408d565b602082019050919050565b6000613305602c836138e8565b9150613310826140b6565b604082019050919050565b60006133286029836138e8565b915061333382614105565b604082019050919050565b600061334b602f836138e8565b915061335682614154565b604082019050919050565b600061336e6021836138e8565b9150613379826141a3565b604082019050919050565b60006133916031836138e8565b915061339c826141f2565b604082019050919050565b60006133b4602c836138e8565b91506133bf82614241565b604082019050919050565b60006133d76017836138f9565b91506133e282614290565b601782019050919050565b60006133fa6011836138f9565b9150613405826142b9565b601182019050919050565b600061341d602f836138e8565b9150613428826142e2565b604082019050919050565b61343c81613a8d565b82525050565b600061344e82856130ba565b915061345a82846130ba565b91508190509392505050565b6000613471826133ca565b915061347d82856130ba565b9150613488826133ed565b915061349482846130ba565b91508190509392505050565b60006020820190506134b5600083018461301b565b92915050565b60006080820190506134d0600083018761301b565b6134dd602083018661301b565b6134ea6040830185613433565b81810360608301526134fc8184613048565b905095945050505050565b600060208201905061351c600083018461302a565b92915050565b60006020820190506135376000830184613039565b92915050565b600060208201905081810360008301526135578184613081565b905092915050565b60006020820190508181036000830152613578816130eb565b9050919050565b600060208201905081810360008301526135988161310e565b9050919050565b600060208201905081810360008301526135b881613131565b9050919050565b600060208201905081810360008301526135d881613154565b9050919050565b600060208201905081810360008301526135f881613177565b9050919050565b600060208201905081810360008301526136188161319a565b9050919050565b60006020820190508181036000830152613638816131bd565b9050919050565b60006020820190508181036000830152613658816131e0565b9050919050565b6000602082019050818103600083015261367881613203565b9050919050565b6000602082019050818103600083015261369881613226565b9050919050565b600060208201905081810360008301526136b881613249565b9050919050565b600060208201905081810360008301526136d88161326c565b9050919050565b600060208201905081810360008301526136f88161328f565b9050919050565b60006020820190508181036000830152613718816132b2565b9050919050565b60006020820190508181036000830152613738816132d5565b9050919050565b60006020820190508181036000830152613758816132f8565b9050919050565b600060208201905081810360008301526137788161331b565b9050919050565b600060208201905081810360008301526137988161333e565b9050919050565b600060208201905081810360008301526137b881613361565b9050919050565b600060208201905081810360008301526137d881613384565b9050919050565b600060208201905081810360008301526137f8816133a7565b9050919050565b6000602082019050818103600083015261381881613410565b9050919050565b60006020820190506138346000830184613433565b92915050565b6000613844613855565b90506138508282613b35565b919050565b6000604051905090565b600067ffffffffffffffff82111561387a57613879613ccb565b5b61388382613d0e565b9050602081019050919050565b600067ffffffffffffffff8211156138ab576138aa613ccb565b5b6138b482613d0e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061390f82613a8d565b915061391a83613a8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561394f5761394e613be0565b5b828201905092915050565b600061396582613a8d565b915061397083613a8d565b9250826139805761397f613c0f565b5b828204905092915050565b600061399682613a8d565b91506139a183613a8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139da576139d9613be0565b5b828202905092915050565b60006139f082613a8d565b91506139fb83613a8d565b925082821015613a0e57613a0d613be0565b5b828203905092915050565b6000613a2482613a6d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ac4578082015181840152602081019050613aa9565b83811115613ad3576000848401525b50505050565b6000613ae482613a8d565b91506000821415613af857613af7613be0565b5b600182039050919050565b60006002820490506001821680613b1b57607f821691505b60208210811415613b2f57613b2e613c3e565b5b50919050565b613b3e82613d0e565b810181811067ffffffffffffffff82111715613b5d57613b5c613ccb565b5b80604052505050565b6000613b7182613a8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ba457613ba3613be0565b5b600182019050919050565b6000613bba82613a8d565b9150613bc583613a8d565b925082613bd557613bd4613c0f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616c6c6572206973206e6f7420612061646d696e0000000000000000000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f6e747261637420686173206265656e20757067726164656420746f20612060008201527f6e65772061646472657373000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616c6c6572206973206e6f742061206d696e74657200000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61433a81613a19565b811461434557600080fd5b50565b61435181613a2b565b811461435c57600080fd5b50565b61436881613a37565b811461437357600080fd5b50565b61437f81613a41565b811461438a57600080fd5b50565b61439681613a8d565b81146143a157600080fd5b5056fea264697066735822122032a6fc43623bde89734c2895409fd616f649c58301ca4e61e95898424407aace64736f6c6343000806003368747470733a2f2f6170692e63727970746f76657273652e7669702f6d657461646174612f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806355f804b31161010f578063a22cb465116100a2578063d00ff23f11610071578063d00ff23f146105da578063d5391393146105f6578063d547741f14610614578063e985e9c514610630576101e5565b8063a22cb46514610554578063b88d4fde14610570578063c1244e8d1461058c578063c87b56dd146105aa576101e5565b80637b006774116100de5780637b006774146104b857806391d14854146104e857806395d89b4114610518578063a217fddf14610536576101e5565b806355f804b31461041e578063561892361461043a5780636352211e1461045857806370a0823114610488576101e5565b8063248a9ca31161018757806340c10f191161015657806340c10f191461037257806342842e0e146103a25780634378a6e3146103be5780634f6ccce7146103ee576101e5565b8063248a9ca3146102da5780632f2ff15d1461030a5780632f745c591461032657806336568abe14610356576101e5565b80630900f010116101c35780630900f01014610268578063095ea7b31461028457806318160ddd146102a057806323b872dd146102be576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff9190612f0b565b610660565b6040516102119190613507565b60405180910390f35b610222610672565b60405161022f919061353d565b60405180910390f35b610252600480360381019061024d9190612fae565b610704565b60405161025f91906134a0565b60405180910390f35b610282600480360381019061027d9190612cdb565b610789565b005b61029e60048036038101906102999190612e5e565b610820565b005b6102a8610938565b6040516102b5919061381f565b60405180910390f35b6102d860048036038101906102d39190612d48565b610945565b005b6102f460048036038101906102ef9190612e9e565b6109a5565b6040516103019190613522565b60405180910390f35b610324600480360381019061031f9190612ecb565b6109c5565b005b610340600480360381019061033b9190612e5e565b6109ee565b60405161034d919061381f565b60405180910390f35b610370600480360381019061036b9190612ecb565b610a93565b005b61038c60048036038101906103879190612e5e565b610b16565b6040516103999190613507565b60405180910390f35b6103bc60048036038101906103b79190612d48565b610ce6565b005b6103d860048036038101906103d39190612fae565b610d06565b6040516103e5919061381f565b60405180910390f35b61040860048036038101906104039190612fae565b610d23565b604051610415919061381f565b60405180910390f35b61043860048036038101906104339190612f65565b610d94565b005b610442610e01565b60405161044f919061381f565b60405180910390f35b610472600480360381019061046d9190612fae565b610e12565b60405161047f91906134a0565b60405180910390f35b6104a2600480360381019061049d9190612cdb565b610ec4565b6040516104af919061381f565b60405180910390f35b6104d260048036038101906104cd9190612cdb565b610f7c565b6040516104df9190613507565b60405180910390f35b61050260048036038101906104fd9190612ecb565b610fa2565b60405161050f9190613507565b60405180910390f35b61052061100d565b60405161052d919061353d565b60405180910390f35b61053e61109f565b60405161054b9190613522565b60405180910390f35b61056e60048036038101906105699190612e1e565b6110a6565b005b61058a60048036038101906105859190612d9b565b611227565b005b610594611289565b6040516105a191906134a0565b60405180910390f35b6105c460048036038101906105bf9190612fae565b6112af565b6040516105d1919061353d565b60405180910390f35b6105f460048036038101906105ef9190612fdb565b611356565b005b6105fe61142a565b60405161060b9190613522565b60405180910390f35b61062e60048036038101906106299190612ecb565b61144e565b005b61064a60048036038101906106459190612d08565b611477565b6040516106579190613507565b60405180910390f35b600061066b8261150b565b9050919050565b60606000805461068190613b03565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad90613b03565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b600061070f82611585565b61074e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107459061373f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61079d6000801b6107986115f1565b610fa2565b6107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d39061355f565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061082b82610e12565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561089c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108939061379f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108bb6115f1565b73ffffffffffffffffffffffffffffffffffffffff1614806108ea57506108e9816108e46115f1565b611477565b5b610929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109209061369f565b60405180910390fd5b61093383836115f9565b505050565b6000600880549050905090565b6109566109506115f1565b826116b2565b610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c906137bf565b60405180910390fd5b6109a0838383611790565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b6109ce826109a5565b6109df816109da6115f1565b6119ec565b6109e98383611a89565b505050565b60006109f983610ec4565b8210610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a319061359f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a9b6115f1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff906137ff565b60405180910390fd5b610b128282611b6a565b5050565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1614610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba09061367f565b60405180910390fd5b610bda7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610bd56115f1565b610fa2565b610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c10906136bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c809061371f565b60405180910390fd5b610c9282611585565b15610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906135df565b60405180910390fd5b610cdc8383611c4c565b6001905092915050565b610d0183838360405180602001604052806000815250611227565b505050565b6000600b6000838152602001908152602001600020549050919050565b6000610d2d610938565b8210610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d65906137df565b60405180910390fd5b60088281548110610d8257610d81613c9c565b5b90600052602060002001549050919050565b610da86000801b610da36115f1565b610fa2565b610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde9061355f565b60405180910390fd5b80600d9080519060200190610dfd929190612ada565b5050565b6000610e0d600c611c6a565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb2906136ff565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c906136df565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610f88600c611c78565b610f9b82610f96600c611c6a565b610b16565b9050919050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606001805461101c90613b03565b80601f016020809104026020016040519081016040528092919081815260200182805461104890613b03565b80156110955780601f1061106a57610100808354040283529160200191611095565b820191906000526020600020905b81548152906001019060200180831161107857829003601f168201915b5050505050905090565b6000801b81565b6110ae6115f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111139061361f565b60405180910390fd5b80600560006111296115f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111d66115f1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161121b9190613507565b60405180910390a35050565b6112386112326115f1565b836116b2565b611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e906137bf565b60405180910390fd5b61128384848484611c97565b50505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606112ba82611585565b6112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f09061377f565b60405180910390fd5b6000611303611cf3565b90506000815111611323576040518060200160405280600081525061134e565b8061132d84611d85565b60405160200161133e929190613442565b6040516020818303038152906040525b915050919050565b6113877f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66113826115f1565b610fa2565b6113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd906136bf565b60405180910390fd5b6113cf82611585565b61140e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114059061363f565b60405180910390fd5b80600b6000848152602001908152602001600020819055505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611457826109a5565b611468816114636115f1565b6119ec565b6114728383611b6a565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061157e575061157d82611ee6565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661166c83610e12565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116bd82611585565b6116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f39061365f565b60405180910390fd5b600061170783610e12565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061177657508373ffffffffffffffffffffffffffffffffffffffff1661175e84610704565b73ffffffffffffffffffffffffffffffffffffffff16145b8061178757506117868185611477565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117b082610e12565b73ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd9061375f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d906135ff565b60405180910390fd5b611881838383611f60565b61188c6000826115f9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118dc91906139e5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119339190613904565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6119f68282610fa2565b611a8557611a1b8173ffffffffffffffffffffffffffffffffffffffff166014612074565b611a298360001c6020612074565b604051602001611a3a929190613466565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c919061353d565b60405180910390fd5b5050565b611a938282610fa2565b611b66576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b0b6115f1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611b748282610fa2565b15611c48576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611bed6115f1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611c668282604051806020016040528060008152506122b0565b5050565b600081600001549050919050565b6001816000016000828254611c8d9190613904565b9250508190555050565b611ca2848484611790565b611cae8484848461230b565b611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce4906135bf565b60405180910390fd5b50505050565b6060600d8054611d0290613b03565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2e90613b03565b8015611d7b5780601f10611d5057610100808354040283529160200191611d7b565b820191906000526020600020905b815481529060010190602001808311611d5e57829003601f168201915b5050505050905090565b60606000821415611dcd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ee1565b600082905060005b60008214611dff578080611de890613b66565b915050600a82611df8919061395a565b9150611dd5565b60008167ffffffffffffffff811115611e1b57611e1a613ccb565b5b6040519080825280601f01601f191660200182016040528015611e4d5781602001600182028036833780820191505090505b5090505b60008514611eda57600182611e6691906139e5565b9150600a85611e759190613baf565b6030611e819190613904565b60f81b818381518110611e9757611e96613c9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ed3919061395a565b9450611e51565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f595750611f58826124a2565b5b9050919050565b611f6b838383612584565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fae57611fa981612589565b611fed565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611fec57611feb83826125d2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120305761202b8161273f565b61206f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461206e5761206d8282612810565b5b5b505050565b606060006002836002612087919061398b565b6120919190613904565b67ffffffffffffffff8111156120aa576120a9613ccb565b5b6040519080825280601f01601f1916602001820160405280156120dc5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061211457612113613c9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061217857612177613c9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026121b8919061398b565b6121c29190613904565b90505b6001811115612262577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061220457612203613c9c565b5b1a60f81b82828151811061221b5761221a613c9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061225b90613ad9565b90506121c5565b50600084146122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d9061357f565b60405180910390fd5b8091505092915050565b6122ba838361288f565b6122c7600084848461230b565b612306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fd906135bf565b60405180910390fd5b505050565b600061232c8473ffffffffffffffffffffffffffffffffffffffff16612a5d565b15612495578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123556115f1565b8786866040518563ffffffff1660e01b815260040161237794939291906134bb565b602060405180830381600087803b15801561239157600080fd5b505af19250505080156123c257506040513d601f19601f820116820180604052508101906123bf9190612f38565b60015b612445573d80600081146123f2576040519150601f19603f3d011682016040523d82523d6000602084013e6123f7565b606091505b5060008151141561243d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612434906135bf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061249a565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061256d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061257d575061257c82612a70565b5b9050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125df84610ec4565b6125e991906139e5565b90506000600760008481526020019081526020016000205490508181146126ce576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061275391906139e5565b905060006009600084815260200190815260200160002054905060006008838154811061278357612782613c9c565b5b9060005260206000200154905080600883815481106127a5576127a4613c9c565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127f4576127f3613c6d565b5b6001900381819060005260206000200160009055905550505050565b600061281b83610ec4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f69061371f565b60405180910390fd5b61290881611585565b15612948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293f906135df565b60405180910390fd5b61295460008383611f60565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129a49190613904565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612ae690613b03565b90600052602060002090601f016020900481019282612b085760008555612b4f565b82601f10612b2157805160ff1916838001178555612b4f565b82800160010185558215612b4f579182015b82811115612b4e578251825591602001919060010190612b33565b5b509050612b5c9190612b60565b5090565b5b80821115612b79576000816000905550600101612b61565b5090565b6000612b90612b8b8461385f565b61383a565b905082815260208101848484011115612bac57612bab613cff565b5b612bb7848285613a97565b509392505050565b6000612bd2612bcd84613890565b61383a565b905082815260208101848484011115612bee57612bed613cff565b5b612bf9848285613a97565b509392505050565b600081359050612c1081614331565b92915050565b600081359050612c2581614348565b92915050565b600081359050612c3a8161435f565b92915050565b600081359050612c4f81614376565b92915050565b600081519050612c6481614376565b92915050565b600082601f830112612c7f57612c7e613cfa565b5b8135612c8f848260208601612b7d565b91505092915050565b600082601f830112612cad57612cac613cfa565b5b8135612cbd848260208601612bbf565b91505092915050565b600081359050612cd58161438d565b92915050565b600060208284031215612cf157612cf0613d09565b5b6000612cff84828501612c01565b91505092915050565b60008060408385031215612d1f57612d1e613d09565b5b6000612d2d85828601612c01565b9250506020612d3e85828601612c01565b9150509250929050565b600080600060608486031215612d6157612d60613d09565b5b6000612d6f86828701612c01565b9350506020612d8086828701612c01565b9250506040612d9186828701612cc6565b9150509250925092565b60008060008060808587031215612db557612db4613d09565b5b6000612dc387828801612c01565b9450506020612dd487828801612c01565b9350506040612de587828801612cc6565b925050606085013567ffffffffffffffff811115612e0657612e05613d04565b5b612e1287828801612c6a565b91505092959194509250565b60008060408385031215612e3557612e34613d09565b5b6000612e4385828601612c01565b9250506020612e5485828601612c16565b9150509250929050565b60008060408385031215612e7557612e74613d09565b5b6000612e8385828601612c01565b9250506020612e9485828601612cc6565b9150509250929050565b600060208284031215612eb457612eb3613d09565b5b6000612ec284828501612c2b565b91505092915050565b60008060408385031215612ee257612ee1613d09565b5b6000612ef085828601612c2b565b9250506020612f0185828601612c01565b9150509250929050565b600060208284031215612f2157612f20613d09565b5b6000612f2f84828501612c40565b91505092915050565b600060208284031215612f4e57612f4d613d09565b5b6000612f5c84828501612c55565b91505092915050565b600060208284031215612f7b57612f7a613d09565b5b600082013567ffffffffffffffff811115612f9957612f98613d04565b5b612fa584828501612c98565b91505092915050565b600060208284031215612fc457612fc3613d09565b5b6000612fd284828501612cc6565b91505092915050565b60008060408385031215612ff257612ff1613d09565b5b600061300085828601612cc6565b925050602061301185828601612cc6565b9150509250929050565b61302481613a19565b82525050565b61303381613a2b565b82525050565b61304281613a37565b82525050565b6000613053826138c1565b61305d81856138d7565b935061306d818560208601613aa6565b61307681613d0e565b840191505092915050565b600061308c826138cc565b61309681856138e8565b93506130a6818560208601613aa6565b6130af81613d0e565b840191505092915050565b60006130c5826138cc565b6130cf81856138f9565b93506130df818560208601613aa6565b80840191505092915050565b60006130f86015836138e8565b915061310382613d1f565b602082019050919050565b600061311b6020836138e8565b915061312682613d48565b602082019050919050565b600061313e602b836138e8565b915061314982613d71565b604082019050919050565b60006131616032836138e8565b915061316c82613dc0565b604082019050919050565b6000613184601c836138e8565b915061318f82613e0f565b602082019050919050565b60006131a76024836138e8565b91506131b282613e38565b604082019050919050565b60006131ca6019836138e8565b91506131d582613e87565b602082019050919050565b60006131ed6014836138e8565b91506131f882613eb0565b602082019050919050565b6000613210602c836138e8565b915061321b82613ed9565b604082019050919050565b6000613233602b836138e8565b915061323e82613f28565b604082019050919050565b60006132566038836138e8565b915061326182613f77565b604082019050919050565b60006132796016836138e8565b915061328482613fc6565b602082019050919050565b600061329c602a836138e8565b91506132a782613fef565b604082019050919050565b60006132bf6029836138e8565b91506132ca8261403e565b604082019050919050565b60006132e26020836138e8565b91506132ed8261408d565b602082019050919050565b6000613305602c836138e8565b9150613310826140b6565b604082019050919050565b60006133286029836138e8565b915061333382614105565b604082019050919050565b600061334b602f836138e8565b915061335682614154565b604082019050919050565b600061336e6021836138e8565b9150613379826141a3565b604082019050919050565b60006133916031836138e8565b915061339c826141f2565b604082019050919050565b60006133b4602c836138e8565b91506133bf82614241565b604082019050919050565b60006133d76017836138f9565b91506133e282614290565b601782019050919050565b60006133fa6011836138f9565b9150613405826142b9565b601182019050919050565b600061341d602f836138e8565b9150613428826142e2565b604082019050919050565b61343c81613a8d565b82525050565b600061344e82856130ba565b915061345a82846130ba565b91508190509392505050565b6000613471826133ca565b915061347d82856130ba565b9150613488826133ed565b915061349482846130ba565b91508190509392505050565b60006020820190506134b5600083018461301b565b92915050565b60006080820190506134d0600083018761301b565b6134dd602083018661301b565b6134ea6040830185613433565b81810360608301526134fc8184613048565b905095945050505050565b600060208201905061351c600083018461302a565b92915050565b60006020820190506135376000830184613039565b92915050565b600060208201905081810360008301526135578184613081565b905092915050565b60006020820190508181036000830152613578816130eb565b9050919050565b600060208201905081810360008301526135988161310e565b9050919050565b600060208201905081810360008301526135b881613131565b9050919050565b600060208201905081810360008301526135d881613154565b9050919050565b600060208201905081810360008301526135f881613177565b9050919050565b600060208201905081810360008301526136188161319a565b9050919050565b60006020820190508181036000830152613638816131bd565b9050919050565b60006020820190508181036000830152613658816131e0565b9050919050565b6000602082019050818103600083015261367881613203565b9050919050565b6000602082019050818103600083015261369881613226565b9050919050565b600060208201905081810360008301526136b881613249565b9050919050565b600060208201905081810360008301526136d88161326c565b9050919050565b600060208201905081810360008301526136f88161328f565b9050919050565b60006020820190508181036000830152613718816132b2565b9050919050565b60006020820190508181036000830152613738816132d5565b9050919050565b60006020820190508181036000830152613758816132f8565b9050919050565b600060208201905081810360008301526137788161331b565b9050919050565b600060208201905081810360008301526137988161333e565b9050919050565b600060208201905081810360008301526137b881613361565b9050919050565b600060208201905081810360008301526137d881613384565b9050919050565b600060208201905081810360008301526137f8816133a7565b9050919050565b6000602082019050818103600083015261381881613410565b9050919050565b60006020820190506138346000830184613433565b92915050565b6000613844613855565b90506138508282613b35565b919050565b6000604051905090565b600067ffffffffffffffff82111561387a57613879613ccb565b5b61388382613d0e565b9050602081019050919050565b600067ffffffffffffffff8211156138ab576138aa613ccb565b5b6138b482613d0e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061390f82613a8d565b915061391a83613a8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561394f5761394e613be0565b5b828201905092915050565b600061396582613a8d565b915061397083613a8d565b9250826139805761397f613c0f565b5b828204905092915050565b600061399682613a8d565b91506139a183613a8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139da576139d9613be0565b5b828202905092915050565b60006139f082613a8d565b91506139fb83613a8d565b925082821015613a0e57613a0d613be0565b5b828203905092915050565b6000613a2482613a6d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ac4578082015181840152602081019050613aa9565b83811115613ad3576000848401525b50505050565b6000613ae482613a8d565b91506000821415613af857613af7613be0565b5b600182039050919050565b60006002820490506001821680613b1b57607f821691505b60208210811415613b2f57613b2e613c3e565b5b50919050565b613b3e82613d0e565b810181811067ffffffffffffffff82111715613b5d57613b5c613ccb565b5b80604052505050565b6000613b7182613a8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ba457613ba3613be0565b5b600182019050919050565b6000613bba82613a8d565b9150613bc583613a8d565b925082613bd557613bd4613c0f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616c6c6572206973206e6f7420612061646d696e0000000000000000000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f6e747261637420686173206265656e20757067726164656420746f20612060008201527f6e65772061646472657373000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616c6c6572206973206e6f742061206d696e74657200000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61433a81613a19565b811461434557600080fd5b50565b61435181613a2b565b811461435c57600080fd5b50565b61436881613a37565b811461437357600080fd5b50565b61437f81613a41565b811461438a57600080fd5b50565b61439681613a8d565b81146143a157600080fd5b5056fea264697066735822122032a6fc43623bde89734c2895409fd616f649c58301ca4e61e95898424407aace64736f6c63430008060033
Deployed Bytecode Sourcemap
49528:2568:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50192:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20584:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22143:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51457:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21666:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34098:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23033:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45037:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45422:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33766:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46470:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50972:477;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23443:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51667:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34288:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50620:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50386:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20278:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20008:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50806:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43922:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20753:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41900:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22436:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23699:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50138:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20928:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51814:277;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50067:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45814:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22802:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50192:186;50310:4;50334:36;50358:11;50334:23;:36::i;:::-;50327:43;;50192:186;;;:::o;20584:100::-;20638:13;20671:5;20664:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20584:100;:::o;22143:221::-;22219:7;22247:16;22255:7;22247;:16::i;:::-;22239:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22332:15;:24;22348:7;22332:24;;;;;;;;;;;;;;;;;;;;;22325:31;;22143:221;;;:::o;51457:202::-;51528:41;41945:4;51536:18;;51556:12;:10;:12::i;:::-;51528:7;:41::i;:::-;51520:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;51633:18;51613:17;;:38;;;;;;;;;;;;;;;;;;51457:202;:::o;21666:411::-;21747:13;21763:23;21778:7;21763:14;:23::i;:::-;21747:39;;21811:5;21805:11;;:2;:11;;;;21797:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21905:5;21889:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21914:37;21931:5;21938:12;:10;:12::i;:::-;21914:16;:37::i;:::-;21889:62;21867:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22048:21;22057:2;22061:7;22048:8;:21::i;:::-;21736:341;21666:411;;:::o;34098:113::-;34159:7;34186:10;:17;;;;34179:24;;34098:113;:::o;23033:339::-;23228:41;23247:12;:10;:12::i;:::-;23261:7;23228:18;:41::i;:::-;23220:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23336:28;23346:4;23352:2;23356:7;23336:9;:28::i;:::-;23033:339;;;:::o;45037:123::-;45103:7;45130:6;:12;45137:4;45130:12;;;;;;;;;;;:22;;;45123:29;;45037:123;;;:::o;45422:147::-;45505:18;45518:4;45505:12;:18::i;:::-;43504:30;43515:4;43521:12;:10;:12::i;:::-;43504:10;:30::i;:::-;45536:25:::1;45547:4;45553:7;45536:10;:25::i;:::-;45422:147:::0;;;:::o;33766:256::-;33863:7;33899:23;33916:5;33899:16;:23::i;:::-;33891:5;:31;33883:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;33988:12;:19;34001:5;33988:19;;;;;;;;;;;;;;;:26;34008:5;33988:26;;;;;;;;;;;;33981:33;;33766:256;;;;:::o;46470:218::-;46577:12;:10;:12::i;:::-;46566:23;;:7;:23;;;46558:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;46654:26;46666:4;46672:7;46654:11;:26::i;:::-;46470:218;;:::o;50972:477::-;51037:4;51076:17;;;;;;;;;;;51062:31;;51070:1;51062:31;;;51054:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;51160:34;50105:24;51181:12;:10;:12::i;:::-;51160:7;:34::i;:::-;51152:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51259:1;51240:21;;:7;:21;;;;51232:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51318:17;51326:8;51318:7;:17::i;:::-;51317:18;51309:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;51389:28;51399:7;51408:8;51389:9;:28::i;:::-;51437:4;51430:11;;50972:477;;;;:::o;23443:185::-;23581:39;23598:4;23604:2;23608:7;23581:39;;;;;;;;;;;;:16;:39::i;:::-;23443:185;;;:::o;51667:139::-;51729:18;51768:19;:29;51788:8;51768:29;;;;;;;;;;;;51760:38;;51667:139;;;:::o;34288:233::-;34363:7;34399:30;:28;:30::i;:::-;34391:5;:38;34383:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;34496:10;34507:5;34496:17;;;;;;;;:::i;:::-;;;;;;;;;;34489:24;;34288:233;;;:::o;50620:178::-;50689:41;41945:4;50697:18;;50717:12;:10;:12::i;:::-;50689:7;:41::i;:::-;50681:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;50783:7;50767:13;:23;;;;;;;;;;;;:::i;:::-;;50620:178;:::o;50386:104::-;50436:7;50463:19;:9;:17;:19::i;:::-;50456:26;;50386:104;:::o;20278:239::-;20350:7;20370:13;20386:7;:16;20394:7;20386:16;;;;;;;;;;;;;;;;;;;;;20370:32;;20438:1;20421:19;;:5;:19;;;;20413:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20504:5;20497:12;;;20278:239;;;:::o;20008:208::-;20080:7;20125:1;20108:19;;:5;:19;;;;20100:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20192:9;:16;20202:5;20192:16;;;;;;;;;;;;;;;;20185:23;;20008:208;;;:::o;50806:158::-;50864:4;50881:21;:9;:19;:21::i;:::-;50922:34;50927:7;50936:19;:9;:17;:19::i;:::-;50922:4;:34::i;:::-;50915:41;;50806:158;;;:::o;43922:139::-;44000:4;44024:6;:12;44031:4;44024:12;;;;;;;;;;;:20;;:29;44045:7;44024:29;;;;;;;;;;;;;;;;;;;;;;;;;44017:36;;43922:139;;;;:::o;20753:104::-;20809:13;20842:7;20835:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20753:104;:::o;41900:49::-;41945:4;41900:49;;;:::o;22436:295::-;22551:12;:10;:12::i;:::-;22539:24;;:8;:24;;;;22531:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22651:8;22606:18;:32;22625:12;:10;:12::i;:::-;22606:32;;;;;;;;;;;;;;;:42;22639:8;22606:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22704:8;22675:48;;22690:12;:10;:12::i;:::-;22675:48;;;22714:8;22675:48;;;;;;:::i;:::-;;;;;;;;22436:295;;:::o;23699:328::-;23874:41;23893:12;:10;:12::i;:::-;23907:7;23874:18;:41::i;:::-;23866:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23980:39;23994:4;24000:2;24004:7;24013:5;23980:13;:39::i;:::-;23699:328;;;;:::o;50138:45::-;;;;;;;;;;;;;:::o;20928:334::-;21001:13;21035:16;21043:7;21035;:16::i;:::-;21027:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21116:21;21140:10;:8;:10::i;:::-;21116:34;;21192:1;21174:7;21168:21;:25;:86;;;;;;;;;;;;;;;;;21220:7;21229:18;:7;:16;:18::i;:::-;21203:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21168:86;21161:93;;;20928:334;;;:::o;51814:277::-;51905:34;50105:24;51926:12;:10;:12::i;:::-;51905:7;:34::i;:::-;51897:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51985:17;51993:8;51985:7;:17::i;:::-;51977:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;52072:11;52040:19;:29;52060:8;52040:29;;;;;;;;;;;:43;;;;51814:277;;:::o;50067:62::-;50105:24;50067:62;:::o;45814:149::-;45898:18;45911:4;45898:12;:18::i;:::-;43504:30;43515:4;43521:12;:10;:12::i;:::-;43504:10;:30::i;:::-;45929:26:::1;45941:4;45947:7;45929:11;:26::i;:::-;45814:149:::0;;;:::o;22802:164::-;22899:4;22923:18;:25;22942:5;22923:25;;;;;;;;;;;;;;;:35;22949:8;22923:35;;;;;;;;;;;;;;;;;;;;;;;;;22916:42;;22802:164;;;;:::o;43626:204::-;43711:4;43750:32;43735:47;;;:11;:47;;;;:87;;;;43786:36;43810:11;43786:23;:36::i;:::-;43735:87;43728:94;;43626:204;;;:::o;25537:127::-;25602:4;25654:1;25626:30;;:7;:16;25634:7;25626:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25619:37;;25537:127;;;:::o;15341:98::-;15394:7;15421:10;15414:17;;15341:98;:::o;29519:174::-;29621:2;29594:15;:24;29610:7;29594:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29677:7;29673:2;29639:46;;29648:23;29663:7;29648:14;:23::i;:::-;29639:46;;;;;;;;;;;;29519:174;;:::o;25831:348::-;25924:4;25949:16;25957:7;25949;:16::i;:::-;25941:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26025:13;26041:23;26056:7;26041:14;:23::i;:::-;26025:39;;26094:5;26083:16;;:7;:16;;;:51;;;;26127:7;26103:31;;:20;26115:7;26103:11;:20::i;:::-;:31;;;26083:51;:87;;;;26138:32;26155:5;26162:7;26138:16;:32::i;:::-;26083:87;26075:96;;;25831:348;;;;:::o;28823:578::-;28982:4;28955:31;;:23;28970:7;28955:14;:23::i;:::-;:31;;;28947:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29065:1;29051:16;;:2;:16;;;;29043:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29121:39;29142:4;29148:2;29152:7;29121:20;:39::i;:::-;29225:29;29242:1;29246:7;29225:8;:29::i;:::-;29286:1;29267:9;:15;29277:4;29267:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29315:1;29298:9;:13;29308:2;29298:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29346:2;29327:7;:16;29335:7;29327:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29385:7;29381:2;29366:27;;29375:4;29366:27;;;;;;;;;;;;28823:578;;;:::o;44351:497::-;44432:22;44440:4;44446:7;44432;:22::i;:::-;44427:414;;44620:41;44648:7;44620:41;;44658:2;44620:19;:41::i;:::-;44734:38;44762:4;44754:13;;44769:2;44734:19;:38::i;:::-;44525:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44471:358;;;;;;;;;;;:::i;:::-;;;;;;;;44427:414;44351:497;;:::o;47718:229::-;47793:22;47801:4;47807:7;47793;:22::i;:::-;47788:152;;47864:4;47832:6;:12;47839:4;47832:12;;;;;;;;;;;:20;;:29;47853:7;47832:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;47915:12;:10;:12::i;:::-;47888:40;;47906:7;47888:40;;47900:4;47888:40;;;;;;;;;;47788:152;47718:229;;:::o;47955:230::-;48030:22;48038:4;48044:7;48030;:22::i;:::-;48026:152;;;48101:5;48069:6;:12;48076:4;48069:12;;;;;;;;;;;:20;;:29;48090:7;48069:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;48153:12;:10;:12::i;:::-;48126:40;;48144:7;48126:40;;48138:4;48126:40;;;;;;;;;;48026:152;47955:230;;:::o;26521:110::-;26597:26;26607:2;26611:7;26597:26;;;;;;;;;;;;:9;:26::i;:::-;26521:110;;:::o;48925:114::-;48990:7;49017;:14;;;49010:21;;48925:114;;;:::o;49047:131::-;49156:1;49138:7;:14;;;:19;;;;;;;:::i;:::-;;;;;;;;49047:131;:::o;24909:315::-;25066:28;25076:4;25082:2;25086:7;25066:9;:28::i;:::-;25113:48;25136:4;25142:2;25146:7;25155:5;25113:22;:48::i;:::-;25105:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24909:315;;;;:::o;50498:114::-;50558:13;50591;50584:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50498:114;:::o;15783:723::-;15839:13;16069:1;16060:5;:10;16056:53;;;16087:10;;;;;;;;;;;;;;;;;;;;;16056:53;16119:12;16134:5;16119:20;;16150:14;16175:78;16190:1;16182:4;:9;16175:78;;16208:8;;;;;:::i;:::-;;;;16239:2;16231:10;;;;;:::i;:::-;;;16175:78;;;16263:19;16295:6;16285:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16263:39;;16313:154;16329:1;16320:5;:10;16313:154;;16357:1;16347:11;;;;;:::i;:::-;;;16424:2;16416:5;:10;;;;:::i;:::-;16403:2;:24;;;;:::i;:::-;16390:39;;16373:6;16380;16373:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;16453:2;16444:11;;;;;:::i;:::-;;;16313:154;;;16491:6;16477:21;;;;;15783:723;;;;:::o;33458:224::-;33560:4;33599:35;33584:50;;;:11;:50;;;;:90;;;;33638:36;33662:11;33638:23;:36::i;:::-;33584:90;33577:97;;33458:224;;;:::o;35134:589::-;35278:45;35305:4;35311:2;35315:7;35278:26;:45::i;:::-;35356:1;35340:18;;:4;:18;;;35336:187;;;35375:40;35407:7;35375:31;:40::i;:::-;35336:187;;;35445:2;35437:10;;:4;:10;;;35433:90;;35464:47;35497:4;35503:7;35464:32;:47::i;:::-;35433:90;35336:187;35551:1;35537:16;;:2;:16;;;35533:183;;;35570:45;35607:7;35570:36;:45::i;:::-;35533:183;;;35643:4;35637:10;;:2;:10;;;35633:83;;35664:40;35692:2;35696:7;35664:27;:40::i;:::-;35633:83;35533:183;35134:589;;;:::o;17084:451::-;17159:13;17185:19;17230:1;17221:6;17217:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;17207:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17185:47;;17243:15;:6;17250:1;17243:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;17269;:6;17276:1;17269:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;17300:9;17325:1;17316:6;17312:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;17300:26;;17295:135;17332:1;17328;:5;17295:135;;;17367:12;17388:3;17380:5;:11;17367:25;;;;;;;:::i;:::-;;;;;17355:6;17362:1;17355:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;17417:1;17407:11;;;;;17335:3;;;;:::i;:::-;;;17295:135;;;;17457:1;17448:5;:10;17440:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;17520:6;17506:21;;;17084:451;;;;:::o;26858:321::-;26988:18;26994:2;26998:7;26988:5;:18::i;:::-;27039:54;27070:1;27074:2;27078:7;27087:5;27039:22;:54::i;:::-;27017:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;26858:321;;;:::o;30258:803::-;30413:4;30434:15;:2;:13;;;:15::i;:::-;30430:624;;;30486:2;30470:36;;;30507:12;:10;:12::i;:::-;30521:4;30527:7;30536:5;30470:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30466:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30733:1;30716:6;:13;:18;30712:272;;;30759:60;;;;;;;;;;:::i;:::-;;;;;;;;30712:272;30934:6;30928:13;30919:6;30915:2;30911:15;30904:38;30466:533;30603:45;;;30593:55;;;:6;:55;;;;30586:62;;;;;30430:624;31038:4;31031:11;;30258:803;;;;;;;:::o;19639:305::-;19741:4;19793:25;19778:40;;;:11;:40;;;;:105;;;;19850:33;19835:48;;;:11;:48;;;;19778:105;:158;;;;19900:36;19924:11;19900:23;:36::i;:::-;19778:158;19758:178;;19639:305;;;:::o;31633:126::-;;;;:::o;36446:164::-;36550:10;:17;;;;36523:15;:24;36539:7;36523:24;;;;;;;;;;;:44;;;;36578:10;36594:7;36578:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36446:164;:::o;37237:988::-;37503:22;37553:1;37528:22;37545:4;37528:16;:22::i;:::-;:26;;;;:::i;:::-;37503:51;;37565:18;37586:17;:26;37604:7;37586:26;;;;;;;;;;;;37565:47;;37733:14;37719:10;:28;37715:328;;37764:19;37786:12;:18;37799:4;37786:18;;;;;;;;;;;;;;;:34;37805:14;37786:34;;;;;;;;;;;;37764:56;;37870:11;37837:12;:18;37850:4;37837:18;;;;;;;;;;;;;;;:30;37856:10;37837:30;;;;;;;;;;;:44;;;;37987:10;37954:17;:30;37972:11;37954:30;;;;;;;;;;;:43;;;;37749:294;37715:328;38139:17;:26;38157:7;38139:26;;;;;;;;;;;38132:33;;;38183:12;:18;38196:4;38183:18;;;;;;;;;;;;;;;:34;38202:14;38183:34;;;;;;;;;;;38176:41;;;37318:907;;37237:988;;:::o;38520:1079::-;38773:22;38818:1;38798:10;:17;;;;:21;;;;:::i;:::-;38773:46;;38830:18;38851:15;:24;38867:7;38851:24;;;;;;;;;;;;38830:45;;39202:19;39224:10;39235:14;39224:26;;;;;;;;:::i;:::-;;;;;;;;;;39202:48;;39288:11;39263:10;39274;39263:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;39399:10;39368:15;:28;39384:11;39368:28;;;;;;;;;;;:41;;;;39540:15;:24;39556:7;39540:24;;;;;;;;;;;39533:31;;;39575:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38591:1008;;;38520:1079;:::o;36024:221::-;36109:14;36126:20;36143:2;36126:16;:20::i;:::-;36109:37;;36184:7;36157:12;:16;36170:2;36157:16;;;;;;;;;;;;;;;:24;36174:6;36157:24;;;;;;;;;;;:34;;;;36231:6;36202:17;:26;36220:7;36202:26;;;;;;;;;;;:35;;;;36098:147;36024:221;;:::o;27515:382::-;27609:1;27595:16;;:2;:16;;;;27587:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27668:16;27676:7;27668;:16::i;:::-;27667:17;27659:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27730:45;27759:1;27763:2;27767:7;27730:20;:45::i;:::-;27805:1;27788:9;:13;27798:2;27788:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27836:2;27817:7;:16;27825:7;27817:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27881:7;27877:2;27856:33;;27873:1;27856:33;;;;;;;;;;;;27515:382;;:::o;7688:387::-;7748:4;7956:12;8023:7;8011:20;8003:28;;8066:1;8059:4;:8;8052:15;;;7688:387;;;:::o;18244:157::-;18329:4;18368:25;18353:40;;;:11;:40;;;;18346:47;;18244:157;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:2;;;698:79;;:::i;:::-;667:2;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;893:87;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;1035:84;;;;:::o;1125:139::-;1171:5;1209:6;1196:20;1187:29;;1225:33;1252:5;1225:33;:::i;:::-;1177:87;;;;:::o;1270:137::-;1315:5;1353:6;1340:20;1331:29;;1369:32;1395:5;1369:32;:::i;:::-;1321:86;;;;:::o;1413:141::-;1469:5;1500:6;1494:13;1485:22;;1516:32;1542:5;1516:32;:::i;:::-;1475:79;;;;:::o;1573:338::-;1628:5;1677:3;1670:4;1662:6;1658:17;1654:27;1644:2;;1685:79;;:::i;:::-;1644:2;1802:6;1789:20;1827:78;1901:3;1893:6;1886:4;1878:6;1874:17;1827:78;:::i;:::-;1818:87;;1634:277;;;;;:::o;1931:340::-;1987:5;2036:3;2029:4;2021:6;2017:17;2013:27;2003:2;;2044:79;;:::i;:::-;2003:2;2161:6;2148:20;2186:79;2261:3;2253:6;2246:4;2238:6;2234:17;2186:79;:::i;:::-;2177:88;;1993:278;;;;;:::o;2277:139::-;2323:5;2361:6;2348:20;2339:29;;2377:33;2404:5;2377:33;:::i;:::-;2329:87;;;;:::o;2422:329::-;2481:6;2530:2;2518:9;2509:7;2505:23;2501:32;2498:2;;;2536:79;;:::i;:::-;2498:2;2656:1;2681:53;2726:7;2717:6;2706:9;2702:22;2681:53;:::i;:::-;2671:63;;2627:117;2488:263;;;;:::o;2757:474::-;2825:6;2833;2882:2;2870:9;2861:7;2857:23;2853:32;2850:2;;;2888:79;;:::i;:::-;2850:2;3008:1;3033:53;3078:7;3069:6;3058:9;3054:22;3033:53;:::i;:::-;3023:63;;2979:117;3135:2;3161:53;3206:7;3197:6;3186:9;3182:22;3161:53;:::i;:::-;3151:63;;3106:118;2840:391;;;;;:::o;3237:619::-;3314:6;3322;3330;3379:2;3367:9;3358:7;3354:23;3350:32;3347:2;;;3385:79;;:::i;:::-;3347:2;3505:1;3530:53;3575:7;3566:6;3555:9;3551:22;3530:53;:::i;:::-;3520:63;;3476:117;3632:2;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3603:118;3760:2;3786:53;3831:7;3822:6;3811:9;3807:22;3786:53;:::i;:::-;3776:63;;3731:118;3337:519;;;;;:::o;3862:943::-;3957:6;3965;3973;3981;4030:3;4018:9;4009:7;4005:23;4001:33;3998:2;;;4037:79;;:::i;:::-;3998:2;4157:1;4182:53;4227:7;4218:6;4207:9;4203:22;4182:53;:::i;:::-;4172:63;;4128:117;4284:2;4310:53;4355:7;4346:6;4335:9;4331:22;4310:53;:::i;:::-;4300:63;;4255:118;4412:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4383:118;4568:2;4557:9;4553:18;4540:32;4599:18;4591:6;4588:30;4585:2;;;4621:79;;:::i;:::-;4585:2;4726:62;4780:7;4771:6;4760:9;4756:22;4726:62;:::i;:::-;4716:72;;4511:287;3988:817;;;;;;;:::o;4811:468::-;4876:6;4884;4933:2;4921:9;4912:7;4908:23;4904:32;4901:2;;;4939:79;;:::i;:::-;4901:2;5059:1;5084:53;5129:7;5120:6;5109:9;5105:22;5084:53;:::i;:::-;5074:63;;5030:117;5186:2;5212:50;5254:7;5245:6;5234:9;5230:22;5212:50;:::i;:::-;5202:60;;5157:115;4891:388;;;;;:::o;5285:474::-;5353:6;5361;5410:2;5398:9;5389:7;5385:23;5381:32;5378:2;;;5416:79;;:::i;:::-;5378:2;5536:1;5561:53;5606:7;5597:6;5586:9;5582:22;5561:53;:::i;:::-;5551:63;;5507:117;5663:2;5689:53;5734:7;5725:6;5714:9;5710:22;5689:53;:::i;:::-;5679:63;;5634:118;5368:391;;;;;:::o;5765:329::-;5824:6;5873:2;5861:9;5852:7;5848:23;5844:32;5841:2;;;5879:79;;:::i;:::-;5841:2;5999:1;6024:53;6069:7;6060:6;6049:9;6045:22;6024:53;:::i;:::-;6014:63;;5970:117;5831:263;;;;:::o;6100:474::-;6168:6;6176;6225:2;6213:9;6204:7;6200:23;6196:32;6193:2;;;6231:79;;:::i;:::-;6193:2;6351:1;6376:53;6421:7;6412:6;6401:9;6397:22;6376:53;:::i;:::-;6366:63;;6322:117;6478:2;6504:53;6549:7;6540:6;6529:9;6525:22;6504:53;:::i;:::-;6494:63;;6449:118;6183:391;;;;;:::o;6580:327::-;6638:6;6687:2;6675:9;6666:7;6662:23;6658:32;6655:2;;;6693:79;;:::i;:::-;6655:2;6813:1;6838:52;6882:7;6873:6;6862:9;6858:22;6838:52;:::i;:::-;6828:62;;6784:116;6645:262;;;;:::o;6913:349::-;6982:6;7031:2;7019:9;7010:7;7006:23;7002:32;6999:2;;;7037:79;;:::i;:::-;6999:2;7157:1;7182:63;7237:7;7228:6;7217:9;7213:22;7182:63;:::i;:::-;7172:73;;7128:127;6989:273;;;;:::o;7268:509::-;7337:6;7386:2;7374:9;7365:7;7361:23;7357:32;7354:2;;;7392:79;;:::i;:::-;7354:2;7540:1;7529:9;7525:17;7512:31;7570:18;7562:6;7559:30;7556:2;;;7592:79;;:::i;:::-;7556:2;7697:63;7752:7;7743:6;7732:9;7728:22;7697:63;:::i;:::-;7687:73;;7483:287;7344:433;;;;:::o;7783:329::-;7842:6;7891:2;7879:9;7870:7;7866:23;7862:32;7859:2;;;7897:79;;:::i;:::-;7859:2;8017:1;8042:53;8087:7;8078:6;8067:9;8063:22;8042:53;:::i;:::-;8032:63;;7988:117;7849:263;;;;:::o;8118:474::-;8186:6;8194;8243:2;8231:9;8222:7;8218:23;8214:32;8211:2;;;8249:79;;:::i;:::-;8211:2;8369:1;8394:53;8439:7;8430:6;8419:9;8415:22;8394:53;:::i;:::-;8384:63;;8340:117;8496:2;8522:53;8567:7;8558:6;8547:9;8543:22;8522:53;:::i;:::-;8512:63;;8467:118;8201:391;;;;;:::o;8598:118::-;8685:24;8703:5;8685:24;:::i;:::-;8680:3;8673:37;8663:53;;:::o;8722:109::-;8803:21;8818:5;8803:21;:::i;:::-;8798:3;8791:34;8781:50;;:::o;8837:118::-;8924:24;8942:5;8924:24;:::i;:::-;8919:3;8912:37;8902:53;;:::o;8961:360::-;9047:3;9075:38;9107:5;9075:38;:::i;:::-;9129:70;9192:6;9187:3;9129:70;:::i;:::-;9122:77;;9208:52;9253:6;9248:3;9241:4;9234:5;9230:16;9208:52;:::i;:::-;9285:29;9307:6;9285:29;:::i;:::-;9280:3;9276:39;9269:46;;9051:270;;;;;:::o;9327:364::-;9415:3;9443:39;9476:5;9443:39;:::i;:::-;9498:71;9562:6;9557:3;9498:71;:::i;:::-;9491:78;;9578:52;9623:6;9618:3;9611:4;9604:5;9600:16;9578:52;:::i;:::-;9655:29;9677:6;9655:29;:::i;:::-;9650:3;9646:39;9639:46;;9419:272;;;;;:::o;9697:377::-;9803:3;9831:39;9864:5;9831:39;:::i;:::-;9886:89;9968:6;9963:3;9886:89;:::i;:::-;9879:96;;9984:52;10029:6;10024:3;10017:4;10010:5;10006:16;9984:52;:::i;:::-;10061:6;10056:3;10052:16;10045:23;;9807:267;;;;;:::o;10080:366::-;10222:3;10243:67;10307:2;10302:3;10243:67;:::i;:::-;10236:74;;10319:93;10408:3;10319:93;:::i;:::-;10437:2;10432:3;10428:12;10421:19;;10226:220;;;:::o;10452:366::-;10594:3;10615:67;10679:2;10674:3;10615:67;:::i;:::-;10608:74;;10691:93;10780:3;10691:93;:::i;:::-;10809:2;10804:3;10800:12;10793:19;;10598:220;;;:::o;10824:366::-;10966:3;10987:67;11051:2;11046:3;10987:67;:::i;:::-;10980:74;;11063:93;11152:3;11063:93;:::i;:::-;11181:2;11176:3;11172:12;11165:19;;10970:220;;;:::o;11196:366::-;11338:3;11359:67;11423:2;11418:3;11359:67;:::i;:::-;11352:74;;11435:93;11524:3;11435:93;:::i;:::-;11553:2;11548:3;11544:12;11537:19;;11342:220;;;:::o;11568:366::-;11710:3;11731:67;11795:2;11790:3;11731:67;:::i;:::-;11724:74;;11807:93;11896:3;11807:93;:::i;:::-;11925:2;11920:3;11916:12;11909:19;;11714:220;;;:::o;11940:366::-;12082:3;12103:67;12167:2;12162:3;12103:67;:::i;:::-;12096:74;;12179:93;12268:3;12179:93;:::i;:::-;12297:2;12292:3;12288:12;12281:19;;12086:220;;;:::o;12312:366::-;12454:3;12475:67;12539:2;12534:3;12475:67;:::i;:::-;12468:74;;12551:93;12640:3;12551:93;:::i;:::-;12669:2;12664:3;12660:12;12653:19;;12458:220;;;:::o;12684:366::-;12826:3;12847:67;12911:2;12906:3;12847:67;:::i;:::-;12840:74;;12923:93;13012:3;12923:93;:::i;:::-;13041:2;13036:3;13032:12;13025:19;;12830:220;;;:::o;13056:366::-;13198:3;13219:67;13283:2;13278:3;13219:67;:::i;:::-;13212:74;;13295:93;13384:3;13295:93;:::i;:::-;13413:2;13408:3;13404:12;13397:19;;13202:220;;;:::o;13428:366::-;13570:3;13591:67;13655:2;13650:3;13591:67;:::i;:::-;13584:74;;13667:93;13756:3;13667:93;:::i;:::-;13785:2;13780:3;13776:12;13769:19;;13574:220;;;:::o;13800:366::-;13942:3;13963:67;14027:2;14022:3;13963:67;:::i;:::-;13956:74;;14039:93;14128:3;14039:93;:::i;:::-;14157:2;14152:3;14148:12;14141:19;;13946:220;;;:::o;14172:366::-;14314:3;14335:67;14399:2;14394:3;14335:67;:::i;:::-;14328:74;;14411:93;14500:3;14411:93;:::i;:::-;14529:2;14524:3;14520:12;14513:19;;14318:220;;;:::o;14544:366::-;14686:3;14707:67;14771:2;14766:3;14707:67;:::i;:::-;14700:74;;14783:93;14872:3;14783:93;:::i;:::-;14901:2;14896:3;14892:12;14885:19;;14690:220;;;:::o;14916:366::-;15058:3;15079:67;15143:2;15138:3;15079:67;:::i;:::-;15072:74;;15155:93;15244:3;15155:93;:::i;:::-;15273:2;15268:3;15264:12;15257:19;;15062:220;;;:::o;15288:366::-;15430:3;15451:67;15515:2;15510:3;15451:67;:::i;:::-;15444:74;;15527:93;15616:3;15527:93;:::i;:::-;15645:2;15640:3;15636:12;15629:19;;15434:220;;;:::o;15660:366::-;15802:3;15823:67;15887:2;15882:3;15823:67;:::i;:::-;15816:74;;15899:93;15988:3;15899:93;:::i;:::-;16017:2;16012:3;16008:12;16001:19;;15806:220;;;:::o;16032:366::-;16174:3;16195:67;16259:2;16254:3;16195:67;:::i;:::-;16188:74;;16271:93;16360:3;16271:93;:::i;:::-;16389:2;16384:3;16380:12;16373:19;;16178:220;;;:::o;16404:366::-;16546:3;16567:67;16631:2;16626:3;16567:67;:::i;:::-;16560:74;;16643:93;16732:3;16643:93;:::i;:::-;16761:2;16756:3;16752:12;16745:19;;16550:220;;;:::o;16776:366::-;16918:3;16939:67;17003:2;16998:3;16939:67;:::i;:::-;16932:74;;17015:93;17104:3;17015:93;:::i;:::-;17133:2;17128:3;17124:12;17117:19;;16922:220;;;:::o;17148:366::-;17290:3;17311:67;17375:2;17370:3;17311:67;:::i;:::-;17304:74;;17387:93;17476:3;17387:93;:::i;:::-;17505:2;17500:3;17496:12;17489:19;;17294:220;;;:::o;17520:366::-;17662:3;17683:67;17747:2;17742:3;17683:67;:::i;:::-;17676:74;;17759:93;17848:3;17759:93;:::i;:::-;17877:2;17872:3;17868:12;17861:19;;17666:220;;;:::o;17892:402::-;18052:3;18073:85;18155:2;18150:3;18073:85;:::i;:::-;18066:92;;18167:93;18256:3;18167:93;:::i;:::-;18285:2;18280:3;18276:12;18269:19;;18056:238;;;:::o;18300:402::-;18460:3;18481:85;18563:2;18558:3;18481:85;:::i;:::-;18474:92;;18575:93;18664:3;18575:93;:::i;:::-;18693:2;18688:3;18684:12;18677:19;;18464:238;;;:::o;18708:366::-;18850:3;18871:67;18935:2;18930:3;18871:67;:::i;:::-;18864:74;;18947:93;19036:3;18947:93;:::i;:::-;19065:2;19060:3;19056:12;19049:19;;18854:220;;;:::o;19080:118::-;19167:24;19185:5;19167:24;:::i;:::-;19162:3;19155:37;19145:53;;:::o;19204:435::-;19384:3;19406:95;19497:3;19488:6;19406:95;:::i;:::-;19399:102;;19518:95;19609:3;19600:6;19518:95;:::i;:::-;19511:102;;19630:3;19623:10;;19388:251;;;;;:::o;19645:967::-;20027:3;20049:148;20193:3;20049:148;:::i;:::-;20042:155;;20214:95;20305:3;20296:6;20214:95;:::i;:::-;20207:102;;20326:148;20470:3;20326:148;:::i;:::-;20319:155;;20491:95;20582:3;20573:6;20491:95;:::i;:::-;20484:102;;20603:3;20596:10;;20031:581;;;;;:::o;20618:222::-;20711:4;20749:2;20738:9;20734:18;20726:26;;20762:71;20830:1;20819:9;20815:17;20806:6;20762:71;:::i;:::-;20716:124;;;;:::o;20846:640::-;21041:4;21079:3;21068:9;21064:19;21056:27;;21093:71;21161:1;21150:9;21146:17;21137:6;21093:71;:::i;:::-;21174:72;21242:2;21231:9;21227:18;21218:6;21174:72;:::i;:::-;21256;21324:2;21313:9;21309:18;21300:6;21256:72;:::i;:::-;21375:9;21369:4;21365:20;21360:2;21349:9;21345:18;21338:48;21403:76;21474:4;21465:6;21403:76;:::i;:::-;21395:84;;21046:440;;;;;;;:::o;21492:210::-;21579:4;21617:2;21606:9;21602:18;21594:26;;21630:65;21692:1;21681:9;21677:17;21668:6;21630:65;:::i;:::-;21584:118;;;;:::o;21708:222::-;21801:4;21839:2;21828:9;21824:18;21816:26;;21852:71;21920:1;21909:9;21905:17;21896:6;21852:71;:::i;:::-;21806:124;;;;:::o;21936:313::-;22049:4;22087:2;22076:9;22072:18;22064:26;;22136:9;22130:4;22126:20;22122:1;22111:9;22107:17;22100:47;22164:78;22237:4;22228:6;22164:78;:::i;:::-;22156:86;;22054:195;;;;:::o;22255:419::-;22421:4;22459:2;22448:9;22444:18;22436:26;;22508:9;22502:4;22498:20;22494:1;22483:9;22479:17;22472:47;22536:131;22662:4;22536:131;:::i;:::-;22528:139;;22426:248;;;:::o;22680:419::-;22846:4;22884:2;22873:9;22869:18;22861:26;;22933:9;22927:4;22923:20;22919:1;22908:9;22904:17;22897:47;22961:131;23087:4;22961:131;:::i;:::-;22953:139;;22851:248;;;:::o;23105:419::-;23271:4;23309:2;23298:9;23294:18;23286:26;;23358:9;23352:4;23348:20;23344:1;23333:9;23329:17;23322:47;23386:131;23512:4;23386:131;:::i;:::-;23378:139;;23276:248;;;:::o;23530:419::-;23696:4;23734:2;23723:9;23719:18;23711:26;;23783:9;23777:4;23773:20;23769:1;23758:9;23754:17;23747:47;23811:131;23937:4;23811:131;:::i;:::-;23803:139;;23701:248;;;:::o;23955:419::-;24121:4;24159:2;24148:9;24144:18;24136:26;;24208:9;24202:4;24198:20;24194:1;24183:9;24179:17;24172:47;24236:131;24362:4;24236:131;:::i;:::-;24228:139;;24126:248;;;:::o;24380:419::-;24546:4;24584:2;24573:9;24569:18;24561:26;;24633:9;24627:4;24623:20;24619:1;24608:9;24604:17;24597:47;24661:131;24787:4;24661:131;:::i;:::-;24653:139;;24551:248;;;:::o;24805:419::-;24971:4;25009:2;24998:9;24994:18;24986:26;;25058:9;25052:4;25048:20;25044:1;25033:9;25029:17;25022:47;25086:131;25212:4;25086:131;:::i;:::-;25078:139;;24976:248;;;:::o;25230:419::-;25396:4;25434:2;25423:9;25419:18;25411:26;;25483:9;25477:4;25473:20;25469:1;25458:9;25454:17;25447:47;25511:131;25637:4;25511:131;:::i;:::-;25503:139;;25401:248;;;:::o;25655:419::-;25821:4;25859:2;25848:9;25844:18;25836:26;;25908:9;25902:4;25898:20;25894:1;25883:9;25879:17;25872:47;25936:131;26062:4;25936:131;:::i;:::-;25928:139;;25826:248;;;:::o;26080:419::-;26246:4;26284:2;26273:9;26269:18;26261:26;;26333:9;26327:4;26323:20;26319:1;26308:9;26304:17;26297:47;26361:131;26487:4;26361:131;:::i;:::-;26353:139;;26251:248;;;:::o;26505:419::-;26671:4;26709:2;26698:9;26694:18;26686:26;;26758:9;26752:4;26748:20;26744:1;26733:9;26729:17;26722:47;26786:131;26912:4;26786:131;:::i;:::-;26778:139;;26676:248;;;:::o;26930:419::-;27096:4;27134:2;27123:9;27119:18;27111:26;;27183:9;27177:4;27173:20;27169:1;27158:9;27154:17;27147:47;27211:131;27337:4;27211:131;:::i;:::-;27203:139;;27101:248;;;:::o;27355:419::-;27521:4;27559:2;27548:9;27544:18;27536:26;;27608:9;27602:4;27598:20;27594:1;27583:9;27579:17;27572:47;27636:131;27762:4;27636:131;:::i;:::-;27628:139;;27526:248;;;:::o;27780:419::-;27946:4;27984:2;27973:9;27969:18;27961:26;;28033:9;28027:4;28023:20;28019:1;28008:9;28004:17;27997:47;28061:131;28187:4;28061:131;:::i;:::-;28053:139;;27951:248;;;:::o;28205:419::-;28371:4;28409:2;28398:9;28394:18;28386:26;;28458:9;28452:4;28448:20;28444:1;28433:9;28429:17;28422:47;28486:131;28612:4;28486:131;:::i;:::-;28478:139;;28376:248;;;:::o;28630:419::-;28796:4;28834:2;28823:9;28819:18;28811:26;;28883:9;28877:4;28873:20;28869:1;28858:9;28854:17;28847:47;28911:131;29037:4;28911:131;:::i;:::-;28903:139;;28801:248;;;:::o;29055:419::-;29221:4;29259:2;29248:9;29244:18;29236:26;;29308:9;29302:4;29298:20;29294:1;29283:9;29279:17;29272:47;29336:131;29462:4;29336:131;:::i;:::-;29328:139;;29226:248;;;:::o;29480:419::-;29646:4;29684:2;29673:9;29669:18;29661:26;;29733:9;29727:4;29723:20;29719:1;29708:9;29704:17;29697:47;29761:131;29887:4;29761:131;:::i;:::-;29753:139;;29651:248;;;:::o;29905:419::-;30071:4;30109:2;30098:9;30094:18;30086:26;;30158:9;30152:4;30148:20;30144:1;30133:9;30129:17;30122:47;30186:131;30312:4;30186:131;:::i;:::-;30178:139;;30076:248;;;:::o;30330:419::-;30496:4;30534:2;30523:9;30519:18;30511:26;;30583:9;30577:4;30573:20;30569:1;30558:9;30554:17;30547:47;30611:131;30737:4;30611:131;:::i;:::-;30603:139;;30501:248;;;:::o;30755:419::-;30921:4;30959:2;30948:9;30944:18;30936:26;;31008:9;31002:4;30998:20;30994:1;30983:9;30979:17;30972:47;31036:131;31162:4;31036:131;:::i;:::-;31028:139;;30926:248;;;:::o;31180:419::-;31346:4;31384:2;31373:9;31369:18;31361:26;;31433:9;31427:4;31423:20;31419:1;31408:9;31404:17;31397:47;31461:131;31587:4;31461:131;:::i;:::-;31453:139;;31351:248;;;:::o;31605:222::-;31698:4;31736:2;31725:9;31721:18;31713:26;;31749:71;31817:1;31806:9;31802:17;31793:6;31749:71;:::i;:::-;31703:124;;;;:::o;31833:129::-;31867:6;31894:20;;:::i;:::-;31884:30;;31923:33;31951:4;31943:6;31923:33;:::i;:::-;31874:88;;;:::o;31968:75::-;32001:6;32034:2;32028:9;32018:19;;32008:35;:::o;32049:307::-;32110:4;32200:18;32192:6;32189:30;32186:2;;;32222:18;;:::i;:::-;32186:2;32260:29;32282:6;32260:29;:::i;:::-;32252:37;;32344:4;32338;32334:15;32326:23;;32115:241;;;:::o;32362:308::-;32424:4;32514:18;32506:6;32503:30;32500:2;;;32536:18;;:::i;:::-;32500:2;32574:29;32596:6;32574:29;:::i;:::-;32566:37;;32658:4;32652;32648:15;32640:23;;32429:241;;;:::o;32676:98::-;32727:6;32761:5;32755:12;32745:22;;32734:40;;;:::o;32780:99::-;32832:6;32866:5;32860:12;32850:22;;32839:40;;;:::o;32885:168::-;32968:11;33002:6;32997:3;32990:19;33042:4;33037:3;33033:14;33018:29;;32980:73;;;;:::o;33059:169::-;33143:11;33177:6;33172:3;33165:19;33217:4;33212:3;33208:14;33193:29;;33155:73;;;;:::o;33234:148::-;33336:11;33373:3;33358:18;;33348:34;;;;:::o;33388:305::-;33428:3;33447:20;33465:1;33447:20;:::i;:::-;33442:25;;33481:20;33499:1;33481:20;:::i;:::-;33476:25;;33635:1;33567:66;33563:74;33560:1;33557:81;33554:2;;;33641:18;;:::i;:::-;33554:2;33685:1;33682;33678:9;33671:16;;33432:261;;;;:::o;33699:185::-;33739:1;33756:20;33774:1;33756:20;:::i;:::-;33751:25;;33790:20;33808:1;33790:20;:::i;:::-;33785:25;;33829:1;33819:2;;33834:18;;:::i;:::-;33819:2;33876:1;33873;33869:9;33864:14;;33741:143;;;;:::o;33890:348::-;33930:7;33953:20;33971:1;33953:20;:::i;:::-;33948:25;;33987:20;34005:1;33987:20;:::i;:::-;33982:25;;34175:1;34107:66;34103:74;34100:1;34097:81;34092:1;34085:9;34078:17;34074:105;34071:2;;;34182:18;;:::i;:::-;34071:2;34230:1;34227;34223:9;34212:20;;33938:300;;;;:::o;34244:191::-;34284:4;34304:20;34322:1;34304:20;:::i;:::-;34299:25;;34338:20;34356:1;34338:20;:::i;:::-;34333:25;;34377:1;34374;34371:8;34368:2;;;34382:18;;:::i;:::-;34368:2;34427:1;34424;34420:9;34412:17;;34289:146;;;;:::o;34441:96::-;34478:7;34507:24;34525:5;34507:24;:::i;:::-;34496:35;;34486:51;;;:::o;34543:90::-;34577:7;34620:5;34613:13;34606:21;34595:32;;34585:48;;;:::o;34639:77::-;34676:7;34705:5;34694:16;;34684:32;;;:::o;34722:149::-;34758:7;34798:66;34791:5;34787:78;34776:89;;34766:105;;;:::o;34877:126::-;34914:7;34954:42;34947:5;34943:54;34932:65;;34922:81;;;:::o;35009:77::-;35046:7;35075:5;35064:16;;35054:32;;;:::o;35092:154::-;35176:6;35171:3;35166;35153:30;35238:1;35229:6;35224:3;35220:16;35213:27;35143:103;;;:::o;35252:307::-;35320:1;35330:113;35344:6;35341:1;35338:13;35330:113;;;35429:1;35424:3;35420:11;35414:18;35410:1;35405:3;35401:11;35394:39;35366:2;35363:1;35359:10;35354:15;;35330:113;;;35461:6;35458:1;35455:13;35452:2;;;35541:1;35532:6;35527:3;35523:16;35516:27;35452:2;35301:258;;;;:::o;35565:171::-;35604:3;35627:24;35645:5;35627:24;:::i;:::-;35618:33;;35673:4;35666:5;35663:15;35660:2;;;35681:18;;:::i;:::-;35660:2;35728:1;35721:5;35717:13;35710:20;;35608:128;;;:::o;35742:320::-;35786:6;35823:1;35817:4;35813:12;35803:22;;35870:1;35864:4;35860:12;35891:18;35881:2;;35947:4;35939:6;35935:17;35925:27;;35881:2;36009;36001:6;35998:14;35978:18;35975:38;35972:2;;;36028:18;;:::i;:::-;35972:2;35793:269;;;;:::o;36068:281::-;36151:27;36173:4;36151:27;:::i;:::-;36143:6;36139:40;36281:6;36269:10;36266:22;36245:18;36233:10;36230:34;36227:62;36224:2;;;36292:18;;:::i;:::-;36224:2;36332:10;36328:2;36321:22;36111:238;;;:::o;36355:233::-;36394:3;36417:24;36435:5;36417:24;:::i;:::-;36408:33;;36463:66;36456:5;36453:77;36450:2;;;36533:18;;:::i;:::-;36450:2;36580:1;36573:5;36569:13;36562:20;;36398:190;;;:::o;36594:176::-;36626:1;36643:20;36661:1;36643:20;:::i;:::-;36638:25;;36677:20;36695:1;36677:20;:::i;:::-;36672:25;;36716:1;36706:2;;36721:18;;:::i;:::-;36706:2;36762:1;36759;36755:9;36750:14;;36628:142;;;;:::o;36776:180::-;36824:77;36821:1;36814:88;36921:4;36918:1;36911:15;36945:4;36942:1;36935:15;36962:180;37010:77;37007:1;37000:88;37107:4;37104:1;37097:15;37131:4;37128:1;37121:15;37148:180;37196:77;37193:1;37186:88;37293:4;37290:1;37283:15;37317:4;37314:1;37307:15;37334:180;37382:77;37379:1;37372:88;37479:4;37476:1;37469:15;37503:4;37500:1;37493:15;37520:180;37568:77;37565:1;37558:88;37665:4;37662:1;37655:15;37689:4;37686:1;37679:15;37706:180;37754:77;37751:1;37744:88;37851:4;37848:1;37841:15;37875:4;37872:1;37865:15;37892:117;38001:1;37998;37991:12;38015:117;38124:1;38121;38114:12;38138:117;38247:1;38244;38237:12;38261:117;38370:1;38367;38360:12;38384:102;38425:6;38476:2;38472:7;38467:2;38460:5;38456:14;38452:28;38442:38;;38432:54;;;:::o;38492:171::-;38632:23;38628:1;38620:6;38616:14;38609:47;38598:65;:::o;38669:182::-;38809:34;38805:1;38797:6;38793:14;38786:58;38775:76;:::o;38857:230::-;38997:34;38993:1;38985:6;38981:14;38974:58;39066:13;39061:2;39053:6;39049:15;39042:38;38963:124;:::o;39093:237::-;39233:34;39229:1;39221:6;39217:14;39210:58;39302:20;39297:2;39289:6;39285:15;39278:45;39199:131;:::o;39336:178::-;39476:30;39472:1;39464:6;39460:14;39453:54;39442:72;:::o;39520:223::-;39660:34;39656:1;39648:6;39644:14;39637:58;39729:6;39724:2;39716:6;39712:15;39705:31;39626:117;:::o;39749:175::-;39889:27;39885:1;39877:6;39873:14;39866:51;39855:69;:::o;39930:170::-;40070:22;40066:1;40058:6;40054:14;40047:46;40036:64;:::o;40106:231::-;40246:34;40242:1;40234:6;40230:14;40223:58;40315:14;40310:2;40302:6;40298:15;40291:39;40212:125;:::o;40343:230::-;40483:34;40479:1;40471:6;40467:14;40460:58;40552:13;40547:2;40539:6;40535:15;40528:38;40449:124;:::o;40579:243::-;40719:34;40715:1;40707:6;40703:14;40696:58;40788:26;40783:2;40775:6;40771:15;40764:51;40685:137;:::o;40828:172::-;40968:24;40964:1;40956:6;40952:14;40945:48;40934:66;:::o;41006:229::-;41146:34;41142:1;41134:6;41130:14;41123:58;41215:12;41210:2;41202:6;41198:15;41191:37;41112:123;:::o;41241:228::-;41381:34;41377:1;41369:6;41365:14;41358:58;41450:11;41445:2;41437:6;41433:15;41426:36;41347:122;:::o;41475:182::-;41615:34;41611:1;41603:6;41599:14;41592:58;41581:76;:::o;41663:231::-;41803:34;41799:1;41791:6;41787:14;41780:58;41872:14;41867:2;41859:6;41855:15;41848:39;41769:125;:::o;41900:228::-;42040:34;42036:1;42028:6;42024:14;42017:58;42109:11;42104:2;42096:6;42092:15;42085:36;42006:122;:::o;42134:234::-;42274:34;42270:1;42262:6;42258:14;42251:58;42343:17;42338:2;42330:6;42326:15;42319:42;42240:128;:::o;42374:220::-;42514:34;42510:1;42502:6;42498:14;42491:58;42583:3;42578:2;42570:6;42566:15;42559:28;42480:114;:::o;42600:236::-;42740:34;42736:1;42728:6;42724:14;42717:58;42809:19;42804:2;42796:6;42792:15;42785:44;42706:130;:::o;42842:231::-;42982:34;42978:1;42970:6;42966:14;42959:58;43051:14;43046:2;43038:6;43034:15;43027:39;42948:125;:::o;43079:173::-;43219:25;43215:1;43207:6;43203:14;43196:49;43185:67;:::o;43258:167::-;43398:19;43394:1;43386:6;43382:14;43375:43;43364:61;:::o;43431:234::-;43571:34;43567:1;43559:6;43555:14;43548:58;43640:17;43635:2;43627:6;43623:15;43616:42;43537:128;:::o;43671:122::-;43744:24;43762:5;43744:24;:::i;:::-;43737:5;43734:35;43724:2;;43783:1;43780;43773:12;43724:2;43714:79;:::o;43799:116::-;43869:21;43884:5;43869:21;:::i;:::-;43862:5;43859:32;43849:2;;43905:1;43902;43895:12;43849:2;43839:76;:::o;43921:122::-;43994:24;44012:5;43994:24;:::i;:::-;43987:5;43984:35;43974:2;;44033:1;44030;44023:12;43974:2;43964:79;:::o;44049:120::-;44121:23;44138:5;44121:23;:::i;:::-;44114:5;44111:34;44101:2;;44159:1;44156;44149:12;44101:2;44091:78;:::o;44175:122::-;44248:24;44266:5;44248:24;:::i;:::-;44241:5;44238:35;44228:2;;44287:1;44284;44277:12;44228:2;44218:79;:::o
Swarm Source
ipfs://32a6fc43623bde89734c2895409fd616f649c58301ca4e61e95898424407aace
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.