ERC-721
Overview
Max Total Supply
3,333 BD
Holders
3,147
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BDLoading...
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-08 */ // 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("BabyDinos", "BD"), ERC721Enumerable, Ownable, ReentrancyGuard { string private _baseURIextended; string private _baseURISuffix = ""; bool public frozenMetadata = false; uint256 public MAX_TOKENS = 3333; 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()] <= 1, "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()] <= 1, "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
608060405260405180602001604052806000815250600d90805190602001906200002b9291906200029d565b506000600e60006101000a81548160ff021916908315150217905550610d05600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff02191690831515021790555073d47257ee6cd0a80ed1ba7bddc722ef8ee44a8d7d601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601360146101000a81548160ff0219169083151502179055503480156200010057600080fd5b506040518060400160405280600981526020017f4261627944696e6f7300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f42440000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001859291906200029d565b5080600190805190602001906200019e9291906200029d565b505050620001c1620001b5620001cf60201b60201c565b620001d760201b60201c565b6001600b81905550620003b2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ab906200034d565b90600052602060002090601f016020900481019282620002cf57600085556200031b565b82601f10620002ea57805160ff19168380011785556200031b565b828001600101855582156200031b579182015b828111156200031a578251825591602001919060010190620002fd565b5b5090506200032a91906200032e565b5090565b5b80821115620003495760008160009055506001016200032f565b5090565b600060028204905060018216806200036657607f821691505b602082108114156200037d576200037c62000383565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6151dc80620003c26000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c634d03211610095578063eb8d244411610064578063eb8d244414610653578063f2fde38b1461067e578063f47c84c5146106a7578063f7f7bf7b146106d2576101cd565b8063c634d032146105a6578063c87b56dd146105c2578063d111515d146105ff578063e985e9c514610616576101cd565b806393b15295116100d157806393b152951461050057806395d89b4114610529578063a22cb46514610554578063b88d4fde1461057d576101cd565b8063715018a6146104935780638529ccad146104aa5780638da5cb5b146104d5576101cd565b80632da435f71161016f5780634f6ccce71161013e5780634f6ccce7146103b357806353d4c775146103f05780636352211e1461041957806370a0823114610456576101cd565b80632da435f71461031f5780632f745c591461033657806334918dfd1461037357806342842e0e1461038a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632541865c146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190613689565b6106ee565b6040516102069190613f22565b60405180910390f35b34801561021b57600080fd5b50610224610700565b6040516102319190613f82565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061376e565b610792565b60405161026e9190613ebb565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613649565b610817565b005b3480156102ac57600080fd5b506102b561092f565b6040516102c29190614384565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613533565b61093c565b005b34801561030057600080fd5b5061030961099c565b6040516103169190613f22565b60405180910390f35b34801561032b57600080fd5b506103346109af565b005b34801561034257600080fd5b5061035d60048036038101906103589190613649565b610a57565b60405161036a9190614384565b60405180910390f35b34801561037f57600080fd5b50610388610afc565b005b34801561039657600080fd5b506103b160048036038101906103ac9190613533565b610ba4565b005b3480156103bf57600080fd5b506103da60048036038101906103d5919061376e565b610bc4565b6040516103e79190614384565b60405180910390f35b3480156103fc57600080fd5b506104176004803603810190610412919061379b565b610c35565b005b34801561042557600080fd5b50610440600480360381019061043b919061376e565b610d48565b60405161044d9190613ebb565b60405180910390f35b34801561046257600080fd5b5061047d600480360381019061047891906134c6565b610dfa565b60405161048a9190614384565b60405180910390f35b34801561049f57600080fd5b506104a8610eb2565b005b3480156104b657600080fd5b506104bf610f3a565b6040516104cc9190613f22565b60405180910390f35b3480156104e157600080fd5b506104ea610f4d565b6040516104f79190613ebb565b60405180910390f35b34801561050c57600080fd5b50610527600480360381019061052291906136e3565b610f77565b005b34801561053557600080fd5b5061053e611090565b60405161054b9190613f82565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613609565b611122565b005b34801561058957600080fd5b506105a4600480360381019061059f9190613586565b611138565b005b6105c060048036038101906105bb919061376e565b61119a565b005b3480156105ce57600080fd5b506105e960048036038101906105e4919061376e565b61149f565b6040516105f69190613f82565b60405180910390f35b34801561060b57600080fd5b506106146115a6565b005b34801561062257600080fd5b5061063d600480360381019061063891906134f3565b61163f565b60405161064a9190613f22565b60405180910390f35b34801561065f57600080fd5b506106686116d3565b6040516106759190613f22565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a091906134c6565b6116e6565b005b3480156106b357600080fd5b506106bc6117de565b6040516106c99190614384565b60405180910390f35b6106ec60048036038101906106e791906137db565b6117e4565b005b60006106f982611bc4565b9050919050565b60606000805461070f90614660565b80601f016020809104026020016040519081016040528092919081815260200182805461073b90614660565b80156107885780601f1061075d57610100808354040283529160200191610788565b820191906000526020600020905b81548152906001019060200180831161076b57829003601f168201915b5050505050905090565b600061079d82611c3e565b6107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390614264565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082282610d48565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a906142c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108b2611caa565b73ffffffffffffffffffffffffffffffffffffffff1614806108e157506108e0816108db611caa565b61163f565b5b610920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091790614184565b60405180910390fd5b61092a8383611cb2565b505050565b6000600880549050905090565b61094d610947611caa565b82611d6b565b61098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098390614304565b60405180910390fd5b610997838383611e49565b505050565b601060019054906101000a900460ff1681565b6109b7611caa565b73ffffffffffffffffffffffffffffffffffffffff166109d5610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290614284565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000610a6283610dfa565b8210610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a90614004565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b04611caa565b73ffffffffffffffffffffffffffffffffffffffff16610b22610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f90614284565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610bbf83838360405180602001604052806000815250611138565b505050565b6000610bce61092f565b8210610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0690614324565b60405180910390fd5b60088281548110610c2357610c22614856565b5b90600052602060002001549050919050565b610c3d611caa565b73ffffffffffffffffffffffffffffffffffffffff16610c5b610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890614284565b60405180910390fd5b6000610cbb61092f565b9050600f548382610ccc919061447e565b1115610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906140a4565b60405180910390fd5b60005b83811015610d42576000610d2261092f565b9050610d2e84826120b0565b508080610d3a906146c3565b915050610d10565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906141c4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e62906141a4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eba611caa565b73ffffffffffffffffffffffffffffffffffffffff16610ed8610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590614284565b60405180910390fd5b610f3860006120ce565b565b600e60009054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f7f611caa565b73ffffffffffffffffffffffffffffffffffffffff16610f9d610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90614284565b60405180910390fd5b600e60009054906101000a900460ff1615611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90614244565b60405180910390fd5b81601360146101000a81548160ff02191690831515021790555082600c90805190602001906110739291906132da565b5080600d908051906020019061108a9291906132da565b50505050565b60606001805461109f90614660565b80601f01602080910402602001604051908101604052809291908181526020018280546110cb90614660565b80156111185780601f106110ed57610100808354040283529160200191611118565b820191906000526020600020905b8154815290600101906020018083116110fb57829003601f168201915b5050505050905090565b61113461112d611caa565b8383612194565b5050565b611149611143611caa565b83611d6b565b611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90614304565b60405180910390fd5b61119484848484612301565b50505050565b6002600b5414156111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790614364565b60405180910390fd5b6002600b819055506111f0611caa565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613fe4565b60405180910390fd5b601060009054906101000a900460ff166112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390614124565b60405180910390fd5b6001601260006112ba611caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611300919061447e565b1115611341576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611338906142e4565b60405180910390fd5b600f548161134d61092f565b611357919061447e565b1115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f906141e4565b60405180910390fd5b348160006113a69190614505565b11156113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90614104565b60405180910390fd5b60005b818110156114935760006113fc61092f565b9050600f5461140961092f565b101561147f5760016012600061141d611caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611466919061447e565b9250508190555061147e611478611caa565b826120b0565b5b50808061148b906146c3565b9150506113ea565b506001600b8190555050565b60606114aa82611c3e565b6114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e0906142a4565b60405180910390fd5b60006114f361235d565b9050601360149054906101000a900460ff161561155e5760008151116115285760405180602001604052806000815250611556565b80611532846123ef565b600d60405160200161154693929190613e64565b6040516020818303038152906040525b9150506115a1565b600081511161157c576040518060200160405280600081525061159d565b8060405160200161158d9190613e4d565b6040516020818303038152906040525b9150505b919050565b6115ae611caa565b73ffffffffffffffffffffffffffffffffffffffff166115cc610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614284565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b6116ee611caa565b73ffffffffffffffffffffffffffffffffffffffff1661170c610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990614284565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990614044565b60405180910390fd5b6117db816120ce565b50565b600f5481565b6002600b54141561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190614364565b60405180910390fd5b6002600b8190555061183a611caa565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90613fe4565b60405180910390fd5b601060019054906101000a900460ff166118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90614124565b60405180910390fd5b600160116000611904611caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361194a919061447e565b111561198b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611982906142e4565b60405180910390fd5b600f548261199761092f565b6119a1919061447e565b11156119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d9906141e4565b60405180910390fd5b348260006119f09190614505565b1115611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2890614104565b60405180910390fd5b6000611a69611a3e611caa565b604051602001611a4e9190613e32565b60405160208183030381529060405280519060200120612550565b90506000611a778284612580565b9050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090614344565b60405180910390fd5b60005b84811015611bb5576000611b1e61092f565b9050600f54611b2b61092f565b1015611ba157600160116000611b3f611caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b88919061447e565b92505081905550611ba0611b9a611caa565b826120b0565b5b508080611bad906146c3565b915050611b0c565b5050506001600b819055505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c375750611c36826125a7565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d2583610d48565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d7682611c3e565b611db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dac90614164565b60405180910390fd5b6000611dc083610d48565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e2f57508373ffffffffffffffffffffffffffffffffffffffff16611e1784610792565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e405750611e3f818561163f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e6982610d48565b73ffffffffffffffffffffffffffffffffffffffff1614611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690614064565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f26906140c4565b60405180910390fd5b611f3a838383612689565b611f45600082611cb2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f95919061455f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fec919061447e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ab838383612699565b505050565b6120ca82826040518060200160405280600081525061269e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa906140e4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122f49190613f22565b60405180910390a3505050565b61230c848484611e49565b612318848484846126f9565b612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e90614024565b60405180910390fd5b50505050565b6060600c805461236c90614660565b80601f016020809104026020016040519081016040528092919081815260200182805461239890614660565b80156123e55780601f106123ba576101008083540402835291602001916123e5565b820191906000526020600020905b8154815290600101906020018083116123c857829003601f168201915b5050505050905090565b60606000821415612437576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061254b565b600082905060005b60008214612469578080612452906146c3565b915050600a8261246291906144d4565b915061243f565b60008167ffffffffffffffff81111561248557612484614885565b5b6040519080825280601f01601f1916602001820160405280156124b75781602001600182028036833780820191505090505b5090505b60008514612544576001826124d0919061455f565b9150600a856124df919061473a565b60306124eb919061447e565b60f81b81838151811061250157612500614856565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561253d91906144d4565b94506124bb565b8093505050505b919050565b6000816040516020016125639190613e95565b604051602081830303815290604052805190602001209050919050565b600080600061258f8585612890565b9150915061259c81612913565b819250505092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061267257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612682575061268182612ae8565b5b9050919050565b612694838383612b52565b505050565b505050565b6126a88383612c66565b6126b560008484846126f9565b6126f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126eb90614024565b60405180910390fd5b505050565b600061271a8473ffffffffffffffffffffffffffffffffffffffff16612e40565b15612883578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612743611caa565b8786866040518563ffffffff1660e01b81526004016127659493929190613ed6565b602060405180830381600087803b15801561277f57600080fd5b505af19250505080156127b057506040513d601f19601f820116820180604052508101906127ad91906136b6565b60015b612833573d80600081146127e0576040519150601f19603f3d011682016040523d82523d6000602084013e6127e5565b606091505b5060008151141561282b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282290614024565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612888565b600190505b949350505050565b6000806041835114156128d25760008060006020860151925060408601519150606086015160001a90506128c687828585612e63565b9450945050505061290c565b6040835114156129035760008060208501519150604085015190506128f8868383612f70565b93509350505061290c565b60006002915091505b9250929050565b60006004811115612927576129266147c9565b5b81600481111561293a576129396147c9565b5b141561294557612ae5565b60016004811115612959576129586147c9565b5b81600481111561296c5761296b6147c9565b5b14156129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490613fa4565b60405180910390fd5b600260048111156129c1576129c06147c9565b5b8160048111156129d4576129d36147c9565b5b1415612a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0c90613fc4565b60405180910390fd5b60036004811115612a2957612a286147c9565b5b816004811115612a3c57612a3b6147c9565b5b1415612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7490614144565b60405180910390fd5b600480811115612a9057612a8f6147c9565b5b816004811115612aa357612aa26147c9565b5b1415612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90614204565b60405180910390fd5b5b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b5d838383612fcf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ba057612b9b81612fd4565b612bdf565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bde57612bdd838261301d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c2257612c1d8161318a565b612c61565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c6057612c5f828261325b565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccd90614224565b60405180910390fd5b612cdf81611c3e565b15612d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1690614084565b60405180910390fd5b612d2b60008383612689565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d7b919061447e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e3c60008383612699565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612e9e576000600391509150612f67565b601b8560ff1614158015612eb65750601c8560ff1614155b15612ec8576000600491509150612f67565b600060018787878760405160008152602001604052604051612eed9493929190613f3d565b6020604051602081039080840390855afa158015612f0f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f5e57600060019250925050612f67565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c612fb3919061447e565b9050612fc187828885612e63565b935093505050935093915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161302a84610dfa565b613034919061455f565b9050600060076000848152602001908152602001600020549050818114613119576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061319e919061455f565b90506000600960008481526020019081526020016000205490506000600883815481106131ce576131cd614856565b5b9060005260206000200154905080600883815481106131f0576131ef614856565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061323f5761323e614827565b5b6001900381819060005260206000200160009055905550505050565b600061326683610dfa565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546132e690614660565b90600052602060002090601f016020900481019282613308576000855561334f565b82601f1061332157805160ff191683800117855561334f565b8280016001018555821561334f579182015b8281111561334e578251825591602001919060010190613333565b5b50905061335c9190613360565b5090565b5b80821115613379576000816000905550600101613361565b5090565b600061339061338b846143c4565b61439f565b9050828152602081018484840111156133ac576133ab6148b9565b5b6133b784828561461e565b509392505050565b60006133d26133cd846143f5565b61439f565b9050828152602081018484840111156133ee576133ed6148b9565b5b6133f984828561461e565b509392505050565b6000813590506134108161514a565b92915050565b60008135905061342581615161565b92915050565b60008135905061343a81615178565b92915050565b60008151905061344f81615178565b92915050565b600082601f83011261346a576134696148b4565b5b813561347a84826020860161337d565b91505092915050565b600082601f830112613498576134976148b4565b5b81356134a88482602086016133bf565b91505092915050565b6000813590506134c08161518f565b92915050565b6000602082840312156134dc576134db6148c3565b5b60006134ea84828501613401565b91505092915050565b6000806040838503121561350a576135096148c3565b5b600061351885828601613401565b925050602061352985828601613401565b9150509250929050565b60008060006060848603121561354c5761354b6148c3565b5b600061355a86828701613401565b935050602061356b86828701613401565b925050604061357c868287016134b1565b9150509250925092565b600080600080608085870312156135a05761359f6148c3565b5b60006135ae87828801613401565b94505060206135bf87828801613401565b93505060406135d0878288016134b1565b925050606085013567ffffffffffffffff8111156135f1576135f06148be565b5b6135fd87828801613455565b91505092959194509250565b600080604083850312156136205761361f6148c3565b5b600061362e85828601613401565b925050602061363f85828601613416565b9150509250929050565b600080604083850312156136605761365f6148c3565b5b600061366e85828601613401565b925050602061367f858286016134b1565b9150509250929050565b60006020828403121561369f5761369e6148c3565b5b60006136ad8482850161342b565b91505092915050565b6000602082840312156136cc576136cb6148c3565b5b60006136da84828501613440565b91505092915050565b6000806000606084860312156136fc576136fb6148c3565b5b600084013567ffffffffffffffff81111561371a576137196148be565b5b61372686828701613483565b935050602061373786828701613416565b925050604084013567ffffffffffffffff811115613758576137576148be565b5b61376486828701613483565b9150509250925092565b600060208284031215613784576137836148c3565b5b6000613792848285016134b1565b91505092915050565b600080604083850312156137b2576137b16148c3565b5b60006137c0858286016134b1565b92505060206137d185828601613401565b9150509250929050565b600080604083850312156137f2576137f16148c3565b5b6000613800858286016134b1565b925050602083013567ffffffffffffffff811115613821576138206148be565b5b61382d85828601613455565b9150509250929050565b61384081614593565b82525050565b61385761385282614593565b61470c565b82525050565b613866816145a5565b82525050565b613875816145b1565b82525050565b61388c613887826145b1565b61471e565b82525050565b600061389d8261443b565b6138a78185614451565b93506138b781856020860161462d565b6138c0816148c8565b840191505092915050565b60006138d682614446565b6138e08185614462565b93506138f081856020860161462d565b6138f9816148c8565b840191505092915050565b600061390f82614446565b6139198185614473565b935061392981856020860161462d565b80840191505092915050565b6000815461394281614660565b61394c8186614473565b945060018216600081146139675760018114613978576139ab565b60ff198316865281860193506139ab565b61398185614426565b60005b838110156139a357815481890152600182019150602081019050613984565b838801955050505b50505092915050565b60006139c1601883614462565b91506139cc826148e6565b602082019050919050565b60006139e4601f83614462565b91506139ef8261490f565b602082019050919050565b6000613a07602b83614462565b9150613a1282614938565b604082019050919050565b6000613a2a601c83614473565b9150613a3582614987565b601c82019050919050565b6000613a4d602b83614462565b9150613a58826149b0565b604082019050919050565b6000613a70603283614462565b9150613a7b826149ff565b604082019050919050565b6000613a93602683614462565b9150613a9e82614a4e565b604082019050919050565b6000613ab6602583614462565b9150613ac182614a9d565b604082019050919050565b6000613ad9601c83614462565b9150613ae482614aec565b602082019050919050565b6000613afc602583614462565b9150613b0782614b15565b604082019050919050565b6000613b1f602483614462565b9150613b2a82614b64565b604082019050919050565b6000613b42601983614462565b9150613b4d82614bb3565b602082019050919050565b6000613b65601f83614462565b9150613b7082614bdc565b602082019050919050565b6000613b88602283614462565b9150613b9382614c05565b604082019050919050565b6000613bab602283614462565b9150613bb682614c54565b604082019050919050565b6000613bce602c83614462565b9150613bd982614ca3565b604082019050919050565b6000613bf1603883614462565b9150613bfc82614cf2565b604082019050919050565b6000613c14602a83614462565b9150613c1f82614d41565b604082019050919050565b6000613c37602983614462565b9150613c4282614d90565b604082019050919050565b6000613c5a602a83614462565b9150613c6582614ddf565b604082019050919050565b6000613c7d602283614462565b9150613c8882614e2e565b604082019050919050565b6000613ca0602083614462565b9150613cab82614e7d565b602082019050919050565b6000613cc3603d83614462565b9150613cce82614ea6565b604082019050919050565b6000613ce6602c83614462565b9150613cf182614ef5565b604082019050919050565b6000613d09602083614462565b9150613d1482614f44565b602082019050919050565b6000613d2c602f83614462565b9150613d3782614f6d565b604082019050919050565b6000613d4f602183614462565b9150613d5a82614fbc565b604082019050919050565b6000613d72601b83614462565b9150613d7d8261500b565b602082019050919050565b6000613d95603183614462565b9150613da082615034565b604082019050919050565b6000613db8602c83614462565b9150613dc382615083565b604082019050919050565b6000613ddb602a83614462565b9150613de6826150d2565b604082019050919050565b6000613dfe601f83614462565b9150613e0982615121565b602082019050919050565b613e1d81614607565b82525050565b613e2c81614611565b82525050565b6000613e3e8284613846565b60148201915081905092915050565b6000613e598284613904565b915081905092915050565b6000613e708286613904565b9150613e7c8285613904565b9150613e888284613935565b9150819050949350505050565b6000613ea082613a1d565b9150613eac828461387b565b60208201915081905092915050565b6000602082019050613ed06000830184613837565b92915050565b6000608082019050613eeb6000830187613837565b613ef86020830186613837565b613f056040830185613e14565b8181036060830152613f178184613892565b905095945050505050565b6000602082019050613f37600083018461385d565b92915050565b6000608082019050613f52600083018761386c565b613f5f6020830186613e23565b613f6c604083018561386c565b613f79606083018461386c565b95945050505050565b60006020820190508181036000830152613f9c81846138cb565b905092915050565b60006020820190508181036000830152613fbd816139b4565b9050919050565b60006020820190508181036000830152613fdd816139d7565b9050919050565b60006020820190508181036000830152613ffd816139fa565b9050919050565b6000602082019050818103600083015261401d81613a40565b9050919050565b6000602082019050818103600083015261403d81613a63565b9050919050565b6000602082019050818103600083015261405d81613a86565b9050919050565b6000602082019050818103600083015261407d81613aa9565b9050919050565b6000602082019050818103600083015261409d81613acc565b9050919050565b600060208201905081810360008301526140bd81613aef565b9050919050565b600060208201905081810360008301526140dd81613b12565b9050919050565b600060208201905081810360008301526140fd81613b35565b9050919050565b6000602082019050818103600083015261411d81613b58565b9050919050565b6000602082019050818103600083015261413d81613b7b565b9050919050565b6000602082019050818103600083015261415d81613b9e565b9050919050565b6000602082019050818103600083015261417d81613bc1565b9050919050565b6000602082019050818103600083015261419d81613be4565b9050919050565b600060208201905081810360008301526141bd81613c07565b9050919050565b600060208201905081810360008301526141dd81613c2a565b9050919050565b600060208201905081810360008301526141fd81613c4d565b9050919050565b6000602082019050818103600083015261421d81613c70565b9050919050565b6000602082019050818103600083015261423d81613c93565b9050919050565b6000602082019050818103600083015261425d81613cb6565b9050919050565b6000602082019050818103600083015261427d81613cd9565b9050919050565b6000602082019050818103600083015261429d81613cfc565b9050919050565b600060208201905081810360008301526142bd81613d1f565b9050919050565b600060208201905081810360008301526142dd81613d42565b9050919050565b600060208201905081810360008301526142fd81613d65565b9050919050565b6000602082019050818103600083015261431d81613d88565b9050919050565b6000602082019050818103600083015261433d81613dab565b9050919050565b6000602082019050818103600083015261435d81613dce565b9050919050565b6000602082019050818103600083015261437d81613df1565b9050919050565b60006020820190506143996000830184613e14565b92915050565b60006143a96143ba565b90506143b58282614692565b919050565b6000604051905090565b600067ffffffffffffffff8211156143df576143de614885565b5b6143e8826148c8565b9050602081019050919050565b600067ffffffffffffffff8211156144105761440f614885565b5b614419826148c8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061448982614607565b915061449483614607565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144c9576144c861476b565b5b828201905092915050565b60006144df82614607565b91506144ea83614607565b9250826144fa576144f961479a565b5b828204905092915050565b600061451082614607565b915061451b83614607565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145545761455361476b565b5b828202905092915050565b600061456a82614607565b915061457583614607565b9250828210156145885761458761476b565b5b828203905092915050565b600061459e826145e7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561464b578082015181840152602081019050614630565b8381111561465a576000848401525b50505050565b6000600282049050600182168061467857607f821691505b6020821081141561468c5761468b6147f8565b5b50919050565b61469b826148c8565b810181811067ffffffffffffffff821117156146ba576146b9614885565b5b80604052505050565b60006146ce82614607565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147015761470061476b565b5b600182019050919050565b600061471782614728565b9050919050565b6000819050919050565b6000614733826148d9565b9050919050565b600061474582614607565b915061475083614607565b9250826147605761475f61479a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f546869732066756e6374696f6e206973206f6e6c792063616c6c61626c65206660008201527f726f6d20616e20454f412e000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5765206861766520616c7265616479206869742074686520726573657276652060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f546865206d65746164617461205552492069732066726f7a656e2e20596f752060008201527f63616e206e6f206c6f6e67657220736574207468652062617365555249000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f546865207369676e617475726520666f722074686520677265656e6c6973742060008201527f697320696e76616c696400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61515381614593565b811461515e57600080fd5b50565b61516a816145a5565b811461517557600080fd5b50565b615181816145bb565b811461518c57600080fd5b50565b61519881614607565b81146151a357600080fd5b5056fea2646970667358221220e62eaa1454e8e7b83bb34a8d87bb479a3db948527be7e221f652a101c832817964736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c634d03211610095578063eb8d244411610064578063eb8d244414610653578063f2fde38b1461067e578063f47c84c5146106a7578063f7f7bf7b146106d2576101cd565b8063c634d032146105a6578063c87b56dd146105c2578063d111515d146105ff578063e985e9c514610616576101cd565b806393b15295116100d157806393b152951461050057806395d89b4114610529578063a22cb46514610554578063b88d4fde1461057d576101cd565b8063715018a6146104935780638529ccad146104aa5780638da5cb5b146104d5576101cd565b80632da435f71161016f5780634f6ccce71161013e5780634f6ccce7146103b357806353d4c775146103f05780636352211e1461041957806370a0823114610456576101cd565b80632da435f71461031f5780632f745c591461033657806334918dfd1461037357806342842e0e1461038a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632541865c146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190613689565b6106ee565b6040516102069190613f22565b60405180910390f35b34801561021b57600080fd5b50610224610700565b6040516102319190613f82565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061376e565b610792565b60405161026e9190613ebb565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613649565b610817565b005b3480156102ac57600080fd5b506102b561092f565b6040516102c29190614384565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613533565b61093c565b005b34801561030057600080fd5b5061030961099c565b6040516103169190613f22565b60405180910390f35b34801561032b57600080fd5b506103346109af565b005b34801561034257600080fd5b5061035d60048036038101906103589190613649565b610a57565b60405161036a9190614384565b60405180910390f35b34801561037f57600080fd5b50610388610afc565b005b34801561039657600080fd5b506103b160048036038101906103ac9190613533565b610ba4565b005b3480156103bf57600080fd5b506103da60048036038101906103d5919061376e565b610bc4565b6040516103e79190614384565b60405180910390f35b3480156103fc57600080fd5b506104176004803603810190610412919061379b565b610c35565b005b34801561042557600080fd5b50610440600480360381019061043b919061376e565b610d48565b60405161044d9190613ebb565b60405180910390f35b34801561046257600080fd5b5061047d600480360381019061047891906134c6565b610dfa565b60405161048a9190614384565b60405180910390f35b34801561049f57600080fd5b506104a8610eb2565b005b3480156104b657600080fd5b506104bf610f3a565b6040516104cc9190613f22565b60405180910390f35b3480156104e157600080fd5b506104ea610f4d565b6040516104f79190613ebb565b60405180910390f35b34801561050c57600080fd5b50610527600480360381019061052291906136e3565b610f77565b005b34801561053557600080fd5b5061053e611090565b60405161054b9190613f82565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613609565b611122565b005b34801561058957600080fd5b506105a4600480360381019061059f9190613586565b611138565b005b6105c060048036038101906105bb919061376e565b61119a565b005b3480156105ce57600080fd5b506105e960048036038101906105e4919061376e565b61149f565b6040516105f69190613f82565b60405180910390f35b34801561060b57600080fd5b506106146115a6565b005b34801561062257600080fd5b5061063d600480360381019061063891906134f3565b61163f565b60405161064a9190613f22565b60405180910390f35b34801561065f57600080fd5b506106686116d3565b6040516106759190613f22565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a091906134c6565b6116e6565b005b3480156106b357600080fd5b506106bc6117de565b6040516106c99190614384565b60405180910390f35b6106ec60048036038101906106e791906137db565b6117e4565b005b60006106f982611bc4565b9050919050565b60606000805461070f90614660565b80601f016020809104026020016040519081016040528092919081815260200182805461073b90614660565b80156107885780601f1061075d57610100808354040283529160200191610788565b820191906000526020600020905b81548152906001019060200180831161076b57829003601f168201915b5050505050905090565b600061079d82611c3e565b6107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390614264565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082282610d48565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a906142c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108b2611caa565b73ffffffffffffffffffffffffffffffffffffffff1614806108e157506108e0816108db611caa565b61163f565b5b610920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091790614184565b60405180910390fd5b61092a8383611cb2565b505050565b6000600880549050905090565b61094d610947611caa565b82611d6b565b61098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098390614304565b60405180910390fd5b610997838383611e49565b505050565b601060019054906101000a900460ff1681565b6109b7611caa565b73ffffffffffffffffffffffffffffffffffffffff166109d5610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290614284565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000610a6283610dfa565b8210610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a90614004565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b04611caa565b73ffffffffffffffffffffffffffffffffffffffff16610b22610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f90614284565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610bbf83838360405180602001604052806000815250611138565b505050565b6000610bce61092f565b8210610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0690614324565b60405180910390fd5b60088281548110610c2357610c22614856565b5b90600052602060002001549050919050565b610c3d611caa565b73ffffffffffffffffffffffffffffffffffffffff16610c5b610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890614284565b60405180910390fd5b6000610cbb61092f565b9050600f548382610ccc919061447e565b1115610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906140a4565b60405180910390fd5b60005b83811015610d42576000610d2261092f565b9050610d2e84826120b0565b508080610d3a906146c3565b915050610d10565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906141c4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e62906141a4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eba611caa565b73ffffffffffffffffffffffffffffffffffffffff16610ed8610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590614284565b60405180910390fd5b610f3860006120ce565b565b600e60009054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f7f611caa565b73ffffffffffffffffffffffffffffffffffffffff16610f9d610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90614284565b60405180910390fd5b600e60009054906101000a900460ff1615611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90614244565b60405180910390fd5b81601360146101000a81548160ff02191690831515021790555082600c90805190602001906110739291906132da565b5080600d908051906020019061108a9291906132da565b50505050565b60606001805461109f90614660565b80601f01602080910402602001604051908101604052809291908181526020018280546110cb90614660565b80156111185780601f106110ed57610100808354040283529160200191611118565b820191906000526020600020905b8154815290600101906020018083116110fb57829003601f168201915b5050505050905090565b61113461112d611caa565b8383612194565b5050565b611149611143611caa565b83611d6b565b611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90614304565b60405180910390fd5b61119484848484612301565b50505050565b6002600b5414156111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790614364565b60405180910390fd5b6002600b819055506111f0611caa565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613fe4565b60405180910390fd5b601060009054906101000a900460ff166112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390614124565b60405180910390fd5b6001601260006112ba611caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611300919061447e565b1115611341576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611338906142e4565b60405180910390fd5b600f548161134d61092f565b611357919061447e565b1115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f906141e4565b60405180910390fd5b348160006113a69190614505565b11156113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90614104565b60405180910390fd5b60005b818110156114935760006113fc61092f565b9050600f5461140961092f565b101561147f5760016012600061141d611caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611466919061447e565b9250508190555061147e611478611caa565b826120b0565b5b50808061148b906146c3565b9150506113ea565b506001600b8190555050565b60606114aa82611c3e565b6114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e0906142a4565b60405180910390fd5b60006114f361235d565b9050601360149054906101000a900460ff161561155e5760008151116115285760405180602001604052806000815250611556565b80611532846123ef565b600d60405160200161154693929190613e64565b6040516020818303038152906040525b9150506115a1565b600081511161157c576040518060200160405280600081525061159d565b8060405160200161158d9190613e4d565b6040516020818303038152906040525b9150505b919050565b6115ae611caa565b73ffffffffffffffffffffffffffffffffffffffff166115cc610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614284565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b6116ee611caa565b73ffffffffffffffffffffffffffffffffffffffff1661170c610f4d565b73ffffffffffffffffffffffffffffffffffffffff1614611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990614284565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990614044565b60405180910390fd5b6117db816120ce565b50565b600f5481565b6002600b54141561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190614364565b60405180910390fd5b6002600b8190555061183a611caa565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90613fe4565b60405180910390fd5b601060019054906101000a900460ff166118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90614124565b60405180910390fd5b600160116000611904611caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361194a919061447e565b111561198b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611982906142e4565b60405180910390fd5b600f548261199761092f565b6119a1919061447e565b11156119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d9906141e4565b60405180910390fd5b348260006119f09190614505565b1115611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2890614104565b60405180910390fd5b6000611a69611a3e611caa565b604051602001611a4e9190613e32565b60405160208183030381529060405280519060200120612550565b90506000611a778284612580565b9050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090614344565b60405180910390fd5b60005b84811015611bb5576000611b1e61092f565b9050600f54611b2b61092f565b1015611ba157600160116000611b3f611caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b88919061447e565b92505081905550611ba0611b9a611caa565b826120b0565b5b508080611bad906146c3565b915050611b0c565b5050506001600b819055505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c375750611c36826125a7565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d2583610d48565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d7682611c3e565b611db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dac90614164565b60405180910390fd5b6000611dc083610d48565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e2f57508373ffffffffffffffffffffffffffffffffffffffff16611e1784610792565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e405750611e3f818561163f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e6982610d48565b73ffffffffffffffffffffffffffffffffffffffff1614611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690614064565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f26906140c4565b60405180910390fd5b611f3a838383612689565b611f45600082611cb2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f95919061455f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fec919061447e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ab838383612699565b505050565b6120ca82826040518060200160405280600081525061269e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa906140e4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122f49190613f22565b60405180910390a3505050565b61230c848484611e49565b612318848484846126f9565b612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e90614024565b60405180910390fd5b50505050565b6060600c805461236c90614660565b80601f016020809104026020016040519081016040528092919081815260200182805461239890614660565b80156123e55780601f106123ba576101008083540402835291602001916123e5565b820191906000526020600020905b8154815290600101906020018083116123c857829003601f168201915b5050505050905090565b60606000821415612437576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061254b565b600082905060005b60008214612469578080612452906146c3565b915050600a8261246291906144d4565b915061243f565b60008167ffffffffffffffff81111561248557612484614885565b5b6040519080825280601f01601f1916602001820160405280156124b75781602001600182028036833780820191505090505b5090505b60008514612544576001826124d0919061455f565b9150600a856124df919061473a565b60306124eb919061447e565b60f81b81838151811061250157612500614856565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561253d91906144d4565b94506124bb565b8093505050505b919050565b6000816040516020016125639190613e95565b604051602081830303815290604052805190602001209050919050565b600080600061258f8585612890565b9150915061259c81612913565b819250505092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061267257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612682575061268182612ae8565b5b9050919050565b612694838383612b52565b505050565b505050565b6126a88383612c66565b6126b560008484846126f9565b6126f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126eb90614024565b60405180910390fd5b505050565b600061271a8473ffffffffffffffffffffffffffffffffffffffff16612e40565b15612883578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612743611caa565b8786866040518563ffffffff1660e01b81526004016127659493929190613ed6565b602060405180830381600087803b15801561277f57600080fd5b505af19250505080156127b057506040513d601f19601f820116820180604052508101906127ad91906136b6565b60015b612833573d80600081146127e0576040519150601f19603f3d011682016040523d82523d6000602084013e6127e5565b606091505b5060008151141561282b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282290614024565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612888565b600190505b949350505050565b6000806041835114156128d25760008060006020860151925060408601519150606086015160001a90506128c687828585612e63565b9450945050505061290c565b6040835114156129035760008060208501519150604085015190506128f8868383612f70565b93509350505061290c565b60006002915091505b9250929050565b60006004811115612927576129266147c9565b5b81600481111561293a576129396147c9565b5b141561294557612ae5565b60016004811115612959576129586147c9565b5b81600481111561296c5761296b6147c9565b5b14156129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490613fa4565b60405180910390fd5b600260048111156129c1576129c06147c9565b5b8160048111156129d4576129d36147c9565b5b1415612a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0c90613fc4565b60405180910390fd5b60036004811115612a2957612a286147c9565b5b816004811115612a3c57612a3b6147c9565b5b1415612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7490614144565b60405180910390fd5b600480811115612a9057612a8f6147c9565b5b816004811115612aa357612aa26147c9565b5b1415612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90614204565b60405180910390fd5b5b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b5d838383612fcf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ba057612b9b81612fd4565b612bdf565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bde57612bdd838261301d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c2257612c1d8161318a565b612c61565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c6057612c5f828261325b565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccd90614224565b60405180910390fd5b612cdf81611c3e565b15612d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1690614084565b60405180910390fd5b612d2b60008383612689565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d7b919061447e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e3c60008383612699565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612e9e576000600391509150612f67565b601b8560ff1614158015612eb65750601c8560ff1614155b15612ec8576000600491509150612f67565b600060018787878760405160008152602001604052604051612eed9493929190613f3d565b6020604051602081039080840390855afa158015612f0f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f5e57600060019250925050612f67565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c612fb3919061447e565b9050612fc187828885612e63565b935093505050935093915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161302a84610dfa565b613034919061455f565b9050600060076000848152602001908152602001600020549050818114613119576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061319e919061455f565b90506000600960008481526020019081526020016000205490506000600883815481106131ce576131cd614856565b5b9060005260206000200154905080600883815481106131f0576131ef614856565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061323f5761323e614827565b5b6001900381819060005260206000200160009055905550505050565b600061326683610dfa565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546132e690614660565b90600052602060002090601f016020900481019282613308576000855561334f565b82601f1061332157805160ff191683800117855561334f565b8280016001018555821561334f579182015b8281111561334e578251825591602001919060010190613333565b5b50905061335c9190613360565b5090565b5b80821115613379576000816000905550600101613361565b5090565b600061339061338b846143c4565b61439f565b9050828152602081018484840111156133ac576133ab6148b9565b5b6133b784828561461e565b509392505050565b60006133d26133cd846143f5565b61439f565b9050828152602081018484840111156133ee576133ed6148b9565b5b6133f984828561461e565b509392505050565b6000813590506134108161514a565b92915050565b60008135905061342581615161565b92915050565b60008135905061343a81615178565b92915050565b60008151905061344f81615178565b92915050565b600082601f83011261346a576134696148b4565b5b813561347a84826020860161337d565b91505092915050565b600082601f830112613498576134976148b4565b5b81356134a88482602086016133bf565b91505092915050565b6000813590506134c08161518f565b92915050565b6000602082840312156134dc576134db6148c3565b5b60006134ea84828501613401565b91505092915050565b6000806040838503121561350a576135096148c3565b5b600061351885828601613401565b925050602061352985828601613401565b9150509250929050565b60008060006060848603121561354c5761354b6148c3565b5b600061355a86828701613401565b935050602061356b86828701613401565b925050604061357c868287016134b1565b9150509250925092565b600080600080608085870312156135a05761359f6148c3565b5b60006135ae87828801613401565b94505060206135bf87828801613401565b93505060406135d0878288016134b1565b925050606085013567ffffffffffffffff8111156135f1576135f06148be565b5b6135fd87828801613455565b91505092959194509250565b600080604083850312156136205761361f6148c3565b5b600061362e85828601613401565b925050602061363f85828601613416565b9150509250929050565b600080604083850312156136605761365f6148c3565b5b600061366e85828601613401565b925050602061367f858286016134b1565b9150509250929050565b60006020828403121561369f5761369e6148c3565b5b60006136ad8482850161342b565b91505092915050565b6000602082840312156136cc576136cb6148c3565b5b60006136da84828501613440565b91505092915050565b6000806000606084860312156136fc576136fb6148c3565b5b600084013567ffffffffffffffff81111561371a576137196148be565b5b61372686828701613483565b935050602061373786828701613416565b925050604084013567ffffffffffffffff811115613758576137576148be565b5b61376486828701613483565b9150509250925092565b600060208284031215613784576137836148c3565b5b6000613792848285016134b1565b91505092915050565b600080604083850312156137b2576137b16148c3565b5b60006137c0858286016134b1565b92505060206137d185828601613401565b9150509250929050565b600080604083850312156137f2576137f16148c3565b5b6000613800858286016134b1565b925050602083013567ffffffffffffffff811115613821576138206148be565b5b61382d85828601613455565b9150509250929050565b61384081614593565b82525050565b61385761385282614593565b61470c565b82525050565b613866816145a5565b82525050565b613875816145b1565b82525050565b61388c613887826145b1565b61471e565b82525050565b600061389d8261443b565b6138a78185614451565b93506138b781856020860161462d565b6138c0816148c8565b840191505092915050565b60006138d682614446565b6138e08185614462565b93506138f081856020860161462d565b6138f9816148c8565b840191505092915050565b600061390f82614446565b6139198185614473565b935061392981856020860161462d565b80840191505092915050565b6000815461394281614660565b61394c8186614473565b945060018216600081146139675760018114613978576139ab565b60ff198316865281860193506139ab565b61398185614426565b60005b838110156139a357815481890152600182019150602081019050613984565b838801955050505b50505092915050565b60006139c1601883614462565b91506139cc826148e6565b602082019050919050565b60006139e4601f83614462565b91506139ef8261490f565b602082019050919050565b6000613a07602b83614462565b9150613a1282614938565b604082019050919050565b6000613a2a601c83614473565b9150613a3582614987565b601c82019050919050565b6000613a4d602b83614462565b9150613a58826149b0565b604082019050919050565b6000613a70603283614462565b9150613a7b826149ff565b604082019050919050565b6000613a93602683614462565b9150613a9e82614a4e565b604082019050919050565b6000613ab6602583614462565b9150613ac182614a9d565b604082019050919050565b6000613ad9601c83614462565b9150613ae482614aec565b602082019050919050565b6000613afc602583614462565b9150613b0782614b15565b604082019050919050565b6000613b1f602483614462565b9150613b2a82614b64565b604082019050919050565b6000613b42601983614462565b9150613b4d82614bb3565b602082019050919050565b6000613b65601f83614462565b9150613b7082614bdc565b602082019050919050565b6000613b88602283614462565b9150613b9382614c05565b604082019050919050565b6000613bab602283614462565b9150613bb682614c54565b604082019050919050565b6000613bce602c83614462565b9150613bd982614ca3565b604082019050919050565b6000613bf1603883614462565b9150613bfc82614cf2565b604082019050919050565b6000613c14602a83614462565b9150613c1f82614d41565b604082019050919050565b6000613c37602983614462565b9150613c4282614d90565b604082019050919050565b6000613c5a602a83614462565b9150613c6582614ddf565b604082019050919050565b6000613c7d602283614462565b9150613c8882614e2e565b604082019050919050565b6000613ca0602083614462565b9150613cab82614e7d565b602082019050919050565b6000613cc3603d83614462565b9150613cce82614ea6565b604082019050919050565b6000613ce6602c83614462565b9150613cf182614ef5565b604082019050919050565b6000613d09602083614462565b9150613d1482614f44565b602082019050919050565b6000613d2c602f83614462565b9150613d3782614f6d565b604082019050919050565b6000613d4f602183614462565b9150613d5a82614fbc565b604082019050919050565b6000613d72601b83614462565b9150613d7d8261500b565b602082019050919050565b6000613d95603183614462565b9150613da082615034565b604082019050919050565b6000613db8602c83614462565b9150613dc382615083565b604082019050919050565b6000613ddb602a83614462565b9150613de6826150d2565b604082019050919050565b6000613dfe601f83614462565b9150613e0982615121565b602082019050919050565b613e1d81614607565b82525050565b613e2c81614611565b82525050565b6000613e3e8284613846565b60148201915081905092915050565b6000613e598284613904565b915081905092915050565b6000613e708286613904565b9150613e7c8285613904565b9150613e888284613935565b9150819050949350505050565b6000613ea082613a1d565b9150613eac828461387b565b60208201915081905092915050565b6000602082019050613ed06000830184613837565b92915050565b6000608082019050613eeb6000830187613837565b613ef86020830186613837565b613f056040830185613e14565b8181036060830152613f178184613892565b905095945050505050565b6000602082019050613f37600083018461385d565b92915050565b6000608082019050613f52600083018761386c565b613f5f6020830186613e23565b613f6c604083018561386c565b613f79606083018461386c565b95945050505050565b60006020820190508181036000830152613f9c81846138cb565b905092915050565b60006020820190508181036000830152613fbd816139b4565b9050919050565b60006020820190508181036000830152613fdd816139d7565b9050919050565b60006020820190508181036000830152613ffd816139fa565b9050919050565b6000602082019050818103600083015261401d81613a40565b9050919050565b6000602082019050818103600083015261403d81613a63565b9050919050565b6000602082019050818103600083015261405d81613a86565b9050919050565b6000602082019050818103600083015261407d81613aa9565b9050919050565b6000602082019050818103600083015261409d81613acc565b9050919050565b600060208201905081810360008301526140bd81613aef565b9050919050565b600060208201905081810360008301526140dd81613b12565b9050919050565b600060208201905081810360008301526140fd81613b35565b9050919050565b6000602082019050818103600083015261411d81613b58565b9050919050565b6000602082019050818103600083015261413d81613b7b565b9050919050565b6000602082019050818103600083015261415d81613b9e565b9050919050565b6000602082019050818103600083015261417d81613bc1565b9050919050565b6000602082019050818103600083015261419d81613be4565b9050919050565b600060208201905081810360008301526141bd81613c07565b9050919050565b600060208201905081810360008301526141dd81613c2a565b9050919050565b600060208201905081810360008301526141fd81613c4d565b9050919050565b6000602082019050818103600083015261421d81613c70565b9050919050565b6000602082019050818103600083015261423d81613c93565b9050919050565b6000602082019050818103600083015261425d81613cb6565b9050919050565b6000602082019050818103600083015261427d81613cd9565b9050919050565b6000602082019050818103600083015261429d81613cfc565b9050919050565b600060208201905081810360008301526142bd81613d1f565b9050919050565b600060208201905081810360008301526142dd81613d42565b9050919050565b600060208201905081810360008301526142fd81613d65565b9050919050565b6000602082019050818103600083015261431d81613d88565b9050919050565b6000602082019050818103600083015261433d81613dab565b9050919050565b6000602082019050818103600083015261435d81613dce565b9050919050565b6000602082019050818103600083015261437d81613df1565b9050919050565b60006020820190506143996000830184613e14565b92915050565b60006143a96143ba565b90506143b58282614692565b919050565b6000604051905090565b600067ffffffffffffffff8211156143df576143de614885565b5b6143e8826148c8565b9050602081019050919050565b600067ffffffffffffffff8211156144105761440f614885565b5b614419826148c8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061448982614607565b915061449483614607565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144c9576144c861476b565b5b828201905092915050565b60006144df82614607565b91506144ea83614607565b9250826144fa576144f961479a565b5b828204905092915050565b600061451082614607565b915061451b83614607565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145545761455361476b565b5b828202905092915050565b600061456a82614607565b915061457583614607565b9250828210156145885761458761476b565b5b828203905092915050565b600061459e826145e7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561464b578082015181840152602081019050614630565b8381111561465a576000848401525b50505050565b6000600282049050600182168061467857607f821691505b6020821081141561468c5761468b6147f8565b5b50919050565b61469b826148c8565b810181811067ffffffffffffffff821117156146ba576146b9614885565b5b80604052505050565b60006146ce82614607565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147015761470061476b565b5b600182019050919050565b600061471782614728565b9050919050565b6000819050919050565b6000614733826148d9565b9050919050565b600061474582614607565b915061475083614607565b9250826147605761475f61479a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f546869732066756e6374696f6e206973206f6e6c792063616c6c61626c65206660008201527f726f6d20616e20454f412e000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5765206861766520616c7265616479206869742074686520726573657276652060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f546865206d65746164617461205552492069732066726f7a656e2e20596f752060008201527f63616e206e6f206c6f6e67657220736574207468652062617365555249000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f546865207369676e617475726520666f722074686520677265656e6c6973742060008201527f697320696e76616c696400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61515381614593565b811461515e57600080fd5b50565b61516a816145a5565b811461517557600080fd5b50565b615181816145bb565b811461518c57600080fd5b50565b61519881614607565b81146151a357600080fd5b5056fea2646970667358221220e62eaa1454e8e7b83bb34a8d87bb479a3db948527be7e221f652a101c832817964736f6c63430008070033
Deployed Bytecode Sourcemap
57985:4742:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58784: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;:::-;;58298:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59086:120;;;;;;;;;;;;;:::i;:::-;;39775:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58977:93;;;;;;;;;;;;;:::i;:::-;;25384:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40297:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62347:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22359:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22089:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36551:103;;;;;;;;;;;;;:::i;:::-;;58179:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35900:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59216:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22834:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24517:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25640:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60319:829;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59780:525;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59687:85;;;;;;;;;;;;;:::i;:::-;;24743:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58259:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36809:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58220:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61164:1163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58784:179;58895:4;58919:36;58943:11;58919:23;:36::i;:::-;58912:43;;58784: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;58298:41::-;;;;;;;;;;;;;:::o;59086:120::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59177:21:::1;;;;;;;;;;;59176:22;59152:21;;:46;;;;;;;;;;;;;;;;;;59086: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;58977:93::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59050:12:::1;;;;;;;;;;;59049:13;59034:12;;:28;;;;;;;;;;;;;;;;;;58977: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;62347:373::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62432:11:::1;62446:13;:11;:13::i;:::-;62432:27;;62499:10;;62487:8;62478:6;:17;;;;:::i;:::-;:31;;62470:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;62562:6;62579:134;62595:8;62591:1;:12;62579:134;;;62625:14;62642:13;:11;:13::i;:::-;62625:30;;62670:31;62680:9;62691;62670;:31::i;:::-;62610:103;62605:3;;;;;:::i;:::-;;;;62579:134;;;62421:299;;62347: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;58179:34::-;;;;;;;;;;;;;:::o;35900:87::-;35946:7;35973:6;;;;;;;;;;;35966:13;;35900:87;:::o;59216:338::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59344:14:::1;;;;;;;;;;;59343:15;59335:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;59460:14;59435:22;;:39;;;;;;;;;;;;;;;;;;59504:8;59485:16;:27;;;;;;;;;;;;:::i;:::-;;59540:6;59523:14;:23;;;;;;;;;;;;:::i;:::-;;59216: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;60319:829::-;47431:1;48029:7;;:19;;48021:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47431:1;48162:7;:18;;;;60419:12:::1;:10;:12::i;:::-;60406:25;;:9;:25;;;60398:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;60498:12;;;;;;;;;;;60490:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;60624:1;60585:21;:35;60607:12;:10;:12::i;:::-;60585:35;;;;;;;;;;;;;;;;60568:14;:52;;;;:::i;:::-;:57;;60560:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;60712:10;;60694:14;60678:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;60670:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;60810:9;60792:14;60788:1;:18;;;;:::i;:::-;:31;;60780:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;60873:6;60868:273;60889:14;60885:1;:18;60868:273;;;60925:14;60942:13;:11;:13::i;:::-;60925:30;;60990:10;;60974:13;:11;:13::i;:::-;:26;60970:160;;;61060:1;61021:21;:35;61043:12;:10;:12::i;:::-;61021:35;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;61080:34;61090:12;:10;:12::i;:::-;61104:9;61080;:34::i;:::-;60970:160;60910:231;60905:3;;;;;:::i;:::-;;;;60868:273;;;;47387:1:::0;48341:7;:22;;;;60319:829;:::o;59780:525::-;59853:13;59887:16;59895:7;59887;:16::i;:::-;59879:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;59968:21;59992:10;:8;:10::i;:::-;59968:34;;60017:22;;;;;;;;;;;60013:285;;;60087:1;60069:7;60063:21;:25;:109;;;;;;;;;;;;;;;;;60115:7;60124:25;60141:7;60124:16;:25::i;:::-;60151:14;60098:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60063:109;60056:116;;;;;60013:285;60244:1;60226:7;60220:21;:25;:66;;;;;;;;;;;;;;;;;60272:7;60255:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;60220:66;60213:73;;;59780:525;;;;:::o;59687:85::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59760:4:::1;59743:14;;:21;;;;;;;;;;;;;;;;;;59687:85::o:0;24743:164::-;24840:4;24864:18;:25;24883:5;24864:25;;;;;;;;;;;;;;;:35;24890:8;24864:35;;;;;;;;;;;;;;;;;;;;;;;;;24857:42;;24743:164;;;;:::o;58259: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;58220:32::-;;;;:::o;61164:1163::-;47431:1;48029:7;;:19;;48021:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47431:1;48162:7;:18;;;;61297:12:::1;:10;:12::i;:::-;61284:25;;:9;:25;;;61276:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;61376:21;;;;;;;;;;;61368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61520:1;61472:30;:44;61503:12;:10;:12::i;:::-;61472:44;;;;;;;;;;;;;;;;61455:14;:61;;;;:::i;:::-;:66;;61447:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;61606:10;;61588:14;61572:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;61564:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;61704:9;61686:14;61682:1;:18;;;;:::i;:::-;:31;;61674:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;61762:20;61785:71;61841:12;:10;:12::i;:::-;61824:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;61814:41;;;;;;61785:28;:71::i;:::-;61762:94;;61867:24;61894:38;61908:12;61922:9;61894:13;:38::i;:::-;61867:65;;61971:7;;;;;;;;;;;61951:27;;:16;:27;;;61943:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;62043:6;62038:282;62059:14;62055:1;:18;62038:282;;;62095:14;62112:13;:11;:13::i;:::-;62095:30;;62160:10;;62144:13;:11;:13::i;:::-;:26;62140:169;;;62239:1;62191:30;:44;62222:12;:10;:12::i;:::-;62191:44;;;;;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;;62259:34;62269:12;:10;:12::i;:::-;62283:9;62259;:34::i;:::-;62140:169;62080:240;62075:3;;;;;:::i;:::-;;;;62038:282;;;;61265:1062;;47387:1:::0;48341:7;:22;;;;61164:1163;;:::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;59562:117::-;59622:13;59655:16;59648:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59562: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;58595:181::-;58723:45;58750:4;58756:2;58760:7;58723:26;:45::i;:::-;58595: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://e62eaa1454e8e7b83bb34a8d87bb479a3db948527be7e221f652a101c8328179
[ 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.