ERC-721
Overview
Max Total Supply
1,202 JK
Holders
230
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 JKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Kevin
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-02 */ // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/security/[email protected] // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File contracts/Kevin.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract Kevin is ERC721, ERC721Enumerable, Ownable { string public PROVENANCE; uint256 public constant earlyPrice = 0.02 ether; uint256 public constant latePrice = 0.069 ether; uint256 public MAX_TOKENS = 6969; bool public saleIsActive = false; event PermanentURI(string _value, uint256 indexed _id); string private _baseURIextended; constructor() ERC721("Just Kevin", "JK") { } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function setBaseURI(string memory baseURI_) external onlyOwner() { _baseURIextended = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function setProvenance(string memory provenance) public onlyOwner { PROVENANCE = provenance; } function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function mintToken(uint numberOfTokens) public payable { require(saleIsActive, "Sale must be active to mint Tokens"); uint256 supply = totalSupply(); require(supply + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply of tokens"); uint256 cost = getCost(supply, numberOfTokens); require(cost <= msg.value, "Ether value sent is not enough"); if (cost < msg.value) { payable(msg.sender).transfer(msg.value - cost); } for(uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_TOKENS) { _safeMint(msg.sender, mintIndex); } } } function getCost(uint256 currSupply, uint256 numberOfTokens) internal pure returns (uint256) { uint256 cost = 0; uint256 newAmount = numberOfTokens + currSupply; if (newAmount > 1000 && newAmount <= 5969) { if (currSupply < 1000) { cost = (newAmount - 1000) * earlyPrice; } else { cost = numberOfTokens * earlyPrice; } } else if (newAmount > 5969) { if (currSupply < 5969) { cost = ((5969 - currSupply) * earlyPrice) + ((newAmount - 5969) * latePrice); } else { cost = numberOfTokens * latePrice; } } return cost; } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function markPermanentURI(string memory value, uint256 id) public onlyOwner { emit PermanentURI(value, id); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"earlyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"latePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"value","type":"string"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"markPermanentURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052611b39600c556000600d60006101000a81548160ff0219169083151502179055503480156200003257600080fd5b506040518060400160405280600a81526020017f4a757374204b6576696e000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4a4b0000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b7929190620001c7565b508060019080519060200190620000d0929190620001c7565b505050620000f3620000e7620000f960201b60201c565b6200010160201b60201c565b620002dc565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d59062000277565b90600052602060002090601f016020900481019282620001f9576000855562000245565b82601f106200021457805160ff191683800117855562000245565b8280016001018555821562000245579182015b828111156200024457825182559160200191906001019062000227565b5b50905062000254919062000258565b5090565b5b808211156200027357600081600090555060010162000259565b5090565b600060028204905060018216806200029057607f821691505b60208210811415620002a757620002a6620002ad565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61413980620002ec6000396000f3fe6080604052600436106101cd5760003560e01c80636373a6b1116100f7578063c634d03211610095578063f2fde38b11610064578063f2fde38b14610667578063f47c84c514610690578063fbdd8a78146106bb578063ffe630b5146106e6576101cd565b8063c634d032146105a6578063c87b56dd146105c2578063e985e9c5146105ff578063eb8d24441461063c576101cd565b80638da5cb5b116100d15780638da5cb5b146104fe57806395d89b4114610529578063a22cb46514610554578063b88d4fde1461057d576101cd565b80636373a6b11461047f57806370a08231146104aa578063715018a6146104e7576101cd565b80632f745c591161016f57806342842e0e1161013e57806342842e0e146103b35780634f6ccce7146103dc57806355f804b3146104195780636352211e14610442576101cd565b80632f745c591461031f57806334918dfd1461035c57806338413aa3146103735780633ccfd60b1461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a0578063239c47c0146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e69565b61070f565b60405161020691906133b3565b60405180910390f35b34801561021b57600080fd5b50610224610721565b60405161023191906133ce565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612f50565b6107b3565b60405161026e919061334c565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e2d565b610838565b005b3480156102ac57600080fd5b506102b5610950565b6040516102c29190613690565b60405180910390f35b3480156102d757600080fd5b506102e061095d565b6040516102ed9190613690565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612d27565b610968565b005b34801561032b57600080fd5b5061034660048036038101906103419190612e2d565b6109c8565b6040516103539190613690565b60405180910390f35b34801561036857600080fd5b50610371610a6d565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612efc565b610b15565b005b3480156103a857600080fd5b506103b1610bcd565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612d27565b610c98565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190612f50565b610cb8565b6040516104109190613690565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b9190612ebb565b610d4f565b005b34801561044e57600080fd5b5061046960048036038101906104649190612f50565b610de5565b604051610476919061334c565b60405180910390f35b34801561048b57600080fd5b50610494610e97565b6040516104a191906133ce565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190612cc2565b610f25565b6040516104de9190613690565b60405180910390f35b3480156104f357600080fd5b506104fc610fdd565b005b34801561050a57600080fd5b50610513611065565b604051610520919061334c565b60405180910390f35b34801561053557600080fd5b5061053e61108f565b60405161054b91906133ce565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190612df1565b611121565b005b34801561058957600080fd5b506105a4600480360381019061059f9190612d76565b611137565b005b6105c060048036038101906105bb9190612f50565b611199565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612f50565b61133d565b6040516105f691906133ce565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612ceb565b6113e4565b60405161063391906133b3565b60405180910390f35b34801561064857600080fd5b50610651611478565b60405161065e91906133b3565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190612cc2565b61148b565b005b34801561069c57600080fd5b506106a5611583565b6040516106b29190613690565b60405180910390f35b3480156106c757600080fd5b506106d0611589565b6040516106dd9190613690565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190612ebb565b611594565b005b600061071a8261162a565b9050919050565b60606000805461073090613940565b80601f016020809104026020016040519081016040528092919081815260200182805461075c90613940565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b60006107be826116a4565b6107fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f4906135b0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084382610de5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab90613610565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d3611710565b73ffffffffffffffffffffffffffffffffffffffff1614806109025750610901816108fc611710565b6113e4565b5b610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890613510565b60405180910390fd5b61094b8383611718565b505050565b6000600880549050905090565b66470de4df82000081565b610979610973611710565b826117d1565b6109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90613630565b60405180910390fd5b6109c38383836118af565b505050565b60006109d383610f25565b8210610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b906133f0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a75611710565b73ffffffffffffffffffffffffffffffffffffffff16610a93611065565b73ffffffffffffffffffffffffffffffffffffffff1614610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae0906135d0565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610b1d611710565b73ffffffffffffffffffffffffffffffffffffffff16610b3b611065565b73ffffffffffffffffffffffffffffffffffffffff1614610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b88906135d0565b60405180910390fd5b807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b5565720783604051610bc191906133ce565b60405180910390a25050565b610bd5611710565b73ffffffffffffffffffffffffffffffffffffffff16610bf3611065565b73ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c40906135d0565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c94573d6000803e3d6000fd5b5050565b610cb383838360405180602001604052806000815250611137565b505050565b6000610cc2610950565b8210610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90613650565b60405180910390fd5b60088281548110610d3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610d57611710565b73ffffffffffffffffffffffffffffffffffffffff16610d75611065565b73ffffffffffffffffffffffffffffffffffffffff1614610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906135d0565b60405180910390fd5b80600e9080519060200190610de1929190612ae6565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590613550565b60405180910390fd5b80915050919050565b600b8054610ea490613940565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed090613940565b8015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b820191906000526020600020905b815481529060010190602001808311610f0057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613530565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fe5611710565b73ffffffffffffffffffffffffffffffffffffffff16611003611065565b73ffffffffffffffffffffffffffffffffffffffff1614611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906135d0565b60405180910390fd5b6110636000611b16565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461109e90613940565b80601f01602080910402602001604051908101604052809291908181526020018280546110ca90613940565b80156111175780601f106110ec57610100808354040283529160200191611117565b820191906000526020600020905b8154815290600101906020018083116110fa57829003601f168201915b5050505050905090565b61113361112c611710565b8383611bdc565b5050565b611148611142611710565b836117d1565b611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90613630565b60405180910390fd5b61119384848484611d49565b50505050565b600d60009054906101000a900460ff166111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df906134d0565b60405180910390fd5b60006111f2610950565b9050600c5482826112039190613775565b1115611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90613570565b60405180910390fd5b60006112508284611da5565b905034811115611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90613670565b60405180910390fd5b348110156112f0573373ffffffffffffffffffffffffffffffffffffffff166108fc82346112c39190613856565b9081150290604051600060405180830381858888f193505050501580156112ee573d6000803e3d6000fd5b505b60005b83811015611337576000611305610950565b9050600c54611312610950565b1015611323576113223382611ea8565b5b50808061132f906139a3565b9150506112f3565b50505050565b6060611348826116a4565b611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e906135f0565b60405180910390fd5b6000611391611ec6565b905060008151116113b157604051806020016040528060008152506113dc565b806113bb84611f58565b6040516020016113cc929190613328565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b611493611710565b73ffffffffffffffffffffffffffffffffffffffff166114b1611065565b73ffffffffffffffffffffffffffffffffffffffff1614611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe906135d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90613430565b60405180910390fd5b61158081611b16565b50565b600c5481565b66f523226980800081565b61159c611710565b73ffffffffffffffffffffffffffffffffffffffff166115ba611065565b73ffffffffffffffffffffffffffffffffffffffff1614611610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611607906135d0565b60405180910390fd5b80600b9080519060200190611626929190612ae6565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061169d575061169c82612105565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178b83610de5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117dc826116a4565b61181b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611812906134f0565b60405180910390fd5b600061182683610de5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061189557508373ffffffffffffffffffffffffffffffffffffffff1661187d846107b3565b73ffffffffffffffffffffffffffffffffffffffff16145b806118a657506118a581856113e4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118cf82610de5565b73ffffffffffffffffffffffffffffffffffffffff1614611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90613450565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613490565b60405180910390fd5b6119a08383836121e7565b6119ab600082611718565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119fb9190613856565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a529190613775565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b118383836121f7565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c42906134b0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d3c91906133b3565b60405180910390a3505050565b611d548484846118af565b611d60848484846121fc565b611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9690613410565b60405180910390fd5b50505050565b6000806000905060008484611dba9190613775565b90506103e881118015611dcf57506117518111155b15611e20576103e8851015611e055766470de4df8200006103e882611df49190613856565b611dfe91906137fc565b9150611e1b565b66470de4df82000084611e1891906137fc565b91505b611e9d565b611751811115611e9c57611751851015611e855766f523226980800061175182611e4a9190613856565b611e5491906137fc565b66470de4df82000086611751611e6a9190613856565b611e7491906137fc565b611e7e9190613775565b9150611e9b565b66f523226980800084611e9891906137fc565b91505b5b5b819250505092915050565b611ec2828260405180602001604052806000815250612393565b5050565b6060600e8054611ed590613940565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0190613940565b8015611f4e5780601f10611f2357610100808354040283529160200191611f4e565b820191906000526020600020905b815481529060010190602001808311611f3157829003601f168201915b5050505050905090565b60606000821415611fa0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612100565b600082905060005b60008214611fd2578080611fbb906139a3565b915050600a82611fcb91906137cb565b9150611fa8565b60008167ffffffffffffffff811115612014577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120465781602001600182028036833780820191505090505b5090505b600085146120f95760018261205f9190613856565b9150600a8561206e91906139ec565b603061207a9190613775565b60f81b8183815181106120b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120f291906137cb565b945061204a565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121d057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121e057506121df826123ee565b5b9050919050565b6121f2838383612458565b505050565b505050565b600061221d8473ffffffffffffffffffffffffffffffffffffffff1661256c565b15612386578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612246611710565b8786866040518563ffffffff1660e01b81526004016122689493929190613367565b602060405180830381600087803b15801561228257600080fd5b505af19250505080156122b357506040513d601f19601f820116820180604052508101906122b09190612e92565b60015b612336573d80600081146122e3576040519150601f19603f3d011682016040523d82523d6000602084013e6122e8565b606091505b5060008151141561232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590613410565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061238b565b600190505b949350505050565b61239d838361258f565b6123aa60008484846121fc565b6123e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e090613410565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612463838383612769565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124a6576124a18161276e565b6124e5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124e4576124e383826127b7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125285761252381612924565b612567565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612566576125658282612a67565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f690613590565b60405180910390fd5b612608816116a4565b15612648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263f90613470565b60405180910390fd5b612654600083836121e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126a49190613775565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612765600083836121f7565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127c484610f25565b6127ce9190613856565b90506000600760008481526020019081526020016000205490508181146128b3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129389190613856565b905060006009600084815260200190815260200160002054905060006008838154811061298e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106129d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a4b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a7283610f25565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612af290613940565b90600052602060002090601f016020900481019282612b145760008555612b5b565b82601f10612b2d57805160ff1916838001178555612b5b565b82800160010185558215612b5b579182015b82811115612b5a578251825591602001919060010190612b3f565b5b509050612b689190612b6c565b5090565b5b80821115612b85576000816000905550600101612b6d565b5090565b6000612b9c612b97846136d0565b6136ab565b905082815260208101848484011115612bb457600080fd5b612bbf8482856138fe565b509392505050565b6000612bda612bd584613701565b6136ab565b905082815260208101848484011115612bf257600080fd5b612bfd8482856138fe565b509392505050565b600081359050612c14816140a7565b92915050565b600081359050612c29816140be565b92915050565b600081359050612c3e816140d5565b92915050565b600081519050612c53816140d5565b92915050565b600082601f830112612c6a57600080fd5b8135612c7a848260208601612b89565b91505092915050565b600082601f830112612c9457600080fd5b8135612ca4848260208601612bc7565b91505092915050565b600081359050612cbc816140ec565b92915050565b600060208284031215612cd457600080fd5b6000612ce284828501612c05565b91505092915050565b60008060408385031215612cfe57600080fd5b6000612d0c85828601612c05565b9250506020612d1d85828601612c05565b9150509250929050565b600080600060608486031215612d3c57600080fd5b6000612d4a86828701612c05565b9350506020612d5b86828701612c05565b9250506040612d6c86828701612cad565b9150509250925092565b60008060008060808587031215612d8c57600080fd5b6000612d9a87828801612c05565b9450506020612dab87828801612c05565b9350506040612dbc87828801612cad565b925050606085013567ffffffffffffffff811115612dd957600080fd5b612de587828801612c59565b91505092959194509250565b60008060408385031215612e0457600080fd5b6000612e1285828601612c05565b9250506020612e2385828601612c1a565b9150509250929050565b60008060408385031215612e4057600080fd5b6000612e4e85828601612c05565b9250506020612e5f85828601612cad565b9150509250929050565b600060208284031215612e7b57600080fd5b6000612e8984828501612c2f565b91505092915050565b600060208284031215612ea457600080fd5b6000612eb284828501612c44565b91505092915050565b600060208284031215612ecd57600080fd5b600082013567ffffffffffffffff811115612ee757600080fd5b612ef384828501612c83565b91505092915050565b60008060408385031215612f0f57600080fd5b600083013567ffffffffffffffff811115612f2957600080fd5b612f3585828601612c83565b9250506020612f4685828601612cad565b9150509250929050565b600060208284031215612f6257600080fd5b6000612f7084828501612cad565b91505092915050565b612f828161388a565b82525050565b612f918161389c565b82525050565b6000612fa282613732565b612fac8185613748565b9350612fbc81856020860161390d565b612fc581613ad9565b840191505092915050565b6000612fdb8261373d565b612fe58185613759565b9350612ff581856020860161390d565b612ffe81613ad9565b840191505092915050565b60006130148261373d565b61301e818561376a565b935061302e81856020860161390d565b80840191505092915050565b6000613047602b83613759565b915061305282613aea565b604082019050919050565b600061306a603283613759565b915061307582613b39565b604082019050919050565b600061308d602683613759565b915061309882613b88565b604082019050919050565b60006130b0602583613759565b91506130bb82613bd7565b604082019050919050565b60006130d3601c83613759565b91506130de82613c26565b602082019050919050565b60006130f6602483613759565b915061310182613c4f565b604082019050919050565b6000613119601983613759565b915061312482613c9e565b602082019050919050565b600061313c602283613759565b915061314782613cc7565b604082019050919050565b600061315f602c83613759565b915061316a82613d16565b604082019050919050565b6000613182603883613759565b915061318d82613d65565b604082019050919050565b60006131a5602a83613759565b91506131b082613db4565b604082019050919050565b60006131c8602983613759565b91506131d382613e03565b604082019050919050565b60006131eb602a83613759565b91506131f682613e52565b604082019050919050565b600061320e602083613759565b915061321982613ea1565b602082019050919050565b6000613231602c83613759565b915061323c82613eca565b604082019050919050565b6000613254602083613759565b915061325f82613f19565b602082019050919050565b6000613277602f83613759565b915061328282613f42565b604082019050919050565b600061329a602183613759565b91506132a582613f91565b604082019050919050565b60006132bd603183613759565b91506132c882613fe0565b604082019050919050565b60006132e0602c83613759565b91506132eb8261402f565b604082019050919050565b6000613303601e83613759565b915061330e8261407e565b602082019050919050565b613322816138f4565b82525050565b60006133348285613009565b91506133408284613009565b91508190509392505050565b60006020820190506133616000830184612f79565b92915050565b600060808201905061337c6000830187612f79565b6133896020830186612f79565b6133966040830185613319565b81810360608301526133a88184612f97565b905095945050505050565b60006020820190506133c86000830184612f88565b92915050565b600060208201905081810360008301526133e88184612fd0565b905092915050565b600060208201905081810360008301526134098161303a565b9050919050565b600060208201905081810360008301526134298161305d565b9050919050565b6000602082019050818103600083015261344981613080565b9050919050565b60006020820190508181036000830152613469816130a3565b9050919050565b60006020820190508181036000830152613489816130c6565b9050919050565b600060208201905081810360008301526134a9816130e9565b9050919050565b600060208201905081810360008301526134c98161310c565b9050919050565b600060208201905081810360008301526134e98161312f565b9050919050565b6000602082019050818103600083015261350981613152565b9050919050565b6000602082019050818103600083015261352981613175565b9050919050565b6000602082019050818103600083015261354981613198565b9050919050565b60006020820190508181036000830152613569816131bb565b9050919050565b60006020820190508181036000830152613589816131de565b9050919050565b600060208201905081810360008301526135a981613201565b9050919050565b600060208201905081810360008301526135c981613224565b9050919050565b600060208201905081810360008301526135e981613247565b9050919050565b600060208201905081810360008301526136098161326a565b9050919050565b600060208201905081810360008301526136298161328d565b9050919050565b60006020820190508181036000830152613649816132b0565b9050919050565b60006020820190508181036000830152613669816132d3565b9050919050565b60006020820190508181036000830152613689816132f6565b9050919050565b60006020820190506136a56000830184613319565b92915050565b60006136b56136c6565b90506136c18282613972565b919050565b6000604051905090565b600067ffffffffffffffff8211156136eb576136ea613aaa565b5b6136f482613ad9565b9050602081019050919050565b600067ffffffffffffffff82111561371c5761371b613aaa565b5b61372582613ad9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613780826138f4565b915061378b836138f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137c0576137bf613a1d565b5b828201905092915050565b60006137d6826138f4565b91506137e1836138f4565b9250826137f1576137f0613a4c565b5b828204905092915050565b6000613807826138f4565b9150613812836138f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561384b5761384a613a1d565b5b828202905092915050565b6000613861826138f4565b915061386c836138f4565b92508282101561387f5761387e613a1d565b5b828203905092915050565b6000613895826138d4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561392b578082015181840152602081019050613910565b8381111561393a576000848401525b50505050565b6000600282049050600182168061395857607f821691505b6020821081141561396c5761396b613a7b565b5b50919050565b61397b82613ad9565b810181811067ffffffffffffffff8211171561399a57613999613aaa565b5b80604052505050565b60006139ae826138f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139e1576139e0613a1d565b5b600182019050919050565b60006139f7826138f4565b9150613a02836138f4565b925082613a1257613a11613a4c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420656e6f7567680000600082015250565b6140b08161388a565b81146140bb57600080fd5b50565b6140c78161389c565b81146140d257600080fd5b50565b6140de816138a8565b81146140e957600080fd5b50565b6140f5816138f4565b811461410057600080fd5b5056fea2646970667358221220846f873fc22cb650d7c0abf1cc93c57bbd9094fd315475ae6628c4a0006e515764736f6c63430008010033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80636373a6b1116100f7578063c634d03211610095578063f2fde38b11610064578063f2fde38b14610667578063f47c84c514610690578063fbdd8a78146106bb578063ffe630b5146106e6576101cd565b8063c634d032146105a6578063c87b56dd146105c2578063e985e9c5146105ff578063eb8d24441461063c576101cd565b80638da5cb5b116100d15780638da5cb5b146104fe57806395d89b4114610529578063a22cb46514610554578063b88d4fde1461057d576101cd565b80636373a6b11461047f57806370a08231146104aa578063715018a6146104e7576101cd565b80632f745c591161016f57806342842e0e1161013e57806342842e0e146103b35780634f6ccce7146103dc57806355f804b3146104195780636352211e14610442576101cd565b80632f745c591461031f57806334918dfd1461035c57806338413aa3146103735780633ccfd60b1461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a0578063239c47c0146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e69565b61070f565b60405161020691906133b3565b60405180910390f35b34801561021b57600080fd5b50610224610721565b60405161023191906133ce565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612f50565b6107b3565b60405161026e919061334c565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e2d565b610838565b005b3480156102ac57600080fd5b506102b5610950565b6040516102c29190613690565b60405180910390f35b3480156102d757600080fd5b506102e061095d565b6040516102ed9190613690565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612d27565b610968565b005b34801561032b57600080fd5b5061034660048036038101906103419190612e2d565b6109c8565b6040516103539190613690565b60405180910390f35b34801561036857600080fd5b50610371610a6d565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612efc565b610b15565b005b3480156103a857600080fd5b506103b1610bcd565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612d27565b610c98565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190612f50565b610cb8565b6040516104109190613690565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b9190612ebb565b610d4f565b005b34801561044e57600080fd5b5061046960048036038101906104649190612f50565b610de5565b604051610476919061334c565b60405180910390f35b34801561048b57600080fd5b50610494610e97565b6040516104a191906133ce565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190612cc2565b610f25565b6040516104de9190613690565b60405180910390f35b3480156104f357600080fd5b506104fc610fdd565b005b34801561050a57600080fd5b50610513611065565b604051610520919061334c565b60405180910390f35b34801561053557600080fd5b5061053e61108f565b60405161054b91906133ce565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190612df1565b611121565b005b34801561058957600080fd5b506105a4600480360381019061059f9190612d76565b611137565b005b6105c060048036038101906105bb9190612f50565b611199565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612f50565b61133d565b6040516105f691906133ce565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612ceb565b6113e4565b60405161063391906133b3565b60405180910390f35b34801561064857600080fd5b50610651611478565b60405161065e91906133b3565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190612cc2565b61148b565b005b34801561069c57600080fd5b506106a5611583565b6040516106b29190613690565b60405180910390f35b3480156106c757600080fd5b506106d0611589565b6040516106dd9190613690565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190612ebb565b611594565b005b600061071a8261162a565b9050919050565b60606000805461073090613940565b80601f016020809104026020016040519081016040528092919081815260200182805461075c90613940565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b60006107be826116a4565b6107fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f4906135b0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084382610de5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab90613610565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d3611710565b73ffffffffffffffffffffffffffffffffffffffff1614806109025750610901816108fc611710565b6113e4565b5b610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890613510565b60405180910390fd5b61094b8383611718565b505050565b6000600880549050905090565b66470de4df82000081565b610979610973611710565b826117d1565b6109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90613630565b60405180910390fd5b6109c38383836118af565b505050565b60006109d383610f25565b8210610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b906133f0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a75611710565b73ffffffffffffffffffffffffffffffffffffffff16610a93611065565b73ffffffffffffffffffffffffffffffffffffffff1614610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae0906135d0565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610b1d611710565b73ffffffffffffffffffffffffffffffffffffffff16610b3b611065565b73ffffffffffffffffffffffffffffffffffffffff1614610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b88906135d0565b60405180910390fd5b807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b5565720783604051610bc191906133ce565b60405180910390a25050565b610bd5611710565b73ffffffffffffffffffffffffffffffffffffffff16610bf3611065565b73ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c40906135d0565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c94573d6000803e3d6000fd5b5050565b610cb383838360405180602001604052806000815250611137565b505050565b6000610cc2610950565b8210610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90613650565b60405180910390fd5b60088281548110610d3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610d57611710565b73ffffffffffffffffffffffffffffffffffffffff16610d75611065565b73ffffffffffffffffffffffffffffffffffffffff1614610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906135d0565b60405180910390fd5b80600e9080519060200190610de1929190612ae6565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590613550565b60405180910390fd5b80915050919050565b600b8054610ea490613940565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed090613940565b8015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b820191906000526020600020905b815481529060010190602001808311610f0057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613530565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fe5611710565b73ffffffffffffffffffffffffffffffffffffffff16611003611065565b73ffffffffffffffffffffffffffffffffffffffff1614611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906135d0565b60405180910390fd5b6110636000611b16565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461109e90613940565b80601f01602080910402602001604051908101604052809291908181526020018280546110ca90613940565b80156111175780601f106110ec57610100808354040283529160200191611117565b820191906000526020600020905b8154815290600101906020018083116110fa57829003601f168201915b5050505050905090565b61113361112c611710565b8383611bdc565b5050565b611148611142611710565b836117d1565b611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90613630565b60405180910390fd5b61119384848484611d49565b50505050565b600d60009054906101000a900460ff166111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df906134d0565b60405180910390fd5b60006111f2610950565b9050600c5482826112039190613775565b1115611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90613570565b60405180910390fd5b60006112508284611da5565b905034811115611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90613670565b60405180910390fd5b348110156112f0573373ffffffffffffffffffffffffffffffffffffffff166108fc82346112c39190613856565b9081150290604051600060405180830381858888f193505050501580156112ee573d6000803e3d6000fd5b505b60005b83811015611337576000611305610950565b9050600c54611312610950565b1015611323576113223382611ea8565b5b50808061132f906139a3565b9150506112f3565b50505050565b6060611348826116a4565b611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e906135f0565b60405180910390fd5b6000611391611ec6565b905060008151116113b157604051806020016040528060008152506113dc565b806113bb84611f58565b6040516020016113cc929190613328565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b611493611710565b73ffffffffffffffffffffffffffffffffffffffff166114b1611065565b73ffffffffffffffffffffffffffffffffffffffff1614611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe906135d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90613430565b60405180910390fd5b61158081611b16565b50565b600c5481565b66f523226980800081565b61159c611710565b73ffffffffffffffffffffffffffffffffffffffff166115ba611065565b73ffffffffffffffffffffffffffffffffffffffff1614611610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611607906135d0565b60405180910390fd5b80600b9080519060200190611626929190612ae6565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061169d575061169c82612105565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178b83610de5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117dc826116a4565b61181b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611812906134f0565b60405180910390fd5b600061182683610de5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061189557508373ffffffffffffffffffffffffffffffffffffffff1661187d846107b3565b73ffffffffffffffffffffffffffffffffffffffff16145b806118a657506118a581856113e4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118cf82610de5565b73ffffffffffffffffffffffffffffffffffffffff1614611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90613450565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613490565b60405180910390fd5b6119a08383836121e7565b6119ab600082611718565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119fb9190613856565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a529190613775565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b118383836121f7565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c42906134b0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d3c91906133b3565b60405180910390a3505050565b611d548484846118af565b611d60848484846121fc565b611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9690613410565b60405180910390fd5b50505050565b6000806000905060008484611dba9190613775565b90506103e881118015611dcf57506117518111155b15611e20576103e8851015611e055766470de4df8200006103e882611df49190613856565b611dfe91906137fc565b9150611e1b565b66470de4df82000084611e1891906137fc565b91505b611e9d565b611751811115611e9c57611751851015611e855766f523226980800061175182611e4a9190613856565b611e5491906137fc565b66470de4df82000086611751611e6a9190613856565b611e7491906137fc565b611e7e9190613775565b9150611e9b565b66f523226980800084611e9891906137fc565b91505b5b5b819250505092915050565b611ec2828260405180602001604052806000815250612393565b5050565b6060600e8054611ed590613940565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0190613940565b8015611f4e5780601f10611f2357610100808354040283529160200191611f4e565b820191906000526020600020905b815481529060010190602001808311611f3157829003601f168201915b5050505050905090565b60606000821415611fa0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612100565b600082905060005b60008214611fd2578080611fbb906139a3565b915050600a82611fcb91906137cb565b9150611fa8565b60008167ffffffffffffffff811115612014577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120465781602001600182028036833780820191505090505b5090505b600085146120f95760018261205f9190613856565b9150600a8561206e91906139ec565b603061207a9190613775565b60f81b8183815181106120b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120f291906137cb565b945061204a565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121d057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121e057506121df826123ee565b5b9050919050565b6121f2838383612458565b505050565b505050565b600061221d8473ffffffffffffffffffffffffffffffffffffffff1661256c565b15612386578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612246611710565b8786866040518563ffffffff1660e01b81526004016122689493929190613367565b602060405180830381600087803b15801561228257600080fd5b505af19250505080156122b357506040513d601f19601f820116820180604052508101906122b09190612e92565b60015b612336573d80600081146122e3576040519150601f19603f3d011682016040523d82523d6000602084013e6122e8565b606091505b5060008151141561232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590613410565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061238b565b600190505b949350505050565b61239d838361258f565b6123aa60008484846121fc565b6123e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e090613410565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612463838383612769565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124a6576124a18161276e565b6124e5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124e4576124e383826127b7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125285761252381612924565b612567565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612566576125658282612a67565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f690613590565b60405180910390fd5b612608816116a4565b15612648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263f90613470565b60405180910390fd5b612654600083836121e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126a49190613775565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612765600083836121f7565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127c484610f25565b6127ce9190613856565b90506000600760008481526020019081526020016000205490508181146128b3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129389190613856565b905060006009600084815260200190815260200160002054905060006008838154811061298e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106129d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a4b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a7283610f25565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612af290613940565b90600052602060002090601f016020900481019282612b145760008555612b5b565b82601f10612b2d57805160ff1916838001178555612b5b565b82800160010185558215612b5b579182015b82811115612b5a578251825591602001919060010190612b3f565b5b509050612b689190612b6c565b5090565b5b80821115612b85576000816000905550600101612b6d565b5090565b6000612b9c612b97846136d0565b6136ab565b905082815260208101848484011115612bb457600080fd5b612bbf8482856138fe565b509392505050565b6000612bda612bd584613701565b6136ab565b905082815260208101848484011115612bf257600080fd5b612bfd8482856138fe565b509392505050565b600081359050612c14816140a7565b92915050565b600081359050612c29816140be565b92915050565b600081359050612c3e816140d5565b92915050565b600081519050612c53816140d5565b92915050565b600082601f830112612c6a57600080fd5b8135612c7a848260208601612b89565b91505092915050565b600082601f830112612c9457600080fd5b8135612ca4848260208601612bc7565b91505092915050565b600081359050612cbc816140ec565b92915050565b600060208284031215612cd457600080fd5b6000612ce284828501612c05565b91505092915050565b60008060408385031215612cfe57600080fd5b6000612d0c85828601612c05565b9250506020612d1d85828601612c05565b9150509250929050565b600080600060608486031215612d3c57600080fd5b6000612d4a86828701612c05565b9350506020612d5b86828701612c05565b9250506040612d6c86828701612cad565b9150509250925092565b60008060008060808587031215612d8c57600080fd5b6000612d9a87828801612c05565b9450506020612dab87828801612c05565b9350506040612dbc87828801612cad565b925050606085013567ffffffffffffffff811115612dd957600080fd5b612de587828801612c59565b91505092959194509250565b60008060408385031215612e0457600080fd5b6000612e1285828601612c05565b9250506020612e2385828601612c1a565b9150509250929050565b60008060408385031215612e4057600080fd5b6000612e4e85828601612c05565b9250506020612e5f85828601612cad565b9150509250929050565b600060208284031215612e7b57600080fd5b6000612e8984828501612c2f565b91505092915050565b600060208284031215612ea457600080fd5b6000612eb284828501612c44565b91505092915050565b600060208284031215612ecd57600080fd5b600082013567ffffffffffffffff811115612ee757600080fd5b612ef384828501612c83565b91505092915050565b60008060408385031215612f0f57600080fd5b600083013567ffffffffffffffff811115612f2957600080fd5b612f3585828601612c83565b9250506020612f4685828601612cad565b9150509250929050565b600060208284031215612f6257600080fd5b6000612f7084828501612cad565b91505092915050565b612f828161388a565b82525050565b612f918161389c565b82525050565b6000612fa282613732565b612fac8185613748565b9350612fbc81856020860161390d565b612fc581613ad9565b840191505092915050565b6000612fdb8261373d565b612fe58185613759565b9350612ff581856020860161390d565b612ffe81613ad9565b840191505092915050565b60006130148261373d565b61301e818561376a565b935061302e81856020860161390d565b80840191505092915050565b6000613047602b83613759565b915061305282613aea565b604082019050919050565b600061306a603283613759565b915061307582613b39565b604082019050919050565b600061308d602683613759565b915061309882613b88565b604082019050919050565b60006130b0602583613759565b91506130bb82613bd7565b604082019050919050565b60006130d3601c83613759565b91506130de82613c26565b602082019050919050565b60006130f6602483613759565b915061310182613c4f565b604082019050919050565b6000613119601983613759565b915061312482613c9e565b602082019050919050565b600061313c602283613759565b915061314782613cc7565b604082019050919050565b600061315f602c83613759565b915061316a82613d16565b604082019050919050565b6000613182603883613759565b915061318d82613d65565b604082019050919050565b60006131a5602a83613759565b91506131b082613db4565b604082019050919050565b60006131c8602983613759565b91506131d382613e03565b604082019050919050565b60006131eb602a83613759565b91506131f682613e52565b604082019050919050565b600061320e602083613759565b915061321982613ea1565b602082019050919050565b6000613231602c83613759565b915061323c82613eca565b604082019050919050565b6000613254602083613759565b915061325f82613f19565b602082019050919050565b6000613277602f83613759565b915061328282613f42565b604082019050919050565b600061329a602183613759565b91506132a582613f91565b604082019050919050565b60006132bd603183613759565b91506132c882613fe0565b604082019050919050565b60006132e0602c83613759565b91506132eb8261402f565b604082019050919050565b6000613303601e83613759565b915061330e8261407e565b602082019050919050565b613322816138f4565b82525050565b60006133348285613009565b91506133408284613009565b91508190509392505050565b60006020820190506133616000830184612f79565b92915050565b600060808201905061337c6000830187612f79565b6133896020830186612f79565b6133966040830185613319565b81810360608301526133a88184612f97565b905095945050505050565b60006020820190506133c86000830184612f88565b92915050565b600060208201905081810360008301526133e88184612fd0565b905092915050565b600060208201905081810360008301526134098161303a565b9050919050565b600060208201905081810360008301526134298161305d565b9050919050565b6000602082019050818103600083015261344981613080565b9050919050565b60006020820190508181036000830152613469816130a3565b9050919050565b60006020820190508181036000830152613489816130c6565b9050919050565b600060208201905081810360008301526134a9816130e9565b9050919050565b600060208201905081810360008301526134c98161310c565b9050919050565b600060208201905081810360008301526134e98161312f565b9050919050565b6000602082019050818103600083015261350981613152565b9050919050565b6000602082019050818103600083015261352981613175565b9050919050565b6000602082019050818103600083015261354981613198565b9050919050565b60006020820190508181036000830152613569816131bb565b9050919050565b60006020820190508181036000830152613589816131de565b9050919050565b600060208201905081810360008301526135a981613201565b9050919050565b600060208201905081810360008301526135c981613224565b9050919050565b600060208201905081810360008301526135e981613247565b9050919050565b600060208201905081810360008301526136098161326a565b9050919050565b600060208201905081810360008301526136298161328d565b9050919050565b60006020820190508181036000830152613649816132b0565b9050919050565b60006020820190508181036000830152613669816132d3565b9050919050565b60006020820190508181036000830152613689816132f6565b9050919050565b60006020820190506136a56000830184613319565b92915050565b60006136b56136c6565b90506136c18282613972565b919050565b6000604051905090565b600067ffffffffffffffff8211156136eb576136ea613aaa565b5b6136f482613ad9565b9050602081019050919050565b600067ffffffffffffffff82111561371c5761371b613aaa565b5b61372582613ad9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613780826138f4565b915061378b836138f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137c0576137bf613a1d565b5b828201905092915050565b60006137d6826138f4565b91506137e1836138f4565b9250826137f1576137f0613a4c565b5b828204905092915050565b6000613807826138f4565b9150613812836138f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561384b5761384a613a1d565b5b828202905092915050565b6000613861826138f4565b915061386c836138f4565b92508282101561387f5761387e613a1d565b5b828203905092915050565b6000613895826138d4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561392b578082015181840152602081019050613910565b8381111561393a576000848401525b50505050565b6000600282049050600182168061395857607f821691505b6020821081141561396c5761396b613a7b565b5b50919050565b61397b82613ad9565b810181811067ffffffffffffffff8211171561399a57613999613aaa565b5b80604052505050565b60006139ae826138f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139e1576139e0613a1d565b5b600182019050919050565b60006139f7826138f4565b9150613a02836138f4565b925082613a1257613a11613a4c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420656e6f7567680000600082015250565b6140b08161388a565b81146140bb57600080fd5b50565b6140c78161389c565b81146140d257600080fd5b50565b6140de816138a8565b81146140e957600080fd5b50565b6140f5816138f4565b811461410057600080fd5b5056fea2646970667358221220846f873fc22cb650d7c0abf1cc93c57bbd9094fd315475ae6628c4a0006e515764736f6c63430008010033
Deployed Bytecode Sourcemap
48384:3022:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49013:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22568:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24127:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23650:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42775:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48476:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24877:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42443:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49560:89;;;;;;;;;;;;;:::i;:::-;;51280:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51132:140;;;;;;;;;;;;;:::i;:::-;;25287:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42965:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49200:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22262:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48445:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21992:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36454:103;;;;;;;;;;;;;:::i;:::-;;35803:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22737:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24420:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25543:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49657:737;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22912:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24646:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48623:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36712:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48584:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48530:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49444:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49013:179;49124:4;49148:36;49172:11;49148:23;:36::i;:::-;49141:43;;49013:179;;;:::o;22568:100::-;22622:13;22655:5;22648:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22568:100;:::o;24127:221::-;24203:7;24231:16;24239:7;24231;:16::i;:::-;24223:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24316:15;:24;24332:7;24316:24;;;;;;;;;;;;;;;;;;;;;24309:31;;24127:221;;;:::o;23650:411::-;23731:13;23747:23;23762:7;23747:14;:23::i;:::-;23731:39;;23795:5;23789:11;;:2;:11;;;;23781:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23889:5;23873:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23898:37;23915:5;23922:12;:10;:12::i;:::-;23898:16;:37::i;:::-;23873:62;23851:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24032:21;24041:2;24045:7;24032:8;:21::i;:::-;23650:411;;;:::o;42775:113::-;42836:7;42863:10;:17;;;;42856:24;;42775:113;:::o;48476:47::-;48513:10;48476:47;:::o;24877:339::-;25072:41;25091:12;:10;:12::i;:::-;25105:7;25072:18;:41::i;:::-;25064:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25180:28;25190:4;25196:2;25200:7;25180:9;:28::i;:::-;24877:339;;;:::o;42443:256::-;42540:7;42576:23;42593:5;42576:16;:23::i;:::-;42568:5;:31;42560:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;42665:12;:19;42678:5;42665:19;;;;;;;;;;;;;;;:26;42685:5;42665:26;;;;;;;;;;;;42658:33;;42443:256;;;;:::o;49560:89::-;36034:12;:10;:12::i;:::-;36023:23;;:7;:5;:7::i;:::-;:23;;;36015:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49629:12:::1;;;;;;;;;;;49628:13;49613:12;;:28;;;;;;;;;;;;;;;;;;49560:89::o:0;51280:123::-;36034:12;:10;:12::i;:::-;36023:23;;:7;:5;:7::i;:::-;:23;;;36015:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51392:2:::1;51372:23;51385:5;51372:23;;;;;;:::i;:::-;;;;;;;;51280:123:::0;;:::o;51132:140::-;36034:12;:10;:12::i;:::-;36023:23;;:7;:5;:7::i;:::-;:23;;;36015:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51180:12:::1;51195:21;51180:36;;51235:10;51227:28;;:37;51256:7;51227:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;36094:1;51132:140::o:0;25287:185::-;25425:39;25442:4;25448:2;25452:7;25425:39;;;;;;;;;;;;:16;:39::i;:::-;25287:185;;;:::o;42965:233::-;43040:7;43076:30;:28;:30::i;:::-;43068:5;:38;43060:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;43173:10;43184:5;43173:17;;;;;;;;;;;;;;;;;;;;;;;;43166:24;;42965:233;;;:::o;49200:111::-;36034:12;:10;:12::i;:::-;36023:23;;:7;:5;:7::i;:::-;:23;;;36015:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49295:8:::1;49276:16;:27;;;;;;;;;;;;:::i;:::-;;49200:111:::0;:::o;22262:239::-;22334:7;22354:13;22370:7;:16;22378:7;22370:16;;;;;;;;;;;;;;;;;;;;;22354:32;;22422:1;22405:19;;:5;:19;;;;22397:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22488:5;22481:12;;;22262:239;;;:::o;48445:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21992:208::-;22064:7;22109:1;22092:19;;:5;:19;;;;22084:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22176:9;:16;22186:5;22176:16;;;;;;;;;;;;;;;;22169:23;;21992:208;;;:::o;36454:103::-;36034:12;:10;:12::i;:::-;36023:23;;:7;:5;:7::i;:::-;:23;;;36015:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36519:30:::1;36546:1;36519:18;:30::i;:::-;36454:103::o:0;35803:87::-;35849:7;35876:6;;;;;;;;;;;35869:13;;35803:87;:::o;22737:104::-;22793:13;22826:7;22819:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22737:104;:::o;24420:155::-;24515:52;24534:12;:10;:12::i;:::-;24548:8;24558;24515:18;:52::i;:::-;24420:155;;:::o;25543:328::-;25718:41;25737:12;:10;:12::i;:::-;25751:7;25718:18;:41::i;:::-;25710:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25824:39;25838:4;25844:2;25848:7;25857:5;25824:13;:39::i;:::-;25543:328;;;;:::o;49657:737::-;49731:12;;;;;;;;;;;49723:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;49795:14;49812:13;:11;:13::i;:::-;49795:30;;49871:10;;49853:14;49844:6;:23;;;;:::i;:::-;:37;;49836:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;49941:12;49956:31;49964:6;49972:14;49956:7;:31::i;:::-;49941:46;;50014:9;50006:4;:17;;49998:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;50080:9;50073:4;:16;50069:95;;;50114:10;50106:28;;:46;50147:4;50135:9;:16;;;;:::i;:::-;50106:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50069:95;50180:6;50176:211;50196:14;50192:1;:18;50176:211;;;50232:14;50249:13;:11;:13::i;:::-;50232:30;;50297:10;;50281:13;:11;:13::i;:::-;:26;50277:99;;;50328:32;50338:10;50350:9;50328;:32::i;:::-;50277:99;50176:211;50212:3;;;;;:::i;:::-;;;;50176:211;;;;49657:737;;;:::o;22912:334::-;22985:13;23019:16;23027:7;23019;:16::i;:::-;23011:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23100:21;23124:10;:8;:10::i;:::-;23100:34;;23176:1;23158:7;23152:21;:25;:86;;;;;;;;;;;;;;;;;23204:7;23213:18;:7;:16;:18::i;:::-;23187:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23152:86;23145:93;;;22912:334;;;:::o;24646:164::-;24743:4;24767:18;:25;24786:5;24767:25;;;;;;;;;;;;;;;:35;24793:8;24767:35;;;;;;;;;;;;;;;;;;;;;;;;;24760:42;;24646:164;;;;:::o;48623:32::-;;;;;;;;;;;;;:::o;36712:201::-;36034:12;:10;:12::i;:::-;36023:23;;:7;:5;:7::i;:::-;:23;;;36015:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36821:1:::1;36801:22;;:8;:22;;;;36793:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36877:28;36896:8;36877:18;:28::i;:::-;36712:201:::0;:::o;48584:32::-;;;;:::o;48530:47::-;48566:11;48530:47;:::o;49444:108::-;36034:12;:10;:12::i;:::-;36023:23;;:7;:5;:7::i;:::-;:23;;;36015:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49534:10:::1;49521;:23;;;;;;;;;;;;:::i;:::-;;49444:108:::0;:::o;42135:224::-;42237:4;42276:35;42261:50;;;:11;:50;;;;:90;;;;42315:36;42339:11;42315:23;:36::i;:::-;42261:90;42254:97;;42135:224;;;:::o;27381:127::-;27446:4;27498:1;27470:30;;:7;:16;27478:7;27470:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27463:37;;27381:127;;;:::o;16835:98::-;16888:7;16915:10;16908:17;;16835:98;:::o;31527:174::-;31629:2;31602:15;:24;31618:7;31602:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31685:7;31681:2;31647:46;;31656:23;31671:7;31656:14;:23::i;:::-;31647:46;;;;;;;;;;;;31527:174;;:::o;27675:348::-;27768:4;27793:16;27801:7;27793;:16::i;:::-;27785:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27869:13;27885:23;27900:7;27885:14;:23::i;:::-;27869:39;;27938:5;27927:16;;:7;:16;;;:51;;;;27971:7;27947:31;;:20;27959:7;27947:11;:20::i;:::-;:31;;;27927:51;:87;;;;27982:32;27999:5;28006:7;27982:16;:32::i;:::-;27927:87;27919:96;;;27675:348;;;;:::o;30784:625::-;30943:4;30916:31;;:23;30931:7;30916:14;:23::i;:::-;:31;;;30908:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31022:1;31008:16;;:2;:16;;;;31000:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31078:39;31099:4;31105:2;31109:7;31078:20;:39::i;:::-;31182:29;31199:1;31203:7;31182:8;:29::i;:::-;31243:1;31224:9;:15;31234:4;31224:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31272:1;31255:9;:13;31265:2;31255:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31303:2;31284:7;:16;31292:7;31284:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31342:7;31338:2;31323:27;;31332:4;31323:27;;;;;;;;;;;;31363:38;31383:4;31389:2;31393:7;31363:19;:38::i;:::-;30784:625;;;:::o;37073:191::-;37147:16;37166:6;;;;;;;;;;;37147:25;;37192:8;37183:6;;:17;;;;;;;;;;;;;;;;;;37247:8;37216:40;;37237:8;37216:40;;;;;;;;;;;;37073:191;;:::o;31843:315::-;31998:8;31989:17;;:5;:17;;;;31981:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32085:8;32047:18;:25;32066:5;32047:25;;;;;;;;;;;;;;;:35;32073:8;32047:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32131:8;32109:41;;32124:5;32109:41;;;32141:8;32109:41;;;;;;:::i;:::-;;;;;;;;31843:315;;;:::o;26753:::-;26910:28;26920:4;26926:2;26930:7;26910:9;:28::i;:::-;26957:48;26980:4;26986:2;26990:7;26999:5;26957:22;:48::i;:::-;26949:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26753:315;;;;:::o;50402:722::-;50486:7;50506:12;50521:1;50506:16;;50533:17;50570:10;50553:14;:27;;;;:::i;:::-;50533:47;;50607:4;50595:9;:16;:37;;;;;50628:4;50615:9;:17;;50595:37;50591:502;;;50666:4;50653:10;:17;50649:171;;;48513:10;50711:4;50699:9;:16;;;;:::i;:::-;50698:31;;;;:::i;:::-;50691:38;;50649:171;;;48513:10;50777:14;:27;;;;:::i;:::-;50770:34;;50649:171;50591:502;;;50853:4;50841:9;:16;50837:256;;;50891:4;50878:10;:17;50874:208;;;48566:11;50974:4;50962:9;:16;;;;:::i;:::-;50961:30;;;;:::i;:::-;48513:10;50932;50925:4;:17;;;;:::i;:::-;50924:32;;;;:::i;:::-;50923:69;;;;:::i;:::-;50916:76;;50874:208;;;48566:11;51040:14;:26;;;;:::i;:::-;51033:33;;50874:208;50837:256;50591:502;51112:4;51105:11;;;;50402:722;;;;:::o;28365:110::-;28441:26;28451:2;28455:7;28441:26;;;;;;;;;;;;:9;:26::i;:::-;28365:110;;:::o;49319:117::-;49379:13;49412:16;49405:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49319:117;:::o;17420:723::-;17476:13;17706:1;17697:5;:10;17693:53;;;17724:10;;;;;;;;;;;;;;;;;;;;;17693:53;17756:12;17771:5;17756:20;;17787:14;17812:78;17827:1;17819:4;:9;17812:78;;17845:8;;;;;:::i;:::-;;;;17876:2;17868:10;;;;;:::i;:::-;;;17812:78;;;17900:19;17932:6;17922:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17900:39;;17950:154;17966:1;17957:5;:10;17950:154;;17994:1;17984:11;;;;;:::i;:::-;;;18061:2;18053:5;:10;;;;:::i;:::-;18040:2;:24;;;;:::i;:::-;18027:39;;18010:6;18017;18010:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;18090:2;18081:11;;;;;:::i;:::-;;;17950:154;;;18128:6;18114:21;;;;;17420:723;;;;:::o;21623:305::-;21725:4;21777:25;21762:40;;;:11;:40;;;;:105;;;;21834:33;21819:48;;;:11;:48;;;;21762:105;:158;;;;21884:36;21908:11;21884:23;:36::i;:::-;21762:158;21742:178;;21623:305;;;:::o;48824:181::-;48952:45;48979:4;48985:2;48989:7;48952:26;:45::i;:::-;48824:181;;;:::o;34605:125::-;;;;:::o;32723:799::-;32878:4;32899:15;:2;:13;;;:15::i;:::-;32895:620;;;32951:2;32935:36;;;32972:12;:10;:12::i;:::-;32986:4;32992:7;33001:5;32935:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32931:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33194:1;33177:6;:13;:18;33173:272;;;33220:60;;;;;;;;;;:::i;:::-;;;;;;;;33173:272;33395:6;33389:13;33380:6;33376:2;33372:15;33365:38;32931:529;33068:41;;;33058:51;;;:6;:51;;;;33051:58;;;;;32895:620;33499:4;33492:11;;32723:799;;;;;;;:::o;28702:321::-;28832:18;28838:2;28842:7;28832:5;:18::i;:::-;28883:54;28914:1;28918:2;28922:7;28931:5;28883:22;:54::i;:::-;28861:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28702:321;;;:::o;20048:157::-;20133:4;20172:25;20157:40;;;:11;:40;;;;20150:47;;20048:157;;;:::o;43811:589::-;43955:45;43982:4;43988:2;43992:7;43955:26;:45::i;:::-;44033:1;44017:18;;:4;:18;;;44013:187;;;44052:40;44084:7;44052:31;:40::i;:::-;44013:187;;;44122:2;44114:10;;:4;:10;;;44110:90;;44141:47;44174:4;44180:7;44141:32;:47::i;:::-;44110:90;44013:187;44228:1;44214:16;;:2;:16;;;44210:183;;;44247:45;44284:7;44247:36;:45::i;:::-;44210:183;;;44320:4;44314:10;;:2;:10;;;44310:83;;44341:40;44369:2;44373:7;44341:27;:40::i;:::-;44310:83;44210:183;43811:589;;;:::o;8880:326::-;8940:4;9197:1;9175:7;:19;;;:23;9168:30;;8880:326;;;:::o;29359:439::-;29453:1;29439:16;;:2;:16;;;;29431:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29512:16;29520:7;29512;:16::i;:::-;29511:17;29503:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29574:45;29603:1;29607:2;29611:7;29574:20;:45::i;:::-;29649:1;29632:9;:13;29642:2;29632:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29680:2;29661:7;:16;29669:7;29661:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29725:7;29721:2;29700:33;;29717:1;29700:33;;;;;;;;;;;;29746:44;29774:1;29778:2;29782:7;29746:19;:44::i;:::-;29359:439;;:::o;34094:126::-;;;;:::o;45123:164::-;45227:10;:17;;;;45200:15;:24;45216:7;45200:24;;;;;;;;;;;:44;;;;45255:10;45271:7;45255:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45123:164;:::o;45914:988::-;46180:22;46230:1;46205:22;46222:4;46205:16;:22::i;:::-;:26;;;;:::i;:::-;46180:51;;46242:18;46263:17;:26;46281:7;46263:26;;;;;;;;;;;;46242:47;;46410:14;46396:10;:28;46392:328;;46441:19;46463:12;:18;46476:4;46463:18;;;;;;;;;;;;;;;:34;46482:14;46463:34;;;;;;;;;;;;46441:56;;46547:11;46514:12;:18;46527:4;46514:18;;;;;;;;;;;;;;;:30;46533:10;46514:30;;;;;;;;;;;:44;;;;46664:10;46631:17;:30;46649:11;46631:30;;;;;;;;;;;:43;;;;46392:328;;46816:17;:26;46834:7;46816:26;;;;;;;;;;;46809:33;;;46860:12;:18;46873:4;46860:18;;;;;;;;;;;;;;;:34;46879:14;46860:34;;;;;;;;;;;46853:41;;;45914:988;;;;:::o;47197:1079::-;47450:22;47495:1;47475:10;:17;;;;:21;;;;:::i;:::-;47450:46;;47507:18;47528:15;:24;47544:7;47528:24;;;;;;;;;;;;47507:45;;47879:19;47901:10;47912:14;47901:26;;;;;;;;;;;;;;;;;;;;;;;;47879:48;;47965:11;47940:10;47951;47940:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;48076:10;48045:15;:28;48061:11;48045:28;;;;;;;;;;;:41;;;;48217:15;:24;48233:7;48217:24;;;;;;;;;;;48210:31;;;48252:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47197:1079;;;;:::o;44701:221::-;44786:14;44803:20;44820:2;44803:16;:20::i;:::-;44786:37;;44861:7;44834:12;:16;44847:2;44834:16;;;;;;;;;;;;;;;:24;44851:6;44834:24;;;;;;;;;;;:34;;;;44908:6;44879:17;:26;44897:7;44879:26;;;;;;;;;;;:35;;;;44701:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;;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;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;;;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;;;;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;;;;;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;;;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;;;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:520::-;;;5953:2;5941:9;5932:7;5928:23;5924:32;5921:2;;;5969:1;5966;5959:12;5921:2;6040:1;6029:9;6025:17;6012:31;6070:18;6062:6;6059:30;6056:2;;;6102:1;6099;6092:12;6056:2;6130:63;6185:7;6176:6;6165:9;6161:22;6130:63;:::i;:::-;6120:73;;5983:220;6242:2;6268:53;6313:7;6304:6;6293:9;6289:22;6268:53;:::i;:::-;6258:63;;6213:118;5911:427;;;;;:::o;6344:262::-;;6452:2;6440:9;6431:7;6427:23;6423:32;6420:2;;;6468:1;6465;6458:12;6420:2;6511:1;6536:53;6581:7;6572:6;6561:9;6557:22;6536:53;:::i;:::-;6526:63;;6482:117;6410:196;;;;:::o;6612:118::-;6699:24;6717:5;6699:24;:::i;:::-;6694:3;6687:37;6677:53;;:::o;6736:109::-;6817:21;6832:5;6817:21;:::i;:::-;6812:3;6805:34;6795:50;;:::o;6851:360::-;;6965:38;6997:5;6965:38;:::i;:::-;7019:70;7082:6;7077:3;7019:70;:::i;:::-;7012:77;;7098:52;7143:6;7138:3;7131:4;7124:5;7120:16;7098:52;:::i;:::-;7175:29;7197:6;7175:29;:::i;:::-;7170:3;7166:39;7159:46;;6941:270;;;;;:::o;7217:364::-;;7333:39;7366:5;7333:39;:::i;:::-;7388:71;7452:6;7447:3;7388:71;:::i;:::-;7381:78;;7468:52;7513:6;7508:3;7501:4;7494:5;7490:16;7468:52;:::i;:::-;7545:29;7567:6;7545:29;:::i;:::-;7540:3;7536:39;7529:46;;7309:272;;;;;:::o;7587:377::-;;7721:39;7754:5;7721:39;:::i;:::-;7776:89;7858:6;7853:3;7776:89;:::i;:::-;7769:96;;7874:52;7919:6;7914:3;7907:4;7900:5;7896:16;7874:52;:::i;:::-;7951:6;7946:3;7942:16;7935:23;;7697:267;;;;;:::o;7970:366::-;;8133:67;8197:2;8192:3;8133:67;:::i;:::-;8126:74;;8209:93;8298:3;8209:93;:::i;:::-;8327:2;8322:3;8318:12;8311:19;;8116:220;;;:::o;8342:366::-;;8505:67;8569:2;8564:3;8505:67;:::i;:::-;8498:74;;8581:93;8670:3;8581:93;:::i;:::-;8699:2;8694:3;8690:12;8683:19;;8488:220;;;:::o;8714:366::-;;8877:67;8941:2;8936:3;8877:67;:::i;:::-;8870:74;;8953:93;9042:3;8953:93;:::i;:::-;9071:2;9066:3;9062:12;9055:19;;8860:220;;;:::o;9086:366::-;;9249:67;9313:2;9308:3;9249:67;:::i;:::-;9242:74;;9325:93;9414:3;9325:93;:::i;:::-;9443:2;9438:3;9434:12;9427:19;;9232:220;;;:::o;9458:366::-;;9621:67;9685:2;9680:3;9621:67;:::i;:::-;9614:74;;9697:93;9786:3;9697:93;:::i;:::-;9815:2;9810:3;9806:12;9799:19;;9604:220;;;:::o;9830:366::-;;9993:67;10057:2;10052:3;9993:67;:::i;:::-;9986:74;;10069:93;10158:3;10069:93;:::i;:::-;10187:2;10182:3;10178:12;10171:19;;9976:220;;;:::o;10202:366::-;;10365:67;10429:2;10424:3;10365:67;:::i;:::-;10358:74;;10441:93;10530:3;10441:93;:::i;:::-;10559:2;10554:3;10550:12;10543:19;;10348:220;;;:::o;10574:366::-;;10737:67;10801:2;10796:3;10737:67;:::i;:::-;10730:74;;10813:93;10902:3;10813:93;:::i;:::-;10931:2;10926:3;10922:12;10915:19;;10720:220;;;:::o;10946:366::-;;11109:67;11173:2;11168:3;11109:67;:::i;:::-;11102:74;;11185:93;11274:3;11185:93;:::i;:::-;11303:2;11298:3;11294:12;11287:19;;11092:220;;;:::o;11318:366::-;;11481:67;11545:2;11540:3;11481:67;:::i;:::-;11474:74;;11557:93;11646:3;11557:93;:::i;:::-;11675:2;11670:3;11666:12;11659:19;;11464:220;;;:::o;11690:366::-;;11853:67;11917:2;11912:3;11853:67;:::i;:::-;11846:74;;11929:93;12018:3;11929:93;:::i;:::-;12047:2;12042:3;12038:12;12031:19;;11836:220;;;:::o;12062:366::-;;12225:67;12289:2;12284:3;12225:67;:::i;:::-;12218:74;;12301:93;12390:3;12301:93;:::i;:::-;12419:2;12414:3;12410:12;12403:19;;12208:220;;;:::o;12434:366::-;;12597:67;12661:2;12656:3;12597:67;:::i;:::-;12590:74;;12673:93;12762:3;12673:93;:::i;:::-;12791:2;12786:3;12782:12;12775:19;;12580:220;;;:::o;12806:366::-;;12969:67;13033:2;13028:3;12969:67;:::i;:::-;12962:74;;13045:93;13134:3;13045:93;:::i;:::-;13163:2;13158:3;13154:12;13147:19;;12952:220;;;:::o;13178:366::-;;13341:67;13405:2;13400:3;13341:67;:::i;:::-;13334:74;;13417:93;13506:3;13417:93;:::i;:::-;13535:2;13530:3;13526:12;13519:19;;13324:220;;;:::o;13550:366::-;;13713:67;13777:2;13772:3;13713:67;:::i;:::-;13706:74;;13789:93;13878:3;13789:93;:::i;:::-;13907:2;13902:3;13898:12;13891:19;;13696:220;;;:::o;13922:366::-;;14085:67;14149:2;14144:3;14085:67;:::i;:::-;14078:74;;14161:93;14250:3;14161:93;:::i;:::-;14279:2;14274:3;14270:12;14263:19;;14068:220;;;:::o;14294:366::-;;14457:67;14521:2;14516:3;14457:67;:::i;:::-;14450:74;;14533:93;14622:3;14533:93;:::i;:::-;14651:2;14646:3;14642:12;14635:19;;14440:220;;;:::o;14666:366::-;;14829:67;14893:2;14888:3;14829:67;:::i;:::-;14822:74;;14905:93;14994:3;14905:93;:::i;:::-;15023:2;15018:3;15014:12;15007:19;;14812:220;;;:::o;15038:366::-;;15201:67;15265:2;15260:3;15201:67;:::i;:::-;15194:74;;15277:93;15366:3;15277:93;:::i;:::-;15395:2;15390:3;15386:12;15379:19;;15184:220;;;:::o;15410:366::-;;15573:67;15637:2;15632:3;15573:67;:::i;:::-;15566:74;;15649:93;15738:3;15649:93;:::i;:::-;15767:2;15762:3;15758:12;15751:19;;15556:220;;;:::o;15782:118::-;15869:24;15887:5;15869:24;:::i;:::-;15864:3;15857:37;15847:53;;:::o;15906:435::-;;16108:95;16199:3;16190:6;16108:95;:::i;:::-;16101:102;;16220:95;16311:3;16302:6;16220:95;:::i;:::-;16213:102;;16332:3;16325:10;;16090:251;;;;;:::o;16347:222::-;;16478:2;16467:9;16463:18;16455:26;;16491:71;16559:1;16548:9;16544:17;16535:6;16491:71;:::i;:::-;16445:124;;;;:::o;16575:640::-;;16808:3;16797:9;16793:19;16785:27;;16822:71;16890:1;16879:9;16875:17;16866:6;16822:71;:::i;:::-;16903:72;16971:2;16960:9;16956:18;16947:6;16903:72;:::i;:::-;16985;17053:2;17042:9;17038:18;17029:6;16985:72;:::i;:::-;17104:9;17098:4;17094:20;17089:2;17078:9;17074:18;17067:48;17132:76;17203:4;17194:6;17132:76;:::i;:::-;17124:84;;16775:440;;;;;;;:::o;17221:210::-;;17346:2;17335:9;17331:18;17323:26;;17359:65;17421:1;17410:9;17406:17;17397:6;17359:65;:::i;:::-;17313:118;;;;:::o;17437:313::-;;17588:2;17577:9;17573:18;17565:26;;17637:9;17631:4;17627:20;17623:1;17612:9;17608:17;17601:47;17665:78;17738:4;17729:6;17665:78;:::i;:::-;17657:86;;17555:195;;;;:::o;17756:419::-;;17960:2;17949:9;17945:18;17937:26;;18009:9;18003:4;17999:20;17995:1;17984:9;17980:17;17973:47;18037:131;18163:4;18037:131;:::i;:::-;18029:139;;17927:248;;;:::o;18181:419::-;;18385:2;18374:9;18370:18;18362:26;;18434:9;18428:4;18424:20;18420:1;18409:9;18405:17;18398:47;18462:131;18588:4;18462:131;:::i;:::-;18454:139;;18352:248;;;:::o;18606:419::-;;18810:2;18799:9;18795:18;18787:26;;18859:9;18853:4;18849:20;18845:1;18834:9;18830:17;18823:47;18887:131;19013:4;18887:131;:::i;:::-;18879:139;;18777:248;;;:::o;19031:419::-;;19235:2;19224:9;19220:18;19212:26;;19284:9;19278:4;19274:20;19270:1;19259:9;19255:17;19248:47;19312:131;19438:4;19312:131;:::i;:::-;19304:139;;19202:248;;;:::o;19456:419::-;;19660:2;19649:9;19645:18;19637:26;;19709:9;19703:4;19699:20;19695:1;19684:9;19680:17;19673:47;19737:131;19863:4;19737:131;:::i;:::-;19729:139;;19627:248;;;:::o;19881:419::-;;20085:2;20074:9;20070:18;20062:26;;20134:9;20128:4;20124:20;20120:1;20109:9;20105:17;20098:47;20162:131;20288:4;20162:131;:::i;:::-;20154:139;;20052:248;;;:::o;20306:419::-;;20510:2;20499:9;20495:18;20487:26;;20559:9;20553:4;20549:20;20545:1;20534:9;20530:17;20523:47;20587:131;20713:4;20587:131;:::i;:::-;20579:139;;20477:248;;;:::o;20731:419::-;;20935:2;20924:9;20920:18;20912:26;;20984:9;20978:4;20974:20;20970:1;20959:9;20955:17;20948:47;21012:131;21138:4;21012:131;:::i;:::-;21004:139;;20902:248;;;:::o;21156:419::-;;21360:2;21349:9;21345:18;21337:26;;21409:9;21403:4;21399:20;21395:1;21384:9;21380:17;21373:47;21437:131;21563:4;21437:131;:::i;:::-;21429:139;;21327:248;;;:::o;21581:419::-;;21785:2;21774:9;21770:18;21762:26;;21834:9;21828:4;21824:20;21820:1;21809:9;21805:17;21798:47;21862:131;21988:4;21862:131;:::i;:::-;21854:139;;21752:248;;;:::o;22006:419::-;;22210:2;22199:9;22195:18;22187:26;;22259:9;22253:4;22249:20;22245:1;22234:9;22230:17;22223:47;22287:131;22413:4;22287:131;:::i;:::-;22279:139;;22177:248;;;:::o;22431:419::-;;22635:2;22624:9;22620:18;22612:26;;22684:9;22678:4;22674:20;22670:1;22659:9;22655:17;22648:47;22712:131;22838:4;22712:131;:::i;:::-;22704:139;;22602:248;;;:::o;22856:419::-;;23060:2;23049:9;23045:18;23037:26;;23109:9;23103:4;23099:20;23095:1;23084:9;23080:17;23073:47;23137:131;23263:4;23137:131;:::i;:::-;23129:139;;23027:248;;;:::o;23281:419::-;;23485:2;23474:9;23470:18;23462:26;;23534:9;23528:4;23524:20;23520:1;23509:9;23505:17;23498:47;23562:131;23688:4;23562:131;:::i;:::-;23554:139;;23452:248;;;:::o;23706:419::-;;23910:2;23899:9;23895:18;23887:26;;23959:9;23953:4;23949:20;23945:1;23934:9;23930:17;23923:47;23987:131;24113:4;23987:131;:::i;:::-;23979:139;;23877:248;;;:::o;24131:419::-;;24335:2;24324:9;24320:18;24312:26;;24384:9;24378:4;24374:20;24370:1;24359:9;24355:17;24348:47;24412:131;24538:4;24412:131;:::i;:::-;24404:139;;24302:248;;;:::o;24556:419::-;;24760:2;24749:9;24745:18;24737:26;;24809:9;24803:4;24799:20;24795:1;24784:9;24780:17;24773:47;24837:131;24963:4;24837:131;:::i;:::-;24829:139;;24727:248;;;:::o;24981:419::-;;25185:2;25174:9;25170:18;25162:26;;25234:9;25228:4;25224:20;25220:1;25209:9;25205:17;25198:47;25262:131;25388:4;25262:131;:::i;:::-;25254:139;;25152:248;;;:::o;25406:419::-;;25610:2;25599:9;25595:18;25587:26;;25659:9;25653:4;25649:20;25645:1;25634:9;25630:17;25623:47;25687:131;25813:4;25687:131;:::i;:::-;25679:139;;25577:248;;;:::o;25831:419::-;;26035:2;26024:9;26020:18;26012:26;;26084:9;26078:4;26074:20;26070:1;26059:9;26055:17;26048:47;26112:131;26238:4;26112:131;:::i;:::-;26104:139;;26002:248;;;:::o;26256:419::-;;26460:2;26449:9;26445:18;26437:26;;26509:9;26503:4;26499:20;26495:1;26484:9;26480:17;26473:47;26537:131;26663:4;26537:131;:::i;:::-;26529:139;;26427:248;;;:::o;26681:222::-;;26812:2;26801:9;26797:18;26789:26;;26825:71;26893:1;26882:9;26878:17;26869:6;26825:71;:::i;:::-;26779:124;;;;:::o;26909:129::-;;26970:20;;:::i;:::-;26960:30;;26999:33;27027:4;27019:6;26999:33;:::i;:::-;26950:88;;;:::o;27044:75::-;;27110:2;27104:9;27094:19;;27084:35;:::o;27125:307::-;;27276:18;27268:6;27265:30;27262:2;;;27298:18;;:::i;:::-;27262:2;27336:29;27358:6;27336:29;:::i;:::-;27328:37;;27420:4;27414;27410:15;27402:23;;27191:241;;;:::o;27438:308::-;;27590:18;27582:6;27579:30;27576:2;;;27612:18;;:::i;:::-;27576:2;27650:29;27672:6;27650:29;:::i;:::-;27642:37;;27734:4;27728;27724:15;27716:23;;27505:241;;;:::o;27752:98::-;;27837:5;27831:12;27821:22;;27810:40;;;:::o;27856:99::-;;27942:5;27936:12;27926:22;;27915:40;;;:::o;27961:168::-;;28078:6;28073:3;28066:19;28118:4;28113:3;28109:14;28094:29;;28056:73;;;;:::o;28135:169::-;;28253:6;28248:3;28241:19;28293:4;28288:3;28284:14;28269:29;;28231:73;;;;:::o;28310:148::-;;28449:3;28434:18;;28424:34;;;;:::o;28464:305::-;;28523:20;28541:1;28523:20;:::i;:::-;28518:25;;28557:20;28575:1;28557:20;:::i;:::-;28552:25;;28711:1;28643:66;28639:74;28636:1;28633:81;28630:2;;;28717:18;;:::i;:::-;28630:2;28761:1;28758;28754:9;28747:16;;28508:261;;;;:::o;28775:185::-;;28832:20;28850:1;28832:20;:::i;:::-;28827:25;;28866:20;28884:1;28866:20;:::i;:::-;28861:25;;28905:1;28895:2;;28910:18;;:::i;:::-;28895:2;28952:1;28949;28945:9;28940:14;;28817:143;;;;:::o;28966:348::-;;29029:20;29047:1;29029:20;:::i;:::-;29024:25;;29063:20;29081:1;29063:20;:::i;:::-;29058:25;;29251:1;29183:66;29179:74;29176:1;29173:81;29168:1;29161:9;29154:17;29150:105;29147:2;;;29258:18;;:::i;:::-;29147:2;29306:1;29303;29299:9;29288:20;;29014:300;;;;:::o;29320:191::-;;29380:20;29398:1;29380:20;:::i;:::-;29375:25;;29414:20;29432:1;29414:20;:::i;:::-;29409:25;;29453:1;29450;29447:8;29444:2;;;29458:18;;:::i;:::-;29444:2;29503:1;29500;29496:9;29488:17;;29365:146;;;;:::o;29517:96::-;;29583:24;29601:5;29583:24;:::i;:::-;29572:35;;29562:51;;;:::o;29619:90::-;;29696:5;29689:13;29682:21;29671:32;;29661:48;;;:::o;29715:149::-;;29791:66;29784:5;29780:78;29769:89;;29759:105;;;:::o;29870:126::-;;29947:42;29940:5;29936:54;29925:65;;29915:81;;;:::o;30002:77::-;;30068:5;30057:16;;30047:32;;;:::o;30085:154::-;30169:6;30164:3;30159;30146:30;30231:1;30222:6;30217:3;30213:16;30206:27;30136:103;;;:::o;30245:307::-;30313:1;30323:113;30337:6;30334:1;30331:13;30323:113;;;30422:1;30417:3;30413:11;30407:18;30403:1;30398:3;30394:11;30387:39;30359:2;30356:1;30352:10;30347:15;;30323:113;;;30454:6;30451:1;30448:13;30445:2;;;30534:1;30525:6;30520:3;30516:16;30509:27;30445:2;30294:258;;;;:::o;30558:320::-;;30639:1;30633:4;30629:12;30619:22;;30686:1;30680:4;30676:12;30707:18;30697:2;;30763:4;30755:6;30751:17;30741:27;;30697:2;30825;30817:6;30814:14;30794:18;30791:38;30788:2;;;30844:18;;:::i;:::-;30788:2;30609:269;;;;:::o;30884:281::-;30967:27;30989:4;30967:27;:::i;:::-;30959:6;30955:40;31097:6;31085:10;31082:22;31061:18;31049:10;31046:34;31043:62;31040:2;;;31108:18;;:::i;:::-;31040:2;31148:10;31144:2;31137:22;30927:238;;;:::o;31171:233::-;;31233:24;31251:5;31233:24;:::i;:::-;31224:33;;31279:66;31272:5;31269:77;31266:2;;;31349:18;;:::i;:::-;31266:2;31396:1;31389:5;31385:13;31378:20;;31214:190;;;:::o;31410:176::-;;31459:20;31477:1;31459:20;:::i;:::-;31454:25;;31493:20;31511:1;31493:20;:::i;:::-;31488:25;;31532:1;31522:2;;31537:18;;:::i;:::-;31522:2;31578:1;31575;31571:9;31566:14;;31444:142;;;;:::o;31592:180::-;31640:77;31637:1;31630:88;31737:4;31734:1;31727:15;31761:4;31758:1;31751:15;31778:180;31826:77;31823:1;31816:88;31923:4;31920:1;31913:15;31947:4;31944:1;31937:15;31964:180;32012:77;32009:1;32002:88;32109:4;32106:1;32099:15;32133:4;32130:1;32123:15;32150:180;32198:77;32195:1;32188:88;32295:4;32292:1;32285:15;32319:4;32316:1;32309:15;32336:102;;32428:2;32424:7;32419:2;32412:5;32408:14;32404:28;32394:38;;32384:54;;;:::o;32444:230::-;32584:34;32580:1;32572:6;32568:14;32561:58;32653:13;32648:2;32640:6;32636:15;32629:38;32550:124;:::o;32680:237::-;32820:34;32816:1;32808:6;32804:14;32797:58;32889:20;32884:2;32876:6;32872:15;32865:45;32786:131;:::o;32923:225::-;33063:34;33059:1;33051:6;33047:14;33040:58;33132:8;33127:2;33119:6;33115:15;33108:33;33029:119;:::o;33154:224::-;33294:34;33290:1;33282:6;33278:14;33271:58;33363:7;33358:2;33350:6;33346:15;33339:32;33260:118;:::o;33384:178::-;33524:30;33520:1;33512:6;33508:14;33501:54;33490:72;:::o;33568:223::-;33708:34;33704:1;33696:6;33692:14;33685:58;33777:6;33772:2;33764:6;33760:15;33753:31;33674:117;:::o;33797:175::-;33937:27;33933:1;33925:6;33921:14;33914:51;33903:69;:::o;33978:221::-;34118:34;34114:1;34106:6;34102:14;34095:58;34187:4;34182:2;34174:6;34170:15;34163:29;34084:115;:::o;34205:231::-;34345:34;34341:1;34333:6;34329:14;34322:58;34414:14;34409:2;34401:6;34397:15;34390:39;34311:125;:::o;34442:243::-;34582:34;34578:1;34570:6;34566:14;34559:58;34651:26;34646:2;34638:6;34634:15;34627:51;34548:137;:::o;34691:229::-;34831:34;34827:1;34819:6;34815:14;34808:58;34900:12;34895:2;34887:6;34883:15;34876:37;34797:123;:::o;34926:228::-;35066:34;35062:1;35054:6;35050:14;35043:58;35135:11;35130:2;35122:6;35118:15;35111:36;35032:122;:::o;35160:229::-;35300:34;35296:1;35288:6;35284:14;35277:58;35369:12;35364:2;35356:6;35352:15;35345:37;35266:123;:::o;35395:182::-;35535:34;35531:1;35523:6;35519:14;35512:58;35501:76;:::o;35583:231::-;35723:34;35719:1;35711:6;35707:14;35700:58;35792:14;35787:2;35779:6;35775:15;35768:39;35689:125;:::o;35820:182::-;35960:34;35956:1;35948:6;35944:14;35937:58;35926:76;:::o;36008:234::-;36148:34;36144:1;36136:6;36132:14;36125:58;36217:17;36212:2;36204:6;36200:15;36193:42;36114:128;:::o;36248:220::-;36388:34;36384:1;36376:6;36372:14;36365:58;36457:3;36452:2;36444:6;36440:15;36433:28;36354:114;:::o;36474:236::-;36614:34;36610:1;36602:6;36598:14;36591:58;36683:19;36678:2;36670:6;36666:15;36659:44;36580:130;:::o;36716:231::-;36856:34;36852:1;36844:6;36840:14;36833:58;36925:14;36920:2;36912:6;36908:15;36901:39;36822:125;:::o;36953:180::-;37093:32;37089:1;37081:6;37077:14;37070:56;37059:74;:::o;37139:122::-;37212:24;37230:5;37212:24;:::i;:::-;37205:5;37202:35;37192:2;;37251:1;37248;37241:12;37192:2;37182:79;:::o;37267:116::-;37337:21;37352:5;37337:21;:::i;:::-;37330:5;37327:32;37317:2;;37373:1;37370;37363:12;37317:2;37307:76;:::o;37389:120::-;37461:23;37478:5;37461:23;:::i;:::-;37454:5;37451:34;37441:2;;37499:1;37496;37489:12;37441:2;37431:78;:::o;37515:122::-;37588:24;37606:5;37588:24;:::i;:::-;37581:5;37578:35;37568:2;;37627:1;37624;37617:12;37568:2;37558:79;:::o
Swarm Source
ipfs://846f873fc22cb650d7c0abf1cc93c57bbd9094fd315475ae6628c4a0006e5157
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.