ETH Price: $3,070.58 (-6.73%)
Gas: 8 Gwei

Token

degenfrogs (df)
 

Overview

Max Total Supply

2,022 df

Holders

294

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 df
0x74fefa98d126a21075733dbe78960baeba230d62
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
degenfrogs

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-02
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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);

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/degenfrogs.sol



pragma solidity >=0.8.9 <0.9.0;







contract degenfrogs is ERC721A, Ownable, ReentrancyGuard {
    
    using Strings for uint256;
    
    
    uint256 private maxTotalTokens;
    
    //boring stuff
    string private _currentBaseURI;
    
    //How many reserved we keep. 
    uint private _reservedMints;
    
    //the max amount of reserved for the dev wallter for stuff and things.
    uint private maxReservedMints = 222;

    //amount of mints that each address has executed
    mapping(address => uint256) public mintsPerAddress;
    
    //current state os sale
    enum State {WeAreFrogs, YouWishYouCouldMint}

    State private saleState_;
    
    //declaring initial values for variables
    constructor() ERC721A('degenfrogs', 'df') {
        maxTotalTokens = 2022;

        _currentBaseURI = "ipfs://QmYXZ2b7z5sMX4JVMQQ9rtXArKvZWLJFaPWPk45dem2uf8/";
    }
    
    //in case somebody accidentaly sends funds or transaction to contract
    receive() payable external {}
    fallback() payable external {
        revert();
    }
    
    //visualize baseURI
    function _baseURI() internal view virtual override returns (string memory) {
        return _currentBaseURI;
    }
    
    //if we mess up, let's us fix it
    function changeBaseURI(string memory baseURI_) public onlyOwner {
        _currentBaseURI = baseURI_;
    }

    function setSaleState(uint newSaleState) public onlyOwner {
        require(newSaleState < 2, "Invalid Sale State!");
        if (newSaleState == 0) {
            saleState_ = State.WeAreFrogs;
        }
        else {
            saleState_ = State.YouWishYouCouldMint;
        }
    }

    //mint a @param number of NFTs in public sale
    function mint() public nonReentrant {
        require(msg.sender == tx.origin, "Sender is not the same as origin!");
        require(saleState_ == State.YouWishYouCouldMint, "Public Sale in not open yet!");
        require(totalSupply() < maxTotalTokens - (maxReservedMints - _reservedMints), "Not enough NFTs left to mint..");
        require(mintsPerAddress[msg.sender] == 0, "Wallet has already have minted an NFT!");

        _safeMint(msg.sender, 10);
        mintsPerAddress[msg.sender] += 10;
    }
    
    function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) {
        require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token");

        tokenId_ += 1;
        string memory baseURI = _baseURI();
        return string(abi.encodePacked(baseURI, tokenId_.toString(), ".json")); 
    }
    
    //reserved NFTs for creator
    function reservedMint(uint number, address recipient) public onlyOwner {
        require(_reservedMints + number <= maxReservedMints, "Not enough Reserved NFTs left to mint..");

        _safeMint(recipient, number);
        mintsPerAddress[recipient] += number;
        _reservedMints += number; 
        
    }
    
    //burn 
    function burnTokens() public onlyOwner {
        maxTotalTokens = totalSupply();
    }
    
    //
    function accountBalance() public onlyOwner view returns(uint) {
        return address(this).balance;
    }
    
    //retrieve all funds recieved from minting
    function withdraw() public onlyOwner {
        uint256 balance = accountBalance();
        require(balance > 0, 'No Funds to withdraw, Balance is 0');

        _withdraw(payable(msg.sender), balance); 
    }
    
    //send the percentage of funds to a shareholder´s wallet
    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }
    
    //to see the total amount of reserved mints left 
    function reservedMintsLeft() public onlyOwner view returns(uint) {
        return maxReservedMints - _reservedMints;
    }
    
    //see current state of sale
    //see the current state of the sale
    function saleState() public view returns(State){
        return saleState_;
    }
    
   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintsLeft","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum degenfrogs.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSaleState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260de600d553480156200001657600080fd5b506040518060400160405280600a81526020017f646567656e66726f6773000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f646600000000000000000000000000000000000000000000000000000000000081525081600290816200009491906200046e565b508060039081620000a691906200046e565b50620000b76200012160201b60201c565b6000819055505050620000df620000d36200012660201b60201c565b6200012e60201b60201c565b60016009819055506107e6600a8190555060405180606001604052806036815260200162003a2d60369139600b90816200011a91906200046e565b5062000555565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027657607f821691505b6020821081036200028c576200028b6200022e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002f67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002b7565b620003028683620002b7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200034f6200034962000343846200031a565b62000324565b6200031a565b9050919050565b6000819050919050565b6200036b836200032e565b620003836200037a8262000356565b848454620002c4565b825550505050565b600090565b6200039a6200038b565b620003a781848462000360565b505050565b5b81811015620003cf57620003c360008262000390565b600181019050620003ad565b5050565b601f8211156200041e57620003e88162000292565b620003f384620002a7565b8101602085101562000403578190505b6200041b6200041285620002a7565b830182620003ac565b50505b505050565b600082821c905092915050565b6000620004436000198460080262000423565b1980831691505092915050565b60006200045e838362000430565b9150826002028217905092915050565b6200047982620001f4565b67ffffffffffffffff811115620004955762000494620001ff565b5b620004a182546200025d565b620004ae828285620003d3565b600060209050601f831160018114620004e65760008415620004d1578287015190505b620004dd858262000450565b8655506200054d565b601f198416620004f68662000292565b60005b828110156200052057848901518255600182019150602085019450602081019050620004f9565b868310156200054057848901516200053c601f89168262000430565b8355505b6001600288020188555050505b505050505050565b6134c880620005656000396000f3fe6080604052600436106101a05760003560e01c806342842e0e116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610585578063c87b56dd146105ae578063e985e9c5146105eb578063f2fde38b14610628576101a7565b806395d89b4114610506578063a22cb46514610531578063b0a1c1c41461055a576101a7565b80636352211e116100c65780636352211e1461044a57806370a0823114610487578063715018a6146104c45780638da5cb5b146104db576101a7565b806342842e0e146103cb5780634520e916146103f4578063603f4d521461041f576101a7565b80631249c58b1161015957806323b872dd1161013357806323b872dd146103255780633023eba61461034e57806339a0c6f91461038b5780633ccfd60b146103b4576101a7565b80631249c58b146102ba57806318160ddd146102d157806318df6403146102fc576101a7565b806301ffc9a7146101ac57806306fdde03146101e957806308003f7814610214578063081812fc1461022b578063084c408814610268578063095ea7b314610291576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101d360048036038101906101ce919061210c565b610651565b6040516101e09190612154565b60405180910390f35b3480156101f557600080fd5b506101fe6106e3565b60405161020b9190612208565b60405180910390f35b34801561022057600080fd5b50610229610775565b005b34801561023757600080fd5b50610252600480360381019061024d9190612260565b61078d565b60405161025f91906122ce565b60405180910390f35b34801561027457600080fd5b5061028f600480360381019061028a9190612260565b610809565b005b34801561029d57600080fd5b506102b860048036038101906102b39190612315565b6108bb565b005b3480156102c657600080fd5b506102cf6109fc565b005b3480156102dd57600080fd5b506102e6610c7f565b6040516102f39190612364565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e919061237f565b610c96565b005b34801561033157600080fd5b5061034c600480360381019061034791906123bf565b610d6d565b005b34801561035a57600080fd5b5061037560048036038101906103709190612412565b61108f565b6040516103829190612364565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612574565b6110a7565b005b3480156103c057600080fd5b506103c96110c2565b005b3480156103d757600080fd5b506103f260048036038101906103ed91906123bf565b611126565b005b34801561040057600080fd5b50610409611146565b6040516104169190612364565b60405180910390f35b34801561042b57600080fd5b50610434611165565b6040516104419190612634565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190612260565b61117c565b60405161047e91906122ce565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612412565b61118e565b6040516104bb9190612364565b60405180910390f35b3480156104d057600080fd5b506104d9611246565b005b3480156104e757600080fd5b506104f061125a565b6040516104fd91906122ce565b60405180910390f35b34801561051257600080fd5b5061051b611284565b6040516105289190612208565b60405180910390f35b34801561053d57600080fd5b506105586004803603810190610553919061267b565b611316565b005b34801561056657600080fd5b5061056f61148d565b60405161057c9190612364565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a7919061275c565b61149d565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190612260565b611510565b6040516105e29190612208565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d91906127df565b6115a7565b60405161061f9190612154565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190612412565b61163b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ac57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106f29061284e565b80601f016020809104026020016040519081016040528092919081815260200182805461071e9061284e565b801561076b5780601f106107405761010080835404028352916020019161076b565b820191906000526020600020905b81548152906001019060200180831161074e57829003601f168201915b5050505050905090565b61077d6116be565b610785610c7f565b600a81905550565b60006107988261173c565b6107ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108116116be565b60028110610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906128cb565b60405180910390fd5b6000810361088c576000600f60006101000a81548160ff02191690836001811115610882576108816125bd565b5b02179055506108b8565b6001600f60006101000a81548160ff021916908360018111156108b2576108b16125bd565b5b02179055505b50565b60006108c68261117c565b90508073ffffffffffffffffffffffffffffffffffffffff166108e761179b565b73ffffffffffffffffffffffffffffffffffffffff161461094a576109138161090e61179b565b6115a7565b610949576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890612937565b60405180910390fd5b60026009819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae906129c9565b60405180910390fd5b600180811115610aca57610ac96125bd565b5b600f60009054906101000a900460ff166001811115610aec57610aeb6125bd565b5b14610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390612a35565b60405180910390fd5b600c54600d54610b3c9190612a84565b600a54610b499190612a84565b610b51610c7f565b10610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890612b04565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90612b96565b60405180910390fd5b610c1e33600a6117a3565b600a600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c6e9190612bb6565b925050819055506001600981905550565b6000610c896117c1565b6001546000540303905090565b610c9e6116be565b600d5482600c54610caf9190612bb6565b1115610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790612c7e565b60405180910390fd5b610cfa81836117a3565b81600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d499190612bb6565b9250508190555081600c6000828254610d629190612bb6565b925050819055505050565b6000610d78826117c6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ddf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610deb84611892565b91509150610e018187610dfc61179b565b6118b4565b610e4d57610e1686610e1161179b565b6115a7565b610e4c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610eb3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ec086868660016118f8565b8015610ecb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f9985610f758888876118fe565b7c020000000000000000000000000000000000000000000000000000000017611926565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361101f576000600185019050600060046000838152602001908152602001600020540361101d57600054811461101c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110878686866001611951565b505050505050565b600e6020528060005260406000206000915090505481565b6110af6116be565b80600b90816110be9190612e4a565b5050565b6110ca6116be565b60006110d461148d565b905060008111611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090612f8e565b60405180910390fd5b6111233382611957565b50565b6111418383836040518060200160405280600081525061149d565b505050565b60006111506116be565b600c54600d546111609190612a84565b905090565b6000600f60009054906101000a900460ff16905090565b6000611187826117c6565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61124e6116be565b6112586000611a08565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112939061284e565b80601f01602080910402602001604051908101604052809291908181526020018280546112bf9061284e565b801561130c5780601f106112e15761010080835404028352916020019161130c565b820191906000526020600020905b8154815290600101906020018083116112ef57829003601f168201915b5050505050905090565b61131e61179b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611382576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061138f61179b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661143c61179b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114819190612154565b60405180910390a35050565b60006114976116be565b47905090565b6114a8848484610d6d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461150a576114d384848484611ace565b611509576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061151b8261173c565b61155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613020565b60405180910390fd5b6001826115679190612bb6565b91506000611573611c1e565b90508061157f84611cb0565b6040516020016115909291906130c8565b604051602081830303815290604052915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116436116be565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a990613169565b60405180910390fd5b6116bb81611a08565b50565b6116c6611e10565b73ffffffffffffffffffffffffffffffffffffffff166116e461125a565b73ffffffffffffffffffffffffffffffffffffffff161461173a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611731906131d5565b60405180910390fd5b565b6000816117476117c1565b11158015611756575060005482105b8015611794575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6117bd828260405180602001604052806000815250611e18565b5050565b600090565b600080829050806117d56117c1565b1161185b5760005481101561185a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611858575b6000810361184e576004600083600190039350838152602001908152602001600020549050611824565b809250505061188d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611915868684611eb5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161197d90613226565b60006040518083038185875af1925050503d80600081146119ba576040519150601f19603f3d011682016040523d82523d6000602084013e6119bf565b606091505b5050905080611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fa90613287565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611af461179b565b8786866040518563ffffffff1660e01b8152600401611b1694939291906132fc565b6020604051808303816000875af1925050508015611b5257506040513d601f19601f82011682018060405250810190611b4f919061335d565b60015b611bcb573d8060008114611b82576040519150601f19603f3d011682016040523d82523d6000602084013e611b87565b606091505b506000815103611bc3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611c2d9061284e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c599061284e565b8015611ca65780601f10611c7b57610100808354040283529160200191611ca6565b820191906000526020600020905b815481529060010190602001808311611c8957829003601f168201915b5050505050905090565b606060008203611cf7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e0b565b600082905060005b60008214611d29578080611d129061338a565b915050600a82611d229190613401565b9150611cff565b60008167ffffffffffffffff811115611d4557611d44612449565b5b6040519080825280601f01601f191660200182016040528015611d775781602001600182028036833780820191505090505b5090505b60008514611e0457600182611d909190612a84565b9150600a85611d9f9190613432565b6030611dab9190612bb6565b60f81b818381518110611dc157611dc0613463565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611dfd9190613401565b9450611d7b565b8093505050505b919050565b600033905090565b611e228383611ebe565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611eb057600080549050600083820390505b611e626000868380600101945086611ace565b611e98576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e4f578160005414611ead57600080fd5b50505b505050565b60009392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f2a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611f64576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f7160008483856118f8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fe883611fd960008660006118fe565b611fe285612090565b17611926565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061200c5780600081905550505061208b6000848385611951565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120e9816120b4565b81146120f457600080fd5b50565b600081359050612106816120e0565b92915050565b600060208284031215612122576121216120aa565b5b6000612130848285016120f7565b91505092915050565b60008115159050919050565b61214e81612139565b82525050565b60006020820190506121696000830184612145565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121a957808201518184015260208101905061218e565b838111156121b8576000848401525b50505050565b6000601f19601f8301169050919050565b60006121da8261216f565b6121e4818561217a565b93506121f481856020860161218b565b6121fd816121be565b840191505092915050565b6000602082019050818103600083015261222281846121cf565b905092915050565b6000819050919050565b61223d8161222a565b811461224857600080fd5b50565b60008135905061225a81612234565b92915050565b600060208284031215612276576122756120aa565b5b60006122848482850161224b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122b88261228d565b9050919050565b6122c8816122ad565b82525050565b60006020820190506122e360008301846122bf565b92915050565b6122f2816122ad565b81146122fd57600080fd5b50565b60008135905061230f816122e9565b92915050565b6000806040838503121561232c5761232b6120aa565b5b600061233a85828601612300565b925050602061234b8582860161224b565b9150509250929050565b61235e8161222a565b82525050565b60006020820190506123796000830184612355565b92915050565b60008060408385031215612396576123956120aa565b5b60006123a48582860161224b565b92505060206123b585828601612300565b9150509250929050565b6000806000606084860312156123d8576123d76120aa565b5b60006123e686828701612300565b93505060206123f786828701612300565b92505060406124088682870161224b565b9150509250925092565b600060208284031215612428576124276120aa565b5b600061243684828501612300565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612481826121be565b810181811067ffffffffffffffff821117156124a05761249f612449565b5b80604052505050565b60006124b36120a0565b90506124bf8282612478565b919050565b600067ffffffffffffffff8211156124df576124de612449565b5b6124e8826121be565b9050602081019050919050565b82818337600083830152505050565b6000612517612512846124c4565b6124a9565b90508281526020810184848401111561253357612532612444565b5b61253e8482856124f5565b509392505050565b600082601f83011261255b5761255a61243f565b5b813561256b848260208601612504565b91505092915050565b60006020828403121561258a576125896120aa565b5b600082013567ffffffffffffffff8111156125a8576125a76120af565b5b6125b484828501612546565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600281106125fd576125fc6125bd565b5b50565b600081905061260e826125ec565b919050565b600061261e82612600565b9050919050565b61262e81612613565b82525050565b60006020820190506126496000830184612625565b92915050565b61265881612139565b811461266357600080fd5b50565b6000813590506126758161264f565b92915050565b60008060408385031215612692576126916120aa565b5b60006126a085828601612300565b92505060206126b185828601612666565b9150509250929050565b600067ffffffffffffffff8211156126d6576126d5612449565b5b6126df826121be565b9050602081019050919050565b60006126ff6126fa846126bb565b6124a9565b90508281526020810184848401111561271b5761271a612444565b5b6127268482856124f5565b509392505050565b600082601f8301126127435761274261243f565b5b81356127538482602086016126ec565b91505092915050565b60008060008060808587031215612776576127756120aa565b5b600061278487828801612300565b945050602061279587828801612300565b93505060406127a68782880161224b565b925050606085013567ffffffffffffffff8111156127c7576127c66120af565b5b6127d38782880161272e565b91505092959194509250565b600080604083850312156127f6576127f56120aa565b5b600061280485828601612300565b925050602061281585828601612300565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061286657607f821691505b6020821081036128795761287861281f565b5b50919050565b7f496e76616c69642053616c652053746174652100000000000000000000000000600082015250565b60006128b560138361217a565b91506128c08261287f565b602082019050919050565b600060208201905081810360008301526128e4816128a8565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612921601f8361217a565b915061292c826128eb565b602082019050919050565b6000602082019050818103600083015261295081612914565b9050919050565b7f53656e646572206973206e6f74207468652073616d65206173206f726967696e60008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006129b360218361217a565b91506129be82612957565b604082019050919050565b600060208201905081810360008301526129e2816129a6565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000612a1f601c8361217a565b9150612a2a826129e9565b602082019050919050565b60006020820190508181036000830152612a4e81612a12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a8f8261222a565b9150612a9a8361222a565b925082821015612aad57612aac612a55565b5b828203905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000612aee601e8361217a565b9150612af982612ab8565b602082019050919050565b60006020820190508181036000830152612b1d81612ae1565b9050919050565b7f57616c6c65742068617320616c72656164792068617665206d696e746564206160008201527f6e204e4654210000000000000000000000000000000000000000000000000000602082015250565b6000612b8060268361217a565b9150612b8b82612b24565b604082019050919050565b60006020820190508181036000830152612baf81612b73565b9050919050565b6000612bc18261222a565b9150612bcc8361222a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c0157612c00612a55565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b6000612c6860278361217a565b9150612c7382612c0c565b604082019050919050565b60006020820190508181036000830152612c9781612c5b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612cc3565b612d0a8683612cc3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d47612d42612d3d8461222a565b612d22565b61222a565b9050919050565b6000819050919050565b612d6183612d2c565b612d75612d6d82612d4e565b848454612cd0565b825550505050565b600090565b612d8a612d7d565b612d95818484612d58565b505050565b5b81811015612db957612dae600082612d82565b600181019050612d9b565b5050565b601f821115612dfe57612dcf81612c9e565b612dd884612cb3565b81016020851015612de7578190505b612dfb612df385612cb3565b830182612d9a565b50505b505050565b600082821c905092915050565b6000612e2160001984600802612e03565b1980831691505092915050565b6000612e3a8383612e10565b9150826002028217905092915050565b612e538261216f565b67ffffffffffffffff811115612e6c57612e6b612449565b5b612e76825461284e565b612e81828285612dbd565b600060209050601f831160018114612eb45760008415612ea2578287015190505b612eac8582612e2e565b865550612f14565b601f198416612ec286612c9e565b60005b82811015612eea57848901518255600182019150602085019450602081019050612ec5565b86831015612f075784890151612f03601f891682612e10565b8355505b6001600288020188555050505b505050505050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f7860228361217a565b9150612f8382612f1c565b604082019050919050565b60006020820190508181036000830152612fa781612f6b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061300a602f8361217a565b915061301582612fae565b604082019050919050565b6000602082019050818103600083015261303981612ffd565b9050919050565b600081905092915050565b60006130568261216f565b6130608185613040565b935061307081856020860161218b565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006130b2600583613040565b91506130bd8261307c565b600582019050919050565b60006130d4828561304b565b91506130e0828461304b565b91506130eb826130a5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061315360268361217a565b915061315e826130f7565b604082019050919050565b6000602082019050818103600083015261318281613146565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131bf60208361217a565b91506131ca82613189565b602082019050919050565b600060208201905081810360008301526131ee816131b2565b9050919050565b600081905092915050565b50565b60006132106000836131f5565b915061321b82613200565b600082019050919050565b600061323182613203565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b600061327160148361217a565b915061327c8261323b565b602082019050919050565b600060208201905081810360008301526132a081613264565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132ce826132a7565b6132d881856132b2565b93506132e881856020860161218b565b6132f1816121be565b840191505092915050565b600060808201905061331160008301876122bf565b61331e60208301866122bf565b61332b6040830185612355565b818103606083015261333d81846132c3565b905095945050505050565b600081519050613357816120e0565b92915050565b600060208284031215613373576133726120aa565b5b600061338184828501613348565b91505092915050565b60006133958261222a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133c7576133c6612a55565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061340c8261222a565b91506134178361222a565b925082613427576134266133d2565b5b828204905092915050565b600061343d8261222a565b91506134488361222a565b925082613458576134576133d2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122034340335e6782ae382daf7b574789deb0e8a2073009972e5fb2c1e082741b4ed64736f6c634300080f0033697066733a2f2f516d59585a3262377a35734d58344a564d51513972745841724b765a574c4a46615057506b343564656d327566382f

Deployed Bytecode

0x6080604052600436106101a05760003560e01c806342842e0e116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610585578063c87b56dd146105ae578063e985e9c5146105eb578063f2fde38b14610628576101a7565b806395d89b4114610506578063a22cb46514610531578063b0a1c1c41461055a576101a7565b80636352211e116100c65780636352211e1461044a57806370a0823114610487578063715018a6146104c45780638da5cb5b146104db576101a7565b806342842e0e146103cb5780634520e916146103f4578063603f4d521461041f576101a7565b80631249c58b1161015957806323b872dd1161013357806323b872dd146103255780633023eba61461034e57806339a0c6f91461038b5780633ccfd60b146103b4576101a7565b80631249c58b146102ba57806318160ddd146102d157806318df6403146102fc576101a7565b806301ffc9a7146101ac57806306fdde03146101e957806308003f7814610214578063081812fc1461022b578063084c408814610268578063095ea7b314610291576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101d360048036038101906101ce919061210c565b610651565b6040516101e09190612154565b60405180910390f35b3480156101f557600080fd5b506101fe6106e3565b60405161020b9190612208565b60405180910390f35b34801561022057600080fd5b50610229610775565b005b34801561023757600080fd5b50610252600480360381019061024d9190612260565b61078d565b60405161025f91906122ce565b60405180910390f35b34801561027457600080fd5b5061028f600480360381019061028a9190612260565b610809565b005b34801561029d57600080fd5b506102b860048036038101906102b39190612315565b6108bb565b005b3480156102c657600080fd5b506102cf6109fc565b005b3480156102dd57600080fd5b506102e6610c7f565b6040516102f39190612364565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e919061237f565b610c96565b005b34801561033157600080fd5b5061034c600480360381019061034791906123bf565b610d6d565b005b34801561035a57600080fd5b5061037560048036038101906103709190612412565b61108f565b6040516103829190612364565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612574565b6110a7565b005b3480156103c057600080fd5b506103c96110c2565b005b3480156103d757600080fd5b506103f260048036038101906103ed91906123bf565b611126565b005b34801561040057600080fd5b50610409611146565b6040516104169190612364565b60405180910390f35b34801561042b57600080fd5b50610434611165565b6040516104419190612634565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190612260565b61117c565b60405161047e91906122ce565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612412565b61118e565b6040516104bb9190612364565b60405180910390f35b3480156104d057600080fd5b506104d9611246565b005b3480156104e757600080fd5b506104f061125a565b6040516104fd91906122ce565b60405180910390f35b34801561051257600080fd5b5061051b611284565b6040516105289190612208565b60405180910390f35b34801561053d57600080fd5b506105586004803603810190610553919061267b565b611316565b005b34801561056657600080fd5b5061056f61148d565b60405161057c9190612364565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a7919061275c565b61149d565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190612260565b611510565b6040516105e29190612208565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d91906127df565b6115a7565b60405161061f9190612154565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190612412565b61163b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ac57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106f29061284e565b80601f016020809104026020016040519081016040528092919081815260200182805461071e9061284e565b801561076b5780601f106107405761010080835404028352916020019161076b565b820191906000526020600020905b81548152906001019060200180831161074e57829003601f168201915b5050505050905090565b61077d6116be565b610785610c7f565b600a81905550565b60006107988261173c565b6107ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108116116be565b60028110610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906128cb565b60405180910390fd5b6000810361088c576000600f60006101000a81548160ff02191690836001811115610882576108816125bd565b5b02179055506108b8565b6001600f60006101000a81548160ff021916908360018111156108b2576108b16125bd565b5b02179055505b50565b60006108c68261117c565b90508073ffffffffffffffffffffffffffffffffffffffff166108e761179b565b73ffffffffffffffffffffffffffffffffffffffff161461094a576109138161090e61179b565b6115a7565b610949576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890612937565b60405180910390fd5b60026009819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae906129c9565b60405180910390fd5b600180811115610aca57610ac96125bd565b5b600f60009054906101000a900460ff166001811115610aec57610aeb6125bd565b5b14610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390612a35565b60405180910390fd5b600c54600d54610b3c9190612a84565b600a54610b499190612a84565b610b51610c7f565b10610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890612b04565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90612b96565b60405180910390fd5b610c1e33600a6117a3565b600a600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c6e9190612bb6565b925050819055506001600981905550565b6000610c896117c1565b6001546000540303905090565b610c9e6116be565b600d5482600c54610caf9190612bb6565b1115610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790612c7e565b60405180910390fd5b610cfa81836117a3565b81600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d499190612bb6565b9250508190555081600c6000828254610d629190612bb6565b925050819055505050565b6000610d78826117c6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ddf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610deb84611892565b91509150610e018187610dfc61179b565b6118b4565b610e4d57610e1686610e1161179b565b6115a7565b610e4c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610eb3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ec086868660016118f8565b8015610ecb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f9985610f758888876118fe565b7c020000000000000000000000000000000000000000000000000000000017611926565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361101f576000600185019050600060046000838152602001908152602001600020540361101d57600054811461101c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110878686866001611951565b505050505050565b600e6020528060005260406000206000915090505481565b6110af6116be565b80600b90816110be9190612e4a565b5050565b6110ca6116be565b60006110d461148d565b905060008111611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090612f8e565b60405180910390fd5b6111233382611957565b50565b6111418383836040518060200160405280600081525061149d565b505050565b60006111506116be565b600c54600d546111609190612a84565b905090565b6000600f60009054906101000a900460ff16905090565b6000611187826117c6565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61124e6116be565b6112586000611a08565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112939061284e565b80601f01602080910402602001604051908101604052809291908181526020018280546112bf9061284e565b801561130c5780601f106112e15761010080835404028352916020019161130c565b820191906000526020600020905b8154815290600101906020018083116112ef57829003601f168201915b5050505050905090565b61131e61179b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611382576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061138f61179b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661143c61179b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114819190612154565b60405180910390a35050565b60006114976116be565b47905090565b6114a8848484610d6d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461150a576114d384848484611ace565b611509576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061151b8261173c565b61155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613020565b60405180910390fd5b6001826115679190612bb6565b91506000611573611c1e565b90508061157f84611cb0565b6040516020016115909291906130c8565b604051602081830303815290604052915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116436116be565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a990613169565b60405180910390fd5b6116bb81611a08565b50565b6116c6611e10565b73ffffffffffffffffffffffffffffffffffffffff166116e461125a565b73ffffffffffffffffffffffffffffffffffffffff161461173a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611731906131d5565b60405180910390fd5b565b6000816117476117c1565b11158015611756575060005482105b8015611794575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6117bd828260405180602001604052806000815250611e18565b5050565b600090565b600080829050806117d56117c1565b1161185b5760005481101561185a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611858575b6000810361184e576004600083600190039350838152602001908152602001600020549050611824565b809250505061188d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611915868684611eb5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161197d90613226565b60006040518083038185875af1925050503d80600081146119ba576040519150601f19603f3d011682016040523d82523d6000602084013e6119bf565b606091505b5050905080611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fa90613287565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611af461179b565b8786866040518563ffffffff1660e01b8152600401611b1694939291906132fc565b6020604051808303816000875af1925050508015611b5257506040513d601f19601f82011682018060405250810190611b4f919061335d565b60015b611bcb573d8060008114611b82576040519150601f19603f3d011682016040523d82523d6000602084013e611b87565b606091505b506000815103611bc3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611c2d9061284e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c599061284e565b8015611ca65780601f10611c7b57610100808354040283529160200191611ca6565b820191906000526020600020905b815481529060010190602001808311611c8957829003601f168201915b5050505050905090565b606060008203611cf7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e0b565b600082905060005b60008214611d29578080611d129061338a565b915050600a82611d229190613401565b9150611cff565b60008167ffffffffffffffff811115611d4557611d44612449565b5b6040519080825280601f01601f191660200182016040528015611d775781602001600182028036833780820191505090505b5090505b60008514611e0457600182611d909190612a84565b9150600a85611d9f9190613432565b6030611dab9190612bb6565b60f81b818381518110611dc157611dc0613463565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611dfd9190613401565b9450611d7b565b8093505050505b919050565b600033905090565b611e228383611ebe565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611eb057600080549050600083820390505b611e626000868380600101945086611ace565b611e98576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e4f578160005414611ead57600080fd5b50505b505050565b60009392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f2a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611f64576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f7160008483856118f8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fe883611fd960008660006118fe565b611fe285612090565b17611926565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061200c5780600081905550505061208b6000848385611951565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120e9816120b4565b81146120f457600080fd5b50565b600081359050612106816120e0565b92915050565b600060208284031215612122576121216120aa565b5b6000612130848285016120f7565b91505092915050565b60008115159050919050565b61214e81612139565b82525050565b60006020820190506121696000830184612145565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121a957808201518184015260208101905061218e565b838111156121b8576000848401525b50505050565b6000601f19601f8301169050919050565b60006121da8261216f565b6121e4818561217a565b93506121f481856020860161218b565b6121fd816121be565b840191505092915050565b6000602082019050818103600083015261222281846121cf565b905092915050565b6000819050919050565b61223d8161222a565b811461224857600080fd5b50565b60008135905061225a81612234565b92915050565b600060208284031215612276576122756120aa565b5b60006122848482850161224b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122b88261228d565b9050919050565b6122c8816122ad565b82525050565b60006020820190506122e360008301846122bf565b92915050565b6122f2816122ad565b81146122fd57600080fd5b50565b60008135905061230f816122e9565b92915050565b6000806040838503121561232c5761232b6120aa565b5b600061233a85828601612300565b925050602061234b8582860161224b565b9150509250929050565b61235e8161222a565b82525050565b60006020820190506123796000830184612355565b92915050565b60008060408385031215612396576123956120aa565b5b60006123a48582860161224b565b92505060206123b585828601612300565b9150509250929050565b6000806000606084860312156123d8576123d76120aa565b5b60006123e686828701612300565b93505060206123f786828701612300565b92505060406124088682870161224b565b9150509250925092565b600060208284031215612428576124276120aa565b5b600061243684828501612300565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612481826121be565b810181811067ffffffffffffffff821117156124a05761249f612449565b5b80604052505050565b60006124b36120a0565b90506124bf8282612478565b919050565b600067ffffffffffffffff8211156124df576124de612449565b5b6124e8826121be565b9050602081019050919050565b82818337600083830152505050565b6000612517612512846124c4565b6124a9565b90508281526020810184848401111561253357612532612444565b5b61253e8482856124f5565b509392505050565b600082601f83011261255b5761255a61243f565b5b813561256b848260208601612504565b91505092915050565b60006020828403121561258a576125896120aa565b5b600082013567ffffffffffffffff8111156125a8576125a76120af565b5b6125b484828501612546565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600281106125fd576125fc6125bd565b5b50565b600081905061260e826125ec565b919050565b600061261e82612600565b9050919050565b61262e81612613565b82525050565b60006020820190506126496000830184612625565b92915050565b61265881612139565b811461266357600080fd5b50565b6000813590506126758161264f565b92915050565b60008060408385031215612692576126916120aa565b5b60006126a085828601612300565b92505060206126b185828601612666565b9150509250929050565b600067ffffffffffffffff8211156126d6576126d5612449565b5b6126df826121be565b9050602081019050919050565b60006126ff6126fa846126bb565b6124a9565b90508281526020810184848401111561271b5761271a612444565b5b6127268482856124f5565b509392505050565b600082601f8301126127435761274261243f565b5b81356127538482602086016126ec565b91505092915050565b60008060008060808587031215612776576127756120aa565b5b600061278487828801612300565b945050602061279587828801612300565b93505060406127a68782880161224b565b925050606085013567ffffffffffffffff8111156127c7576127c66120af565b5b6127d38782880161272e565b91505092959194509250565b600080604083850312156127f6576127f56120aa565b5b600061280485828601612300565b925050602061281585828601612300565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061286657607f821691505b6020821081036128795761287861281f565b5b50919050565b7f496e76616c69642053616c652053746174652100000000000000000000000000600082015250565b60006128b560138361217a565b91506128c08261287f565b602082019050919050565b600060208201905081810360008301526128e4816128a8565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612921601f8361217a565b915061292c826128eb565b602082019050919050565b6000602082019050818103600083015261295081612914565b9050919050565b7f53656e646572206973206e6f74207468652073616d65206173206f726967696e60008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006129b360218361217a565b91506129be82612957565b604082019050919050565b600060208201905081810360008301526129e2816129a6565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000612a1f601c8361217a565b9150612a2a826129e9565b602082019050919050565b60006020820190508181036000830152612a4e81612a12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a8f8261222a565b9150612a9a8361222a565b925082821015612aad57612aac612a55565b5b828203905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000612aee601e8361217a565b9150612af982612ab8565b602082019050919050565b60006020820190508181036000830152612b1d81612ae1565b9050919050565b7f57616c6c65742068617320616c72656164792068617665206d696e746564206160008201527f6e204e4654210000000000000000000000000000000000000000000000000000602082015250565b6000612b8060268361217a565b9150612b8b82612b24565b604082019050919050565b60006020820190508181036000830152612baf81612b73565b9050919050565b6000612bc18261222a565b9150612bcc8361222a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c0157612c00612a55565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b6000612c6860278361217a565b9150612c7382612c0c565b604082019050919050565b60006020820190508181036000830152612c9781612c5b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612cc3565b612d0a8683612cc3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d47612d42612d3d8461222a565b612d22565b61222a565b9050919050565b6000819050919050565b612d6183612d2c565b612d75612d6d82612d4e565b848454612cd0565b825550505050565b600090565b612d8a612d7d565b612d95818484612d58565b505050565b5b81811015612db957612dae600082612d82565b600181019050612d9b565b5050565b601f821115612dfe57612dcf81612c9e565b612dd884612cb3565b81016020851015612de7578190505b612dfb612df385612cb3565b830182612d9a565b50505b505050565b600082821c905092915050565b6000612e2160001984600802612e03565b1980831691505092915050565b6000612e3a8383612e10565b9150826002028217905092915050565b612e538261216f565b67ffffffffffffffff811115612e6c57612e6b612449565b5b612e76825461284e565b612e81828285612dbd565b600060209050601f831160018114612eb45760008415612ea2578287015190505b612eac8582612e2e565b865550612f14565b601f198416612ec286612c9e565b60005b82811015612eea57848901518255600182019150602085019450602081019050612ec5565b86831015612f075784890151612f03601f891682612e10565b8355505b6001600288020188555050505b505050505050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f7860228361217a565b9150612f8382612f1c565b604082019050919050565b60006020820190508181036000830152612fa781612f6b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061300a602f8361217a565b915061301582612fae565b604082019050919050565b6000602082019050818103600083015261303981612ffd565b9050919050565b600081905092915050565b60006130568261216f565b6130608185613040565b935061307081856020860161218b565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006130b2600583613040565b91506130bd8261307c565b600582019050919050565b60006130d4828561304b565b91506130e0828461304b565b91506130eb826130a5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061315360268361217a565b915061315e826130f7565b604082019050919050565b6000602082019050818103600083015261318281613146565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131bf60208361217a565b91506131ca82613189565b602082019050919050565b600060208201905081810360008301526131ee816131b2565b9050919050565b600081905092915050565b50565b60006132106000836131f5565b915061321b82613200565b600082019050919050565b600061323182613203565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b600061327160148361217a565b915061327c8261323b565b602082019050919050565b600060208201905081810360008301526132a081613264565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132ce826132a7565b6132d881856132b2565b93506132e881856020860161218b565b6132f1816121be565b840191505092915050565b600060808201905061331160008301876122bf565b61331e60208301866122bf565b61332b6040830185612355565b818103606083015261333d81846132c3565b905095945050505050565b600081519050613357816120e0565b92915050565b600060208284031215613373576133726120aa565b5b600061338184828501613348565b91505092915050565b60006133958261222a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133c7576133c6612a55565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061340c8261222a565b91506134178361222a565b925082613427576134266133d2565b5b828204905092915050565b600061343d8261222a565b91506134488361222a565b925082613458576134576133d2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122034340335e6782ae382daf7b574789deb0e8a2073009972e5fb2c1e082741b4ed64736f6c634300080f0033

Deployed Bytecode Sourcemap

53694:4088:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54720:8;;;23474:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29121:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56661:88;;;;;;;;;;;;;:::i;:::-;;31067:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55056:294;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30615:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55409:513;;;;;;;;;;;;;:::i;:::-;;22528:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56317:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40332:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54163:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54939:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56938:212;;;;;;;;;;;;;:::i;:::-;;31957:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57475:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57685:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28910:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24153:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8065:103;;;;;;;;;;;;;:::i;:::-;;7417:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29290:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31343:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56769:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32213:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55934:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31722:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8323:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23474:615;23559:4;23874:10;23859:25;;:11;:25;;;;:102;;;;23951:10;23936:25;;:11;:25;;;;23859:102;:179;;;;24028:10;24013:25;;:11;:25;;;;23859:179;23839:199;;23474:615;;;:::o;29121:100::-;29175:13;29208:5;29201:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29121:100;:::o;56661:88::-;7303:13;:11;:13::i;:::-;56728::::1;:11;:13::i;:::-;56711:14;:30;;;;56661:88::o:0;31067:204::-;31135:7;31160:16;31168:7;31160;:16::i;:::-;31155:64;;31185:34;;;;;;;;;;;;;;31155:64;31239:15;:24;31255:7;31239:24;;;;;;;;;;;;;;;;;;;;;31232:31;;31067:204;;;:::o;55056:294::-;7303:13;:11;:13::i;:::-;55148:1:::1;55133:12;:16;55125:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;55204:1;55188:12;:17:::0;55184:159:::1;;55235:16;55222:10;;:29;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;55184:159;;;55306:25;55293:10;;:38;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;55184:159;55056:294:::0;:::o;30615:386::-;30688:13;30704:16;30712:7;30704;:16::i;:::-;30688:32;;30760:5;30737:28;;:19;:17;:19::i;:::-;:28;;;30733:175;;30785:44;30802:5;30809:19;:17;:19::i;:::-;30785:16;:44::i;:::-;30780:128;;30857:35;;;;;;;;;;;;;;30780:128;30733:175;30947:2;30920:15;:24;30936:7;30920:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30985:7;30981:2;30965:28;;30974:5;30965:28;;;;;;;;;;;;30677:324;30615:386;;:::o;55409:513::-;4342:1;4940:7;;:19;4932:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4342:1;5073:7;:18;;;;55478:9:::1;55464:23;;:10;:23;;;55456:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;55558:25;55544:39:::0;::::1;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:39;;;;;;;;:::i;:::-;;;55536:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;55688:14;;55669:16;;:33;;;;:::i;:::-;55651:14;;:52;;;;:::i;:::-;55635:13;:11;:13::i;:::-;:68;55627:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;55788:1;55757:15;:27;55773:10;55757:27;;;;;;;;;;;;;;;;:32;55749:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;55845:25;55855:10;55867:2;55845:9;:25::i;:::-;55912:2;55881:15;:27;55897:10;55881:27;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;4298:1:::0;5252:7;:22;;;;55409:513::o;22528:315::-;22581:7;22809:15;:13;:15::i;:::-;22794:12;;22778:13;;:28;:46;22771:53;;22528:315;:::o;56317:319::-;7303:13;:11;:13::i;:::-;56434:16:::1;;56424:6;56407:14;;:23;;;;:::i;:::-;:43;;56399:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;56507:28;56517:9;56528:6;56507:9;:28::i;:::-;56576:6;56546:15;:26;56562:9;56546:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;56611:6;56593:14;;:24;;;;;;;:::i;:::-;;;;;;;;56317:319:::0;;:::o;40332:2800::-;40466:27;40496;40515:7;40496:18;:27::i;:::-;40466:57;;40581:4;40540:45;;40556:19;40540:45;;;40536:86;;40594:28;;;;;;;;;;;;;;40536:86;40636:27;40665:23;40692:28;40712:7;40692:19;:28::i;:::-;40635:85;;;;40820:62;40839:15;40856:4;40862:19;:17;:19::i;:::-;40820:18;:62::i;:::-;40815:174;;40902:43;40919:4;40925:19;:17;:19::i;:::-;40902:16;:43::i;:::-;40897:92;;40954:35;;;;;;;;;;;;;;40897:92;40815:174;41020:1;41006:16;;:2;:16;;;41002:52;;41031:23;;;;;;;;;;;;;;41002:52;41067:43;41089:4;41095:2;41099:7;41108:1;41067:21;:43::i;:::-;41203:15;41200:160;;;41343:1;41322:19;41315:30;41200:160;41738:18;:24;41757:4;41738:24;;;;;;;;;;;;;;;;41736:26;;;;;;;;;;;;41807:18;:22;41826:2;41807:22;;;;;;;;;;;;;;;;41805:24;;;;;;;;;;;42129:145;42166:2;42214:45;42229:4;42235:2;42239:19;42214:14;:45::i;:::-;19756:8;42187:72;42129:18;:145::i;:::-;42100:17;:26;42118:7;42100:26;;;;;;;;;;;:174;;;;42444:1;19756:8;42394:19;:46;:51;42390:626;;42466:19;42498:1;42488:7;:11;42466:33;;42655:1;42621:17;:30;42639:11;42621:30;;;;;;;;;;;;:35;42617:384;;42759:13;;42744:11;:28;42740:242;;42939:19;42906:17;:30;42924:11;42906:30;;;;;;;;;;;:52;;;;42740:242;42617:384;42447:569;42390:626;43063:7;43059:2;43044:27;;43053:4;43044:27;;;;;;;;;;;;43082:42;43103:4;43109:2;43113:7;43122:1;43082:20;:42::i;:::-;40455:2677;;;40332:2800;;;:::o;54163:50::-;;;;;;;;;;;;;;;;;:::o;54939:109::-;7303:13;:11;:13::i;:::-;55032:8:::1;55014:15;:26;;;;;;:::i;:::-;;54939:109:::0;:::o;56938:212::-;7303:13;:11;:13::i;:::-;56986:15:::1;57004:16;:14;:16::i;:::-;56986:34;;57049:1;57039:7;:11;57031:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;57102:39;57120:10;57133:7;57102:9;:39::i;:::-;56975:175;56938:212::o:0;31957:185::-;32095:39;32112:4;32118:2;32122:7;32095:39;;;;;;;;;;;;:16;:39::i;:::-;31957:185;;;:::o;57475:124::-;57534:4;7303:13;:11;:13::i;:::-;57577:14:::1;;57558:16;;:33;;;;:::i;:::-;57551:40;;57475:124:::0;:::o;57685:83::-;57726:5;57750:10;;;;;;;;;;;57743:17;;57685:83;:::o;28910:144::-;28974:7;29017:27;29036:7;29017:18;:27::i;:::-;28994:52;;28910:144;;;:::o;24153:224::-;24217:7;24258:1;24241:19;;:5;:19;;;24237:60;;24269:28;;;;;;;;;;;;;;24237:60;18708:13;24315:18;:25;24334:5;24315:25;;;;;;;;;;;;;;;;:54;24308:61;;24153:224;;;:::o;8065:103::-;7303:13;:11;:13::i;:::-;8130:30:::1;8157:1;8130:18;:30::i;:::-;8065:103::o:0;7417:87::-;7463:7;7490:6;;;;;;;;;;;7483:13;;7417:87;:::o;29290:104::-;29346:13;29379:7;29372:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29290:104;:::o;31343:308::-;31454:19;:17;:19::i;:::-;31442:31;;:8;:31;;;31438:61;;31482:17;;;;;;;;;;;;;;31438:61;31564:8;31512:18;:39;31531:19;:17;:19::i;:::-;31512:39;;;;;;;;;;;;;;;:49;31552:8;31512:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31624:8;31588:55;;31603:19;:17;:19::i;:::-;31588:55;;;31634:8;31588:55;;;;;;:::i;:::-;;;;;;;;31343:308;;:::o;56769:109::-;56825:4;7303:13;:11;:13::i;:::-;56849:21:::1;56842:28;;56769:109:::0;:::o;32213:399::-;32380:31;32393:4;32399:2;32403:7;32380:12;:31::i;:::-;32444:1;32426:2;:14;;;:19;32422:183;;32465:56;32496:4;32502:2;32506:7;32515:5;32465:30;:56::i;:::-;32460:145;;32549:40;;;;;;;;;;;;;;32460:145;32422:183;32213:399;;;;:::o;55934:338::-;56008:13;56042:17;56050:8;56042:7;:17::i;:::-;56034:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;56136:1;56124:13;;;;;:::i;:::-;;;56148:21;56172:10;:8;:10::i;:::-;56148:34;;56224:7;56233:19;:8;:17;:19::i;:::-;56207:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56193:70;;;55934:338;;;:::o;31722:164::-;31819:4;31843:18;:25;31862:5;31843:25;;;;;;;;;;;;;;;:35;31869:8;31843:35;;;;;;;;;;;;;;;;;;;;;;;;;31836:42;;31722:164;;;;:::o;8323:201::-;7303:13;:11;:13::i;:::-;8432:1:::1;8412:22;;:8;:22;;::::0;8404:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8488:28;8507:8;8488:18;:28::i;:::-;8323:201:::0;:::o;7582:132::-;7657:12;:10;:12::i;:::-;7646:23;;:7;:5;:7::i;:::-;:23;;;7638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7582:132::o;32867:273::-;32924:4;32980:7;32961:15;:13;:15::i;:::-;:26;;:66;;;;;33014:13;;33004:7;:23;32961:66;:152;;;;;33112:1;19478:8;33065:17;:26;33083:7;33065:26;;;;;;;;;;;;:43;:48;32961:152;32941:172;;32867:273;;;:::o;51428:105::-;51488:7;51515:10;51508:17;;51428:105;:::o;33224:104::-;33293:27;33303:2;33307:8;33293:27;;;;;;;;;;;;:9;:27::i;:::-;33224:104;;:::o;22052:92::-;22108:7;22052:92;:::o;25827:1129::-;25894:7;25914:12;25929:7;25914:22;;25997:4;25978:15;:13;:15::i;:::-;:23;25974:915;;26031:13;;26024:4;:20;26020:869;;;26069:14;26086:17;:23;26104:4;26086:23;;;;;;;;;;;;26069:40;;26202:1;19478:8;26175:6;:23;:28;26171:699;;26694:113;26711:1;26701:6;:11;26694:113;;26754:17;:25;26772:6;;;;;;;26754:25;;;;;;;;;;;;26745:34;;26694:113;;;26840:6;26833:13;;;;;;26171:699;26046:843;26020:869;25974:915;26917:31;;;;;;;;;;;;;;25827:1129;;;;:::o;38668:652::-;38763:27;38792:23;38833:53;38889:15;38833:71;;39075:7;39069:4;39062:21;39110:22;39104:4;39097:36;39186:4;39180;39170:21;39147:44;;39282:19;39276:26;39257:45;;39013:300;38668:652;;;:::o;39433:645::-;39575:11;39737:15;39731:4;39727:26;39719:34;;39896:15;39885:9;39881:31;39868:44;;40043:15;40032:9;40029:30;40022:4;40011:9;40008:19;40005:55;39995:65;;39433:645;;;;;:::o;50261:159::-;;;;;:::o;48573:309::-;48708:7;48728:16;19879:3;48754:19;:40;;48728:67;;19879:3;48821:31;48832:4;48838:2;48842:9;48821:10;:31::i;:::-;48813:40;;:61;;48806:68;;;48573:309;;;;;:::o;28401:447::-;28481:14;28649:15;28642:5;28638:27;28629:36;;28823:5;28809:11;28785:22;28781:40;28778:51;28771:5;28768:62;28758:72;;28401:447;;;;:::o;51079:158::-;;;;;:::o;57225:183::-;57306:9;57321:7;:12;;57341:6;57321:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57305:47;;;57371:4;57363:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;57294:114;57225:183;;:::o;8684:191::-;8758:16;8777:6;;;;;;;;;;;8758:25;;8803:8;8794:6;;:17;;;;;;;;;;;;;;;;;;8858:8;8827:40;;8848:8;8827:40;;;;;;;;;;;;8747:128;8684:191;:::o;47083:716::-;47246:4;47292:2;47267:45;;;47313:19;:17;:19::i;:::-;47334:4;47340:7;47349:5;47267:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47263:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47567:1;47550:6;:13;:18;47546:235;;47596:40;;;;;;;;;;;;;;47546:235;47739:6;47733:13;47724:6;47720:2;47716:15;47709:38;47263:529;47436:54;;;47426:64;;;:6;:64;;;;47419:71;;;47083:716;;;;;;:::o;54773:116::-;54833:13;54866:15;54859:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54773:116;:::o;463:723::-;519:13;749:1;740:5;:10;736:53;;767:10;;;;;;;;;;;;;;;;;;;;;736:53;799:12;814:5;799:20;;830:14;855:78;870:1;862:4;:9;855:78;;888:8;;;;;:::i;:::-;;;;919:2;911:10;;;;;:::i;:::-;;;855:78;;;943:19;975:6;965:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;943:39;;993:154;1009:1;1000:5;:10;993:154;;1037:1;1027:11;;;;;:::i;:::-;;;1104:2;1096:5;:10;;;;:::i;:::-;1083:2;:24;;;;:::i;:::-;1070:39;;1053:6;1060;1053:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1133:2;1124:11;;;;;:::i;:::-;;;993:154;;;1171:6;1157:21;;;;;463:723;;;;:::o;5968:98::-;6021:7;6048:10;6041:17;;5968:98;:::o;33744:681::-;33867:19;33873:2;33877:8;33867:5;:19::i;:::-;33946:1;33928:2;:14;;;:19;33924:483;;33968:11;33982:13;;33968:27;;34014:13;34036:8;34030:3;:14;34014:30;;34063:233;34094:62;34133:1;34137:2;34141:7;;;;;;34150:5;34094:30;:62::i;:::-;34089:167;;34192:40;;;;;;;;;;;;;;34089:167;34291:3;34283:5;:11;34063:233;;34378:3;34361:13;;:20;34357:34;;34383:8;;;34357:34;33949:458;;33924:483;33744:681;;;:::o;49458:147::-;49595:6;49458:147;;;;;:::o;34698:1529::-;34763:20;34786:13;;34763:36;;34828:1;34814:16;;:2;:16;;;34810:48;;34839:19;;;;;;;;;;;;;;34810:48;34885:1;34873:8;:13;34869:44;;34895:18;;;;;;;;;;;;;;34869:44;34926:61;34956:1;34960:2;34964:12;34978:8;34926:21;:61::i;:::-;35469:1;18845:2;35440:1;:25;;35439:31;35427:8;:44;35401:18;:22;35420:2;35401:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;35748:139;35785:2;35839:33;35862:1;35866:2;35870:1;35839:14;:33::i;:::-;35806:30;35827:8;35806:20;:30::i;:::-;:66;35748:18;:139::i;:::-;35714:17;:31;35732:12;35714:31;;;;;;;;;;;:173;;;;35904:15;35922:12;35904:30;;35949:11;35978:8;35963:12;:23;35949:37;;36001:101;36053:9;;;;;;36049:2;36028:35;;36045:1;36028:35;;;;;;;;;;;;36097:3;36087:7;:13;36001:101;;36134:3;36118:13;:19;;;;35175:974;;36159:60;36188:1;36192:2;36196:12;36210:8;36159:20;:60::i;:::-;34752:1475;34698:1529;;:::o;30231:322::-;30301:14;30532:1;30522:8;30519:15;30494:23;30490:45;30480:55;;30231:322;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:474::-;5358:6;5366;5415:2;5403:9;5394:7;5390:23;5386:32;5383:119;;;5421:79;;:::i;:::-;5383:119;5541:1;5566:53;5611:7;5602:6;5591:9;5587:22;5566:53;:::i;:::-;5556:63;;5512:117;5668:2;5694:53;5739:7;5730:6;5719:9;5715:22;5694:53;:::i;:::-;5684:63;;5639:118;5290:474;;;;;:::o;5770:619::-;5847:6;5855;5863;5912:2;5900:9;5891:7;5887:23;5883:32;5880:119;;;5918:79;;:::i;:::-;5880:119;6038:1;6063:53;6108:7;6099:6;6088:9;6084:22;6063:53;:::i;:::-;6053:63;;6009:117;6165:2;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6136:118;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5770:619;;;;;:::o;6395:329::-;6454:6;6503:2;6491:9;6482:7;6478:23;6474:32;6471:119;;;6509:79;;:::i;:::-;6471:119;6629:1;6654:53;6699:7;6690:6;6679:9;6675:22;6654:53;:::i;:::-;6644:63;;6600:117;6395:329;;;;:::o;6730:117::-;6839:1;6836;6829:12;6853:117;6962:1;6959;6952:12;6976:180;7024:77;7021:1;7014:88;7121:4;7118:1;7111:15;7145:4;7142:1;7135:15;7162:281;7245:27;7267:4;7245:27;:::i;:::-;7237:6;7233:40;7375:6;7363:10;7360:22;7339:18;7327:10;7324:34;7321:62;7318:88;;;7386:18;;:::i;:::-;7318:88;7426:10;7422:2;7415:22;7205:238;7162:281;;:::o;7449:129::-;7483:6;7510:20;;:::i;:::-;7500:30;;7539:33;7567:4;7559:6;7539:33;:::i;:::-;7449:129;;;:::o;7584:308::-;7646:4;7736:18;7728:6;7725:30;7722:56;;;7758:18;;:::i;:::-;7722:56;7796:29;7818:6;7796:29;:::i;:::-;7788:37;;7880:4;7874;7870:15;7862:23;;7584:308;;;:::o;7898:154::-;7982:6;7977:3;7972;7959:30;8044:1;8035:6;8030:3;8026:16;8019:27;7898:154;;;:::o;8058:412::-;8136:5;8161:66;8177:49;8219:6;8177:49;:::i;:::-;8161:66;:::i;:::-;8152:75;;8250:6;8243:5;8236:21;8288:4;8281:5;8277:16;8326:3;8317:6;8312:3;8308:16;8305:25;8302:112;;;8333:79;;:::i;:::-;8302:112;8423:41;8457:6;8452:3;8447;8423:41;:::i;:::-;8142:328;8058:412;;;;;:::o;8490:340::-;8546:5;8595:3;8588:4;8580:6;8576:17;8572:27;8562:122;;8603:79;;:::i;:::-;8562:122;8720:6;8707:20;8745:79;8820:3;8812:6;8805:4;8797:6;8793:17;8745:79;:::i;:::-;8736:88;;8552:278;8490:340;;;;:::o;8836:509::-;8905:6;8954:2;8942:9;8933:7;8929:23;8925:32;8922:119;;;8960:79;;:::i;:::-;8922:119;9108:1;9097:9;9093:17;9080:31;9138:18;9130:6;9127:30;9124:117;;;9160:79;;:::i;:::-;9124:117;9265:63;9320:7;9311:6;9300:9;9296:22;9265:63;:::i;:::-;9255:73;;9051:287;8836:509;;;;:::o;9351:180::-;9399:77;9396:1;9389:88;9496:4;9493:1;9486:15;9520:4;9517:1;9510:15;9537:115;9620:1;9613:5;9610:12;9600:46;;9626:18;;:::i;:::-;9600:46;9537:115;:::o;9658:131::-;9705:7;9734:5;9723:16;;9740:43;9777:5;9740:43;:::i;:::-;9658:131;;;:::o;9795:::-;9853:9;9886:34;9914:5;9886:34;:::i;:::-;9873:47;;9795:131;;;:::o;9932:147::-;10027:45;10066:5;10027:45;:::i;:::-;10022:3;10015:58;9932:147;;:::o;10085:238::-;10186:4;10224:2;10213:9;10209:18;10201:26;;10237:79;10313:1;10302:9;10298:17;10289:6;10237:79;:::i;:::-;10085:238;;;;:::o;10329:116::-;10399:21;10414:5;10399:21;:::i;:::-;10392:5;10389:32;10379:60;;10435:1;10432;10425:12;10379:60;10329:116;:::o;10451:133::-;10494:5;10532:6;10519:20;10510:29;;10548:30;10572:5;10548:30;:::i;:::-;10451:133;;;;:::o;10590:468::-;10655:6;10663;10712:2;10700:9;10691:7;10687:23;10683:32;10680:119;;;10718:79;;:::i;:::-;10680:119;10838:1;10863:53;10908:7;10899:6;10888:9;10884:22;10863:53;:::i;:::-;10853:63;;10809:117;10965:2;10991:50;11033:7;11024:6;11013:9;11009:22;10991:50;:::i;:::-;10981:60;;10936:115;10590:468;;;;;:::o;11064:307::-;11125:4;11215:18;11207:6;11204:30;11201:56;;;11237:18;;:::i;:::-;11201:56;11275:29;11297:6;11275:29;:::i;:::-;11267:37;;11359:4;11353;11349:15;11341:23;;11064:307;;;:::o;11377:410::-;11454:5;11479:65;11495:48;11536:6;11495:48;:::i;:::-;11479:65;:::i;:::-;11470:74;;11567:6;11560:5;11553:21;11605:4;11598:5;11594:16;11643:3;11634:6;11629:3;11625:16;11622:25;11619:112;;;11650:79;;:::i;:::-;11619:112;11740:41;11774:6;11769:3;11764;11740:41;:::i;:::-;11460:327;11377:410;;;;;:::o;11806:338::-;11861:5;11910:3;11903:4;11895:6;11891:17;11887:27;11877:122;;11918:79;;:::i;:::-;11877:122;12035:6;12022:20;12060:78;12134:3;12126:6;12119:4;12111:6;12107:17;12060:78;:::i;:::-;12051:87;;11867:277;11806:338;;;;:::o;12150:943::-;12245:6;12253;12261;12269;12318:3;12306:9;12297:7;12293:23;12289:33;12286:120;;;12325:79;;:::i;:::-;12286:120;12445:1;12470:53;12515:7;12506:6;12495:9;12491:22;12470:53;:::i;:::-;12460:63;;12416:117;12572:2;12598:53;12643:7;12634:6;12623:9;12619:22;12598:53;:::i;:::-;12588:63;;12543:118;12700:2;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12671:118;12856:2;12845:9;12841:18;12828:32;12887:18;12879:6;12876:30;12873:117;;;12909:79;;:::i;:::-;12873:117;13014:62;13068:7;13059:6;13048:9;13044:22;13014:62;:::i;:::-;13004:72;;12799:287;12150:943;;;;;;;:::o;13099:474::-;13167:6;13175;13224:2;13212:9;13203:7;13199:23;13195:32;13192:119;;;13230:79;;:::i;:::-;13192:119;13350:1;13375:53;13420:7;13411:6;13400:9;13396:22;13375:53;:::i;:::-;13365:63;;13321:117;13477:2;13503:53;13548:7;13539:6;13528:9;13524:22;13503:53;:::i;:::-;13493:63;;13448:118;13099:474;;;;;:::o;13579:180::-;13627:77;13624:1;13617:88;13724:4;13721:1;13714:15;13748:4;13745:1;13738:15;13765:320;13809:6;13846:1;13840:4;13836:12;13826:22;;13893:1;13887:4;13883:12;13914:18;13904:81;;13970:4;13962:6;13958:17;13948:27;;13904:81;14032:2;14024:6;14021:14;14001:18;13998:38;13995:84;;14051:18;;:::i;:::-;13995:84;13816:269;13765:320;;;:::o;14091:169::-;14231:21;14227:1;14219:6;14215:14;14208:45;14091:169;:::o;14266:366::-;14408:3;14429:67;14493:2;14488:3;14429:67;:::i;:::-;14422:74;;14505:93;14594:3;14505:93;:::i;:::-;14623:2;14618:3;14614:12;14607:19;;14266:366;;;:::o;14638:419::-;14804:4;14842:2;14831:9;14827:18;14819:26;;14891:9;14885:4;14881:20;14877:1;14866:9;14862:17;14855:47;14919:131;15045:4;14919:131;:::i;:::-;14911:139;;14638:419;;;:::o;15063:181::-;15203:33;15199:1;15191:6;15187:14;15180:57;15063:181;:::o;15250:366::-;15392:3;15413:67;15477:2;15472:3;15413:67;:::i;:::-;15406:74;;15489:93;15578:3;15489:93;:::i;:::-;15607:2;15602:3;15598:12;15591:19;;15250:366;;;:::o;15622:419::-;15788:4;15826:2;15815:9;15811:18;15803:26;;15875:9;15869:4;15865:20;15861:1;15850:9;15846:17;15839:47;15903:131;16029:4;15903:131;:::i;:::-;15895:139;;15622:419;;;:::o;16047:220::-;16187:34;16183:1;16175:6;16171:14;16164:58;16256:3;16251:2;16243:6;16239:15;16232:28;16047:220;:::o;16273:366::-;16415:3;16436:67;16500:2;16495:3;16436:67;:::i;:::-;16429:74;;16512:93;16601:3;16512:93;:::i;:::-;16630:2;16625:3;16621:12;16614:19;;16273:366;;;:::o;16645:419::-;16811:4;16849:2;16838:9;16834:18;16826:26;;16898:9;16892:4;16888:20;16884:1;16873:9;16869:17;16862:47;16926:131;17052:4;16926:131;:::i;:::-;16918:139;;16645:419;;;:::o;17070:178::-;17210:30;17206:1;17198:6;17194:14;17187:54;17070:178;:::o;17254:366::-;17396:3;17417:67;17481:2;17476:3;17417:67;:::i;:::-;17410:74;;17493:93;17582:3;17493:93;:::i;:::-;17611:2;17606:3;17602:12;17595:19;;17254:366;;;:::o;17626:419::-;17792:4;17830:2;17819:9;17815:18;17807:26;;17879:9;17873:4;17869:20;17865:1;17854:9;17850:17;17843:47;17907:131;18033:4;17907:131;:::i;:::-;17899:139;;17626:419;;;:::o;18051:180::-;18099:77;18096:1;18089:88;18196:4;18193:1;18186:15;18220:4;18217:1;18210:15;18237:191;18277:4;18297:20;18315:1;18297:20;:::i;:::-;18292:25;;18331:20;18349:1;18331:20;:::i;:::-;18326:25;;18370:1;18367;18364:8;18361:34;;;18375:18;;:::i;:::-;18361:34;18420:1;18417;18413:9;18405:17;;18237:191;;;;:::o;18434:180::-;18574:32;18570:1;18562:6;18558:14;18551:56;18434:180;:::o;18620:366::-;18762:3;18783:67;18847:2;18842:3;18783:67;:::i;:::-;18776:74;;18859:93;18948:3;18859:93;:::i;:::-;18977:2;18972:3;18968:12;18961:19;;18620:366;;;:::o;18992:419::-;19158:4;19196:2;19185:9;19181:18;19173:26;;19245:9;19239:4;19235:20;19231:1;19220:9;19216:17;19209:47;19273:131;19399:4;19273:131;:::i;:::-;19265:139;;18992:419;;;:::o;19417:225::-;19557:34;19553:1;19545:6;19541:14;19534:58;19626:8;19621:2;19613:6;19609:15;19602:33;19417:225;:::o;19648:366::-;19790:3;19811:67;19875:2;19870:3;19811:67;:::i;:::-;19804:74;;19887:93;19976:3;19887:93;:::i;:::-;20005:2;20000:3;19996:12;19989:19;;19648:366;;;:::o;20020:419::-;20186:4;20224:2;20213:9;20209:18;20201:26;;20273:9;20267:4;20263:20;20259:1;20248:9;20244:17;20237:47;20301:131;20427:4;20301:131;:::i;:::-;20293:139;;20020:419;;;:::o;20445:305::-;20485:3;20504:20;20522:1;20504:20;:::i;:::-;20499:25;;20538:20;20556:1;20538:20;:::i;:::-;20533:25;;20692:1;20624:66;20620:74;20617:1;20614:81;20611:107;;;20698:18;;:::i;:::-;20611:107;20742:1;20739;20735:9;20728:16;;20445:305;;;;:::o;20756:226::-;20896:34;20892:1;20884:6;20880:14;20873:58;20965:9;20960:2;20952:6;20948:15;20941:34;20756:226;:::o;20988:366::-;21130:3;21151:67;21215:2;21210:3;21151:67;:::i;:::-;21144:74;;21227:93;21316:3;21227:93;:::i;:::-;21345:2;21340:3;21336:12;21329:19;;20988:366;;;:::o;21360:419::-;21526:4;21564:2;21553:9;21549:18;21541:26;;21613:9;21607:4;21603:20;21599:1;21588:9;21584:17;21577:47;21641:131;21767:4;21641:131;:::i;:::-;21633:139;;21360:419;;;:::o;21785:141::-;21834:4;21857:3;21849:11;;21880:3;21877:1;21870:14;21914:4;21911:1;21901:18;21893:26;;21785:141;;;:::o;21932:93::-;21969:6;22016:2;22011;22004:5;22000:14;21996:23;21986:33;;21932:93;;;:::o;22031:107::-;22075:8;22125:5;22119:4;22115:16;22094:37;;22031:107;;;;:::o;22144:393::-;22213:6;22263:1;22251:10;22247:18;22286:97;22316:66;22305:9;22286:97;:::i;:::-;22404:39;22434:8;22423:9;22404:39;:::i;:::-;22392:51;;22476:4;22472:9;22465:5;22461:21;22452:30;;22525:4;22515:8;22511:19;22504:5;22501:30;22491:40;;22220:317;;22144:393;;;;;:::o;22543:60::-;22571:3;22592:5;22585:12;;22543:60;;;:::o;22609:142::-;22659:9;22692:53;22710:34;22719:24;22737:5;22719:24;:::i;:::-;22710:34;:::i;:::-;22692:53;:::i;:::-;22679:66;;22609:142;;;:::o;22757:75::-;22800:3;22821:5;22814:12;;22757:75;;;:::o;22838:269::-;22948:39;22979:7;22948:39;:::i;:::-;23009:91;23058:41;23082:16;23058:41;:::i;:::-;23050:6;23043:4;23037:11;23009:91;:::i;:::-;23003:4;22996:105;22914:193;22838:269;;;:::o;23113:73::-;23158:3;23113:73;:::o;23192:189::-;23269:32;;:::i;:::-;23310:65;23368:6;23360;23354:4;23310:65;:::i;:::-;23245:136;23192:189;;:::o;23387:186::-;23447:120;23464:3;23457:5;23454:14;23447:120;;;23518:39;23555:1;23548:5;23518:39;:::i;:::-;23491:1;23484:5;23480:13;23471:22;;23447:120;;;23387:186;;:::o;23579:543::-;23680:2;23675:3;23672:11;23669:446;;;23714:38;23746:5;23714:38;:::i;:::-;23798:29;23816:10;23798:29;:::i;:::-;23788:8;23784:44;23981:2;23969:10;23966:18;23963:49;;;24002:8;23987:23;;23963:49;24025:80;24081:22;24099:3;24081:22;:::i;:::-;24071:8;24067:37;24054:11;24025:80;:::i;:::-;23684:431;;23669:446;23579:543;;;:::o;24128:117::-;24182:8;24232:5;24226:4;24222:16;24201:37;;24128:117;;;;:::o;24251:169::-;24295:6;24328:51;24376:1;24372:6;24364:5;24361:1;24357:13;24328:51;:::i;:::-;24324:56;24409:4;24403;24399:15;24389:25;;24302:118;24251:169;;;;:::o;24425:295::-;24501:4;24647:29;24672:3;24666:4;24647:29;:::i;:::-;24639:37;;24709:3;24706:1;24702:11;24696:4;24693:21;24685:29;;24425:295;;;;:::o;24725:1395::-;24842:37;24875:3;24842:37;:::i;:::-;24944:18;24936:6;24933:30;24930:56;;;24966:18;;:::i;:::-;24930:56;25010:38;25042:4;25036:11;25010:38;:::i;:::-;25095:67;25155:6;25147;25141:4;25095:67;:::i;:::-;25189:1;25213:4;25200:17;;25245:2;25237:6;25234:14;25262:1;25257:618;;;;25919:1;25936:6;25933:77;;;25985:9;25980:3;25976:19;25970:26;25961:35;;25933:77;26036:67;26096:6;26089:5;26036:67;:::i;:::-;26030:4;26023:81;25892:222;25227:887;;25257:618;25309:4;25305:9;25297:6;25293:22;25343:37;25375:4;25343:37;:::i;:::-;25402:1;25416:208;25430:7;25427:1;25424:14;25416:208;;;25509:9;25504:3;25500:19;25494:26;25486:6;25479:42;25560:1;25552:6;25548:14;25538:24;;25607:2;25596:9;25592:18;25579:31;;25453:4;25450:1;25446:12;25441:17;;25416:208;;;25652:6;25643:7;25640:19;25637:179;;;25710:9;25705:3;25701:19;25695:26;25753:48;25795:4;25787:6;25783:17;25772:9;25753:48;:::i;:::-;25745:6;25738:64;25660:156;25637:179;25862:1;25858;25850:6;25846:14;25842:22;25836:4;25829:36;25264:611;;;25227:887;;24817:1303;;;24725:1395;;:::o;26126:221::-;26266:34;26262:1;26254:6;26250:14;26243:58;26335:4;26330:2;26322:6;26318:15;26311:29;26126:221;:::o;26353:366::-;26495:3;26516:67;26580:2;26575:3;26516:67;:::i;:::-;26509:74;;26592:93;26681:3;26592:93;:::i;:::-;26710:2;26705:3;26701:12;26694:19;;26353:366;;;:::o;26725:419::-;26891:4;26929:2;26918:9;26914:18;26906:26;;26978:9;26972:4;26968:20;26964:1;26953:9;26949:17;26942:47;27006:131;27132:4;27006:131;:::i;:::-;26998:139;;26725:419;;;:::o;27150:234::-;27290:34;27286:1;27278:6;27274:14;27267:58;27359:17;27354:2;27346:6;27342:15;27335:42;27150:234;:::o;27390:366::-;27532:3;27553:67;27617:2;27612:3;27553:67;:::i;:::-;27546:74;;27629:93;27718:3;27629:93;:::i;:::-;27747:2;27742:3;27738:12;27731:19;;27390:366;;;:::o;27762:419::-;27928:4;27966:2;27955:9;27951:18;27943:26;;28015:9;28009:4;28005:20;28001:1;27990:9;27986:17;27979:47;28043:131;28169:4;28043:131;:::i;:::-;28035:139;;27762:419;;;:::o;28187:148::-;28289:11;28326:3;28311:18;;28187:148;;;;:::o;28341:377::-;28447:3;28475:39;28508:5;28475:39;:::i;:::-;28530:89;28612:6;28607:3;28530:89;:::i;:::-;28523:96;;28628:52;28673:6;28668:3;28661:4;28654:5;28650:16;28628:52;:::i;:::-;28705:6;28700:3;28696:16;28689:23;;28451:267;28341:377;;;;:::o;28724:155::-;28864:7;28860:1;28852:6;28848:14;28841:31;28724:155;:::o;28885:400::-;29045:3;29066:84;29148:1;29143:3;29066:84;:::i;:::-;29059:91;;29159:93;29248:3;29159:93;:::i;:::-;29277:1;29272:3;29268:11;29261:18;;28885:400;;;:::o;29291:701::-;29572:3;29594:95;29685:3;29676:6;29594:95;:::i;:::-;29587:102;;29706:95;29797:3;29788:6;29706:95;:::i;:::-;29699:102;;29818:148;29962:3;29818:148;:::i;:::-;29811:155;;29983:3;29976:10;;29291:701;;;;;:::o;29998:225::-;30138:34;30134:1;30126:6;30122:14;30115:58;30207:8;30202:2;30194:6;30190:15;30183:33;29998:225;:::o;30229:366::-;30371:3;30392:67;30456:2;30451:3;30392:67;:::i;:::-;30385:74;;30468:93;30557:3;30468:93;:::i;:::-;30586:2;30581:3;30577:12;30570:19;;30229:366;;;:::o;30601:419::-;30767:4;30805:2;30794:9;30790:18;30782:26;;30854:9;30848:4;30844:20;30840:1;30829:9;30825:17;30818:47;30882:131;31008:4;30882:131;:::i;:::-;30874:139;;30601:419;;;:::o;31026:182::-;31166:34;31162:1;31154:6;31150:14;31143:58;31026:182;:::o;31214:366::-;31356:3;31377:67;31441:2;31436:3;31377:67;:::i;:::-;31370:74;;31453:93;31542:3;31453:93;:::i;:::-;31571:2;31566:3;31562:12;31555:19;;31214:366;;;:::o;31586:419::-;31752:4;31790:2;31779:9;31775:18;31767:26;;31839:9;31833:4;31829:20;31825:1;31814:9;31810:17;31803:47;31867:131;31993:4;31867:131;:::i;:::-;31859:139;;31586:419;;;:::o;32011:147::-;32112:11;32149:3;32134:18;;32011:147;;;;:::o;32164:114::-;;:::o;32284:398::-;32443:3;32464:83;32545:1;32540:3;32464:83;:::i;:::-;32457:90;;32556:93;32645:3;32556:93;:::i;:::-;32674:1;32669:3;32665:11;32658:18;;32284:398;;;:::o;32688:379::-;32872:3;32894:147;33037:3;32894:147;:::i;:::-;32887:154;;33058:3;33051:10;;32688:379;;;:::o;33073:170::-;33213:22;33209:1;33201:6;33197:14;33190:46;33073:170;:::o;33249:366::-;33391:3;33412:67;33476:2;33471:3;33412:67;:::i;:::-;33405:74;;33488:93;33577:3;33488:93;:::i;:::-;33606:2;33601:3;33597:12;33590:19;;33249:366;;;:::o;33621:419::-;33787:4;33825:2;33814:9;33810:18;33802:26;;33874:9;33868:4;33864:20;33860:1;33849:9;33845:17;33838:47;33902:131;34028:4;33902:131;:::i;:::-;33894:139;;33621:419;;;:::o;34046:98::-;34097:6;34131:5;34125:12;34115:22;;34046:98;;;:::o;34150:168::-;34233:11;34267:6;34262:3;34255:19;34307:4;34302:3;34298:14;34283:29;;34150:168;;;;:::o;34324:360::-;34410:3;34438:38;34470:5;34438:38;:::i;:::-;34492:70;34555:6;34550:3;34492:70;:::i;:::-;34485:77;;34571:52;34616:6;34611:3;34604:4;34597:5;34593:16;34571:52;:::i;:::-;34648:29;34670:6;34648:29;:::i;:::-;34643:3;34639:39;34632:46;;34414:270;34324:360;;;;:::o;34690:640::-;34885:4;34923:3;34912:9;34908:19;34900:27;;34937:71;35005:1;34994:9;34990:17;34981:6;34937:71;:::i;:::-;35018:72;35086:2;35075:9;35071:18;35062:6;35018:72;:::i;:::-;35100;35168:2;35157:9;35153:18;35144:6;35100:72;:::i;:::-;35219:9;35213:4;35209:20;35204:2;35193:9;35189:18;35182:48;35247:76;35318:4;35309:6;35247:76;:::i;:::-;35239:84;;34690:640;;;;;;;:::o;35336:141::-;35392:5;35423:6;35417:13;35408:22;;35439:32;35465:5;35439:32;:::i;:::-;35336:141;;;;:::o;35483:349::-;35552:6;35601:2;35589:9;35580:7;35576:23;35572:32;35569:119;;;35607:79;;:::i;:::-;35569:119;35727:1;35752:63;35807:7;35798:6;35787:9;35783:22;35752:63;:::i;:::-;35742:73;;35698:127;35483:349;;;;:::o;35838:233::-;35877:3;35900:24;35918:5;35900:24;:::i;:::-;35891:33;;35946:66;35939:5;35936:77;35933:103;;36016:18;;:::i;:::-;35933:103;36063:1;36056:5;36052:13;36045:20;;35838:233;;;:::o;36077:180::-;36125:77;36122:1;36115:88;36222:4;36219:1;36212:15;36246:4;36243:1;36236:15;36263:185;36303:1;36320:20;36338:1;36320:20;:::i;:::-;36315:25;;36354:20;36372:1;36354:20;:::i;:::-;36349:25;;36393:1;36383:35;;36398:18;;:::i;:::-;36383:35;36440:1;36437;36433:9;36428:14;;36263:185;;;;:::o;36454:176::-;36486:1;36503:20;36521:1;36503:20;:::i;:::-;36498:25;;36537:20;36555:1;36537:20;:::i;:::-;36532:25;;36576:1;36566:35;;36581:18;;:::i;:::-;36566:35;36622:1;36619;36615:9;36610:14;;36454:176;;;;:::o;36636:180::-;36684:77;36681:1;36674:88;36781:4;36778:1;36771:15;36805:4;36802:1;36795:15

Swarm Source

ipfs://34340335e6782ae382daf7b574789deb0e8a2073009972e5fb2c1e082741b4ed
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.