ERC-721
Overview
Max Total Supply
2,966 Galxe
Holders
834
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GalxeLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
QuixoticLaunchpadERC721
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at optimistic.etherscan.io on 2022-10-07 */ // Sources flattened with hardhat v2.8.4 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/security/[email protected] // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File Contracts/LaunchpadNFT.sol pragma solidity ^0.8.1; contract QuixoticLaunchpadERC721 is ERC721("Galxe Stargator Warrior NFTs", "Galxe"), ERC721Enumerable, Ownable, ReentrancyGuard { string private _baseURIextended; string private _baseURISuffix = ""; bool public frozenMetadata = false; uint256 public MAX_TOKENS = 10000; bool public saleIsActive = false; bool public greenListSaleIsActive = false; mapping(address => uint256) addressToGreenListNumberMinted; mapping(address => uint256) addressToNumberMinted; address private bouncer = 0xd47257ee6cD0a80Ed1ba7bDdC722Ef8eE44a8d7d; bool private _baseUriIncludeTokenId = true; function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function flipGreenListSaleState() public onlyOwner { greenListSaleIsActive = !greenListSaleIsActive; } function setBaseURI(string memory baseURI_, bool includeTokenId, string memory suffix) external onlyOwner() { require(!frozenMetadata, "The metadata URI is frozen. You can no longer set the baseURI"); _baseUriIncludeTokenId = includeTokenId; _baseURIextended = baseURI_; _baseURISuffix = suffix; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function freezeMetadata() external onlyOwner { frozenMetadata = true; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); if (_baseUriIncludeTokenId) { return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(tokenId), _baseURISuffix)) : ""; } else { return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI)) : ""; } } function mintToken(uint numberOfTokens) public payable nonReentrant { require(tx.origin == _msgSender(), "This function is only callable from an EOA."); require(saleIsActive, "Sale must be active to mint Tokens"); require(numberOfTokens + addressToNumberMinted[_msgSender()] <= 10000, "Exceeded max token purchase"); require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply of tokens"); require(0 * numberOfTokens <= msg.value, "Ether value sent is not correct"); for (uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_TOKENS) { addressToNumberMinted[_msgSender()] += 1; _safeMint(_msgSender(), mintIndex); } } } function greenListMintToken(uint numberOfTokens, bytes memory signature) public payable nonReentrant { require(tx.origin == _msgSender(), "This function is only callable from an EOA."); require(greenListSaleIsActive, "Sale must be active to mint Tokens"); require(numberOfTokens + addressToGreenListNumberMinted[_msgSender()] <= 10000, "Exceeded max token purchase"); require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply of tokens"); require(0 * numberOfTokens <= msg.value, "Ether value sent is not correct"); bytes32 hashedMinter = ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(_msgSender()))); address recoveredBouncer = ECDSA.recover(hashedMinter, signature); require(recoveredBouncer == bouncer, "The signature for the greenlist is invalid"); for (uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_TOKENS) { addressToGreenListNumberMinted[_msgSender()] += 1; _safeMint(_msgSender(), mintIndex); } } } function reserveTokens(uint quantity, address recipient) public onlyOwner { uint supply = totalSupply(); require(supply + quantity <= MAX_TOKENS, "We have already hit the reserve limit"); uint i; for (i = 0; i < quantity; i++) { uint mintIndex = totalSupply(); _safeMint(recipient, mintIndex); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipGreenListSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozenMetadata","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"greenListMintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"greenListSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"bool","name":"includeTokenId","type":"bool"},{"internalType":"string","name":"suffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600d90805190602001906200002b9291906200029d565b506000600e60006101000a81548160ff021916908315150217905550612710600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff02191690831515021790555073d47257ee6cd0a80ed1ba7bddc722ef8ee44a8d7d601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601360146101000a81548160ff0219169083151502179055503480156200010057600080fd5b506040518060400160405280601c81526020017f47616c786520537461726761746f722057617272696f72204e465473000000008152506040518060400160405280600581526020017f47616c78650000000000000000000000000000000000000000000000000000008152508160009080519060200190620001859291906200029d565b5080600190805190602001906200019e9291906200029d565b505050620001c1620001b5620001cf60201b60201c565b620001d760201b60201c565b6001600b81905550620003b2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ab906200034d565b90600052602060002090601f016020900481019282620002cf57600085556200031b565b82601f10620002ea57805160ff19168380011785556200031b565b828001600101855582156200031b579182015b828111156200031a578251825591602001919060010190620002fd565b5b5090506200032a91906200032e565b5090565b5b80821115620003495760008160009055506001016200032f565b5090565b600060028204905060018216806200036657607f821691505b602082108114156200037d576200037c62000383565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6151de80620003c26000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c634d03211610095578063eb8d244411610064578063eb8d244414610653578063f2fde38b1461067e578063f47c84c5146106a7578063f7f7bf7b146106d2576101cd565b8063c634d032146105a6578063c87b56dd146105c2578063d111515d146105ff578063e985e9c514610616576101cd565b806393b15295116100d157806393b152951461050057806395d89b4114610529578063a22cb46514610554578063b88d4fde1461057d576101cd565b8063715018a6146104935780638529ccad146104aa5780638da5cb5b146104d5576101cd565b80632da435f71161016f5780634f6ccce71161013e5780634f6ccce7146103b357806353d4c775146103f05780636352211e1461041957806370a0823114610456576101cd565b80632da435f71461031f5780632f745c591461033657806334918dfd1461037357806342842e0e1461038a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632541865c146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061368b565b6106ee565b6040516102069190613f24565b60405180910390f35b34801561021b57600080fd5b50610224610700565b6040516102319190613f84565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613770565b610792565b60405161026e9190613ebd565b60405180910390f35b34801561028357600080fd5b5061029e6004803603810190610299919061364b565b610817565b005b3480156102ac57600080fd5b506102b561092f565b6040516102c29190614386565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613535565b61093c565b005b34801561030057600080fd5b5061030961099c565b6040516103169190613f24565b60405180910390f35b34801561032b57600080fd5b506103346109af565b005b34801561034257600080fd5b5061035d6004803603810190610358919061364b565b610a57565b60405161036a9190614386565b60405180910390f35b34801561037f57600080fd5b50610388610afc565b005b34801561039657600080fd5b506103b160048036038101906103ac9190613535565b610ba4565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190613770565b610bc4565b6040516103e79190614386565b60405180910390f35b3480156103fc57600080fd5b506104176004803603810190610412919061379d565b610c35565b005b34801561042557600080fd5b50610440600480360381019061043b9190613770565b610d48565b60405161044d9190613ebd565b60405180910390f35b34801561046257600080fd5b5061047d600480360381019061047891906134c8565b610dfa565b60405161048a9190614386565b60405180910390f35b34801561049f57600080fd5b506104a8610eb2565b005b3480156104b657600080fd5b506104bf610f3a565b6040516104cc9190613f24565b60405180910390f35b3480156104e157600080fd5b506104ea610f4d565b6040516104f79190613ebd565b60405180910390f35b34801561050c57600080fd5b50610527600480360381019061052291906136e5565b610f77565b005b34801561053557600080fd5b5061053e611090565b60405161054b9190613f84565b60405180910390f35b34801561056057600080fd5b5061057b6004803603810190610576919061360b565b611122565b005b34801561058957600080fd5b506105a4600480360381019061059f9190613588565b611138565b005b6105c060048036038101906105bb9190613770565b61119a565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190613770565b6114a0565b6040516105f69190613f84565b60405180910390f35b34801561060b57600080fd5b506106146115a7565b005b34801561062257600080fd5b5061063d600480360381019061063891906134f5565b611640565b60405161064a9190613f24565b60405180910390f35b34801561065f57600080fd5b506106686116d4565b6040516106759190613f24565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a091906134c8565b6116e7565b005b3480156106b357600080fd5b506106bc6117df565b6040516106c99190614386565b60405180910390f35b6106ec60048036038101906106e791906137dd565b6117e5565b005b60006106f982611bc6565b9050919050565b60606000805461070f90614662565b80601f016020809104026020016040519081016040528092919081815260200182805461073b90614662565b80156107885780601f1061075d57610100808354040283529160200191610788565b820191906000526020600020905b81548152906001019060200180831161076b57829003601f168201915b5050505050905090565b600061079d82611c40565b6107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390614266565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082282610d48565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a906142c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108b2611cac565b73ffffffffffffffffffffffffffffffffffffffff1614806108e157506108e0816108db611cac565b611640565b5b610920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091790614186565b60405180910390fd5b61092a8383611cb4565b505050565b6000600880549050905090565b61094d610947611cac565b82611d6d565b61098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098390614306565b60405180910390fd5b610997838383611e4b565b505050565b601060019054906101000a900460ff1681565b6109b7611cac565b73ffffffffffffffffffffffffffffffffffffffff166109d5610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290614286565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000610a6283610dfa565b8210610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a90614006565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b04611cac565b73ffffffffffffffffffffffffffffffffffffffff16610b22610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f90614286565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610bbf83838360405180602001604052806000815250611138565b505050565b6000610bce61092f565b8210610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0690614326565b60405180910390fd5b60088281548110610c2357610c22614858565b5b90600052602060002001549050919050565b610c3d611cac565b73ffffffffffffffffffffffffffffffffffffffff16610c5b610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890614286565b60405180910390fd5b6000610cbb61092f565b9050600f548382610ccc9190614480565b1115610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906140a6565b60405180910390fd5b60005b83811015610d42576000610d2261092f565b9050610d2e84826120b2565b508080610d3a906146c5565b915050610d10565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906141c6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e62906141a6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eba611cac565b73ffffffffffffffffffffffffffffffffffffffff16610ed8610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590614286565b60405180910390fd5b610f3860006120d0565b565b600e60009054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f7f611cac565b73ffffffffffffffffffffffffffffffffffffffff16610f9d610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90614286565b60405180910390fd5b600e60009054906101000a900460ff1615611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90614246565b60405180910390fd5b81601360146101000a81548160ff02191690831515021790555082600c90805190602001906110739291906132dc565b5080600d908051906020019061108a9291906132dc565b50505050565b60606001805461109f90614662565b80601f01602080910402602001604051908101604052809291908181526020018280546110cb90614662565b80156111185780601f106110ed57610100808354040283529160200191611118565b820191906000526020600020905b8154815290600101906020018083116110fb57829003601f168201915b5050505050905090565b61113461112d611cac565b8383612196565b5050565b611149611143611cac565b83611d6d565b611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90614306565b60405180910390fd5b61119484848484612303565b50505050565b6002600b5414156111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790614366565b60405180910390fd5b6002600b819055506111f0611cac565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613fe6565b60405180910390fd5b601060009054906101000a900460ff166112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390614126565b60405180910390fd5b612710601260006112bb611cac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826113019190614480565b1115611342576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611339906142e6565b60405180910390fd5b600f548161134e61092f565b6113589190614480565b1115611399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611390906141e6565b60405180910390fd5b348160006113a79190614507565b11156113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df90614106565b60405180910390fd5b60005b818110156114945760006113fd61092f565b9050600f5461140a61092f565b10156114805760016012600061141e611cac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114679190614480565b9250508190555061147f611479611cac565b826120b2565b5b50808061148c906146c5565b9150506113eb565b506001600b8190555050565b60606114ab82611c40565b6114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e1906142a6565b60405180910390fd5b60006114f461235f565b9050601360149054906101000a900460ff161561155f5760008151116115295760405180602001604052806000815250611557565b80611533846123f1565b600d60405160200161154793929190613e66565b6040516020818303038152906040525b9150506115a2565b600081511161157d576040518060200160405280600081525061159e565b8060405160200161158e9190613e4f565b6040516020818303038152906040525b9150505b919050565b6115af611cac565b73ffffffffffffffffffffffffffffffffffffffff166115cd610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a90614286565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b6116ef611cac565b73ffffffffffffffffffffffffffffffffffffffff1661170d610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90614286565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca90614046565b60405180910390fd5b6117dc816120d0565b50565b600f5481565b6002600b54141561182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290614366565b60405180910390fd5b6002600b8190555061183b611cac565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613fe6565b60405180910390fd5b601060019054906101000a900460ff166118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee90614126565b60405180910390fd5b61271060116000611906611cac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361194c9190614480565b111561198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906142e6565b60405180910390fd5b600f548261199961092f565b6119a39190614480565b11156119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db906141e6565b60405180910390fd5b348260006119f29190614507565b1115611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a90614106565b60405180910390fd5b6000611a6b611a40611cac565b604051602001611a509190613e34565b60405160208183030381529060405280519060200120612552565b90506000611a798284612582565b9050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290614346565b60405180910390fd5b60005b84811015611bb7576000611b2061092f565b9050600f54611b2d61092f565b1015611ba357600160116000611b41611cac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b8a9190614480565b92505081905550611ba2611b9c611cac565b826120b2565b5b508080611baf906146c5565b915050611b0e565b5050506001600b819055505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c395750611c38826125a9565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d2783610d48565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d7882611c40565b611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90614166565b60405180910390fd5b6000611dc283610d48565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e3157508373ffffffffffffffffffffffffffffffffffffffff16611e1984610792565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e425750611e418185611640565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e6b82610d48565b73ffffffffffffffffffffffffffffffffffffffff1614611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb890614066565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f28906140c6565b60405180910390fd5b611f3c83838361268b565b611f47600082611cb4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f979190614561565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fee9190614480565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ad83838361269b565b505050565b6120cc8282604051806020016040528060008152506126a0565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc906140e6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122f69190613f24565b60405180910390a3505050565b61230e848484611e4b565b61231a848484846126fb565b612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090614026565b60405180910390fd5b50505050565b6060600c805461236e90614662565b80601f016020809104026020016040519081016040528092919081815260200182805461239a90614662565b80156123e75780601f106123bc576101008083540402835291602001916123e7565b820191906000526020600020905b8154815290600101906020018083116123ca57829003601f168201915b5050505050905090565b60606000821415612439576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061254d565b600082905060005b6000821461246b578080612454906146c5565b915050600a8261246491906144d6565b9150612441565b60008167ffffffffffffffff81111561248757612486614887565b5b6040519080825280601f01601f1916602001820160405280156124b95781602001600182028036833780820191505090505b5090505b60008514612546576001826124d29190614561565b9150600a856124e1919061473c565b60306124ed9190614480565b60f81b81838151811061250357612502614858565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561253f91906144d6565b94506124bd565b8093505050505b919050565b6000816040516020016125659190613e97565b604051602081830303815290604052805190602001209050919050565b60008060006125918585612892565b9150915061259e81612915565b819250505092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061267457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612684575061268382612aea565b5b9050919050565b612696838383612b54565b505050565b505050565b6126aa8383612c68565b6126b760008484846126fb565b6126f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ed90614026565b60405180910390fd5b505050565b600061271c8473ffffffffffffffffffffffffffffffffffffffff16612e42565b15612885578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612745611cac565b8786866040518563ffffffff1660e01b81526004016127679493929190613ed8565b602060405180830381600087803b15801561278157600080fd5b505af19250505080156127b257506040513d601f19601f820116820180604052508101906127af91906136b8565b60015b612835573d80600081146127e2576040519150601f19603f3d011682016040523d82523d6000602084013e6127e7565b606091505b5060008151141561282d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282490614026565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061288a565b600190505b949350505050565b6000806041835114156128d45760008060006020860151925060408601519150606086015160001a90506128c887828585612e65565b9450945050505061290e565b6040835114156129055760008060208501519150604085015190506128fa868383612f72565b93509350505061290e565b60006002915091505b9250929050565b60006004811115612929576129286147cb565b5b81600481111561293c5761293b6147cb565b5b141561294757612ae7565b6001600481111561295b5761295a6147cb565b5b81600481111561296e5761296d6147cb565b5b14156129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a690613fa6565b60405180910390fd5b600260048111156129c3576129c26147cb565b5b8160048111156129d6576129d56147cb565b5b1415612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90613fc6565b60405180910390fd5b60036004811115612a2b57612a2a6147cb565b5b816004811115612a3e57612a3d6147cb565b5b1415612a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7690614146565b60405180910390fd5b600480811115612a9257612a916147cb565b5b816004811115612aa557612aa46147cb565b5b1415612ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612add90614206565b60405180910390fd5b5b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b5f838383612fd1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ba257612b9d81612fd6565b612be1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612be057612bdf838261301f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c2457612c1f8161318c565b612c63565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c6257612c61828261325d565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccf90614226565b60405180910390fd5b612ce181611c40565b15612d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1890614086565b60405180910390fd5b612d2d6000838361268b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d7d9190614480565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e3e6000838361269b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612ea0576000600391509150612f69565b601b8560ff1614158015612eb85750601c8560ff1614155b15612eca576000600491509150612f69565b600060018787878760405160008152602001604052604051612eef9493929190613f3f565b6020604051602081039080840390855afa158015612f11573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f6057600060019250925050612f69565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c612fb59190614480565b9050612fc387828885612e65565b935093505050935093915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161302c84610dfa565b6130369190614561565b905060006007600084815260200190815260200160002054905081811461311b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131a09190614561565b90506000600960008481526020019081526020016000205490506000600883815481106131d0576131cf614858565b5b9060005260206000200154905080600883815481106131f2576131f1614858565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061324157613240614829565b5b6001900381819060005260206000200160009055905550505050565b600061326883610dfa565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546132e890614662565b90600052602060002090601f01602090048101928261330a5760008555613351565b82601f1061332357805160ff1916838001178555613351565b82800160010185558215613351579182015b82811115613350578251825591602001919060010190613335565b5b50905061335e9190613362565b5090565b5b8082111561337b576000816000905550600101613363565b5090565b600061339261338d846143c6565b6143a1565b9050828152602081018484840111156133ae576133ad6148bb565b5b6133b9848285614620565b509392505050565b60006133d46133cf846143f7565b6143a1565b9050828152602081018484840111156133f0576133ef6148bb565b5b6133fb848285614620565b509392505050565b6000813590506134128161514c565b92915050565b60008135905061342781615163565b92915050565b60008135905061343c8161517a565b92915050565b6000815190506134518161517a565b92915050565b600082601f83011261346c5761346b6148b6565b5b813561347c84826020860161337f565b91505092915050565b600082601f83011261349a576134996148b6565b5b81356134aa8482602086016133c1565b91505092915050565b6000813590506134c281615191565b92915050565b6000602082840312156134de576134dd6148c5565b5b60006134ec84828501613403565b91505092915050565b6000806040838503121561350c5761350b6148c5565b5b600061351a85828601613403565b925050602061352b85828601613403565b9150509250929050565b60008060006060848603121561354e5761354d6148c5565b5b600061355c86828701613403565b935050602061356d86828701613403565b925050604061357e868287016134b3565b9150509250925092565b600080600080608085870312156135a2576135a16148c5565b5b60006135b087828801613403565b94505060206135c187828801613403565b93505060406135d2878288016134b3565b925050606085013567ffffffffffffffff8111156135f3576135f26148c0565b5b6135ff87828801613457565b91505092959194509250565b60008060408385031215613622576136216148c5565b5b600061363085828601613403565b925050602061364185828601613418565b9150509250929050565b60008060408385031215613662576136616148c5565b5b600061367085828601613403565b9250506020613681858286016134b3565b9150509250929050565b6000602082840312156136a1576136a06148c5565b5b60006136af8482850161342d565b91505092915050565b6000602082840312156136ce576136cd6148c5565b5b60006136dc84828501613442565b91505092915050565b6000806000606084860312156136fe576136fd6148c5565b5b600084013567ffffffffffffffff81111561371c5761371b6148c0565b5b61372886828701613485565b935050602061373986828701613418565b925050604084013567ffffffffffffffff81111561375a576137596148c0565b5b61376686828701613485565b9150509250925092565b600060208284031215613786576137856148c5565b5b6000613794848285016134b3565b91505092915050565b600080604083850312156137b4576137b36148c5565b5b60006137c2858286016134b3565b92505060206137d385828601613403565b9150509250929050565b600080604083850312156137f4576137f36148c5565b5b6000613802858286016134b3565b925050602083013567ffffffffffffffff811115613823576138226148c0565b5b61382f85828601613457565b9150509250929050565b61384281614595565b82525050565b61385961385482614595565b61470e565b82525050565b613868816145a7565b82525050565b613877816145b3565b82525050565b61388e613889826145b3565b614720565b82525050565b600061389f8261443d565b6138a98185614453565b93506138b981856020860161462f565b6138c2816148ca565b840191505092915050565b60006138d882614448565b6138e28185614464565b93506138f281856020860161462f565b6138fb816148ca565b840191505092915050565b600061391182614448565b61391b8185614475565b935061392b81856020860161462f565b80840191505092915050565b6000815461394481614662565b61394e8186614475565b94506001821660008114613969576001811461397a576139ad565b60ff198316865281860193506139ad565b61398385614428565b60005b838110156139a557815481890152600182019150602081019050613986565b838801955050505b50505092915050565b60006139c3601883614464565b91506139ce826148e8565b602082019050919050565b60006139e6601f83614464565b91506139f182614911565b602082019050919050565b6000613a09602b83614464565b9150613a148261493a565b604082019050919050565b6000613a2c601c83614475565b9150613a3782614989565b601c82019050919050565b6000613a4f602b83614464565b9150613a5a826149b2565b604082019050919050565b6000613a72603283614464565b9150613a7d82614a01565b604082019050919050565b6000613a95602683614464565b9150613aa082614a50565b604082019050919050565b6000613ab8602583614464565b9150613ac382614a9f565b604082019050919050565b6000613adb601c83614464565b9150613ae682614aee565b602082019050919050565b6000613afe602583614464565b9150613b0982614b17565b604082019050919050565b6000613b21602483614464565b9150613b2c82614b66565b604082019050919050565b6000613b44601983614464565b9150613b4f82614bb5565b602082019050919050565b6000613b67601f83614464565b9150613b7282614bde565b602082019050919050565b6000613b8a602283614464565b9150613b9582614c07565b604082019050919050565b6000613bad602283614464565b9150613bb882614c56565b604082019050919050565b6000613bd0602c83614464565b9150613bdb82614ca5565b604082019050919050565b6000613bf3603883614464565b9150613bfe82614cf4565b604082019050919050565b6000613c16602a83614464565b9150613c2182614d43565b604082019050919050565b6000613c39602983614464565b9150613c4482614d92565b604082019050919050565b6000613c5c602a83614464565b9150613c6782614de1565b604082019050919050565b6000613c7f602283614464565b9150613c8a82614e30565b604082019050919050565b6000613ca2602083614464565b9150613cad82614e7f565b602082019050919050565b6000613cc5603d83614464565b9150613cd082614ea8565b604082019050919050565b6000613ce8602c83614464565b9150613cf382614ef7565b604082019050919050565b6000613d0b602083614464565b9150613d1682614f46565b602082019050919050565b6000613d2e602f83614464565b9150613d3982614f6f565b604082019050919050565b6000613d51602183614464565b9150613d5c82614fbe565b604082019050919050565b6000613d74601b83614464565b9150613d7f8261500d565b602082019050919050565b6000613d97603183614464565b9150613da282615036565b604082019050919050565b6000613dba602c83614464565b9150613dc582615085565b604082019050919050565b6000613ddd602a83614464565b9150613de8826150d4565b604082019050919050565b6000613e00601f83614464565b9150613e0b82615123565b602082019050919050565b613e1f81614609565b82525050565b613e2e81614613565b82525050565b6000613e408284613848565b60148201915081905092915050565b6000613e5b8284613906565b915081905092915050565b6000613e728286613906565b9150613e7e8285613906565b9150613e8a8284613937565b9150819050949350505050565b6000613ea282613a1f565b9150613eae828461387d565b60208201915081905092915050565b6000602082019050613ed26000830184613839565b92915050565b6000608082019050613eed6000830187613839565b613efa6020830186613839565b613f076040830185613e16565b8181036060830152613f198184613894565b905095945050505050565b6000602082019050613f39600083018461385f565b92915050565b6000608082019050613f54600083018761386e565b613f616020830186613e25565b613f6e604083018561386e565b613f7b606083018461386e565b95945050505050565b60006020820190508181036000830152613f9e81846138cd565b905092915050565b60006020820190508181036000830152613fbf816139b6565b9050919050565b60006020820190508181036000830152613fdf816139d9565b9050919050565b60006020820190508181036000830152613fff816139fc565b9050919050565b6000602082019050818103600083015261401f81613a42565b9050919050565b6000602082019050818103600083015261403f81613a65565b9050919050565b6000602082019050818103600083015261405f81613a88565b9050919050565b6000602082019050818103600083015261407f81613aab565b9050919050565b6000602082019050818103600083015261409f81613ace565b9050919050565b600060208201905081810360008301526140bf81613af1565b9050919050565b600060208201905081810360008301526140df81613b14565b9050919050565b600060208201905081810360008301526140ff81613b37565b9050919050565b6000602082019050818103600083015261411f81613b5a565b9050919050565b6000602082019050818103600083015261413f81613b7d565b9050919050565b6000602082019050818103600083015261415f81613ba0565b9050919050565b6000602082019050818103600083015261417f81613bc3565b9050919050565b6000602082019050818103600083015261419f81613be6565b9050919050565b600060208201905081810360008301526141bf81613c09565b9050919050565b600060208201905081810360008301526141df81613c2c565b9050919050565b600060208201905081810360008301526141ff81613c4f565b9050919050565b6000602082019050818103600083015261421f81613c72565b9050919050565b6000602082019050818103600083015261423f81613c95565b9050919050565b6000602082019050818103600083015261425f81613cb8565b9050919050565b6000602082019050818103600083015261427f81613cdb565b9050919050565b6000602082019050818103600083015261429f81613cfe565b9050919050565b600060208201905081810360008301526142bf81613d21565b9050919050565b600060208201905081810360008301526142df81613d44565b9050919050565b600060208201905081810360008301526142ff81613d67565b9050919050565b6000602082019050818103600083015261431f81613d8a565b9050919050565b6000602082019050818103600083015261433f81613dad565b9050919050565b6000602082019050818103600083015261435f81613dd0565b9050919050565b6000602082019050818103600083015261437f81613df3565b9050919050565b600060208201905061439b6000830184613e16565b92915050565b60006143ab6143bc565b90506143b78282614694565b919050565b6000604051905090565b600067ffffffffffffffff8211156143e1576143e0614887565b5b6143ea826148ca565b9050602081019050919050565b600067ffffffffffffffff82111561441257614411614887565b5b61441b826148ca565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061448b82614609565b915061449683614609565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144cb576144ca61476d565b5b828201905092915050565b60006144e182614609565b91506144ec83614609565b9250826144fc576144fb61479c565b5b828204905092915050565b600061451282614609565b915061451d83614609565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145565761455561476d565b5b828202905092915050565b600061456c82614609565b915061457783614609565b92508282101561458a5761458961476d565b5b828203905092915050565b60006145a0826145e9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561464d578082015181840152602081019050614632565b8381111561465c576000848401525b50505050565b6000600282049050600182168061467a57607f821691505b6020821081141561468e5761468d6147fa565b5b50919050565b61469d826148ca565b810181811067ffffffffffffffff821117156146bc576146bb614887565b5b80604052505050565b60006146d082614609565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147035761470261476d565b5b600182019050919050565b60006147198261472a565b9050919050565b6000819050919050565b6000614735826148db565b9050919050565b600061474782614609565b915061475283614609565b9250826147625761476161479c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f546869732066756e6374696f6e206973206f6e6c792063616c6c61626c65206660008201527f726f6d20616e20454f412e000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5765206861766520616c7265616479206869742074686520726573657276652060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f546865206d65746164617461205552492069732066726f7a656e2e20596f752060008201527f63616e206e6f206c6f6e67657220736574207468652062617365555249000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f546865207369676e617475726520666f722074686520677265656e6c6973742060008201527f697320696e76616c696400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61515581614595565b811461516057600080fd5b50565b61516c816145a7565b811461517757600080fd5b50565b615183816145bd565b811461518e57600080fd5b50565b61519a81614609565b81146151a557600080fd5b5056fea2646970667358221220398228707c0e003feae1d3f2b58efb5f4618bfce0b30edc6c10e4d8d231332d264736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c634d03211610095578063eb8d244411610064578063eb8d244414610653578063f2fde38b1461067e578063f47c84c5146106a7578063f7f7bf7b146106d2576101cd565b8063c634d032146105a6578063c87b56dd146105c2578063d111515d146105ff578063e985e9c514610616576101cd565b806393b15295116100d157806393b152951461050057806395d89b4114610529578063a22cb46514610554578063b88d4fde1461057d576101cd565b8063715018a6146104935780638529ccad146104aa5780638da5cb5b146104d5576101cd565b80632da435f71161016f5780634f6ccce71161013e5780634f6ccce7146103b357806353d4c775146103f05780636352211e1461041957806370a0823114610456576101cd565b80632da435f71461031f5780632f745c591461033657806334918dfd1461037357806342842e0e1461038a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632541865c146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061368b565b6106ee565b6040516102069190613f24565b60405180910390f35b34801561021b57600080fd5b50610224610700565b6040516102319190613f84565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613770565b610792565b60405161026e9190613ebd565b60405180910390f35b34801561028357600080fd5b5061029e6004803603810190610299919061364b565b610817565b005b3480156102ac57600080fd5b506102b561092f565b6040516102c29190614386565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613535565b61093c565b005b34801561030057600080fd5b5061030961099c565b6040516103169190613f24565b60405180910390f35b34801561032b57600080fd5b506103346109af565b005b34801561034257600080fd5b5061035d6004803603810190610358919061364b565b610a57565b60405161036a9190614386565b60405180910390f35b34801561037f57600080fd5b50610388610afc565b005b34801561039657600080fd5b506103b160048036038101906103ac9190613535565b610ba4565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190613770565b610bc4565b6040516103e79190614386565b60405180910390f35b3480156103fc57600080fd5b506104176004803603810190610412919061379d565b610c35565b005b34801561042557600080fd5b50610440600480360381019061043b9190613770565b610d48565b60405161044d9190613ebd565b60405180910390f35b34801561046257600080fd5b5061047d600480360381019061047891906134c8565b610dfa565b60405161048a9190614386565b60405180910390f35b34801561049f57600080fd5b506104a8610eb2565b005b3480156104b657600080fd5b506104bf610f3a565b6040516104cc9190613f24565b60405180910390f35b3480156104e157600080fd5b506104ea610f4d565b6040516104f79190613ebd565b60405180910390f35b34801561050c57600080fd5b50610527600480360381019061052291906136e5565b610f77565b005b34801561053557600080fd5b5061053e611090565b60405161054b9190613f84565b60405180910390f35b34801561056057600080fd5b5061057b6004803603810190610576919061360b565b611122565b005b34801561058957600080fd5b506105a4600480360381019061059f9190613588565b611138565b005b6105c060048036038101906105bb9190613770565b61119a565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190613770565b6114a0565b6040516105f69190613f84565b60405180910390f35b34801561060b57600080fd5b506106146115a7565b005b34801561062257600080fd5b5061063d600480360381019061063891906134f5565b611640565b60405161064a9190613f24565b60405180910390f35b34801561065f57600080fd5b506106686116d4565b6040516106759190613f24565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a091906134c8565b6116e7565b005b3480156106b357600080fd5b506106bc6117df565b6040516106c99190614386565b60405180910390f35b6106ec60048036038101906106e791906137dd565b6117e5565b005b60006106f982611bc6565b9050919050565b60606000805461070f90614662565b80601f016020809104026020016040519081016040528092919081815260200182805461073b90614662565b80156107885780601f1061075d57610100808354040283529160200191610788565b820191906000526020600020905b81548152906001019060200180831161076b57829003601f168201915b5050505050905090565b600061079d82611c40565b6107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390614266565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082282610d48565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a906142c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108b2611cac565b73ffffffffffffffffffffffffffffffffffffffff1614806108e157506108e0816108db611cac565b611640565b5b610920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091790614186565b60405180910390fd5b61092a8383611cb4565b505050565b6000600880549050905090565b61094d610947611cac565b82611d6d565b61098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098390614306565b60405180910390fd5b610997838383611e4b565b505050565b601060019054906101000a900460ff1681565b6109b7611cac565b73ffffffffffffffffffffffffffffffffffffffff166109d5610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290614286565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000610a6283610dfa565b8210610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a90614006565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b04611cac565b73ffffffffffffffffffffffffffffffffffffffff16610b22610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f90614286565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610bbf83838360405180602001604052806000815250611138565b505050565b6000610bce61092f565b8210610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0690614326565b60405180910390fd5b60088281548110610c2357610c22614858565b5b90600052602060002001549050919050565b610c3d611cac565b73ffffffffffffffffffffffffffffffffffffffff16610c5b610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890614286565b60405180910390fd5b6000610cbb61092f565b9050600f548382610ccc9190614480565b1115610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906140a6565b60405180910390fd5b60005b83811015610d42576000610d2261092f565b9050610d2e84826120b2565b508080610d3a906146c5565b915050610d10565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906141c6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e62906141a6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eba611cac565b73ffffffffffffffffffffffffffffffffffffffff16610ed8610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590614286565b60405180910390fd5b610f3860006120d0565b565b600e60009054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f7f611cac565b73ffffffffffffffffffffffffffffffffffffffff16610f9d610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90614286565b60405180910390fd5b600e60009054906101000a900460ff1615611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90614246565b60405180910390fd5b81601360146101000a81548160ff02191690831515021790555082600c90805190602001906110739291906132dc565b5080600d908051906020019061108a9291906132dc565b50505050565b60606001805461109f90614662565b80601f01602080910402602001604051908101604052809291908181526020018280546110cb90614662565b80156111185780601f106110ed57610100808354040283529160200191611118565b820191906000526020600020905b8154815290600101906020018083116110fb57829003601f168201915b5050505050905090565b61113461112d611cac565b8383612196565b5050565b611149611143611cac565b83611d6d565b611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90614306565b60405180910390fd5b61119484848484612303565b50505050565b6002600b5414156111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790614366565b60405180910390fd5b6002600b819055506111f0611cac565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613fe6565b60405180910390fd5b601060009054906101000a900460ff166112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390614126565b60405180910390fd5b612710601260006112bb611cac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826113019190614480565b1115611342576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611339906142e6565b60405180910390fd5b600f548161134e61092f565b6113589190614480565b1115611399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611390906141e6565b60405180910390fd5b348160006113a79190614507565b11156113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df90614106565b60405180910390fd5b60005b818110156114945760006113fd61092f565b9050600f5461140a61092f565b10156114805760016012600061141e611cac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114679190614480565b9250508190555061147f611479611cac565b826120b2565b5b50808061148c906146c5565b9150506113eb565b506001600b8190555050565b60606114ab82611c40565b6114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e1906142a6565b60405180910390fd5b60006114f461235f565b9050601360149054906101000a900460ff161561155f5760008151116115295760405180602001604052806000815250611557565b80611533846123f1565b600d60405160200161154793929190613e66565b6040516020818303038152906040525b9150506115a2565b600081511161157d576040518060200160405280600081525061159e565b8060405160200161158e9190613e4f565b6040516020818303038152906040525b9150505b919050565b6115af611cac565b73ffffffffffffffffffffffffffffffffffffffff166115cd610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a90614286565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b6116ef611cac565b73ffffffffffffffffffffffffffffffffffffffff1661170d610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90614286565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca90614046565b60405180910390fd5b6117dc816120d0565b50565b600f5481565b6002600b54141561182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290614366565b60405180910390fd5b6002600b8190555061183b611cac565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613fe6565b60405180910390fd5b601060019054906101000a900460ff166118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee90614126565b60405180910390fd5b61271060116000611906611cac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361194c9190614480565b111561198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906142e6565b60405180910390fd5b600f548261199961092f565b6119a39190614480565b11156119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db906141e6565b60405180910390fd5b348260006119f29190614507565b1115611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a90614106565b60405180910390fd5b6000611a6b611a40611cac565b604051602001611a509190613e34565b60405160208183030381529060405280519060200120612552565b90506000611a798284612582565b9050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290614346565b60405180910390fd5b60005b84811015611bb7576000611b2061092f565b9050600f54611b2d61092f565b1015611ba357600160116000611b41611cac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b8a9190614480565b92505081905550611ba2611b9c611cac565b826120b2565b5b508080611baf906146c5565b915050611b0e565b5050506001600b819055505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c395750611c38826125a9565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d2783610d48565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d7882611c40565b611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90614166565b60405180910390fd5b6000611dc283610d48565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e3157508373ffffffffffffffffffffffffffffffffffffffff16611e1984610792565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e425750611e418185611640565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e6b82610d48565b73ffffffffffffffffffffffffffffffffffffffff1614611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb890614066565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f28906140c6565b60405180910390fd5b611f3c83838361268b565b611f47600082611cb4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f979190614561565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fee9190614480565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ad83838361269b565b505050565b6120cc8282604051806020016040528060008152506126a0565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc906140e6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122f69190613f24565b60405180910390a3505050565b61230e848484611e4b565b61231a848484846126fb565b612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090614026565b60405180910390fd5b50505050565b6060600c805461236e90614662565b80601f016020809104026020016040519081016040528092919081815260200182805461239a90614662565b80156123e75780601f106123bc576101008083540402835291602001916123e7565b820191906000526020600020905b8154815290600101906020018083116123ca57829003601f168201915b5050505050905090565b60606000821415612439576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061254d565b600082905060005b6000821461246b578080612454906146c5565b915050600a8261246491906144d6565b9150612441565b60008167ffffffffffffffff81111561248757612486614887565b5b6040519080825280601f01601f1916602001820160405280156124b95781602001600182028036833780820191505090505b5090505b60008514612546576001826124d29190614561565b9150600a856124e1919061473c565b60306124ed9190614480565b60f81b81838151811061250357612502614858565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561253f91906144d6565b94506124bd565b8093505050505b919050565b6000816040516020016125659190613e97565b604051602081830303815290604052805190602001209050919050565b60008060006125918585612892565b9150915061259e81612915565b819250505092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061267457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612684575061268382612aea565b5b9050919050565b612696838383612b54565b505050565b505050565b6126aa8383612c68565b6126b760008484846126fb565b6126f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ed90614026565b60405180910390fd5b505050565b600061271c8473ffffffffffffffffffffffffffffffffffffffff16612e42565b15612885578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612745611cac565b8786866040518563ffffffff1660e01b81526004016127679493929190613ed8565b602060405180830381600087803b15801561278157600080fd5b505af19250505080156127b257506040513d601f19601f820116820180604052508101906127af91906136b8565b60015b612835573d80600081146127e2576040519150601f19603f3d011682016040523d82523d6000602084013e6127e7565b606091505b5060008151141561282d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282490614026565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061288a565b600190505b949350505050565b6000806041835114156128d45760008060006020860151925060408601519150606086015160001a90506128c887828585612e65565b9450945050505061290e565b6040835114156129055760008060208501519150604085015190506128fa868383612f72565b93509350505061290e565b60006002915091505b9250929050565b60006004811115612929576129286147cb565b5b81600481111561293c5761293b6147cb565b5b141561294757612ae7565b6001600481111561295b5761295a6147cb565b5b81600481111561296e5761296d6147cb565b5b14156129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a690613fa6565b60405180910390fd5b600260048111156129c3576129c26147cb565b5b8160048111156129d6576129d56147cb565b5b1415612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90613fc6565b60405180910390fd5b60036004811115612a2b57612a2a6147cb565b5b816004811115612a3e57612a3d6147cb565b5b1415612a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7690614146565b60405180910390fd5b600480811115612a9257612a916147cb565b5b816004811115612aa557612aa46147cb565b5b1415612ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612add90614206565b60405180910390fd5b5b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b5f838383612fd1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ba257612b9d81612fd6565b612be1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612be057612bdf838261301f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c2457612c1f8161318c565b612c63565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c6257612c61828261325d565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccf90614226565b60405180910390fd5b612ce181611c40565b15612d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1890614086565b60405180910390fd5b612d2d6000838361268b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d7d9190614480565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e3e6000838361269b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612ea0576000600391509150612f69565b601b8560ff1614158015612eb85750601c8560ff1614155b15612eca576000600491509150612f69565b600060018787878760405160008152602001604052604051612eef9493929190613f3f565b6020604051602081039080840390855afa158015612f11573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f6057600060019250925050612f69565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c612fb59190614480565b9050612fc387828885612e65565b935093505050935093915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161302c84610dfa565b6130369190614561565b905060006007600084815260200190815260200160002054905081811461311b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131a09190614561565b90506000600960008481526020019081526020016000205490506000600883815481106131d0576131cf614858565b5b9060005260206000200154905080600883815481106131f2576131f1614858565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061324157613240614829565b5b6001900381819060005260206000200160009055905550505050565b600061326883610dfa565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546132e890614662565b90600052602060002090601f01602090048101928261330a5760008555613351565b82601f1061332357805160ff1916838001178555613351565b82800160010185558215613351579182015b82811115613350578251825591602001919060010190613335565b5b50905061335e9190613362565b5090565b5b8082111561337b576000816000905550600101613363565b5090565b600061339261338d846143c6565b6143a1565b9050828152602081018484840111156133ae576133ad6148bb565b5b6133b9848285614620565b509392505050565b60006133d46133cf846143f7565b6143a1565b9050828152602081018484840111156133f0576133ef6148bb565b5b6133fb848285614620565b509392505050565b6000813590506134128161514c565b92915050565b60008135905061342781615163565b92915050565b60008135905061343c8161517a565b92915050565b6000815190506134518161517a565b92915050565b600082601f83011261346c5761346b6148b6565b5b813561347c84826020860161337f565b91505092915050565b600082601f83011261349a576134996148b6565b5b81356134aa8482602086016133c1565b91505092915050565b6000813590506134c281615191565b92915050565b6000602082840312156134de576134dd6148c5565b5b60006134ec84828501613403565b91505092915050565b6000806040838503121561350c5761350b6148c5565b5b600061351a85828601613403565b925050602061352b85828601613403565b9150509250929050565b60008060006060848603121561354e5761354d6148c5565b5b600061355c86828701613403565b935050602061356d86828701613403565b925050604061357e868287016134b3565b9150509250925092565b600080600080608085870312156135a2576135a16148c5565b5b60006135b087828801613403565b94505060206135c187828801613403565b93505060406135d2878288016134b3565b925050606085013567ffffffffffffffff8111156135f3576135f26148c0565b5b6135ff87828801613457565b91505092959194509250565b60008060408385031215613622576136216148c5565b5b600061363085828601613403565b925050602061364185828601613418565b9150509250929050565b60008060408385031215613662576136616148c5565b5b600061367085828601613403565b9250506020613681858286016134b3565b9150509250929050565b6000602082840312156136a1576136a06148c5565b5b60006136af8482850161342d565b91505092915050565b6000602082840312156136ce576136cd6148c5565b5b60006136dc84828501613442565b91505092915050565b6000806000606084860312156136fe576136fd6148c5565b5b600084013567ffffffffffffffff81111561371c5761371b6148c0565b5b61372886828701613485565b935050602061373986828701613418565b925050604084013567ffffffffffffffff81111561375a576137596148c0565b5b61376686828701613485565b9150509250925092565b600060208284031215613786576137856148c5565b5b6000613794848285016134b3565b91505092915050565b600080604083850312156137b4576137b36148c5565b5b60006137c2858286016134b3565b92505060206137d385828601613403565b9150509250929050565b600080604083850312156137f4576137f36148c5565b5b6000613802858286016134b3565b925050602083013567ffffffffffffffff811115613823576138226148c0565b5b61382f85828601613457565b9150509250929050565b61384281614595565b82525050565b61385961385482614595565b61470e565b82525050565b613868816145a7565b82525050565b613877816145b3565b82525050565b61388e613889826145b3565b614720565b82525050565b600061389f8261443d565b6138a98185614453565b93506138b981856020860161462f565b6138c2816148ca565b840191505092915050565b60006138d882614448565b6138e28185614464565b93506138f281856020860161462f565b6138fb816148ca565b840191505092915050565b600061391182614448565b61391b8185614475565b935061392b81856020860161462f565b80840191505092915050565b6000815461394481614662565b61394e8186614475565b94506001821660008114613969576001811461397a576139ad565b60ff198316865281860193506139ad565b61398385614428565b60005b838110156139a557815481890152600182019150602081019050613986565b838801955050505b50505092915050565b60006139c3601883614464565b91506139ce826148e8565b602082019050919050565b60006139e6601f83614464565b91506139f182614911565b602082019050919050565b6000613a09602b83614464565b9150613a148261493a565b604082019050919050565b6000613a2c601c83614475565b9150613a3782614989565b601c82019050919050565b6000613a4f602b83614464565b9150613a5a826149b2565b604082019050919050565b6000613a72603283614464565b9150613a7d82614a01565b604082019050919050565b6000613a95602683614464565b9150613aa082614a50565b604082019050919050565b6000613ab8602583614464565b9150613ac382614a9f565b604082019050919050565b6000613adb601c83614464565b9150613ae682614aee565b602082019050919050565b6000613afe602583614464565b9150613b0982614b17565b604082019050919050565b6000613b21602483614464565b9150613b2c82614b66565b604082019050919050565b6000613b44601983614464565b9150613b4f82614bb5565b602082019050919050565b6000613b67601f83614464565b9150613b7282614bde565b602082019050919050565b6000613b8a602283614464565b9150613b9582614c07565b604082019050919050565b6000613bad602283614464565b9150613bb882614c56565b604082019050919050565b6000613bd0602c83614464565b9150613bdb82614ca5565b604082019050919050565b6000613bf3603883614464565b9150613bfe82614cf4565b604082019050919050565b6000613c16602a83614464565b9150613c2182614d43565b604082019050919050565b6000613c39602983614464565b9150613c4482614d92565b604082019050919050565b6000613c5c602a83614464565b9150613c6782614de1565b604082019050919050565b6000613c7f602283614464565b9150613c8a82614e30565b604082019050919050565b6000613ca2602083614464565b9150613cad82614e7f565b602082019050919050565b6000613cc5603d83614464565b9150613cd082614ea8565b604082019050919050565b6000613ce8602c83614464565b9150613cf382614ef7565b604082019050919050565b6000613d0b602083614464565b9150613d1682614f46565b602082019050919050565b6000613d2e602f83614464565b9150613d3982614f6f565b604082019050919050565b6000613d51602183614464565b9150613d5c82614fbe565b604082019050919050565b6000613d74601b83614464565b9150613d7f8261500d565b602082019050919050565b6000613d97603183614464565b9150613da282615036565b604082019050919050565b6000613dba602c83614464565b9150613dc582615085565b604082019050919050565b6000613ddd602a83614464565b9150613de8826150d4565b604082019050919050565b6000613e00601f83614464565b9150613e0b82615123565b602082019050919050565b613e1f81614609565b82525050565b613e2e81614613565b82525050565b6000613e408284613848565b60148201915081905092915050565b6000613e5b8284613906565b915081905092915050565b6000613e728286613906565b9150613e7e8285613906565b9150613e8a8284613937565b9150819050949350505050565b6000613ea282613a1f565b9150613eae828461387d565b60208201915081905092915050565b6000602082019050613ed26000830184613839565b92915050565b6000608082019050613eed6000830187613839565b613efa6020830186613839565b613f076040830185613e16565b8181036060830152613f198184613894565b905095945050505050565b6000602082019050613f39600083018461385f565b92915050565b6000608082019050613f54600083018761386e565b613f616020830186613e25565b613f6e604083018561386e565b613f7b606083018461386e565b95945050505050565b60006020820190508181036000830152613f9e81846138cd565b905092915050565b60006020820190508181036000830152613fbf816139b6565b9050919050565b60006020820190508181036000830152613fdf816139d9565b9050919050565b60006020820190508181036000830152613fff816139fc565b9050919050565b6000602082019050818103600083015261401f81613a42565b9050919050565b6000602082019050818103600083015261403f81613a65565b9050919050565b6000602082019050818103600083015261405f81613a88565b9050919050565b6000602082019050818103600083015261407f81613aab565b9050919050565b6000602082019050818103600083015261409f81613ace565b9050919050565b600060208201905081810360008301526140bf81613af1565b9050919050565b600060208201905081810360008301526140df81613b14565b9050919050565b600060208201905081810360008301526140ff81613b37565b9050919050565b6000602082019050818103600083015261411f81613b5a565b9050919050565b6000602082019050818103600083015261413f81613b7d565b9050919050565b6000602082019050818103600083015261415f81613ba0565b9050919050565b6000602082019050818103600083015261417f81613bc3565b9050919050565b6000602082019050818103600083015261419f81613be6565b9050919050565b600060208201905081810360008301526141bf81613c09565b9050919050565b600060208201905081810360008301526141df81613c2c565b9050919050565b600060208201905081810360008301526141ff81613c4f565b9050919050565b6000602082019050818103600083015261421f81613c72565b9050919050565b6000602082019050818103600083015261423f81613c95565b9050919050565b6000602082019050818103600083015261425f81613cb8565b9050919050565b6000602082019050818103600083015261427f81613cdb565b9050919050565b6000602082019050818103600083015261429f81613cfe565b9050919050565b600060208201905081810360008301526142bf81613d21565b9050919050565b600060208201905081810360008301526142df81613d44565b9050919050565b600060208201905081810360008301526142ff81613d67565b9050919050565b6000602082019050818103600083015261431f81613d8a565b9050919050565b6000602082019050818103600083015261433f81613dad565b9050919050565b6000602082019050818103600083015261435f81613dd0565b9050919050565b6000602082019050818103600083015261437f81613df3565b9050919050565b600060208201905061439b6000830184613e16565b92915050565b60006143ab6143bc565b90506143b78282614694565b919050565b6000604051905090565b600067ffffffffffffffff8211156143e1576143e0614887565b5b6143ea826148ca565b9050602081019050919050565b600067ffffffffffffffff82111561441257614411614887565b5b61441b826148ca565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061448b82614609565b915061449683614609565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144cb576144ca61476d565b5b828201905092915050565b60006144e182614609565b91506144ec83614609565b9250826144fc576144fb61479c565b5b828204905092915050565b600061451282614609565b915061451d83614609565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145565761455561476d565b5b828202905092915050565b600061456c82614609565b915061457783614609565b92508282101561458a5761458961476d565b5b828203905092915050565b60006145a0826145e9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561464d578082015181840152602081019050614632565b8381111561465c576000848401525b50505050565b6000600282049050600182168061467a57607f821691505b6020821081141561468e5761468d6147fa565b5b50919050565b61469d826148ca565b810181811067ffffffffffffffff821117156146bc576146bb614887565b5b80604052505050565b60006146d082614609565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147035761470261476d565b5b600182019050919050565b60006147198261472a565b9050919050565b6000819050919050565b6000614735826148db565b9050919050565b600061474782614609565b915061475283614609565b9250826147625761476161479c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f546869732066756e6374696f6e206973206f6e6c792063616c6c61626c65206660008201527f726f6d20616e20454f412e000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5765206861766520616c7265616479206869742074686520726573657276652060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f546865206d65746164617461205552492069732066726f7a656e2e20596f752060008201527f63616e206e6f206c6f6e67657220736574207468652062617365555249000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f546865207369676e617475726520666f722074686520677265656e6c6973742060008201527f697320696e76616c696400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61515581614595565b811461516057600080fd5b50565b61516c816145a7565b811461517757600080fd5b50565b615183816145bd565b811461518e57600080fd5b50565b61519a81614609565b81146151a557600080fd5b5056fea2646970667358221220398228707c0e003feae1d3f2b58efb5f4618bfce0b30edc6c10e4d8d231332d264736f6c63430008070033
Deployed Bytecode Sourcemap
57985:4773:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58807:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22665:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24224:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23747:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40107:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24974:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58321:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59109:120;;;;;;;;;;;;;:::i;:::-;;39775:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59000:93;;;;;;;;;;;;;:::i;:::-;;25384:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40297:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62378:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22359:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22089:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36551:103;;;;;;;;;;;;;:::i;:::-;;58201:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35900:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59239:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22834:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24517:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25640:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60342:833;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59803:525;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59710:85;;;;;;;;;;;;;:::i;:::-;;24743:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58282:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36809:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58242:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61191:1167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58807:179;58918:4;58942:36;58966:11;58942:23;:36::i;:::-;58935:43;;58807:179;;;:::o;22665:100::-;22719:13;22752:5;22745:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22665:100;:::o;24224:221::-;24300:7;24328:16;24336:7;24328;:16::i;:::-;24320:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24413:15;:24;24429:7;24413:24;;;;;;;;;;;;;;;;;;;;;24406:31;;24224:221;;;:::o;23747:411::-;23828:13;23844:23;23859:7;23844:14;:23::i;:::-;23828:39;;23892:5;23886:11;;:2;:11;;;;23878:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23986:5;23970:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23995:37;24012:5;24019:12;:10;:12::i;:::-;23995:16;:37::i;:::-;23970:62;23948:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24129:21;24138:2;24142:7;24129:8;:21::i;:::-;23817:341;23747:411;;:::o;40107:113::-;40168:7;40195:10;:17;;;;40188:24;;40107:113;:::o;24974:339::-;25169:41;25188:12;:10;:12::i;:::-;25202:7;25169:18;:41::i;:::-;25161:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25277:28;25287:4;25293:2;25297:7;25277:9;:28::i;:::-;24974:339;;;:::o;58321:41::-;;;;;;;;;;;;;:::o;59109:120::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59200:21:::1;;;;;;;;;;;59199:22;59175:21;;:46;;;;;;;;;;;;;;;;;;59109:120::o:0;39775:256::-;39872:7;39908:23;39925:5;39908:16;:23::i;:::-;39900:5;:31;39892:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39997:12;:19;40010:5;39997:19;;;;;;;;;;;;;;;:26;40017:5;39997:26;;;;;;;;;;;;39990:33;;39775:256;;;;:::o;59000:93::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59073:12:::1;;;;;;;;;;;59072:13;59057:12;;:28;;;;;;;;;;;;;;;;;;59000:93::o:0;25384:185::-;25522:39;25539:4;25545:2;25549:7;25522:39;;;;;;;;;;;;:16;:39::i;:::-;25384:185;;;:::o;40297:233::-;40372:7;40408:30;:28;:30::i;:::-;40400:5;:38;40392:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40505:10;40516:5;40505:17;;;;;;;;:::i;:::-;;;;;;;;;;40498:24;;40297:233;;;:::o;62378:373::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62463:11:::1;62477:13;:11;:13::i;:::-;62463:27;;62530:10;;62518:8;62509:6;:17;;;;:::i;:::-;:31;;62501:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;62593:6;62610:134;62626:8;62622:1;:12;62610:134;;;62656:14;62673:13;:11;:13::i;:::-;62656:30;;62701:31;62711:9;62722;62701;:31::i;:::-;62641:103;62636:3;;;;;:::i;:::-;;;;62610:134;;;62452:299;;62378:373:::0;;:::o;22359:239::-;22431:7;22451:13;22467:7;:16;22475:7;22467:16;;;;;;;;;;;;;;;;;;;;;22451:32;;22519:1;22502:19;;:5;:19;;;;22494:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22585:5;22578:12;;;22359:239;;;:::o;22089:208::-;22161:7;22206:1;22189:19;;:5;:19;;;;22181:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22273:9;:16;22283:5;22273:16;;;;;;;;;;;;;;;;22266:23;;22089:208;;;:::o;36551:103::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36616:30:::1;36643:1;36616:18;:30::i;:::-;36551:103::o:0;58201:34::-;;;;;;;;;;;;;:::o;35900:87::-;35946:7;35973:6;;;;;;;;;;;35966:13;;35900:87;:::o;59239:338::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59367:14:::1;;;;;;;;;;;59366:15;59358:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;59483:14;59458:22;;:39;;;;;;;;;;;;;;;;;;59527:8;59508:16;:27;;;;;;;;;;;;:::i;:::-;;59563:6;59546:14;:23;;;;;;;;;;;;:::i;:::-;;59239:338:::0;;;:::o;22834:104::-;22890:13;22923:7;22916:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22834:104;:::o;24517:155::-;24612:52;24631:12;:10;:12::i;:::-;24645:8;24655;24612:18;:52::i;:::-;24517:155;;:::o;25640:328::-;25815:41;25834:12;:10;:12::i;:::-;25848:7;25815:18;:41::i;:::-;25807:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25921:39;25935:4;25941:2;25945:7;25954:5;25921:13;:39::i;:::-;25640:328;;;;:::o;60342:833::-;47431:1;48029:7;;:19;;48021:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47431:1;48162:7;:18;;;;60442:12:::1;:10;:12::i;:::-;60429:25;;:9;:25;;;60421:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;60521:12;;;;;;;;;;;60513:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;60647:5;60608:21;:35;60630:12;:10;:12::i;:::-;60608:35;;;;;;;;;;;;;;;;60591:14;:52;;;;:::i;:::-;:61;;60583:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;60739:10;;60721:14;60705:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;60697:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;60837:9;60819:14;60815:1;:18;;;;:::i;:::-;:31;;60807:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;60900:6;60895:273;60916:14;60912:1;:18;60895:273;;;60952:14;60969:13;:11;:13::i;:::-;60952:30;;61017:10;;61001:13;:11;:13::i;:::-;:26;60997:160;;;61087:1;61048:21;:35;61070:12;:10;:12::i;:::-;61048:35;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;61107:34;61117:12;:10;:12::i;:::-;61131:9;61107;:34::i;:::-;60997:160;60937:231;60932:3;;;;;:::i;:::-;;;;60895:273;;;;47387:1:::0;48341:7;:22;;;;60342:833;:::o;59803:525::-;59876:13;59910:16;59918:7;59910;:16::i;:::-;59902:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;59991:21;60015:10;:8;:10::i;:::-;59991:34;;60040:22;;;;;;;;;;;60036:285;;;60110:1;60092:7;60086:21;:25;:109;;;;;;;;;;;;;;;;;60138:7;60147:25;60164:7;60147:16;:25::i;:::-;60174:14;60121:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60086:109;60079:116;;;;;60036:285;60267:1;60249:7;60243:21;:25;:66;;;;;;;;;;;;;;;;;60295:7;60278:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;60243:66;60236:73;;;59803:525;;;;:::o;59710:85::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59783:4:::1;59766:14;;:21;;;;;;;;;;;;;;;;;;59710:85::o:0;24743:164::-;24840:4;24864:18;:25;24883:5;24864:25;;;;;;;;;;;;;;;:35;24890:8;24864:35;;;;;;;;;;;;;;;;;;;;;;;;;24857:42;;24743:164;;;;:::o;58282:32::-;;;;;;;;;;;;;:::o;36809:201::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36918:1:::1;36898:22;;:8;:22;;;;36890:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36974:28;36993:8;36974:18;:28::i;:::-;36809:201:::0;:::o;58242:33::-;;;;:::o;61191:1167::-;47431:1;48029:7;;:19;;48021:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47431:1;48162:7;:18;;;;61324:12:::1;:10;:12::i;:::-;61311:25;;:9;:25;;;61303:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;61403:21;;;;;;;;;;;61395:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61547:5;61499:30;:44;61530:12;:10;:12::i;:::-;61499:44;;;;;;;;;;;;;;;;61482:14;:61;;;;:::i;:::-;:70;;61474:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;61637:10;;61619:14;61603:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;61595:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;61735:9;61717:14;61713:1;:18;;;;:::i;:::-;:31;;61705:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;61793:20;61816:71;61872:12;:10;:12::i;:::-;61855:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;61845:41;;;;;;61816:28;:71::i;:::-;61793:94;;61898:24;61925:38;61939:12;61953:9;61925:13;:38::i;:::-;61898:65;;62002:7;;;;;;;;;;;61982:27;;:16;:27;;;61974:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;62074:6;62069:282;62090:14;62086:1;:18;62069:282;;;62126:14;62143:13;:11;:13::i;:::-;62126:30;;62191:10;;62175:13;:11;:13::i;:::-;:26;62171:169;;;62270:1;62222:30;:44;62253:12;:10;:12::i;:::-;62222:44;;;;;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;;62290:34;62300:12;:10;:12::i;:::-;62314:9;62290;:34::i;:::-;62171:169;62111:240;62106:3;;;;;:::i;:::-;;;;62069:282;;;;61292:1066;;47387:1:::0;48341:7;:22;;;;61191:1167;;:::o;39467:224::-;39569:4;39608:35;39593:50;;;:11;:50;;;;:90;;;;39647:36;39671:11;39647:23;:36::i;:::-;39593:90;39586:97;;39467:224;;;:::o;27478:127::-;27543:4;27595:1;27567:30;;:7;:16;27575:7;27567:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27560:37;;27478:127;;;:::o;16932:98::-;16985:7;17012:10;17005:17;;16932:98;:::o;31624:174::-;31726:2;31699:15;:24;31715:7;31699:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31782:7;31778:2;31744:46;;31753:23;31768:7;31753:14;:23::i;:::-;31744:46;;;;;;;;;;;;31624:174;;:::o;27772:348::-;27865:4;27890:16;27898:7;27890;:16::i;:::-;27882:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27966:13;27982:23;27997:7;27982:14;:23::i;:::-;27966:39;;28035:5;28024:16;;:7;:16;;;:51;;;;28068:7;28044:31;;:20;28056:7;28044:11;:20::i;:::-;:31;;;28024:51;:87;;;;28079:32;28096:5;28103:7;28079:16;:32::i;:::-;28024:87;28016:96;;;27772:348;;;;:::o;30881:625::-;31040:4;31013:31;;:23;31028:7;31013:14;:23::i;:::-;:31;;;31005:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31119:1;31105:16;;:2;:16;;;;31097:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31175:39;31196:4;31202:2;31206:7;31175:20;:39::i;:::-;31279:29;31296:1;31300:7;31279:8;:29::i;:::-;31340:1;31321:9;:15;31331:4;31321:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31369:1;31352:9;:13;31362:2;31352:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31400:2;31381:7;:16;31389:7;31381:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31439:7;31435:2;31420:27;;31429:4;31420:27;;;;;;;;;;;;31460:38;31480:4;31486:2;31490:7;31460:19;:38::i;:::-;30881:625;;;:::o;28462:110::-;28538:26;28548:2;28552:7;28538:26;;;;;;;;;;;;:9;:26::i;:::-;28462:110;;:::o;37170:191::-;37244:16;37263:6;;;;;;;;;;;37244:25;;37289:8;37280:6;;:17;;;;;;;;;;;;;;;;;;37344:8;37313:40;;37334:8;37313:40;;;;;;;;;;;;37233:128;37170:191;:::o;31940:315::-;32095:8;32086:17;;:5;:17;;;;32078:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32182:8;32144:18;:25;32163:5;32144:25;;;;;;;;;;;;;;;:35;32170:8;32144:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32228:8;32206:41;;32221:5;32206:41;;;32238:8;32206:41;;;;;;:::i;:::-;;;;;;;;31940:315;;;:::o;26850:::-;27007:28;27017:4;27023:2;27027:7;27007:9;:28::i;:::-;27054:48;27077:4;27083:2;27087:7;27096:5;27054:22;:48::i;:::-;27046:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26850:315;;;;:::o;59585:117::-;59645:13;59678:16;59671:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59585:117;:::o;17517:723::-;17573:13;17803:1;17794:5;:10;17790:53;;;17821:10;;;;;;;;;;;;;;;;;;;;;17790:53;17853:12;17868:5;17853:20;;17884:14;17909:78;17924:1;17916:4;:9;17909:78;;17942:8;;;;;:::i;:::-;;;;17973:2;17965:10;;;;;:::i;:::-;;;17909:78;;;17997:19;18029:6;18019:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17997:39;;18047:154;18063:1;18054:5;:10;18047:154;;18091:1;18081:11;;;;;:::i;:::-;;;18158:2;18150:5;:10;;;;:::i;:::-;18137:2;:24;;;;:::i;:::-;18124:39;;18107:6;18114;18107:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18187:2;18178:11;;;;;:::i;:::-;;;18047:154;;;18225:6;18211:21;;;;;17517:723;;;;:::o;56601:269::-;56670:7;56856:4;56803:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;56793:69;;;;;;56786:76;;56601:269;;;:::o;52799:231::-;52877:7;52898:17;52917:18;52939:27;52950:4;52956:9;52939:10;:27::i;:::-;52897:69;;;;52977:18;52989:5;52977:11;:18::i;:::-;53013:9;53006:16;;;;52799:231;;;;:::o;21720:305::-;21822:4;21874:25;21859:40;;;:11;:40;;;;:105;;;;21931:33;21916:48;;;:11;:48;;;;21859:105;:158;;;;21981:36;22005:11;21981:23;:36::i;:::-;21859:158;21839:178;;21720:305;;;:::o;58618:181::-;58746:45;58773:4;58779:2;58783:7;58746:26;:45::i;:::-;58618:181;;;:::o;34702:125::-;;;;:::o;28799:321::-;28929:18;28935:2;28939:7;28929:5;:18::i;:::-;28980:54;29011:1;29015:2;29019:7;29028:5;28980:22;:54::i;:::-;28958:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28799:321;;;:::o;32820:799::-;32975:4;32996:15;:2;:13;;;:15::i;:::-;32992:620;;;33048:2;33032:36;;;33069:12;:10;:12::i;:::-;33083:4;33089:7;33098:5;33032:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33028:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33291:1;33274:6;:13;:18;33270:272;;;33317:60;;;;;;;;;;:::i;:::-;;;;;;;;33270:272;33492:6;33486:13;33477:6;33473:2;33469:15;33462:38;33028:529;33165:41;;;33155:51;;;:6;:51;;;;33148:58;;;;;32992:620;33596:4;33589:11;;32820:799;;;;;;;:::o;50689:1308::-;50770:7;50779:12;51024:2;51004:9;:16;:22;51000:990;;;51043:9;51067;51091:7;51300:4;51289:9;51285:20;51279:27;51274:32;;51350:4;51339:9;51335:20;51329:27;51324:32;;51408:4;51397:9;51393:20;51387:27;51384:1;51379:36;51374:41;;51451:25;51462:4;51468:1;51471;51474;51451:10;:25::i;:::-;51444:32;;;;;;;;;51000:990;51518:2;51498:9;:16;:22;51494:496;;;51537:9;51561:10;51773:4;51762:9;51758:20;51752:27;51747:32;;51824:4;51813:9;51809:20;51803:27;51797:33;;51866:23;51877:4;51883:1;51886:2;51866:10;:23::i;:::-;51859:30;;;;;;;;51494:496;51938:1;51942:35;51922:56;;;;50689:1308;;;;;;:::o;48960:643::-;49038:20;49029:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;49025:571;;;49075:7;;49025:571;49136:29;49127:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;49123:473;;;49182:34;;;;;;;;;;:::i;:::-;;;;;;;;49123:473;49247:35;49238:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;49234:362;;;49299:41;;;;;;;;;;:::i;:::-;;;;;;;;49234:362;49371:30;49362:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;49358:238;;;49418:44;;;;;;;;;;:::i;:::-;;;;;;;;49358:238;49493:30;49484:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;49480:116;;;49540:44;;;;;;;;;;:::i;:::-;;;;;;;;49480:116;48960:643;;:::o;20145:157::-;20230:4;20269:25;20254:40;;;:11;:40;;;;20247:47;;20145:157;;;:::o;41143:589::-;41287:45;41314:4;41320:2;41324:7;41287:26;:45::i;:::-;41365:1;41349:18;;:4;:18;;;41345:187;;;41384:40;41416:7;41384:31;:40::i;:::-;41345:187;;;41454:2;41446:10;;:4;:10;;;41442:90;;41473:47;41506:4;41512:7;41473:32;:47::i;:::-;41442:90;41345:187;41560:1;41546:16;;:2;:16;;;41542:183;;;41579:45;41616:7;41579:36;:45::i;:::-;41542:183;;;41652:4;41646:10;;:2;:10;;;41642:83;;41673:40;41701:2;41705:7;41673:27;:40::i;:::-;41642:83;41542:183;41143:589;;;:::o;29456:439::-;29550:1;29536:16;;:2;:16;;;;29528:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29609:16;29617:7;29609;:16::i;:::-;29608:17;29600:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29671:45;29700:1;29704:2;29708:7;29671:20;:45::i;:::-;29746:1;29729:9;:13;29739:2;29729:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29777:2;29758:7;:16;29766:7;29758:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29822:7;29818:2;29797:33;;29814:1;29797:33;;;;;;;;;;;;29843:44;29871:1;29875:2;29879:7;29843:19;:44::i;:::-;29456:439;;:::o;8977:326::-;9037:4;9294:1;9272:7;:19;;;:23;9265:30;;8977:326;;;:::o;54251:1632::-;54382:7;54391:12;55316:66;55311:1;55303:10;;:79;55299:163;;;55415:1;55419:30;55399:51;;;;;;55299:163;55481:2;55476:1;:7;;;;:18;;;;;55492:2;55487:1;:7;;;;55476:18;55472:102;;;55527:1;55531:30;55511:51;;;;;;55472:102;55671:14;55688:24;55698:4;55704:1;55707;55710;55688:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55671:41;;55745:1;55727:20;;:6;:20;;;55723:103;;;55780:1;55784:29;55764:50;;;;;;;55723:103;55846:6;55854:20;55838:37;;;;;54251:1632;;;;;;;;:::o;53293:344::-;53407:7;53416:12;53441:9;53466:66;53458:75;;53453:2;:80;53441:92;;53544:7;53583:2;53576:3;53569:2;53561:11;;:18;;53560:25;;;;:::i;:::-;53544:42;;53604:25;53615:4;53621:1;53624;53627;53604:10;:25::i;:::-;53597:32;;;;;;53293:344;;;;;;:::o;34191:126::-;;;;:::o;42455:164::-;42559:10;:17;;;;42532:15;:24;42548:7;42532:24;;;;;;;;;;;:44;;;;42587:10;42603:7;42587:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42455:164;:::o;43246:988::-;43512:22;43562:1;43537:22;43554:4;43537:16;:22::i;:::-;:26;;;;:::i;:::-;43512:51;;43574:18;43595:17;:26;43613:7;43595:26;;;;;;;;;;;;43574:47;;43742:14;43728:10;:28;43724:328;;43773:19;43795:12;:18;43808:4;43795:18;;;;;;;;;;;;;;;:34;43814:14;43795:34;;;;;;;;;;;;43773:56;;43879:11;43846:12;:18;43859:4;43846:18;;;;;;;;;;;;;;;:30;43865:10;43846:30;;;;;;;;;;;:44;;;;43996:10;43963:17;:30;43981:11;43963:30;;;;;;;;;;;:43;;;;43758:294;43724:328;44148:17;:26;44166:7;44148:26;;;;;;;;;;;44141:33;;;44192:12;:18;44205:4;44192:18;;;;;;;;;;;;;;;:34;44211:14;44192:34;;;;;;;;;;;44185:41;;;43327:907;;43246:988;;:::o;44529:1079::-;44782:22;44827:1;44807:10;:17;;;;:21;;;;:::i;:::-;44782:46;;44839:18;44860:15;:24;44876:7;44860:24;;;;;;;;;;;;44839:45;;45211:19;45233:10;45244:14;45233:26;;;;;;;;:::i;:::-;;;;;;;;;;45211:48;;45297:11;45272:10;45283;45272:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45408:10;45377:15;:28;45393:11;45377:28;;;;;;;;;;;:41;;;;45549:15;:24;45565:7;45549:24;;;;;;;;;;;45542:31;;;45584:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44600:1008;;;44529:1079;:::o;42033:221::-;42118:14;42135:20;42152:2;42135:16;:20::i;:::-;42118:37;;42193:7;42166:12;:16;42179:2;42166:16;;;;;;;;;;;;;;;:24;42183:6;42166:24;;;;;;;;;;;:34;;;;42240:6;42211:17;:26;42229:7;42211:26;;;;;;;;;;;:35;;;;42107:147;42033:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:973::-;6402:6;6410;6418;6467:2;6455:9;6446:7;6442:23;6438:32;6435:119;;;6473:79;;:::i;:::-;6435:119;6621:1;6610:9;6606:17;6593:31;6651:18;6643:6;6640:30;6637:117;;;6673:79;;:::i;:::-;6637:117;6778:63;6833:7;6824:6;6813:9;6809:22;6778:63;:::i;:::-;6768:73;;6564:287;6890:2;6916:50;6958:7;6949:6;6938:9;6934:22;6916:50;:::i;:::-;6906:60;;6861:115;7043:2;7032:9;7028:18;7015:32;7074:18;7066:6;7063:30;7060:117;;;7096:79;;:::i;:::-;7060:117;7201:63;7256:7;7247:6;7236:9;7232:22;7201:63;:::i;:::-;7191:73;;6986:288;6308:973;;;;;:::o;7287:329::-;7346:6;7395:2;7383:9;7374:7;7370:23;7366:32;7363:119;;;7401:79;;:::i;:::-;7363:119;7521:1;7546:53;7591:7;7582:6;7571:9;7567:22;7546:53;:::i;:::-;7536:63;;7492:117;7287:329;;;;:::o;7622:474::-;7690:6;7698;7747:2;7735:9;7726:7;7722:23;7718:32;7715:119;;;7753:79;;:::i;:::-;7715:119;7873:1;7898:53;7943:7;7934:6;7923:9;7919:22;7898:53;:::i;:::-;7888:63;;7844:117;8000:2;8026:53;8071:7;8062:6;8051:9;8047:22;8026:53;:::i;:::-;8016:63;;7971:118;7622:474;;;;;:::o;8102:652::-;8179:6;8187;8236:2;8224:9;8215:7;8211:23;8207:32;8204:119;;;8242:79;;:::i;:::-;8204:119;8362:1;8387:53;8432:7;8423:6;8412:9;8408:22;8387:53;:::i;:::-;8377:63;;8333:117;8517:2;8506:9;8502:18;8489:32;8548:18;8540:6;8537:30;8534:117;;;8570:79;;:::i;:::-;8534:117;8675:62;8729:7;8720:6;8709:9;8705:22;8675:62;:::i;:::-;8665:72;;8460:287;8102:652;;;;;:::o;8760:118::-;8847:24;8865:5;8847:24;:::i;:::-;8842:3;8835:37;8760:118;;:::o;8884:157::-;8989:45;9009:24;9027:5;9009:24;:::i;:::-;8989:45;:::i;:::-;8984:3;8977:58;8884:157;;:::o;9047:109::-;9128:21;9143:5;9128:21;:::i;:::-;9123:3;9116:34;9047:109;;:::o;9162:118::-;9249:24;9267:5;9249:24;:::i;:::-;9244:3;9237:37;9162:118;;:::o;9286:157::-;9391:45;9411:24;9429:5;9411:24;:::i;:::-;9391:45;:::i;:::-;9386:3;9379:58;9286:157;;:::o;9449:360::-;9535:3;9563:38;9595:5;9563:38;:::i;:::-;9617:70;9680:6;9675:3;9617:70;:::i;:::-;9610:77;;9696:52;9741:6;9736:3;9729:4;9722:5;9718:16;9696:52;:::i;:::-;9773:29;9795:6;9773:29;:::i;:::-;9768:3;9764:39;9757:46;;9539:270;9449:360;;;;:::o;9815:364::-;9903:3;9931:39;9964:5;9931:39;:::i;:::-;9986:71;10050:6;10045:3;9986:71;:::i;:::-;9979:78;;10066:52;10111:6;10106:3;10099:4;10092:5;10088:16;10066:52;:::i;:::-;10143:29;10165:6;10143:29;:::i;:::-;10138:3;10134:39;10127:46;;9907:272;9815:364;;;;:::o;10185:377::-;10291:3;10319:39;10352:5;10319:39;:::i;:::-;10374:89;10456:6;10451:3;10374:89;:::i;:::-;10367:96;;10472:52;10517:6;10512:3;10505:4;10498:5;10494:16;10472:52;:::i;:::-;10549:6;10544:3;10540:16;10533:23;;10295:267;10185:377;;;;:::o;10592:845::-;10695:3;10732:5;10726:12;10761:36;10787:9;10761:36;:::i;:::-;10813:89;10895:6;10890:3;10813:89;:::i;:::-;10806:96;;10933:1;10922:9;10918:17;10949:1;10944:137;;;;11095:1;11090:341;;;;10911:520;;10944:137;11028:4;11024:9;11013;11009:25;11004:3;10997:38;11064:6;11059:3;11055:16;11048:23;;10944:137;;11090:341;11157:38;11189:5;11157:38;:::i;:::-;11217:1;11231:154;11245:6;11242:1;11239:13;11231:154;;;11319:7;11313:14;11309:1;11304:3;11300:11;11293:35;11369:1;11360:7;11356:15;11345:26;;11267:4;11264:1;11260:12;11255:17;;11231:154;;;11414:6;11409:3;11405:16;11398:23;;11097:334;;10911:520;;10699:738;;10592:845;;;;:::o;11443:366::-;11585:3;11606:67;11670:2;11665:3;11606:67;:::i;:::-;11599:74;;11682:93;11771:3;11682:93;:::i;:::-;11800:2;11795:3;11791:12;11784:19;;11443:366;;;:::o;11815:::-;11957:3;11978:67;12042:2;12037:3;11978:67;:::i;:::-;11971:74;;12054:93;12143:3;12054:93;:::i;:::-;12172:2;12167:3;12163:12;12156:19;;11815:366;;;:::o;12187:::-;12329:3;12350:67;12414:2;12409:3;12350:67;:::i;:::-;12343:74;;12426:93;12515:3;12426:93;:::i;:::-;12544:2;12539:3;12535:12;12528:19;;12187:366;;;:::o;12559:402::-;12719:3;12740:85;12822:2;12817:3;12740:85;:::i;:::-;12733:92;;12834:93;12923:3;12834:93;:::i;:::-;12952:2;12947:3;12943:12;12936:19;;12559:402;;;:::o;12967:366::-;13109:3;13130:67;13194:2;13189:3;13130:67;:::i;:::-;13123:74;;13206:93;13295:3;13206:93;:::i;:::-;13324:2;13319:3;13315:12;13308:19;;12967:366;;;:::o;13339:::-;13481:3;13502:67;13566:2;13561:3;13502:67;:::i;:::-;13495:74;;13578:93;13667:3;13578:93;:::i;:::-;13696:2;13691:3;13687:12;13680:19;;13339:366;;;:::o;13711:::-;13853:3;13874:67;13938:2;13933:3;13874:67;:::i;:::-;13867:74;;13950:93;14039:3;13950:93;:::i;:::-;14068:2;14063:3;14059:12;14052:19;;13711:366;;;:::o;14083:::-;14225:3;14246:67;14310:2;14305:3;14246:67;:::i;:::-;14239:74;;14322:93;14411:3;14322:93;:::i;:::-;14440:2;14435:3;14431:12;14424:19;;14083:366;;;:::o;14455:::-;14597:3;14618:67;14682:2;14677:3;14618:67;:::i;:::-;14611:74;;14694:93;14783:3;14694:93;:::i;:::-;14812:2;14807:3;14803:12;14796:19;;14455:366;;;:::o;14827:::-;14969:3;14990:67;15054:2;15049:3;14990:67;:::i;:::-;14983:74;;15066:93;15155:3;15066:93;:::i;:::-;15184:2;15179:3;15175:12;15168:19;;14827:366;;;:::o;15199:::-;15341:3;15362:67;15426:2;15421:3;15362:67;:::i;:::-;15355:74;;15438:93;15527:3;15438:93;:::i;:::-;15556:2;15551:3;15547:12;15540:19;;15199:366;;;:::o;15571:::-;15713:3;15734:67;15798:2;15793:3;15734:67;:::i;:::-;15727:74;;15810:93;15899:3;15810:93;:::i;:::-;15928:2;15923:3;15919:12;15912:19;;15571:366;;;:::o;15943:::-;16085:3;16106:67;16170:2;16165:3;16106:67;:::i;:::-;16099:74;;16182:93;16271:3;16182:93;:::i;:::-;16300:2;16295:3;16291:12;16284:19;;15943:366;;;:::o;16315:::-;16457:3;16478:67;16542:2;16537:3;16478:67;:::i;:::-;16471:74;;16554:93;16643:3;16554:93;:::i;:::-;16672:2;16667:3;16663:12;16656:19;;16315:366;;;:::o;16687:::-;16829:3;16850:67;16914:2;16909:3;16850:67;:::i;:::-;16843:74;;16926:93;17015:3;16926:93;:::i;:::-;17044:2;17039:3;17035:12;17028:19;;16687:366;;;:::o;17059:::-;17201:3;17222:67;17286:2;17281:3;17222:67;:::i;:::-;17215:74;;17298:93;17387:3;17298:93;:::i;:::-;17416:2;17411:3;17407:12;17400:19;;17059:366;;;:::o;17431:::-;17573:3;17594:67;17658:2;17653:3;17594:67;:::i;:::-;17587:74;;17670:93;17759:3;17670:93;:::i;:::-;17788:2;17783:3;17779:12;17772:19;;17431:366;;;:::o;17803:::-;17945:3;17966:67;18030:2;18025:3;17966:67;:::i;:::-;17959:74;;18042:93;18131:3;18042:93;:::i;:::-;18160:2;18155:3;18151:12;18144:19;;17803:366;;;:::o;18175:::-;18317:3;18338:67;18402:2;18397:3;18338:67;:::i;:::-;18331:74;;18414:93;18503:3;18414:93;:::i;:::-;18532:2;18527:3;18523:12;18516:19;;18175:366;;;:::o;18547:::-;18689:3;18710:67;18774:2;18769:3;18710:67;:::i;:::-;18703:74;;18786:93;18875:3;18786:93;:::i;:::-;18904:2;18899:3;18895:12;18888:19;;18547:366;;;:::o;18919:::-;19061:3;19082:67;19146:2;19141:3;19082:67;:::i;:::-;19075:74;;19158:93;19247:3;19158:93;:::i;:::-;19276:2;19271:3;19267:12;19260:19;;18919:366;;;:::o;19291:::-;19433:3;19454:67;19518:2;19513:3;19454:67;:::i;:::-;19447:74;;19530:93;19619:3;19530:93;:::i;:::-;19648:2;19643:3;19639:12;19632:19;;19291:366;;;:::o;19663:::-;19805:3;19826:67;19890:2;19885:3;19826:67;:::i;:::-;19819:74;;19902:93;19991:3;19902:93;:::i;:::-;20020:2;20015:3;20011:12;20004:19;;19663:366;;;:::o;20035:::-;20177:3;20198:67;20262:2;20257:3;20198:67;:::i;:::-;20191:74;;20274:93;20363:3;20274:93;:::i;:::-;20392:2;20387:3;20383:12;20376:19;;20035:366;;;:::o;20407:::-;20549:3;20570:67;20634:2;20629:3;20570:67;:::i;:::-;20563:74;;20646:93;20735:3;20646:93;:::i;:::-;20764:2;20759:3;20755:12;20748:19;;20407:366;;;:::o;20779:::-;20921:3;20942:67;21006:2;21001:3;20942:67;:::i;:::-;20935:74;;21018:93;21107:3;21018:93;:::i;:::-;21136:2;21131:3;21127:12;21120:19;;20779:366;;;:::o;21151:::-;21293:3;21314:67;21378:2;21373:3;21314:67;:::i;:::-;21307:74;;21390:93;21479:3;21390:93;:::i;:::-;21508:2;21503:3;21499:12;21492:19;;21151:366;;;:::o;21523:::-;21665:3;21686:67;21750:2;21745:3;21686:67;:::i;:::-;21679:74;;21762:93;21851:3;21762:93;:::i;:::-;21880:2;21875:3;21871:12;21864:19;;21523:366;;;:::o;21895:::-;22037:3;22058:67;22122:2;22117:3;22058:67;:::i;:::-;22051:74;;22134:93;22223:3;22134:93;:::i;:::-;22252:2;22247:3;22243:12;22236:19;;21895:366;;;:::o;22267:::-;22409:3;22430:67;22494:2;22489:3;22430:67;:::i;:::-;22423:74;;22506:93;22595:3;22506:93;:::i;:::-;22624:2;22619:3;22615:12;22608:19;;22267:366;;;:::o;22639:::-;22781:3;22802:67;22866:2;22861:3;22802:67;:::i;:::-;22795:74;;22878:93;22967:3;22878:93;:::i;:::-;22996:2;22991:3;22987:12;22980:19;;22639:366;;;:::o;23011:::-;23153:3;23174:67;23238:2;23233:3;23174:67;:::i;:::-;23167:74;;23250:93;23339:3;23250:93;:::i;:::-;23368:2;23363:3;23359:12;23352:19;;23011:366;;;:::o;23383:118::-;23470:24;23488:5;23470:24;:::i;:::-;23465:3;23458:37;23383:118;;:::o;23507:112::-;23590:22;23606:5;23590:22;:::i;:::-;23585:3;23578:35;23507:112;;:::o;23625:256::-;23737:3;23752:75;23823:3;23814:6;23752:75;:::i;:::-;23852:2;23847:3;23843:12;23836:19;;23872:3;23865:10;;23625:256;;;;:::o;23887:275::-;24019:3;24041:95;24132:3;24123:6;24041:95;:::i;:::-;24034:102;;24153:3;24146:10;;23887:275;;;;:::o;24168:589::-;24393:3;24415:95;24506:3;24497:6;24415:95;:::i;:::-;24408:102;;24527:95;24618:3;24609:6;24527:95;:::i;:::-;24520:102;;24639:92;24727:3;24718:6;24639:92;:::i;:::-;24632:99;;24748:3;24741:10;;24168:589;;;;;;:::o;24763:522::-;24976:3;24998:148;25142:3;24998:148;:::i;:::-;24991:155;;25156:75;25227:3;25218:6;25156:75;:::i;:::-;25256:2;25251:3;25247:12;25240:19;;25276:3;25269:10;;24763:522;;;;:::o;25291:222::-;25384:4;25422:2;25411:9;25407:18;25399:26;;25435:71;25503:1;25492:9;25488:17;25479:6;25435:71;:::i;:::-;25291:222;;;;:::o;25519:640::-;25714:4;25752:3;25741:9;25737:19;25729:27;;25766:71;25834:1;25823:9;25819:17;25810:6;25766:71;:::i;:::-;25847:72;25915:2;25904:9;25900:18;25891:6;25847:72;:::i;:::-;25929;25997:2;25986:9;25982:18;25973:6;25929:72;:::i;:::-;26048:9;26042:4;26038:20;26033:2;26022:9;26018:18;26011:48;26076:76;26147:4;26138:6;26076:76;:::i;:::-;26068:84;;25519:640;;;;;;;:::o;26165:210::-;26252:4;26290:2;26279:9;26275:18;26267:26;;26303:65;26365:1;26354:9;26350:17;26341:6;26303:65;:::i;:::-;26165:210;;;;:::o;26381:545::-;26554:4;26592:3;26581:9;26577:19;26569:27;;26606:71;26674:1;26663:9;26659:17;26650:6;26606:71;:::i;:::-;26687:68;26751:2;26740:9;26736:18;26727:6;26687:68;:::i;:::-;26765:72;26833:2;26822:9;26818:18;26809:6;26765:72;:::i;:::-;26847;26915:2;26904:9;26900:18;26891:6;26847:72;:::i;:::-;26381:545;;;;;;;:::o;26932:313::-;27045:4;27083:2;27072:9;27068:18;27060:26;;27132:9;27126:4;27122:20;27118:1;27107:9;27103:17;27096:47;27160:78;27233:4;27224:6;27160:78;:::i;:::-;27152:86;;26932:313;;;;:::o;27251:419::-;27417:4;27455:2;27444:9;27440:18;27432:26;;27504:9;27498:4;27494:20;27490:1;27479:9;27475:17;27468:47;27532:131;27658:4;27532:131;:::i;:::-;27524:139;;27251:419;;;:::o;27676:::-;27842:4;27880:2;27869:9;27865:18;27857:26;;27929:9;27923:4;27919:20;27915:1;27904:9;27900:17;27893:47;27957:131;28083:4;27957:131;:::i;:::-;27949:139;;27676:419;;;:::o;28101:::-;28267:4;28305:2;28294:9;28290:18;28282:26;;28354:9;28348:4;28344:20;28340:1;28329:9;28325:17;28318:47;28382:131;28508:4;28382:131;:::i;:::-;28374:139;;28101:419;;;:::o;28526:::-;28692:4;28730:2;28719:9;28715:18;28707:26;;28779:9;28773:4;28769:20;28765:1;28754:9;28750:17;28743:47;28807:131;28933:4;28807:131;:::i;:::-;28799:139;;28526:419;;;:::o;28951:::-;29117:4;29155:2;29144:9;29140:18;29132:26;;29204:9;29198:4;29194:20;29190:1;29179:9;29175:17;29168:47;29232:131;29358:4;29232:131;:::i;:::-;29224:139;;28951:419;;;:::o;29376:::-;29542:4;29580:2;29569:9;29565:18;29557:26;;29629:9;29623:4;29619:20;29615:1;29604:9;29600:17;29593:47;29657:131;29783:4;29657:131;:::i;:::-;29649:139;;29376:419;;;:::o;29801:::-;29967:4;30005:2;29994:9;29990:18;29982:26;;30054:9;30048:4;30044:20;30040:1;30029:9;30025:17;30018:47;30082:131;30208:4;30082:131;:::i;:::-;30074:139;;29801:419;;;:::o;30226:::-;30392:4;30430:2;30419:9;30415:18;30407:26;;30479:9;30473:4;30469:20;30465:1;30454:9;30450:17;30443:47;30507:131;30633:4;30507:131;:::i;:::-;30499:139;;30226:419;;;:::o;30651:::-;30817:4;30855:2;30844:9;30840:18;30832:26;;30904:9;30898:4;30894:20;30890:1;30879:9;30875:17;30868:47;30932:131;31058:4;30932:131;:::i;:::-;30924:139;;30651:419;;;:::o;31076:::-;31242:4;31280:2;31269:9;31265:18;31257:26;;31329:9;31323:4;31319:20;31315:1;31304:9;31300:17;31293:47;31357:131;31483:4;31357:131;:::i;:::-;31349:139;;31076:419;;;:::o;31501:::-;31667:4;31705:2;31694:9;31690:18;31682:26;;31754:9;31748:4;31744:20;31740:1;31729:9;31725:17;31718:47;31782:131;31908:4;31782:131;:::i;:::-;31774:139;;31501:419;;;:::o;31926:::-;32092:4;32130:2;32119:9;32115:18;32107:26;;32179:9;32173:4;32169:20;32165:1;32154:9;32150:17;32143:47;32207:131;32333:4;32207:131;:::i;:::-;32199:139;;31926:419;;;:::o;32351:::-;32517:4;32555:2;32544:9;32540:18;32532:26;;32604:9;32598:4;32594:20;32590:1;32579:9;32575:17;32568:47;32632:131;32758:4;32632:131;:::i;:::-;32624:139;;32351:419;;;:::o;32776:::-;32942:4;32980:2;32969:9;32965:18;32957:26;;33029:9;33023:4;33019:20;33015:1;33004:9;33000:17;32993:47;33057:131;33183:4;33057:131;:::i;:::-;33049:139;;32776:419;;;:::o;33201:::-;33367:4;33405:2;33394:9;33390:18;33382:26;;33454:9;33448:4;33444:20;33440:1;33429:9;33425:17;33418:47;33482:131;33608:4;33482:131;:::i;:::-;33474:139;;33201:419;;;:::o;33626:::-;33792:4;33830:2;33819:9;33815:18;33807:26;;33879:9;33873:4;33869:20;33865:1;33854:9;33850:17;33843:47;33907:131;34033:4;33907:131;:::i;:::-;33899:139;;33626:419;;;:::o;34051:::-;34217:4;34255:2;34244:9;34240:18;34232:26;;34304:9;34298:4;34294:20;34290:1;34279:9;34275:17;34268:47;34332:131;34458:4;34332:131;:::i;:::-;34324:139;;34051:419;;;:::o;34476:::-;34642:4;34680:2;34669:9;34665:18;34657:26;;34729:9;34723:4;34719:20;34715:1;34704:9;34700:17;34693:47;34757:131;34883:4;34757:131;:::i;:::-;34749:139;;34476:419;;;:::o;34901:::-;35067:4;35105:2;35094:9;35090:18;35082:26;;35154:9;35148:4;35144:20;35140:1;35129:9;35125:17;35118:47;35182:131;35308:4;35182:131;:::i;:::-;35174:139;;34901:419;;;:::o;35326:::-;35492:4;35530:2;35519:9;35515:18;35507:26;;35579:9;35573:4;35569:20;35565:1;35554:9;35550:17;35543:47;35607:131;35733:4;35607:131;:::i;:::-;35599:139;;35326:419;;;:::o;35751:::-;35917:4;35955:2;35944:9;35940:18;35932:26;;36004:9;35998:4;35994:20;35990:1;35979:9;35975:17;35968:47;36032:131;36158:4;36032:131;:::i;:::-;36024:139;;35751:419;;;:::o;36176:::-;36342:4;36380:2;36369:9;36365:18;36357:26;;36429:9;36423:4;36419:20;36415:1;36404:9;36400:17;36393:47;36457:131;36583:4;36457:131;:::i;:::-;36449:139;;36176:419;;;:::o;36601:::-;36767:4;36805:2;36794:9;36790:18;36782:26;;36854:9;36848:4;36844:20;36840:1;36829:9;36825:17;36818:47;36882:131;37008:4;36882:131;:::i;:::-;36874:139;;36601:419;;;:::o;37026:::-;37192:4;37230:2;37219:9;37215:18;37207:26;;37279:9;37273:4;37269:20;37265:1;37254:9;37250:17;37243:47;37307:131;37433:4;37307:131;:::i;:::-;37299:139;;37026:419;;;:::o;37451:::-;37617:4;37655:2;37644:9;37640:18;37632:26;;37704:9;37698:4;37694:20;37690:1;37679:9;37675:17;37668:47;37732:131;37858:4;37732:131;:::i;:::-;37724:139;;37451:419;;;:::o;37876:::-;38042:4;38080:2;38069:9;38065:18;38057:26;;38129:9;38123:4;38119:20;38115:1;38104:9;38100:17;38093:47;38157:131;38283:4;38157:131;:::i;:::-;38149:139;;37876:419;;;:::o;38301:::-;38467:4;38505:2;38494:9;38490:18;38482:26;;38554:9;38548:4;38544:20;38540:1;38529:9;38525:17;38518:47;38582:131;38708:4;38582:131;:::i;:::-;38574:139;;38301:419;;;:::o;38726:::-;38892:4;38930:2;38919:9;38915:18;38907:26;;38979:9;38973:4;38969:20;38965:1;38954:9;38950:17;38943:47;39007:131;39133:4;39007:131;:::i;:::-;38999:139;;38726:419;;;:::o;39151:::-;39317:4;39355:2;39344:9;39340:18;39332:26;;39404:9;39398:4;39394:20;39390:1;39379:9;39375:17;39368:47;39432:131;39558:4;39432:131;:::i;:::-;39424:139;;39151:419;;;:::o;39576:::-;39742:4;39780:2;39769:9;39765:18;39757:26;;39829:9;39823:4;39819:20;39815:1;39804:9;39800:17;39793:47;39857:131;39983:4;39857:131;:::i;:::-;39849:139;;39576:419;;;:::o;40001:::-;40167:4;40205:2;40194:9;40190:18;40182:26;;40254:9;40248:4;40244:20;40240:1;40229:9;40225:17;40218:47;40282:131;40408:4;40282:131;:::i;:::-;40274:139;;40001:419;;;:::o;40426:222::-;40519:4;40557:2;40546:9;40542:18;40534:26;;40570:71;40638:1;40627:9;40623:17;40614:6;40570:71;:::i;:::-;40426:222;;;;:::o;40654:129::-;40688:6;40715:20;;:::i;:::-;40705:30;;40744:33;40772:4;40764:6;40744:33;:::i;:::-;40654:129;;;:::o;40789:75::-;40822:6;40855:2;40849:9;40839:19;;40789:75;:::o;40870:307::-;40931:4;41021:18;41013:6;41010:30;41007:56;;;41043:18;;:::i;:::-;41007:56;41081:29;41103:6;41081:29;:::i;:::-;41073:37;;41165:4;41159;41155:15;41147:23;;40870:307;;;:::o;41183:308::-;41245:4;41335:18;41327:6;41324:30;41321:56;;;41357:18;;:::i;:::-;41321:56;41395:29;41417:6;41395:29;:::i;:::-;41387:37;;41479:4;41473;41469:15;41461:23;;41183:308;;;:::o;41497:141::-;41546:4;41569:3;41561:11;;41592:3;41589:1;41582:14;41626:4;41623:1;41613:18;41605:26;;41497:141;;;:::o;41644:98::-;41695:6;41729:5;41723:12;41713:22;;41644:98;;;:::o;41748:99::-;41800:6;41834:5;41828:12;41818:22;;41748:99;;;:::o;41853:168::-;41936:11;41970:6;41965:3;41958:19;42010:4;42005:3;42001:14;41986:29;;41853:168;;;;:::o;42027:169::-;42111:11;42145:6;42140:3;42133:19;42185:4;42180:3;42176:14;42161:29;;42027:169;;;;:::o;42202:148::-;42304:11;42341:3;42326:18;;42202:148;;;;:::o;42356:305::-;42396:3;42415:20;42433:1;42415:20;:::i;:::-;42410:25;;42449:20;42467:1;42449:20;:::i;:::-;42444:25;;42603:1;42535:66;42531:74;42528:1;42525:81;42522:107;;;42609:18;;:::i;:::-;42522:107;42653:1;42650;42646:9;42639:16;;42356:305;;;;:::o;42667:185::-;42707:1;42724:20;42742:1;42724:20;:::i;:::-;42719:25;;42758:20;42776:1;42758:20;:::i;:::-;42753:25;;42797:1;42787:35;;42802:18;;:::i;:::-;42787:35;42844:1;42841;42837:9;42832:14;;42667:185;;;;:::o;42858:348::-;42898:7;42921:20;42939:1;42921:20;:::i;:::-;42916:25;;42955:20;42973:1;42955:20;:::i;:::-;42950:25;;43143:1;43075:66;43071:74;43068:1;43065:81;43060:1;43053:9;43046:17;43042:105;43039:131;;;43150:18;;:::i;:::-;43039:131;43198:1;43195;43191:9;43180:20;;42858:348;;;;:::o;43212:191::-;43252:4;43272:20;43290:1;43272:20;:::i;:::-;43267:25;;43306:20;43324:1;43306:20;:::i;:::-;43301:25;;43345:1;43342;43339:8;43336:34;;;43350:18;;:::i;:::-;43336:34;43395:1;43392;43388:9;43380:17;;43212:191;;;;:::o;43409:96::-;43446:7;43475:24;43493:5;43475:24;:::i;:::-;43464:35;;43409:96;;;:::o;43511:90::-;43545:7;43588:5;43581:13;43574:21;43563:32;;43511:90;;;:::o;43607:77::-;43644:7;43673:5;43662:16;;43607:77;;;:::o;43690:149::-;43726:7;43766:66;43759:5;43755:78;43744:89;;43690:149;;;:::o;43845:126::-;43882:7;43922:42;43915:5;43911:54;43900:65;;43845:126;;;:::o;43977:77::-;44014:7;44043:5;44032:16;;43977:77;;;:::o;44060:86::-;44095:7;44135:4;44128:5;44124:16;44113:27;;44060:86;;;:::o;44152:154::-;44236:6;44231:3;44226;44213:30;44298:1;44289:6;44284:3;44280:16;44273:27;44152:154;;;:::o;44312:307::-;44380:1;44390:113;44404:6;44401:1;44398:13;44390:113;;;44489:1;44484:3;44480:11;44474:18;44470:1;44465:3;44461:11;44454:39;44426:2;44423:1;44419:10;44414:15;;44390:113;;;44521:6;44518:1;44515:13;44512:101;;;44601:1;44592:6;44587:3;44583:16;44576:27;44512:101;44361:258;44312:307;;;:::o;44625:320::-;44669:6;44706:1;44700:4;44696:12;44686:22;;44753:1;44747:4;44743:12;44774:18;44764:81;;44830:4;44822:6;44818:17;44808:27;;44764:81;44892:2;44884:6;44881:14;44861:18;44858:38;44855:84;;;44911:18;;:::i;:::-;44855:84;44676:269;44625:320;;;:::o;44951:281::-;45034:27;45056:4;45034:27;:::i;:::-;45026:6;45022:40;45164:6;45152:10;45149:22;45128:18;45116:10;45113:34;45110:62;45107:88;;;45175:18;;:::i;:::-;45107:88;45215:10;45211:2;45204:22;44994:238;44951:281;;:::o;45238:233::-;45277:3;45300:24;45318:5;45300:24;:::i;:::-;45291:33;;45346:66;45339:5;45336:77;45333:103;;;45416:18;;:::i;:::-;45333:103;45463:1;45456:5;45452:13;45445:20;;45238:233;;;:::o;45477:100::-;45516:7;45545:26;45565:5;45545:26;:::i;:::-;45534:37;;45477:100;;;:::o;45583:79::-;45622:7;45651:5;45640:16;;45583:79;;;:::o;45668:94::-;45707:7;45736:20;45750:5;45736:20;:::i;:::-;45725:31;;45668:94;;;:::o;45768:176::-;45800:1;45817:20;45835:1;45817:20;:::i;:::-;45812:25;;45851:20;45869:1;45851:20;:::i;:::-;45846:25;;45890:1;45880:35;;45895:18;;:::i;:::-;45880:35;45936:1;45933;45929:9;45924:14;;45768:176;;;;:::o;45950:180::-;45998:77;45995:1;45988:88;46095:4;46092:1;46085:15;46119:4;46116:1;46109:15;46136:180;46184:77;46181:1;46174:88;46281:4;46278:1;46271:15;46305:4;46302:1;46295:15;46322:180;46370:77;46367:1;46360:88;46467:4;46464:1;46457:15;46491:4;46488:1;46481:15;46508:180;46556:77;46553:1;46546:88;46653:4;46650:1;46643:15;46677:4;46674:1;46667:15;46694:180;46742:77;46739:1;46732:88;46839:4;46836:1;46829:15;46863:4;46860:1;46853:15;46880:180;46928:77;46925:1;46918:88;47025:4;47022:1;47015:15;47049:4;47046:1;47039:15;47066:180;47114:77;47111:1;47104:88;47211:4;47208:1;47201:15;47235:4;47232:1;47225:15;47252:117;47361:1;47358;47351:12;47375:117;47484:1;47481;47474:12;47498:117;47607:1;47604;47597:12;47621:117;47730:1;47727;47720:12;47744:102;47785:6;47836:2;47832:7;47827:2;47820:5;47816:14;47812:28;47802:38;;47744:102;;;:::o;47852:94::-;47885:8;47933:5;47929:2;47925:14;47904:35;;47852:94;;;:::o;47952:174::-;48092:26;48088:1;48080:6;48076:14;48069:50;47952:174;:::o;48132:181::-;48272:33;48268:1;48260:6;48256:14;48249:57;48132:181;:::o;48319:230::-;48459:34;48455:1;48447:6;48443:14;48436:58;48528:13;48523:2;48515:6;48511:15;48504:38;48319:230;:::o;48555:214::-;48695:66;48691:1;48683:6;48679:14;48672:90;48555:214;:::o;48775:230::-;48915:34;48911:1;48903:6;48899:14;48892:58;48984:13;48979:2;48971:6;48967:15;48960:38;48775:230;:::o;49011:237::-;49151:34;49147:1;49139:6;49135:14;49128:58;49220:20;49215:2;49207:6;49203:15;49196:45;49011:237;:::o;49254:225::-;49394:34;49390:1;49382:6;49378:14;49371:58;49463:8;49458:2;49450:6;49446:15;49439:33;49254:225;:::o;49485:224::-;49625:34;49621:1;49613:6;49609:14;49602:58;49694:7;49689:2;49681:6;49677:15;49670:32;49485:224;:::o;49715:178::-;49855:30;49851:1;49843:6;49839:14;49832:54;49715:178;:::o;49899:224::-;50039:34;50035:1;50027:6;50023:14;50016:58;50108:7;50103:2;50095:6;50091:15;50084:32;49899:224;:::o;50129:223::-;50269:34;50265:1;50257:6;50253:14;50246:58;50338:6;50333:2;50325:6;50321:15;50314:31;50129:223;:::o;50358:175::-;50498:27;50494:1;50486:6;50482:14;50475:51;50358:175;:::o;50539:181::-;50679:33;50675:1;50667:6;50663:14;50656:57;50539:181;:::o;50726:221::-;50866:34;50862:1;50854:6;50850:14;50843:58;50935:4;50930:2;50922:6;50918:15;50911:29;50726:221;:::o;50953:::-;51093:34;51089:1;51081:6;51077:14;51070:58;51162:4;51157:2;51149:6;51145:15;51138:29;50953:221;:::o;51180:231::-;51320:34;51316:1;51308:6;51304:14;51297:58;51389:14;51384:2;51376:6;51372:15;51365:39;51180:231;:::o;51417:243::-;51557:34;51553:1;51545:6;51541:14;51534:58;51626:26;51621:2;51613:6;51609:15;51602:51;51417:243;:::o;51666:229::-;51806:34;51802:1;51794:6;51790:14;51783:58;51875:12;51870:2;51862:6;51858:15;51851:37;51666:229;:::o;51901:228::-;52041:34;52037:1;52029:6;52025:14;52018:58;52110:11;52105:2;52097:6;52093:15;52086:36;51901:228;:::o;52135:229::-;52275:34;52271:1;52263:6;52259:14;52252:58;52344:12;52339:2;52331:6;52327:15;52320:37;52135:229;:::o;52370:221::-;52510:34;52506:1;52498:6;52494:14;52487:58;52579:4;52574:2;52566:6;52562:15;52555:29;52370:221;:::o;52597:182::-;52737:34;52733:1;52725:6;52721:14;52714:58;52597:182;:::o;52785:248::-;52925:34;52921:1;52913:6;52909:14;52902:58;52994:31;52989:2;52981:6;52977:15;52970:56;52785:248;:::o;53039:231::-;53179:34;53175:1;53167:6;53163:14;53156:58;53248:14;53243:2;53235:6;53231:15;53224:39;53039:231;:::o;53276:182::-;53416:34;53412:1;53404:6;53400:14;53393:58;53276:182;:::o;53464:234::-;53604:34;53600:1;53592:6;53588:14;53581:58;53673:17;53668:2;53660:6;53656:15;53649:42;53464:234;:::o;53704:220::-;53844:34;53840:1;53832:6;53828:14;53821:58;53913:3;53908:2;53900:6;53896:15;53889:28;53704:220;:::o;53930:177::-;54070:29;54066:1;54058:6;54054:14;54047:53;53930:177;:::o;54113:236::-;54253:34;54249:1;54241:6;54237:14;54230:58;54322:19;54317:2;54309:6;54305:15;54298:44;54113:236;:::o;54355:231::-;54495:34;54491:1;54483:6;54479:14;54472:58;54564:14;54559:2;54551:6;54547:15;54540:39;54355:231;:::o;54592:229::-;54732:34;54728:1;54720:6;54716:14;54709:58;54801:12;54796:2;54788:6;54784:15;54777:37;54592:229;:::o;54827:181::-;54967:33;54963:1;54955:6;54951:14;54944:57;54827:181;:::o;55014:122::-;55087:24;55105:5;55087:24;:::i;:::-;55080:5;55077:35;55067:63;;55126:1;55123;55116:12;55067:63;55014:122;:::o;55142:116::-;55212:21;55227:5;55212:21;:::i;:::-;55205:5;55202:32;55192:60;;55248:1;55245;55238:12;55192:60;55142:116;:::o;55264:120::-;55336:23;55353:5;55336:23;:::i;:::-;55329:5;55326:34;55316:62;;55374:1;55371;55364:12;55316:62;55264:120;:::o;55390:122::-;55463:24;55481:5;55463:24;:::i;:::-;55456:5;55453:35;55443:63;;55502:1;55499;55492:12;55443:63;55390:122;:::o
Swarm Source
ipfs://398228707c0e003feae1d3f2b58efb5f4618bfce0b30edc6c10e4d8d231332d2
[ 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.