ERC-721
Overview
Max Total Supply
165 MBC
Holders
83
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MBCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
MarsBoarClub
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-28 */ /** :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :::::::::::::::::::::::::::0@:@@@@0:::@::::::::::::::::::::::::: ::::::::::::::::::::@0@:::@@@@@0@0@@@@@0:@@::::::::::::::::::::: :::::::::::::::::::@11L@@@@@@@:@@@@@@@@@@@:@:::::::::::::::::::: ::::::::::::::::::@@111@@@@@@@@@@@@@@@@:@@@@:::::@@@0::::::::::: ::::::::::::::::::@11110@@@@@@@@@@@@@@@@@@@@@:0@0111@@:::::::::: :::::::::::::::::0111111111@@11@@@@@@@@@@@@@@@11111L@@:::::::::: :::::::::::::::::@1111111L111111111111@111@1111111LL@0:::::::::: :::::::::::::::::@111111111111111111@@111111111111L0@::::::::::: :::::::::::::::::@111@11111111111111@@11111111111L@@:::::::::::: :::::::::::::::::@11111@11@1@11@1111@@1111111@@1LL@@:::::::::::: ::::::::::::::::@@11111111111@11@@111@@@011111111L@@:::::::::::: :::::::::::@@@@@@@@@@@1@@@111111110@@1111111111111@@:::::::::::: :::::::::@0;i i;ii;;i;;@@@@1111111@@@1111111111111L@@::::::::::: ::::::::@;i ;;@@;;;;;;;;;;@LL@@1111111111111111111L@@::::::::::: :::::::@@ii;@11@;;;;@10;;;;@@1111011111111111CCLCCL@@::::::::::: :::::::@@;;@110;;;;;@11;;;;;@@111111@0@11CCCCCCCCC1L@::::::::::: :::::::@@;;11@;;;;;;@11;;;;;;@1111@@;;iCCCCCC888111L@LL@@::::::: :::::::@@;;@;;;;;;;;;@1;;;;;;@11100;GGCCCC888111111L@L@LL@:::::: ::::::::@@@;;;;;;;;;;;;;;;;;;@L1@@CCC888088@@@1110@@LLLtt@@::::: :::::::::::@@LL@@@@;;;;;;;;;;@@@CCCCC88@@1@@110@LLttttttt@@::::: :::::::::::@@LttLLLL@@@@@@@@@@@CCC88;0@@@@11@tttttttttttt@@::::: :::::::::::@@LtttttLL@111111111111LL111111@tttttttttttttL@@::::: :::::::::::::@Lttttttt@1111111111111111@@tttttttttttLLL@@@:::::: ::::::::::::::0@ttttttL@11111111111111@tttttttttLLL0@@@::::::::: :::::::::::::::8@@ttttt@1111111111111@tttttttLL0@@8888@::::::::: ::::::::::::::@G88@@Ltt@@:11111111 :@tttttL@@@@88GGGGG@::::::::: ::::::::::::::@GGGG8@@@t@L; 111:;;LLttL@@@88GGGGGGGGGG@::::::::: :::::::::::::@@GGGGG888@@11LLLL111@@@@088GGGGGGGGGGGGG@::::::::: :::::::::::::@GGGGGGGG88@111111111@@88GGGGGGGGGGGGGGGG0::::::::: :::::::::::::@GGGGGGGGG8@111111111@@88GGGGGGGGGGGGGGGGG@:::::::: */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/GossamerGods.sol pragma solidity ^0.8.0; contract MarsBoarClub is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = "ipfs://QmZxfonrW8neisH1zpJLXKS9CmcM5qRA4QBvzEZJzXUn1W/"; uint256 public maxSupply = 5000; uint256 public MAX_MINTS_PER_TX = 5; uint256 public PUBLIC_SALE_PRICE = 0.003 ether; uint256 public FREE_MINT_NUMS = 1500; uint256 public MAX_FREE_PER_WALLET = 2; uint256 public freeNFTAlreadyMinted = 0; bool public isPublicSaleActive = true; constructor( ) ERC721A("Mars Boar Club", "MBC") { } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function devMint(uint quantity) public onlyOwner { require( quantity > 0, "Invalid mint amount" ); require( totalSupply() + quantity <= maxSupply, "Maximum supply exceeded" ); _safeMint(msg.sender, quantity); } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setFreeMintNums(uint256 _freemintNums) external onlyOwner { FREE_MINT_NUMS = _freemintNums; } function setSalePrice(uint256 _price) external onlyOwner { PUBLIC_SALE_PRICE = _price; } function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner { MAX_MINTS_PER_TX = _limit; } function setFreeLimitPerWallet(uint256 _limit) external onlyOwner { MAX_FREE_PER_WALLET = _limit; } function mint(uint256 numberOfTokens) external payable { require(isPublicSaleActive, "Public sale is not open"); require(totalSupply() + numberOfTokens < maxSupply + 1, "No more NFT Left"); if(freeNFTAlreadyMinted + numberOfTokens > FREE_MINT_NUMS){ require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); } else { if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) { require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); } else { require( numberOfTokens <= MAX_FREE_PER_WALLET, "Max mints per transaction exceeded" ); freeNFTAlreadyMinted += numberOfTokens; } } _safeMint(msg.sender, numberOfTokens); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_NUMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freemintNums","type":"uint256"}],"name":"setFreeMintNums","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280603681526020016200410d60369139600a90805190602001906200003592919062000240565b50611388600b556005600c55660aa87bee538000600d556105dc600e556002600f5560006010556001601160006101000a81548160ff0219169083151502179055503480156200008457600080fd5b506040518060400160405280600e81526020017f4d61727320426f617220436c75620000000000000000000000000000000000008152506040518060400160405280600381526020017f4d4243000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010992919062000240565b5080600390805190602001906200012292919062000240565b50620001336200016960201b60201c565b60008190555050506200015b6200014f6200017260201b60201c565b6200017a60201b60201c565b600160098190555062000355565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024e906200031f565b90600052602060002090601f016020900481019282620002725760008555620002be565b82601f106200028d57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002bd578251825591602001919060010190620002a0565b5b509050620002cd9190620002d1565b5090565b5b80821115620002ec576000816000905550600101620002d2565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033857607f821691505b602082108114156200034f576200034e620002f0565b5b50919050565b613da880620003656000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063a22cb465116100a0578063d4e1fbdb1161006f578063d4e1fbdb146106ea578063d547cfb714610713578063d5abeb011461073e578063e985e9c514610769578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b806395d89b41116100dc57806395d89b411461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b80636352211e146104d957806370a0823114610516578063715018a6146105535780638da5cb5b1461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041e578063375a069a146104475780633ccfd60b1461047057806342842e0e1461048757806355f804b3146104b0576101f9565b8063193ad7b4146103765780631e84c413146103a1578063202f298a146103cc57806323b872dd146103f5576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce578063178ed490146102f757806318160ddd146103225780631919fed71461034d576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c14565b6107cf565b6040516102329190612c5c565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d9190612d10565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190612d4b565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612d92565b610949565b6040516102c59190612e00565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e47565b6109c5565b005b34801561030357600080fd5b5061030c610ad0565b6040516103199190612d4b565b60405180910390f35b34801561032e57600080fd5b50610337610ad6565b6040516103449190612d4b565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f9190612d92565b610aed565b005b34801561038257600080fd5b5061038b610b73565b6040516103989190612d4b565b60405180910390f35b3480156103ad57600080fd5b506103b6610b79565b6040516103c39190612c5c565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612d92565b610b8c565b005b34801561040157600080fd5b5061041c60048036038101906104179190612e87565b610c12565b005b34801561042a57600080fd5b5061044560048036038101906104409190612f06565b610c22565b005b34801561045357600080fd5b5061046e60048036038101906104699190612d92565b610cbb565b005b34801561047c57600080fd5b50610485610dde565b005b34801561049357600080fd5b506104ae60048036038101906104a99190612e87565b610ebc565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613068565b610edc565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190612d92565b610f72565b60405161050d9190612e00565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906130b1565b610f88565b60405161054a9190612d4b565b60405180910390f35b34801561055f57600080fd5b50610568611058565b005b34801561057657600080fd5b5061057f6110e0565b60405161058c9190612e00565b60405180910390f35b3480156105a157600080fd5b506105aa61110a565b6040516105b79190612d10565b60405180910390f35b3480156105cc57600080fd5b506105d561119c565b6040516105e29190612d4b565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612d92565b6111a2565b005b61062e60048036038101906106299190612d92565b611228565b005b34801561063c57600080fd5b50610657600480360381019061065291906130de565b611469565b005b34801561066557600080fd5b50610680600480360381019061067b91906131bf565b6115e1565b005b34801561068e57600080fd5b5061069761165d565b6040516106a49190612d4b565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612d92565b611663565b6040516106e19190612d10565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190612d92565b6116df565b005b34801561071f57600080fd5b50610728611765565b6040516107359190612d10565b60405180910390f35b34801561074a57600080fd5b506107536117f3565b6040516107609190612d4b565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190613242565b6117f9565b60405161079d9190612c5c565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c891906130b1565b61188d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611985565b5b9050919050565b6060600280546108c0906132b1565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906132b1565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119ef565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610f72565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a57611a3d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a895750610a8781610a82611a3d565b6117f9565b155b15610ac0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610acb838383611a45565b505050565b600e5481565b6000610ae0611af7565b6001546000540303905090565b610af5611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610b136110e0565b73ffffffffffffffffffffffffffffffffffffffff1614610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b609061332f565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610b94611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610bb26110e0565b73ffffffffffffffffffffffffffffffffffffffff1614610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff9061332f565b60405180910390fd5b80600f8190555050565b610c1d838383611b00565b505050565b610c2a611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610c486110e0565b73ffffffffffffffffffffffffffffffffffffffff1614610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c959061332f565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610cc3611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610ce16110e0565b73ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e9061332f565b60405180910390fd5b60008111610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d719061339b565b60405180910390fd5b600b5481610d86610ad6565b610d9091906133ea565b1115610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc89061348c565b60405180910390fd5b610ddb3382611fb6565b50565b610de6611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610e046110e0565b73ffffffffffffffffffffffffffffffffffffffff1614610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e519061332f565b60405180910390fd5b60026009541415610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e97906134f8565b60405180910390fd5b6002600981905550610eb23347611fd4565b6001600981905550565b610ed7838383604051806020016040528060008152506115e1565b505050565b610ee4611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610f026110e0565b73ffffffffffffffffffffffffffffffffffffffff1614610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f9061332f565b60405180910390fd5b80600a9080519060200190610f6e929190612ac2565b5050565b6000610f7d826120c8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611060611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661107e6110e0565b73ffffffffffffffffffffffffffffffffffffffff16146110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb9061332f565b60405180910390fd5b6110de6000612357565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611119906132b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611145906132b1565b80156111925780601f1061116757610100808354040283529160200191611192565b820191906000526020600020905b81548152906001019060200180831161117557829003601f168201915b5050505050905090565b600f5481565b6111aa611a3d565b73ffffffffffffffffffffffffffffffffffffffff166111c86110e0565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112159061332f565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff16611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90613564565b60405180910390fd5b6001600b5461128691906133ea565b8161128f610ad6565b61129991906133ea565b106112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d0906135d0565b60405180910390fd5b600e54816010546112ea91906133ea565b1115611345573481600d546112ff91906135f0565b1115611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790613696565b60405180910390fd5b61145c565b600f548161135233610f88565b61135c91906133ea565b11156113fc573481600d5461137191906135f0565b11156113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a990613696565b60405180910390fd5b600c548111156113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90613728565b60405180910390fd5b61145b565b600f54811115611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890613728565b60405180910390fd5b806010600082825461145391906133ea565b925050819055505b5b6114663382611fb6565b50565b611471611a3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114e3611a3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611590611a3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d59190612c5c565b60405180910390a35050565b6115ec848484611b00565b61160b8373ffffffffffffffffffffffffffffffffffffffff1661241d565b8015611620575061161e84848484612440565b155b15611657576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b606061166e826119ef565b6116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a4906137ba565b60405180910390fd5b600a6116b883612591565b6040516020016116c9929190613942565b6040516020818303038152906040529050919050565b6116e7611a3d565b73ffffffffffffffffffffffffffffffffffffffff166117056110e0565b73ffffffffffffffffffffffffffffffffffffffff161461175b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117529061332f565b60405180910390fd5b80600e8190555050565b600a8054611772906132b1565b80601f016020809104026020016040519081016040528092919081815260200182805461179e906132b1565b80156117eb5780601f106117c0576101008083540402835291602001916117eb565b820191906000526020600020905b8154815290600101906020018083116117ce57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611895611a3d565b73ffffffffffffffffffffffffffffffffffffffff166118b36110e0565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061332f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906139ee565b60405180910390fd5b61198281612357565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119fa611af7565b11158015611a09575060005482105b8015611a36575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b0b826120c8565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b97611a3d565b73ffffffffffffffffffffffffffffffffffffffff161480611bc65750611bc585611bc0611a3d565b6117f9565b5b80611c0b5750611bd4611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611bf384610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb885858560016126f2565b611cc460008487611a45565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f44576000548214611f4357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf85858560016126f8565b5050505050565b611fd08282604051806020016040528060008152506126fe565b5050565b80471015612017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200e90613a5a565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161203d90613aab565b60006040518083038185875af1925050503d806000811461207a576040519150601f19603f3d011682016040523d82523d6000602084013e61207f565b606091505b50509050806120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90613b32565b60405180910390fd5b505050565b6120d0612b48565b6000829050806120de611af7565b111580156120ed575060005481105b15612320576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161231e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612202578092505050612352565b5b60011561231d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612318578092505050612352565b612203565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612466611a3d565b8786866040518563ffffffff1660e01b81526004016124889493929190613ba7565b6020604051808303816000875af19250505080156124c457506040513d601f19601f820116820180604052508101906124c19190613c08565b60015b61253e573d80600081146124f4576040519150601f19603f3d011682016040523d82523d6000602084013e6124f9565b606091505b50600081511415612536576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125d9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126ed565b600082905060005b6000821461260b5780806125f490613c35565b915050600a826126049190613cad565b91506125e1565b60008167ffffffffffffffff81111561262757612626612f3d565b5b6040519080825280601f01601f1916602001820160405280156126595781602001600182028036833780820191505090505b5090505b600085146126e6576001826126729190613cde565b9150600a856126819190613d12565b603061268d91906133ea565b60f81b8183815181106126a3576126a2613d43565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126df9190613cad565b945061265d565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561276b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127a6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127b360008583866126f2565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129748673ffffffffffffffffffffffffffffffffffffffff1661241d565b15612a3a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129e96000878480600101955087612440565b612a1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561297a578260005414612a3557600080fd5b612aa6565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a3b575b816000819055505050612abc60008583866126f8565b50505050565b828054612ace906132b1565b90600052602060002090601f016020900481019282612af05760008555612b37565b82601f10612b0957805160ff1916838001178555612b37565b82800160010185558215612b37579182015b82811115612b36578251825591602001919060010190612b1b565b5b509050612b449190612b8b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ba4576000816000905550600101612b8c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612bf181612bbc565b8114612bfc57600080fd5b50565b600081359050612c0e81612be8565b92915050565b600060208284031215612c2a57612c29612bb2565b5b6000612c3884828501612bff565b91505092915050565b60008115159050919050565b612c5681612c41565b82525050565b6000602082019050612c716000830184612c4d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cb1578082015181840152602081019050612c96565b83811115612cc0576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ce282612c77565b612cec8185612c82565b9350612cfc818560208601612c93565b612d0581612cc6565b840191505092915050565b60006020820190508181036000830152612d2a8184612cd7565b905092915050565b6000819050919050565b612d4581612d32565b82525050565b6000602082019050612d606000830184612d3c565b92915050565b612d6f81612d32565b8114612d7a57600080fd5b50565b600081359050612d8c81612d66565b92915050565b600060208284031215612da857612da7612bb2565b5b6000612db684828501612d7d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dea82612dbf565b9050919050565b612dfa81612ddf565b82525050565b6000602082019050612e156000830184612df1565b92915050565b612e2481612ddf565b8114612e2f57600080fd5b50565b600081359050612e4181612e1b565b92915050565b60008060408385031215612e5e57612e5d612bb2565b5b6000612e6c85828601612e32565b9250506020612e7d85828601612d7d565b9150509250929050565b600080600060608486031215612ea057612e9f612bb2565b5b6000612eae86828701612e32565b9350506020612ebf86828701612e32565b9250506040612ed086828701612d7d565b9150509250925092565b612ee381612c41565b8114612eee57600080fd5b50565b600081359050612f0081612eda565b92915050565b600060208284031215612f1c57612f1b612bb2565b5b6000612f2a84828501612ef1565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f7582612cc6565b810181811067ffffffffffffffff82111715612f9457612f93612f3d565b5b80604052505050565b6000612fa7612ba8565b9050612fb38282612f6c565b919050565b600067ffffffffffffffff821115612fd357612fd2612f3d565b5b612fdc82612cc6565b9050602081019050919050565b82818337600083830152505050565b600061300b61300684612fb8565b612f9d565b90508281526020810184848401111561302757613026612f38565b5b613032848285612fe9565b509392505050565b600082601f83011261304f5761304e612f33565b5b813561305f848260208601612ff8565b91505092915050565b60006020828403121561307e5761307d612bb2565b5b600082013567ffffffffffffffff81111561309c5761309b612bb7565b5b6130a88482850161303a565b91505092915050565b6000602082840312156130c7576130c6612bb2565b5b60006130d584828501612e32565b91505092915050565b600080604083850312156130f5576130f4612bb2565b5b600061310385828601612e32565b925050602061311485828601612ef1565b9150509250929050565b600067ffffffffffffffff82111561313957613138612f3d565b5b61314282612cc6565b9050602081019050919050565b600061316261315d8461311e565b612f9d565b90508281526020810184848401111561317e5761317d612f38565b5b613189848285612fe9565b509392505050565b600082601f8301126131a6576131a5612f33565b5b81356131b684826020860161314f565b91505092915050565b600080600080608085870312156131d9576131d8612bb2565b5b60006131e787828801612e32565b94505060206131f887828801612e32565b935050604061320987828801612d7d565b925050606085013567ffffffffffffffff81111561322a57613229612bb7565b5b61323687828801613191565b91505092959194509250565b6000806040838503121561325957613258612bb2565b5b600061326785828601612e32565b925050602061327885828601612e32565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132c957607f821691505b602082108114156132dd576132dc613282565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613319602083612c82565b9150613324826132e3565b602082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613385601383612c82565b91506133908261334f565b602082019050919050565b600060208201905081810360008301526133b481613378565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133f582612d32565b915061340083612d32565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613435576134346133bb565b5b828201905092915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613476601783612c82565b915061348182613440565b602082019050919050565b600060208201905081810360008301526134a581613469565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006134e2601f83612c82565b91506134ed826134ac565b602082019050919050565b60006020820190508181036000830152613511816134d5565b9050919050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b600061354e601783612c82565b915061355982613518565b602082019050919050565b6000602082019050818103600083015261357d81613541565b9050919050565b7f4e6f206d6f7265204e4654204c65667400000000000000000000000000000000600082015250565b60006135ba601083612c82565b91506135c582613584565b602082019050919050565b600060208201905081810360008301526135e9816135ad565b9050919050565b60006135fb82612d32565b915061360683612d32565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561363f5761363e6133bb565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000613680601883612c82565b915061368b8261364a565b602082019050919050565b600060208201905081810360008301526136af81613673565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613712602283612c82565b915061371d826136b6565b604082019050919050565b6000602082019050818103600083015261374181613705565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006137a4602f83612c82565b91506137af82613748565b604082019050919050565b600060208201905081810360008301526137d381613797565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613807816132b1565b61381181866137da565b9450600182166000811461382c576001811461383d57613870565b60ff19831686528186019350613870565b613846856137e5565b60005b8381101561386857815481890152600182019150602081019050613849565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006138af6001836137da565b91506138ba82613879565b600182019050919050565b60006138d082612c77565b6138da81856137da565b93506138ea818560208601612c93565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061392c6005836137da565b9150613937826138f6565b600582019050919050565b600061394e82856137fa565b9150613959826138a2565b915061396582846138c5565b91506139708261391f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139d8602683612c82565b91506139e38261397c565b604082019050919050565b60006020820190508181036000830152613a07816139cb565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613a44601d83612c82565b9150613a4f82613a0e565b602082019050919050565b60006020820190508181036000830152613a7381613a37565b9050919050565b600081905092915050565b50565b6000613a95600083613a7a565b9150613aa082613a85565b600082019050919050565b6000613ab682613a88565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613b1c603a83612c82565b9150613b2782613ac0565b604082019050919050565b60006020820190508181036000830152613b4b81613b0f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b7982613b52565b613b838185613b5d565b9350613b93818560208601612c93565b613b9c81612cc6565b840191505092915050565b6000608082019050613bbc6000830187612df1565b613bc96020830186612df1565b613bd66040830185612d3c565b8181036060830152613be88184613b6e565b905095945050505050565b600081519050613c0281612be8565b92915050565b600060208284031215613c1e57613c1d612bb2565b5b6000613c2c84828501613bf3565b91505092915050565b6000613c4082612d32565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c7357613c726133bb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cb882612d32565b9150613cc383612d32565b925082613cd357613cd2613c7e565b5b828204905092915050565b6000613ce982612d32565b9150613cf483612d32565b925082821015613d0757613d066133bb565b5b828203905092915050565b6000613d1d82612d32565b9150613d2883612d32565b925082613d3857613d37613c7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206fed63051047d620cd0806883c8a27f2f4fa81465f62b72c4fc4ea849b7bd93564736f6c634300080a0033697066733a2f2f516d5a78666f6e7257386e65697348317a704a4c584b5339436d634d35715241345142767a455a4a7a58556e31572f
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80636352211e1161010d578063a22cb465116100a0578063d4e1fbdb1161006f578063d4e1fbdb146106ea578063d547cfb714610713578063d5abeb011461073e578063e985e9c514610769578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b806395d89b41116100dc57806395d89b411461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b80636352211e146104d957806370a0823114610516578063715018a6146105535780638da5cb5b1461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041e578063375a069a146104475780633ccfd60b1461047057806342842e0e1461048757806355f804b3146104b0576101f9565b8063193ad7b4146103765780631e84c413146103a1578063202f298a146103cc57806323b872dd146103f5576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce578063178ed490146102f757806318160ddd146103225780631919fed71461034d576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c14565b6107cf565b6040516102329190612c5c565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d9190612d10565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190612d4b565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612d92565b610949565b6040516102c59190612e00565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e47565b6109c5565b005b34801561030357600080fd5b5061030c610ad0565b6040516103199190612d4b565b60405180910390f35b34801561032e57600080fd5b50610337610ad6565b6040516103449190612d4b565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f9190612d92565b610aed565b005b34801561038257600080fd5b5061038b610b73565b6040516103989190612d4b565b60405180910390f35b3480156103ad57600080fd5b506103b6610b79565b6040516103c39190612c5c565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612d92565b610b8c565b005b34801561040157600080fd5b5061041c60048036038101906104179190612e87565b610c12565b005b34801561042a57600080fd5b5061044560048036038101906104409190612f06565b610c22565b005b34801561045357600080fd5b5061046e60048036038101906104699190612d92565b610cbb565b005b34801561047c57600080fd5b50610485610dde565b005b34801561049357600080fd5b506104ae60048036038101906104a99190612e87565b610ebc565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613068565b610edc565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190612d92565b610f72565b60405161050d9190612e00565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906130b1565b610f88565b60405161054a9190612d4b565b60405180910390f35b34801561055f57600080fd5b50610568611058565b005b34801561057657600080fd5b5061057f6110e0565b60405161058c9190612e00565b60405180910390f35b3480156105a157600080fd5b506105aa61110a565b6040516105b79190612d10565b60405180910390f35b3480156105cc57600080fd5b506105d561119c565b6040516105e29190612d4b565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612d92565b6111a2565b005b61062e60048036038101906106299190612d92565b611228565b005b34801561063c57600080fd5b50610657600480360381019061065291906130de565b611469565b005b34801561066557600080fd5b50610680600480360381019061067b91906131bf565b6115e1565b005b34801561068e57600080fd5b5061069761165d565b6040516106a49190612d4b565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612d92565b611663565b6040516106e19190612d10565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190612d92565b6116df565b005b34801561071f57600080fd5b50610728611765565b6040516107359190612d10565b60405180910390f35b34801561074a57600080fd5b506107536117f3565b6040516107609190612d4b565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190613242565b6117f9565b60405161079d9190612c5c565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c891906130b1565b61188d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611985565b5b9050919050565b6060600280546108c0906132b1565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906132b1565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119ef565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610f72565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a57611a3d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a895750610a8781610a82611a3d565b6117f9565b155b15610ac0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610acb838383611a45565b505050565b600e5481565b6000610ae0611af7565b6001546000540303905090565b610af5611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610b136110e0565b73ffffffffffffffffffffffffffffffffffffffff1614610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b609061332f565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610b94611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610bb26110e0565b73ffffffffffffffffffffffffffffffffffffffff1614610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff9061332f565b60405180910390fd5b80600f8190555050565b610c1d838383611b00565b505050565b610c2a611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610c486110e0565b73ffffffffffffffffffffffffffffffffffffffff1614610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c959061332f565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610cc3611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610ce16110e0565b73ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e9061332f565b60405180910390fd5b60008111610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d719061339b565b60405180910390fd5b600b5481610d86610ad6565b610d9091906133ea565b1115610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc89061348c565b60405180910390fd5b610ddb3382611fb6565b50565b610de6611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610e046110e0565b73ffffffffffffffffffffffffffffffffffffffff1614610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e519061332f565b60405180910390fd5b60026009541415610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e97906134f8565b60405180910390fd5b6002600981905550610eb23347611fd4565b6001600981905550565b610ed7838383604051806020016040528060008152506115e1565b505050565b610ee4611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610f026110e0565b73ffffffffffffffffffffffffffffffffffffffff1614610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f9061332f565b60405180910390fd5b80600a9080519060200190610f6e929190612ac2565b5050565b6000610f7d826120c8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611060611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661107e6110e0565b73ffffffffffffffffffffffffffffffffffffffff16146110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb9061332f565b60405180910390fd5b6110de6000612357565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611119906132b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611145906132b1565b80156111925780601f1061116757610100808354040283529160200191611192565b820191906000526020600020905b81548152906001019060200180831161117557829003601f168201915b5050505050905090565b600f5481565b6111aa611a3d565b73ffffffffffffffffffffffffffffffffffffffff166111c86110e0565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112159061332f565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff16611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90613564565b60405180910390fd5b6001600b5461128691906133ea565b8161128f610ad6565b61129991906133ea565b106112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d0906135d0565b60405180910390fd5b600e54816010546112ea91906133ea565b1115611345573481600d546112ff91906135f0565b1115611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790613696565b60405180910390fd5b61145c565b600f548161135233610f88565b61135c91906133ea565b11156113fc573481600d5461137191906135f0565b11156113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a990613696565b60405180910390fd5b600c548111156113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90613728565b60405180910390fd5b61145b565b600f54811115611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890613728565b60405180910390fd5b806010600082825461145391906133ea565b925050819055505b5b6114663382611fb6565b50565b611471611a3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114e3611a3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611590611a3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d59190612c5c565b60405180910390a35050565b6115ec848484611b00565b61160b8373ffffffffffffffffffffffffffffffffffffffff1661241d565b8015611620575061161e84848484612440565b155b15611657576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b606061166e826119ef565b6116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a4906137ba565b60405180910390fd5b600a6116b883612591565b6040516020016116c9929190613942565b6040516020818303038152906040529050919050565b6116e7611a3d565b73ffffffffffffffffffffffffffffffffffffffff166117056110e0565b73ffffffffffffffffffffffffffffffffffffffff161461175b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117529061332f565b60405180910390fd5b80600e8190555050565b600a8054611772906132b1565b80601f016020809104026020016040519081016040528092919081815260200182805461179e906132b1565b80156117eb5780601f106117c0576101008083540402835291602001916117eb565b820191906000526020600020905b8154815290600101906020018083116117ce57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611895611a3d565b73ffffffffffffffffffffffffffffffffffffffff166118b36110e0565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061332f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906139ee565b60405180910390fd5b61198281612357565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119fa611af7565b11158015611a09575060005482105b8015611a36575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b0b826120c8565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b97611a3d565b73ffffffffffffffffffffffffffffffffffffffff161480611bc65750611bc585611bc0611a3d565b6117f9565b5b80611c0b5750611bd4611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611bf384610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb885858560016126f2565b611cc460008487611a45565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f44576000548214611f4357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf85858560016126f8565b5050505050565b611fd08282604051806020016040528060008152506126fe565b5050565b80471015612017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200e90613a5a565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161203d90613aab565b60006040518083038185875af1925050503d806000811461207a576040519150601f19603f3d011682016040523d82523d6000602084013e61207f565b606091505b50509050806120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90613b32565b60405180910390fd5b505050565b6120d0612b48565b6000829050806120de611af7565b111580156120ed575060005481105b15612320576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161231e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612202578092505050612352565b5b60011561231d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612318578092505050612352565b612203565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612466611a3d565b8786866040518563ffffffff1660e01b81526004016124889493929190613ba7565b6020604051808303816000875af19250505080156124c457506040513d601f19601f820116820180604052508101906124c19190613c08565b60015b61253e573d80600081146124f4576040519150601f19603f3d011682016040523d82523d6000602084013e6124f9565b606091505b50600081511415612536576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125d9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126ed565b600082905060005b6000821461260b5780806125f490613c35565b915050600a826126049190613cad565b91506125e1565b60008167ffffffffffffffff81111561262757612626612f3d565b5b6040519080825280601f01601f1916602001820160405280156126595781602001600182028036833780820191505090505b5090505b600085146126e6576001826126729190613cde565b9150600a856126819190613d12565b603061268d91906133ea565b60f81b8183815181106126a3576126a2613d43565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126df9190613cad565b945061265d565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561276b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127a6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127b360008583866126f2565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129748673ffffffffffffffffffffffffffffffffffffffff1661241d565b15612a3a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129e96000878480600101955087612440565b612a1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561297a578260005414612a3557600080fd5b612aa6565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a3b575b816000819055505050612abc60008583866126f8565b50505050565b828054612ace906132b1565b90600052602060002090601f016020900481019282612af05760008555612b37565b82601f10612b0957805160ff1916838001178555612b37565b82800160010185558215612b37579182015b82811115612b36578251825591602001919060010190612b1b565b5b509050612b449190612b8b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ba4576000816000905550600101612b8c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612bf181612bbc565b8114612bfc57600080fd5b50565b600081359050612c0e81612be8565b92915050565b600060208284031215612c2a57612c29612bb2565b5b6000612c3884828501612bff565b91505092915050565b60008115159050919050565b612c5681612c41565b82525050565b6000602082019050612c716000830184612c4d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cb1578082015181840152602081019050612c96565b83811115612cc0576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ce282612c77565b612cec8185612c82565b9350612cfc818560208601612c93565b612d0581612cc6565b840191505092915050565b60006020820190508181036000830152612d2a8184612cd7565b905092915050565b6000819050919050565b612d4581612d32565b82525050565b6000602082019050612d606000830184612d3c565b92915050565b612d6f81612d32565b8114612d7a57600080fd5b50565b600081359050612d8c81612d66565b92915050565b600060208284031215612da857612da7612bb2565b5b6000612db684828501612d7d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dea82612dbf565b9050919050565b612dfa81612ddf565b82525050565b6000602082019050612e156000830184612df1565b92915050565b612e2481612ddf565b8114612e2f57600080fd5b50565b600081359050612e4181612e1b565b92915050565b60008060408385031215612e5e57612e5d612bb2565b5b6000612e6c85828601612e32565b9250506020612e7d85828601612d7d565b9150509250929050565b600080600060608486031215612ea057612e9f612bb2565b5b6000612eae86828701612e32565b9350506020612ebf86828701612e32565b9250506040612ed086828701612d7d565b9150509250925092565b612ee381612c41565b8114612eee57600080fd5b50565b600081359050612f0081612eda565b92915050565b600060208284031215612f1c57612f1b612bb2565b5b6000612f2a84828501612ef1565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f7582612cc6565b810181811067ffffffffffffffff82111715612f9457612f93612f3d565b5b80604052505050565b6000612fa7612ba8565b9050612fb38282612f6c565b919050565b600067ffffffffffffffff821115612fd357612fd2612f3d565b5b612fdc82612cc6565b9050602081019050919050565b82818337600083830152505050565b600061300b61300684612fb8565b612f9d565b90508281526020810184848401111561302757613026612f38565b5b613032848285612fe9565b509392505050565b600082601f83011261304f5761304e612f33565b5b813561305f848260208601612ff8565b91505092915050565b60006020828403121561307e5761307d612bb2565b5b600082013567ffffffffffffffff81111561309c5761309b612bb7565b5b6130a88482850161303a565b91505092915050565b6000602082840312156130c7576130c6612bb2565b5b60006130d584828501612e32565b91505092915050565b600080604083850312156130f5576130f4612bb2565b5b600061310385828601612e32565b925050602061311485828601612ef1565b9150509250929050565b600067ffffffffffffffff82111561313957613138612f3d565b5b61314282612cc6565b9050602081019050919050565b600061316261315d8461311e565b612f9d565b90508281526020810184848401111561317e5761317d612f38565b5b613189848285612fe9565b509392505050565b600082601f8301126131a6576131a5612f33565b5b81356131b684826020860161314f565b91505092915050565b600080600080608085870312156131d9576131d8612bb2565b5b60006131e787828801612e32565b94505060206131f887828801612e32565b935050604061320987828801612d7d565b925050606085013567ffffffffffffffff81111561322a57613229612bb7565b5b61323687828801613191565b91505092959194509250565b6000806040838503121561325957613258612bb2565b5b600061326785828601612e32565b925050602061327885828601612e32565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132c957607f821691505b602082108114156132dd576132dc613282565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613319602083612c82565b9150613324826132e3565b602082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613385601383612c82565b91506133908261334f565b602082019050919050565b600060208201905081810360008301526133b481613378565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133f582612d32565b915061340083612d32565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613435576134346133bb565b5b828201905092915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613476601783612c82565b915061348182613440565b602082019050919050565b600060208201905081810360008301526134a581613469565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006134e2601f83612c82565b91506134ed826134ac565b602082019050919050565b60006020820190508181036000830152613511816134d5565b9050919050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b600061354e601783612c82565b915061355982613518565b602082019050919050565b6000602082019050818103600083015261357d81613541565b9050919050565b7f4e6f206d6f7265204e4654204c65667400000000000000000000000000000000600082015250565b60006135ba601083612c82565b91506135c582613584565b602082019050919050565b600060208201905081810360008301526135e9816135ad565b9050919050565b60006135fb82612d32565b915061360683612d32565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561363f5761363e6133bb565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000613680601883612c82565b915061368b8261364a565b602082019050919050565b600060208201905081810360008301526136af81613673565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613712602283612c82565b915061371d826136b6565b604082019050919050565b6000602082019050818103600083015261374181613705565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006137a4602f83612c82565b91506137af82613748565b604082019050919050565b600060208201905081810360008301526137d381613797565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613807816132b1565b61381181866137da565b9450600182166000811461382c576001811461383d57613870565b60ff19831686528186019350613870565b613846856137e5565b60005b8381101561386857815481890152600182019150602081019050613849565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006138af6001836137da565b91506138ba82613879565b600182019050919050565b60006138d082612c77565b6138da81856137da565b93506138ea818560208601612c93565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061392c6005836137da565b9150613937826138f6565b600582019050919050565b600061394e82856137fa565b9150613959826138a2565b915061396582846138c5565b91506139708261391f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139d8602683612c82565b91506139e38261397c565b604082019050919050565b60006020820190508181036000830152613a07816139cb565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613a44601d83612c82565b9150613a4f82613a0e565b602082019050919050565b60006020820190508181036000830152613a7381613a37565b9050919050565b600081905092915050565b50565b6000613a95600083613a7a565b9150613aa082613a85565b600082019050919050565b6000613ab682613a88565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613b1c603a83612c82565b9150613b2782613ac0565b604082019050919050565b60006020820190508181036000830152613b4b81613b0f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b7982613b52565b613b838185613b5d565b9350613b93818560208601612c93565b613b9c81612cc6565b840191505092915050565b6000608082019050613bbc6000830187612df1565b613bc96020830186612df1565b613bd66040830185612d3c565b8181036060830152613be88184613b6e565b905095945050505050565b600081519050613c0281612be8565b92915050565b600060208284031215613c1e57613c1d612bb2565b5b6000613c2c84828501613bf3565b91505092915050565b6000613c4082612d32565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c7357613c726133bb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cb882612d32565b9150613cc383612d32565b925082613cd357613cd2613c7e565b5b828204905092915050565b6000613ce982612d32565b9150613cf483612d32565b925082821015613d0757613d066133bb565b5b828203905092915050565b6000613d1d82612d32565b9150613d2883612d32565b925082613d3857613d37613c7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206fed63051047d620cd0806883c8a27f2f4fa81465f62b72c4fc4ea849b7bd93564736f6c634300080a0033
Deployed Bytecode Sourcemap
50772:3327:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31882:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34995:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51067:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36498:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36061:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51119:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31131:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52653:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51205:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51249:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52907:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37363:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52364:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51472:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51757:142;;;;;;;;;;;;;:::i;:::-;;37604:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51358:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34803:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32251:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9648:103;;;;;;;;;;;;;:::i;:::-;;8997:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35164:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51161:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52774:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53039:1057;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36774:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37860:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51026:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51905:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52518:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50897:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50989:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37132:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9906:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31882:305;31984:4;32036:25;32021:40;;;:11;:40;;;;:105;;;;32093:33;32078:48;;;:11;:48;;;;32021:105;:158;;;;32143:36;32167:11;32143:23;:36::i;:::-;32021:158;32001:178;;31882:305;;;:::o;34995:100::-;35049:13;35082:5;35075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34995:100;:::o;51067:47::-;;;;:::o;36498:204::-;36566:7;36591:16;36599:7;36591;:16::i;:::-;36586:64;;36616:34;;;;;;;;;;;;;;36586:64;36670:15;:24;36686:7;36670:24;;;;;;;;;;;;;;;;;;;;;36663:31;;36498:204;;;:::o;36061:371::-;36134:13;36150:24;36166:7;36150:15;:24::i;:::-;36134:40;;36195:5;36189:11;;:2;:11;;;36185:48;;;36209:24;;;;;;;;;;;;;;36185:48;36266:5;36250:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;36276:37;36293:5;36300:12;:10;:12::i;:::-;36276:16;:37::i;:::-;36275:38;36250:63;36246:138;;;36337:35;;;;;;;;;;;;;;36246:138;36396:28;36405:2;36409:7;36418:5;36396:8;:28::i;:::-;36123:309;36061:371;;:::o;51119:37::-;;;;:::o;31131:303::-;31175:7;31400:15;:13;:15::i;:::-;31385:12;;31369:13;;:28;:46;31362:53;;31131:303;:::o;52653:115::-;9228:12;:10;:12::i;:::-;9217:23;;:7;:5;:7::i;:::-;:23;;;9209:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52756:6:::1;52736:17;:26;;;;52653:115:::0;:::o;51205:39::-;;;;:::o;51249:37::-;;;;;;;;;;;;;:::o;52907:126::-;9228:12;:10;:12::i;:::-;9217:23;;:7;:5;:7::i;:::-;:23;;;9209:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53021:6:::1;52999:19;:28;;;;52907:126:::0;:::o;37363:170::-;37497:28;37507:4;37513:2;37517:7;37497:9;:28::i;:::-;37363:170;;;:::o;52364:148::-;9228:12;:10;:12::i;:::-;9217:23;;:7;:5;:7::i;:::-;:23;;;9209:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52487:19:::1;52466:18;;:40;;;;;;;;;;;;;;;;;;52364:148:::0;:::o;51472:279::-;9228:12;:10;:12::i;:::-;9217:23;;:7;:5;:7::i;:::-;:23;;;9209:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51568:1:::1;51557:8;:12;51541:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51657:9;;51645:8;51629:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;51613:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;51714:31;51724:10;51736:8;51714:9;:31::i;:::-;51472:279:::0;:::o;51757:142::-;9228:12;:10;:12::i;:::-;9217:23;;:7;:5;:7::i;:::-;:23;;;9209:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3971:1:::1;4569:7;;:19;;4561:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3971:1;4702:7;:18;;;;51832:61:::2;51858:10;51871:21;51832:17;:61::i;:::-;3927:1:::1;4881:7;:22;;;;51757:142::o:0;37604:185::-;37742:39;37759:4;37765:2;37769:7;37742:39;;;;;;;;;;;;:16;:39::i;:::-;37604:185;;;:::o;51358:108::-;9228:12;:10;:12::i;:::-;9217:23;;:7;:5;:7::i;:::-;:23;;;9209:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51453:7:::1;51438:12;:22;;;;;;;;;;;;:::i;:::-;;51358:108:::0;:::o;34803:125::-;34867:7;34894:21;34907:7;34894:12;:21::i;:::-;:26;;;34887:33;;34803:125;;;:::o;32251:206::-;32315:7;32356:1;32339:19;;:5;:19;;;32335:60;;;32367:28;;;;;;;;;;;;;;32335:60;32421:12;:19;32434:5;32421:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32413:36;;32406:43;;32251:206;;;:::o;9648:103::-;9228:12;:10;:12::i;:::-;9217:23;;:7;:5;:7::i;:::-;:23;;;9209:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9713:30:::1;9740:1;9713:18;:30::i;:::-;9648:103::o:0;8997:87::-;9043:7;9070:6;;;;;;;;;;;9063:13;;8997:87;:::o;35164:104::-;35220:13;35253:7;35246:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35164:104;:::o;51161:39::-;;;;:::o;52774:127::-;9228:12;:10;:12::i;:::-;9217:23;;:7;:5;:7::i;:::-;:23;;;9209:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52889:6:::1;52870:16;:25;;;;52774:127:::0;:::o;53039:1057::-;53126:18;;;;;;;;;;;53118:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;53232:1;53220:9;;:13;;;;:::i;:::-;53203:14;53187:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;53179:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;53306:14;;53289;53266:20;;:37;;;;:::i;:::-;:54;53263:784;;;53394:9;53375:14;53355:17;;:34;;;;:::i;:::-;53354:49;;53332:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;53263:784;;;53525:19;;53508:14;53484:21;53494:10;53484:9;:21::i;:::-;:38;;;;:::i;:::-;:60;53480:560;;;53619:9;53600:14;53580:17;;:34;;;;:::i;:::-;53579:49;;53557:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;53731:16;;53713:14;:34;;53691:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;53480:560;;;53886:19;;53868:14;:37;;53842:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;54014:14;53990:20;;:38;;;;;;;:::i;:::-;;;;;;;;53480:560;53263:784;54053:37;54063:10;54075:14;54053:9;:37::i;:::-;53039:1057;:::o;36774:287::-;36885:12;:10;:12::i;:::-;36873:24;;:8;:24;;;36869:54;;;36906:17;;;;;;;;;;;;;;36869:54;36981:8;36936:18;:32;36955:12;:10;:12::i;:::-;36936:32;;;;;;;;;;;;;;;:42;36969:8;36936:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;37034:8;37005:48;;37020:12;:10;:12::i;:::-;37005:48;;;37044:8;37005:48;;;;;;:::i;:::-;;;;;;;;36774:287;;:::o;37860:369::-;38027:28;38037:4;38043:2;38047:7;38027:9;:28::i;:::-;38070:15;:2;:13;;;:15::i;:::-;:76;;;;;38090:56;38121:4;38127:2;38131:7;38140:5;38090:30;:56::i;:::-;38089:57;38070:76;38066:156;;;38170:40;;;;;;;;;;;;;;38066:156;37860:369;;;;:::o;51026:36::-;;;;:::o;51905:312::-;52001:13;52042:17;52050:8;52042:7;:17::i;:::-;52026:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;52162:12;52181:19;:8;:17;:19::i;:::-;52145:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52131:80;;51905:312;;;:::o;52518:129::-;9228:12;:10;:12::i;:::-;9217:23;;:7;:5;:7::i;:::-;:23;;;9209:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52628:13:::1;52611:14;:30;;;;52518:129:::0;:::o;50897:87::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50989:32::-;;;;:::o;37132:164::-;37229:4;37253:18;:25;37272:5;37253:25;;;;;;;;;;;;;;;:35;37279:8;37253:35;;;;;;;;;;;;;;;;;;;;;;;;;37246:42;;37132:164;;;;:::o;9906:201::-;9228:12;:10;:12::i;:::-;9217:23;;:7;:5;:7::i;:::-;:23;;;9209:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10015:1:::1;9995:22;;:8;:22;;;;9987:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10071:28;10090:8;10071:18;:28::i;:::-;9906:201:::0;:::o;21781:157::-;21866:4;21905:25;21890:40;;;:11;:40;;;;21883:47;;21781:157;;;:::o;38484:174::-;38541:4;38584:7;38565:15;:13;:15::i;:::-;:26;;:53;;;;;38605:13;;38595:7;:23;38565:53;:85;;;;;38623:11;:20;38635:7;38623:20;;;;;;;;;;;:27;;;;;;;;;;;;38622:28;38565:85;38558:92;;38484:174;;;:::o;7721:98::-;7774:7;7801:10;7794:17;;7721:98;:::o;47710:196::-;47852:2;47825:15;:24;47841:7;47825:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47890:7;47886:2;47870:28;;47879:5;47870:28;;;;;;;;;;;;47710:196;;;:::o;30905:92::-;30961:7;30988:1;30981:8;;30905:92;:::o;42658:2130::-;42773:35;42811:21;42824:7;42811:12;:21::i;:::-;42773:59;;42871:4;42849:26;;:13;:18;;;:26;;;42845:67;;42884:28;;;;;;;;;;;;;;42845:67;42925:22;42967:4;42951:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42988:36;43005:4;43011:12;:10;:12::i;:::-;42988:16;:36::i;:::-;42951:73;:126;;;;43065:12;:10;:12::i;:::-;43041:36;;:20;43053:7;43041:11;:20::i;:::-;:36;;;42951:126;42925:153;;43096:17;43091:66;;43122:35;;;;;;;;;;;;;;43091:66;43186:1;43172:16;;:2;:16;;;43168:52;;;43197:23;;;;;;;;;;;;;;43168:52;43233:43;43255:4;43261:2;43265:7;43274:1;43233:21;:43::i;:::-;43341:35;43358:1;43362:7;43371:4;43341:8;:35::i;:::-;43702:1;43672:12;:18;43685:4;43672:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43746:1;43718:12;:16;43731:2;43718:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43764:31;43798:11;:20;43810:7;43798:20;;;;;;;;;;;43764:54;;43849:2;43833:8;:13;;;:18;;;;;;;;;;;;;;;;;;43899:15;43866:8;:23;;;:49;;;;;;;;;;;;;;;;;;44167:19;44199:1;44189:7;:11;44167:33;;44215:31;44249:11;:24;44261:11;44249:24;;;;;;;;;;;44215:58;;44317:1;44292:27;;:8;:13;;;;;;;;;;;;:27;;;44288:384;;;44502:13;;44487:11;:28;44483:174;;44556:4;44540:8;:13;;;:20;;;;;;;;;;;;;;;;;;44609:13;:28;;;44583:8;:23;;;:54;;;;;;;;;;;;;;;;;;44483:174;44288:384;43647:1036;;;44719:7;44715:2;44700:27;;44709:4;44700:27;;;;;;;;;;;;44738:42;44759:4;44765:2;44769:7;44778:1;44738:20;:42::i;:::-;42762:2026;;42658:2130;;;:::o;38742:104::-;38811:27;38821:2;38825:8;38811:27;;;;;;;;;;;;:9;:27::i;:::-;38742:104;;:::o;12959:317::-;13074:6;13049:21;:31;;13041:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13128:12;13146:9;:14;;13168:6;13146:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13127:52;;;13198:7;13190:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;13030:246;12959:317;;:::o;33632:1109::-;33694:21;;:::i;:::-;33728:12;33743:7;33728:22;;33811:4;33792:15;:13;:15::i;:::-;:23;;:47;;;;;33826:13;;33819:4;:20;33792:47;33788:886;;;33860:31;33894:11;:17;33906:4;33894:17;;;;;;;;;;;33860:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33935:9;:16;;;33930:729;;34006:1;33980:28;;:9;:14;;;:28;;;33976:101;;34044:9;34037:16;;;;;;33976:101;34379:261;34386:4;34379:261;;;34419:6;;;;;;;;34464:11;:17;34476:4;34464:17;;;;;;;;;;;34452:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34538:1;34512:28;;:9;:14;;;:28;;;34508:109;;34580:9;34573:16;;;;;;34508:109;34379:261;;;33930:729;33841:833;33788:886;34702:31;;;;;;;;;;;;;;33632:1109;;;;:::o;10267:191::-;10341:16;10360:6;;;;;;;;;;;10341:25;;10386:8;10377:6;;:17;;;;;;;;;;;;;;;;;;10441:8;10410:40;;10431:8;10410:40;;;;;;;;;;;;10330:128;10267:191;:::o;11698:326::-;11758:4;12015:1;11993:7;:19;;;:23;11986:30;;11698:326;;;:::o;48398:667::-;48561:4;48598:2;48582:36;;;48619:12;:10;:12::i;:::-;48633:4;48639:7;48648:5;48582:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48578:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48833:1;48816:6;:13;:18;48812:235;;;48862:40;;;;;;;;;;;;;;48812:235;49005:6;48999:13;48990:6;48986:2;48982:15;48975:38;48578:480;48711:45;;;48701:55;;;:6;:55;;;;48694:62;;;48398:667;;;;;;:::o;5283:723::-;5339:13;5569:1;5560:5;:10;5556:53;;;5587:10;;;;;;;;;;;;;;;;;;;;;5556:53;5619:12;5634:5;5619:20;;5650:14;5675:78;5690:1;5682:4;:9;5675:78;;5708:8;;;;;:::i;:::-;;;;5739:2;5731:10;;;;;:::i;:::-;;;5675:78;;;5763:19;5795:6;5785:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5763:39;;5813:154;5829:1;5820:5;:10;5813:154;;5857:1;5847:11;;;;;:::i;:::-;;;5924:2;5916:5;:10;;;;:::i;:::-;5903:2;:24;;;;:::i;:::-;5890:39;;5873:6;5880;5873:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5953:2;5944:11;;;;;:::i;:::-;;;5813:154;;;5991:6;5977:21;;;;;5283:723;;;;:::o;49713:159::-;;;;;:::o;50531:158::-;;;;;:::o;39220:1751::-;39343:20;39366:13;;39343:36;;39408:1;39394:16;;:2;:16;;;39390:48;;;39419:19;;;;;;;;;;;;;;39390:48;39465:1;39453:8;:13;39449:44;;;39475:18;;;;;;;;;;;;;;39449:44;39506:61;39536:1;39540:2;39544:12;39558:8;39506:21;:61::i;:::-;39879:8;39844:12;:16;39857:2;39844:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39943:8;39903:12;:16;39916:2;39903:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40002:2;39969:11;:25;39981:12;39969:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40069:15;40019:11;:25;40031:12;40019:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;40102:20;40125:12;40102:35;;40152:11;40181:8;40166:12;:23;40152:37;;40210:15;:2;:13;;;:15::i;:::-;40206:633;;;40246:314;40302:12;40298:2;40277:38;;40294:1;40277:38;;;;;;;;;;;;40343:69;40382:1;40386:2;40390:14;;;;;;40406:5;40343:30;:69::i;:::-;40338:174;;40448:40;;;;;;;;;;;;;;40338:174;40555:3;40539:12;:19;;40246:314;;40641:12;40624:13;;:29;40620:43;;40655:8;;;40620:43;40206:633;;;40704:120;40760:14;;;;;;40756:2;40735:40;;40752:1;40735:40;;;;;;;;;;;;40819:3;40803:12;:19;;40704:120;;40206:633;40869:12;40853:13;:28;;;;39819:1074;;40903:60;40932:1;40936:2;40940:12;40954:8;40903:20;:60::i;:::-;39332:1639;39220:1751;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:118::-;3078:24;3096:5;3078:24;:::i;:::-;3073:3;3066:37;2991:118;;:::o;3115:222::-;3208:4;3246:2;3235:9;3231:18;3223:26;;3259:71;3327:1;3316:9;3312:17;3303:6;3259:71;:::i;:::-;3115:222;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:116::-;5985:21;6000:5;5985:21;:::i;:::-;5978:5;5975:32;5965:60;;6021:1;6018;6011:12;5965:60;5915:116;:::o;6037:133::-;6080:5;6118:6;6105:20;6096:29;;6134:30;6158:5;6134:30;:::i;:::-;6037:133;;;;:::o;6176:323::-;6232:6;6281:2;6269:9;6260:7;6256:23;6252:32;6249:119;;;6287:79;;:::i;:::-;6249:119;6407:1;6432:50;6474:7;6465:6;6454:9;6450:22;6432:50;:::i;:::-;6422:60;;6378:114;6176:323;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:169::-;14087:21;14083:1;14075:6;14071:14;14064:45;13947:169;:::o;14122:366::-;14264:3;14285:67;14349:2;14344:3;14285:67;:::i;:::-;14278:74;;14361:93;14450:3;14361:93;:::i;:::-;14479:2;14474:3;14470:12;14463:19;;14122:366;;;:::o;14494:419::-;14660:4;14698:2;14687:9;14683:18;14675:26;;14747:9;14741:4;14737:20;14733:1;14722:9;14718:17;14711:47;14775:131;14901:4;14775:131;:::i;:::-;14767:139;;14494:419;;;:::o;14919:180::-;14967:77;14964:1;14957:88;15064:4;15061:1;15054:15;15088:4;15085:1;15078:15;15105:305;15145:3;15164:20;15182:1;15164:20;:::i;:::-;15159:25;;15198:20;15216:1;15198:20;:::i;:::-;15193:25;;15352:1;15284:66;15280:74;15277:1;15274:81;15271:107;;;15358:18;;:::i;:::-;15271:107;15402:1;15399;15395:9;15388:16;;15105:305;;;;:::o;15416:173::-;15556:25;15552:1;15544:6;15540:14;15533:49;15416:173;:::o;15595:366::-;15737:3;15758:67;15822:2;15817:3;15758:67;:::i;:::-;15751:74;;15834:93;15923:3;15834:93;:::i;:::-;15952:2;15947:3;15943:12;15936:19;;15595:366;;;:::o;15967:419::-;16133:4;16171:2;16160:9;16156:18;16148:26;;16220:9;16214:4;16210:20;16206:1;16195:9;16191:17;16184:47;16248:131;16374:4;16248:131;:::i;:::-;16240:139;;15967:419;;;:::o;16392:181::-;16532:33;16528:1;16520:6;16516:14;16509:57;16392:181;:::o;16579:366::-;16721:3;16742:67;16806:2;16801:3;16742:67;:::i;:::-;16735:74;;16818:93;16907:3;16818:93;:::i;:::-;16936:2;16931:3;16927:12;16920:19;;16579:366;;;:::o;16951:419::-;17117:4;17155:2;17144:9;17140:18;17132:26;;17204:9;17198:4;17194:20;17190:1;17179:9;17175:17;17168:47;17232:131;17358:4;17232:131;:::i;:::-;17224:139;;16951:419;;;:::o;17376:173::-;17516:25;17512:1;17504:6;17500:14;17493:49;17376:173;:::o;17555:366::-;17697:3;17718:67;17782:2;17777:3;17718:67;:::i;:::-;17711:74;;17794:93;17883:3;17794:93;:::i;:::-;17912:2;17907:3;17903:12;17896:19;;17555:366;;;:::o;17927:419::-;18093:4;18131:2;18120:9;18116:18;18108:26;;18180:9;18174:4;18170:20;18166:1;18155:9;18151:17;18144:47;18208:131;18334:4;18208:131;:::i;:::-;18200:139;;17927:419;;;:::o;18352:166::-;18492:18;18488:1;18480:6;18476:14;18469:42;18352:166;:::o;18524:366::-;18666:3;18687:67;18751:2;18746:3;18687:67;:::i;:::-;18680:74;;18763:93;18852:3;18763:93;:::i;:::-;18881:2;18876:3;18872:12;18865:19;;18524:366;;;:::o;18896:419::-;19062:4;19100:2;19089:9;19085:18;19077:26;;19149:9;19143:4;19139:20;19135:1;19124:9;19120:17;19113:47;19177:131;19303:4;19177:131;:::i;:::-;19169:139;;18896:419;;;:::o;19321:348::-;19361:7;19384:20;19402:1;19384:20;:::i;:::-;19379:25;;19418:20;19436:1;19418:20;:::i;:::-;19413:25;;19606:1;19538:66;19534:74;19531:1;19528:81;19523:1;19516:9;19509:17;19505:105;19502:131;;;19613:18;;:::i;:::-;19502:131;19661:1;19658;19654:9;19643:20;;19321:348;;;;:::o;19675:174::-;19815:26;19811:1;19803:6;19799:14;19792:50;19675:174;:::o;19855:366::-;19997:3;20018:67;20082:2;20077:3;20018:67;:::i;:::-;20011:74;;20094:93;20183:3;20094:93;:::i;:::-;20212:2;20207:3;20203:12;20196:19;;19855:366;;;:::o;20227:419::-;20393:4;20431:2;20420:9;20416:18;20408:26;;20480:9;20474:4;20470:20;20466:1;20455:9;20451:17;20444:47;20508:131;20634:4;20508:131;:::i;:::-;20500:139;;20227:419;;;:::o;20652:221::-;20792:34;20788:1;20780:6;20776:14;20769:58;20861:4;20856:2;20848:6;20844:15;20837:29;20652:221;:::o;20879:366::-;21021:3;21042:67;21106:2;21101:3;21042:67;:::i;:::-;21035:74;;21118:93;21207:3;21118:93;:::i;:::-;21236:2;21231:3;21227:12;21220:19;;20879:366;;;:::o;21251:419::-;21417:4;21455:2;21444:9;21440:18;21432:26;;21504:9;21498:4;21494:20;21490:1;21479:9;21475:17;21468:47;21532:131;21658:4;21532:131;:::i;:::-;21524:139;;21251:419;;;:::o;21676:234::-;21816:34;21812:1;21804:6;21800:14;21793:58;21885:17;21880:2;21872:6;21868:15;21861:42;21676:234;:::o;21916:366::-;22058:3;22079:67;22143:2;22138:3;22079:67;:::i;:::-;22072:74;;22155:93;22244:3;22155:93;:::i;:::-;22273:2;22268:3;22264:12;22257:19;;21916:366;;;:::o;22288:419::-;22454:4;22492:2;22481:9;22477:18;22469:26;;22541:9;22535:4;22531:20;22527:1;22516:9;22512:17;22505:47;22569:131;22695:4;22569:131;:::i;:::-;22561:139;;22288:419;;;:::o;22713:148::-;22815:11;22852:3;22837:18;;22713:148;;;;:::o;22867:141::-;22916:4;22939:3;22931:11;;22962:3;22959:1;22952:14;22996:4;22993:1;22983:18;22975:26;;22867:141;;;:::o;23038:845::-;23141:3;23178:5;23172:12;23207:36;23233:9;23207:36;:::i;:::-;23259:89;23341:6;23336:3;23259:89;:::i;:::-;23252:96;;23379:1;23368:9;23364:17;23395:1;23390:137;;;;23541:1;23536:341;;;;23357:520;;23390:137;23474:4;23470:9;23459;23455:25;23450:3;23443:38;23510:6;23505:3;23501:16;23494:23;;23390:137;;23536:341;23603:38;23635:5;23603:38;:::i;:::-;23663:1;23677:154;23691:6;23688:1;23685:13;23677:154;;;23765:7;23759:14;23755:1;23750:3;23746:11;23739:35;23815:1;23806:7;23802:15;23791:26;;23713:4;23710:1;23706:12;23701:17;;23677:154;;;23860:6;23855:3;23851:16;23844:23;;23543:334;;23357:520;;23145:738;;23038:845;;;;:::o;23889:151::-;24029:3;24025:1;24017:6;24013:14;24006:27;23889:151;:::o;24046:400::-;24206:3;24227:84;24309:1;24304:3;24227:84;:::i;:::-;24220:91;;24320:93;24409:3;24320:93;:::i;:::-;24438:1;24433:3;24429:11;24422:18;;24046:400;;;:::o;24452:377::-;24558:3;24586:39;24619:5;24586:39;:::i;:::-;24641:89;24723:6;24718:3;24641:89;:::i;:::-;24634:96;;24739:52;24784:6;24779:3;24772:4;24765:5;24761:16;24739:52;:::i;:::-;24816:6;24811:3;24807:16;24800:23;;24562:267;24452:377;;;;:::o;24835:155::-;24975:7;24971:1;24963:6;24959:14;24952:31;24835:155;:::o;24996:400::-;25156:3;25177:84;25259:1;25254:3;25177:84;:::i;:::-;25170:91;;25270:93;25359:3;25270:93;:::i;:::-;25388:1;25383:3;25379:11;25372:18;;24996:400;;;:::o;25402:961::-;25781:3;25803:92;25891:3;25882:6;25803:92;:::i;:::-;25796:99;;25912:148;26056:3;25912:148;:::i;:::-;25905:155;;26077:95;26168:3;26159:6;26077:95;:::i;:::-;26070:102;;26189:148;26333:3;26189:148;:::i;:::-;26182:155;;26354:3;26347:10;;25402:961;;;;;:::o;26369:225::-;26509:34;26505:1;26497:6;26493:14;26486:58;26578:8;26573:2;26565:6;26561:15;26554:33;26369:225;:::o;26600:366::-;26742:3;26763:67;26827:2;26822:3;26763:67;:::i;:::-;26756:74;;26839:93;26928:3;26839:93;:::i;:::-;26957:2;26952:3;26948:12;26941:19;;26600:366;;;:::o;26972:419::-;27138:4;27176:2;27165:9;27161:18;27153:26;;27225:9;27219:4;27215:20;27211:1;27200:9;27196:17;27189:47;27253:131;27379:4;27253:131;:::i;:::-;27245:139;;26972:419;;;:::o;27397:179::-;27537:31;27533:1;27525:6;27521:14;27514:55;27397:179;:::o;27582:366::-;27724:3;27745:67;27809:2;27804:3;27745:67;:::i;:::-;27738:74;;27821:93;27910:3;27821:93;:::i;:::-;27939:2;27934:3;27930:12;27923:19;;27582:366;;;:::o;27954:419::-;28120:4;28158:2;28147:9;28143:18;28135:26;;28207:9;28201:4;28197:20;28193:1;28182:9;28178:17;28171:47;28235:131;28361:4;28235:131;:::i;:::-;28227:139;;27954:419;;;:::o;28379:147::-;28480:11;28517:3;28502:18;;28379:147;;;;:::o;28532:114::-;;:::o;28652:398::-;28811:3;28832:83;28913:1;28908:3;28832:83;:::i;:::-;28825:90;;28924:93;29013:3;28924:93;:::i;:::-;29042:1;29037:3;29033:11;29026:18;;28652:398;;;:::o;29056:379::-;29240:3;29262:147;29405:3;29262:147;:::i;:::-;29255:154;;29426:3;29419:10;;29056:379;;;:::o;29441:245::-;29581:34;29577:1;29569:6;29565:14;29558:58;29650:28;29645:2;29637:6;29633:15;29626:53;29441:245;:::o;29692:366::-;29834:3;29855:67;29919:2;29914:3;29855:67;:::i;:::-;29848:74;;29931:93;30020:3;29931:93;:::i;:::-;30049:2;30044:3;30040:12;30033:19;;29692:366;;;:::o;30064:419::-;30230:4;30268:2;30257:9;30253:18;30245:26;;30317:9;30311:4;30307:20;30303:1;30292:9;30288:17;30281:47;30345:131;30471:4;30345:131;:::i;:::-;30337:139;;30064:419;;;:::o;30489:98::-;30540:6;30574:5;30568:12;30558:22;;30489:98;;;:::o;30593:168::-;30676:11;30710:6;30705:3;30698:19;30750:4;30745:3;30741:14;30726:29;;30593:168;;;;:::o;30767:360::-;30853:3;30881:38;30913:5;30881:38;:::i;:::-;30935:70;30998:6;30993:3;30935:70;:::i;:::-;30928:77;;31014:52;31059:6;31054:3;31047:4;31040:5;31036:16;31014:52;:::i;:::-;31091:29;31113:6;31091:29;:::i;:::-;31086:3;31082:39;31075:46;;30857:270;30767:360;;;;:::o;31133:640::-;31328:4;31366:3;31355:9;31351:19;31343:27;;31380:71;31448:1;31437:9;31433:17;31424:6;31380:71;:::i;:::-;31461:72;31529:2;31518:9;31514:18;31505:6;31461:72;:::i;:::-;31543;31611:2;31600:9;31596:18;31587:6;31543:72;:::i;:::-;31662:9;31656:4;31652:20;31647:2;31636:9;31632:18;31625:48;31690:76;31761:4;31752:6;31690:76;:::i;:::-;31682:84;;31133:640;;;;;;;:::o;31779:141::-;31835:5;31866:6;31860:13;31851:22;;31882:32;31908:5;31882:32;:::i;:::-;31779:141;;;;:::o;31926:349::-;31995:6;32044:2;32032:9;32023:7;32019:23;32015:32;32012:119;;;32050:79;;:::i;:::-;32012:119;32170:1;32195:63;32250:7;32241:6;32230:9;32226:22;32195:63;:::i;:::-;32185:73;;32141:127;31926:349;;;;:::o;32281:233::-;32320:3;32343:24;32361:5;32343:24;:::i;:::-;32334:33;;32389:66;32382:5;32379:77;32376:103;;;32459:18;;:::i;:::-;32376:103;32506:1;32499:5;32495:13;32488:20;;32281:233;;;:::o;32520:180::-;32568:77;32565:1;32558:88;32665:4;32662:1;32655:15;32689:4;32686:1;32679:15;32706:185;32746:1;32763:20;32781:1;32763:20;:::i;:::-;32758:25;;32797:20;32815:1;32797:20;:::i;:::-;32792:25;;32836:1;32826:35;;32841:18;;:::i;:::-;32826:35;32883:1;32880;32876:9;32871:14;;32706:185;;;;:::o;32897:191::-;32937:4;32957:20;32975:1;32957:20;:::i;:::-;32952:25;;32991:20;33009:1;32991:20;:::i;:::-;32986:25;;33030:1;33027;33024:8;33021:34;;;33035:18;;:::i;:::-;33021:34;33080:1;33077;33073:9;33065:17;;32897:191;;;;:::o;33094:176::-;33126:1;33143:20;33161:1;33143:20;:::i;:::-;33138:25;;33177:20;33195:1;33177:20;:::i;:::-;33172:25;;33216:1;33206:35;;33221:18;;:::i;:::-;33206:35;33262:1;33259;33255:9;33250:14;;33094:176;;;;:::o;33276:180::-;33324:77;33321:1;33314:88;33421:4;33418:1;33411:15;33445:4;33442:1;33435:15
Swarm Source
ipfs://6fed63051047d620cd0806883c8a27f2f4fa81465f62b72c4fc4ea849b7bd935
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.