ERC-721
Overview
Max Total Supply
70 GVC
Holders
36
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 GVCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GeckoVerse
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-19 */ /** *Submitted for verification at Etherscan.io on 2021-09-22 */ /** *Submitted for verification at Etherscan.io on 2021-09-21 */ // SPDX-License-Identifier: MIT 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; } } 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); } } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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); } 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); } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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; } } 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; } 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); } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.0; contract GeckoVerse is Ownable, ERC721 { uint constant tokenPrice = 0.07 ether; uint public maxSupply = 7777; uint public totalSupply = 0; bool public Presale_status = true; bool public public_sale_status = true; mapping(address => bool) private presaleList; string public baseURI = "https://www.geckoverse.com/api/rev/"; uint public maxPerTransaction_public = 6; constructor() ERC721("The GeckoVerse Collection", "GVC"){} function mint(uint _count) public payable{ require(_count > 0, "mint at least one token"); require(_count <= maxPerTransaction_public, "max per transaction 6"); require(totalSupply + _count <= maxSupply, "Not enough tokens left"); require(msg.value >= tokenPrice * _count, "incorrect ether amount"); require(public_sale_status == true, "Sale is Paused."); for(uint i = 0; i < _count; i++) _safeMint(msg.sender, totalSupply + 1 + i); totalSupply += _count; } function airdrop(address[] memory _wallets) public onlyOwner{ require(totalSupply + _wallets.length <= maxSupply, "not enough tokens left"); for(uint i = 0; i < _wallets.length; i++) _safeMint(_wallets[i], totalSupply + 1 + i); totalSupply += _wallets.length; } function is_presale_active() public view returns(uint){ require(Presale_status == true,"Sale not Started Yet."); return 1; } function setBaseUri(string memory _uri) external onlyOwner { baseURI = _uri; } function update_max_supply(uint total)public onlyOwner{ maxSupply=total; } function pre_Sale_status(bool temp) external onlyOwner { Presale_status = temp; } function publicSale_status(bool temp) external onlyOwner { public_sale_status = temp; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Presale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_presale_active","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction_public","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"pre_Sale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"publicSale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"public_sale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"name":"update_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052611e6160075560006008556001600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff02191690831515021790555060405180606001604052806023815260200162003fdc60239139600b9080519060200190620000769291906200021c565b506006600c553480156200008957600080fd5b506040518060400160405280601981526020017f546865204765636b6f566572736520436f6c6c656374696f6e000000000000008152506040518060400160405280600381526020017f4756430000000000000000000000000000000000000000000000000000000000815250620001166200010a6200015060201b60201c565b6200015860201b60201c565b81600190805190602001906200012e9291906200021c565b508060029080519060200190620001479291906200021c565b50505062000331565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022a90620002cc565b90600052602060002090601f0160209004810192826200024e57600085556200029a565b82601f106200026957805160ff19168380011785556200029a565b828001600101855582156200029a579182015b82811115620002995782518255916020019190600101906200027c565b5b509050620002a99190620002ad565b5090565b5b80821115620002c8576000816000905550600101620002ae565b5090565b60006002820490506001821680620002e557607f821691505b60208210811415620002fc57620002fb62000302565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c9b80620003416000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610641578063e985e9c51461066c578063ef5f1985146106a9578063f2fde38b146106d2576101cd565b8063b88d4fde14610585578063b9bac22e146105ae578063ba6dd6f0146105d9578063c87b56dd14610604576101cd565b8063996953fc116100d1578063996953fc146104ec578063a0712d6814610517578063a0bcfc7f14610533578063a22cb4651461055c576101cd565b80638da5cb5b1461046b57806395d89b411461049657806395ea5e67146104c1576101cd565b806323b872dd1161016f5780636c0360eb1161013e5780636c0360eb146103c357806370a08231146103ee578063715018a61461042b578063729ad39e14610442576101cd565b806323b872dd1461031d5780633ccfd60b1461034657806342842e0e1461035d5780636352211e14610386576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c95780631cef37e4146102f4576101cd565b806301ffc9a7146101d2578063031e5dea1461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612957565b6106fb565b6040516102069190612ea7565b60405180910390f35b34801561021b57600080fd5b50610236600480360381019061023191906129fa565b6107dd565b005b34801561024457600080fd5b5061024d610863565b60405161025a9190612ec2565b60405180910390f35b34801561026f57600080fd5b5061028a600480360381019061028591906129fa565b6108f5565b6040516102979190612e40565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c291906128a1565b61097a565b005b3480156102d557600080fd5b506102de610a92565b6040516102eb91906131c4565b60405180910390f35b34801561030057600080fd5b5061031b6004803603810190610316919061292a565b610a98565b005b34801561032957600080fd5b50610344600480360381019061033f919061278b565b610b31565b005b34801561035257600080fd5b5061035b610b91565b005b34801561036957600080fd5b50610384600480360381019061037f919061278b565b610c5d565b005b34801561039257600080fd5b506103ad60048036038101906103a891906129fa565b610c7d565b6040516103ba9190612e40565b60405180910390f35b3480156103cf57600080fd5b506103d8610d2f565b6040516103e59190612ec2565b60405180910390f35b3480156103fa57600080fd5b506104156004803603810190610410919061271e565b610dbd565b60405161042291906131c4565b60405180910390f35b34801561043757600080fd5b50610440610e75565b005b34801561044e57600080fd5b50610469600480360381019061046491906128e1565b610efd565b005b34801561047757600080fd5b50610480611046565b60405161048d9190612e40565b60405180910390f35b3480156104a257600080fd5b506104ab61106f565b6040516104b89190612ec2565b60405180910390f35b3480156104cd57600080fd5b506104d6611101565b6040516104e39190612ea7565b60405180910390f35b3480156104f857600080fd5b50610501611114565b60405161050e91906131c4565b60405180910390f35b610531600480360381019061052c91906129fa565b611173565b005b34801561053f57600080fd5b5061055a600480360381019061055591906129b1565b611356565b005b34801561056857600080fd5b50610583600480360381019061057e9190612861565b6113ec565b005b34801561059157600080fd5b506105ac60048036038101906105a791906127de565b61156d565b005b3480156105ba57600080fd5b506105c36115cf565b6040516105d091906131c4565b60405180910390f35b3480156105e557600080fd5b506105ee6115d5565b6040516105fb9190612ea7565b60405180910390f35b34801561061057600080fd5b5061062b600480360381019061062691906129fa565b6115e8565b6040516106389190612ec2565b60405180910390f35b34801561064d57600080fd5b5061065661168f565b60405161066391906131c4565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e919061274b565b611695565b6040516106a09190612ea7565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb919061292a565b611729565b005b3480156106de57600080fd5b506106f960048036038101906106f4919061271e565b6117c2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d657506107d5826118ba565b5b9050919050565b6107e5611924565b73ffffffffffffffffffffffffffffffffffffffff16610803611046565b73ffffffffffffffffffffffffffffffffffffffff1614610859576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610850906130a4565b60405180910390fd5b8060078190555050565b606060018054610872906134a0565b80601f016020809104026020016040519081016040528092919081815260200182805461089e906134a0565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b60006109008261192c565b61093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093690613084565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098582610c7d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90613124565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a15611924565b73ffffffffffffffffffffffffffffffffffffffff161480610a445750610a4381610a3e611924565b611695565b5b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90612fc4565b60405180910390fd5b610a8d8383611998565b505050565b60085481565b610aa0611924565b73ffffffffffffffffffffffffffffffffffffffff16610abe611046565b73ffffffffffffffffffffffffffffffffffffffff1614610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b906130a4565b60405180910390fd5b80600960016101000a81548160ff02191690831515021790555050565b610b42610b3c611924565b82611a51565b610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890613144565b60405180910390fd5b610b8c838383611b2f565b505050565b610b99611924565b73ffffffffffffffffffffffffffffffffffffffff16610bb7611046565b73ffffffffffffffffffffffffffffffffffffffff1614610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c04906130a4565b60405180910390fd5b610c15611046565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c5a573d6000803e3d6000fd5b50565b610c788383836040518060200160405280600081525061156d565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90613004565b60405180910390fd5b80915050919050565b600b8054610d3c906134a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d68906134a0565b8015610db55780601f10610d8a57610100808354040283529160200191610db5565b820191906000526020600020905b815481529060010190602001808311610d9857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2590612fe4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e7d611924565b73ffffffffffffffffffffffffffffffffffffffff16610e9b611046565b73ffffffffffffffffffffffffffffffffffffffff1614610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee8906130a4565b60405180910390fd5b610efb6000611d8b565b565b610f05611924565b73ffffffffffffffffffffffffffffffffffffffff16610f23611046565b73ffffffffffffffffffffffffffffffffffffffff1614610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f70906130a4565b60405180910390fd5b6007548151600854610f8b91906132d5565b1115610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390613184565b60405180910390fd5b60005b815181101561102857611015828281518110610fee57610fed61360a565b5b602002602001015182600160085461100691906132d5565b61101091906132d5565b611e4f565b808061102090613503565b915050610fcf565b5080516008600082825461103c91906132d5565b9250508190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461107e906134a0565b80601f01602080910402602001604051908101604052809291908181526020018280546110aa906134a0565b80156110f75780601f106110cc576101008083540402835291602001916110f7565b820191906000526020600020905b8154815290600101906020018083116110da57829003601f168201915b5050505050905090565b600960019054906101000a900460ff1681565b600060011515600960009054906101000a900460ff1615151461116c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611163906130c4565b60405180910390fd5b6001905090565b600081116111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613164565b60405180910390fd5b600c548111156111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f290613064565b60405180910390fd5b6007548160085461120c91906132d5565b111561124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124490613024565b60405180910390fd5b8066f8b0a10e470000611260919061335c565b3410156112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990612fa4565b60405180910390fd5b60011515600960019054906101000a900460ff161515146112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef906131a4565b60405180910390fd5b60005b81811015611339576113263382600160085461131791906132d5565b61132191906132d5565b611e4f565b808061133190613503565b9150506112fb565b50806008600082825461134c91906132d5565b9250508190555050565b61135e611924565b73ffffffffffffffffffffffffffffffffffffffff1661137c611046565b73ffffffffffffffffffffffffffffffffffffffff16146113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c9906130a4565b60405180910390fd5b80600b90805190602001906113e8929190612494565b5050565b6113f4611924565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990612f64565b60405180910390fd5b806006600061146f611924565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661151c611924565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115619190612ea7565b60405180910390a35050565b61157e611578611924565b83611a51565b6115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490613144565b60405180910390fd5b6115c984848484611e6d565b50505050565b600c5481565b600960009054906101000a900460ff1681565b60606115f38261192c565b611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990613104565b60405180910390fd5b600061163c611ec9565b9050600081511161165c5760405180602001604052806000815250611687565b8061166684611f5b565b604051602001611677929190612e1c565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611731611924565b73ffffffffffffffffffffffffffffffffffffffff1661174f611046565b73ffffffffffffffffffffffffffffffffffffffff16146117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c906130a4565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b6117ca611924565b73ffffffffffffffffffffffffffffffffffffffff166117e8611046565b73ffffffffffffffffffffffffffffffffffffffff161461183e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611835906130a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a590612f04565b60405180910390fd5b6118b781611d8b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a0b83610c7d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a5c8261192c565b611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290612f84565b60405180910390fd5b6000611aa683610c7d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b1557508373ffffffffffffffffffffffffffffffffffffffff16611afd846108f5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b265750611b258185611695565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b4f82610c7d565b73ffffffffffffffffffffffffffffffffffffffff1614611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c906130e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c90612f44565b60405180910390fd5b611c208383836120bc565b611c2b600082611998565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7b91906133b6565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd291906132d5565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e698282604051806020016040528060008152506120c1565b5050565b611e78848484611b2f565b611e848484848461211c565b611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba90612ee4565b60405180910390fd5b50505050565b6060600b8054611ed8906134a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611f04906134a0565b8015611f515780601f10611f2657610100808354040283529160200191611f51565b820191906000526020600020905b815481529060010190602001808311611f3457829003601f168201915b5050505050905090565b60606000821415611fa3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120b7565b600082905060005b60008214611fd5578080611fbe90613503565b915050600a82611fce919061332b565b9150611fab565b60008167ffffffffffffffff811115611ff157611ff0613639565b5b6040519080825280601f01601f1916602001820160405280156120235781602001600182028036833780820191505090505b5090505b600085146120b05760018261203c91906133b6565b9150600a8561204b919061354c565b603061205791906132d5565b60f81b81838151811061206d5761206c61360a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120a9919061332b565b9450612027565b8093505050505b919050565b505050565b6120cb83836122b3565b6120d8600084848461211c565b612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e90612ee4565b60405180910390fd5b505050565b600061213d8473ffffffffffffffffffffffffffffffffffffffff16612481565b156122a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612166611924565b8786866040518563ffffffff1660e01b81526004016121889493929190612e5b565b602060405180830381600087803b1580156121a257600080fd5b505af19250505080156121d357506040513d601f19601f820116820180604052508101906121d09190612984565b60015b612256573d8060008114612203576040519150601f19603f3d011682016040523d82523d6000602084013e612208565b606091505b5060008151141561224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590612ee4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122ab565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90613044565b60405180910390fd5b61232c8161192c565b1561236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390612f24565b60405180910390fd5b612378600083836120bc565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c891906132d5565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546124a0906134a0565b90600052602060002090601f0160209004810192826124c25760008555612509565b82601f106124db57805160ff1916838001178555612509565b82800160010185558215612509579182015b828111156125085782518255916020019190600101906124ed565b5b509050612516919061251a565b5090565b5b8082111561253357600081600090555060010161251b565b5090565b600061254a61254584613204565b6131df565b9050808382526020820190508285602086028201111561256d5761256c61366d565b5b60005b8581101561259d5781612583888261262b565b845260208401935060208301925050600181019050612570565b5050509392505050565b60006125ba6125b584613230565b6131df565b9050828152602081018484840111156125d6576125d5613672565b5b6125e184828561345e565b509392505050565b60006125fc6125f784613261565b6131df565b90508281526020810184848401111561261857612617613672565b5b61262384828561345e565b509392505050565b60008135905061263a81613c09565b92915050565b600082601f83011261265557612654613668565b5b8135612665848260208601612537565b91505092915050565b60008135905061267d81613c20565b92915050565b60008135905061269281613c37565b92915050565b6000815190506126a781613c37565b92915050565b600082601f8301126126c2576126c1613668565b5b81356126d28482602086016125a7565b91505092915050565b600082601f8301126126f0576126ef613668565b5b81356127008482602086016125e9565b91505092915050565b60008135905061271881613c4e565b92915050565b6000602082840312156127345761273361367c565b5b60006127428482850161262b565b91505092915050565b600080604083850312156127625761276161367c565b5b60006127708582860161262b565b92505060206127818582860161262b565b9150509250929050565b6000806000606084860312156127a4576127a361367c565b5b60006127b28682870161262b565b93505060206127c38682870161262b565b92505060406127d486828701612709565b9150509250925092565b600080600080608085870312156127f8576127f761367c565b5b60006128068782880161262b565b94505060206128178782880161262b565b935050604061282887828801612709565b925050606085013567ffffffffffffffff81111561284957612848613677565b5b612855878288016126ad565b91505092959194509250565b600080604083850312156128785761287761367c565b5b60006128868582860161262b565b92505060206128978582860161266e565b9150509250929050565b600080604083850312156128b8576128b761367c565b5b60006128c68582860161262b565b92505060206128d785828601612709565b9150509250929050565b6000602082840312156128f7576128f661367c565b5b600082013567ffffffffffffffff81111561291557612914613677565b5b61292184828501612640565b91505092915050565b6000602082840312156129405761293f61367c565b5b600061294e8482850161266e565b91505092915050565b60006020828403121561296d5761296c61367c565b5b600061297b84828501612683565b91505092915050565b60006020828403121561299a5761299961367c565b5b60006129a884828501612698565b91505092915050565b6000602082840312156129c7576129c661367c565b5b600082013567ffffffffffffffff8111156129e5576129e4613677565b5b6129f1848285016126db565b91505092915050565b600060208284031215612a1057612a0f61367c565b5b6000612a1e84828501612709565b91505092915050565b612a30816133ea565b82525050565b612a3f816133fc565b82525050565b6000612a5082613292565b612a5a81856132a8565b9350612a6a81856020860161346d565b612a7381613681565b840191505092915050565b6000612a898261329d565b612a9381856132b9565b9350612aa381856020860161346d565b612aac81613681565b840191505092915050565b6000612ac28261329d565b612acc81856132ca565b9350612adc81856020860161346d565b80840191505092915050565b6000612af56032836132b9565b9150612b0082613692565b604082019050919050565b6000612b186026836132b9565b9150612b23826136e1565b604082019050919050565b6000612b3b601c836132b9565b9150612b4682613730565b602082019050919050565b6000612b5e6024836132b9565b9150612b6982613759565b604082019050919050565b6000612b816019836132b9565b9150612b8c826137a8565b602082019050919050565b6000612ba4602c836132b9565b9150612baf826137d1565b604082019050919050565b6000612bc76016836132b9565b9150612bd282613820565b602082019050919050565b6000612bea6038836132b9565b9150612bf582613849565b604082019050919050565b6000612c0d602a836132b9565b9150612c1882613898565b604082019050919050565b6000612c306029836132b9565b9150612c3b826138e7565b604082019050919050565b6000612c536016836132b9565b9150612c5e82613936565b602082019050919050565b6000612c766020836132b9565b9150612c818261395f565b602082019050919050565b6000612c996015836132b9565b9150612ca482613988565b602082019050919050565b6000612cbc602c836132b9565b9150612cc7826139b1565b604082019050919050565b6000612cdf6020836132b9565b9150612cea82613a00565b602082019050919050565b6000612d026015836132b9565b9150612d0d82613a29565b602082019050919050565b6000612d256029836132b9565b9150612d3082613a52565b604082019050919050565b6000612d48602f836132b9565b9150612d5382613aa1565b604082019050919050565b6000612d6b6021836132b9565b9150612d7682613af0565b604082019050919050565b6000612d8e6031836132b9565b9150612d9982613b3f565b604082019050919050565b6000612db16017836132b9565b9150612dbc82613b8e565b602082019050919050565b6000612dd46016836132b9565b9150612ddf82613bb7565b602082019050919050565b6000612df7600f836132b9565b9150612e0282613be0565b602082019050919050565b612e1681613454565b82525050565b6000612e288285612ab7565b9150612e348284612ab7565b91508190509392505050565b6000602082019050612e556000830184612a27565b92915050565b6000608082019050612e706000830187612a27565b612e7d6020830186612a27565b612e8a6040830185612e0d565b8181036060830152612e9c8184612a45565b905095945050505050565b6000602082019050612ebc6000830184612a36565b92915050565b60006020820190508181036000830152612edc8184612a7e565b905092915050565b60006020820190508181036000830152612efd81612ae8565b9050919050565b60006020820190508181036000830152612f1d81612b0b565b9050919050565b60006020820190508181036000830152612f3d81612b2e565b9050919050565b60006020820190508181036000830152612f5d81612b51565b9050919050565b60006020820190508181036000830152612f7d81612b74565b9050919050565b60006020820190508181036000830152612f9d81612b97565b9050919050565b60006020820190508181036000830152612fbd81612bba565b9050919050565b60006020820190508181036000830152612fdd81612bdd565b9050919050565b60006020820190508181036000830152612ffd81612c00565b9050919050565b6000602082019050818103600083015261301d81612c23565b9050919050565b6000602082019050818103600083015261303d81612c46565b9050919050565b6000602082019050818103600083015261305d81612c69565b9050919050565b6000602082019050818103600083015261307d81612c8c565b9050919050565b6000602082019050818103600083015261309d81612caf565b9050919050565b600060208201905081810360008301526130bd81612cd2565b9050919050565b600060208201905081810360008301526130dd81612cf5565b9050919050565b600060208201905081810360008301526130fd81612d18565b9050919050565b6000602082019050818103600083015261311d81612d3b565b9050919050565b6000602082019050818103600083015261313d81612d5e565b9050919050565b6000602082019050818103600083015261315d81612d81565b9050919050565b6000602082019050818103600083015261317d81612da4565b9050919050565b6000602082019050818103600083015261319d81612dc7565b9050919050565b600060208201905081810360008301526131bd81612dea565b9050919050565b60006020820190506131d96000830184612e0d565b92915050565b60006131e96131fa565b90506131f582826134d2565b919050565b6000604051905090565b600067ffffffffffffffff82111561321f5761321e613639565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561324b5761324a613639565b5b61325482613681565b9050602081019050919050565b600067ffffffffffffffff82111561327c5761327b613639565b5b61328582613681565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006132e082613454565b91506132eb83613454565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133205761331f61357d565b5b828201905092915050565b600061333682613454565b915061334183613454565b925082613351576133506135ac565b5b828204905092915050565b600061336782613454565b915061337283613454565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133ab576133aa61357d565b5b828202905092915050565b60006133c182613454565b91506133cc83613454565b9250828210156133df576133de61357d565b5b828203905092915050565b60006133f582613434565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561348b578082015181840152602081019050613470565b8381111561349a576000848401525b50505050565b600060028204905060018216806134b857607f821691505b602082108114156134cc576134cb6135db565b5b50919050565b6134db82613681565b810181811067ffffffffffffffff821117156134fa576134f9613639565b5b80604052505050565b600061350e82613454565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135415761354061357d565b5b600182019050919050565b600061355782613454565b915061356283613454565b925082613572576135716135ac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6d617820706572207472616e73616374696f6e20360000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206e6f742053746172746564205965742e0000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b613c12816133ea565b8114613c1d57600080fd5b50565b613c29816133fc565b8114613c3457600080fd5b50565b613c4081613408565b8114613c4b57600080fd5b50565b613c5781613454565b8114613c6257600080fd5b5056fea264697066735822122042cdc862fac0465a1861243fd9cb3a6a4f72da10f3e83a0b48f48a2395837e3b64736f6c6343000807003368747470733a2f2f7777772e6765636b6f76657273652e636f6d2f6170692f7265762f
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610641578063e985e9c51461066c578063ef5f1985146106a9578063f2fde38b146106d2576101cd565b8063b88d4fde14610585578063b9bac22e146105ae578063ba6dd6f0146105d9578063c87b56dd14610604576101cd565b8063996953fc116100d1578063996953fc146104ec578063a0712d6814610517578063a0bcfc7f14610533578063a22cb4651461055c576101cd565b80638da5cb5b1461046b57806395d89b411461049657806395ea5e67146104c1576101cd565b806323b872dd1161016f5780636c0360eb1161013e5780636c0360eb146103c357806370a08231146103ee578063715018a61461042b578063729ad39e14610442576101cd565b806323b872dd1461031d5780633ccfd60b1461034657806342842e0e1461035d5780636352211e14610386576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c95780631cef37e4146102f4576101cd565b806301ffc9a7146101d2578063031e5dea1461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612957565b6106fb565b6040516102069190612ea7565b60405180910390f35b34801561021b57600080fd5b50610236600480360381019061023191906129fa565b6107dd565b005b34801561024457600080fd5b5061024d610863565b60405161025a9190612ec2565b60405180910390f35b34801561026f57600080fd5b5061028a600480360381019061028591906129fa565b6108f5565b6040516102979190612e40565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c291906128a1565b61097a565b005b3480156102d557600080fd5b506102de610a92565b6040516102eb91906131c4565b60405180910390f35b34801561030057600080fd5b5061031b6004803603810190610316919061292a565b610a98565b005b34801561032957600080fd5b50610344600480360381019061033f919061278b565b610b31565b005b34801561035257600080fd5b5061035b610b91565b005b34801561036957600080fd5b50610384600480360381019061037f919061278b565b610c5d565b005b34801561039257600080fd5b506103ad60048036038101906103a891906129fa565b610c7d565b6040516103ba9190612e40565b60405180910390f35b3480156103cf57600080fd5b506103d8610d2f565b6040516103e59190612ec2565b60405180910390f35b3480156103fa57600080fd5b506104156004803603810190610410919061271e565b610dbd565b60405161042291906131c4565b60405180910390f35b34801561043757600080fd5b50610440610e75565b005b34801561044e57600080fd5b50610469600480360381019061046491906128e1565b610efd565b005b34801561047757600080fd5b50610480611046565b60405161048d9190612e40565b60405180910390f35b3480156104a257600080fd5b506104ab61106f565b6040516104b89190612ec2565b60405180910390f35b3480156104cd57600080fd5b506104d6611101565b6040516104e39190612ea7565b60405180910390f35b3480156104f857600080fd5b50610501611114565b60405161050e91906131c4565b60405180910390f35b610531600480360381019061052c91906129fa565b611173565b005b34801561053f57600080fd5b5061055a600480360381019061055591906129b1565b611356565b005b34801561056857600080fd5b50610583600480360381019061057e9190612861565b6113ec565b005b34801561059157600080fd5b506105ac60048036038101906105a791906127de565b61156d565b005b3480156105ba57600080fd5b506105c36115cf565b6040516105d091906131c4565b60405180910390f35b3480156105e557600080fd5b506105ee6115d5565b6040516105fb9190612ea7565b60405180910390f35b34801561061057600080fd5b5061062b600480360381019061062691906129fa565b6115e8565b6040516106389190612ec2565b60405180910390f35b34801561064d57600080fd5b5061065661168f565b60405161066391906131c4565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e919061274b565b611695565b6040516106a09190612ea7565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb919061292a565b611729565b005b3480156106de57600080fd5b506106f960048036038101906106f4919061271e565b6117c2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d657506107d5826118ba565b5b9050919050565b6107e5611924565b73ffffffffffffffffffffffffffffffffffffffff16610803611046565b73ffffffffffffffffffffffffffffffffffffffff1614610859576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610850906130a4565b60405180910390fd5b8060078190555050565b606060018054610872906134a0565b80601f016020809104026020016040519081016040528092919081815260200182805461089e906134a0565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b60006109008261192c565b61093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093690613084565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098582610c7d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90613124565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a15611924565b73ffffffffffffffffffffffffffffffffffffffff161480610a445750610a4381610a3e611924565b611695565b5b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90612fc4565b60405180910390fd5b610a8d8383611998565b505050565b60085481565b610aa0611924565b73ffffffffffffffffffffffffffffffffffffffff16610abe611046565b73ffffffffffffffffffffffffffffffffffffffff1614610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b906130a4565b60405180910390fd5b80600960016101000a81548160ff02191690831515021790555050565b610b42610b3c611924565b82611a51565b610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890613144565b60405180910390fd5b610b8c838383611b2f565b505050565b610b99611924565b73ffffffffffffffffffffffffffffffffffffffff16610bb7611046565b73ffffffffffffffffffffffffffffffffffffffff1614610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c04906130a4565b60405180910390fd5b610c15611046565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c5a573d6000803e3d6000fd5b50565b610c788383836040518060200160405280600081525061156d565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90613004565b60405180910390fd5b80915050919050565b600b8054610d3c906134a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d68906134a0565b8015610db55780601f10610d8a57610100808354040283529160200191610db5565b820191906000526020600020905b815481529060010190602001808311610d9857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2590612fe4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e7d611924565b73ffffffffffffffffffffffffffffffffffffffff16610e9b611046565b73ffffffffffffffffffffffffffffffffffffffff1614610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee8906130a4565b60405180910390fd5b610efb6000611d8b565b565b610f05611924565b73ffffffffffffffffffffffffffffffffffffffff16610f23611046565b73ffffffffffffffffffffffffffffffffffffffff1614610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f70906130a4565b60405180910390fd5b6007548151600854610f8b91906132d5565b1115610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390613184565b60405180910390fd5b60005b815181101561102857611015828281518110610fee57610fed61360a565b5b602002602001015182600160085461100691906132d5565b61101091906132d5565b611e4f565b808061102090613503565b915050610fcf565b5080516008600082825461103c91906132d5565b9250508190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461107e906134a0565b80601f01602080910402602001604051908101604052809291908181526020018280546110aa906134a0565b80156110f75780601f106110cc576101008083540402835291602001916110f7565b820191906000526020600020905b8154815290600101906020018083116110da57829003601f168201915b5050505050905090565b600960019054906101000a900460ff1681565b600060011515600960009054906101000a900460ff1615151461116c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611163906130c4565b60405180910390fd5b6001905090565b600081116111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613164565b60405180910390fd5b600c548111156111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f290613064565b60405180910390fd5b6007548160085461120c91906132d5565b111561124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124490613024565b60405180910390fd5b8066f8b0a10e470000611260919061335c565b3410156112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990612fa4565b60405180910390fd5b60011515600960019054906101000a900460ff161515146112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef906131a4565b60405180910390fd5b60005b81811015611339576113263382600160085461131791906132d5565b61132191906132d5565b611e4f565b808061133190613503565b9150506112fb565b50806008600082825461134c91906132d5565b9250508190555050565b61135e611924565b73ffffffffffffffffffffffffffffffffffffffff1661137c611046565b73ffffffffffffffffffffffffffffffffffffffff16146113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c9906130a4565b60405180910390fd5b80600b90805190602001906113e8929190612494565b5050565b6113f4611924565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990612f64565b60405180910390fd5b806006600061146f611924565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661151c611924565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115619190612ea7565b60405180910390a35050565b61157e611578611924565b83611a51565b6115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490613144565b60405180910390fd5b6115c984848484611e6d565b50505050565b600c5481565b600960009054906101000a900460ff1681565b60606115f38261192c565b611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990613104565b60405180910390fd5b600061163c611ec9565b9050600081511161165c5760405180602001604052806000815250611687565b8061166684611f5b565b604051602001611677929190612e1c565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611731611924565b73ffffffffffffffffffffffffffffffffffffffff1661174f611046565b73ffffffffffffffffffffffffffffffffffffffff16146117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c906130a4565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b6117ca611924565b73ffffffffffffffffffffffffffffffffffffffff166117e8611046565b73ffffffffffffffffffffffffffffffffffffffff161461183e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611835906130a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a590612f04565b60405180910390fd5b6118b781611d8b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a0b83610c7d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a5c8261192c565b611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290612f84565b60405180910390fd5b6000611aa683610c7d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b1557508373ffffffffffffffffffffffffffffffffffffffff16611afd846108f5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b265750611b258185611695565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b4f82610c7d565b73ffffffffffffffffffffffffffffffffffffffff1614611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c906130e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c90612f44565b60405180910390fd5b611c208383836120bc565b611c2b600082611998565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7b91906133b6565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd291906132d5565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e698282604051806020016040528060008152506120c1565b5050565b611e78848484611b2f565b611e848484848461211c565b611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba90612ee4565b60405180910390fd5b50505050565b6060600b8054611ed8906134a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611f04906134a0565b8015611f515780601f10611f2657610100808354040283529160200191611f51565b820191906000526020600020905b815481529060010190602001808311611f3457829003601f168201915b5050505050905090565b60606000821415611fa3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120b7565b600082905060005b60008214611fd5578080611fbe90613503565b915050600a82611fce919061332b565b9150611fab565b60008167ffffffffffffffff811115611ff157611ff0613639565b5b6040519080825280601f01601f1916602001820160405280156120235781602001600182028036833780820191505090505b5090505b600085146120b05760018261203c91906133b6565b9150600a8561204b919061354c565b603061205791906132d5565b60f81b81838151811061206d5761206c61360a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120a9919061332b565b9450612027565b8093505050505b919050565b505050565b6120cb83836122b3565b6120d8600084848461211c565b612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e90612ee4565b60405180910390fd5b505050565b600061213d8473ffffffffffffffffffffffffffffffffffffffff16612481565b156122a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612166611924565b8786866040518563ffffffff1660e01b81526004016121889493929190612e5b565b602060405180830381600087803b1580156121a257600080fd5b505af19250505080156121d357506040513d601f19601f820116820180604052508101906121d09190612984565b60015b612256573d8060008114612203576040519150601f19603f3d011682016040523d82523d6000602084013e612208565b606091505b5060008151141561224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590612ee4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122ab565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90613044565b60405180910390fd5b61232c8161192c565b1561236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390612f24565b60405180910390fd5b612378600083836120bc565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c891906132d5565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546124a0906134a0565b90600052602060002090601f0160209004810192826124c25760008555612509565b82601f106124db57805160ff1916838001178555612509565b82800160010185558215612509579182015b828111156125085782518255916020019190600101906124ed565b5b509050612516919061251a565b5090565b5b8082111561253357600081600090555060010161251b565b5090565b600061254a61254584613204565b6131df565b9050808382526020820190508285602086028201111561256d5761256c61366d565b5b60005b8581101561259d5781612583888261262b565b845260208401935060208301925050600181019050612570565b5050509392505050565b60006125ba6125b584613230565b6131df565b9050828152602081018484840111156125d6576125d5613672565b5b6125e184828561345e565b509392505050565b60006125fc6125f784613261565b6131df565b90508281526020810184848401111561261857612617613672565b5b61262384828561345e565b509392505050565b60008135905061263a81613c09565b92915050565b600082601f83011261265557612654613668565b5b8135612665848260208601612537565b91505092915050565b60008135905061267d81613c20565b92915050565b60008135905061269281613c37565b92915050565b6000815190506126a781613c37565b92915050565b600082601f8301126126c2576126c1613668565b5b81356126d28482602086016125a7565b91505092915050565b600082601f8301126126f0576126ef613668565b5b81356127008482602086016125e9565b91505092915050565b60008135905061271881613c4e565b92915050565b6000602082840312156127345761273361367c565b5b60006127428482850161262b565b91505092915050565b600080604083850312156127625761276161367c565b5b60006127708582860161262b565b92505060206127818582860161262b565b9150509250929050565b6000806000606084860312156127a4576127a361367c565b5b60006127b28682870161262b565b93505060206127c38682870161262b565b92505060406127d486828701612709565b9150509250925092565b600080600080608085870312156127f8576127f761367c565b5b60006128068782880161262b565b94505060206128178782880161262b565b935050604061282887828801612709565b925050606085013567ffffffffffffffff81111561284957612848613677565b5b612855878288016126ad565b91505092959194509250565b600080604083850312156128785761287761367c565b5b60006128868582860161262b565b92505060206128978582860161266e565b9150509250929050565b600080604083850312156128b8576128b761367c565b5b60006128c68582860161262b565b92505060206128d785828601612709565b9150509250929050565b6000602082840312156128f7576128f661367c565b5b600082013567ffffffffffffffff81111561291557612914613677565b5b61292184828501612640565b91505092915050565b6000602082840312156129405761293f61367c565b5b600061294e8482850161266e565b91505092915050565b60006020828403121561296d5761296c61367c565b5b600061297b84828501612683565b91505092915050565b60006020828403121561299a5761299961367c565b5b60006129a884828501612698565b91505092915050565b6000602082840312156129c7576129c661367c565b5b600082013567ffffffffffffffff8111156129e5576129e4613677565b5b6129f1848285016126db565b91505092915050565b600060208284031215612a1057612a0f61367c565b5b6000612a1e84828501612709565b91505092915050565b612a30816133ea565b82525050565b612a3f816133fc565b82525050565b6000612a5082613292565b612a5a81856132a8565b9350612a6a81856020860161346d565b612a7381613681565b840191505092915050565b6000612a898261329d565b612a9381856132b9565b9350612aa381856020860161346d565b612aac81613681565b840191505092915050565b6000612ac28261329d565b612acc81856132ca565b9350612adc81856020860161346d565b80840191505092915050565b6000612af56032836132b9565b9150612b0082613692565b604082019050919050565b6000612b186026836132b9565b9150612b23826136e1565b604082019050919050565b6000612b3b601c836132b9565b9150612b4682613730565b602082019050919050565b6000612b5e6024836132b9565b9150612b6982613759565b604082019050919050565b6000612b816019836132b9565b9150612b8c826137a8565b602082019050919050565b6000612ba4602c836132b9565b9150612baf826137d1565b604082019050919050565b6000612bc76016836132b9565b9150612bd282613820565b602082019050919050565b6000612bea6038836132b9565b9150612bf582613849565b604082019050919050565b6000612c0d602a836132b9565b9150612c1882613898565b604082019050919050565b6000612c306029836132b9565b9150612c3b826138e7565b604082019050919050565b6000612c536016836132b9565b9150612c5e82613936565b602082019050919050565b6000612c766020836132b9565b9150612c818261395f565b602082019050919050565b6000612c996015836132b9565b9150612ca482613988565b602082019050919050565b6000612cbc602c836132b9565b9150612cc7826139b1565b604082019050919050565b6000612cdf6020836132b9565b9150612cea82613a00565b602082019050919050565b6000612d026015836132b9565b9150612d0d82613a29565b602082019050919050565b6000612d256029836132b9565b9150612d3082613a52565b604082019050919050565b6000612d48602f836132b9565b9150612d5382613aa1565b604082019050919050565b6000612d6b6021836132b9565b9150612d7682613af0565b604082019050919050565b6000612d8e6031836132b9565b9150612d9982613b3f565b604082019050919050565b6000612db16017836132b9565b9150612dbc82613b8e565b602082019050919050565b6000612dd46016836132b9565b9150612ddf82613bb7565b602082019050919050565b6000612df7600f836132b9565b9150612e0282613be0565b602082019050919050565b612e1681613454565b82525050565b6000612e288285612ab7565b9150612e348284612ab7565b91508190509392505050565b6000602082019050612e556000830184612a27565b92915050565b6000608082019050612e706000830187612a27565b612e7d6020830186612a27565b612e8a6040830185612e0d565b8181036060830152612e9c8184612a45565b905095945050505050565b6000602082019050612ebc6000830184612a36565b92915050565b60006020820190508181036000830152612edc8184612a7e565b905092915050565b60006020820190508181036000830152612efd81612ae8565b9050919050565b60006020820190508181036000830152612f1d81612b0b565b9050919050565b60006020820190508181036000830152612f3d81612b2e565b9050919050565b60006020820190508181036000830152612f5d81612b51565b9050919050565b60006020820190508181036000830152612f7d81612b74565b9050919050565b60006020820190508181036000830152612f9d81612b97565b9050919050565b60006020820190508181036000830152612fbd81612bba565b9050919050565b60006020820190508181036000830152612fdd81612bdd565b9050919050565b60006020820190508181036000830152612ffd81612c00565b9050919050565b6000602082019050818103600083015261301d81612c23565b9050919050565b6000602082019050818103600083015261303d81612c46565b9050919050565b6000602082019050818103600083015261305d81612c69565b9050919050565b6000602082019050818103600083015261307d81612c8c565b9050919050565b6000602082019050818103600083015261309d81612caf565b9050919050565b600060208201905081810360008301526130bd81612cd2565b9050919050565b600060208201905081810360008301526130dd81612cf5565b9050919050565b600060208201905081810360008301526130fd81612d18565b9050919050565b6000602082019050818103600083015261311d81612d3b565b9050919050565b6000602082019050818103600083015261313d81612d5e565b9050919050565b6000602082019050818103600083015261315d81612d81565b9050919050565b6000602082019050818103600083015261317d81612da4565b9050919050565b6000602082019050818103600083015261319d81612dc7565b9050919050565b600060208201905081810360008301526131bd81612dea565b9050919050565b60006020820190506131d96000830184612e0d565b92915050565b60006131e96131fa565b90506131f582826134d2565b919050565b6000604051905090565b600067ffffffffffffffff82111561321f5761321e613639565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561324b5761324a613639565b5b61325482613681565b9050602081019050919050565b600067ffffffffffffffff82111561327c5761327b613639565b5b61328582613681565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006132e082613454565b91506132eb83613454565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133205761331f61357d565b5b828201905092915050565b600061333682613454565b915061334183613454565b925082613351576133506135ac565b5b828204905092915050565b600061336782613454565b915061337283613454565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133ab576133aa61357d565b5b828202905092915050565b60006133c182613454565b91506133cc83613454565b9250828210156133df576133de61357d565b5b828203905092915050565b60006133f582613434565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561348b578082015181840152602081019050613470565b8381111561349a576000848401525b50505050565b600060028204905060018216806134b857607f821691505b602082108114156134cc576134cb6135db565b5b50919050565b6134db82613681565b810181811067ffffffffffffffff821117156134fa576134f9613639565b5b80604052505050565b600061350e82613454565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135415761354061357d565b5b600182019050919050565b600061355782613454565b915061356283613454565b925082613572576135716135ac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6d617820706572207472616e73616374696f6e20360000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206e6f742053746172746564205965742e0000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b613c12816133ea565b8114613c1d57600080fd5b50565b613c29816133fc565b8114613c3457600080fd5b50565b613c4081613408565b8114613c4b57600080fd5b50565b613c5781613454565b8114613c6257600080fd5b5056fea264697066735822122042cdc862fac0465a1861243fd9cb3a6a4f72da10f3e83a0b48f48a2395837e3b64736f6c63430008070033
Deployed Bytecode Sourcemap
34562:2167:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22408:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36197:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23353:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24912:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24435:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34699:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36393:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25802:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36620:106;;;;;;;;;;;;;:::i;:::-;;26212:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23047:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34876:61;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22777:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14255:94;;;;;;;;;;;;;:::i;:::-;;35619:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13604:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23522:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34775:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35938:148;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35073:538;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36099:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25205:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26468:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34944:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34735:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23697:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34658:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25571:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36292:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14504:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22408:305;22510:4;22562:25;22547:40;;;:11;:40;;;;:105;;;;22619:33;22604:48;;;:11;:48;;;;22547:105;:158;;;;22669:36;22693:11;22669:23;:36::i;:::-;22547:158;22527:178;;22408:305;;;:::o;36197:88::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36272:5:::1;36262:9;:15;;;;36197:88:::0;:::o;23353:100::-;23407:13;23440:5;23433:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23353:100;:::o;24912:221::-;24988:7;25016:16;25024:7;25016;:16::i;:::-;25008:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25101:15;:24;25117:7;25101:24;;;;;;;;;;;;;;;;;;;;;25094:31;;24912:221;;;:::o;24435:411::-;24516:13;24532:23;24547:7;24532:14;:23::i;:::-;24516:39;;24580:5;24574:11;;:2;:11;;;;24566:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24674:5;24658:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24683:37;24700:5;24707:12;:10;:12::i;:::-;24683:16;:37::i;:::-;24658:62;24636:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24817:21;24826:2;24830:7;24817:8;:21::i;:::-;24505:341;24435:411;;:::o;34699:27::-;;;;:::o;36393:101::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36482:4:::1;36461:18;;:25;;;;;;;;;;;;;;;;;;36393:101:::0;:::o;25802:339::-;25997:41;26016:12;:10;:12::i;:::-;26030:7;25997:18;:41::i;:::-;25989:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26105:28;26115:4;26121:2;26125:7;26105:9;:28::i;:::-;25802:339;;;:::o;36620:106::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36678:7:::1;:5;:7::i;:::-;36670:25;;:48;36696:21;36670:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;36620:106::o:0;26212:185::-;26350:39;26367:4;26373:2;26377:7;26350:39;;;;;;;;;;;;:16;:39::i;:::-;26212:185;;;:::o;23047:239::-;23119:7;23139:13;23155:7;:16;23163:7;23155:16;;;;;;;;;;;;;;;;;;;;;23139:32;;23207:1;23190:19;;:5;:19;;;;23182:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23273:5;23266:12;;;23047:239;;;:::o;34876:61::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22777:208::-;22849:7;22894:1;22877:19;;:5;:19;;;;22869:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22961:9;:16;22971:5;22961:16;;;;;;;;;;;;;;;;22954:23;;22777:208;;;:::o;14255:94::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14320:21:::1;14338:1;14320:9;:21::i;:::-;14255:94::o:0;35619:306::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35731:9:::1;;35712:8;:15;35698:11;;:29;;;;:::i;:::-;:42;;35690:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;35782:6;35778:98;35798:8;:15;35794:1;:19;35778:98;;;35833:43;35843:8;35852:1;35843:11;;;;;;;;:::i;:::-;;;;;;;;35874:1;35870;35856:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;35833:9;:43::i;:::-;35815:3;;;;;:::i;:::-;;;;35778:98;;;;35902:8;:15;35887:11;;:30;;;;;;;:::i;:::-;;;;;;;;35619:306:::0;:::o;13604:87::-;13650:7;13677:6;;;;;;;;;;;13670:13;;13604:87;:::o;23522:104::-;23578:13;23611:7;23604:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23522:104;:::o;34775:37::-;;;;;;;;;;;;;:::o;35938:148::-;35987:4;36029;36011:22;;:14;;;;;;;;;;;:22;;;36003:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36076:1;36069:8;;35938:148;:::o;35073:538::-;35142:1;35133:6;:10;35125:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;35200:24;;35190:6;:34;;35182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35293:9;;35283:6;35269:11;;:20;;;;:::i;:::-;:33;;35261:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35374:6;34641:10;35361:19;;;;:::i;:::-;35348:9;:32;;35340:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35448:4;35426:26;;:18;;;;;;;;;;;:26;;;35418:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;35487:6;35483:88;35503:6;35499:1;:10;35483:88;;;35529:42;35539:10;35569:1;35565;35551:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;35529:9;:42::i;:::-;35511:3;;;;;:::i;:::-;;;;35483:88;;;;35597:6;35582:11;;:21;;;;;;;:::i;:::-;;;;;;;;35073:538;:::o;36099:92::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36179:4:::1;36169:7;:14;;;;;;;;;;;;:::i;:::-;;36099:92:::0;:::o;25205:295::-;25320:12;:10;:12::i;:::-;25308:24;;:8;:24;;;;25300:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25420:8;25375:18;:32;25394:12;:10;:12::i;:::-;25375:32;;;;;;;;;;;;;;;:42;25408:8;25375:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25473:8;25444:48;;25459:12;:10;:12::i;:::-;25444:48;;;25483:8;25444:48;;;;;;:::i;:::-;;;;;;;;25205:295;;:::o;26468:328::-;26643:41;26662:12;:10;:12::i;:::-;26676:7;26643:18;:41::i;:::-;26635:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26749:39;26763:4;26769:2;26773:7;26782:5;26749:13;:39::i;:::-;26468:328;;;;:::o;34944:40::-;;;;:::o;34735:33::-;;;;;;;;;;;;;:::o;23697:334::-;23770:13;23804:16;23812:7;23804;:16::i;:::-;23796:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23885:21;23909:10;:8;:10::i;:::-;23885:34;;23961:1;23943:7;23937:21;:25;:86;;;;;;;;;;;;;;;;;23989:7;23998:18;:7;:16;:18::i;:::-;23972:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23937:86;23930:93;;;23697:334;;;:::o;34658:28::-;;;;:::o;25571:164::-;25668:4;25692:18;:25;25711:5;25692:25;;;;;;;;;;;;;;;:35;25718:8;25692:35;;;;;;;;;;;;;;;;;;;;;;;;;25685:42;;25571:164;;;;:::o;36292:95::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36375:4:::1;36358:14;;:21;;;;;;;;;;;;;;;;;;36292:95:::0;:::o;14504:192::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14613:1:::1;14593:22;;:8;:22;;;;14585:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14669:19;14679:8;14669:9;:19::i;:::-;14504:192:::0;:::o;15609:157::-;15694:4;15733:25;15718:40;;;:11;:40;;;;15711:47;;15609:157;;;:::o;744:98::-;797:7;824:10;817:17;;744:98;:::o;28306:127::-;28371:4;28423:1;28395:30;;:7;:16;28403:7;28395:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28388:37;;28306:127;;;:::o;32288:174::-;32390:2;32363:15;:24;32379:7;32363:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32446:7;32442:2;32408:46;;32417:23;32432:7;32417:14;:23::i;:::-;32408:46;;;;;;;;;;;;32288:174;;:::o;28600:348::-;28693:4;28718:16;28726:7;28718;:16::i;:::-;28710:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28794:13;28810:23;28825:7;28810:14;:23::i;:::-;28794:39;;28863:5;28852:16;;:7;:16;;;:51;;;;28896:7;28872:31;;:20;28884:7;28872:11;:20::i;:::-;:31;;;28852:51;:87;;;;28907:32;28924:5;28931:7;28907:16;:32::i;:::-;28852:87;28844:96;;;28600:348;;;;:::o;31592:578::-;31751:4;31724:31;;:23;31739:7;31724:14;:23::i;:::-;:31;;;31716:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31834:1;31820:16;;:2;:16;;;;31812:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31890:39;31911:4;31917:2;31921:7;31890:20;:39::i;:::-;31994:29;32011:1;32015:7;31994:8;:29::i;:::-;32055:1;32036:9;:15;32046:4;32036:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32084:1;32067:9;:13;32077:2;32067:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32115:2;32096:7;:16;32104:7;32096:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32154:7;32150:2;32135:27;;32144:4;32135:27;;;;;;;;;;;;31592:578;;;:::o;14704:173::-;14760:16;14779:6;;;;;;;;;;;14760:25;;14805:8;14796:6;;:17;;;;;;;;;;;;;;;;;;14860:8;14829:40;;14850:8;14829:40;;;;;;;;;;;;14749:128;14704:173;:::o;29290:110::-;29366:26;29376:2;29380:7;29366:26;;;;;;;;;;;;:9;:26::i;:::-;29290:110;;:::o;27678:315::-;27835:28;27845:4;27851:2;27855:7;27835:9;:28::i;:::-;27882:48;27905:4;27911:2;27915:7;27924:5;27882:22;:48::i;:::-;27874:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27678:315;;;;:::o;36506:108::-;36566:13;36599:7;36592:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36506:108;:::o;1209:723::-;1265:13;1495:1;1486:5;:10;1482:53;;;1513:10;;;;;;;;;;;;;;;;;;;;;1482:53;1545:12;1560:5;1545:20;;1576:14;1601:78;1616:1;1608:4;:9;1601:78;;1634:8;;;;;:::i;:::-;;;;1665:2;1657:10;;;;;:::i;:::-;;;1601:78;;;1689:19;1721:6;1711:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1689:39;;1739:154;1755:1;1746:5;:10;1739:154;;1783:1;1773:11;;;;;:::i;:::-;;;1850:2;1842:5;:10;;;;:::i;:::-;1829:2;:24;;;;:::i;:::-;1816:39;;1799:6;1806;1799:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1879:2;1870:11;;;;;:::i;:::-;;;1739:154;;;1917:6;1903:21;;;;;1209:723;;;;:::o;34398:126::-;;;;:::o;29627:321::-;29757:18;29763:2;29767:7;29757:5;:18::i;:::-;29808:54;29839:1;29843:2;29847:7;29856:5;29808:22;:54::i;:::-;29786:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29627:321;;;:::o;33027:799::-;33182:4;33203:15;:2;:13;;;:15::i;:::-;33199:620;;;33255:2;33239:36;;;33276:12;:10;:12::i;:::-;33290:4;33296:7;33305:5;33239:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33235:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33498:1;33481:6;:13;:18;33477:272;;;33524:60;;;;;;;;;;:::i;:::-;;;;;;;;33477:272;33699:6;33693:13;33684:6;33680:2;33676:15;33669:38;33235:529;33372:41;;;33362:51;;;:6;:51;;;;33355:58;;;;;33199:620;33803:4;33796:11;;33027:799;;;;;;;:::o;30284:382::-;30378:1;30364:16;;:2;:16;;;;30356:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30437:16;30445:7;30437;:16::i;:::-;30436:17;30428:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30499:45;30528:1;30532:2;30536:7;30499:20;:45::i;:::-;30574:1;30557:9;:13;30567:2;30557:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30605:2;30586:7;:16;30594:7;30586:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30650:7;30646:2;30625:33;;30642:1;30625:33;;;;;;;;;;;;30284:382;;:::o;3674:387::-;3734:4;3942:12;4009:7;3997:20;3989:28;;4052:1;4045:4;:8;4038:15;;;3674:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:118::-;9257:24;9275:5;9257:24;:::i;:::-;9252:3;9245:37;9170:118;;:::o;9294:109::-;9375:21;9390:5;9375:21;:::i;:::-;9370:3;9363:34;9294:109;;:::o;9409:360::-;9495:3;9523:38;9555:5;9523:38;:::i;:::-;9577:70;9640:6;9635:3;9577:70;:::i;:::-;9570:77;;9656:52;9701:6;9696:3;9689:4;9682:5;9678:16;9656:52;:::i;:::-;9733:29;9755:6;9733:29;:::i;:::-;9728:3;9724:39;9717:46;;9499:270;9409:360;;;;:::o;9775:364::-;9863:3;9891:39;9924:5;9891:39;:::i;:::-;9946:71;10010:6;10005:3;9946:71;:::i;:::-;9939:78;;10026:52;10071:6;10066:3;10059:4;10052:5;10048:16;10026:52;:::i;:::-;10103:29;10125:6;10103:29;:::i;:::-;10098:3;10094:39;10087:46;;9867:272;9775:364;;;;:::o;10145:377::-;10251:3;10279:39;10312:5;10279:39;:::i;:::-;10334:89;10416:6;10411:3;10334:89;:::i;:::-;10327:96;;10432:52;10477:6;10472:3;10465:4;10458:5;10454:16;10432:52;:::i;:::-;10509:6;10504:3;10500:16;10493:23;;10255:267;10145:377;;;;:::o;10528:366::-;10670:3;10691:67;10755:2;10750:3;10691:67;:::i;:::-;10684:74;;10767:93;10856:3;10767:93;:::i;:::-;10885:2;10880:3;10876:12;10869:19;;10528:366;;;:::o;10900:::-;11042:3;11063:67;11127:2;11122:3;11063:67;:::i;:::-;11056:74;;11139:93;11228:3;11139:93;:::i;:::-;11257:2;11252:3;11248:12;11241:19;;10900:366;;;:::o;11272:::-;11414:3;11435:67;11499:2;11494:3;11435:67;:::i;:::-;11428:74;;11511:93;11600:3;11511:93;:::i;:::-;11629:2;11624:3;11620:12;11613:19;;11272:366;;;:::o;11644:::-;11786:3;11807:67;11871:2;11866:3;11807:67;:::i;:::-;11800:74;;11883:93;11972:3;11883:93;:::i;:::-;12001:2;11996:3;11992:12;11985:19;;11644:366;;;:::o;12016:::-;12158:3;12179:67;12243:2;12238:3;12179:67;:::i;:::-;12172:74;;12255:93;12344:3;12255:93;:::i;:::-;12373:2;12368:3;12364:12;12357:19;;12016:366;;;:::o;12388:::-;12530:3;12551:67;12615:2;12610:3;12551:67;:::i;:::-;12544:74;;12627:93;12716:3;12627:93;:::i;:::-;12745:2;12740:3;12736:12;12729:19;;12388:366;;;:::o;12760:::-;12902:3;12923:67;12987:2;12982:3;12923:67;:::i;:::-;12916:74;;12999:93;13088:3;12999:93;:::i;:::-;13117:2;13112:3;13108:12;13101:19;;12760:366;;;:::o;13132:::-;13274:3;13295:67;13359:2;13354:3;13295:67;:::i;:::-;13288:74;;13371:93;13460:3;13371:93;:::i;:::-;13489:2;13484:3;13480:12;13473:19;;13132:366;;;:::o;13504:::-;13646:3;13667:67;13731:2;13726:3;13667:67;:::i;:::-;13660:74;;13743:93;13832:3;13743:93;:::i;:::-;13861:2;13856:3;13852:12;13845:19;;13504:366;;;:::o;13876:::-;14018:3;14039:67;14103:2;14098:3;14039:67;:::i;:::-;14032:74;;14115:93;14204:3;14115:93;:::i;:::-;14233:2;14228:3;14224:12;14217:19;;13876:366;;;:::o;14248:::-;14390:3;14411:67;14475:2;14470:3;14411:67;:::i;:::-;14404:74;;14487:93;14576:3;14487:93;:::i;:::-;14605:2;14600:3;14596:12;14589:19;;14248:366;;;:::o;14620:::-;14762:3;14783:67;14847:2;14842:3;14783:67;:::i;:::-;14776:74;;14859:93;14948:3;14859:93;:::i;:::-;14977:2;14972:3;14968:12;14961:19;;14620:366;;;:::o;14992:::-;15134:3;15155:67;15219:2;15214:3;15155:67;:::i;:::-;15148:74;;15231:93;15320:3;15231:93;:::i;:::-;15349:2;15344:3;15340:12;15333:19;;14992:366;;;:::o;15364:::-;15506:3;15527:67;15591:2;15586:3;15527:67;:::i;:::-;15520:74;;15603:93;15692:3;15603:93;:::i;:::-;15721:2;15716:3;15712:12;15705:19;;15364:366;;;:::o;15736:::-;15878:3;15899:67;15963:2;15958:3;15899:67;:::i;:::-;15892:74;;15975:93;16064:3;15975:93;:::i;:::-;16093:2;16088:3;16084:12;16077:19;;15736:366;;;:::o;16108:::-;16250:3;16271:67;16335:2;16330:3;16271:67;:::i;:::-;16264:74;;16347:93;16436:3;16347:93;:::i;:::-;16465:2;16460:3;16456:12;16449:19;;16108:366;;;:::o;16480:::-;16622:3;16643:67;16707:2;16702:3;16643:67;:::i;:::-;16636:74;;16719:93;16808:3;16719:93;:::i;:::-;16837:2;16832:3;16828:12;16821:19;;16480:366;;;:::o;16852:::-;16994:3;17015:67;17079:2;17074:3;17015:67;:::i;:::-;17008:74;;17091:93;17180:3;17091:93;:::i;:::-;17209:2;17204:3;17200:12;17193:19;;16852:366;;;:::o;17224:::-;17366:3;17387:67;17451:2;17446:3;17387:67;:::i;:::-;17380:74;;17463:93;17552:3;17463:93;:::i;:::-;17581:2;17576:3;17572:12;17565:19;;17224:366;;;:::o;17596:::-;17738:3;17759:67;17823:2;17818:3;17759:67;:::i;:::-;17752:74;;17835:93;17924:3;17835:93;:::i;:::-;17953:2;17948:3;17944:12;17937:19;;17596:366;;;:::o;17968:::-;18110:3;18131:67;18195:2;18190:3;18131:67;:::i;:::-;18124:74;;18207:93;18296:3;18207:93;:::i;:::-;18325:2;18320:3;18316:12;18309:19;;17968:366;;;:::o;18340:::-;18482:3;18503:67;18567:2;18562:3;18503:67;:::i;:::-;18496:74;;18579:93;18668:3;18579:93;:::i;:::-;18697:2;18692:3;18688:12;18681:19;;18340:366;;;:::o;18712:::-;18854:3;18875:67;18939:2;18934:3;18875:67;:::i;:::-;18868:74;;18951:93;19040:3;18951:93;:::i;:::-;19069:2;19064:3;19060:12;19053:19;;18712:366;;;:::o;19084:118::-;19171:24;19189:5;19171:24;:::i;:::-;19166:3;19159:37;19084:118;;:::o;19208:435::-;19388:3;19410:95;19501:3;19492:6;19410:95;:::i;:::-;19403:102;;19522:95;19613:3;19604:6;19522:95;:::i;:::-;19515:102;;19634:3;19627:10;;19208:435;;;;;:::o;19649:222::-;19742:4;19780:2;19769:9;19765:18;19757:26;;19793:71;19861:1;19850:9;19846:17;19837:6;19793:71;:::i;:::-;19649:222;;;;:::o;19877:640::-;20072:4;20110:3;20099:9;20095:19;20087:27;;20124:71;20192:1;20181:9;20177:17;20168:6;20124:71;:::i;:::-;20205:72;20273:2;20262:9;20258:18;20249:6;20205:72;:::i;:::-;20287;20355:2;20344:9;20340:18;20331:6;20287:72;:::i;:::-;20406:9;20400:4;20396:20;20391:2;20380:9;20376:18;20369:48;20434:76;20505:4;20496:6;20434:76;:::i;:::-;20426:84;;19877:640;;;;;;;:::o;20523:210::-;20610:4;20648:2;20637:9;20633:18;20625:26;;20661:65;20723:1;20712:9;20708:17;20699:6;20661:65;:::i;:::-;20523:210;;;;:::o;20739:313::-;20852:4;20890:2;20879:9;20875:18;20867:26;;20939:9;20933:4;20929:20;20925:1;20914:9;20910:17;20903:47;20967:78;21040:4;21031:6;20967:78;:::i;:::-;20959:86;;20739:313;;;;:::o;21058:419::-;21224:4;21262:2;21251:9;21247:18;21239:26;;21311:9;21305:4;21301:20;21297:1;21286:9;21282:17;21275:47;21339:131;21465:4;21339:131;:::i;:::-;21331:139;;21058:419;;;:::o;21483:::-;21649:4;21687:2;21676:9;21672:18;21664:26;;21736:9;21730:4;21726:20;21722:1;21711:9;21707:17;21700:47;21764:131;21890:4;21764:131;:::i;:::-;21756:139;;21483:419;;;:::o;21908:::-;22074:4;22112:2;22101:9;22097:18;22089:26;;22161:9;22155:4;22151:20;22147:1;22136:9;22132:17;22125:47;22189:131;22315:4;22189:131;:::i;:::-;22181:139;;21908:419;;;:::o;22333:::-;22499:4;22537:2;22526:9;22522:18;22514:26;;22586:9;22580:4;22576:20;22572:1;22561:9;22557:17;22550:47;22614:131;22740:4;22614:131;:::i;:::-;22606:139;;22333:419;;;:::o;22758:::-;22924:4;22962:2;22951:9;22947:18;22939:26;;23011:9;23005:4;23001:20;22997:1;22986:9;22982:17;22975:47;23039:131;23165:4;23039:131;:::i;:::-;23031:139;;22758:419;;;:::o;23183:::-;23349:4;23387:2;23376:9;23372:18;23364:26;;23436:9;23430:4;23426:20;23422:1;23411:9;23407:17;23400:47;23464:131;23590:4;23464:131;:::i;:::-;23456:139;;23183:419;;;:::o;23608:::-;23774:4;23812:2;23801:9;23797:18;23789:26;;23861:9;23855:4;23851:20;23847:1;23836:9;23832:17;23825:47;23889:131;24015:4;23889:131;:::i;:::-;23881:139;;23608:419;;;:::o;24033:::-;24199:4;24237:2;24226:9;24222:18;24214:26;;24286:9;24280:4;24276:20;24272:1;24261:9;24257:17;24250:47;24314:131;24440:4;24314:131;:::i;:::-;24306:139;;24033:419;;;:::o;24458:::-;24624:4;24662:2;24651:9;24647:18;24639:26;;24711:9;24705:4;24701:20;24697:1;24686:9;24682:17;24675:47;24739:131;24865:4;24739:131;:::i;:::-;24731:139;;24458:419;;;:::o;24883:::-;25049:4;25087:2;25076:9;25072:18;25064:26;;25136:9;25130:4;25126:20;25122:1;25111:9;25107:17;25100:47;25164:131;25290:4;25164:131;:::i;:::-;25156:139;;24883:419;;;:::o;25308:::-;25474:4;25512:2;25501:9;25497:18;25489:26;;25561:9;25555:4;25551:20;25547:1;25536:9;25532:17;25525:47;25589:131;25715:4;25589:131;:::i;:::-;25581:139;;25308:419;;;:::o;25733:::-;25899:4;25937:2;25926:9;25922:18;25914:26;;25986:9;25980:4;25976:20;25972:1;25961:9;25957:17;25950:47;26014:131;26140:4;26014:131;:::i;:::-;26006:139;;25733:419;;;:::o;26158:::-;26324:4;26362:2;26351:9;26347:18;26339:26;;26411:9;26405:4;26401:20;26397:1;26386:9;26382:17;26375:47;26439:131;26565:4;26439:131;:::i;:::-;26431:139;;26158:419;;;:::o;26583:::-;26749:4;26787:2;26776:9;26772:18;26764:26;;26836:9;26830:4;26826:20;26822:1;26811:9;26807:17;26800:47;26864:131;26990:4;26864:131;:::i;:::-;26856:139;;26583:419;;;:::o;27008:::-;27174:4;27212:2;27201:9;27197:18;27189:26;;27261:9;27255:4;27251:20;27247:1;27236:9;27232:17;27225:47;27289:131;27415:4;27289:131;:::i;:::-;27281:139;;27008:419;;;:::o;27433:::-;27599:4;27637:2;27626:9;27622:18;27614:26;;27686:9;27680:4;27676:20;27672:1;27661:9;27657:17;27650:47;27714:131;27840:4;27714:131;:::i;:::-;27706:139;;27433:419;;;:::o;27858:::-;28024:4;28062:2;28051:9;28047:18;28039:26;;28111:9;28105:4;28101:20;28097:1;28086:9;28082:17;28075:47;28139:131;28265:4;28139:131;:::i;:::-;28131:139;;27858:419;;;:::o;28283:::-;28449:4;28487:2;28476:9;28472:18;28464:26;;28536:9;28530:4;28526:20;28522:1;28511:9;28507:17;28500:47;28564:131;28690:4;28564:131;:::i;:::-;28556:139;;28283:419;;;:::o;28708:::-;28874:4;28912:2;28901:9;28897:18;28889:26;;28961:9;28955:4;28951:20;28947:1;28936:9;28932:17;28925:47;28989:131;29115:4;28989:131;:::i;:::-;28981:139;;28708:419;;;:::o;29133:::-;29299:4;29337:2;29326:9;29322:18;29314:26;;29386:9;29380:4;29376:20;29372:1;29361:9;29357:17;29350:47;29414:131;29540:4;29414:131;:::i;:::-;29406:139;;29133:419;;;:::o;29558:::-;29724:4;29762:2;29751:9;29747:18;29739:26;;29811:9;29805:4;29801:20;29797:1;29786:9;29782:17;29775:47;29839:131;29965:4;29839:131;:::i;:::-;29831:139;;29558:419;;;:::o;29983:::-;30149:4;30187:2;30176:9;30172:18;30164:26;;30236:9;30230:4;30226:20;30222:1;30211:9;30207:17;30200:47;30264:131;30390:4;30264:131;:::i;:::-;30256:139;;29983:419;;;:::o;30408:::-;30574:4;30612:2;30601:9;30597:18;30589:26;;30661:9;30655:4;30651:20;30647:1;30636:9;30632:17;30625:47;30689:131;30815:4;30689:131;:::i;:::-;30681:139;;30408:419;;;:::o;30833:222::-;30926:4;30964:2;30953:9;30949:18;30941:26;;30977:71;31045:1;31034:9;31030:17;31021:6;30977:71;:::i;:::-;30833:222;;;;:::o;31061:129::-;31095:6;31122:20;;:::i;:::-;31112:30;;31151:33;31179:4;31171:6;31151:33;:::i;:::-;31061:129;;;:::o;31196:75::-;31229:6;31262:2;31256:9;31246:19;;31196:75;:::o;31277:311::-;31354:4;31444:18;31436:6;31433:30;31430:56;;;31466:18;;:::i;:::-;31430:56;31516:4;31508:6;31504:17;31496:25;;31576:4;31570;31566:15;31558:23;;31277:311;;;:::o;31594:307::-;31655:4;31745:18;31737:6;31734:30;31731:56;;;31767:18;;:::i;:::-;31731:56;31805:29;31827:6;31805:29;:::i;:::-;31797:37;;31889:4;31883;31879:15;31871:23;;31594:307;;;:::o;31907:308::-;31969:4;32059:18;32051:6;32048:30;32045:56;;;32081:18;;:::i;:::-;32045:56;32119:29;32141:6;32119:29;:::i;:::-;32111:37;;32203:4;32197;32193:15;32185:23;;31907:308;;;:::o;32221:98::-;32272:6;32306:5;32300:12;32290:22;;32221:98;;;:::o;32325:99::-;32377:6;32411:5;32405:12;32395:22;;32325:99;;;:::o;32430:168::-;32513:11;32547:6;32542:3;32535:19;32587:4;32582:3;32578:14;32563:29;;32430:168;;;;:::o;32604:169::-;32688:11;32722:6;32717:3;32710:19;32762:4;32757:3;32753:14;32738:29;;32604:169;;;;:::o;32779:148::-;32881:11;32918:3;32903:18;;32779:148;;;;:::o;32933:305::-;32973:3;32992:20;33010:1;32992:20;:::i;:::-;32987:25;;33026:20;33044:1;33026:20;:::i;:::-;33021:25;;33180:1;33112:66;33108:74;33105:1;33102:81;33099:107;;;33186:18;;:::i;:::-;33099:107;33230:1;33227;33223:9;33216:16;;32933:305;;;;:::o;33244:185::-;33284:1;33301:20;33319:1;33301:20;:::i;:::-;33296:25;;33335:20;33353:1;33335:20;:::i;:::-;33330:25;;33374:1;33364:35;;33379:18;;:::i;:::-;33364:35;33421:1;33418;33414:9;33409:14;;33244:185;;;;:::o;33435:348::-;33475:7;33498:20;33516:1;33498:20;:::i;:::-;33493:25;;33532:20;33550:1;33532:20;:::i;:::-;33527:25;;33720:1;33652:66;33648:74;33645:1;33642:81;33637:1;33630:9;33623:17;33619:105;33616:131;;;33727:18;;:::i;:::-;33616:131;33775:1;33772;33768:9;33757:20;;33435:348;;;;:::o;33789:191::-;33829:4;33849:20;33867:1;33849:20;:::i;:::-;33844:25;;33883:20;33901:1;33883:20;:::i;:::-;33878:25;;33922:1;33919;33916:8;33913:34;;;33927:18;;:::i;:::-;33913:34;33972:1;33969;33965:9;33957:17;;33789:191;;;;:::o;33986:96::-;34023:7;34052:24;34070:5;34052:24;:::i;:::-;34041:35;;33986:96;;;:::o;34088:90::-;34122:7;34165:5;34158:13;34151:21;34140:32;;34088:90;;;:::o;34184:149::-;34220:7;34260:66;34253:5;34249:78;34238:89;;34184:149;;;:::o;34339:126::-;34376:7;34416:42;34409:5;34405:54;34394:65;;34339:126;;;:::o;34471:77::-;34508:7;34537:5;34526:16;;34471:77;;;:::o;34554:154::-;34638:6;34633:3;34628;34615:30;34700:1;34691:6;34686:3;34682:16;34675:27;34554:154;;;:::o;34714:307::-;34782:1;34792:113;34806:6;34803:1;34800:13;34792:113;;;34891:1;34886:3;34882:11;34876:18;34872:1;34867:3;34863:11;34856:39;34828:2;34825:1;34821:10;34816:15;;34792:113;;;34923:6;34920:1;34917:13;34914:101;;;35003:1;34994:6;34989:3;34985:16;34978:27;34914:101;34763:258;34714:307;;;:::o;35027:320::-;35071:6;35108:1;35102:4;35098:12;35088:22;;35155:1;35149:4;35145:12;35176:18;35166:81;;35232:4;35224:6;35220:17;35210:27;;35166:81;35294:2;35286:6;35283:14;35263:18;35260:38;35257:84;;;35313:18;;:::i;:::-;35257:84;35078:269;35027:320;;;:::o;35353:281::-;35436:27;35458:4;35436:27;:::i;:::-;35428:6;35424:40;35566:6;35554:10;35551:22;35530:18;35518:10;35515:34;35512:62;35509:88;;;35577:18;;:::i;:::-;35509:88;35617:10;35613:2;35606:22;35396:238;35353:281;;:::o;35640:233::-;35679:3;35702:24;35720:5;35702:24;:::i;:::-;35693:33;;35748:66;35741:5;35738:77;35735:103;;;35818:18;;:::i;:::-;35735:103;35865:1;35858:5;35854:13;35847:20;;35640:233;;;:::o;35879:176::-;35911:1;35928:20;35946:1;35928:20;:::i;:::-;35923:25;;35962:20;35980:1;35962:20;:::i;:::-;35957:25;;36001:1;35991:35;;36006:18;;:::i;:::-;35991:35;36047:1;36044;36040:9;36035:14;;35879:176;;;;:::o;36061:180::-;36109:77;36106:1;36099:88;36206:4;36203:1;36196:15;36230:4;36227:1;36220:15;36247:180;36295:77;36292:1;36285:88;36392:4;36389:1;36382:15;36416:4;36413:1;36406:15;36433:180;36481:77;36478:1;36471:88;36578:4;36575:1;36568:15;36602:4;36599:1;36592:15;36619:180;36667:77;36664:1;36657:88;36764:4;36761:1;36754:15;36788:4;36785:1;36778:15;36805:180;36853:77;36850:1;36843:88;36950:4;36947:1;36940:15;36974:4;36971:1;36964:15;36991:117;37100:1;37097;37090:12;37114:117;37223:1;37220;37213:12;37237:117;37346:1;37343;37336:12;37360:117;37469:1;37466;37459:12;37483:117;37592:1;37589;37582:12;37606:102;37647:6;37698:2;37694:7;37689:2;37682:5;37678:14;37674:28;37664:38;;37606:102;;;:::o;37714:237::-;37854:34;37850:1;37842:6;37838:14;37831:58;37923:20;37918:2;37910:6;37906:15;37899:45;37714:237;:::o;37957:225::-;38097:34;38093:1;38085:6;38081:14;38074:58;38166:8;38161:2;38153:6;38149:15;38142:33;37957:225;:::o;38188:178::-;38328:30;38324:1;38316:6;38312:14;38305:54;38188:178;:::o;38372:223::-;38512:34;38508:1;38500:6;38496:14;38489:58;38581:6;38576:2;38568:6;38564:15;38557:31;38372:223;:::o;38601:175::-;38741:27;38737:1;38729:6;38725:14;38718:51;38601:175;:::o;38782:231::-;38922:34;38918:1;38910:6;38906:14;38899:58;38991:14;38986:2;38978:6;38974:15;38967:39;38782:231;:::o;39019:172::-;39159:24;39155:1;39147:6;39143:14;39136:48;39019:172;:::o;39197:243::-;39337:34;39333:1;39325:6;39321:14;39314:58;39406:26;39401:2;39393:6;39389:15;39382:51;39197:243;:::o;39446:229::-;39586:34;39582:1;39574:6;39570:14;39563:58;39655:12;39650:2;39642:6;39638:15;39631:37;39446:229;:::o;39681:228::-;39821:34;39817:1;39809:6;39805:14;39798:58;39890:11;39885:2;39877:6;39873:15;39866:36;39681:228;:::o;39915:172::-;40055:24;40051:1;40043:6;40039:14;40032:48;39915:172;:::o;40093:182::-;40233:34;40229:1;40221:6;40217:14;40210:58;40093:182;:::o;40281:171::-;40421:23;40417:1;40409:6;40405:14;40398:47;40281:171;:::o;40458:231::-;40598:34;40594:1;40586:6;40582:14;40575:58;40667:14;40662:2;40654:6;40650:15;40643:39;40458:231;:::o;40695:182::-;40835:34;40831:1;40823:6;40819:14;40812:58;40695:182;:::o;40883:171::-;41023:23;41019:1;41011:6;41007:14;41000:47;40883:171;:::o;41060:228::-;41200:34;41196:1;41188:6;41184:14;41177:58;41269:11;41264:2;41256:6;41252:15;41245:36;41060:228;:::o;41294:234::-;41434:34;41430:1;41422:6;41418:14;41411:58;41503:17;41498:2;41490:6;41486:15;41479:42;41294:234;:::o;41534:220::-;41674:34;41670:1;41662:6;41658:14;41651:58;41743:3;41738:2;41730:6;41726:15;41719:28;41534:220;:::o;41760:236::-;41900:34;41896:1;41888:6;41884:14;41877:58;41969:19;41964:2;41956:6;41952:15;41945:44;41760:236;:::o;42002:173::-;42142:25;42138:1;42130:6;42126:14;42119:49;42002:173;:::o;42181:172::-;42321:24;42317:1;42309:6;42305:14;42298:48;42181:172;:::o;42359:165::-;42499:17;42495:1;42487:6;42483:14;42476:41;42359:165;:::o;42530:122::-;42603:24;42621:5;42603:24;:::i;:::-;42596:5;42593:35;42583:63;;42642:1;42639;42632:12;42583:63;42530:122;:::o;42658:116::-;42728:21;42743:5;42728:21;:::i;:::-;42721:5;42718:32;42708:60;;42764:1;42761;42754:12;42708:60;42658:116;:::o;42780:120::-;42852:23;42869:5;42852:23;:::i;:::-;42845:5;42842:34;42832:62;;42890:1;42887;42880:12;42832:62;42780:120;:::o;42906:122::-;42979:24;42997:5;42979:24;:::i;:::-;42972:5;42969:35;42959:63;;43018:1;43015;43008:12;42959:63;42906:122;:::o
Swarm Source
ipfs://42cdc862fac0465a1861243fd9cb3a6a4f72da10f3e83a0b48f48a2395837e3b
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.