ERC-721
Overview
Max Total Supply
0 SCN
Holders
10
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SelectCruiseNFT
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-07 */ // File: contracts/ICruiseNFTMarketplace.sol pragma solidity >=0.8.0; struct CruiseMembership { uint256 tokenId; string tokenURI; address mintedBy; address currentOwner; address previousOwner; uint256 price; bool isForSale; bool isWithheld; uint16 votingCount; } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // 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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // 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: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File: contracts/SelectCruiseNFT.sol pragma solidity >=0.8.0; contract SelectCruiseNFT is ERC721, ERC721URIStorage, Ownable, ReentrancyGuard { string public baseURI = ""; uint256 public mintIndex = 1; uint256 public availSupply = 3850; uint256 public withheldSupply = 150; uint256 public mintPrice = 0.3 ether; uint32 public denominator = 1000; address public daoContract; mapping(uint256 => CruiseMembership) public allCruiseSelect; mapping(address => uint256) public mintedTotal; uint256 public maxCountPerWallet = 10; address private cruiseOperationsWallet = 0x2947d8134f148B2A7Ed22C10FAfC4d6Cd42C1054; address private devWallet = 0x1695e62192959A93625EdD8993A2c44faed666Ac; address private investorGBWallet = 0x49C4D560C2b8C2C72962dA8B02B1C428d745a6Fd; address private futureEmploymentWallet = 0xce9F8dDA015702E40cF697aDd3D55E2cF122c641; address private ownershipWallet = 0xe34f72eD903c9f997B9f8658a1b082fd55093DA7; address private eMaloneCDWallet = 0x79C61C20e9C407E4D768a78F7350B78157530183; address private cruiseDaoWalletForCommunity = 0x12A75919B84810e02B1BD4b30b9C47da4c893B10; address private cruiseDaoCharityWallet = 0xD48b024D9d0751f19Ab3D255101405EB534Ea76A; constructor() ERC721("SelectCruiseNFT", "SCN") { daoContract = msg.sender; } function _baseURI() internal view override returns (string memory) { return baseURI; } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function setBaseUri(string memory _uri) external onlyOwner { baseURI = _uri; } function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function getMintIndex() public view returns(uint256) { return mintIndex; } function mint(string memory _tokenURI) public payable { if (msg.sender == cruiseOperationsWallet) { require(withheldSupply > 0, "Supply exceeded"); _safeMint(msg.sender, mintIndex); _setTokenURI(mintIndex, _tokenURI); withheldSupply -= 1; CruiseMembership memory newCruiseSelect = CruiseMembership( mintIndex, _tokenURI, msg.sender, msg.sender, address(0), 0, false, true, 1 ); allCruiseSelect[mintIndex] = newCruiseSelect; mintIndex += 1; } else { require(availSupply > 0, "Supply exceeded"); require(mintedTotal[msg.sender] < maxCountPerWallet, "Count per wallet exceeded"); require(msg.value == mintPrice, "Ether value incorrect"); _safeMint(msg.sender, mintIndex); _setTokenURI(mintIndex, _tokenURI); mintedTotal[msg.sender] += 1; availSupply -= 1; CruiseMembership memory newCruiseSelect = CruiseMembership( mintIndex, _tokenURI, msg.sender, msg.sender, address(0), mintPrice, false, false, 1 ); allCruiseSelect[mintIndex] = newCruiseSelect; mintIndex += 1; distribute(mintPrice); } } function changeTokenPrice(uint256 _tokenId, uint256 _newPrice) public { // require caller of the function is not an empty address require(msg.sender != address(0), "Shouldn't be empty address"); // require that token should exist require(_exists(_tokenId), "Token not exist"); // require that token should not be withheld require(!allCruiseSelect[_tokenId].isWithheld, "Token shuold be reserve one"); // get the token's owner address tokenOwner = ownerOf(_tokenId); // check that token's owner should be equal to the caller of the function require(tokenOwner == msg.sender, "Invalid owner"); CruiseMembership memory cruiseSelect = allCruiseSelect[_tokenId]; // update token's price with new price cruiseSelect.price = _newPrice; // set and update that token in the mapping allCruiseSelect[_tokenId] = cruiseSelect; } // switch between set for sale and set not for sale function toggleForSale(uint256 _tokenId) public { // require caller of the function is not an empty address require(msg.sender != address(0), "Shouldn't be empty address"); // require that token should exist require(_exists(_tokenId), "Token not exist"); // require that token should not be withheld require(!allCruiseSelect[_tokenId].isWithheld, "Token shuold be reserve one"); // get the token's owner address tokenOwner = ownerOf(_tokenId); // check that token's owner should be equal to the caller of the function require(tokenOwner == msg.sender, "Invalid owner"); CruiseMembership memory cruiseSelect = allCruiseSelect[_tokenId]; // if token's forSale is false make it true and vice versa if(cruiseSelect.isForSale) { cruiseSelect.isForSale = false; } else { cruiseSelect.isForSale = true; } // set and update that token in the mapping allCruiseSelect[_tokenId] = cruiseSelect; } function distribute(uint256 _amount) private { payable(cruiseOperationsWallet).transfer(_amount * 150 / denominator); payable(devWallet).transfer(_amount * 40 / denominator); payable(investorGBWallet).transfer(_amount * 40 / denominator); payable(futureEmploymentWallet).transfer(_amount * 20 / denominator); payable(ownershipWallet).transfer(_amount * 200 / denominator); payable(eMaloneCDWallet).transfer(_amount * 100 / denominator); payable(cruiseDaoWalletForCommunity).transfer(_amount * 400 / denominator); payable(cruiseDaoCharityWallet).transfer(_amount * 50 / denominator); } // function purchaseToken(uint256 _tokenId) public payable nonReentrant { // check if the function caller is not an zero account address require(msg.sender != address(0), "Shouldn't be empty address"); // check if the token id of the token being bought exists or not require(_exists(_tokenId), "Token not exist"); // get the token's owner address tokenOwner = ownerOf(_tokenId); // token's owner should not be an zero address account require(tokenOwner != address(0), "Owner can't be empty address"); // require that token should not be withheld require(!allCruiseSelect[_tokenId].isWithheld, "Token shuold not be withheld"); // the one who wants to buy the token should not be the token's owner require(tokenOwner != msg.sender, "Shouldn't be owner"); CruiseMembership memory cruiseSelect = allCruiseSelect[_tokenId]; // price sent in to buy should be equal to or more than the token's price require(msg.value == cruiseSelect.price, "Ether value incorrect"); // token should be for sale require(cruiseSelect.isForSale, "Token is not for sale"); // shouldn't be cruise operations wallet require(msg.sender != cruiseOperationsWallet, "Shouldn't be operations wallet"); payable(cruiseSelect.currentOwner).transfer(cruiseSelect.price * 9 / 10); distribute(cruiseSelect.price / 10); // transfer the token from owner to the caller of the function (buyer) _transfer(tokenOwner, msg.sender, _tokenId); // update the token's previous owner cruiseSelect.previousOwner = cruiseSelect.currentOwner; // update the token's current owner cruiseSelect.currentOwner = msg.sender; // set and update that token in the mapping allCruiseSelect[_tokenId] = cruiseSelect; } function transferWithheldToken(uint256 _tokenId, address _to) public nonReentrant { // shouldn't be cruise operations wallet require(msg.sender == cruiseOperationsWallet, "Should be operations wallet"); // require that token should not be withheld require(allCruiseSelect[_tokenId].isWithheld, "Token shuold be withheld"); // owner should not be an zero address account require(_to != address(0), "Owner can't be empty address"); // get the token's owner address tokenOwner = ownerOf(_tokenId); _transfer(tokenOwner, _to, _tokenId); CruiseMembership memory cruiseSelect = allCruiseSelect[_tokenId]; cruiseSelect.previousOwner = cruiseSelect.currentOwner; cruiseSelect.currentOwner = _to; allCruiseSelect[_tokenId] = cruiseSelect; } function withdrawFunds(address _to) external onlyOwner { payable(_to).transfer(address(this).balance); } function setDaoContract(address _dao) public onlyOwner { daoContract = _dao; } function decreaseVotingEntry(uint256 _tokenId) external { require(msg.sender != address(0), "Shouldn't be empty address"); require(msg.sender == daoContract, "Should be DAO contract"); CruiseMembership memory cruiseSelect = allCruiseSelect[_tokenId]; require(cruiseSelect.votingCount > 0, "Left entries should be bigger than 0"); cruiseSelect.votingCount -= 1; allCruiseSelect[_tokenId] = cruiseSelect; } function getTokenData(uint256 _tokenId) external view returns (CruiseMembership memory) { return allCruiseSelect[_tokenId]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allCruiseSelect","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"address","name":"mintedBy","type":"address"},{"internalType":"address","name":"currentOwner","type":"address"},{"internalType":"address","name":"previousOwner","type":"address"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bool","name":"isForSale","type":"bool"},{"internalType":"bool","name":"isWithheld","type":"bool"},{"internalType":"uint16","name":"votingCount","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changeTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"daoContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"decreaseVotingEntry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"denominator","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getTokenData","outputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"address","name":"mintedBy","type":"address"},{"internalType":"address","name":"currentOwner","type":"address"},{"internalType":"address","name":"previousOwner","type":"address"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bool","name":"isForSale","type":"bool"},{"internalType":"bool","name":"isWithheld","type":"bool"},{"internalType":"uint16","name":"votingCount","type":"uint16"}],"internalType":"struct CruiseMembership","name":"","type":"tuple"}],"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":"maxCountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"purchaseToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dao","type":"address"}],"name":"setDaoContract","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":"toggleForSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferWithheldToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withheldSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b916009916200025a565b506001600a908155610f0a600b556096600c55670429d069189e0000600d55600e805463ffffffff19166103e8179055601155601280546001600160a01b0319908116732947d8134f148b2a7ed22c10fafc4d6cd42c105417909155601380548216731695e62192959a93625edd8993a2c44faed666ac1790556014805482167349c4d560c2b8c2c72962da8b02b1c428d745a6fd17905560158054821673ce9f8dda015702e40cf697add3d55e2cf122c64117905560168054821673e34f72ed903c9f997b9f8658a1b082fd55093da71790556017805482167379c61c20e9c407e4d768a78f7350b781575301831790556018805482167312a75919b84810e02b1bd4b30b9c47da4c893b101790556019805490911673d48b024d9d0751f19ab3d255101405eb534ea76a1790553480156200015757600080fd5b50604080518082018252600f81526e14d95b1958dd10dc9d5a5cd9539195608a1b60208083019182528351808501909452600384526229a1a760e91b908401528151919291620001aa916000916200025a565b508051620001c09060019060208401906200025a565b505050620001dd620001d76200020460201b60201c565b62000208565b6001600855600e8054600160201b600160c01b03191633640100000000021790556200033d565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002689062000300565b90600052602060002090601f0160209004810192826200028c5760008555620002d7565b82601f10620002a757805160ff1916838001178555620002d7565b82800160010185558215620002d7579182015b82811115620002d7578251825591602001919060010190620002ba565b50620002e5929150620002e9565b5090565b5b80821115620002e55760008155600101620002ea565b600181811c908216806200031557607f821691505b602082108114156200033757634e487b7160e01b600052602260045260246000fd5b50919050565b613c17806200034d6000396000f3fe60806040526004361061021a5760003560e01c8063785d783f11610123578063a32018b9116100ab578063c87b56dd1161006f578063c87b56dd14610644578063d85d3d2714610664578063e985e9c514610677578063f2fde38b146106c0578063f74f9bfd146106e057600080fd5b8063a32018b9146105a4578063b09afec1146105c4578063b56b0449146105f1578063b88d4fde14610611578063c2db2c421461063157600080fd5b806396ce0795116100f257806396ce0795146104fc5780639a469f151461052e5780639f5215dd1461054e578063a0bcfc7f14610564578063a22cb4651461058457600080fd5b8063785d783f146104935780638da5cb5b146104a95780638fb58285146104c757806395d89b41146104e757600080fd5b80634a7ffcbc116101a657806368742da61161017557806368742da6146103f45780636b35a474146104145780636c0360eb1461044957806370a082311461045e578063715018a61461047e57600080fd5b80634a7ffcbc1461037657806362e8e8ac1461039e5780636352211e146103be5780636817c76c146103de57600080fd5b8063095ea7b3116101ed578063095ea7b3146102d2578063145f798f146102f457806323b872dd1461032157806330cbc1451461034157806342842e0e1461035657600080fd5b806301ffc9a71461021f57806303a028181461025457806306fdde0314610278578063081812fc1461029a575b600080fd5b34801561022b57600080fd5b5061023f61023a366004613692565b6106f6565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026a60115481565b60405190815260200161024b565b34801561028457600080fd5b5061028d610748565b60405161024b9190613803565b3480156102a657600080fd5b506102ba6102b5366004613710565b6107da565b6040516001600160a01b03909116815260200161024b565b3480156102de57600080fd5b506102f26102ed366004613669565b610867565b005b34801561030057600080fd5b5061026a61030f36600461352f565b60106020526000908152604090205481565b34801561032d57600080fd5b506102f261033c36600461357b565b61097d565b34801561034d57600080fd5b50600a5461026a565b34801561036257600080fd5b506102f261037136600461357b565b6109ae565b34801561038257600080fd5b50600e546102ba9064010000000090046001600160a01b031681565b3480156103aa57600080fd5b506102f26103b936600461374a565b6109c9565b3480156103ca57600080fd5b506102ba6103d9366004613710565b610ce2565b3480156103ea57600080fd5b5061026a600d5481565b34801561040057600080fd5b506102f261040f36600461352f565b610d59565b34801561042057600080fd5b5061043461042f366004613710565b610dbc565b60405161024b99989796959493929190613a05565b34801561045557600080fd5b5061028d610ea8565b34801561046a57600080fd5b5061026a61047936600461352f565b610f36565b34801561048a57600080fd5b506102f2610fbd565b34801561049f57600080fd5b5061026a600c5481565b3480156104b557600080fd5b506007546001600160a01b03166102ba565b3480156104d357600080fd5b506102f26104e236600461352f565b610ff3565b3480156104f357600080fd5b5061028d61104b565b34801561050857600080fd5b50600e546105199063ffffffff1681565b60405163ffffffff909116815260200161024b565b34801561053a57600080fd5b506102f2610549366004613710565b61105a565b34801561055a57600080fd5b5061026a600b5481565b34801561057057600080fd5b506102f261057f3660046136ca565b611355565b34801561059057600080fd5b506102f261059f36600461362f565b611392565b3480156105b057600080fd5b506102f26105bf366004613710565b61139d565b3480156105d057600080fd5b506105e46105df366004613710565b6116c3565b60405161024b919061394e565b3480156105fd57600080fd5b506102f261060c366004613728565b611832565b34801561061d57600080fd5b506102f261062c3660046135b6565b611be6565b6102f261063f366004613710565b611c1e565b34801561065057600080fd5b5061028d61065f366004613710565b612162565b6102f26106723660046136ca565b61216d565b34801561068357600080fd5b5061023f610692366004613549565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106cc57600080fd5b506102f26106db36600461352f565b6125c9565b3480156106ec57600080fd5b5061026a600a5481565b60006001600160e01b031982166380ac58cd60e01b148061072757506001600160e01b03198216635b5e139f60e01b145b8061074257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461075790613b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461078390613b1f565b80156107d05780601f106107a5576101008083540402835291602001916107d0565b820191906000526020600020905b8154815290600101906020018083116107b357829003601f168201915b5050505050905090565b60006107e582612661565b61084b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087282610ce2565b9050806001600160a01b0316836001600160a01b031614156108e05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610842565b336001600160a01b03821614806108fc57506108fc8133610692565b61096e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610842565b610978838361267e565b505050565b61098733826126ec565b6109a35760405162461bcd60e51b8152600401610842906138d4565b6109788383836127d6565b61097883838360405180602001604052806000815250611be6565b336109e65760405162461bcd60e51b81526004016108429061389d565b6109ef82612661565b610a0b5760405162461bcd60e51b815260040161084290613925565b6000828152600f6020526040902060060154610100900460ff1615610a725760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e207368756f6c642062652072657365727665206f6e6500000000006044820152606401610842565b6000610a7d83610ce2565b90506001600160a01b0381163314610ac75760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21037bbb732b960991b6044820152606401610842565b6000600f60008581526020019081526020016000206040518061012001604052908160008201548152602001600182018054610b0290613b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2e90613b1f565b8015610b7b5780601f10610b5057610100808354040283529160200191610b7b565b820191906000526020600020905b815481529060010190602001808311610b5e57829003601f168201915b505050918352505060028201546001600160a01b0390811660208084019190915260038401548216604080850191909152600485015490921660608401526005840154608084015260069093015460ff808216151560a0808601919091526101008304909116151560c08501526201000090910461ffff1660e0909301929092529083018690526000878152600f8352208251815582820151805193945084939192610c2f92600185019290910190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff1990921691909117929092179190911691909117905550505050565b6000818152600260205260408120546001600160a01b0316806107425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610842565b6007546001600160a01b03163314610d835760405162461bcd60e51b815260040161084290613868565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610db8573d6000803e3d6000fd5b5050565b600f6020526000908152604090208054600182018054919291610dde90613b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a90613b1f565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b505050600284015460038501546004860154600587015460069097015495966001600160a01b039384169692841695509216925060ff8082169161010081049091169061ffff620100009091041689565b60098054610eb590613b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee190613b1f565b8015610f2e5780601f10610f0357610100808354040283529160200191610f2e565b820191906000526020600020905b815481529060010190602001808311610f1157829003601f168201915b505050505081565b60006001600160a01b038216610fa15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610842565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610fe75760405162461bcd60e51b815260040161084290613868565b610ff16000612972565b565b6007546001600160a01b0316331461101d5760405162461bcd60e51b815260040161084290613868565b600e80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b60606001805461075790613b1f565b336110775760405162461bcd60e51b81526004016108429061389d565b600e5464010000000090046001600160a01b031633146110d25760405162461bcd60e51b815260206004820152601660248201527514da1bdd5b1908189948111053c818dbdb9d1c9858dd60521b6044820152606401610842565b6000600f6000838152602001908152602001600020604051806101200160405290816000820154815260200160018201805461110d90613b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461113990613b1f565b80156111865780601f1061115b57610100808354040283529160200191611186565b820191906000526020600020905b81548152906001019060200180831161116957829003601f168201915b505050918352505060028201546001600160a01b03908116602083015260038301548116604083015260048301541660608201526005820154608082015260069091015460ff808216151560a0840152610100808304909116151560c084015261ffff62010000909204821660e090930192909252908201519192501661125b5760405162461bcd60e51b8152602060048201526024808201527f4c65667420656e74726965732073686f756c64206265206269676765722074686044820152630616e20360e41b6064820152608401610842565b6001816101000181815161126f9190613ab9565b61ffff169052506000828152600f602090815260409091208251815581830151805184936112a4926001850192910190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff199092169190911792909217919091169190911790555050565b6007546001600160a01b0316331461137f5760405162461bcd60e51b815260040161084290613868565b8051610db8906009906020840190613404565b610db83383836129c4565b336113ba5760405162461bcd60e51b81526004016108429061389d565b6113c381612661565b6113df5760405162461bcd60e51b815260040161084290613925565b6000818152600f6020526040902060060154610100900460ff16156114465760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e207368756f6c642062652072657365727665206f6e6500000000006044820152606401610842565b600061145182610ce2565b90506001600160a01b038116331461149b5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21037bbb732b960991b6044820152606401610842565b6000600f600084815260200190815260200160002060405180610120016040529081600082015481526020016001820180546114d690613b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461150290613b1f565b801561154f5780601f106115245761010080835404028352916020019161154f565b820191906000526020600020905b81548152906001019060200180831161153257829003601f168201915b505050918352505060028201546001600160a01b03908116602083015260038301548116604083015260048301541660608201526005820154608082015260069091015460ff808216151560a0840152610100820416151560c0808401919091526201000090910461ffff1660e090920191909152810151909150156115db57600060c08201526115e3565b600160c08201525b6000838152600f60209081526040909120825181558183015180518493611611926001850192910190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff19909216919091179290921791909116919091179055505050565b604080516101208101825260008082526060602083018190529282018190529181018290526080810182905260a0810182905260c0810182905260e08101829052610100810191909152600f6000838152602001908152602001600020604051806101200160405290816000820154815260200160018201805461174690613b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461177290613b1f565b80156117bf5780601f10611794576101008083540402835291602001916117bf565b820191906000526020600020905b8154815290600101906020018083116117a257829003601f168201915b505050918352505060028201546001600160a01b03908116602083015260038301548116604083015260048301541660608201526005820154608082015260069091015460ff808216151560a0840152610100820416151560c083015262010000900461ffff1660e09091015292915050565b600260085414156118855760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610842565b60026008556012546001600160a01b031633146118e45760405162461bcd60e51b815260206004820152601b60248201527f53686f756c64206265206f7065726174696f6e732077616c6c657400000000006044820152606401610842565b6000828152600f6020526040902060060154610100900460ff1661194a5760405162461bcd60e51b815260206004820152601860248201527f546f6b656e207368756f6c64206265207769746868656c6400000000000000006044820152606401610842565b6001600160a01b0381166119a05760405162461bcd60e51b815260206004820152601c60248201527f4f776e65722063616e277420626520656d7074792061646472657373000000006044820152606401610842565b60006119ab83610ce2565b90506119b88183856127d6565b6000600f600085815260200190815260200160002060405180610120016040529081600082015481526020016001820180546119f390613b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1f90613b1f565b8015611a6c5780601f10611a4157610100808354040283529160200191611a6c565b820191906000526020600020905b815481529060010190602001808311611a4f57829003601f168201915b505050918352505060028201546001600160a01b039081166020808401919091526003840154821660408085019190915260048501548316606080860191909152600586015460808087019190915260069096015460ff808216151560a0880152610100820416151560c087015262010000900461ffff1660e09095019490945292850180518316948601949094529087169092526000878152600f8352208251815582820151805193945084939192611b2e92600185019290910190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff19909216919091179290921791909116919091179055505060016008555050565b611bf033836126ec565b611c0c5760405162461bcd60e51b8152600401610842906138d4565b611c1884848484612a93565b50505050565b60026008541415611c715760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610842565b600260085533611c935760405162461bcd60e51b81526004016108429061389d565b611c9c81612661565b611cb85760405162461bcd60e51b815260040161084290613925565b6000611cc382610ce2565b90506001600160a01b038116611d1b5760405162461bcd60e51b815260206004820152601c60248201527f4f776e65722063616e277420626520656d7074792061646472657373000000006044820152606401610842565b6000828152600f6020526040902060060154610100900460ff1615611d825760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e207368756f6c64206e6f74206265207769746868656c64000000006044820152606401610842565b6001600160a01b038116331415611dd05760405162461bcd60e51b815260206004820152601260248201527129b437bab6323713ba1031329037bbb732b960711b6044820152606401610842565b6000600f60008481526020019081526020016000206040518061012001604052908160008201548152602001600182018054611e0b90613b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3790613b1f565b8015611e845780601f10611e5957610100808354040283529160200191611e84565b820191906000526020600020905b815481529060010190602001808311611e6757829003601f168201915b505050918352505060028201546001600160a01b03908116602083015260038301548116604083015260048301541660608201526005820154608082015260069091015460ff808216151560a0808501919091526101008304909116151560c08401526201000090910461ffff1660e0909201919091528101519091503414611f475760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b6044820152606401610842565b8060c00151611f905760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206e6f7420666f722073616c6560581b6044820152606401610842565b6012546001600160a01b0316331415611feb5760405162461bcd60e51b815260206004820152601e60248201527f53686f756c646e2774206265206f7065726174696f6e732077616c6c657400006044820152606401610842565b80606001516001600160a01b03166108fc600a8360a00151600961200f9190613a9a565b6120199190613a86565b6040518115909202916000818181858888f19350505050158015612041573d6000803e3d6000fd5b5061205b600a8260a001516120569190613a86565b612ac6565b6120668233856127d6565b6060810180516001600160a01b031660808301523390526000838152600f602090815260409091208251815581830151805184936120ab926001850192910190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff199092169190911792909217919091169190911790555050600160085550565b606061074282612d96565b6012546001600160a01b0316331415612338576000600c54116121c45760405162461bcd60e51b815260206004820152600f60248201526e14dd5c1c1b1e48195e18d959591959608a1b6044820152606401610842565b6121d033600a54612ef8565b6121dc600a5482612f12565b6001600c60008282546121ef9190613adc565b90915550506040805161012081018252600a54808252602080830185815233848601819052606085015260006080850181905260a0850181905260c08501819052600160e086018190526101008601819052938152600f835294909420835181559351805193948594909361226993908501920190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff19909216919091179290921791909116919091179055600a80546001919060009061232c908490613a6e565b909155506125c6915050565b6000600b541161237c5760405162461bcd60e51b815260206004820152600f60248201526e14dd5c1c1b1e48195e18d959591959608a1b6044820152606401610842565b60115433600090815260106020526040902054106123dc5760405162461bcd60e51b815260206004820152601960248201527f436f756e74207065722077616c6c6574206578636565646564000000000000006044820152606401610842565b600d5434146124255760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b6044820152606401610842565b61243133600a54612ef8565b61243d600a5482612f12565b33600090815260106020526040812080546001929061245d908490613a6e565b925050819055506001600b60008282546124779190613adc565b90915550506040805161012081018252600a548082526020808301858152338486018190526060850152600060808501819052600d5460a086015260c0850181905260e0850181905260016101008601819052938152600f83529490942083518155935180519394859490936124f293908501920190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff19909216919091179290921791909116919091179055600a8054600191906000906125b5908490613a6e565b9091555050600d54610db890612ac6565b50565b6007546001600160a01b031633146125f35760405162461bcd60e51b815260040161084290613868565b6001600160a01b0381166126585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610842565b6125c681612972565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906126b382610ce2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126f782612661565b6127585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610842565b600061276383610ce2565b9050806001600160a01b0316846001600160a01b031614806127aa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806127ce5750836001600160a01b03166127c3846107da565b6001600160a01b0316145b949350505050565b826001600160a01b03166127e982610ce2565b6001600160a01b03161461284d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610842565b6001600160a01b0382166128af5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610842565b6128ba60008261267e565b6001600160a01b03831660009081526003602052604081208054600192906128e3908490613adc565b90915550506001600160a01b0382166000908152600360205260408120805460019290612911908490613a6e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415612a265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610842565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612a9e8484846127d6565b612aaa84848484612f9d565b611c185760405162461bcd60e51b815260040161084290613816565b601254600e546001600160a01b03909116906108fc9063ffffffff16612aed846096613a9a565b612af79190613a86565b6040518115909202916000818181858888f19350505050158015612b1f573d6000803e3d6000fd5b50601354600e546001600160a01b03909116906108fc9063ffffffff16612b47846028613a9a565b612b519190613a86565b6040518115909202916000818181858888f19350505050158015612b79573d6000803e3d6000fd5b50601454600e546001600160a01b03909116906108fc9063ffffffff16612ba1846028613a9a565b612bab9190613a86565b6040518115909202916000818181858888f19350505050158015612bd3573d6000803e3d6000fd5b50601554600e546001600160a01b03909116906108fc9063ffffffff16612bfb846014613a9a565b612c059190613a86565b6040518115909202916000818181858888f19350505050158015612c2d573d6000803e3d6000fd5b50601654600e546001600160a01b03909116906108fc9063ffffffff16612c558460c8613a9a565b612c5f9190613a86565b6040518115909202916000818181858888f19350505050158015612c87573d6000803e3d6000fd5b50601754600e546001600160a01b03909116906108fc9063ffffffff16612caf846064613a9a565b612cb99190613a86565b6040518115909202916000818181858888f19350505050158015612ce1573d6000803e3d6000fd5b50601854600e546001600160a01b03909116906108fc9063ffffffff16612d0a84610190613a9a565b612d149190613a86565b6040518115909202916000818181858888f19350505050158015612d3c573d6000803e3d6000fd5b50601954600e546001600160a01b03909116906108fc9063ffffffff16612d64846032613a9a565b612d6e9190613a86565b6040518115909202916000818181858888f19350505050158015610db8573d6000803e3d6000fd5b6060612da182612661565b612e075760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610842565b60008281526006602052604081208054612e2090613b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054612e4c90613b1f565b8015612e995780601f10612e6e57610100808354040283529160200191612e99565b820191906000526020600020905b815481529060010190602001808311612e7c57829003601f168201915b505050505090506000612eaa6130aa565b9050805160001415612ebd575092915050565b815115612eef578082604051602001612ed7929190613797565b60405160208183030381529060405292505050919050565b6127ce846130b9565b610db8828260405180602001604052806000815250613184565b612f1b82612661565b612f7e5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610842565b6000828152600660209081526040909120825161097892840190613404565b60006001600160a01b0384163b1561309f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612fe19033908990889088906004016137c6565b602060405180830381600087803b158015612ffb57600080fd5b505af192505050801561302b575060408051601f3d908101601f19168201909252613028918101906136ae565b60015b613085573d808015613059576040519150601f19603f3d011682016040523d82523d6000602084013e61305e565b606091505b50805161307d5760405162461bcd60e51b815260040161084290613816565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127ce565b506001949350505050565b60606009805461075790613b1f565b60606130c482612661565b6131285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610842565b60006131326130aa565b90506000815111613152576040518060200160405280600081525061317d565b8061315c846131b7565b60405160200161316d929190613797565b6040516020818303038152906040525b9392505050565b61318e83836132d1565b61319b6000848484612f9d565b6109785760405162461bcd60e51b815260040161084290613816565b6060816131db5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561320557806131ef81613b5a565b91506131fe9050600a83613a86565b91506131df565b60008167ffffffffffffffff81111561322e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613258576020820181803683370190505b5090505b84156127ce5761326d600183613adc565b915061327a600a86613b75565b613285906030613a6e565b60f81b8183815181106132a857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506132ca600a86613a86565b945061325c565b6001600160a01b0382166133275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610842565b61333081612661565b1561337d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610842565b6001600160a01b03821660009081526003602052604081208054600192906133a6908490613a6e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461341090613b1f565b90600052602060002090601f0160209004810192826134325760008555613478565b82601f1061344b57805160ff1916838001178555613478565b82800160010185558215613478579182015b8281111561347857825182559160200191906001019061345d565b50613484929150613488565b5090565b5b808211156134845760008155600101613489565b600067ffffffffffffffff808411156134b8576134b8613bb5565b604051601f8501601f19908116603f011681019082821181831017156134e0576134e0613bb5565b816040528093508581528686860111156134f957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461352a57600080fd5b919050565b600060208284031215613540578081fd5b61317d82613513565b6000806040838503121561355b578081fd5b61356483613513565b915061357260208401613513565b90509250929050565b60008060006060848603121561358f578081fd5b61359884613513565b92506135a660208501613513565b9150604084013590509250925092565b600080600080608085870312156135cb578081fd5b6135d485613513565b93506135e260208601613513565b925060408501359150606085013567ffffffffffffffff811115613604578182fd5b8501601f81018713613614578182fd5b6136238782356020840161349d565b91505092959194509250565b60008060408385031215613641578182fd5b61364a83613513565b91506020830135801515811461365e578182fd5b809150509250929050565b6000806040838503121561367b578182fd5b61368483613513565b946020939093013593505050565b6000602082840312156136a3578081fd5b813561317d81613bcb565b6000602082840312156136bf578081fd5b815161317d81613bcb565b6000602082840312156136db578081fd5b813567ffffffffffffffff8111156136f1578182fd5b8201601f81018413613701578182fd5b6127ce8482356020840161349d565b600060208284031215613721578081fd5b5035919050565b6000806040838503121561373a578182fd5b8235915061357260208401613513565b6000806040838503121561375c578182fd5b50508035926020909101359150565b60008151808452613783816020860160208601613af3565b601f01601f19169290920160200192915050565b600083516137a9818460208801613af3565b8351908301906137bd818360208801613af3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906137f99083018461376b565b9695505050505050565b60208152600061317d602083018461376b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f53686f756c646e277420626520656d7074792061646472657373000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600f908201526e151bdad95b881b9bdd08195e1a5cdd608a1b604082015260600190565b60208152815160208201526000602083015161012080604085015261397761014085018361376b565b9150604085015161399360608601826001600160a01b03169052565b5060608501516001600160a01b03811660808601525060808501516001600160a01b03811660a08601525060a085015160c085015260c08501516139db60e086018215159052565b5060e08501516101006139f18187018315159052565b9095015161ffff1693019290925250919050565b60006101208b8352806020840152613a1f8184018c61376b565b6001600160a01b039a8b166040850152988a166060840152505094909616608085015260a0840192909252151560c0830152151560e082015261ffff9092166101009092019190915292915050565b60008219821115613a8157613a81613b89565b500190565b600082613a9557613a95613b9f565b500490565b6000816000190483118215151615613ab457613ab4613b89565b500290565b600061ffff83811690831681811015613ad457613ad4613b89565b039392505050565b600082821015613aee57613aee613b89565b500390565b60005b83811015613b0e578181015183820152602001613af6565b83811115611c185750506000910152565b600181811c90821680613b3357607f821691505b60208210811415613b5457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613b6e57613b6e613b89565b5060010190565b600082613b8457613b84613b9f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146125c657600080fdfea2646970667358221220a3a3fe7982991dc473b63885b055c5323cac942c889eb03436c952ddb084d66964736f6c63430008040033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c8063785d783f11610123578063a32018b9116100ab578063c87b56dd1161006f578063c87b56dd14610644578063d85d3d2714610664578063e985e9c514610677578063f2fde38b146106c0578063f74f9bfd146106e057600080fd5b8063a32018b9146105a4578063b09afec1146105c4578063b56b0449146105f1578063b88d4fde14610611578063c2db2c421461063157600080fd5b806396ce0795116100f257806396ce0795146104fc5780639a469f151461052e5780639f5215dd1461054e578063a0bcfc7f14610564578063a22cb4651461058457600080fd5b8063785d783f146104935780638da5cb5b146104a95780638fb58285146104c757806395d89b41146104e757600080fd5b80634a7ffcbc116101a657806368742da61161017557806368742da6146103f45780636b35a474146104145780636c0360eb1461044957806370a082311461045e578063715018a61461047e57600080fd5b80634a7ffcbc1461037657806362e8e8ac1461039e5780636352211e146103be5780636817c76c146103de57600080fd5b8063095ea7b3116101ed578063095ea7b3146102d2578063145f798f146102f457806323b872dd1461032157806330cbc1451461034157806342842e0e1461035657600080fd5b806301ffc9a71461021f57806303a028181461025457806306fdde0314610278578063081812fc1461029a575b600080fd5b34801561022b57600080fd5b5061023f61023a366004613692565b6106f6565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026a60115481565b60405190815260200161024b565b34801561028457600080fd5b5061028d610748565b60405161024b9190613803565b3480156102a657600080fd5b506102ba6102b5366004613710565b6107da565b6040516001600160a01b03909116815260200161024b565b3480156102de57600080fd5b506102f26102ed366004613669565b610867565b005b34801561030057600080fd5b5061026a61030f36600461352f565b60106020526000908152604090205481565b34801561032d57600080fd5b506102f261033c36600461357b565b61097d565b34801561034d57600080fd5b50600a5461026a565b34801561036257600080fd5b506102f261037136600461357b565b6109ae565b34801561038257600080fd5b50600e546102ba9064010000000090046001600160a01b031681565b3480156103aa57600080fd5b506102f26103b936600461374a565b6109c9565b3480156103ca57600080fd5b506102ba6103d9366004613710565b610ce2565b3480156103ea57600080fd5b5061026a600d5481565b34801561040057600080fd5b506102f261040f36600461352f565b610d59565b34801561042057600080fd5b5061043461042f366004613710565b610dbc565b60405161024b99989796959493929190613a05565b34801561045557600080fd5b5061028d610ea8565b34801561046a57600080fd5b5061026a61047936600461352f565b610f36565b34801561048a57600080fd5b506102f2610fbd565b34801561049f57600080fd5b5061026a600c5481565b3480156104b557600080fd5b506007546001600160a01b03166102ba565b3480156104d357600080fd5b506102f26104e236600461352f565b610ff3565b3480156104f357600080fd5b5061028d61104b565b34801561050857600080fd5b50600e546105199063ffffffff1681565b60405163ffffffff909116815260200161024b565b34801561053a57600080fd5b506102f2610549366004613710565b61105a565b34801561055a57600080fd5b5061026a600b5481565b34801561057057600080fd5b506102f261057f3660046136ca565b611355565b34801561059057600080fd5b506102f261059f36600461362f565b611392565b3480156105b057600080fd5b506102f26105bf366004613710565b61139d565b3480156105d057600080fd5b506105e46105df366004613710565b6116c3565b60405161024b919061394e565b3480156105fd57600080fd5b506102f261060c366004613728565b611832565b34801561061d57600080fd5b506102f261062c3660046135b6565b611be6565b6102f261063f366004613710565b611c1e565b34801561065057600080fd5b5061028d61065f366004613710565b612162565b6102f26106723660046136ca565b61216d565b34801561068357600080fd5b5061023f610692366004613549565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106cc57600080fd5b506102f26106db36600461352f565b6125c9565b3480156106ec57600080fd5b5061026a600a5481565b60006001600160e01b031982166380ac58cd60e01b148061072757506001600160e01b03198216635b5e139f60e01b145b8061074257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461075790613b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461078390613b1f565b80156107d05780601f106107a5576101008083540402835291602001916107d0565b820191906000526020600020905b8154815290600101906020018083116107b357829003601f168201915b5050505050905090565b60006107e582612661565b61084b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087282610ce2565b9050806001600160a01b0316836001600160a01b031614156108e05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610842565b336001600160a01b03821614806108fc57506108fc8133610692565b61096e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610842565b610978838361267e565b505050565b61098733826126ec565b6109a35760405162461bcd60e51b8152600401610842906138d4565b6109788383836127d6565b61097883838360405180602001604052806000815250611be6565b336109e65760405162461bcd60e51b81526004016108429061389d565b6109ef82612661565b610a0b5760405162461bcd60e51b815260040161084290613925565b6000828152600f6020526040902060060154610100900460ff1615610a725760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e207368756f6c642062652072657365727665206f6e6500000000006044820152606401610842565b6000610a7d83610ce2565b90506001600160a01b0381163314610ac75760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21037bbb732b960991b6044820152606401610842565b6000600f60008581526020019081526020016000206040518061012001604052908160008201548152602001600182018054610b0290613b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2e90613b1f565b8015610b7b5780601f10610b5057610100808354040283529160200191610b7b565b820191906000526020600020905b815481529060010190602001808311610b5e57829003601f168201915b505050918352505060028201546001600160a01b0390811660208084019190915260038401548216604080850191909152600485015490921660608401526005840154608084015260069093015460ff808216151560a0808601919091526101008304909116151560c08501526201000090910461ffff1660e0909301929092529083018690526000878152600f8352208251815582820151805193945084939192610c2f92600185019290910190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff1990921691909117929092179190911691909117905550505050565b6000818152600260205260408120546001600160a01b0316806107425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610842565b6007546001600160a01b03163314610d835760405162461bcd60e51b815260040161084290613868565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610db8573d6000803e3d6000fd5b5050565b600f6020526000908152604090208054600182018054919291610dde90613b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a90613b1f565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b505050600284015460038501546004860154600587015460069097015495966001600160a01b039384169692841695509216925060ff8082169161010081049091169061ffff620100009091041689565b60098054610eb590613b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee190613b1f565b8015610f2e5780601f10610f0357610100808354040283529160200191610f2e565b820191906000526020600020905b815481529060010190602001808311610f1157829003601f168201915b505050505081565b60006001600160a01b038216610fa15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610842565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610fe75760405162461bcd60e51b815260040161084290613868565b610ff16000612972565b565b6007546001600160a01b0316331461101d5760405162461bcd60e51b815260040161084290613868565b600e80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b60606001805461075790613b1f565b336110775760405162461bcd60e51b81526004016108429061389d565b600e5464010000000090046001600160a01b031633146110d25760405162461bcd60e51b815260206004820152601660248201527514da1bdd5b1908189948111053c818dbdb9d1c9858dd60521b6044820152606401610842565b6000600f6000838152602001908152602001600020604051806101200160405290816000820154815260200160018201805461110d90613b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461113990613b1f565b80156111865780601f1061115b57610100808354040283529160200191611186565b820191906000526020600020905b81548152906001019060200180831161116957829003601f168201915b505050918352505060028201546001600160a01b03908116602083015260038301548116604083015260048301541660608201526005820154608082015260069091015460ff808216151560a0840152610100808304909116151560c084015261ffff62010000909204821660e090930192909252908201519192501661125b5760405162461bcd60e51b8152602060048201526024808201527f4c65667420656e74726965732073686f756c64206265206269676765722074686044820152630616e20360e41b6064820152608401610842565b6001816101000181815161126f9190613ab9565b61ffff169052506000828152600f602090815260409091208251815581830151805184936112a4926001850192910190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff199092169190911792909217919091169190911790555050565b6007546001600160a01b0316331461137f5760405162461bcd60e51b815260040161084290613868565b8051610db8906009906020840190613404565b610db83383836129c4565b336113ba5760405162461bcd60e51b81526004016108429061389d565b6113c381612661565b6113df5760405162461bcd60e51b815260040161084290613925565b6000818152600f6020526040902060060154610100900460ff16156114465760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e207368756f6c642062652072657365727665206f6e6500000000006044820152606401610842565b600061145182610ce2565b90506001600160a01b038116331461149b5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21037bbb732b960991b6044820152606401610842565b6000600f600084815260200190815260200160002060405180610120016040529081600082015481526020016001820180546114d690613b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461150290613b1f565b801561154f5780601f106115245761010080835404028352916020019161154f565b820191906000526020600020905b81548152906001019060200180831161153257829003601f168201915b505050918352505060028201546001600160a01b03908116602083015260038301548116604083015260048301541660608201526005820154608082015260069091015460ff808216151560a0840152610100820416151560c0808401919091526201000090910461ffff1660e090920191909152810151909150156115db57600060c08201526115e3565b600160c08201525b6000838152600f60209081526040909120825181558183015180518493611611926001850192910190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff19909216919091179290921791909116919091179055505050565b604080516101208101825260008082526060602083018190529282018190529181018290526080810182905260a0810182905260c0810182905260e08101829052610100810191909152600f6000838152602001908152602001600020604051806101200160405290816000820154815260200160018201805461174690613b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461177290613b1f565b80156117bf5780601f10611794576101008083540402835291602001916117bf565b820191906000526020600020905b8154815290600101906020018083116117a257829003601f168201915b505050918352505060028201546001600160a01b03908116602083015260038301548116604083015260048301541660608201526005820154608082015260069091015460ff808216151560a0840152610100820416151560c083015262010000900461ffff1660e09091015292915050565b600260085414156118855760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610842565b60026008556012546001600160a01b031633146118e45760405162461bcd60e51b815260206004820152601b60248201527f53686f756c64206265206f7065726174696f6e732077616c6c657400000000006044820152606401610842565b6000828152600f6020526040902060060154610100900460ff1661194a5760405162461bcd60e51b815260206004820152601860248201527f546f6b656e207368756f6c64206265207769746868656c6400000000000000006044820152606401610842565b6001600160a01b0381166119a05760405162461bcd60e51b815260206004820152601c60248201527f4f776e65722063616e277420626520656d7074792061646472657373000000006044820152606401610842565b60006119ab83610ce2565b90506119b88183856127d6565b6000600f600085815260200190815260200160002060405180610120016040529081600082015481526020016001820180546119f390613b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1f90613b1f565b8015611a6c5780601f10611a4157610100808354040283529160200191611a6c565b820191906000526020600020905b815481529060010190602001808311611a4f57829003601f168201915b505050918352505060028201546001600160a01b039081166020808401919091526003840154821660408085019190915260048501548316606080860191909152600586015460808087019190915260069096015460ff808216151560a0880152610100820416151560c087015262010000900461ffff1660e09095019490945292850180518316948601949094529087169092526000878152600f8352208251815582820151805193945084939192611b2e92600185019290910190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff19909216919091179290921791909116919091179055505060016008555050565b611bf033836126ec565b611c0c5760405162461bcd60e51b8152600401610842906138d4565b611c1884848484612a93565b50505050565b60026008541415611c715760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610842565b600260085533611c935760405162461bcd60e51b81526004016108429061389d565b611c9c81612661565b611cb85760405162461bcd60e51b815260040161084290613925565b6000611cc382610ce2565b90506001600160a01b038116611d1b5760405162461bcd60e51b815260206004820152601c60248201527f4f776e65722063616e277420626520656d7074792061646472657373000000006044820152606401610842565b6000828152600f6020526040902060060154610100900460ff1615611d825760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e207368756f6c64206e6f74206265207769746868656c64000000006044820152606401610842565b6001600160a01b038116331415611dd05760405162461bcd60e51b815260206004820152601260248201527129b437bab6323713ba1031329037bbb732b960711b6044820152606401610842565b6000600f60008481526020019081526020016000206040518061012001604052908160008201548152602001600182018054611e0b90613b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3790613b1f565b8015611e845780601f10611e5957610100808354040283529160200191611e84565b820191906000526020600020905b815481529060010190602001808311611e6757829003601f168201915b505050918352505060028201546001600160a01b03908116602083015260038301548116604083015260048301541660608201526005820154608082015260069091015460ff808216151560a0808501919091526101008304909116151560c08401526201000090910461ffff1660e0909201919091528101519091503414611f475760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b6044820152606401610842565b8060c00151611f905760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206e6f7420666f722073616c6560581b6044820152606401610842565b6012546001600160a01b0316331415611feb5760405162461bcd60e51b815260206004820152601e60248201527f53686f756c646e2774206265206f7065726174696f6e732077616c6c657400006044820152606401610842565b80606001516001600160a01b03166108fc600a8360a00151600961200f9190613a9a565b6120199190613a86565b6040518115909202916000818181858888f19350505050158015612041573d6000803e3d6000fd5b5061205b600a8260a001516120569190613a86565b612ac6565b6120668233856127d6565b6060810180516001600160a01b031660808301523390526000838152600f602090815260409091208251815581830151805184936120ab926001850192910190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff199092169190911792909217919091169190911790555050600160085550565b606061074282612d96565b6012546001600160a01b0316331415612338576000600c54116121c45760405162461bcd60e51b815260206004820152600f60248201526e14dd5c1c1b1e48195e18d959591959608a1b6044820152606401610842565b6121d033600a54612ef8565b6121dc600a5482612f12565b6001600c60008282546121ef9190613adc565b90915550506040805161012081018252600a54808252602080830185815233848601819052606085015260006080850181905260a0850181905260c08501819052600160e086018190526101008601819052938152600f835294909420835181559351805193948594909361226993908501920190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff19909216919091179290921791909116919091179055600a80546001919060009061232c908490613a6e565b909155506125c6915050565b6000600b541161237c5760405162461bcd60e51b815260206004820152600f60248201526e14dd5c1c1b1e48195e18d959591959608a1b6044820152606401610842565b60115433600090815260106020526040902054106123dc5760405162461bcd60e51b815260206004820152601960248201527f436f756e74207065722077616c6c6574206578636565646564000000000000006044820152606401610842565b600d5434146124255760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b6044820152606401610842565b61243133600a54612ef8565b61243d600a5482612f12565b33600090815260106020526040812080546001929061245d908490613a6e565b925050819055506001600b60008282546124779190613adc565b90915550506040805161012081018252600a548082526020808301858152338486018190526060850152600060808501819052600d5460a086015260c0850181905260e0850181905260016101008601819052938152600f83529490942083518155935180519394859490936124f293908501920190613404565b5060408201516002820180546001600160a01b039283166001600160a01b0319918216179091556060840151600384018054918416918316919091179055608084015160048401805491909316911617905560a0820151600582015560c08201516006909101805460e08401516101009485015161ffff16620100000263ffff00001991151590950261ff00199415159490941661ffff19909216919091179290921791909116919091179055600a8054600191906000906125b5908490613a6e565b9091555050600d54610db890612ac6565b50565b6007546001600160a01b031633146125f35760405162461bcd60e51b815260040161084290613868565b6001600160a01b0381166126585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610842565b6125c681612972565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906126b382610ce2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126f782612661565b6127585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610842565b600061276383610ce2565b9050806001600160a01b0316846001600160a01b031614806127aa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806127ce5750836001600160a01b03166127c3846107da565b6001600160a01b0316145b949350505050565b826001600160a01b03166127e982610ce2565b6001600160a01b03161461284d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610842565b6001600160a01b0382166128af5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610842565b6128ba60008261267e565b6001600160a01b03831660009081526003602052604081208054600192906128e3908490613adc565b90915550506001600160a01b0382166000908152600360205260408120805460019290612911908490613a6e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415612a265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610842565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612a9e8484846127d6565b612aaa84848484612f9d565b611c185760405162461bcd60e51b815260040161084290613816565b601254600e546001600160a01b03909116906108fc9063ffffffff16612aed846096613a9a565b612af79190613a86565b6040518115909202916000818181858888f19350505050158015612b1f573d6000803e3d6000fd5b50601354600e546001600160a01b03909116906108fc9063ffffffff16612b47846028613a9a565b612b519190613a86565b6040518115909202916000818181858888f19350505050158015612b79573d6000803e3d6000fd5b50601454600e546001600160a01b03909116906108fc9063ffffffff16612ba1846028613a9a565b612bab9190613a86565b6040518115909202916000818181858888f19350505050158015612bd3573d6000803e3d6000fd5b50601554600e546001600160a01b03909116906108fc9063ffffffff16612bfb846014613a9a565b612c059190613a86565b6040518115909202916000818181858888f19350505050158015612c2d573d6000803e3d6000fd5b50601654600e546001600160a01b03909116906108fc9063ffffffff16612c558460c8613a9a565b612c5f9190613a86565b6040518115909202916000818181858888f19350505050158015612c87573d6000803e3d6000fd5b50601754600e546001600160a01b03909116906108fc9063ffffffff16612caf846064613a9a565b612cb99190613a86565b6040518115909202916000818181858888f19350505050158015612ce1573d6000803e3d6000fd5b50601854600e546001600160a01b03909116906108fc9063ffffffff16612d0a84610190613a9a565b612d149190613a86565b6040518115909202916000818181858888f19350505050158015612d3c573d6000803e3d6000fd5b50601954600e546001600160a01b03909116906108fc9063ffffffff16612d64846032613a9a565b612d6e9190613a86565b6040518115909202916000818181858888f19350505050158015610db8573d6000803e3d6000fd5b6060612da182612661565b612e075760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610842565b60008281526006602052604081208054612e2090613b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054612e4c90613b1f565b8015612e995780601f10612e6e57610100808354040283529160200191612e99565b820191906000526020600020905b815481529060010190602001808311612e7c57829003601f168201915b505050505090506000612eaa6130aa565b9050805160001415612ebd575092915050565b815115612eef578082604051602001612ed7929190613797565b60405160208183030381529060405292505050919050565b6127ce846130b9565b610db8828260405180602001604052806000815250613184565b612f1b82612661565b612f7e5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610842565b6000828152600660209081526040909120825161097892840190613404565b60006001600160a01b0384163b1561309f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612fe19033908990889088906004016137c6565b602060405180830381600087803b158015612ffb57600080fd5b505af192505050801561302b575060408051601f3d908101601f19168201909252613028918101906136ae565b60015b613085573d808015613059576040519150601f19603f3d011682016040523d82523d6000602084013e61305e565b606091505b50805161307d5760405162461bcd60e51b815260040161084290613816565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127ce565b506001949350505050565b60606009805461075790613b1f565b60606130c482612661565b6131285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610842565b60006131326130aa565b90506000815111613152576040518060200160405280600081525061317d565b8061315c846131b7565b60405160200161316d929190613797565b6040516020818303038152906040525b9392505050565b61318e83836132d1565b61319b6000848484612f9d565b6109785760405162461bcd60e51b815260040161084290613816565b6060816131db5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561320557806131ef81613b5a565b91506131fe9050600a83613a86565b91506131df565b60008167ffffffffffffffff81111561322e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613258576020820181803683370190505b5090505b84156127ce5761326d600183613adc565b915061327a600a86613b75565b613285906030613a6e565b60f81b8183815181106132a857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506132ca600a86613a86565b945061325c565b6001600160a01b0382166133275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610842565b61333081612661565b1561337d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610842565b6001600160a01b03821660009081526003602052604081208054600192906133a6908490613a6e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461341090613b1f565b90600052602060002090601f0160209004810192826134325760008555613478565b82601f1061344b57805160ff1916838001178555613478565b82800160010185558215613478579182015b8281111561347857825182559160200191906001019061345d565b50613484929150613488565b5090565b5b808211156134845760008155600101613489565b600067ffffffffffffffff808411156134b8576134b8613bb5565b604051601f8501601f19908116603f011681019082821181831017156134e0576134e0613bb5565b816040528093508581528686860111156134f957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461352a57600080fd5b919050565b600060208284031215613540578081fd5b61317d82613513565b6000806040838503121561355b578081fd5b61356483613513565b915061357260208401613513565b90509250929050565b60008060006060848603121561358f578081fd5b61359884613513565b92506135a660208501613513565b9150604084013590509250925092565b600080600080608085870312156135cb578081fd5b6135d485613513565b93506135e260208601613513565b925060408501359150606085013567ffffffffffffffff811115613604578182fd5b8501601f81018713613614578182fd5b6136238782356020840161349d565b91505092959194509250565b60008060408385031215613641578182fd5b61364a83613513565b91506020830135801515811461365e578182fd5b809150509250929050565b6000806040838503121561367b578182fd5b61368483613513565b946020939093013593505050565b6000602082840312156136a3578081fd5b813561317d81613bcb565b6000602082840312156136bf578081fd5b815161317d81613bcb565b6000602082840312156136db578081fd5b813567ffffffffffffffff8111156136f1578182fd5b8201601f81018413613701578182fd5b6127ce8482356020840161349d565b600060208284031215613721578081fd5b5035919050565b6000806040838503121561373a578182fd5b8235915061357260208401613513565b6000806040838503121561375c578182fd5b50508035926020909101359150565b60008151808452613783816020860160208601613af3565b601f01601f19169290920160200192915050565b600083516137a9818460208801613af3565b8351908301906137bd818360208801613af3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906137f99083018461376b565b9695505050505050565b60208152600061317d602083018461376b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f53686f756c646e277420626520656d7074792061646472657373000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600f908201526e151bdad95b881b9bdd08195e1a5cdd608a1b604082015260600190565b60208152815160208201526000602083015161012080604085015261397761014085018361376b565b9150604085015161399360608601826001600160a01b03169052565b5060608501516001600160a01b03811660808601525060808501516001600160a01b03811660a08601525060a085015160c085015260c08501516139db60e086018215159052565b5060e08501516101006139f18187018315159052565b9095015161ffff1693019290925250919050565b60006101208b8352806020840152613a1f8184018c61376b565b6001600160a01b039a8b166040850152988a166060840152505094909616608085015260a0840192909252151560c0830152151560e082015261ffff9092166101009092019190915292915050565b60008219821115613a8157613a81613b89565b500190565b600082613a9557613a95613b9f565b500490565b6000816000190483118215151615613ab457613ab4613b89565b500290565b600061ffff83811690831681811015613ad457613ad4613b89565b039392505050565b600082821015613aee57613aee613b89565b500390565b60005b83811015613b0e578181015183820152602001613af6565b83811115611c185750506000910152565b600181811c90821680613b3357607f821691505b60208210811415613b5457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613b6e57613b6e613b89565b5060010190565b600082613b8457613b84613b9f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146125c657600080fdfea2646970667358221220a3a3fe7982991dc473b63885b055c5323cac942c889eb03436c952ddb084d66964736f6c63430008040033
Deployed Bytecode Sourcemap
42428:10009:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27224:305;;;;;;;;;;-1:-1:-1;27224:305:0;;;;;:::i;:::-;;:::i;:::-;;;6628:14:1;;6621:22;6603:41;;6591:2;6576:18;27224:305:0;;;;;;;;42906:37;;;;;;;;;;;;;;;;;;;21523:25:1;;;21511:2;21496:18;42906:37:0;21478:76:1;28169:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29729:221::-;;;;;;;;;;-1:-1:-1;29729:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5926:32:1;;;5908:51;;5896:2;5881:18;29729:221:0;5863:102:1;29252:411:0;;;;;;;;;;-1:-1:-1;29252:411:0;;;;;:::i;:::-;;:::i;:::-;;42851:46;;;;;;;;;;-1:-1:-1;42851:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;30479:339;;;;;;;;;;-1:-1:-1;30479:339:0;;;;;:::i;:::-;;:::i;44296:88::-;;;;;;;;;;-1:-1:-1;44367:9:0;;44296:88;;30889:185;;;;;;;;;;-1:-1:-1;30889:185:0;;;;;:::i;:::-;;:::i;42748:26::-;;;;;;;;;;-1:-1:-1;42748:26:0;;;;;;;-1:-1:-1;;;;;42748:26:0;;;46001:966;;;;;;;;;;-1:-1:-1;46001:966:0;;;;;:::i;:::-;;:::i;27863:239::-;;;;;;;;;;-1:-1:-1;27863:239:0;;;;;:::i;:::-;;:::i;42666:36::-;;;;;;;;;;;;;;;;51596:118;;;;;;;;;;-1:-1:-1;51596:118:0;;;;;:::i;:::-;;:::i;42783:59::-;;;;;;;;;;-1:-1:-1;42783:59:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;:::i;42516:26::-;;;;;;;;;;;;;:::i;27593:208::-;;;;;;;;;;-1:-1:-1;27593:208:0;;;;;:::i;:::-;;:::i;7807:103::-;;;;;;;;;;;;;:::i;42624:35::-;;;;;;;;;;;;;;;;7156:87;;;;;;;;;;-1:-1:-1;7229:6:0;;-1:-1:-1;;;;;7229:6:0;7156:87;;51722:92;;;;;;;;;;-1:-1:-1;51722:92:0;;;;;:::i;:::-;;:::i;28338:104::-;;;;;;;;;;;;;:::i;42709:32::-;;;;;;;;;;-1:-1:-1;42709:32:0;;;;;;;;;;;22648:10:1;22636:23;;;22618:42;;22606:2;22591:18;42709:32:0;22573:93:1;51822:463:0;;;;;;;;;;-1:-1:-1;51822:463:0;;;;;:::i;:::-;;:::i;42584:33::-;;;;;;;;;;;;;;;;43975:92;;;;;;;;;;-1:-1:-1;43975:92:0;;;;;:::i;:::-;;:::i;30022:155::-;;;;;;;;;;-1:-1:-1;30022:155:0;;;;;:::i;:::-;;:::i;47032:1079::-;;;;;;;;;;-1:-1:-1;47032:1079:0;;;;;:::i;:::-;;:::i;52293:139::-;;;;;;;;;;-1:-1:-1;52293:139:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50735:853::-;;;;;;;;;;-1:-1:-1;50735:853:0;;;;;:::i;:::-;;:::i;31145:328::-;;;;;;;;;;-1:-1:-1;31145:328:0;;;;;:::i;:::-;;:::i;48797:1930::-;;;;;;:::i;:::-;;:::i;44075:213::-;;;;;;;;;;-1:-1:-1;44075:213:0;;;;;:::i;:::-;;:::i;44392:1601::-;;;;;;:::i;:::-;;:::i;30248:164::-;;;;;;;;;;-1:-1:-1;30248:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30369:25:0;;;30345:4;30369:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30248:164;8065:201;;;;;;;;;;-1:-1:-1;8065:201:0;;;;;:::i;:::-;;:::i;42549:28::-;;;;;;;;;;;;;;;;27224:305;27326:4;-1:-1:-1;;;;;;27363:40:0;;-1:-1:-1;;;27363:40:0;;:105;;-1:-1:-1;;;;;;;27420:48:0;;-1:-1:-1;;;27420:48:0;27363:105;:158;;;-1:-1:-1;;;;;;;;;;20072:40:0;;;27485:36;27343:178;27224:305;-1:-1:-1;;27224:305:0:o;28169:100::-;28223:13;28256:5;28249:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28169:100;:::o;29729:221::-;29805:7;29833:16;29841:7;29833;:16::i;:::-;29825:73;;;;-1:-1:-1;;;29825:73:0;;15501:2:1;29825:73:0;;;15483:21:1;15540:2;15520:18;;;15513:30;15579:34;15559:18;;;15552:62;-1:-1:-1;;;15630:18:1;;;15623:42;15682:19;;29825:73:0;;;;;;;;;-1:-1:-1;29918:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29918:24:0;;29729:221::o;29252:411::-;29333:13;29349:23;29364:7;29349:14;:23::i;:::-;29333:39;;29397:5;-1:-1:-1;;;;;29391:11:0;:2;-1:-1:-1;;;;;29391:11:0;;;29383:57;;;;-1:-1:-1;;;29383:57:0;;17396:2:1;29383:57:0;;;17378:21:1;17435:2;17415:18;;;17408:30;17474:34;17454:18;;;17447:62;-1:-1:-1;;;17525:18:1;;;17518:31;17566:19;;29383:57:0;17368:223:1;29383:57:0;5960:10;-1:-1:-1;;;;;29475:21:0;;;;:62;;-1:-1:-1;29500:37:0;29517:5;5960:10;30248:164;:::i;29500:37::-;29453:168;;;;-1:-1:-1;;;29453:168:0;;13061:2:1;29453:168:0;;;13043:21:1;13100:2;13080:18;;;13073:30;13139:34;13119:18;;;13112:62;13210:26;13190:18;;;13183:54;13254:19;;29453:168:0;13033:246:1;29453:168:0;29634:21;29643:2;29647:7;29634:8;:21::i;:::-;29252:411;;;:::o;30479:339::-;30674:41;5960:10;30707:7;30674:18;:41::i;:::-;30666:103;;;;-1:-1:-1;;;30666:103:0;;;;;;;:::i;:::-;30782:28;30792:4;30798:2;30802:7;30782:9;:28::i;30889:185::-;31027:39;31044:4;31050:2;31054:7;31027:39;;;;;;;;;;;;:16;:39::i;46001:966::-;46157:10;46149:63;;;;-1:-1:-1;;;46149:63:0;;;;;;;:::i;:::-;46275:17;46283:8;46275:7;:17::i;:::-;46267:45;;;;-1:-1:-1;;;46267:45:0;;;;;;;:::i;:::-;46386:25;;;;:15;:25;;;;;:36;;;;;;;;46385:37;46377:77;;;;-1:-1:-1;;;46377:77:0;;7423:2:1;46377:77:0;;;7405:21:1;7462:2;7442:18;;;7435:30;7501:29;7481:18;;;7474:57;7548:18;;46377:77:0;7395:177:1;46377:77:0;46499:18;46520:17;46528:8;46520:7;:17::i;:::-;46499:38;-1:-1:-1;;;;;;46639:24:0;;46653:10;46639:24;46631:50;;;;-1:-1:-1;;;46631:50:0;;7081:2:1;46631:50:0;;;7063:21:1;7120:2;7100:18;;;7093:30;-1:-1:-1;;;7139:18:1;;;7132:43;7192:18;;46631:50:0;7053:163:1;46631:50:0;46702:36;46741:15;:25;46757:8;46741:25;;;;;;;;;;;46702:64;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46702:64:0;;;-1:-1:-1;;46702:64:0;;;;-1:-1:-1;;;;;46702:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46825:18;;;:30;;;-1:-1:-1;46919:25:0;;;:15;:25;;;:40;;;;;;;;;;46825:18;;-1:-1:-1;46825:18:0;;46919:25;;:40;;46702:64;46919:40;;;;;;;;:::i;:::-;-1:-1:-1;46919:40:0;;;;;;;;;-1:-1:-1;;;;;46919:40:0;;;-1:-1:-1;;;;;;46919:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46919:40:0;;;;;;-1:-1:-1;;46919:40:0;;;;;;;-1:-1:-1;;46919:40:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;46001:966:0:o;27863:239::-;27935:7;27971:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27971:16:0;28006:19;27998:73;;;;-1:-1:-1;;;27998:73:0;;13897:2:1;27998:73:0;;;13879:21:1;13936:2;13916:18;;;13909:30;13975:34;13955:18;;;13948:62;-1:-1:-1;;;14026:18:1;;;14019:39;14075:19;;27998:73:0;13869:231:1;51596:118:0;7229:6;;-1:-1:-1;;;;;7229:6:0;5960:10;7376:23;7368:68;;;;-1:-1:-1;;;7368:68:0;;;;;;;:::i;:::-;51662:44:::1;::::0;-1:-1:-1;;;;;51662:21:0;::::1;::::0;51684::::1;51662:44:::0;::::1;;;::::0;::::1;::::0;;;51684:21;51662;:44;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51596:118:::0;:::o;42783:59::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;42783:59:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42783:59:0;;;;;;;;-1:-1:-1;42783:59:0;;;-1:-1:-1;42783:59:0;;;;;;;;;;;;;;;;;;;:::o;42516:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27593:208::-;27665:7;-1:-1:-1;;;;;27693:19:0;;27685:74;;;;-1:-1:-1;;;27685:74:0;;13486:2:1;27685:74:0;;;13468:21:1;13525:2;13505:18;;;13498:30;13564:34;13544:18;;;13537:62;-1:-1:-1;;;13615:18:1;;;13608:40;13665:19;;27685:74:0;13458:232:1;27685:74:0;-1:-1:-1;;;;;;27777:16:0;;;;;:9;:16;;;;;;;27593:208::o;7807:103::-;7229:6;;-1:-1:-1;;;;;7229:6:0;5960:10;7376:23;7368:68;;;;-1:-1:-1;;;7368:68:0;;;;;;;:::i;:::-;7872:30:::1;7899:1;7872:18;:30::i;:::-;7807:103::o:0;51722:92::-;7229:6;;-1:-1:-1;;;;;7229:6:0;5960:10;7376:23;7368:68;;;;-1:-1:-1;;;7368:68:0;;;;;;;:::i;:::-;51788:11:::1;:18:::0;;-1:-1:-1;;;;;51788:18:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;51788:18:0;;::::1;::::0;;;::::1;::::0;;51722:92::o;28338:104::-;28394:13;28427:7;28420:14;;;;;:::i;51822:463::-;51897:10;51889:63;;;;-1:-1:-1;;;51889:63:0;;;;;;;:::i;:::-;51985:11;;;;;-1:-1:-1;;;;;51985:11:0;51971:10;:25;51963:60;;;;-1:-1:-1;;;51963:60:0;;17798:2:1;51963:60:0;;;17780:21:1;17837:2;17817:18;;;17810:30;-1:-1:-1;;;17856:18:1;;;17849:52;17918:18;;51963:60:0;17770:172:1;51963:60:0;52034:36;52073:15;:25;52089:8;52073:25;;;;;;;;;;;52034:64;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52034:64:0;;;-1:-1:-1;;52034:64:0;;;;-1:-1:-1;;;;;52034:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52117:24;;;;52034:64;;-1:-1:-1;52117:28:0;52109:77;;;;-1:-1:-1;;;52109:77:0;;8605:2:1;52109:77:0;;;8587:21:1;8644:2;8624:18;;;8617:30;8683:34;8663:18;;;8656:62;-1:-1:-1;;;8734:18:1;;;8727:34;8778:19;;52109:77:0;8577:226:1;52109:77:0;52225:1;52197:12;:24;;:29;;;;;;;:::i;:::-;;;;;-1:-1:-1;52237:25:0;;;;:15;:25;;;;;;;;:40;;;;;;;;;;52265:12;;52237:40;;;;;;;;;;:::i;:::-;-1:-1:-1;52237:40:0;;;;;;;;;-1:-1:-1;;;;;52237:40:0;;;-1:-1:-1;;;;;;52237:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52237:40:0;;;;;;-1:-1:-1;;52237:40:0;;;;;;;-1:-1:-1;;52237:40:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51822:463:0:o;43975:92::-;7229:6;;-1:-1:-1;;;;;7229:6:0;5960:10;7376:23;7368:68;;;;-1:-1:-1;;;7368:68:0;;;;;;;:::i;:::-;44045:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;30022:155::-:0;30117:52;5960:10;30150:8;30160;30117:18;:52::i;47032:1079::-;47166:10;47158:63;;;;-1:-1:-1;;;47158:63:0;;;;;;;:::i;:::-;47284:17;47292:8;47284:7;:17::i;:::-;47276:45;;;;-1:-1:-1;;;47276:45:0;;;;;;;:::i;:::-;47395:25;;;;:15;:25;;;;;:36;;;;;;;;47394:37;47386:77;;;;-1:-1:-1;;;47386:77:0;;7423:2:1;47386:77:0;;;7405:21:1;7462:2;7442:18;;;7435:30;7501:29;7481:18;;;7474:57;7548:18;;47386:77:0;7395:177:1;47386:77:0;47508:18;47529:17;47537:8;47529:7;:17::i;:::-;47508:38;-1:-1:-1;;;;;;47648:24:0;;47662:10;47648:24;47640:50;;;;-1:-1:-1;;;47640:50:0;;7081:2:1;47640:50:0;;;7063:21:1;7120:2;7100:18;;;7093:30;-1:-1:-1;;;7139:18:1;;;7132:43;7192:18;;47640:50:0;7053:163:1;47640:50:0;47711:36;47750:15;:25;47766:8;47750:25;;;;;;;;;;;47711:64;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47711:64:0;;;-1:-1:-1;;47711:64:0;;;;-1:-1:-1;;;;;47711:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47857:22;;;;;-1:-1:-1;47854:146:0;;;47921:5;47896:22;;;:30;47854:146;;;47984:4;47959:22;;;:29;47854:146;48063:25;;;;:15;:25;;;;;;;;:40;;;;;;;;;;48091:12;;48063:40;;;;;;;;;;:::i;:::-;-1:-1:-1;48063:40:0;;;;;;;;;-1:-1:-1;;;;;48063:40:0;;;-1:-1:-1;;;;;;48063:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48063:40:0;;;;;;-1:-1:-1;;48063:40:0;;;;;;;-1:-1:-1;;48063:40:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47032:1079:0:o;52293:139::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52399:15:0;:25;52415:8;52399:25;;;;;;;;;;;52392:32;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52392:32:0;;;-1:-1:-1;;52392:32:0;;;;-1:-1:-1;;;;;52392:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52293:139:0:o;50735:853::-;2130:1;2728:7;;:19;;2720:63;;;;-1:-1:-1;;;2720:63:0;;19268:2:1;2720:63:0;;;19250:21:1;19307:2;19287:18;;;19280:30;19346:33;19326:18;;;19319:61;19397:18;;2720:63:0;19240:181:1;2720:63:0;2130:1;2861:7;:18;50900:22:::1;::::0;-1:-1:-1;;;;;50900:22:0::1;50886:10;:36;50878:76;;;::::0;-1:-1:-1;;;50878:76:0;;10130:2:1;50878:76:0::1;::::0;::::1;10112:21:1::0;10169:2;10149:18;;;10142:30;10208:29;10188:18;;;10181:57;10255:18;;50878:76:0::1;10102:177:1::0;50878:76:0::1;51027:25;::::0;;;:15:::1;:25;::::0;;;;:36:::1;;::::0;::::1;::::0;::::1;;;51019:73;;;::::0;-1:-1:-1;;;51019:73:0;;12364:2:1;51019:73:0::1;::::0;::::1;12346:21:1::0;12403:2;12383:18;;;12376:30;12442:26;12422:18;;;12415:54;12486:18;;51019:73:0::1;12336:174:1::0;51019:73:0::1;-1:-1:-1::0;;;;;51167:17:0;::::1;51159:58;;;::::0;-1:-1:-1;;;51159:58:0;;18149:2:1;51159:58:0::1;::::0;::::1;18131:21:1::0;18188:2;18168:18;;;18161:30;18227;18207:18;;;18200:58;18275:18;;51159:58:0::1;18121:178:1::0;51159:58:0::1;51262:18;51283:17;51291:8;51283:7;:17::i;:::-;51262:38;;51311:36;51321:10;51333:3;51338:8;51311:9;:36::i;:::-;51358;51397:15;:25;51413:8;51397:25;;;;;;;;;;;51358:64;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;51358:64:0;;;-1:-1:-1;;51358:64:0::1;::::0;::::1;::::0;-1:-1:-1;;;;;51358:64:0;;::::1;;::::0;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;;;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;;;;;;;::::1;::::0;::::1;::::0;;;;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;;;::::0;;;;::::1;::::0;::::1;;;;::::0;;;;;;::::1;;;::::0;;;;;;;;51462:25;;::::1;::::0;;51433:54;::::1;:26:::0;;::::1;:54:::0;;;;51498:31;;::::1;::::0;;;-1:-1:-1;51540:25:0;;;:15:::1;:25:::0;;;:40;;;;;;::::1;::::0;;;51462:25;;-1:-1:-1;51462:25:0;;51540;;:40:::1;::::0;51358:64;51540:40;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;51540:40:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;51540:40:0;;::::1;-1:-1:-1::0;;;;;;51540:40:0;;::::1;;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;::::1;-1:-1:-1::0;;51540:40:0;::::1;;::::0;;::::1;-1:-1:-1::0;;51540:40:0;::::1;;::::0;;;;-1:-1:-1;;51540:40:0;;;;;;;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;51540:40:0;3040:7;:22;-1:-1:-1;;50735:853:0:o;31145:328::-;31320:41;5960:10;31353:7;31320:18;:41::i;:::-;31312:103;;;;-1:-1:-1;;;31312:103:0;;;;;;;:::i;:::-;31426:39;31440:4;31446:2;31450:7;31459:5;31426:13;:39::i;:::-;31145:328;;;;:::o;48797:1930::-;2130:1;2728:7;;:19;;2720:63;;;;-1:-1:-1;;;2720:63:0;;19268:2:1;2720:63:0;;;19250:21:1;19307:2;19287:18;;;19280:30;19346:33;19326:18;;;19319:61;19397:18;;2720:63:0;19240:181:1;2720:63:0;2130:1;2861:7;:18;48957:10:::1;48949:63;;;;-1:-1:-1::0;;;48949:63:0::1;;;;;;;:::i;:::-;49105:17;49113:8;49105:7;:17::i;:::-;49097:45;;;;-1:-1:-1::0;;;49097:45:0::1;;;;;;;:::i;:::-;49187:18;49208:17;49216:8;49208:7;:17::i;:::-;49187:38:::0;-1:-1:-1;;;;;;49308:24:0;::::1;49300:65;;;::::0;-1:-1:-1;;;49300:65:0;;18149:2:1;49300:65:0::1;::::0;::::1;18131:21:1::0;18188:2;18168:18;;;18161:30;18227;18207:18;;;18200:58;18275:18;;49300:65:0::1;18121:178:1::0;49300:65:0::1;49439:25;::::0;;;:15:::1;:25;::::0;;;;:36:::1;;::::0;::::1;::::0;::::1;;;49438:37;49430:78;;;::::0;-1:-1:-1;;;49430:78:0;;9773:2:1;49430:78:0::1;::::0;::::1;9755:21:1::0;9812:2;9792:18;;;9785:30;9851;9831:18;;;9824:58;9899:18;;49430:78:0::1;9745:178:1::0;49430:78:0::1;-1:-1:-1::0;;;;;49606:24:0;::::1;49620:10;49606:24;;49598:55;;;::::0;-1:-1:-1;;;49598:55:0;;10486:2:1;49598:55:0::1;::::0;::::1;10468:21:1::0;10525:2;10505:18;;;10498:30;-1:-1:-1;;;10544:18:1;;;10537:48;10602:18;;49598:55:0::1;10458:168:1::0;49598:55:0::1;49666:36;49705:15;:25;49721:8;49705:25;;;;;;;;;;;49666:64;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;49666:64:0;;;-1:-1:-1;;49666:64:0::1;::::0;::::1;::::0;-1:-1:-1;;;;;49666:64:0;;::::1;;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;;;::::0;;;;;;;;::::1;::::0;::::1;::::0;;::::1;;;::::0;;;;;;;::::1;;;::::0;;;;;;;;49845:18;::::1;::::0;;;-1:-1:-1;49832:9:0::1;:31;49824:65;;;::::0;-1:-1:-1;;;49824:65:0;;19982:2:1;49824:65:0::1;::::0;::::1;19964:21:1::0;20021:2;20001:18;;;19994:30;-1:-1:-1;;;20040:18:1;;;20033:51;20101:18;;49824:65:0::1;19954:171:1::0;49824:65:0::1;49945:12;:22;;;49937:56;;;::::0;-1:-1:-1;;;49937:56:0;;15914:2:1;49937:56:0::1;::::0;::::1;15896:21:1::0;15953:2;15933:18;;;15926:30;-1:-1:-1;;;15972:18:1;;;15965:51;16033:18;;49937:56:0::1;15886:171:1::0;49937:56:0::1;50076:22;::::0;-1:-1:-1;;;;;50076:22:0::1;50062:10;:36;;50054:79;;;::::0;-1:-1:-1;;;50054:79:0;;10833:2:1;50054:79:0::1;::::0;::::1;10815:21:1::0;10872:2;10852:18;;;10845:30;10911:32;10891:18;;;10884:60;10961:18;;50054:79:0::1;10805:180:1::0;50054:79:0::1;50162:12;:25;;;-1:-1:-1::0;;;;;50154:43:0::1;:72;50223:2;50198:12;:18;;;50219:1;50198:22;;;;:::i;:::-;:27;;;;:::i;:::-;50154:72;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50237:35;50269:2;50248:12;:18;;;:23;;;;:::i;:::-;50237:10;:35::i;:::-;50365:43;50375:10;50387;50399:8;50365:9;:43::i;:::-;50496:25;::::0;::::1;::::0;;-1:-1:-1;;;;;50467:54:0::1;:26;::::0;::::1;:54:::0;50605:10:::1;50577:38:::0;;-1:-1:-1;50679:25:0;;;:15:::1;-1:-1:-1::0;50679:25:0;;;;;;;:40;;;;;;::::1;::::0;;;50496:12;;50679:40:::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;50679:40:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;50679:40:0;;::::1;-1:-1:-1::0;;;;;;50679:40:0;;::::1;;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;::::1;-1:-1:-1::0;;50679:40:0;::::1;;::::0;;::::1;-1:-1:-1::0;;50679:40:0;::::1;;::::0;;;;-1:-1:-1;;50679:40:0;;;;;;;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;50679:40:0;3040:7;:22;-1:-1:-1;48797:1930:0:o;44075:213::-;44219:13;44257:23;44272:7;44257:14;:23::i;44392:1601::-;44475:22;;-1:-1:-1;;;;;44475:22:0;44461:10;:36;44457:1519;;;44539:1;44522:14;;:18;44514:46;;;;-1:-1:-1;;;44514:46:0;;12717:2:1;44514:46:0;;;12699:21:1;12756:2;12736:18;;;12729:30;-1:-1:-1;;;12775:18:1;;;12768:45;12830:18;;44514:46:0;12689:165:1;44514:46:0;44575:32;44585:10;44597:9;;44575;:32::i;:::-;44622:34;44635:9;;44646;44622:12;:34::i;:::-;44689:1;44671:14;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;44749:261:0;;;;;;;;44784:9;;44749:261;;;;;;;;;;44840:10;44749:261;;;;;;;;;;44707:39;44749:261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45025:26;;;:15;:26;;;;;;:44;;;;;;;;44749:261;;;;45025:26;;:44;;;;;;;;;:::i;:::-;-1:-1:-1;45025:44:0;;;;;;;;;-1:-1:-1;;;;;45025:44:0;;;-1:-1:-1;;;;;;45025:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45025:44:0;;;;;;-1:-1:-1;;45025:44:0;;;;;;;-1:-1:-1;;45025:44:0;;;;;;;;;;;;;;;;;;;;;45084:9;:14;;45025:44;;45084:9;45025:44;;45084:14;;45025:44;;45084:14;:::i;:::-;;;;-1:-1:-1;44457:1519:0;;-1:-1:-1;;44457:1519:0;;45153:1;45139:11;;:15;45131:43;;;;-1:-1:-1;;;45131:43:0;;12717:2:1;45131:43:0;;;12699:21:1;12756:2;12736:18;;;12729:30;-1:-1:-1;;;12775:18:1;;;12768:45;12830:18;;45131:43:0;12689:165:1;45131:43:0;45223:17;;45209:10;45197:23;;;;:11;:23;;;;;;:43;45189:81;;;;-1:-1:-1;;;45189:81:0;;19628:2:1;45189:81:0;;;19610:21:1;19667:2;19647:18;;;19640:30;19706:27;19686:18;;;19679:55;19751:18;;45189:81:0;19600:175:1;45189:81:0;45306:9;;45293;:22;45285:56;;;;-1:-1:-1;;;45285:56:0;;19982:2:1;45285:56:0;;;19964:21:1;20021:2;20001:18;;;19994:30;-1:-1:-1;;;20040:18:1;;;20033:51;20101:18;;45285:56:0;19954:171:1;45285:56:0;45356:32;45366:10;45378:9;;45356;:32::i;:::-;45403:34;45416:9;;45427;45403:12;:34::i;:::-;45464:10;45452:23;;;;:11;:23;;;;;:28;;45479:1;;45452:23;:28;;45479:1;;45452:28;:::i;:::-;;;;;;;;45510:1;45495:11;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;;45570:270:0;;;;;;;;45605:9;;45570:270;;;;;;;;;;45661:10;45570:270;;;;;;;;;;45528:39;45570:270;;;;;;45748:9;;45570:270;;;;;;;;;;;;;;;;;;;;;;;45855:26;;;:15;:26;;;;;;:44;;;;;;;;45570:270;;;;45855:26;;:44;;;;;;;;;:::i;:::-;-1:-1:-1;45855:44:0;;;;;;;;;-1:-1:-1;;;;;45855:44:0;;;-1:-1:-1;;;;;;45855:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45855:44:0;;;;;;-1:-1:-1;;45855:44:0;;;;;;;-1:-1:-1;;45855:44:0;;;;;;;;;;;;;;;;;;;;;45914:9;:14;;45855:44;;45914:9;45855:44;;45914:14;;45855:44;;45914:14;:::i;:::-;;;;-1:-1:-1;;45954:9:0;;45943:21;;:10;:21::i;44457:1519::-;44392:1601;:::o;8065:201::-;7229:6;;-1:-1:-1;;;;;7229:6:0;5960:10;7376:23;7368:68;;;;-1:-1:-1;;;7368:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8154:22:0;::::1;8146:73;;;::::0;-1:-1:-1;;;8146:73:0;;8198:2:1;8146:73:0::1;::::0;::::1;8180:21:1::0;8237:2;8217:18;;;8210:30;8276:34;8256:18;;;8249:62;-1:-1:-1;;;8327:18:1;;;8320:36;8373:19;;8146:73:0::1;8170:228:1::0;8146:73:0::1;8230:28;8249:8;8230:18;:28::i;32983:127::-:0;33048:4;33072:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33072:16:0;:30;;;32983:127::o;37129:174::-;37204:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37204:29:0;-1:-1:-1;;;;;37204:29:0;;;;;;;;:24;;37258:23;37204:24;37258:14;:23::i;:::-;-1:-1:-1;;;;;37249:46:0;;;;;;;;;;;37129:174;;:::o;33277:348::-;33370:4;33395:16;33403:7;33395;:16::i;:::-;33387:73;;;;-1:-1:-1;;;33387:73:0;;11951:2:1;33387:73:0;;;11933:21:1;11990:2;11970:18;;;11963:30;12029:34;12009:18;;;12002:62;-1:-1:-1;;;12080:18:1;;;12073:42;12132:19;;33387:73:0;11923:234:1;33387:73:0;33471:13;33487:23;33502:7;33487:14;:23::i;:::-;33471:39;;33540:5;-1:-1:-1;;;;;33529:16:0;:7;-1:-1:-1;;;;;33529:16:0;;:52;;;-1:-1:-1;;;;;;30369:25:0;;;30345:4;30369:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33549:32;33529:87;;;;33609:7;-1:-1:-1;;;;;33585:31:0;:20;33597:7;33585:11;:20::i;:::-;-1:-1:-1;;;;;33585:31:0;;33529:87;33521:96;33277:348;-1:-1:-1;;;;33277:348:0:o;36386:625::-;36545:4;-1:-1:-1;;;;;36518:31:0;:23;36533:7;36518:14;:23::i;:::-;-1:-1:-1;;;;;36518:31:0;;36510:81;;;;-1:-1:-1;;;36510:81:0;;9010:2:1;36510:81:0;;;8992:21:1;9049:2;9029:18;;;9022:30;9088:34;9068:18;;;9061:62;-1:-1:-1;;;9139:18:1;;;9132:35;9184:19;;36510:81:0;8982:227:1;36510:81:0;-1:-1:-1;;;;;36610:16:0;;36602:65;;;;-1:-1:-1;;;36602:65:0;;11192:2:1;36602:65:0;;;11174:21:1;11231:2;11211:18;;;11204:30;11270:34;11250:18;;;11243:62;-1:-1:-1;;;11321:18:1;;;11314:34;11365:19;;36602:65:0;11164:226:1;36602:65:0;36784:29;36801:1;36805:7;36784:8;:29::i;:::-;-1:-1:-1;;;;;36826:15:0;;;;;;:9;:15;;;;;:20;;36845:1;;36826:15;:20;;36845:1;;36826:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36857:13:0;;;;;;:9;:13;;;;;:18;;36874:1;;36857:13;:18;;36874:1;;36857:18;:::i;:::-;;;;-1:-1:-1;;36886:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36886:21:0;-1:-1:-1;;;;;36886:21:0;;;;;;;;;36925:27;;36886:16;;36925:27;;;;;;;29252:411;;;:::o;8426:191::-;8519:6;;;-1:-1:-1;;;;;8536:17:0;;;-1:-1:-1;;;;;;8536:17:0;;;;;;;8569:40;;8519:6;;;8536:17;8519:6;;8569:40;;8500:16;;8569:40;8426:191;;:::o;37445:315::-;37600:8;-1:-1:-1;;;;;37591:17:0;:5;-1:-1:-1;;;;;37591:17:0;;;37583:55;;;;-1:-1:-1;;;37583:55:0;;11597:2:1;37583:55:0;;;11579:21:1;11636:2;11616:18;;;11609:30;11675:27;11655:18;;;11648:55;11720:18;;37583:55:0;11569:175:1;37583:55:0;-1:-1:-1;;;;;37649:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37649:46:0;;;;;;;;;;37711:41;;6603::1;;;37711::0;;6576:18:1;37711:41:0;;;;;;;37445:315;;;:::o;32355:::-;32512:28;32522:4;32528:2;32532:7;32512:9;:28::i;:::-;32559:48;32582:4;32588:2;32592:7;32601:5;32559:22;:48::i;:::-;32551:111;;;;-1:-1:-1;;;32551:111:0;;;;;;;:::i;48119:661::-;48183:22;;48232:11;;-1:-1:-1;;;;;48183:22:0;;;;48175:69;;48232:11;;48216:13;:7;48226:3;48216:13;:::i;:::-;:27;;;;:::i;:::-;48175:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48263:9:0;;48298:11;;-1:-1:-1;;;;;48263:9:0;;;;48255:55;;48298:11;;48283:12;:7;48293:2;48283:12;:::i;:::-;:26;;;;:::i;:::-;48255:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48329:16:0;;48371:11;;-1:-1:-1;;;;;48329:16:0;;;;48321:62;;48371:11;;48356:12;:7;48366:2;48356:12;:::i;:::-;:26;;;;:::i;:::-;48321:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48402:22:0;;48450:11;;-1:-1:-1;;;;;48402:22:0;;;;48394:68;;48450:11;;48435:12;:7;48445:2;48435:12;:::i;:::-;:26;;;;:::i;:::-;48394:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48481:15:0;;48523:11;;-1:-1:-1;;;;;48481:15:0;;;;48473:62;;48523:11;;48507:13;:7;48517:3;48507:13;:::i;:::-;:27;;;;:::i;:::-;48473:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48554:15:0;;48596:11;;-1:-1:-1;;;;;48554:15:0;;;;48546:62;;48596:11;;48580:13;:7;48590:3;48580:13;:::i;:::-;:27;;;;:::i;:::-;48546:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48627:27:0;;48681:11;;-1:-1:-1;;;;;48627:27:0;;;;48619:74;;48681:11;;48665:13;:7;48675:3;48665:13;:::i;:::-;:27;;;;:::i;:::-;48619:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48712:22:0;;48760:11;;-1:-1:-1;;;;;48712:22:0;;;;48704:68;;48760:11;;48745:12;:7;48755:2;48745:12;:::i;:::-;:26;;;;:::i;:::-;48704:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40850:679;40923:13;40957:16;40965:7;40957;:16::i;:::-;40949:78;;;;-1:-1:-1;;;40949:78:0;;15083:2:1;40949:78:0;;;15065:21:1;15122:2;15102:18;;;15095:30;15161:34;15141:18;;;15134:62;-1:-1:-1;;;15212:18:1;;;15205:47;15269:19;;40949:78:0;15055:239:1;40949:78:0;41040:23;41066:19;;;:10;:19;;;;;41040:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41096:18;41117:10;:8;:10::i;:::-;41096:31;;41209:4;41203:18;41225:1;41203:23;41199:72;;;-1:-1:-1;41250:9:0;40850:679;-1:-1:-1;;40850:679:0:o;41199:72::-;41375:23;;:27;41371:108;;41450:4;41456:9;41433:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41419:48;;;;40850:679;;;:::o;41371:108::-;41498:23;41513:7;41498:14;:23::i;33967:110::-;34043:26;34053:2;34057:7;34043:26;;;;;;;;;;;;:9;:26::i;41685:217::-;41785:16;41793:7;41785;:16::i;:::-;41777:75;;;;-1:-1:-1;;;41777:75:0;;14307:2:1;41777:75:0;;;14289:21:1;14346:2;14326:18;;;14319:30;14385:34;14365:18;;;14358:62;-1:-1:-1;;;14436:18:1;;;14429:44;14490:19;;41777:75:0;14279:236:1;41777:75:0;41863:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;38325:799::-;38480:4;-1:-1:-1;;;;;38501:13:0;;10152:19;:23;38497:620;;38537:72;;-1:-1:-1;;;38537:72:0;;-1:-1:-1;;;;;38537:36:0;;;;;:72;;5960:10;;38588:4;;38594:7;;38603:5;;38537:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38537:72:0;;;;;;;;-1:-1:-1;;38537:72:0;;;;;;;;;;;;:::i;:::-;;;38533:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38779:13:0;;38775:272;;38822:60;;-1:-1:-1;;;38822:60:0;;;;;;;:::i;38775:272::-;38997:6;38991:13;38982:6;38978:2;38974:15;38967:38;38533:529;-1:-1:-1;;;;;;38660:51:0;-1:-1:-1;;;38660:51:0;;-1:-1:-1;38653:58:0;;38497:620;-1:-1:-1;39101:4:0;38325:799;;;;;;:::o;43744:100::-;43796:13;43829:7;43822:14;;;;;:::i;28513:334::-;28586:13;28620:16;28628:7;28620;:16::i;:::-;28612:76;;;;-1:-1:-1;;;28612:76:0;;16980:2:1;28612:76:0;;;16962:21:1;17019:2;16999:18;;;16992:30;17058:34;17038:18;;;17031:62;-1:-1:-1;;;17109:18:1;;;17102:45;17164:19;;28612:76:0;16952:237:1;28612:76:0;28701:21;28725:10;:8;:10::i;:::-;28701:34;;28777:1;28759:7;28753:21;:25;:86;;;;;;;;;;;;;;;;;28805:7;28814:18;:7;:16;:18::i;:::-;28788:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28753:86;28746:93;28513:334;-1:-1:-1;;;28513:334:0:o;34304:321::-;34434:18;34440:2;34444:7;34434:5;:18::i;:::-;34485:54;34516:1;34520:2;34524:7;34533:5;34485:22;:54::i;:::-;34463:154;;;;-1:-1:-1;;;34463:154:0;;;;;;;:::i;3442:723::-;3498:13;3719:10;3715:53;;-1:-1:-1;;3746:10:0;;;;;;;;;;;;-1:-1:-1;;;3746:10:0;;;;;3442:723::o;3715:53::-;3793:5;3778:12;3834:78;3841:9;;3834:78;;3867:8;;;;:::i;:::-;;-1:-1:-1;3890:10:0;;-1:-1:-1;3898:2:0;3890:10;;:::i;:::-;;;3834:78;;;3922:19;3954:6;3944:17;;;;;;-1:-1:-1;;;3944:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3944:17:0;;3922:39;;3972:154;3979:10;;3972:154;;4006:11;4016:1;4006:11;;:::i;:::-;;-1:-1:-1;4075:10:0;4083:2;4075:5;:10;:::i;:::-;4062:24;;:2;:24;:::i;:::-;4049:39;;4032:6;4039;4032:14;;;;;;-1:-1:-1;;;4032:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;4032:56:0;;;;;;;;-1:-1:-1;4103:11:0;4112:2;4103:11;;:::i;:::-;;;3972:154;;34961:439;-1:-1:-1;;;;;35041:16:0;;35033:61;;;;-1:-1:-1;;;35033:61:0;;14722:2:1;35033:61:0;;;14704:21:1;;;14741:18;;;14734:30;14800:34;14780:18;;;14773:62;14852:18;;35033:61:0;14694:182:1;35033:61:0;35114:16;35122:7;35114;:16::i;:::-;35113:17;35105:58;;;;-1:-1:-1;;;35105:58:0;;9416:2:1;35105:58:0;;;9398:21:1;9455:2;9435:18;;;9428:30;9494;9474:18;;;9467:58;9542:18;;35105:58:0;9388:178:1;35105:58:0;-1:-1:-1;;;;;35234:13:0;;;;;;:9;:13;;;;;:18;;35251:1;;35234:13;:18;;35251:1;;35234:18;:::i;:::-;;;;-1:-1:-1;;35263:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35263:21:0;-1:-1:-1;;;;;35263:21:0;;;;;;;;35302:33;;35263:16;;;35302:33;;35263:16;;35302:33;51662:44:::1;51596:118:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:264::-;4261:6;4269;4322:2;4310:9;4301:7;4297:23;4293:32;4290:2;;;4343:6;4335;4328:22;4290:2;4384:9;4371:23;4361:33;;4413:38;4447:2;4436:9;4432:18;4413:38;:::i;4462:258::-;4530:6;4538;4591:2;4579:9;4570:7;4566:23;4562:32;4559:2;;;4612:6;4604;4597:22;4559:2;-1:-1:-1;;4640:23:1;;;4710:2;4695:18;;;4682:32;;-1:-1:-1;4549:171:1:o;4930:257::-;4971:3;5009:5;5003:12;5036:6;5031:3;5024:19;5052:63;5108:6;5101:4;5096:3;5092:14;5085:4;5078:5;5074:16;5052:63;:::i;:::-;5169:2;5148:15;-1:-1:-1;;5144:29:1;5135:39;;;;5176:4;5131:50;;4979:208;-1:-1:-1;;4979:208:1:o;5287:470::-;5466:3;5504:6;5498:13;5520:53;5566:6;5561:3;5554:4;5546:6;5542:17;5520:53;:::i;:::-;5636:13;;5595:16;;;;5658:57;5636:13;5595:16;5692:4;5680:17;;5658:57;:::i;:::-;5731:20;;5474:283;-1:-1:-1;;;;5474:283:1:o;5970:488::-;-1:-1:-1;;;;;6239:15:1;;;6221:34;;6291:15;;6286:2;6271:18;;6264:43;6338:2;6323:18;;6316:34;;;6386:3;6381:2;6366:18;;6359:31;;;6164:4;;6407:45;;6432:19;;6424:6;6407:45;:::i;:::-;6399:53;6173:285;-1:-1:-1;;;;;;6173:285:1:o;6655:219::-;6804:2;6793:9;6786:21;6767:4;6824:44;6864:2;6853:9;6849:18;6841:6;6824:44;:::i;7577:414::-;7779:2;7761:21;;;7818:2;7798:18;;;7791:30;7857:34;7852:2;7837:18;;7830:62;-1:-1:-1;;;7923:2:1;7908:18;;7901:48;7981:3;7966:19;;7751:240::o;16062:356::-;16264:2;16246:21;;;16283:18;;;16276:30;16342:34;16337:2;16322:18;;16315:62;16409:2;16394:18;;16236:182::o;16423:350::-;16625:2;16607:21;;;16664:2;16644:18;;;16637:30;16703:28;16698:2;16683:18;;16676:56;16764:2;16749:18;;16597:176::o;18304:413::-;18506:2;18488:21;;;18545:2;18525:18;;;18518:30;18584:34;18579:2;18564:18;;18557:62;-1:-1:-1;;;18650:2:1;18635:18;;18628:47;18707:3;18692:19;;18478:239::o;18722:339::-;18924:2;18906:21;;;18963:2;18943:18;;;18936:30;-1:-1:-1;;;18997:2:1;18982:18;;18975:45;19052:2;19037:18;;18896:165::o;20130:1242::-;20323:2;20312:9;20305:21;20368:6;20362:13;20357:2;20346:9;20342:18;20335:41;20286:4;20423:2;20415:6;20411:15;20405:22;20446:6;20488:2;20483;20472:9;20468:18;20461:30;20514:51;20560:3;20549:9;20545:19;20531:12;20514:51;:::i;:::-;20500:65;;20614:2;20606:6;20602:15;20596:22;20627:54;20677:2;20666:9;20662:18;20646:14;-1:-1:-1;;;;;4791:31:1;4779:44;;4769:60;20627:54;-1:-1:-1;20730:2:1;20718:15;;20712:22;-1:-1:-1;;;;;4791:31:1;;20793:3;20778:19;;4779:44;-1:-1:-1;20847:3:1;20835:16;;20829:23;-1:-1:-1;;;;;4791:31:1;;20911:3;20896:19;;4779:44;20861:55;20971:3;20963:6;20959:16;20953:23;20947:3;20936:9;20932:19;20925:52;21026:3;21018:6;21014:16;21008:23;21040:52;21087:3;21076:9;21072:19;21056:14;4904:13;4897:21;4885:34;;4875:50;21040:52;;21141:3;21133:6;21129:16;21123:23;21165:3;21177:51;21224:2;21213:9;21209:18;21193:14;4904:13;4897:21;4885:34;;4875:50;21177:51;21265:15;;;21259:22;5268:6;5257:18;21324;;5245:31;;;;-1:-1:-1;21360:6:1;;-1:-1:-1;20295:1077:1:o;21559:910::-;21881:4;21910:3;21940:6;21929:9;21922:25;21983:2;21978;21967:9;21963:18;21956:30;22003:44;22043:2;22032:9;22028:18;22020:6;22003:44;:::i;:::-;-1:-1:-1;;;;;22121:15:1;;;22116:2;22101:18;;22094:43;22173:15;;;22168:2;22153:18;;22146:43;-1:-1:-1;;22226:15:1;;;;22220:3;22205:19;;22198:44;22074:3;22258:19;;22251:35;;;;22330:14;22323:22;22317:3;22302:19;;22295:51;22390:14;22383:22;22377:3;22362:19;;22355:51;22455:6;22443:19;;;22437:3;22422:19;;;22415:48;;;;22173:15;21995:52;-1:-1:-1;;21890:579:1:o;22671:128::-;22711:3;22742:1;22738:6;22735:1;22732:13;22729:2;;;22748:18;;:::i;:::-;-1:-1:-1;22784:9:1;;22719:80::o;22804:120::-;22844:1;22870;22860:2;;22875:18;;:::i;:::-;-1:-1:-1;22909:9:1;;22850:74::o;22929:168::-;22969:7;23035:1;23031;23027:6;23023:14;23020:1;23017:21;23012:1;23005:9;22998:17;22994:45;22991:2;;;23042:18;;:::i;:::-;-1:-1:-1;23082:9:1;;22981:116::o;23102:217::-;23141:4;23170:6;23226:10;;;;23196;;23248:12;;;23245:2;;;23263:18;;:::i;:::-;23300:13;;23150:169;-1:-1:-1;;;23150:169:1:o;23324:125::-;23364:4;23392:1;23389;23386:8;23383:2;;;23397:18;;:::i;:::-;-1:-1:-1;23434:9:1;;23373:76::o;23454:258::-;23526:1;23536:113;23550:6;23547:1;23544:13;23536:113;;;23626:11;;;23620:18;23607:11;;;23600:39;23572:2;23565:10;23536:113;;;23667:6;23664:1;23661:13;23658:2;;;-1:-1:-1;;23702:1:1;23684:16;;23677:27;23507:205::o;23717:380::-;23796:1;23792:12;;;;23839;;;23860:2;;23914:4;23906:6;23902:17;23892:27;;23860:2;23967;23959:6;23956:14;23936:18;23933:38;23930:2;;;24013:10;24008:3;24004:20;24001:1;23994:31;24048:4;24045:1;24038:15;24076:4;24073:1;24066:15;23930:2;;23772:325;;;:::o;24102:135::-;24141:3;-1:-1:-1;;24162:17:1;;24159:2;;;24182:18;;:::i;:::-;-1:-1:-1;24229:1:1;24218:13;;24149:88::o;24242:112::-;24274:1;24300;24290:2;;24305:18;;:::i;:::-;-1:-1:-1;24339:9:1;;24280:74::o;24359:127::-;24420:10;24415:3;24411:20;24408:1;24401:31;24451:4;24448:1;24441:15;24475:4;24472:1;24465:15;24491:127;24552:10;24547:3;24543:20;24540:1;24533:31;24583:4;24580:1;24573:15;24607:4;24604:1;24597:15;24623:127;24684:10;24679:3;24675:20;24672:1;24665:31;24715:4;24712:1;24705:15;24739:4;24736:1;24729:15;24755:131;-1:-1:-1;;;;;;24829:32:1;;24819:43;;24809:2;;24876:1;24873;24866:12
Swarm Source
ipfs://a3a3fe7982991dc473b63885b055c5323cac942c889eb03436c952ddb084d669
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.