Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,110 RRA
Holders
565
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 RRALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RRAPE
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-22 */ // SPDX-License-Identifier: MIT // 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/Strings.sol // 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/Context.sol // 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/access/Ownable.sol // 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/utils/Address.sol // 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/token/ERC721/IERC721Receiver.sol // 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/utils/introspection/IERC165.sol // 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/utils/introspection/ERC165.sol // 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/IERC721.sol // 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/extensions/IERC721Metadata.sol // 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: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/no.sol pragma solidity >=0.8.9 <0.9.0; // Smart contract for Test contract RRAPE is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public maxSupply = 10000; uint256 public price = 0.006 ether; uint256 public cost; uint256 public maxPerWallet = 10; uint256 public totalFree = 1000; uint256 public maxMintAmountPerTx = 10; uint256 public maxPerFree = 2; uint256 public maxPerFreeWallet = 2; string public uriPrefix = 'ipfs://QmVmynZdsugGfdNGcSzHeMBCHQDukes6yriNTTVDdeD4Y1/'; string public uriSuffix = '.json'; constructor() ERC721A("RR/APE", "RRA") { } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!'); require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!'); _; } modifier mintPriceCompliance(uint256 _mintAmount) { require(msg.value >= cost * _mintAmount, 'Insufficient funds!'); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { cost = price; if(totalSupply() + _mintAmount < totalFree + 1) { cost = 0; require(_mintAmount <= maxPerFree && cost == 0, "Too many Free mints!"); require(numberMinted(msg.sender) + _mintAmount <= maxPerFreeWallet,"No More Free!"); } require(numberMinted(msg.sender) + _mintAmount <= maxPerWallet,"Too many per wallet!"); _safeMint(_msgSender(), _mintAmount); } function mintToAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setCost(uint256 _cost) public onlyOwner { price = _cost; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setMaxPerFree(uint256 _maxPerFree) public onlyOwner { maxPerFree = _maxPerFree; } function setMaxPerWallet(uint256 _maxPerWallet) public onlyOwner { maxPerWallet = _maxPerWallet; } function setTotalFree(uint256 _totalFree) public onlyOwner { totalFree = _totalFree; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setMaxPerFreeWallet(uint256 _maxPerFreeWallet) public onlyOwner { maxPerFreeWallet = _maxPerFreeWallet; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFreeWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFree","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFreeWallet","type":"uint256"}],"name":"setMaxPerFreeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalFree","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052612710600a55661550f7dca70000600b55600a600d556103e8600e55600a600f5560026010556002601155604051806060016040528060368152602001620043ee60369139601290805190602001906200006092919062000278565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060139080519060200190620000ae92919062000278565b50348015620000bc57600080fd5b506040518060400160405280600681526020017f52522f41504500000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f525241000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014192919062000278565b5080600390805190602001906200015a92919062000278565b506200016b620001a160201b60201c565b60008190555050506200019362000187620001aa60201b60201c565b620001b260201b60201c565b60016009819055506200038d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002869062000357565b90600052602060002090601f016020900481019282620002aa5760008555620002f6565b82601f10620002c557805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f5578251825591602001919060010190620002d8565b5b50905062000305919062000309565b5090565b5b80821115620003245760008160009055506001016200030a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200037057607f821691505b6020821081141562000387576200038662000328565b5b50919050565b614051806200039d6000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063b071401b116100ab578063dc33e6811161006f578063dc33e6811461082a578063e268e4d314610867578063e945971c14610890578063e985e9c5146108b9578063f2fde38b146108f65761023b565b8063b071401b14610745578063b88d4fde1461076e578063c7c39ffc14610797578063c87b56dd146107c2578063d5abeb01146107ff5761023b565b806395d89b41116100f257806395d89b411461067f578063a035b1fe146106aa578063a0712d68146106d5578063a09fa941146106f1578063a22cb4651461071c5761023b565b806370a08231146105ac578063715018a6146105e95780637ec4a659146106005780638da5cb5b1461062957806394354fd0146106545761023b565b806342842e0e116101bc578063563aaf1111610180578063563aaf11146104c95780635e85d3a3146104f257806362b99ad41461051b5780636352211e146105465780636f8b44b0146105835761023b565b806342842e0e146103f857806344a0d68a14610421578063453c23101461044a578063512b658d146104755780635503a0e81461049e5761023b565b806316ba10e01161020357806316ba10e01461033957806318160ddd1461036257806323b872dd1461038d578063333e44e6146103b65780633ccfd60b146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061306f565b61091f565b60405161027491906130b7565b60405180910390f35b34801561028957600080fd5b50610292610a01565b60405161029f919061316b565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906131c3565b610a93565b6040516102dc9190613231565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613278565b610b0f565b005b34801561031a57600080fd5b50610323610c1a565b60405161033091906132c7565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613417565b610c20565b005b34801561036e57600080fd5b50610377610cb6565b60405161038491906132c7565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613460565b610ccd565b005b3480156103c257600080fd5b506103cb610cdd565b6040516103d891906132c7565b60405180910390f35b3480156103ed57600080fd5b506103f6610ce3565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613460565b610e35565b005b34801561042d57600080fd5b50610448600480360381019061044391906131c3565b610e55565b005b34801561045657600080fd5b5061045f610edb565b60405161046c91906132c7565b60405180910390f35b34801561048157600080fd5b5061049c600480360381019061049791906134b3565b610ee1565b005b3480156104aa57600080fd5b506104b3611015565b6040516104c0919061316b565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906131c3565b6110a3565b005b3480156104fe57600080fd5b50610519600480360381019061051491906131c3565b611129565b005b34801561052757600080fd5b506105306111af565b60405161053d919061316b565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906131c3565b61123d565b60405161057a9190613231565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a591906131c3565b611253565b005b3480156105b857600080fd5b506105d360048036038101906105ce91906134f3565b6112d9565b6040516105e091906132c7565b60405180910390f35b3480156105f557600080fd5b506105fe6113a9565b005b34801561060c57600080fd5b5061062760048036038101906106229190613417565b611431565b005b34801561063557600080fd5b5061063e6114c7565b60405161064b9190613231565b60405180910390f35b34801561066057600080fd5b506106696114f1565b60405161067691906132c7565b60405180910390f35b34801561068b57600080fd5b506106946114f7565b6040516106a1919061316b565b60405180910390f35b3480156106b657600080fd5b506106bf611589565b6040516106cc91906132c7565b60405180910390f35b6106ef60048036038101906106ea91906131c3565b61158f565b005b3480156106fd57600080fd5b506107066117dc565b60405161071391906132c7565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e919061354c565b6117e2565b005b34801561075157600080fd5b5061076c600480360381019061076791906131c3565b61195a565b005b34801561077a57600080fd5b506107956004803603810190610790919061362d565b6119e0565b005b3480156107a357600080fd5b506107ac611a5c565b6040516107b991906132c7565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e491906131c3565b611a62565b6040516107f6919061316b565b60405180910390f35b34801561080b57600080fd5b50610814611b0c565b60405161082191906132c7565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906134f3565b611b12565b60405161085e91906132c7565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906131c3565b611b24565b005b34801561089c57600080fd5b506108b760048036038101906108b291906131c3565b611baa565b005b3480156108c557600080fd5b506108e060048036038101906108db91906136b0565b611c30565b6040516108ed91906130b7565b60405180910390f35b34801561090257600080fd5b5061091d600480360381019061091891906134f3565b611cc4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fa57506109f982611dbc565b5b9050919050565b606060028054610a109061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c9061371f565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82611e26565b610ad4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1a8261123d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b82576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba1611e74565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd35750610bd181610bcc611e74565b611c30565b155b15610c0a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c15838383611e7c565b505050565b600c5481565b610c28611e74565b73ffffffffffffffffffffffffffffffffffffffff16610c466114c7565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c939061379d565b60405180910390fd5b8060139080519060200190610cb2929190612f1d565b5050565b6000610cc0611f2e565b6001546000540303905090565b610cd8838383611f37565b505050565b600e5481565b610ceb611e74565b73ffffffffffffffffffffffffffffffffffffffff16610d096114c7565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d569061379d565b60405180910390fd5b60026009541415610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90613809565b60405180910390fd5b60026009819055506000610db76114c7565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dda9061385a565b60006040518083038185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e2a57600080fd5b506001600981905550565b610e50838383604051806020016040528060008152506119e0565b505050565b610e5d611e74565b73ffffffffffffffffffffffffffffffffffffffff16610e7b6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec89061379d565b60405180910390fd5b80600b8190555050565b600d5481565b81600081118015610ef45750600f548111155b610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a906138bb565b60405180910390fd5b600a5481610f3f610cb6565b610f49919061390a565b1115610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f81906139ac565b60405180910390fd5b610f92611e74565b73ffffffffffffffffffffffffffffffffffffffff16610fb06114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd9061379d565b60405180910390fd5b61101082846123ed565b505050565b601380546110229061371f565b80601f016020809104026020016040519081016040528092919081815260200182805461104e9061371f565b801561109b5780601f106110705761010080835404028352916020019161109b565b820191906000526020600020905b81548152906001019060200180831161107e57829003601f168201915b505050505081565b6110ab611e74565b73ffffffffffffffffffffffffffffffffffffffff166110c96114c7565b73ffffffffffffffffffffffffffffffffffffffff161461111f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111169061379d565b60405180910390fd5b80600e8190555050565b611131611e74565b73ffffffffffffffffffffffffffffffffffffffff1661114f6114c7565b73ffffffffffffffffffffffffffffffffffffffff16146111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c9061379d565b60405180910390fd5b8060118190555050565b601280546111bc9061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546111e89061371f565b80156112355780601f1061120a57610100808354040283529160200191611235565b820191906000526020600020905b81548152906001019060200180831161121857829003601f168201915b505050505081565b60006112488261240b565b600001519050919050565b61125b611e74565b73ffffffffffffffffffffffffffffffffffffffff166112796114c7565b73ffffffffffffffffffffffffffffffffffffffff16146112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061379d565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611341576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113b1611e74565b73ffffffffffffffffffffffffffffffffffffffff166113cf6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c9061379d565b60405180910390fd5b61142f600061269a565b565b611439611e74565b73ffffffffffffffffffffffffffffffffffffffff166114576114c7565b73ffffffffffffffffffffffffffffffffffffffff16146114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a49061379d565b60405180910390fd5b80601290805190602001906114c3929190612f1d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546115069061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546115329061371f565b801561157f5780601f106115545761010080835404028352916020019161157f565b820191906000526020600020905b81548152906001019060200180831161156257829003601f168201915b5050505050905090565b600b5481565b806000811180156115a25750600f548111155b6115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d8906138bb565b60405180910390fd5b600a54816115ed610cb6565b6115f7919061390a565b1115611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f906139ac565b60405180910390fd5b8180600c5461164791906139cc565b341015611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613a72565b60405180910390fd5b600b54600c819055506001600e546116a1919061390a565b836116aa610cb6565b6116b4919061390a565b101561176e576000600c8190555060105483111580156116d657506000600c54145b611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c90613ade565b60405180910390fd5b6011548361172233611b12565b61172c919061390a565b111561176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490613b4a565b60405180910390fd5b5b600d548361177b33611b12565b611785919061390a565b11156117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd90613bb6565b60405180910390fd5b6117d76117d1611e74565b846123ed565b505050565b60115481565b6117ea611e74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061185c611e74565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611909611e74565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161194e91906130b7565b60405180910390a35050565b611962611e74565b73ffffffffffffffffffffffffffffffffffffffff166119806114c7565b73ffffffffffffffffffffffffffffffffffffffff16146119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd9061379d565b60405180910390fd5b80600f8190555050565b6119eb848484611f37565b611a0a8373ffffffffffffffffffffffffffffffffffffffff16612760565b8015611a1f5750611a1d84848484612783565b155b15611a56576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60105481565b6060611a6d82611e26565b611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613c48565b60405180910390fd5b6000611ab66128d4565b90506000815111611ad65760405180602001604052806000815250611b04565b80611ae084612966565b6013604051602001611af493929190613d38565b6040516020818303038152906040525b915050919050565b600a5481565b6000611b1d82612ac7565b9050919050565b611b2c611e74565b73ffffffffffffffffffffffffffffffffffffffff16611b4a6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b979061379d565b60405180910390fd5b80600d8190555050565b611bb2611e74565b73ffffffffffffffffffffffffffffffffffffffff16611bd06114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d9061379d565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ccc611e74565b73ffffffffffffffffffffffffffffffffffffffff16611cea6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d379061379d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613ddb565b60405180910390fd5b611db98161269a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e31611f2e565b11158015611e40575060005482105b8015611e6d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f428261240b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fce611e74565b73ffffffffffffffffffffffffffffffffffffffff161480611ffd5750611ffc85611ff7611e74565b611c30565b5b80612042575061200b611e74565b73ffffffffffffffffffffffffffffffffffffffff1661202a84610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120ef8585856001612b31565b6120fb60008487611e7c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561237b57600054821461237a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123e68585856001612b37565b5050505050565b612407828260405180602001604052806000815250612b3d565b5050565b612413612fa3565b600082905080612421611f2e565b11158015612430575060005481105b15612663576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161266157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612545578092505050612695565b5b60011561266057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461265b578092505050612695565b612546565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a9611e74565b8786866040518563ffffffff1660e01b81526004016127cb9493929190613e50565b6020604051808303816000875af192505050801561280757506040513d601f19601f820116820180604052508101906128049190613eb1565b60015b612881573d8060008114612837576040519150601f19603f3d011682016040523d82523d6000602084013e61283c565b606091505b50600081511415612879576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546128e39061371f565b80601f016020809104026020016040519081016040528092919081815260200182805461290f9061371f565b801561295c5780601f106129315761010080835404028352916020019161295c565b820191906000526020600020905b81548152906001019060200180831161293f57829003601f168201915b5050505050905090565b606060008214156129ae576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ac2565b600082905060005b600082146129e05780806129c990613ede565b915050600a826129d99190613f56565b91506129b6565b60008167ffffffffffffffff8111156129fc576129fb6132ec565b5b6040519080825280601f01601f191660200182016040528015612a2e5781602001600182028036833780820191505090505b5090505b60008514612abb57600182612a479190613f87565b9150600a85612a569190613fbb565b6030612a62919061390a565b60f81b818381518110612a7857612a77613fec565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ab49190613f56565b9450612a32565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612b4a8383836001612b4f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612bbc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612bf7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c046000868387612b31565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612dce5750612dcd8773ffffffffffffffffffffffffffffffffffffffff16612760565b5b15612e94575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e436000888480600101955088612783565b612e79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612dd4578260005414612e8f57600080fd5b612f00565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612e95575b816000819055505050612f166000868387612b37565b5050505050565b828054612f299061371f565b90600052602060002090601f016020900481019282612f4b5760008555612f92565b82601f10612f6457805160ff1916838001178555612f92565b82800160010185558215612f92579182015b82811115612f91578251825591602001919060010190612f76565b5b509050612f9f9190612fe6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612fff576000816000905550600101612fe7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61304c81613017565b811461305757600080fd5b50565b60008135905061306981613043565b92915050565b6000602082840312156130855761308461300d565b5b60006130938482850161305a565b91505092915050565b60008115159050919050565b6130b18161309c565b82525050565b60006020820190506130cc60008301846130a8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561310c5780820151818401526020810190506130f1565b8381111561311b576000848401525b50505050565b6000601f19601f8301169050919050565b600061313d826130d2565b61314781856130dd565b93506131578185602086016130ee565b61316081613121565b840191505092915050565b600060208201905081810360008301526131858184613132565b905092915050565b6000819050919050565b6131a08161318d565b81146131ab57600080fd5b50565b6000813590506131bd81613197565b92915050565b6000602082840312156131d9576131d861300d565b5b60006131e7848285016131ae565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061321b826131f0565b9050919050565b61322b81613210565b82525050565b60006020820190506132466000830184613222565b92915050565b61325581613210565b811461326057600080fd5b50565b6000813590506132728161324c565b92915050565b6000806040838503121561328f5761328e61300d565b5b600061329d85828601613263565b92505060206132ae858286016131ae565b9150509250929050565b6132c18161318d565b82525050565b60006020820190506132dc60008301846132b8565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61332482613121565b810181811067ffffffffffffffff82111715613343576133426132ec565b5b80604052505050565b6000613356613003565b9050613362828261331b565b919050565b600067ffffffffffffffff821115613382576133816132ec565b5b61338b82613121565b9050602081019050919050565b82818337600083830152505050565b60006133ba6133b584613367565b61334c565b9050828152602081018484840111156133d6576133d56132e7565b5b6133e1848285613398565b509392505050565b600082601f8301126133fe576133fd6132e2565b5b813561340e8482602086016133a7565b91505092915050565b60006020828403121561342d5761342c61300d565b5b600082013567ffffffffffffffff81111561344b5761344a613012565b5b613457848285016133e9565b91505092915050565b6000806000606084860312156134795761347861300d565b5b600061348786828701613263565b935050602061349886828701613263565b92505060406134a9868287016131ae565b9150509250925092565b600080604083850312156134ca576134c961300d565b5b60006134d8858286016131ae565b92505060206134e985828601613263565b9150509250929050565b6000602082840312156135095761350861300d565b5b600061351784828501613263565b91505092915050565b6135298161309c565b811461353457600080fd5b50565b60008135905061354681613520565b92915050565b600080604083850312156135635761356261300d565b5b600061357185828601613263565b925050602061358285828601613537565b9150509250929050565b600067ffffffffffffffff8211156135a7576135a66132ec565b5b6135b082613121565b9050602081019050919050565b60006135d06135cb8461358c565b61334c565b9050828152602081018484840111156135ec576135eb6132e7565b5b6135f7848285613398565b509392505050565b600082601f830112613614576136136132e2565b5b81356136248482602086016135bd565b91505092915050565b600080600080608085870312156136475761364661300d565b5b600061365587828801613263565b945050602061366687828801613263565b9350506040613677878288016131ae565b925050606085013567ffffffffffffffff81111561369857613697613012565b5b6136a4878288016135ff565b91505092959194509250565b600080604083850312156136c7576136c661300d565b5b60006136d585828601613263565b92505060206136e685828601613263565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061373757607f821691505b6020821081141561374b5761374a6136f0565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137876020836130dd565b915061379282613751565b602082019050919050565b600060208201905081810360008301526137b68161377a565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137f3601f836130dd565b91506137fe826137bd565b602082019050919050565b60006020820190508181036000830152613822816137e6565b9050919050565b600081905092915050565b50565b6000613844600083613829565b915061384f82613834565b600082019050919050565b600061386582613837565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006138a56014836130dd565b91506138b08261386f565b602082019050919050565b600060208201905081810360008301526138d481613898565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139158261318d565b91506139208361318d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613955576139546138db565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006139966014836130dd565b91506139a182613960565b602082019050919050565b600060208201905081810360008301526139c581613989565b9050919050565b60006139d78261318d565b91506139e28361318d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a1b57613a1a6138db565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a5c6013836130dd565b9150613a6782613a26565b602082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b7f546f6f206d616e792046726565206d696e747321000000000000000000000000600082015250565b6000613ac86014836130dd565b9150613ad382613a92565b602082019050919050565b60006020820190508181036000830152613af781613abb565b9050919050565b7f4e6f204d6f726520467265652100000000000000000000000000000000000000600082015250565b6000613b34600d836130dd565b9150613b3f82613afe565b602082019050919050565b60006020820190508181036000830152613b6381613b27565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b6000613ba06014836130dd565b9150613bab82613b6a565b602082019050919050565b60006020820190508181036000830152613bcf81613b93565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c32602f836130dd565b9150613c3d82613bd6565b604082019050919050565b60006020820190508181036000830152613c6181613c25565b9050919050565b600081905092915050565b6000613c7e826130d2565b613c888185613c68565b9350613c988185602086016130ee565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613cc68161371f565b613cd08186613c68565b94506001821660008114613ceb5760018114613cfc57613d2f565b60ff19831686528186019350613d2f565b613d0585613ca4565b60005b83811015613d2757815481890152600182019150602081019050613d08565b838801955050505b50505092915050565b6000613d448286613c73565b9150613d508285613c73565b9150613d5c8284613cb9565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dc56026836130dd565b9150613dd082613d69565b604082019050919050565b60006020820190508181036000830152613df481613db8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e2282613dfb565b613e2c8185613e06565b9350613e3c8185602086016130ee565b613e4581613121565b840191505092915050565b6000608082019050613e656000830187613222565b613e726020830186613222565b613e7f60408301856132b8565b8181036060830152613e918184613e17565b905095945050505050565b600081519050613eab81613043565b92915050565b600060208284031215613ec757613ec661300d565b5b6000613ed584828501613e9c565b91505092915050565b6000613ee98261318d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1c57613f1b6138db565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f618261318d565b9150613f6c8361318d565b925082613f7c57613f7b613f27565b5b828204905092915050565b6000613f928261318d565b9150613f9d8361318d565b925082821015613fb057613faf6138db565b5b828203905092915050565b6000613fc68261318d565b9150613fd18361318d565b925082613fe157613fe0613f27565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220225aa148e9742b626ccfaff922bcae0178b7945e812f47464b9c12455eda5d0364736f6c634300080b0033697066733a2f2f516d566d796e5a647375674766644e4763537a48654d4243485144756b6573367972694e545456446465443459312f
Deployed Bytecode
0x60806040526004361061023b5760003560e01c806370a082311161012e578063b071401b116100ab578063dc33e6811161006f578063dc33e6811461082a578063e268e4d314610867578063e945971c14610890578063e985e9c5146108b9578063f2fde38b146108f65761023b565b8063b071401b14610745578063b88d4fde1461076e578063c7c39ffc14610797578063c87b56dd146107c2578063d5abeb01146107ff5761023b565b806395d89b41116100f257806395d89b411461067f578063a035b1fe146106aa578063a0712d68146106d5578063a09fa941146106f1578063a22cb4651461071c5761023b565b806370a08231146105ac578063715018a6146105e95780637ec4a659146106005780638da5cb5b1461062957806394354fd0146106545761023b565b806342842e0e116101bc578063563aaf1111610180578063563aaf11146104c95780635e85d3a3146104f257806362b99ad41461051b5780636352211e146105465780636f8b44b0146105835761023b565b806342842e0e146103f857806344a0d68a14610421578063453c23101461044a578063512b658d146104755780635503a0e81461049e5761023b565b806316ba10e01161020357806316ba10e01461033957806318160ddd1461036257806323b872dd1461038d578063333e44e6146103b65780633ccfd60b146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061306f565b61091f565b60405161027491906130b7565b60405180910390f35b34801561028957600080fd5b50610292610a01565b60405161029f919061316b565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906131c3565b610a93565b6040516102dc9190613231565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613278565b610b0f565b005b34801561031a57600080fd5b50610323610c1a565b60405161033091906132c7565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613417565b610c20565b005b34801561036e57600080fd5b50610377610cb6565b60405161038491906132c7565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613460565b610ccd565b005b3480156103c257600080fd5b506103cb610cdd565b6040516103d891906132c7565b60405180910390f35b3480156103ed57600080fd5b506103f6610ce3565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613460565b610e35565b005b34801561042d57600080fd5b50610448600480360381019061044391906131c3565b610e55565b005b34801561045657600080fd5b5061045f610edb565b60405161046c91906132c7565b60405180910390f35b34801561048157600080fd5b5061049c600480360381019061049791906134b3565b610ee1565b005b3480156104aa57600080fd5b506104b3611015565b6040516104c0919061316b565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906131c3565b6110a3565b005b3480156104fe57600080fd5b50610519600480360381019061051491906131c3565b611129565b005b34801561052757600080fd5b506105306111af565b60405161053d919061316b565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906131c3565b61123d565b60405161057a9190613231565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a591906131c3565b611253565b005b3480156105b857600080fd5b506105d360048036038101906105ce91906134f3565b6112d9565b6040516105e091906132c7565b60405180910390f35b3480156105f557600080fd5b506105fe6113a9565b005b34801561060c57600080fd5b5061062760048036038101906106229190613417565b611431565b005b34801561063557600080fd5b5061063e6114c7565b60405161064b9190613231565b60405180910390f35b34801561066057600080fd5b506106696114f1565b60405161067691906132c7565b60405180910390f35b34801561068b57600080fd5b506106946114f7565b6040516106a1919061316b565b60405180910390f35b3480156106b657600080fd5b506106bf611589565b6040516106cc91906132c7565b60405180910390f35b6106ef60048036038101906106ea91906131c3565b61158f565b005b3480156106fd57600080fd5b506107066117dc565b60405161071391906132c7565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e919061354c565b6117e2565b005b34801561075157600080fd5b5061076c600480360381019061076791906131c3565b61195a565b005b34801561077a57600080fd5b506107956004803603810190610790919061362d565b6119e0565b005b3480156107a357600080fd5b506107ac611a5c565b6040516107b991906132c7565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e491906131c3565b611a62565b6040516107f6919061316b565b60405180910390f35b34801561080b57600080fd5b50610814611b0c565b60405161082191906132c7565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906134f3565b611b12565b60405161085e91906132c7565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906131c3565b611b24565b005b34801561089c57600080fd5b506108b760048036038101906108b291906131c3565b611baa565b005b3480156108c557600080fd5b506108e060048036038101906108db91906136b0565b611c30565b6040516108ed91906130b7565b60405180910390f35b34801561090257600080fd5b5061091d600480360381019061091891906134f3565b611cc4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fa57506109f982611dbc565b5b9050919050565b606060028054610a109061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c9061371f565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82611e26565b610ad4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1a8261123d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b82576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba1611e74565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd35750610bd181610bcc611e74565b611c30565b155b15610c0a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c15838383611e7c565b505050565b600c5481565b610c28611e74565b73ffffffffffffffffffffffffffffffffffffffff16610c466114c7565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c939061379d565b60405180910390fd5b8060139080519060200190610cb2929190612f1d565b5050565b6000610cc0611f2e565b6001546000540303905090565b610cd8838383611f37565b505050565b600e5481565b610ceb611e74565b73ffffffffffffffffffffffffffffffffffffffff16610d096114c7565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d569061379d565b60405180910390fd5b60026009541415610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90613809565b60405180910390fd5b60026009819055506000610db76114c7565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dda9061385a565b60006040518083038185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e2a57600080fd5b506001600981905550565b610e50838383604051806020016040528060008152506119e0565b505050565b610e5d611e74565b73ffffffffffffffffffffffffffffffffffffffff16610e7b6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec89061379d565b60405180910390fd5b80600b8190555050565b600d5481565b81600081118015610ef45750600f548111155b610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a906138bb565b60405180910390fd5b600a5481610f3f610cb6565b610f49919061390a565b1115610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f81906139ac565b60405180910390fd5b610f92611e74565b73ffffffffffffffffffffffffffffffffffffffff16610fb06114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd9061379d565b60405180910390fd5b61101082846123ed565b505050565b601380546110229061371f565b80601f016020809104026020016040519081016040528092919081815260200182805461104e9061371f565b801561109b5780601f106110705761010080835404028352916020019161109b565b820191906000526020600020905b81548152906001019060200180831161107e57829003601f168201915b505050505081565b6110ab611e74565b73ffffffffffffffffffffffffffffffffffffffff166110c96114c7565b73ffffffffffffffffffffffffffffffffffffffff161461111f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111169061379d565b60405180910390fd5b80600e8190555050565b611131611e74565b73ffffffffffffffffffffffffffffffffffffffff1661114f6114c7565b73ffffffffffffffffffffffffffffffffffffffff16146111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c9061379d565b60405180910390fd5b8060118190555050565b601280546111bc9061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546111e89061371f565b80156112355780601f1061120a57610100808354040283529160200191611235565b820191906000526020600020905b81548152906001019060200180831161121857829003601f168201915b505050505081565b60006112488261240b565b600001519050919050565b61125b611e74565b73ffffffffffffffffffffffffffffffffffffffff166112796114c7565b73ffffffffffffffffffffffffffffffffffffffff16146112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061379d565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611341576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113b1611e74565b73ffffffffffffffffffffffffffffffffffffffff166113cf6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c9061379d565b60405180910390fd5b61142f600061269a565b565b611439611e74565b73ffffffffffffffffffffffffffffffffffffffff166114576114c7565b73ffffffffffffffffffffffffffffffffffffffff16146114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a49061379d565b60405180910390fd5b80601290805190602001906114c3929190612f1d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546115069061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546115329061371f565b801561157f5780601f106115545761010080835404028352916020019161157f565b820191906000526020600020905b81548152906001019060200180831161156257829003601f168201915b5050505050905090565b600b5481565b806000811180156115a25750600f548111155b6115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d8906138bb565b60405180910390fd5b600a54816115ed610cb6565b6115f7919061390a565b1115611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f906139ac565b60405180910390fd5b8180600c5461164791906139cc565b341015611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613a72565b60405180910390fd5b600b54600c819055506001600e546116a1919061390a565b836116aa610cb6565b6116b4919061390a565b101561176e576000600c8190555060105483111580156116d657506000600c54145b611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c90613ade565b60405180910390fd5b6011548361172233611b12565b61172c919061390a565b111561176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490613b4a565b60405180910390fd5b5b600d548361177b33611b12565b611785919061390a565b11156117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd90613bb6565b60405180910390fd5b6117d76117d1611e74565b846123ed565b505050565b60115481565b6117ea611e74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061185c611e74565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611909611e74565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161194e91906130b7565b60405180910390a35050565b611962611e74565b73ffffffffffffffffffffffffffffffffffffffff166119806114c7565b73ffffffffffffffffffffffffffffffffffffffff16146119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd9061379d565b60405180910390fd5b80600f8190555050565b6119eb848484611f37565b611a0a8373ffffffffffffffffffffffffffffffffffffffff16612760565b8015611a1f5750611a1d84848484612783565b155b15611a56576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60105481565b6060611a6d82611e26565b611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613c48565b60405180910390fd5b6000611ab66128d4565b90506000815111611ad65760405180602001604052806000815250611b04565b80611ae084612966565b6013604051602001611af493929190613d38565b6040516020818303038152906040525b915050919050565b600a5481565b6000611b1d82612ac7565b9050919050565b611b2c611e74565b73ffffffffffffffffffffffffffffffffffffffff16611b4a6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b979061379d565b60405180910390fd5b80600d8190555050565b611bb2611e74565b73ffffffffffffffffffffffffffffffffffffffff16611bd06114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d9061379d565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ccc611e74565b73ffffffffffffffffffffffffffffffffffffffff16611cea6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d379061379d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613ddb565b60405180910390fd5b611db98161269a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e31611f2e565b11158015611e40575060005482105b8015611e6d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f428261240b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fce611e74565b73ffffffffffffffffffffffffffffffffffffffff161480611ffd5750611ffc85611ff7611e74565b611c30565b5b80612042575061200b611e74565b73ffffffffffffffffffffffffffffffffffffffff1661202a84610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120ef8585856001612b31565b6120fb60008487611e7c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561237b57600054821461237a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123e68585856001612b37565b5050505050565b612407828260405180602001604052806000815250612b3d565b5050565b612413612fa3565b600082905080612421611f2e565b11158015612430575060005481105b15612663576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161266157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612545578092505050612695565b5b60011561266057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461265b578092505050612695565b612546565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a9611e74565b8786866040518563ffffffff1660e01b81526004016127cb9493929190613e50565b6020604051808303816000875af192505050801561280757506040513d601f19601f820116820180604052508101906128049190613eb1565b60015b612881573d8060008114612837576040519150601f19603f3d011682016040523d82523d6000602084013e61283c565b606091505b50600081511415612879576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546128e39061371f565b80601f016020809104026020016040519081016040528092919081815260200182805461290f9061371f565b801561295c5780601f106129315761010080835404028352916020019161295c565b820191906000526020600020905b81548152906001019060200180831161293f57829003601f168201915b5050505050905090565b606060008214156129ae576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ac2565b600082905060005b600082146129e05780806129c990613ede565b915050600a826129d99190613f56565b91506129b6565b60008167ffffffffffffffff8111156129fc576129fb6132ec565b5b6040519080825280601f01601f191660200182016040528015612a2e5781602001600182028036833780820191505090505b5090505b60008514612abb57600182612a479190613f87565b9150600a85612a569190613fbb565b6030612a62919061390a565b60f81b818381518110612a7857612a77613fec565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ab49190613f56565b9450612a32565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612b4a8383836001612b4f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612bbc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612bf7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c046000868387612b31565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612dce5750612dcd8773ffffffffffffffffffffffffffffffffffffffff16612760565b5b15612e94575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e436000888480600101955088612783565b612e79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612dd4578260005414612e8f57600080fd5b612f00565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612e95575b816000819055505050612f166000868387612b37565b5050505050565b828054612f299061371f565b90600052602060002090601f016020900481019282612f4b5760008555612f92565b82601f10612f6457805160ff1916838001178555612f92565b82800160010185558215612f92579182015b82811115612f91578251825591602001919060010190612f76565b5b509050612f9f9190612fe6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612fff576000816000905550600101612fe7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61304c81613017565b811461305757600080fd5b50565b60008135905061306981613043565b92915050565b6000602082840312156130855761308461300d565b5b60006130938482850161305a565b91505092915050565b60008115159050919050565b6130b18161309c565b82525050565b60006020820190506130cc60008301846130a8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561310c5780820151818401526020810190506130f1565b8381111561311b576000848401525b50505050565b6000601f19601f8301169050919050565b600061313d826130d2565b61314781856130dd565b93506131578185602086016130ee565b61316081613121565b840191505092915050565b600060208201905081810360008301526131858184613132565b905092915050565b6000819050919050565b6131a08161318d565b81146131ab57600080fd5b50565b6000813590506131bd81613197565b92915050565b6000602082840312156131d9576131d861300d565b5b60006131e7848285016131ae565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061321b826131f0565b9050919050565b61322b81613210565b82525050565b60006020820190506132466000830184613222565b92915050565b61325581613210565b811461326057600080fd5b50565b6000813590506132728161324c565b92915050565b6000806040838503121561328f5761328e61300d565b5b600061329d85828601613263565b92505060206132ae858286016131ae565b9150509250929050565b6132c18161318d565b82525050565b60006020820190506132dc60008301846132b8565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61332482613121565b810181811067ffffffffffffffff82111715613343576133426132ec565b5b80604052505050565b6000613356613003565b9050613362828261331b565b919050565b600067ffffffffffffffff821115613382576133816132ec565b5b61338b82613121565b9050602081019050919050565b82818337600083830152505050565b60006133ba6133b584613367565b61334c565b9050828152602081018484840111156133d6576133d56132e7565b5b6133e1848285613398565b509392505050565b600082601f8301126133fe576133fd6132e2565b5b813561340e8482602086016133a7565b91505092915050565b60006020828403121561342d5761342c61300d565b5b600082013567ffffffffffffffff81111561344b5761344a613012565b5b613457848285016133e9565b91505092915050565b6000806000606084860312156134795761347861300d565b5b600061348786828701613263565b935050602061349886828701613263565b92505060406134a9868287016131ae565b9150509250925092565b600080604083850312156134ca576134c961300d565b5b60006134d8858286016131ae565b92505060206134e985828601613263565b9150509250929050565b6000602082840312156135095761350861300d565b5b600061351784828501613263565b91505092915050565b6135298161309c565b811461353457600080fd5b50565b60008135905061354681613520565b92915050565b600080604083850312156135635761356261300d565b5b600061357185828601613263565b925050602061358285828601613537565b9150509250929050565b600067ffffffffffffffff8211156135a7576135a66132ec565b5b6135b082613121565b9050602081019050919050565b60006135d06135cb8461358c565b61334c565b9050828152602081018484840111156135ec576135eb6132e7565b5b6135f7848285613398565b509392505050565b600082601f830112613614576136136132e2565b5b81356136248482602086016135bd565b91505092915050565b600080600080608085870312156136475761364661300d565b5b600061365587828801613263565b945050602061366687828801613263565b9350506040613677878288016131ae565b925050606085013567ffffffffffffffff81111561369857613697613012565b5b6136a4878288016135ff565b91505092959194509250565b600080604083850312156136c7576136c661300d565b5b60006136d585828601613263565b92505060206136e685828601613263565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061373757607f821691505b6020821081141561374b5761374a6136f0565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137876020836130dd565b915061379282613751565b602082019050919050565b600060208201905081810360008301526137b68161377a565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137f3601f836130dd565b91506137fe826137bd565b602082019050919050565b60006020820190508181036000830152613822816137e6565b9050919050565b600081905092915050565b50565b6000613844600083613829565b915061384f82613834565b600082019050919050565b600061386582613837565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006138a56014836130dd565b91506138b08261386f565b602082019050919050565b600060208201905081810360008301526138d481613898565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139158261318d565b91506139208361318d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613955576139546138db565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006139966014836130dd565b91506139a182613960565b602082019050919050565b600060208201905081810360008301526139c581613989565b9050919050565b60006139d78261318d565b91506139e28361318d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a1b57613a1a6138db565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a5c6013836130dd565b9150613a6782613a26565b602082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b7f546f6f206d616e792046726565206d696e747321000000000000000000000000600082015250565b6000613ac86014836130dd565b9150613ad382613a92565b602082019050919050565b60006020820190508181036000830152613af781613abb565b9050919050565b7f4e6f204d6f726520467265652100000000000000000000000000000000000000600082015250565b6000613b34600d836130dd565b9150613b3f82613afe565b602082019050919050565b60006020820190508181036000830152613b6381613b27565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b6000613ba06014836130dd565b9150613bab82613b6a565b602082019050919050565b60006020820190508181036000830152613bcf81613b93565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c32602f836130dd565b9150613c3d82613bd6565b604082019050919050565b60006020820190508181036000830152613c6181613c25565b9050919050565b600081905092915050565b6000613c7e826130d2565b613c888185613c68565b9350613c988185602086016130ee565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613cc68161371f565b613cd08186613c68565b94506001821660008114613ceb5760018114613cfc57613d2f565b60ff19831686528186019350613d2f565b613d0585613ca4565b60005b83811015613d2757815481890152600182019150602081019050613d08565b838801955050505b50505092915050565b6000613d448286613c73565b9150613d508285613c73565b9150613d5c8284613cb9565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dc56026836130dd565b9150613dd082613d69565b604082019050919050565b60006020820190508181036000830152613df481613db8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e2282613dfb565b613e2c8185613e06565b9350613e3c8185602086016130ee565b613e4581613121565b840191505092915050565b6000608082019050613e656000830187613222565b613e726020830186613222565b613e7f60408301856132b8565b8181036060830152613e918184613e17565b905095945050505050565b600081519050613eab81613043565b92915050565b600060208284031215613ec757613ec661300d565b5b6000613ed584828501613e9c565b91505092915050565b6000613ee98261318d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1c57613f1b6138db565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f618261318d565b9150613f6c8361318d565b925082613f7c57613f7b613f27565b5b828204905092915050565b6000613f928261318d565b9150613f9d8361318d565b925082821015613fb057613faf6138db565b5b828203905092915050565b6000613fc68261318d565b9150613fd18361318d565b925082613fe157613fe0613f27565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220225aa148e9742b626ccfaff922bcae0178b7945e812f47464b9c12455eda5d0364736f6c634300080b0033
Deployed Bytecode Sourcemap
47547:3463:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29699:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32812:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34315:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33878:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47714:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50262:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28948:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35180:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47776:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50368:150;;;;;;;;;;;;;:::i;:::-;;35421:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49294:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47738:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49019:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48020:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49691:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49892:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47933:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32620:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49375:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30068:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7457:103;;;;;;;;;;;;;:::i;:::-;;50156:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6806:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47812:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32981:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47675:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48488:523;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47889:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34591:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50020:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35677:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47855:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50634:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47638:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49179:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49579:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49475:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34949:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7715:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29699:305;29801:4;29853:25;29838:40;;;:11;:40;;;;:105;;;;29910:33;29895:48;;;:11;:48;;;;29838:105;:158;;;;29960:36;29984:11;29960:23;:36::i;:::-;29838:158;29818:178;;29699:305;;;:::o;32812:100::-;32866:13;32899:5;32892:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32812:100;:::o;34315:204::-;34383:7;34408:16;34416:7;34408;:16::i;:::-;34403:64;;34433:34;;;;;;;;;;;;;;34403:64;34487:15;:24;34503:7;34487:24;;;;;;;;;;;;;;;;;;;;;34480:31;;34315:204;;;:::o;33878:371::-;33951:13;33967:24;33983:7;33967:15;:24::i;:::-;33951:40;;34012:5;34006:11;;:2;:11;;;34002:48;;;34026:24;;;;;;;;;;;;;;34002:48;34083:5;34067:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34093:37;34110:5;34117:12;:10;:12::i;:::-;34093:16;:37::i;:::-;34092:38;34067:63;34063:138;;;34154:35;;;;;;;;;;;;;;34063:138;34213:28;34222:2;34226:7;34235:5;34213:8;:28::i;:::-;33940:309;33878:371;;:::o;47714:19::-;;;;:::o;50262:100::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50346:10:::1;50334:9;:22;;;;;;;;;;;;:::i;:::-;;50262:100:::0;:::o;28948:303::-;28992:7;29217:15;:13;:15::i;:::-;29202:12;;29186:13;;:28;:46;29179:53;;28948:303;:::o;35180:170::-;35314:28;35324:4;35330:2;35334:7;35314:9;:28::i;:::-;35180:170;;;:::o;47776:31::-;;;;:::o;50368:150::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1780:1:::1;2378:7;;:19;;2370:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1780:1;2511:7;:18;;;;50426:7:::2;50447;:5;:7::i;:::-;50439:21;;50468;50439:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50425:69;;;50509:2;50501:11;;;::::0;::::2;;50418:100;1736:1:::1;2690:7;:22;;;;50368:150::o:0;35421:185::-;35559:39;35576:4;35582:2;35586:7;35559:39;;;;;;;;;;;;:16;:39::i;:::-;35421:185;;;:::o;49294:75::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49358:5:::1;49350;:13;;;;49294:75:::0;:::o;47738:33::-;;;;:::o;49019:154::-;49104:11;48185:1;48171:11;:15;:52;;;;;48205:18;;48190:11;:33;;48171:52;48163:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48294:9;;48279:11;48263:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7037:12:::1;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49134:33:::2;49144:9;49155:11;49134:9;:33::i;:::-;49019:154:::0;;;:::o;48020:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49691:94::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49769:10:::1;49757:9;:22;;;;49691:94:::0;:::o;49892:122::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49991:17:::1;49972:16;:36;;;;49892:122:::0;:::o;47933:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32620:125::-;32684:7;32711:21;32724:7;32711:12;:21::i;:::-;:26;;;32704:33;;32620:125;;;:::o;49375:94::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49453:10:::1;49441:9;:22;;;;49375:94:::0;:::o;30068:206::-;30132:7;30173:1;30156:19;;:5;:19;;;30152:60;;;30184:28;;;;;;;;;;;;;;30152:60;30238:12;:19;30251:5;30238:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30230:36;;30223:43;;30068:206;;;:::o;7457:103::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7522:30:::1;7549:1;7522:18;:30::i;:::-;7457:103::o:0;50156:100::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50240:10:::1;50228:9;:22;;;;;;;;;;;;:::i;:::-;;50156:100:::0;:::o;6806:87::-;6852:7;6879:6;;;;;;;;;;;6872:13;;6806:87;:::o;47812:38::-;;;;:::o;32981:104::-;33037:13;33070:7;33063:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32981:104;:::o;47675:34::-;;;;:::o;48488:523::-;48553:11;48185:1;48171:11;:15;:52;;;;;48205:18;;48190:11;:33;;48171:52;48163:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48294:9;;48279:11;48263:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48586:11:::1;48433;48426:4;;:18;;;;:::i;:::-;48413:9;:31;;48405:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48613:5:::2;;48606:4;:12;;;;48670:1;48658:9;;:13;;;;:::i;:::-;48644:11;48628:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:43;48625:245;;;48689:1;48682:4;:8;;;;48722:10;;48707:11;:25;;:38;;;;;48744:1;48736:4;;:9;48707:38;48699:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48829:16;;48814:11;48787:24;48800:10;48787:12;:24::i;:::-;:38;;;;:::i;:::-;:58;;48779:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;48625:245;48926:12;;48911:11;48884:24;48897:10;48884:12;:24::i;:::-;:38;;;;:::i;:::-;:54;;48876:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;48969:36;48979:12;:10;:12::i;:::-;48993:11;48969:9;:36::i;:::-;48335:1:::1;48488:523:::0;;:::o;47889:35::-;;;;:::o;34591:287::-;34702:12;:10;:12::i;:::-;34690:24;;:8;:24;;;34686:54;;;34723:17;;;;;;;;;;;;;;34686:54;34798:8;34753:18;:32;34772:12;:10;:12::i;:::-;34753:32;;;;;;;;;;;;;;;:42;34786:8;34753:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34851:8;34822:48;;34837:12;:10;:12::i;:::-;34822:48;;;34861:8;34822:48;;;;;;:::i;:::-;;;;;;;;34591:287;;:::o;50020:130::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50125:19:::1;50104:18;:40;;;;50020:130:::0;:::o;35677:369::-;35844:28;35854:4;35860:2;35864:7;35844:9;:28::i;:::-;35887:15;:2;:13;;;:15::i;:::-;:76;;;;;35907:56;35938:4;35944:2;35948:7;35957:5;35907:30;:56::i;:::-;35906:57;35887:76;35883:156;;;35987:40;;;;;;;;;;;;;;35883:156;35677:369;;;;:::o;47855:29::-;;;;:::o;50634:373::-;50708:13;50738:17;50746:8;50738:7;:17::i;:::-;50730:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;50816:28;50847:10;:8;:10::i;:::-;50816:41;;50902:1;50877:14;50871:28;:32;:130;;;;;;;;;;;;;;;;;50939:14;50955:19;:8;:17;:19::i;:::-;50976:9;50922:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50871:130;50864:137;;;50634:373;;;:::o;47638:32::-;;;;:::o;49179:107::-;49237:7;49260:20;49274:5;49260:13;:20::i;:::-;49253:27;;49179:107;;;:::o;49579:106::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49666:13:::1;49651:12;:28;;;;49579:106:::0;:::o;49475:98::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49556:11:::1;49543:10;:24;;;;49475:98:::0;:::o;34949:164::-;35046:4;35070:18;:25;35089:5;35070:25;;;;;;;;;;;;;;;:35;35096:8;35070:35;;;;;;;;;;;;;;;;;;;;;;;;;35063:42;;34949:164;;;;:::o;7715:201::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7824:1:::1;7804:22;;:8;:22;;;;7796:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7880:28;7899:8;7880:18;:28::i;:::-;7715:201:::0;:::o;19590:157::-;19675:4;19714:25;19699:40;;;:11;:40;;;;19692:47;;19590:157;;;:::o;36301:174::-;36358:4;36401:7;36382:15;:13;:15::i;:::-;:26;;:53;;;;;36422:13;;36412:7;:23;36382:53;:85;;;;;36440:11;:20;36452:7;36440:20;;;;;;;;;;;:27;;;;;;;;;;;;36439:28;36382:85;36375:92;;36301:174;;;:::o;5530:98::-;5583:7;5610:10;5603:17;;5530:98;:::o;44458:196::-;44600:2;44573:15;:24;44589:7;44573:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44638:7;44634:2;44618:28;;44627:5;44618:28;;;;;;;;;;;;44458:196;;;:::o;49791:95::-;49856:7;49879:1;49872:8;;49791:95;:::o;39401:2130::-;39516:35;39554:21;39567:7;39554:12;:21::i;:::-;39516:59;;39614:4;39592:26;;:13;:18;;;:26;;;39588:67;;39627:28;;;;;;;;;;;;;;39588:67;39668:22;39710:4;39694:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39731:36;39748:4;39754:12;:10;:12::i;:::-;39731:16;:36::i;:::-;39694:73;:126;;;;39808:12;:10;:12::i;:::-;39784:36;;:20;39796:7;39784:11;:20::i;:::-;:36;;;39694:126;39668:153;;39839:17;39834:66;;39865:35;;;;;;;;;;;;;;39834:66;39929:1;39915:16;;:2;:16;;;39911:52;;;39940:23;;;;;;;;;;;;;;39911:52;39976:43;39998:4;40004:2;40008:7;40017:1;39976:21;:43::i;:::-;40084:35;40101:1;40105:7;40114:4;40084:8;:35::i;:::-;40445:1;40415:12;:18;40428:4;40415:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40489:1;40461:12;:16;40474:2;40461:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40507:31;40541:11;:20;40553:7;40541:20;;;;;;;;;;;40507:54;;40592:2;40576:8;:13;;;:18;;;;;;;;;;;;;;;;;;40642:15;40609:8;:23;;;:49;;;;;;;;;;;;;;;;;;40910:19;40942:1;40932:7;:11;40910:33;;40958:31;40992:11;:24;41004:11;40992:24;;;;;;;;;;;40958:58;;41060:1;41035:27;;:8;:13;;;;;;;;;;;;:27;;;41031:384;;;41245:13;;41230:11;:28;41226:174;;41299:4;41283:8;:13;;;:20;;;;;;;;;;;;;;;;;;41352:13;:28;;;41326:8;:23;;;:54;;;;;;;;;;;;;;;;;;41226:174;41031:384;40390:1036;;;41462:7;41458:2;41443:27;;41452:4;41443:27;;;;;;;;;;;;41481:42;41502:4;41508:2;41512:7;41521:1;41481:20;:42::i;:::-;39505:2026;;39401:2130;;;:::o;36483:104::-;36552:27;36562:2;36566:8;36552:27;;;;;;;;;;;;:9;:27::i;:::-;36483:104;;:::o;31449:1109::-;31511:21;;:::i;:::-;31545:12;31560:7;31545:22;;31628:4;31609:15;:13;:15::i;:::-;:23;;:47;;;;;31643:13;;31636:4;:20;31609:47;31605:886;;;31677:31;31711:11;:17;31723:4;31711:17;;;;;;;;;;;31677:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31752:9;:16;;;31747:729;;31823:1;31797:28;;:9;:14;;;:28;;;31793:101;;31861:9;31854:16;;;;;;31793:101;32196:261;32203:4;32196:261;;;32236:6;;;;;;;;32281:11;:17;32293:4;32281:17;;;;;;;;;;;32269:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32355:1;32329:28;;:9;:14;;;:28;;;32325:109;;32397:9;32390:16;;;;;;32325:109;32196:261;;;31747:729;31658:833;31605:886;32519:31;;;;;;;;;;;;;;31449:1109;;;;:::o;8076:191::-;8150:16;8169:6;;;;;;;;;;;8150:25;;8195:8;8186:6;;:17;;;;;;;;;;;;;;;;;;8250:8;8219:40;;8240:8;8219:40;;;;;;;;;;;;8139:128;8076:191;:::o;9507:326::-;9567:4;9824:1;9802:7;:19;;;:23;9795:30;;9507:326;;;:::o;45146:667::-;45309:4;45346:2;45330:36;;;45367:12;:10;:12::i;:::-;45381:4;45387:7;45396:5;45330:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45326:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45581:1;45564:6;:13;:18;45560:235;;;45610:40;;;;;;;;;;;;;;45560:235;45753:6;45747:13;45738:6;45734:2;45730:15;45723:38;45326:480;45459:45;;;45449:55;;;:6;:55;;;;45442:62;;;45146:667;;;;;;:::o;50524:104::-;50584:13;50613:9;50606:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50524:104;:::o;3092:723::-;3148:13;3378:1;3369:5;:10;3365:53;;;3396:10;;;;;;;;;;;;;;;;;;;;;3365:53;3428:12;3443:5;3428:20;;3459:14;3484:78;3499:1;3491:4;:9;3484:78;;3517:8;;;;;:::i;:::-;;;;3548:2;3540:10;;;;;:::i;:::-;;;3484:78;;;3572:19;3604:6;3594:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3572:39;;3622:154;3638:1;3629:5;:10;3622:154;;3666:1;3656:11;;;;;:::i;:::-;;;3733:2;3725:5;:10;;;;:::i;:::-;3712:2;:24;;;;:::i;:::-;3699:39;;3682:6;3689;3682:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3762:2;3753:11;;;;;:::i;:::-;;;3622:154;;;3800:6;3786:21;;;;;3092:723;;;;:::o;30356:137::-;30417:7;30452:12;:19;30465:5;30452:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;30444:41;;30437:48;;30356:137;;;:::o;46461:159::-;;;;;:::o;47279:158::-;;;;;:::o;36950:163::-;37073:32;37079:2;37083:8;37093:5;37100:4;37073:5;:32::i;:::-;36950:163;;;:::o;37372:1775::-;37511:20;37534:13;;37511:36;;37576:1;37562:16;;:2;:16;;;37558:48;;;37587:19;;;;;;;;;;;;;;37558:48;37633:1;37621:8;:13;37617:44;;;37643:18;;;;;;;;;;;;;;37617:44;37674:61;37704:1;37708:2;37712:12;37726:8;37674:21;:61::i;:::-;38047:8;38012:12;:16;38025:2;38012:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38111:8;38071:12;:16;38084:2;38071:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38170:2;38137:11;:25;38149:12;38137:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38237:15;38187:11;:25;38199:12;38187:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38270:20;38293:12;38270:35;;38320:11;38349:8;38334:12;:23;38320:37;;38378:4;:23;;;;;38386:15;:2;:13;;;:15::i;:::-;38378:23;38374:641;;;38422:314;38478:12;38474:2;38453:38;;38470:1;38453:38;;;;;;;;;;;;38519:69;38558:1;38562:2;38566:14;;;;;;38582:5;38519:30;:69::i;:::-;38514:174;;38624:40;;;;;;;;;;;;;;38514:174;38731:3;38715:12;:19;;38422:314;;38817:12;38800:13;;:29;38796:43;;38831:8;;;38796:43;38374:641;;;38880:120;38936:14;;;;;;38932:2;38911:40;;38928:1;38911:40;;;;;;;;;;;;38995:3;38979:12;:19;;38880:120;;38374:641;39045:12;39029:13;:28;;;;37987:1082;;39079:60;39108:1;39112:2;39116:12;39130:8;39079:20;:60::i;:::-;37500:1647;37372:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:474::-;8604:6;8612;8661:2;8649:9;8640:7;8636:23;8632:32;8629:119;;;8667:79;;:::i;:::-;8629:119;8787:1;8812:53;8857:7;8848:6;8837:9;8833:22;8812:53;:::i;:::-;8802:63;;8758:117;8914:2;8940:53;8985:7;8976:6;8965:9;8961:22;8940:53;:::i;:::-;8930:63;;8885:118;8536:474;;;;;:::o;9016:329::-;9075:6;9124:2;9112:9;9103:7;9099:23;9095:32;9092:119;;;9130:79;;:::i;:::-;9092:119;9250:1;9275:53;9320:7;9311:6;9300:9;9296:22;9275:53;:::i;:::-;9265:63;;9221:117;9016:329;;;;:::o;9351:116::-;9421:21;9436:5;9421:21;:::i;:::-;9414:5;9411:32;9401:60;;9457:1;9454;9447:12;9401:60;9351:116;:::o;9473:133::-;9516:5;9554:6;9541:20;9532:29;;9570:30;9594:5;9570:30;:::i;:::-;9473:133;;;;:::o;9612:468::-;9677:6;9685;9734:2;9722:9;9713:7;9709:23;9705:32;9702:119;;;9740:79;;:::i;:::-;9702:119;9860:1;9885:53;9930:7;9921:6;9910:9;9906:22;9885:53;:::i;:::-;9875:63;;9831:117;9987:2;10013:50;10055:7;10046:6;10035:9;10031:22;10013:50;:::i;:::-;10003:60;;9958:115;9612:468;;;;;:::o;10086:307::-;10147:4;10237:18;10229:6;10226:30;10223:56;;;10259:18;;:::i;:::-;10223:56;10297:29;10319:6;10297:29;:::i;:::-;10289:37;;10381:4;10375;10371:15;10363:23;;10086:307;;;:::o;10399:410::-;10476:5;10501:65;10517:48;10558:6;10517:48;:::i;:::-;10501:65;:::i;:::-;10492:74;;10589:6;10582:5;10575:21;10627:4;10620:5;10616:16;10665:3;10656:6;10651:3;10647:16;10644:25;10641:112;;;10672:79;;:::i;:::-;10641:112;10762:41;10796:6;10791:3;10786;10762:41;:::i;:::-;10482:327;10399:410;;;;;:::o;10828:338::-;10883:5;10932:3;10925:4;10917:6;10913:17;10909:27;10899:122;;10940:79;;:::i;:::-;10899:122;11057:6;11044:20;11082:78;11156:3;11148:6;11141:4;11133:6;11129:17;11082:78;:::i;:::-;11073:87;;10889:277;10828:338;;;;:::o;11172:943::-;11267:6;11275;11283;11291;11340:3;11328:9;11319:7;11315:23;11311:33;11308:120;;;11347:79;;:::i;:::-;11308:120;11467:1;11492:53;11537:7;11528:6;11517:9;11513:22;11492:53;:::i;:::-;11482:63;;11438:117;11594:2;11620:53;11665:7;11656:6;11645:9;11641:22;11620:53;:::i;:::-;11610:63;;11565:118;11722:2;11748:53;11793:7;11784:6;11773:9;11769:22;11748:53;:::i;:::-;11738:63;;11693:118;11878:2;11867:9;11863:18;11850:32;11909:18;11901:6;11898:30;11895:117;;;11931:79;;:::i;:::-;11895:117;12036:62;12090:7;12081:6;12070:9;12066:22;12036:62;:::i;:::-;12026:72;;11821:287;11172:943;;;;;;;:::o;12121:474::-;12189:6;12197;12246:2;12234:9;12225:7;12221:23;12217:32;12214:119;;;12252:79;;:::i;:::-;12214:119;12372:1;12397:53;12442:7;12433:6;12422:9;12418:22;12397:53;:::i;:::-;12387:63;;12343:117;12499:2;12525:53;12570:7;12561:6;12550:9;12546:22;12525:53;:::i;:::-;12515:63;;12470:118;12121:474;;;;;:::o;12601:180::-;12649:77;12646:1;12639:88;12746:4;12743:1;12736:15;12770:4;12767:1;12760:15;12787:320;12831:6;12868:1;12862:4;12858:12;12848:22;;12915:1;12909:4;12905:12;12936:18;12926:81;;12992:4;12984:6;12980:17;12970:27;;12926:81;13054:2;13046:6;13043:14;13023:18;13020:38;13017:84;;;13073:18;;:::i;:::-;13017:84;12838:269;12787:320;;;:::o;13113:182::-;13253:34;13249:1;13241:6;13237:14;13230:58;13113:182;:::o;13301:366::-;13443:3;13464:67;13528:2;13523:3;13464:67;:::i;:::-;13457:74;;13540:93;13629:3;13540:93;:::i;:::-;13658:2;13653:3;13649:12;13642:19;;13301:366;;;:::o;13673:419::-;13839:4;13877:2;13866:9;13862:18;13854:26;;13926:9;13920:4;13916:20;13912:1;13901:9;13897:17;13890:47;13954:131;14080:4;13954:131;:::i;:::-;13946:139;;13673:419;;;:::o;14098:181::-;14238:33;14234:1;14226:6;14222:14;14215:57;14098:181;:::o;14285:366::-;14427:3;14448:67;14512:2;14507:3;14448:67;:::i;:::-;14441:74;;14524:93;14613:3;14524:93;:::i;:::-;14642:2;14637:3;14633:12;14626:19;;14285:366;;;:::o;14657:419::-;14823:4;14861:2;14850:9;14846:18;14838:26;;14910:9;14904:4;14900:20;14896:1;14885:9;14881:17;14874:47;14938:131;15064:4;14938:131;:::i;:::-;14930:139;;14657:419;;;:::o;15082:147::-;15183:11;15220:3;15205:18;;15082:147;;;;:::o;15235:114::-;;:::o;15355:398::-;15514:3;15535:83;15616:1;15611:3;15535:83;:::i;:::-;15528:90;;15627:93;15716:3;15627:93;:::i;:::-;15745:1;15740:3;15736:11;15729:18;;15355:398;;;:::o;15759:379::-;15943:3;15965:147;16108:3;15965:147;:::i;:::-;15958:154;;16129:3;16122:10;;15759:379;;;:::o;16144:170::-;16284:22;16280:1;16272:6;16268:14;16261:46;16144:170;:::o;16320:366::-;16462:3;16483:67;16547:2;16542:3;16483:67;:::i;:::-;16476:74;;16559:93;16648:3;16559:93;:::i;:::-;16677:2;16672:3;16668:12;16661:19;;16320:366;;;:::o;16692:419::-;16858:4;16896:2;16885:9;16881:18;16873:26;;16945:9;16939:4;16935:20;16931:1;16920:9;16916:17;16909:47;16973:131;17099:4;16973:131;:::i;:::-;16965:139;;16692:419;;;:::o;17117:180::-;17165:77;17162:1;17155:88;17262:4;17259:1;17252:15;17286:4;17283:1;17276:15;17303:305;17343:3;17362:20;17380:1;17362:20;:::i;:::-;17357:25;;17396:20;17414:1;17396:20;:::i;:::-;17391:25;;17550:1;17482:66;17478:74;17475:1;17472:81;17469:107;;;17556:18;;:::i;:::-;17469:107;17600:1;17597;17593:9;17586:16;;17303:305;;;;:::o;17614:170::-;17754:22;17750:1;17742:6;17738:14;17731:46;17614:170;:::o;17790:366::-;17932:3;17953:67;18017:2;18012:3;17953:67;:::i;:::-;17946:74;;18029:93;18118:3;18029:93;:::i;:::-;18147:2;18142:3;18138:12;18131:19;;17790:366;;;:::o;18162:419::-;18328:4;18366:2;18355:9;18351:18;18343:26;;18415:9;18409:4;18405:20;18401:1;18390:9;18386:17;18379:47;18443:131;18569:4;18443:131;:::i;:::-;18435:139;;18162:419;;;:::o;18587:348::-;18627:7;18650:20;18668:1;18650:20;:::i;:::-;18645:25;;18684:20;18702:1;18684:20;:::i;:::-;18679:25;;18872:1;18804:66;18800:74;18797:1;18794:81;18789:1;18782:9;18775:17;18771:105;18768:131;;;18879:18;;:::i;:::-;18768:131;18927:1;18924;18920:9;18909:20;;18587:348;;;;:::o;18941:169::-;19081:21;19077:1;19069:6;19065:14;19058:45;18941:169;:::o;19116:366::-;19258:3;19279:67;19343:2;19338:3;19279:67;:::i;:::-;19272:74;;19355:93;19444:3;19355:93;:::i;:::-;19473:2;19468:3;19464:12;19457:19;;19116:366;;;:::o;19488:419::-;19654:4;19692:2;19681:9;19677:18;19669:26;;19741:9;19735:4;19731:20;19727:1;19716:9;19712:17;19705:47;19769:131;19895:4;19769:131;:::i;:::-;19761:139;;19488:419;;;:::o;19913:170::-;20053:22;20049:1;20041:6;20037:14;20030:46;19913:170;:::o;20089:366::-;20231:3;20252:67;20316:2;20311:3;20252:67;:::i;:::-;20245:74;;20328:93;20417:3;20328:93;:::i;:::-;20446:2;20441:3;20437:12;20430:19;;20089:366;;;:::o;20461:419::-;20627:4;20665:2;20654:9;20650:18;20642:26;;20714:9;20708:4;20704:20;20700:1;20689:9;20685:17;20678:47;20742:131;20868:4;20742:131;:::i;:::-;20734:139;;20461:419;;;:::o;20886:163::-;21026:15;21022:1;21014:6;21010:14;21003:39;20886:163;:::o;21055:366::-;21197:3;21218:67;21282:2;21277:3;21218:67;:::i;:::-;21211:74;;21294:93;21383:3;21294:93;:::i;:::-;21412:2;21407:3;21403:12;21396:19;;21055:366;;;:::o;21427:419::-;21593:4;21631:2;21620:9;21616:18;21608:26;;21680:9;21674:4;21670:20;21666:1;21655:9;21651:17;21644:47;21708:131;21834:4;21708:131;:::i;:::-;21700:139;;21427:419;;;:::o;21852:170::-;21992:22;21988:1;21980:6;21976:14;21969:46;21852:170;:::o;22028:366::-;22170:3;22191:67;22255:2;22250:3;22191:67;:::i;:::-;22184:74;;22267:93;22356:3;22267:93;:::i;:::-;22385:2;22380:3;22376:12;22369:19;;22028:366;;;:::o;22400:419::-;22566:4;22604:2;22593:9;22589:18;22581:26;;22653:9;22647:4;22643:20;22639:1;22628:9;22624:17;22617:47;22681:131;22807:4;22681:131;:::i;:::-;22673:139;;22400:419;;;:::o;22825:234::-;22965:34;22961:1;22953:6;22949:14;22942:58;23034:17;23029:2;23021:6;23017:15;23010:42;22825:234;:::o;23065:366::-;23207:3;23228:67;23292:2;23287:3;23228:67;:::i;:::-;23221:74;;23304:93;23393:3;23304:93;:::i;:::-;23422:2;23417:3;23413:12;23406:19;;23065:366;;;:::o;23437:419::-;23603:4;23641:2;23630:9;23626:18;23618:26;;23690:9;23684:4;23680:20;23676:1;23665:9;23661:17;23654:47;23718:131;23844:4;23718:131;:::i;:::-;23710:139;;23437:419;;;:::o;23862:148::-;23964:11;24001:3;23986:18;;23862:148;;;;:::o;24016:377::-;24122:3;24150:39;24183:5;24150:39;:::i;:::-;24205:89;24287:6;24282:3;24205:89;:::i;:::-;24198:96;;24303:52;24348:6;24343:3;24336:4;24329:5;24325:16;24303:52;:::i;:::-;24380:6;24375:3;24371:16;24364:23;;24126:267;24016:377;;;;:::o;24399:141::-;24448:4;24471:3;24463:11;;24494:3;24491:1;24484:14;24528:4;24525:1;24515:18;24507:26;;24399:141;;;:::o;24570:845::-;24673:3;24710:5;24704:12;24739:36;24765:9;24739:36;:::i;:::-;24791:89;24873:6;24868:3;24791:89;:::i;:::-;24784:96;;24911:1;24900:9;24896:17;24927:1;24922:137;;;;25073:1;25068:341;;;;24889:520;;24922:137;25006:4;25002:9;24991;24987:25;24982:3;24975:38;25042:6;25037:3;25033:16;25026:23;;24922:137;;25068:341;25135:38;25167:5;25135:38;:::i;:::-;25195:1;25209:154;25223:6;25220:1;25217:13;25209:154;;;25297:7;25291:14;25287:1;25282:3;25278:11;25271:35;25347:1;25338:7;25334:15;25323:26;;25245:4;25242:1;25238:12;25233:17;;25209:154;;;25392:6;25387:3;25383:16;25376:23;;25075:334;;24889:520;;24677:738;;24570:845;;;;:::o;25421:589::-;25646:3;25668:95;25759:3;25750:6;25668:95;:::i;:::-;25661:102;;25780:95;25871:3;25862:6;25780:95;:::i;:::-;25773:102;;25892:92;25980:3;25971:6;25892:92;:::i;:::-;25885:99;;26001:3;25994:10;;25421:589;;;;;;:::o;26016:225::-;26156:34;26152:1;26144:6;26140:14;26133:58;26225:8;26220:2;26212:6;26208:15;26201:33;26016:225;:::o;26247:366::-;26389:3;26410:67;26474:2;26469:3;26410:67;:::i;:::-;26403:74;;26486:93;26575:3;26486:93;:::i;:::-;26604:2;26599:3;26595:12;26588:19;;26247:366;;;:::o;26619:419::-;26785:4;26823:2;26812:9;26808:18;26800:26;;26872:9;26866:4;26862:20;26858:1;26847:9;26843:17;26836:47;26900:131;27026:4;26900:131;:::i;:::-;26892:139;;26619:419;;;:::o;27044:98::-;27095:6;27129:5;27123:12;27113:22;;27044:98;;;:::o;27148:168::-;27231:11;27265:6;27260:3;27253:19;27305:4;27300:3;27296:14;27281:29;;27148:168;;;;:::o;27322:360::-;27408:3;27436:38;27468:5;27436:38;:::i;:::-;27490:70;27553:6;27548:3;27490:70;:::i;:::-;27483:77;;27569:52;27614:6;27609:3;27602:4;27595:5;27591:16;27569:52;:::i;:::-;27646:29;27668:6;27646:29;:::i;:::-;27641:3;27637:39;27630:46;;27412:270;27322:360;;;;:::o;27688:640::-;27883:4;27921:3;27910:9;27906:19;27898:27;;27935:71;28003:1;27992:9;27988:17;27979:6;27935:71;:::i;:::-;28016:72;28084:2;28073:9;28069:18;28060:6;28016:72;:::i;:::-;28098;28166:2;28155:9;28151:18;28142:6;28098:72;:::i;:::-;28217:9;28211:4;28207:20;28202:2;28191:9;28187:18;28180:48;28245:76;28316:4;28307:6;28245:76;:::i;:::-;28237:84;;27688:640;;;;;;;:::o;28334:141::-;28390:5;28421:6;28415:13;28406:22;;28437:32;28463:5;28437:32;:::i;:::-;28334:141;;;;:::o;28481:349::-;28550:6;28599:2;28587:9;28578:7;28574:23;28570:32;28567:119;;;28605:79;;:::i;:::-;28567:119;28725:1;28750:63;28805:7;28796:6;28785:9;28781:22;28750:63;:::i;:::-;28740:73;;28696:127;28481:349;;;;:::o;28836:233::-;28875:3;28898:24;28916:5;28898:24;:::i;:::-;28889:33;;28944:66;28937:5;28934:77;28931:103;;;29014:18;;:::i;:::-;28931:103;29061:1;29054:5;29050:13;29043:20;;28836:233;;;:::o;29075:180::-;29123:77;29120:1;29113:88;29220:4;29217:1;29210:15;29244:4;29241:1;29234:15;29261:185;29301:1;29318:20;29336:1;29318:20;:::i;:::-;29313:25;;29352:20;29370:1;29352:20;:::i;:::-;29347:25;;29391:1;29381:35;;29396:18;;:::i;:::-;29381:35;29438:1;29435;29431:9;29426:14;;29261:185;;;;:::o;29452:191::-;29492:4;29512:20;29530:1;29512:20;:::i;:::-;29507:25;;29546:20;29564:1;29546:20;:::i;:::-;29541:25;;29585:1;29582;29579:8;29576:34;;;29590:18;;:::i;:::-;29576:34;29635:1;29632;29628:9;29620:17;;29452:191;;;;:::o;29649:176::-;29681:1;29698:20;29716:1;29698:20;:::i;:::-;29693:25;;29732:20;29750:1;29732:20;:::i;:::-;29727:25;;29771:1;29761:35;;29776:18;;:::i;:::-;29761:35;29817:1;29814;29810:9;29805:14;;29649:176;;;;:::o;29831:180::-;29879:77;29876:1;29869:88;29976:4;29973:1;29966:15;30000:4;29997:1;29990:15
Swarm Source
ipfs://225aa148e9742b626ccfaff922bcae0178b7945e812f47464b9c12455eda5d03
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.