Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,818 OM
Holders
272
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OrdinalMona
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-19 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /** * @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.19; /** * @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.19; /** * @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.19; /** * @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); } } pragma solidity ^0.8.19; /** * @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.19; /** * @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.19; /** * @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.19; /** * @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.19; /** * @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.19; /** * @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); } pragma solidity ^0.8.19; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if ( to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.19; contract OrdinalMona is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; bool public burn; uint256 public state; uint256 public free = 0; uint256 public maxMint = 25; string public _baseTokenURI; uint256 public maxFreeMint = 10; uint256 public btcAddress = 62; uint256 public maxSupply = 3000; uint256 public freeSupply = 2000; uint256 public cost = 0.002 ether; uint256 public inscriptionFee = 0 ether; address private burnAddress = 0x000000000000000000000000000000000000dEaD; mapping(uint256 => string) public migration; event MIGRATE(uint256 tokenId, string destination); constructor() ERC721A("Ordinal Mona", "OM") {} function mint(uint256 _mintAmount) public payable nonReentrant { require(state == 2, "Inactive"); require( _mintAmount > 0 && _mintAmount <= maxMint, "Invalid amount" ); require( totalSupply() + _mintAmount <= maxSupply, "Max supply" ); require(msg.value >= cost * _mintAmount, "Insufficient ETH"); _safeMint(_msgSender(), _mintAmount); } function freeMint(uint256 _mintAmount) public nonReentrant { require(state == 1, "Inactive"); require( _mintAmount > 0 && _mintAmount <= maxFreeMint, "Invalid amount" ); require(free + _mintAmount <= freeSupply, "Free supply"); require( totalSupply() + _mintAmount <= maxSupply, "Max supply" ); _safeMint(_msgSender(), _mintAmount); free += _mintAmount; } function migrateMona(uint256 tokenId, string memory destination) public payable nonReentrant { require(burn, "Inactive"); require(msg.value >= inscriptionFee, "Fee invalid"); require( bytes(destination).length == btcAddress, "Please use a taproot address" ); safeTransferFrom(msg.sender, burnAddress, tokenId); migration[tokenId] = destination; emit MIGRATE(tokenId, destination); } function adminMint(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setBurn(bool _state) public onlyOwner { burn = _state; } function setState(uint256 _state) public onlyOwner { state = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setFee(uint256 _fee) public onlyOwner { inscriptionFee = _fee; } function setMaxMintPerTx(uint256 _amount) public onlyOwner { maxMint = _amount; } function setFreePerTx(uint256 _amount) public onlyOwner { maxFreeMint = _amount; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setFreeSupply(uint256 _freeSupply) public onlyOwner { freeSupply = _freeSupply; } function withdraw() public onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } function setBaseURI(string calldata baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI does not exist!"); return bytes(_baseTokenURI).length > 0 ? string( abi.encodePacked( _baseTokenURI, _tokenId.toString(), ".json" ) ) : ""; } }
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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"destination","type":"string"}],"name":"MIGRATE","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":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","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":"btcAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","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":[],"name":"inscriptionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"destination","type":"string"}],"name":"migrateMona","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"migration","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","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":"bool","name":"_state","type":"bool"}],"name":"setBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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
60806040526000600c8190556019600d55600a600f55603e601055610bb86011556107d060125566071afd498d0000601355601455601580546001600160a01b03191661dead1790553480156200005557600080fd5b506040518060400160405280600c81526020016b4f7264696e616c204d6f6e6160a01b815250604051806040016040528060028152602001614f4d60f01b8152508160029081620000a79190620001cb565b506003620000b68282620001cb565b5050600160005550620000c933620000d4565b600160095562000297565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200015157607f821691505b6020821081036200017257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c657600081815260208120601f850160051c81016020861015620001a15750805b601f850160051c820191505b81811015620001c257828155600101620001ad565b5050505b505050565b81516001600160401b03811115620001e757620001e762000126565b620001ff81620001f884546200013c565b8462000178565b602080601f8311600181146200023757600084156200021e5750858301515b600019600386901b1c1916600185901b178555620001c2565b600085815260208120601f198616915b82811015620002685788860151825594840194600190910190840162000247565b5085821015620002875787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61239180620002a76000396000f3fe60806040526004361061025c5760003560e01c80636f8b44b011610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb01146106a9578063e640d862146106bf578063e985e9c5146106df578063f2fde38b146106ff578063f676308a1461071f578063f7d76ae51461073f57600080fd5b8063b88d4fde1461061e578063bd55cf0d1461063e578063c19d93fb1461065e578063c87b56dd14610674578063cfc86f7b1461069457600080fd5b80638da5cb5b116101085780638da5cb5b1461058257806395d89b41146105a0578063a0712d68146105b5578063a22cb465146105c8578063a591252d146105e8578063a9e966b7146105fe57600080fd5b80636f8b44b0146104f757806370a0823114610517578063715018a6146105375780637501f7411461054c5780637c928fe91461056257600080fd5b806323b872dd116101dd57806344df8e70116101a157806344df8e701461044a57806355f804b314610464578063616cdb1e1461048457806362d9dee2146104a45780636352211e146104b757806369fe0e2d146104d757600080fd5b806323b872dd146103bf57806324a6ab0c146103df5780633ccfd60b146103f557806342842e0e1461040a57806344a0d68a1461042a57600080fd5b80630dc28efe116102245780630dc28efe146103325780631370128e1461035257806313faede61461037657806318160ddd1461038c5780631f439306146103a957600080fd5b806301ffc9a714610261578063027f28611461029657806306fdde03146102b8578063081812fc146102da578063095ea7b314610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004611b44565b610755565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b1366004611b68565b6107a7565b005b3480156102c457600080fd5b506102cd6107df565b60405161028d9190611bd1565b3480156102e657600080fd5b506102fa6102f5366004611b68565b610871565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102b661032d366004611c00565b6108b5565b34801561033e57600080fd5b506102b661034d366004611c2a565b610942565b34801561035e57600080fd5b50610368600c5481565b60405190815260200161028d565b34801561038257600080fd5b5061036860135481565b34801561039857600080fd5b506001546000540360001901610368565b3480156103b557600080fd5b5061036860145481565b3480156103cb57600080fd5b506102b66103da366004611c56565b61097a565b3480156103eb57600080fd5b5061036860125481565b34801561040157600080fd5b506102b6610985565b34801561041657600080fd5b506102b6610425366004611c56565b610a07565b34801561043657600080fd5b506102b6610445366004611b68565b610a22565b34801561045657600080fd5b50600a546102819060ff1681565b34801561047057600080fd5b506102b661047f366004611c92565b610a51565b34801561049057600080fd5b506102b661049f366004611b68565b610a88565b6102b66104b2366004611d8e565b610ab7565b3480156104c357600080fd5b506102fa6104d2366004611b68565b610c05565b3480156104e357600080fd5b506102b66104f2366004611b68565b610c17565b34801561050357600080fd5b506102b6610512366004611b68565b610c46565b34801561052357600080fd5b50610368610532366004611de8565b610c75565b34801561054357600080fd5b506102b6610cc3565b34801561055857600080fd5b50610368600d5481565b34801561056e57600080fd5b506102b661057d366004611b68565b610cf9565b34801561058e57600080fd5b506008546001600160a01b03166102fa565b3480156105ac57600080fd5b506102cd610e5e565b6102b66105c3366004611b68565b610e6d565b3480156105d457600080fd5b506102b66105e3366004611e13565b610fbc565b3480156105f457600080fd5b50610368600f5481565b34801561060a57600080fd5b506102b6610619366004611b68565b611051565b34801561062a57600080fd5b506102b6610639366004611e3d565b611080565b34801561064a57600080fd5b506102b6610659366004611eb8565b6110d1565b34801561066a57600080fd5b50610368600b5481565b34801561068057600080fd5b506102cd61068f366004611b68565b61110e565b3480156106a057600080fd5b506102cd6111b7565b3480156106b557600080fd5b5061036860115481565b3480156106cb57600080fd5b506102cd6106da366004611b68565b611245565b3480156106eb57600080fd5b506102816106fa366004611ed3565b61125e565b34801561070b57600080fd5b506102b661071a366004611de8565b61128c565b34801561072b57600080fd5b506102b661073a366004611b68565b611324565b34801561074b57600080fd5b5061036860105481565b60006001600160e01b031982166380ac58cd60e01b148061078657506001600160e01b03198216635b5e139f60e01b145b806107a157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107da5760405162461bcd60e51b81526004016107d190611efd565b60405180910390fd5b600f55565b6060600280546107ee90611f32565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90611f32565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b600061087c82611353565b610899576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108c082610c05565b9050806001600160a01b0316836001600160a01b0316036108f45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109145750610912813361125e565b155b15610932576040516367d9dca160e11b815260040160405180910390fd5b61093d83838361138c565b505050565b6008546001600160a01b0316331461096c5760405162461bcd60e51b81526004016107d190611efd565b61097681836113e8565b5050565b61093d838383611402565b6008546001600160a01b031633146109af5760405162461bcd60e51b81526004016107d190611efd565b604051600090339047908381818185875af1925050503d80600081146109f1576040519150601f19603f3d011682016040523d82523d6000602084013e6109f6565b606091505b5050905080610a0457600080fd5b50565b61093d83838360405180602001604052806000815250611080565b6008546001600160a01b03163314610a4c5760405162461bcd60e51b81526004016107d190611efd565b601355565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b81526004016107d190611efd565b600e61093d828483611fba565b6008546001600160a01b03163314610ab25760405162461bcd60e51b81526004016107d190611efd565b600d55565b600260095403610ad95760405162461bcd60e51b81526004016107d190612079565b6002600955600a5460ff16610b005760405162461bcd60e51b81526004016107d1906120b0565b601454341015610b405760405162461bcd60e51b815260206004820152600b60248201526a119959481a5b9d985b1a5960aa1b60448201526064016107d1565b601054815114610b925760405162461bcd60e51b815260206004820152601c60248201527f506c6561736520757365206120746170726f6f7420616464726573730000000060448201526064016107d1565b601554610baa9033906001600160a01b031684610a07565b6000828152601660205260409020610bc282826120d2565b507f0d438f054c4463ed08f08b5e8f58a976165849fa94b44ed7c9fb1924cfde84378282604051610bf4929190612191565b60405180910390a150506001600955565b6000610c10826115f0565b5192915050565b6008546001600160a01b03163314610c415760405162461bcd60e51b81526004016107d190611efd565b601455565b6008546001600160a01b03163314610c705760405162461bcd60e51b81526004016107d190611efd565b601155565b60006001600160a01b038216610c9e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ced5760405162461bcd60e51b81526004016107d190611efd565b610cf76000611717565b565b600260095403610d1b5760405162461bcd60e51b81526004016107d190612079565b6002600955600b54600114610d425760405162461bcd60e51b81526004016107d1906120b0565b600081118015610d545750600f548111155b610d915760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016107d1565b60125481600c54610da291906121c0565b1115610dde5760405162461bcd60e51b815260206004820152600b60248201526a4672656520737570706c7960a81b60448201526064016107d1565b6011546001546000548391900360001901610df991906121c0565b1115610e345760405162461bcd60e51b815260206004820152600a6024820152694d617820737570706c7960b01b60448201526064016107d1565b610e3f335b826113e8565b80600c6000828254610e5191906121c0565b9091555050600160095550565b6060600380546107ee90611f32565b600260095403610e8f5760405162461bcd60e51b81526004016107d190612079565b60026009819055600b5414610eb65760405162461bcd60e51b81526004016107d1906120b0565b600081118015610ec85750600d548111155b610f055760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016107d1565b6011546001546000548391900360001901610f2091906121c0565b1115610f5b5760405162461bcd60e51b815260206004820152600a6024820152694d617820737570706c7960b01b60448201526064016107d1565b80601354610f6991906121d3565b341015610fab5760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b60448201526064016107d1565b610fb433610e39565b506001600955565b336001600160a01b03831603610fe55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461107b5760405162461bcd60e51b81526004016107d190611efd565b600b55565b61108b848484611402565b6001600160a01b0383163b151580156110ad57506110ab84848484611769565b155b156110cb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110fb5760405162461bcd60e51b81526004016107d190611efd565b600a805460ff1916911515919091179055565b606061111982611353565b61115b5760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b60448201526064016107d1565b6000600e805461116a90611f32565b90501161118657604051806020016040528060008152506107a1565b600e61119183611855565b6040516020016111a29291906121ea565b60405160208183030381529060405292915050565b600e80546111c490611f32565b80601f01602080910402602001604051908101604052809291908181526020018280546111f090611f32565b801561123d5780601f106112125761010080835404028352916020019161123d565b820191906000526020600020905b81548152906001019060200180831161122057829003601f168201915b505050505081565b601660205260009081526040902080546111c490611f32565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146112b65760405162461bcd60e51b81526004016107d190611efd565b6001600160a01b03811661131b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d1565b610a0481611717565b6008546001600160a01b0316331461134e5760405162461bcd60e51b81526004016107d190611efd565b601255565b600081600111158015611367575060005482105b80156107a1575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610976828260405180602001604052806000815250611955565b600061140d826115f0565b9050836001600160a01b031681600001516001600160a01b0316146114445760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114625750611462853361125e565b8061147d57503361147284610871565b6001600160a01b0316145b90508061149d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114c457604051633a954ecd60e21b815260040160405180910390fd5b6114d06000848761138c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115a45760005482146115a457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611620575060005481105b156116fe57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116fc5780516001600160a01b031615611693579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156116f7579392505050565b611693565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061179e903390899088908890600401612281565b6020604051808303816000875af19250505080156117d9575060408051601f3d908101601f191682019092526117d6918101906122be565b60015b611837573d808015611807576040519150601f19603f3d011682016040523d82523d6000602084013e61180c565b606091505b50805160000361182f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361187c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118a65780611890816122db565b915061189f9050600a8361230a565b9150611880565b6000816001600160401b038111156118c0576118c0611d03565b6040519080825280601f01601f1916602001820160405280156118ea576020820181803683370190505b5090505b841561184d576118ff60018361231e565b915061190c600a86612331565b6119179060306121c0565b60f81b81838151811061192c5761192c612345565b60200101906001600160f81b031916908160001a90535061194e600a8661230a565b94506118ee565b61093d83838360016000546001600160a01b03851661198657604051622e076360e81b815260040160405180910390fd5b836000036119a75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a5857506001600160a01b0387163b15155b15611ae0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aa96000888480600101955088611769565b611ac6576040516368d2bf6b60e11b815260040160405180910390fd5b808203611a5e578260005414611adb57600080fd5b611b25565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611ae1575b506000556115e9565b6001600160e01b031981168114610a0457600080fd5b600060208284031215611b5657600080fd5b8135611b6181611b2e565b9392505050565b600060208284031215611b7a57600080fd5b5035919050565b60005b83811015611b9c578181015183820152602001611b84565b50506000910152565b60008151808452611bbd816020860160208601611b81565b601f01601f19169290920160200192915050565b602081526000611b616020830184611ba5565b80356001600160a01b0381168114611bfb57600080fd5b919050565b60008060408385031215611c1357600080fd5b611c1c83611be4565b946020939093013593505050565b60008060408385031215611c3d57600080fd5b82359150611c4d60208401611be4565b90509250929050565b600080600060608486031215611c6b57600080fd5b611c7484611be4565b9250611c8260208501611be4565b9150604084013590509250925092565b60008060208385031215611ca557600080fd5b82356001600160401b0380821115611cbc57600080fd5b818501915085601f830112611cd057600080fd5b813581811115611cdf57600080fd5b866020828501011115611cf157600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611d3357611d33611d03565b604051601f8501601f19908116603f01168101908282118183101715611d5b57611d5b611d03565b81604052809350858152868686011115611d7457600080fd5b858560208301376000602087830101525050509392505050565b60008060408385031215611da157600080fd5b8235915060208301356001600160401b03811115611dbe57600080fd5b8301601f81018513611dcf57600080fd5b611dde85823560208401611d19565b9150509250929050565b600060208284031215611dfa57600080fd5b611b6182611be4565b80358015158114611bfb57600080fd5b60008060408385031215611e2657600080fd5b611e2f83611be4565b9150611c4d60208401611e03565b60008060008060808587031215611e5357600080fd5b611e5c85611be4565b9350611e6a60208601611be4565b92506040850135915060608501356001600160401b03811115611e8c57600080fd5b8501601f81018713611e9d57600080fd5b611eac87823560208401611d19565b91505092959194509250565b600060208284031215611eca57600080fd5b611b6182611e03565b60008060408385031215611ee657600080fd5b611eef83611be4565b9150611c4d60208401611be4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f4657607f821691505b602082108103611f6657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561093d57600081815260208120601f850160051c81016020861015611f935750805b601f850160051c820191505b81811015611fb257828155600101611f9f565b505050505050565b6001600160401b03831115611fd157611fd1611d03565b611fe583611fdf8354611f32565b83611f6c565b6000601f84116001811461201957600085156120015750838201355b600019600387901b1c1916600186901b1783556115e9565b600083815260209020601f19861690835b8281101561204a578685013582556020948501946001909201910161202a565b50868210156120675760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b602080825260089082015267496e61637469766560c01b604082015260600190565b81516001600160401b038111156120eb576120eb611d03565b6120ff816120f98454611f32565b84611f6c565b602080601f831160018114612134576000841561211c5750858301515b600019600386901b1c1916600185901b178555611fb2565b600085815260208120601f198616915b8281101561216357888601518255948401946001909101908401612144565b50858210156121815787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b82815260406020820152600061184d6040830184611ba5565b634e487b7160e01b600052601160045260246000fd5b808201808211156107a1576107a16121aa565b80820281158282048414176107a1576107a16121aa565b60008084546121f881611f32565b60018281168015612210576001811461222557612254565b60ff1984168752821515830287019450612254565b8860005260208060002060005b8581101561224b5781548a820152908401908201612232565b50505082870194505b505050508351612268818360208801611b81565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122b490830184611ba5565b9695505050505050565b6000602082840312156122d057600080fd5b8151611b6181611b2e565b6000600182016122ed576122ed6121aa565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612319576123196122f4565b500490565b818103818111156107a1576107a16121aa565b600082612340576123406122f4565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207567f3e7a3f2bb15bb672cc04329b9637a1563366e892c92f0348447dfdd7d4864736f6c63430008130033
Deployed Bytecode
0x60806040526004361061025c5760003560e01c80636f8b44b011610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb01146106a9578063e640d862146106bf578063e985e9c5146106df578063f2fde38b146106ff578063f676308a1461071f578063f7d76ae51461073f57600080fd5b8063b88d4fde1461061e578063bd55cf0d1461063e578063c19d93fb1461065e578063c87b56dd14610674578063cfc86f7b1461069457600080fd5b80638da5cb5b116101085780638da5cb5b1461058257806395d89b41146105a0578063a0712d68146105b5578063a22cb465146105c8578063a591252d146105e8578063a9e966b7146105fe57600080fd5b80636f8b44b0146104f757806370a0823114610517578063715018a6146105375780637501f7411461054c5780637c928fe91461056257600080fd5b806323b872dd116101dd57806344df8e70116101a157806344df8e701461044a57806355f804b314610464578063616cdb1e1461048457806362d9dee2146104a45780636352211e146104b757806369fe0e2d146104d757600080fd5b806323b872dd146103bf57806324a6ab0c146103df5780633ccfd60b146103f557806342842e0e1461040a57806344a0d68a1461042a57600080fd5b80630dc28efe116102245780630dc28efe146103325780631370128e1461035257806313faede61461037657806318160ddd1461038c5780631f439306146103a957600080fd5b806301ffc9a714610261578063027f28611461029657806306fdde03146102b8578063081812fc146102da578063095ea7b314610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004611b44565b610755565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b1366004611b68565b6107a7565b005b3480156102c457600080fd5b506102cd6107df565b60405161028d9190611bd1565b3480156102e657600080fd5b506102fa6102f5366004611b68565b610871565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102b661032d366004611c00565b6108b5565b34801561033e57600080fd5b506102b661034d366004611c2a565b610942565b34801561035e57600080fd5b50610368600c5481565b60405190815260200161028d565b34801561038257600080fd5b5061036860135481565b34801561039857600080fd5b506001546000540360001901610368565b3480156103b557600080fd5b5061036860145481565b3480156103cb57600080fd5b506102b66103da366004611c56565b61097a565b3480156103eb57600080fd5b5061036860125481565b34801561040157600080fd5b506102b6610985565b34801561041657600080fd5b506102b6610425366004611c56565b610a07565b34801561043657600080fd5b506102b6610445366004611b68565b610a22565b34801561045657600080fd5b50600a546102819060ff1681565b34801561047057600080fd5b506102b661047f366004611c92565b610a51565b34801561049057600080fd5b506102b661049f366004611b68565b610a88565b6102b66104b2366004611d8e565b610ab7565b3480156104c357600080fd5b506102fa6104d2366004611b68565b610c05565b3480156104e357600080fd5b506102b66104f2366004611b68565b610c17565b34801561050357600080fd5b506102b6610512366004611b68565b610c46565b34801561052357600080fd5b50610368610532366004611de8565b610c75565b34801561054357600080fd5b506102b6610cc3565b34801561055857600080fd5b50610368600d5481565b34801561056e57600080fd5b506102b661057d366004611b68565b610cf9565b34801561058e57600080fd5b506008546001600160a01b03166102fa565b3480156105ac57600080fd5b506102cd610e5e565b6102b66105c3366004611b68565b610e6d565b3480156105d457600080fd5b506102b66105e3366004611e13565b610fbc565b3480156105f457600080fd5b50610368600f5481565b34801561060a57600080fd5b506102b6610619366004611b68565b611051565b34801561062a57600080fd5b506102b6610639366004611e3d565b611080565b34801561064a57600080fd5b506102b6610659366004611eb8565b6110d1565b34801561066a57600080fd5b50610368600b5481565b34801561068057600080fd5b506102cd61068f366004611b68565b61110e565b3480156106a057600080fd5b506102cd6111b7565b3480156106b557600080fd5b5061036860115481565b3480156106cb57600080fd5b506102cd6106da366004611b68565b611245565b3480156106eb57600080fd5b506102816106fa366004611ed3565b61125e565b34801561070b57600080fd5b506102b661071a366004611de8565b61128c565b34801561072b57600080fd5b506102b661073a366004611b68565b611324565b34801561074b57600080fd5b5061036860105481565b60006001600160e01b031982166380ac58cd60e01b148061078657506001600160e01b03198216635b5e139f60e01b145b806107a157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107da5760405162461bcd60e51b81526004016107d190611efd565b60405180910390fd5b600f55565b6060600280546107ee90611f32565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90611f32565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b600061087c82611353565b610899576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108c082610c05565b9050806001600160a01b0316836001600160a01b0316036108f45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109145750610912813361125e565b155b15610932576040516367d9dca160e11b815260040160405180910390fd5b61093d83838361138c565b505050565b6008546001600160a01b0316331461096c5760405162461bcd60e51b81526004016107d190611efd565b61097681836113e8565b5050565b61093d838383611402565b6008546001600160a01b031633146109af5760405162461bcd60e51b81526004016107d190611efd565b604051600090339047908381818185875af1925050503d80600081146109f1576040519150601f19603f3d011682016040523d82523d6000602084013e6109f6565b606091505b5050905080610a0457600080fd5b50565b61093d83838360405180602001604052806000815250611080565b6008546001600160a01b03163314610a4c5760405162461bcd60e51b81526004016107d190611efd565b601355565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b81526004016107d190611efd565b600e61093d828483611fba565b6008546001600160a01b03163314610ab25760405162461bcd60e51b81526004016107d190611efd565b600d55565b600260095403610ad95760405162461bcd60e51b81526004016107d190612079565b6002600955600a5460ff16610b005760405162461bcd60e51b81526004016107d1906120b0565b601454341015610b405760405162461bcd60e51b815260206004820152600b60248201526a119959481a5b9d985b1a5960aa1b60448201526064016107d1565b601054815114610b925760405162461bcd60e51b815260206004820152601c60248201527f506c6561736520757365206120746170726f6f7420616464726573730000000060448201526064016107d1565b601554610baa9033906001600160a01b031684610a07565b6000828152601660205260409020610bc282826120d2565b507f0d438f054c4463ed08f08b5e8f58a976165849fa94b44ed7c9fb1924cfde84378282604051610bf4929190612191565b60405180910390a150506001600955565b6000610c10826115f0565b5192915050565b6008546001600160a01b03163314610c415760405162461bcd60e51b81526004016107d190611efd565b601455565b6008546001600160a01b03163314610c705760405162461bcd60e51b81526004016107d190611efd565b601155565b60006001600160a01b038216610c9e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ced5760405162461bcd60e51b81526004016107d190611efd565b610cf76000611717565b565b600260095403610d1b5760405162461bcd60e51b81526004016107d190612079565b6002600955600b54600114610d425760405162461bcd60e51b81526004016107d1906120b0565b600081118015610d545750600f548111155b610d915760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016107d1565b60125481600c54610da291906121c0565b1115610dde5760405162461bcd60e51b815260206004820152600b60248201526a4672656520737570706c7960a81b60448201526064016107d1565b6011546001546000548391900360001901610df991906121c0565b1115610e345760405162461bcd60e51b815260206004820152600a6024820152694d617820737570706c7960b01b60448201526064016107d1565b610e3f335b826113e8565b80600c6000828254610e5191906121c0565b9091555050600160095550565b6060600380546107ee90611f32565b600260095403610e8f5760405162461bcd60e51b81526004016107d190612079565b60026009819055600b5414610eb65760405162461bcd60e51b81526004016107d1906120b0565b600081118015610ec85750600d548111155b610f055760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016107d1565b6011546001546000548391900360001901610f2091906121c0565b1115610f5b5760405162461bcd60e51b815260206004820152600a6024820152694d617820737570706c7960b01b60448201526064016107d1565b80601354610f6991906121d3565b341015610fab5760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b60448201526064016107d1565b610fb433610e39565b506001600955565b336001600160a01b03831603610fe55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461107b5760405162461bcd60e51b81526004016107d190611efd565b600b55565b61108b848484611402565b6001600160a01b0383163b151580156110ad57506110ab84848484611769565b155b156110cb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110fb5760405162461bcd60e51b81526004016107d190611efd565b600a805460ff1916911515919091179055565b606061111982611353565b61115b5760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b60448201526064016107d1565b6000600e805461116a90611f32565b90501161118657604051806020016040528060008152506107a1565b600e61119183611855565b6040516020016111a29291906121ea565b60405160208183030381529060405292915050565b600e80546111c490611f32565b80601f01602080910402602001604051908101604052809291908181526020018280546111f090611f32565b801561123d5780601f106112125761010080835404028352916020019161123d565b820191906000526020600020905b81548152906001019060200180831161122057829003601f168201915b505050505081565b601660205260009081526040902080546111c490611f32565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146112b65760405162461bcd60e51b81526004016107d190611efd565b6001600160a01b03811661131b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d1565b610a0481611717565b6008546001600160a01b0316331461134e5760405162461bcd60e51b81526004016107d190611efd565b601255565b600081600111158015611367575060005482105b80156107a1575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610976828260405180602001604052806000815250611955565b600061140d826115f0565b9050836001600160a01b031681600001516001600160a01b0316146114445760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114625750611462853361125e565b8061147d57503361147284610871565b6001600160a01b0316145b90508061149d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114c457604051633a954ecd60e21b815260040160405180910390fd5b6114d06000848761138c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115a45760005482146115a457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611620575060005481105b156116fe57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116fc5780516001600160a01b031615611693579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156116f7579392505050565b611693565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061179e903390899088908890600401612281565b6020604051808303816000875af19250505080156117d9575060408051601f3d908101601f191682019092526117d6918101906122be565b60015b611837573d808015611807576040519150601f19603f3d011682016040523d82523d6000602084013e61180c565b606091505b50805160000361182f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361187c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118a65780611890816122db565b915061189f9050600a8361230a565b9150611880565b6000816001600160401b038111156118c0576118c0611d03565b6040519080825280601f01601f1916602001820160405280156118ea576020820181803683370190505b5090505b841561184d576118ff60018361231e565b915061190c600a86612331565b6119179060306121c0565b60f81b81838151811061192c5761192c612345565b60200101906001600160f81b031916908160001a90535061194e600a8661230a565b94506118ee565b61093d83838360016000546001600160a01b03851661198657604051622e076360e81b815260040160405180910390fd5b836000036119a75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a5857506001600160a01b0387163b15155b15611ae0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aa96000888480600101955088611769565b611ac6576040516368d2bf6b60e11b815260040160405180910390fd5b808203611a5e578260005414611adb57600080fd5b611b25565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611ae1575b506000556115e9565b6001600160e01b031981168114610a0457600080fd5b600060208284031215611b5657600080fd5b8135611b6181611b2e565b9392505050565b600060208284031215611b7a57600080fd5b5035919050565b60005b83811015611b9c578181015183820152602001611b84565b50506000910152565b60008151808452611bbd816020860160208601611b81565b601f01601f19169290920160200192915050565b602081526000611b616020830184611ba5565b80356001600160a01b0381168114611bfb57600080fd5b919050565b60008060408385031215611c1357600080fd5b611c1c83611be4565b946020939093013593505050565b60008060408385031215611c3d57600080fd5b82359150611c4d60208401611be4565b90509250929050565b600080600060608486031215611c6b57600080fd5b611c7484611be4565b9250611c8260208501611be4565b9150604084013590509250925092565b60008060208385031215611ca557600080fd5b82356001600160401b0380821115611cbc57600080fd5b818501915085601f830112611cd057600080fd5b813581811115611cdf57600080fd5b866020828501011115611cf157600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611d3357611d33611d03565b604051601f8501601f19908116603f01168101908282118183101715611d5b57611d5b611d03565b81604052809350858152868686011115611d7457600080fd5b858560208301376000602087830101525050509392505050565b60008060408385031215611da157600080fd5b8235915060208301356001600160401b03811115611dbe57600080fd5b8301601f81018513611dcf57600080fd5b611dde85823560208401611d19565b9150509250929050565b600060208284031215611dfa57600080fd5b611b6182611be4565b80358015158114611bfb57600080fd5b60008060408385031215611e2657600080fd5b611e2f83611be4565b9150611c4d60208401611e03565b60008060008060808587031215611e5357600080fd5b611e5c85611be4565b9350611e6a60208601611be4565b92506040850135915060608501356001600160401b03811115611e8c57600080fd5b8501601f81018713611e9d57600080fd5b611eac87823560208401611d19565b91505092959194509250565b600060208284031215611eca57600080fd5b611b6182611e03565b60008060408385031215611ee657600080fd5b611eef83611be4565b9150611c4d60208401611be4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f4657607f821691505b602082108103611f6657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561093d57600081815260208120601f850160051c81016020861015611f935750805b601f850160051c820191505b81811015611fb257828155600101611f9f565b505050505050565b6001600160401b03831115611fd157611fd1611d03565b611fe583611fdf8354611f32565b83611f6c565b6000601f84116001811461201957600085156120015750838201355b600019600387901b1c1916600186901b1783556115e9565b600083815260209020601f19861690835b8281101561204a578685013582556020948501946001909201910161202a565b50868210156120675760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b602080825260089082015267496e61637469766560c01b604082015260600190565b81516001600160401b038111156120eb576120eb611d03565b6120ff816120f98454611f32565b84611f6c565b602080601f831160018114612134576000841561211c5750858301515b600019600386901b1c1916600185901b178555611fb2565b600085815260208120601f198616915b8281101561216357888601518255948401946001909101908401612144565b50858210156121815787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b82815260406020820152600061184d6040830184611ba5565b634e487b7160e01b600052601160045260246000fd5b808201808211156107a1576107a16121aa565b80820281158282048414176107a1576107a16121aa565b60008084546121f881611f32565b60018281168015612210576001811461222557612254565b60ff1984168752821515830287019450612254565b8860005260208060002060005b8581101561224b5781548a820152908401908201612232565b50505082870194505b505050508351612268818360208801611b81565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122b490830184611ba5565b9695505050505050565b6000602082840312156122d057600080fd5b8151611b6181611b2e565b6000600182016122ed576122ed6121aa565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612319576123196122f4565b500490565b818103818111156107a1576107a16121aa565b600082612340576123406122f4565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207567f3e7a3f2bb15bb672cc04329b9637a1563366e892c92f0348447dfdd7d4864736f6c63430008130033
Deployed Bytecode Sourcemap
48622:4222:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30175:355;;;;;;;;;;-1:-1:-1;30175:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30175:355:0;;;;;;;;51573:96;;;;;;;;;;-1:-1:-1;51573:96:0;;;;;:::i;:::-;;:::i;:::-;;33370:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34970:245::-;;;;;;;;;;-1:-1:-1;34970:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;34970:245:0;1533:203:1;34533:371:0;;;;;;;;;;-1:-1:-1;34533:371:0;;;;;:::i;:::-;;:::i;50840:151::-;;;;;;;;;;-1:-1:-1;50840:151:0;;;;;:::i;:::-;;:::i;48776:24::-;;;;;;;;;;;;;;;;;;;2583:25:1;;;2571:2;2556:18;48776:24:0;2437:177:1;49034:34:0;;;;;;;;;;;;;;;;29424:303;;;;;;;;;;-1:-1:-1;51091:1:0;29678:12;29468:7;29662:13;:28;-1:-1:-1;;29662:46:0;29424:303;;49075:40;;;;;;;;;;;;;;;;35958:170;;;;;;;;;;-1:-1:-1;35958:170:0;;;;;:::i;:::-;;:::i;48994:33::-;;;;;;;;;;;;;;;;51897:184;;;;;;;;;;;;;:::i;36199:185::-;;;;;;;;;;-1:-1:-1;36199:185:0;;;;;:::i;:::-;;:::i;51287:80::-;;;;;;;;;;-1:-1:-1;51287:80:0;;;;;:::i;:::-;;:::i;48721:20::-;;;;;;;;;;-1:-1:-1;48721:20:0;;;;;;;;52089:104;;;;;;;;;;-1:-1:-1;52089:104:0;;;;;:::i;:::-;;:::i;51470:95::-;;;;;;;;;;-1:-1:-1;51470:95:0;;;;;:::i;:::-;;:::i;50324:508::-;;;;;;:::i;:::-;;:::i;33178:125::-;;;;;;;;;;-1:-1:-1;33178:125:0;;;;;:::i;:::-;;:::i;51375:87::-;;;;;;;;;;-1:-1:-1;51375:87:0;;;;;:::i;:::-;;:::i;51677:100::-;;;;;;;;;;-1:-1:-1;51677:100:0;;;;;:::i;:::-;;:::i;30594:206::-;;;;;;;;;;-1:-1:-1;30594:206:0;;;;;:::i;:::-;;:::i;7443:103::-;;;;;;;;;;;;;:::i;48807:28::-;;;;;;;;;;;;;;;;49832:484;;;;;;;;;;-1:-1:-1;49832:484:0;;;;;:::i;:::-;;:::i;6792:87::-;;;;;;;;;;-1:-1:-1;6865:6:0;;-1:-1:-1;;;;;6865:6:0;6792:87;;33539:104;;;;;;;;;;;;;:::i;49366:458::-;;;;;;:::i;:::-;;:::i;35287:319::-;;;;;;;;;;-1:-1:-1;35287:319:0;;;;;:::i;:::-;;:::i;48878:32::-;;;;;;;;;;;;;;;;51195:84;;;;;;;;;;-1:-1:-1;51195:84:0;;;;;:::i;:::-;;:::i;36455:406::-;;;;;;;;;;-1:-1:-1;36455:406:0;;;;;:::i;:::-;;:::i;51108:79::-;;;;;;;;;;-1:-1:-1;51108:79:0;;;;;:::i;:::-;;:::i;48748:21::-;;;;;;;;;;;;;;;;52323:518;;;;;;;;;;-1:-1:-1;52323:518:0;;;;;:::i;:::-;;:::i;48842:29::-;;;;;;;;;;;;;:::i;48955:32::-;;;;;;;;;;;;;;;;49203:43;;;;;;;;;;-1:-1:-1;49203:43:0;;;;;:::i;:::-;;:::i;35677:214::-;;;;;;;;;;-1:-1:-1;35677:214:0;;;;;:::i;:::-;;:::i;7701:238::-;;;;;;;;;;-1:-1:-1;7701:238:0;;;;;:::i;:::-;;:::i;51785:104::-;;;;;;;;;;-1:-1:-1;51785:104:0;;;;;:::i;:::-;;:::i;48917:31::-;;;;;;;;;;;;;;;;30175:355;30322:4;-1:-1:-1;;;;;;30364:40:0;;-1:-1:-1;;;30364:40:0;;:105;;-1:-1:-1;;;;;;;30421:48:0;;-1:-1:-1;;;30421:48:0;30364:105;:158;;;-1:-1:-1;;;;;;;;;;20108:40:0;;;30486:36;30344:178;30175:355;-1:-1:-1;;30175:355:0:o;51573:96::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;;;;;;;;;51640:11:::1;:21:::0;51573:96::o;33370:100::-;33424:13;33457:5;33450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33370:100;:::o;34970:245::-;35074:7;35104:16;35112:7;35104;:16::i;:::-;35099:64;;35129:34;;-1:-1:-1;;;35129:34:0;;;;;;;;;;;35099:64;-1:-1:-1;35183:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35183:24:0;;34970:245::o;34533:371::-;34606:13;34622:24;34638:7;34622:15;:24::i;:::-;34606:40;;34667:5;-1:-1:-1;;;;;34661:11:0;:2;-1:-1:-1;;;;;34661:11:0;;34657:48;;34681:24;;-1:-1:-1;;;34681:24:0;;;;;;;;;;;34657:48;5574:10;-1:-1:-1;;;;;34722:21:0;;;;;;:63;;-1:-1:-1;34748:37:0;34765:5;5574:10;35677:214;:::i;34748:37::-;34747:38;34722:63;34718:138;;;34809:35;;-1:-1:-1;;;34809:35:0;;;;;;;;;;;34718:138;34868:28;34877:2;34881:7;34890:5;34868:8;:28::i;:::-;34595:309;34533:371;;:::o;50840:151::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50950:33:::1;50960:9;50971:11;50950:9;:33::i;:::-;50840:151:::0;;:::o;35958:170::-;36092:28;36102:4;36108:2;36112:7;36092:9;:28::i;51897:184::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51964:82:::1;::::0;51946:12:::1;::::0;51972:10:::1;::::0;52010:21:::1;::::0;51946:12;51964:82;51946:12;51964:82;52010:21;51972:10;51964:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51945:101;;;52065:7;52057:16;;;::::0;::::1;;51934:147;51897:184::o:0;36199:185::-;36337:39;36354:4;36360:2;36364:7;36337:39;;;;;;;;;;;;:16;:39::i;51287:80::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51347:4:::1;:12:::0;51287:80::o;52089:104::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;52162:13:::1;:23;52178:7:::0;;52162:13;:23:::1;:::i;51470:95::-:0;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51540:7:::1;:17:::0;51470:95::o;50324:508::-;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;;;;;;:::i;:::-;1714:1;2445:7;:18;50468:4:::1;::::0;::::1;;50460:25;;;;-1:-1:-1::0;;;50460:25:0::1;;;;;;;:::i;:::-;50517:14;;50504:9;:27;;50496:51;;;::::0;-1:-1:-1;;;50496:51:0;;10491:2:1;50496:51:0::1;::::0;::::1;10473:21:1::0;10530:2;10510:18;;;10503:30;-1:-1:-1;;;10549:18:1;;;10542:41;10600:18;;50496:51:0::1;10289:335:1::0;50496:51:0::1;50609:10;;50586:11;50580:25;:39;50558:117;;;::::0;-1:-1:-1;;;50558:117:0;;10831:2:1;50558:117:0::1;::::0;::::1;10813:21:1::0;10870:2;10850:18;;;10843:30;10909;10889:18;;;10882:58;10957:18;;50558:117:0::1;10629:352:1::0;50558:117:0::1;50715:11;::::0;50686:50:::1;::::0;50703:10:::1;::::0;-1:-1:-1;;;;;50715:11:0::1;50728:7:::0;50686:16:::1;:50::i;:::-;50747:18;::::0;;;:9:::1;:18;::::0;;;;:32:::1;50768:11:::0;50747:18;:32:::1;:::i;:::-;;50795:29;50803:7;50812:11;50795:29;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;1670:1:0;2624:7;:22;50324:508::o;33178:125::-;33242:7;33269:21;33282:7;33269:12;:21::i;:::-;:26;;33178:125;-1:-1:-1;;33178:125:0:o;51375:87::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51433:14:::1;:21:::0;51375:87::o;51677:100::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51747:9:::1;:22:::0;51677:100::o;30594:206::-;30658:7;-1:-1:-1;;;;;30682:19:0;;30678:60;;30710:28;;-1:-1:-1;;;30710:28:0;;;;;;;;;;;30678:60;-1:-1:-1;;;;;;30764:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30764:27:0;;30594:206::o;7443:103::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;7508:30:::1;7535:1;7508:18;:30::i;:::-;7443:103::o:0;49832:484::-;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;;;;;;:::i;:::-;1714:1;2445:7;:18;49910:5:::1;::::0;49919:1:::1;49910:10;49902:31;;;;-1:-1:-1::0;;;49902:31:0::1;;;;;;;:::i;:::-;49980:1;49966:11;:15;:45;;;;;50000:11;;49985;:26;;49966:45;49944:109;;;::::0;-1:-1:-1;;;49944:109:0;;12841:2:1;49944:109:0::1;::::0;::::1;12823:21:1::0;12880:2;12860:18;;;12853:30;-1:-1:-1;;;12899:18:1;;;12892:44;12953:18;;49944:109:0::1;12639:338:1::0;49944:109:0::1;50094:10;;50079:11;50072:4;;:18;;;;:::i;:::-;:32;;50064:56;;;::::0;-1:-1:-1;;;50064:56:0;;13446:2:1;50064:56:0::1;::::0;::::1;13428:21:1::0;13485:2;13465:18;;;13458:30;-1:-1:-1;;;13504:18:1;;;13497:41;13555:18;;50064:56:0::1;13244:335:1::0;50064:56:0::1;50184:9;::::0;51091:1;29678:12;29468:7;29662:13;50169:11;;29662:28;;-1:-1:-1;;29662:46:0;50153:27:::1;;;;:::i;:::-;:40;;50131:100;;;::::0;-1:-1:-1;;;50131:100:0;;13786:2:1;50131:100:0::1;::::0;::::1;13768:21:1::0;13825:2;13805:18;;;13798:30;-1:-1:-1;;;13844:18:1;;;13837:40;13894:18;;50131:100:0::1;13584:334:1::0;50131:100:0::1;50242:36;5574:10:::0;50252:12:::1;50266:11;50242:9;:36::i;:::-;50297:11;50289:4;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1670:1:0;2624:7;:22;-1:-1:-1;49832:484:0:o;33539:104::-;33595:13;33628:7;33621:14;;;;;:::i;49366:458::-;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;;;;;;:::i;:::-;1714:1;2445:7;:18;;;49448:5:::1;::::0;:10:::1;49440:31;;;;-1:-1:-1::0;;;49440:31:0::1;;;;;;;:::i;:::-;49518:1;49504:11;:15;:41;;;;;49538:7;;49523:11;:22;;49504:41;49482:105;;;::::0;-1:-1:-1;;;49482:105:0;;12841:2:1;49482:105:0::1;::::0;::::1;12823:21:1::0;12880:2;12860:18;;;12853:30;-1:-1:-1;;;12899:18:1;;;12892:44;12953:18;;49482:105:0::1;12639:338:1::0;49482:105:0::1;49651:9;::::0;51091:1;29678:12;29468:7;29662:13;49636:11;;29662:28;;-1:-1:-1;;29662:46:0;49620:27:::1;;;;:::i;:::-;:40;;49598:100;;;::::0;-1:-1:-1;;;49598:100:0;;13786:2:1;49598:100:0::1;::::0;::::1;13768:21:1::0;13825:2;13805:18;;;13798:30;-1:-1:-1;;;13844:18:1;;;13837:40;13894:18;;49598:100:0::1;13584:334:1::0;49598:100:0::1;49737:11;49730:4;;:18;;;;:::i;:::-;49717:9;:31;;49709:60;;;::::0;-1:-1:-1;;;49709:60:0;;14298:2:1;49709:60:0::1;::::0;::::1;14280:21:1::0;14337:2;14317:18;;;14310:30;-1:-1:-1;;;14356:18:1;;;14349:46;14412:18;;49709:60:0::1;14096:340:1::0;49709:60:0::1;49780:36;5574:10:::0;49790:12:::1;5494:98:::0;49780:36:::1;-1:-1:-1::0;1670:1:0;2624:7;:22;49366:458::o;35287:319::-;5574:10;-1:-1:-1;;;;;35418:24:0;;;35414:54;;35451:17;;-1:-1:-1;;;35451:17:0;;;;;;;;;;;35414:54;5574:10;35481:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35481:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35481:53:0;;;;;;;;;;35550:48;;540:41:1;;;35481:42:0;;5574:10;35550:48;;513:18:1;35550:48:0;;;;;;;35287:319;;:::o;51195:84::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51257:5:::1;:14:::0;51195:84::o;36455:406::-;36622:28;36632:4;36638:2;36642:7;36622:9;:28::i;:::-;-1:-1:-1;;;;;36679:13:0;;9699:19;:23;;36679:89;;;;;36712:56;36743:4;36749:2;36753:7;36762:5;36712:30;:56::i;:::-;36711:57;36679:89;36661:193;;;36802:40;;-1:-1:-1;;;36802:40:0;;;;;;;;;;;36661:193;36455:406;;;;:::o;51108:79::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51166:4:::1;:13:::0;;-1:-1:-1;;51166:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51108:79::o;52323:518::-;52442:13;52481:17;52489:8;52481:7;:17::i;:::-;52473:49;;;;-1:-1:-1;;;52473:49:0;;14643:2:1;52473:49:0;;;14625:21:1;14682:2;14662:18;;;14655:30;-1:-1:-1;;;14701:18:1;;;14694:49;14760:18;;52473:49:0;14441:343:1;52473:49:0;52583:1;52559:13;52553:27;;;;;:::i;:::-;;;:31;:280;;;;;;;;;;;;;;;;;52676:13;52716:19;:8;:17;:19::i;:::-;52633:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52533:300;52323:518;-1:-1:-1;;52323:518:0:o;48842:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49203:43::-;;;;;;;;;;;;;;;;:::i;35677:214::-;-1:-1:-1;;;;;35848:25:0;;;35819:4;35848:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35677:214::o;7701:238::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7804:22:0;::::1;7782:110;;;::::0;-1:-1:-1;;;7782:110:0;;16183:2:1;7782:110:0::1;::::0;::::1;16165:21:1::0;16222:2;16202:18;;;16195:30;16261:34;16241:18;;;16234:62;-1:-1:-1;;;16312:18:1;;;16305:36;16358:19;;7782:110:0::1;15981:402:1::0;7782:110:0::1;7903:28;7922:8;7903:18;:28::i;51785:104::-:0;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51857:10:::1;:24:::0;51785:104::o;37116:213::-;37173:4;37229:7;51091:1;37210:26;;:66;;;;;37263:13;;37253:7;:23;37210:66;:111;;;;-1:-1:-1;;37294:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37294:27:0;;;;37293:28;;37116:213::o;45503:196::-;45618:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45618:29:0;-1:-1:-1;;;;;45618:29:0;;;;;;;;;45663:28;;45618:24;;45663:28;;;;;;;45503:196;;;:::o;37337:104::-;37406:27;37416:2;37420:8;37406:27;;;;;;;;;;;;:9;:27::i;40446:2130::-;40561:35;40599:21;40612:7;40599:12;:21::i;:::-;40561:59;;40659:4;-1:-1:-1;;;;;40637:26:0;:13;:18;;;-1:-1:-1;;;;;40637:26:0;;40633:67;;40672:28;;-1:-1:-1;;;40672:28:0;;;;;;;;;;;40633:67;40713:22;5574:10;-1:-1:-1;;;;;40739:20:0;;;;:73;;-1:-1:-1;40776:36:0;40793:4;5574:10;35677:214;:::i;40776:36::-;40739:126;;;-1:-1:-1;5574:10:0;40829:20;40841:7;40829:11;:20::i;:::-;-1:-1:-1;;;;;40829:36:0;;40739:126;40713:153;;40884:17;40879:66;;40910:35;;-1:-1:-1;;;40910:35:0;;;;;;;;;;;40879:66;-1:-1:-1;;;;;40960:16:0;;40956:52;;40985:23;;-1:-1:-1;;;40985:23:0;;;;;;;;;;;40956:52;41129:35;41146:1;41150:7;41159:4;41129:8;:35::i;:::-;-1:-1:-1;;;;;41460:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41460:31:0;;;-1:-1:-1;;;;;41460:31:0;;;-1:-1:-1;;41460:31:0;;;;;;;41506:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41506:29:0;;;;;;;;;;;41586:20;;;:11;:20;;;;;;41621:18;;-1:-1:-1;;;;;;41654:49:0;;;;-1:-1:-1;;;41687:15:0;41654:49;;;;;;;;;;41977:11;;42037:24;;;;;42080:13;;41586:20;;42037:24;;42080:13;42076:384;;42290:13;;42275:11;:28;42271:174;;42328:20;;42397:28;;;;-1:-1:-1;;;;;42371:54:0;-1:-1:-1;;;42371:54:0;-1:-1:-1;;;;;;42371:54:0;;;-1:-1:-1;;;;;42328:20:0;;42371:54;;;;42271:174;41435:1036;;;42507:7;42503:2;-1:-1:-1;;;;;42488:27:0;42497:4;-1:-1:-1;;;;;42488:27:0;;;;;;;;;;;42526:42;40550:2026;;40446:2130;;;:::o;31975:1141::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32118:7:0;;51091:1;32167:23;;:47;;;;;32201:13;;32194:4;:20;32167:47;32163:886;;;32235:31;32269:17;;;:11;:17;;;;;;;;;32235:51;;;;;;;;;-1:-1:-1;;;;;32235:51:0;;;;-1:-1:-1;;;32235:51:0;;-1:-1:-1;;;;;32235:51:0;;;;;;;;-1:-1:-1;;;32235:51:0;;;;;;;;;;;;;;32305:729;;32355:14;;-1:-1:-1;;;;;32355:28:0;;32351:101;;32419:9;31975:1141;-1:-1:-1;;;31975:1141:0:o;32351:101::-;-1:-1:-1;;;32794:6:0;32839:17;;;;:11;:17;;;;;;;;;32827:29;;;;;;;;;-1:-1:-1;;;;;32827:29:0;;;;;-1:-1:-1;;;32827:29:0;;-1:-1:-1;;;;;32827:29:0;;;;;;;;-1:-1:-1;;;32827:29:0;;;;;;;;;;;;;32887:28;32883:109;;32955:9;31975:1141;-1:-1:-1;;;31975:1141:0:o;32883:109::-;32754:261;;;32216:833;32163:886;33077:31;;-1:-1:-1;;;33077:31:0;;;;;;;;;;;8099:191;8192:6;;;-1:-1:-1;;;;;8209:17:0;;;-1:-1:-1;;;;;;8209:17:0;;;;;;;8242:40;;8192:6;;;8209:17;8192:6;;8242:40;;8173:16;;8242:40;8162:128;8099:191;:::o;46191:772::-;46388:155;;-1:-1:-1;;;46388:155:0;;46354:4;;-1:-1:-1;;;;;46388:36:0;;;;;:155;;5574:10;;46474:4;;46497:7;;46523:5;;46388:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46388:155:0;;;;;;;;-1:-1:-1;;46388:155:0;;;;;;;;;;;;:::i;:::-;;;46371:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46714:6;:13;46731:1;46714:18;46710:235;;46760:40;;-1:-1:-1;;;46760:40:0;;;;;;;;;;;46710:235;46903:6;46897:13;46888:6;46884:2;46880:15;46873:38;46371:585;-1:-1:-1;;;;;;46599:55:0;-1:-1:-1;;;46599:55:0;;-1:-1:-1;46371:585:0;46191:772;;;;;;:::o;3025:723::-;3081:13;3302:5;3311:1;3302:10;3298:53;;-1:-1:-1;;3329:10:0;;;;;;;;;;;;-1:-1:-1;;;3329:10:0;;;;;3025:723::o;3298:53::-;3376:5;3361:12;3417:78;3424:9;;3417:78;;3450:8;;;;:::i;:::-;;-1:-1:-1;3473:10:0;;-1:-1:-1;3481:2:0;3473:10;;:::i;:::-;;;3417:78;;;3505:19;3537:6;-1:-1:-1;;;;;3527:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3527:17:0;;3505:39;;3555:154;3562:10;;3555:154;;3589:11;3599:1;3589:11;;:::i;:::-;;-1:-1:-1;3658:10:0;3666:2;3658:5;:10;:::i;:::-;3645:24;;:2;:24;:::i;:::-;3632:39;;3615:6;3622;3615:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3615:56:0;;;;;;;;-1:-1:-1;3686:11:0;3695:2;3686:11;;:::i;:::-;;;3555:154;;37804:163;37927:32;37933:2;37937:8;37947:5;37954:4;38365:20;38388:13;-1:-1:-1;;;;;38416:16:0;;38412:48;;38441:19;;-1:-1:-1;;;38441:19:0;;;;;;;;;;;38412:48;38475:8;38487:1;38475:13;38471:44;;38497:18;;-1:-1:-1;;;38497:18:0;;;;;;;;;;;38471:44;-1:-1:-1;;;;;38866:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38925:49:0;;-1:-1:-1;;;;;38866:44:0;;;;;;;38925:49;;;;-1:-1:-1;;38866:44:0;;;;;;38925:49;;;;;;;;;;;;;;;;38991:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39041:66:0;;;;-1:-1:-1;;;39091:15:0;39041:66;;;;;;;;;;38991:25;39188:23;;;39232:4;:23;;;;-1:-1:-1;;;;;;39240:13:0;;9699:19;:23;;39240:15;39228:832;;;39276:505;39307:38;;39332:12;;-1:-1:-1;;;;;39307:38:0;;;39324:1;;39307:38;;39324:1;;39307:38;39399:212;39468:1;39501:2;39534:14;;;;;;39579:5;39399:30;:212::i;:::-;39368:365;;39669:40;;-1:-1:-1;;;39669:40:0;;;;;;;;;;;39368:365;39776:3;39760:12;:19;39276:505;;39862:12;39845:13;;:29;39841:43;;39876:8;;;39841:43;39228:832;;;39925:120;39956:40;;39981:14;;;;;-1:-1:-1;;;;;39956:40:0;;;39973:1;;39956:40;;39973:1;;39956:40;40040:3;40024:12;:19;39925:120;;39228:832;-1:-1:-1;40074:13:0;:28;40124:60;36455:406;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;777:250::-;862:1;872:113;886:6;883:1;880:13;872:113;;;962:11;;;956:18;943:11;;;936:39;908:2;901:10;872:113;;;-1:-1:-1;;1019:1:1;1001:16;;994:27;777:250::o;1032:271::-;1074:3;1112:5;1106:12;1139:6;1134:3;1127:19;1155:76;1224:6;1217:4;1212:3;1208:14;1201:4;1194:5;1190:16;1155:76;:::i;:::-;1285:2;1264:15;-1:-1:-1;;1260:29:1;1251:39;;;;1292:4;1247:50;;1032:271;-1:-1:-1;;1032:271:1:o;1308:220::-;1457:2;1446:9;1439:21;1420:4;1477:45;1518:2;1507:9;1503:18;1495:6;1477:45;:::i;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:::-;2246:6;2254;2307:2;2295:9;2286:7;2282:23;2278:32;2275:52;;;2323:1;2320;2313:12;2275:52;2359:9;2346:23;2336:33;;2388:38;2422:2;2411:9;2407:18;2388:38;:::i;:::-;2378:48;;2178:254;;;;;:::o;2619:328::-;2696:6;2704;2712;2765:2;2753:9;2744:7;2740:23;2736:32;2733:52;;;2781:1;2778;2771:12;2733:52;2804:29;2823:9;2804:29;:::i;:::-;2794:39;;2852:38;2886:2;2875:9;2871:18;2852:38;:::i;:::-;2842:48;;2937:2;2926:9;2922:18;2909:32;2899:42;;2619:328;;;;;:::o;2952:592::-;3023:6;3031;3084:2;3072:9;3063:7;3059:23;3055:32;3052:52;;;3100:1;3097;3090:12;3052:52;3140:9;3127:23;-1:-1:-1;;;;;3210:2:1;3202:6;3199:14;3196:34;;;3226:1;3223;3216:12;3196:34;3264:6;3253:9;3249:22;3239:32;;3309:7;3302:4;3298:2;3294:13;3290:27;3280:55;;3331:1;3328;3321:12;3280:55;3371:2;3358:16;3397:2;3389:6;3386:14;3383:34;;;3413:1;3410;3403:12;3383:34;3458:7;3453:2;3444:6;3440:2;3436:15;3432:24;3429:37;3426:57;;;3479:1;3476;3469:12;3426:57;3510:2;3502:11;;;;;3532:6;;-1:-1:-1;2952:592:1;;-1:-1:-1;;;;2952:592:1:o;3549:127::-;3610:10;3605:3;3601:20;3598:1;3591:31;3641:4;3638:1;3631:15;3665:4;3662:1;3655:15;3681:632;3746:5;-1:-1:-1;;;;;3817:2:1;3809:6;3806:14;3803:40;;;3823:18;;:::i;:::-;3898:2;3892:9;3866:2;3952:15;;-1:-1:-1;;3948:24:1;;;3974:2;3944:33;3940:42;3928:55;;;3998:18;;;4018:22;;;3995:46;3992:72;;;4044:18;;:::i;:::-;4084:10;4080:2;4073:22;4113:6;4104:15;;4143:6;4135;4128:22;4183:3;4174:6;4169:3;4165:16;4162:25;4159:45;;;4200:1;4197;4190:12;4159:45;4250:6;4245:3;4238:4;4230:6;4226:17;4213:44;4305:1;4298:4;4289:6;4281;4277:19;4273:30;4266:41;;;;3681:632;;;;;:::o;4318:519::-;4396:6;4404;4457:2;4445:9;4436:7;4432:23;4428:32;4425:52;;;4473:1;4470;4463:12;4425:52;4509:9;4496:23;4486:33;;4570:2;4559:9;4555:18;4542:32;-1:-1:-1;;;;;4589:6:1;4586:30;4583:50;;;4629:1;4626;4619:12;4583:50;4652:22;;4705:4;4697:13;;4693:27;-1:-1:-1;4683:55:1;;4734:1;4731;4724:12;4683:55;4757:74;4823:7;4818:2;4805:16;4800:2;4796;4792:11;4757:74;:::i;:::-;4747:84;;;4318:519;;;;;:::o;4842:186::-;4901:6;4954:2;4942:9;4933:7;4929:23;4925:32;4922:52;;;4970:1;4967;4960:12;4922:52;4993:29;5012:9;4993:29;:::i;5033:160::-;5098:20;;5154:13;;5147:21;5137:32;;5127:60;;5183:1;5180;5173:12;5198:254;5263:6;5271;5324:2;5312:9;5303:7;5299:23;5295:32;5292:52;;;5340:1;5337;5330:12;5292:52;5363:29;5382:9;5363:29;:::i;:::-;5353:39;;5411:35;5442:2;5431:9;5427:18;5411:35;:::i;5457:667::-;5552:6;5560;5568;5576;5629:3;5617:9;5608:7;5604:23;5600:33;5597:53;;;5646:1;5643;5636:12;5597:53;5669:29;5688:9;5669:29;:::i;:::-;5659:39;;5717:38;5751:2;5740:9;5736:18;5717:38;:::i;:::-;5707:48;;5802:2;5791:9;5787:18;5774:32;5764:42;;5857:2;5846:9;5842:18;5829:32;-1:-1:-1;;;;;5876:6:1;5873:30;5870:50;;;5916:1;5913;5906:12;5870:50;5939:22;;5992:4;5984:13;;5980:27;-1:-1:-1;5970:55:1;;6021:1;6018;6011:12;5970:55;6044:74;6110:7;6105:2;6092:16;6087:2;6083;6079:11;6044:74;:::i;:::-;6034:84;;;5457:667;;;;;;;:::o;6129:180::-;6185:6;6238:2;6226:9;6217:7;6213:23;6209:32;6206:52;;;6254:1;6251;6244:12;6206:52;6277:26;6293:9;6277:26;:::i;6314:260::-;6382:6;6390;6443:2;6431:9;6422:7;6418:23;6414:32;6411:52;;;6459:1;6456;6449:12;6411:52;6482:29;6501:9;6482:29;:::i;:::-;6472:39;;6530:38;6564:2;6553:9;6549:18;6530:38;:::i;6579:356::-;6781:2;6763:21;;;6800:18;;;6793:30;6859:34;6854:2;6839:18;;6832:62;6926:2;6911:18;;6579:356::o;6940:380::-;7019:1;7015:12;;;;7062;;;7083:61;;7137:4;7129:6;7125:17;7115:27;;7083:61;7190:2;7182:6;7179:14;7159:18;7156:38;7153:161;;7236:10;7231:3;7227:20;7224:1;7217:31;7271:4;7268:1;7261:15;7299:4;7296:1;7289:15;7153:161;;6940:380;;;:::o;7661:545::-;7763:2;7758:3;7755:11;7752:448;;;7799:1;7824:5;7820:2;7813:17;7869:4;7865:2;7855:19;7939:2;7927:10;7923:19;7920:1;7916:27;7910:4;7906:38;7975:4;7963:10;7960:20;7957:47;;;-1:-1:-1;7998:4:1;7957:47;8053:2;8048:3;8044:12;8041:1;8037:20;8031:4;8027:31;8017:41;;8108:82;8126:2;8119:5;8116:13;8108:82;;;8171:17;;;8152:1;8141:13;8108:82;;;8112:3;;;7661:545;;;:::o;8382:1206::-;-1:-1:-1;;;;;8501:3:1;8498:27;8495:53;;;8528:18;;:::i;:::-;8557:94;8647:3;8607:38;8639:4;8633:11;8607:38;:::i;:::-;8601:4;8557:94;:::i;:::-;8677:1;8702:2;8697:3;8694:11;8719:1;8714:616;;;;9374:1;9391:3;9388:93;;;-1:-1:-1;9447:19:1;;;9434:33;9388:93;-1:-1:-1;;8339:1:1;8335:11;;;8331:24;8327:29;8317:40;8363:1;8359:11;;;8314:57;9494:78;;8687:895;;8714:616;7608:1;7601:14;;;7645:4;7632:18;;-1:-1:-1;;8750:17:1;;;8851:9;8873:229;8887:7;8884:1;8881:14;8873:229;;;8976:19;;;8963:33;8948:49;;9083:4;9068:20;;;;9036:1;9024:14;;;;8903:12;8873:229;;;8877:3;9130;9121:7;9118:16;9115:159;;;9254:1;9250:6;9244:3;9238;9235:1;9231:11;9227:21;9223:34;9219:39;9206:9;9201:3;9197:19;9184:33;9180:79;9172:6;9165:95;9115:159;;;9317:1;9311:3;9308:1;9304:11;9300:19;9294:4;9287:33;8687:895;;8382:1206;;;:::o;9593:355::-;9795:2;9777:21;;;9834:2;9814:18;;;9807:30;9873:33;9868:2;9853:18;;9846:61;9939:2;9924:18;;9593:355::o;9953:331::-;10155:2;10137:21;;;10194:1;10174:18;;;10167:29;-1:-1:-1;;;10227:2:1;10212:18;;10205:38;10275:2;10260:18;;9953:331::o;10986:1352::-;11112:3;11106:10;-1:-1:-1;;;;;11131:6:1;11128:30;11125:56;;;11161:18;;:::i;:::-;11190:97;11280:6;11240:38;11272:4;11266:11;11240:38;:::i;:::-;11234:4;11190:97;:::i;:::-;11342:4;;11406:2;11395:14;;11423:1;11418:663;;;;12125:1;12142:6;12139:89;;;-1:-1:-1;12194:19:1;;;12188:26;12139:89;-1:-1:-1;;8339:1:1;8335:11;;;8331:24;8327:29;8317:40;8363:1;8359:11;;;8314:57;12241:81;;11388:944;;11418:663;7608:1;7601:14;;;7645:4;7632:18;;-1:-1:-1;;11454:20:1;;;11572:236;11586:7;11583:1;11580:14;11572:236;;;11675:19;;;11669:26;11654:42;;11767:27;;;;11735:1;11723:14;;;;11602:19;;11572:236;;;11576:3;11836:6;11827:7;11824:19;11821:201;;;11897:19;;;11891:26;-1:-1:-1;;11980:1:1;11976:14;;;11992:3;11972:24;11968:37;11964:42;11949:58;11934:74;;11821:201;-1:-1:-1;;;;;12068:1:1;12052:14;;;12048:22;12035:36;;-1:-1:-1;10986:1352:1:o;12343:291::-;12520:6;12509:9;12502:25;12563:2;12558;12547:9;12543:18;12536:30;12483:4;12583:45;12624:2;12613:9;12609:18;12601:6;12583:45;:::i;12982:127::-;13043:10;13038:3;13034:20;13031:1;13024:31;13074:4;13071:1;13064:15;13098:4;13095:1;13088:15;13114:125;13179:9;;;13200:10;;;13197:36;;;13213:18;;:::i;13923:168::-;13996:9;;;14027;;14044:15;;;14038:22;;14024:37;14014:71;;14065:18;;:::i;14789:1187::-;15066:3;15095:1;15128:6;15122:13;15158:36;15184:9;15158:36;:::i;:::-;15213:1;15230:18;;;15257:133;;;;15404:1;15399:356;;;;15223:532;;15257:133;-1:-1:-1;;15290:24:1;;15278:37;;15363:14;;15356:22;15344:35;;15335:45;;;-1:-1:-1;15257:133:1;;15399:356;15430:6;15427:1;15420:17;15460:4;15505:2;15502:1;15492:16;15530:1;15544:165;15558:6;15555:1;15552:13;15544:165;;;15636:14;;15623:11;;;15616:35;15679:16;;;;15573:10;;15544:165;;;15548:3;;;15738:6;15733:3;15729:16;15722:23;;15223:532;;;;;15786:6;15780:13;15802:68;15861:8;15856:3;15849:4;15841:6;15837:17;15802:68;:::i;:::-;-1:-1:-1;;;15892:18:1;;15919:22;;;15968:1;15957:13;;14789:1187;-1:-1:-1;;;;14789:1187:1:o;16388:489::-;-1:-1:-1;;;;;16657:15:1;;;16639:34;;16709:15;;16704:2;16689:18;;16682:43;16756:2;16741:18;;16734:34;;;16804:3;16799:2;16784:18;;16777:31;;;16582:4;;16825:46;;16851:19;;16843:6;16825:46;:::i;:::-;16817:54;16388:489;-1:-1:-1;;;;;;16388:489:1:o;16882:249::-;16951:6;17004:2;16992:9;16983:7;16979:23;16975:32;16972:52;;;17020:1;17017;17010:12;16972:52;17052:9;17046:16;17071:30;17095:5;17071:30;:::i;17136:135::-;17175:3;17196:17;;;17193:43;;17216:18;;:::i;:::-;-1:-1:-1;17263:1:1;17252:13;;17136:135::o;17276:127::-;17337:10;17332:3;17328:20;17325:1;17318:31;17368:4;17365:1;17358:15;17392:4;17389:1;17382:15;17408:120;17448:1;17474;17464:35;;17479:18;;:::i;:::-;-1:-1:-1;17513:9:1;;17408:120::o;17533:128::-;17600:9;;;17621:11;;;17618:37;;;17635:18;;:::i;17666:112::-;17698:1;17724;17714:35;;17729:18;;:::i;:::-;-1:-1:-1;17763:9:1;;17666:112::o;17783:127::-;17844:10;17839:3;17835:20;17832:1;17825:31;17875:4;17872:1;17865:15;17899:4;17896:1;17889:15
Swarm Source
ipfs://7567f3e7a3f2bb15bb672cc04329b9637a1563366e892c92f0348447dfdd7d48
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.