ETH Price: $2,684.67 (-2.46%)

Token

Space Ape Moon Club (SAMC)
 

Overview

Max Total Supply

2,058 SAMC

Holders

637

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cryptobuild.eth
Balance
3 SAMC
0x702724d8eaa290c4e02D7D239167727152a784A5
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:
SpaceApeMoonClub

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-23
*/

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: 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/SpaceApeMoonClub.sol


pragma solidity ^0.8.11;



contract SpaceApeMoonClub is ERC721A, Ownable {
  string _baseTokenURI;
  
  bool public isActive = false;
  uint256 public constant mintPrice = 0.004 ether;
  uint256 public constant MAX_SUPPLY = 6666;
  uint256 public constant MAX_FREE_SUPPLY = 1500;
  uint256 public constant MAX_FREE_WALLET = 3;
  uint256 public constant MAX_PER_WALLET = 25;
  uint256 public constant MAX_PER_TX = 10;
  uint256 public constant DEV_MINT = 300;

  uint256 private reserveAtATime = 100;
  uint256 private reservedCount = 0;

  constructor(string memory baseURI) ERC721A("Space Ape Moon Club", "SAMC") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(totalSupply() <= MAX_SUPPLY, "Sale has ended.");
    _;
  }

  modifier onlyAuthorized() {
    require(owner() == msg.sender);
    _;
  }

  function toggleSale() public onlyAuthorized {
    isActive = !isActive;
  }


  function setBaseURI(string memory baseURI) public onlyAuthorized {
    _baseTokenURI = baseURI;
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  function reserveNft() public onlyAuthorized {
    require(reservedCount <= DEV_MINT, "Max Reserves taken already!");
    _safeMint(msg.sender, reserveAtATime);
    reservedCount += reserveAtATime;
  }

  function mint(uint256 _count) public payable saleIsOpen {
    uint256 mintIndex = totalSupply();
    uint256 discountPrice = _count;
    uint256 FreeSupplyCount = MAX_FREE_SUPPLY + DEV_MINT;

    if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
    }

    require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(_count <= MAX_PER_TX,"Exceeds maximum allowed tokens");
    require(balanceOf(msg.sender) + _count <= MAX_PER_WALLET, "Exceeds maximum allowed tokens per wallet");

    if(mintIndex > MAX_FREE_SUPPLY) {
      if(_count > 1){
        discountPrice = _count - 1;
      }
      if(balanceOf(msg.sender) >= 1 || _count > 1) {
        require(msg.value >= mintPrice * discountPrice, "Insufficient ETH amount sent.");
      }
    }

    if(mintIndex < FreeSupplyCount) {
      require(balanceOf(msg.sender) + _count <= MAX_FREE_WALLET, "Exceeds Free maximum allowed tokens per wallet");
    }

    _safeMint(msg.sender, _count);

  }


  function withdraw() external onlyAuthorized {
    uint balance = address(this).balance;
    payable(owner()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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"},{"inputs":[],"name":"DEV_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","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":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506064600b556000600c553480156200003657600080fd5b50604051620034c8380380620034c883398181016040528101906200005c9190620004f8565b6040518060400160405280601381526020017f537061636520417065204d6f6f6e20436c7562000000000000000000000000008152506040518060400160405280600481526020017f53414d43000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e0929190620002ab565b508060039080519060200190620000f9929190620002ab565b506200010a6200014a60201b60201c565b600081905550505062000132620001266200014f60201b60201c565b6200015760201b60201c565b62000143816200021d60201b60201c565b50620005ae565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16620002446200028160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200026557600080fd5b80600990805190602001906200027d929190620002ab565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002b99062000578565b90600052602060002090601f016020900481019282620002dd576000855562000329565b82601f10620002f857805160ff191683800117855562000329565b8280016001018555821562000329579182015b82811115620003285782518255916020019190600101906200030b565b5b5090506200033891906200033c565b5090565b5b80821115620003575760008160009055506001016200033d565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003c48262000379565b810181811067ffffffffffffffff82111715620003e657620003e56200038a565b5b80604052505050565b6000620003fb6200035b565b9050620004098282620003b9565b919050565b600067ffffffffffffffff8211156200042c576200042b6200038a565b5b620004378262000379565b9050602081019050919050565b60005b838110156200046457808201518184015260208101905062000447565b8381111562000474576000848401525b50505050565b6000620004916200048b846200040e565b620003ef565b905082815260208101848484011115620004b057620004af62000374565b5b620004bd84828562000444565b509392505050565b600082601f830112620004dd57620004dc6200036f565b5b8151620004ef8482602086016200047a565b91505092915050565b60006020828403121562000511576200051062000365565b5b600082015167ffffffffffffffff8111156200053257620005316200036a565b5b6200054084828501620004c5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200059157607f821691505b60208210811415620005a857620005a762000549565b5b50919050565b612f0a80620005be6000396000f3fe6080604052600436106101cd5760003560e01c80636817c76c116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461060d578063e985e9c51461064a578063f2fde38b14610687578063f43a22dc146106b0576101cd565b806395d89b4114610574578063a0712d681461059f578063a22cb465146105bb578063b88d4fde146105e4576101cd565b806371e3500c116100d157806371e3500c146104f05780637d8966e4146105075780638b53f85e1461051e5780638da5cb5b14610549576101cd565b80636817c76c1461047157806370a082311461049c578063715018a6146104d9576101cd565b806322f3e2d41161016f5780633ccfd60b1161013e5780633ccfd60b146103cb57806342842e0e146103e257806355f804b31461040b5780636352211e14610434576101cd565b806322f3e2d41461032157806323b872dd1461034c578063302560481461037557806332cb6b0c146103a0576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a25780630f2cdd6c146102cb57806318160ddd146102f6576101cd565b806301ffc9a7146101d257806302ddb65b1461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612132565b6106db565b604051610206919061217a565b60405180910390f35b34801561021b57600080fd5b5061022461076d565b60405161023191906121ae565b60405180910390f35b34801561024657600080fd5b5061024f610773565b60405161025c9190612262565b60405180910390f35b34801561027157600080fd5b5061028c600480360381019061028791906122b0565b610805565b604051610299919061231e565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612365565b610881565b005b3480156102d757600080fd5b506102e06109c2565b6040516102ed91906121ae565b60405180910390f35b34801561030257600080fd5b5061030b6109c7565b60405161031891906121ae565b60405180910390f35b34801561032d57600080fd5b506103366109de565b604051610343919061217a565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906123a5565b6109f1565b005b34801561038157600080fd5b5061038a610d16565b60405161039791906121ae565b60405180910390f35b3480156103ac57600080fd5b506103b5610d1b565b6040516103c291906121ae565b60405180910390f35b3480156103d757600080fd5b506103e0610d21565b005b3480156103ee57600080fd5b50610409600480360381019061040491906123a5565b610db6565b005b34801561041757600080fd5b50610432600480360381019061042d919061252d565b610dd6565b005b34801561044057600080fd5b5061045b600480360381019061045691906122b0565b610e2f565b604051610468919061231e565b60405180910390f35b34801561047d57600080fd5b50610486610e41565b60405161049391906121ae565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190612576565b610e4c565b6040516104d091906121ae565b60405180910390f35b3480156104e557600080fd5b506104ee610f05565b005b3480156104fc57600080fd5b50610505610f8d565b005b34801561051357600080fd5b5061051c61103c565b005b34801561052a57600080fd5b506105336110a7565b60405161054091906121ae565b60405180910390f35b34801561055557600080fd5b5061055e6110ad565b60405161056b919061231e565b60405180910390f35b34801561058057600080fd5b506105896110d7565b6040516105969190612262565b60405180910390f35b6105b960048036038101906105b491906122b0565b611169565b005b3480156105c757600080fd5b506105e260048036038101906105dd91906125cf565b611456565b005b3480156105f057600080fd5b5061060b600480360381019061060691906126b0565b6115ce565b005b34801561061957600080fd5b50610634600480360381019061062f91906122b0565b611641565b6040516106419190612262565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190612733565b6116e0565b60405161067e919061217a565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612576565b611774565b005b3480156106bc57600080fd5b506106c561186c565b6040516106d291906121ae565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107665750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6105dc81565b606060028054610782906127a2565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae906127a2565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b600061081082611871565b610846576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088c82610e2f565b90508073ffffffffffffffffffffffffffffffffffffffff166108ad6118d0565b73ffffffffffffffffffffffffffffffffffffffff1614610910576108d9816108d46118d0565b6116e0565b61090f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601981565b60006109d16118d8565b6001546000540303905090565b600a60009054906101000a900460ff1681565b60006109fc826118dd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a63576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a6f846119ab565b91509150610a858187610a806118d0565b6119cd565b610ad157610a9a86610a956118d0565b6116e0565b610ad0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b38576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b458686866001611a11565b8015610b5057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c1e85610bfa888887611a17565b7c020000000000000000000000000000000000000000000000000000000017611a3f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ca6576000600185019050600060046000838152602001908152602001600020541415610ca4576000548114610ca3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d0e8686866001611a6a565b505050505050565b600381565b611a0a81565b3373ffffffffffffffffffffffffffffffffffffffff16610d406110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610d6057600080fd5b6000479050610d6d6110ad565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610db2573d6000803e3d6000fd5b5050565b610dd1838383604051806020016040528060008152506115ce565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610df56110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610e1557600080fd5b8060099080519060200190610e2b929190612023565b5050565b6000610e3a826118dd565b9050919050565b660e35fa931a000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f0d611a70565b73ffffffffffffffffffffffffffffffffffffffff16610f2b6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890612820565b60405180910390fd5b610f8b6000611a78565b565b3373ffffffffffffffffffffffffffffffffffffffff16610fac6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610fcc57600080fd5b61012c600c541115611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a9061288c565b60405180910390fd5b61101f33600b54611b3e565b600b54600c600082825461103391906128db565b92505081905550565b3373ffffffffffffffffffffffffffffffffffffffff1661105b6110ad565b73ffffffffffffffffffffffffffffffffffffffff161461107b57600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b61012c81565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110e6906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611112906127a2565b801561115f5780601f106111345761010080835404028352916020019161115f565b820191906000526020600020905b81548152906001019060200180831161114257829003601f168201915b5050505050905090565b611a0a6111746109c7565b11156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac9061297d565b60405180910390fd5b60006111bf6109c7565b90506000829050600061012c6105dc6111d891906128db565b90506111e26110ad565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461126457600a60009054906101000a900460ff16611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a906129e9565b60405180910390fd5b5b611a0a848461127391906128db565b11156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90612a55565b60405180910390fd5b600a8411156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90612ac1565b60405180910390fd5b60198461130433610e4c565b61130e91906128db565b111561134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690612b53565b60405180910390fd5b6105dc8311156113e65760018411156113725760018461136f9190612b73565b91505b600161137d33610e4c565b10158061138a5750600184115b156113e55781660e35fa931a00006113a29190612ba7565b3410156113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90612c4d565b60405180910390fd5b5b5b80831015611446576003846113fa33610e4c565b61140491906128db565b1115611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143c90612cdf565b60405180910390fd5b5b6114503385611b3e565b50505050565b61145e6118d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114d06118d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157d6118d0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c2919061217a565b60405180910390a35050565b6115d98484846109f1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461163b5761160484848484611b5c565b61163a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061164c82611871565b611682576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061168c611cad565b90506000815114156116ad57604051806020016040528060008152506116d8565b806116b784611d3f565b6040516020016116c8929190612d3b565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61177c611a70565b73ffffffffffffffffffffffffffffffffffffffff1661179a6110ad565b73ffffffffffffffffffffffffffffffffffffffff16146117f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e790612820565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790612dd1565b60405180910390fd5b61186981611a78565b50565b600a81565b60008161187c6118d8565b1115801561188b575060005482105b80156118c9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806118ec6118d8565b11611974576000548110156119735760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611971575b600081141561196757600460008360019003935083815260200190815260200160002054905061193c565b80925050506119a6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a2e868684611d99565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b58828260405180602001604052806000815250611da2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b826118d0565b8786866040518563ffffffff1660e01b8152600401611ba49493929190612e46565b6020604051808303816000875af1925050508015611be057506040513d601f19601f82011682018060405250810190611bdd9190612ea7565b60015b611c5a573d8060008114611c10576040519150601f19603f3d011682016040523d82523d6000602084013e611c15565b606091505b50600081511415611c52576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611cbc906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce8906127a2565b8015611d355780601f10611d0a57610100808354040283529160200191611d35565b820191906000526020600020905b815481529060010190602001808311611d1857829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611d8557600183039250600a81066030018353600a81049050611d65565b508181036020830392508083525050919050565b60009392505050565b611dac8383611e3f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e3a57600080549050600083820390505b611dec6000868380600101945086611b5c565b611e22576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dd9578160005414611e3757600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eac576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611ee7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ef46000848385611a11565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f6b83611f5c6000866000611a17565b611f6585612013565b17611a3f565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f8f5780600081905550505061200e6000848385611a6a565b505050565b60006001821460e11b9050919050565b82805461202f906127a2565b90600052602060002090601f0160209004810192826120515760008555612098565b82601f1061206a57805160ff1916838001178555612098565b82800160010185558215612098579182015b8281111561209757825182559160200191906001019061207c565b5b5090506120a591906120a9565b5090565b5b808211156120c25760008160009055506001016120aa565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61210f816120da565b811461211a57600080fd5b50565b60008135905061212c81612106565b92915050565b600060208284031215612148576121476120d0565b5b60006121568482850161211d565b91505092915050565b60008115159050919050565b6121748161215f565b82525050565b600060208201905061218f600083018461216b565b92915050565b6000819050919050565b6121a881612195565b82525050565b60006020820190506121c3600083018461219f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122035780820151818401526020810190506121e8565b83811115612212576000848401525b50505050565b6000601f19601f8301169050919050565b6000612234826121c9565b61223e81856121d4565b935061224e8185602086016121e5565b61225781612218565b840191505092915050565b6000602082019050818103600083015261227c8184612229565b905092915050565b61228d81612195565b811461229857600080fd5b50565b6000813590506122aa81612284565b92915050565b6000602082840312156122c6576122c56120d0565b5b60006122d48482850161229b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612308826122dd565b9050919050565b612318816122fd565b82525050565b6000602082019050612333600083018461230f565b92915050565b612342816122fd565b811461234d57600080fd5b50565b60008135905061235f81612339565b92915050565b6000806040838503121561237c5761237b6120d0565b5b600061238a85828601612350565b925050602061239b8582860161229b565b9150509250929050565b6000806000606084860312156123be576123bd6120d0565b5b60006123cc86828701612350565b93505060206123dd86828701612350565b92505060406123ee8682870161229b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61243a82612218565b810181811067ffffffffffffffff8211171561245957612458612402565b5b80604052505050565b600061246c6120c6565b90506124788282612431565b919050565b600067ffffffffffffffff82111561249857612497612402565b5b6124a182612218565b9050602081019050919050565b82818337600083830152505050565b60006124d06124cb8461247d565b612462565b9050828152602081018484840111156124ec576124eb6123fd565b5b6124f78482856124ae565b509392505050565b600082601f830112612514576125136123f8565b5b81356125248482602086016124bd565b91505092915050565b600060208284031215612543576125426120d0565b5b600082013567ffffffffffffffff811115612561576125606120d5565b5b61256d848285016124ff565b91505092915050565b60006020828403121561258c5761258b6120d0565b5b600061259a84828501612350565b91505092915050565b6125ac8161215f565b81146125b757600080fd5b50565b6000813590506125c9816125a3565b92915050565b600080604083850312156125e6576125e56120d0565b5b60006125f485828601612350565b9250506020612605858286016125ba565b9150509250929050565b600067ffffffffffffffff82111561262a57612629612402565b5b61263382612218565b9050602081019050919050565b600061265361264e8461260f565b612462565b90508281526020810184848401111561266f5761266e6123fd565b5b61267a8482856124ae565b509392505050565b600082601f830112612697576126966123f8565b5b81356126a7848260208601612640565b91505092915050565b600080600080608085870312156126ca576126c96120d0565b5b60006126d887828801612350565b94505060206126e987828801612350565b93505060406126fa8782880161229b565b925050606085013567ffffffffffffffff81111561271b5761271a6120d5565b5b61272787828801612682565b91505092959194509250565b6000806040838503121561274a576127496120d0565b5b600061275885828601612350565b925050602061276985828601612350565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127ba57607f821691505b602082108114156127ce576127cd612773565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061280a6020836121d4565b9150612815826127d4565b602082019050919050565b60006020820190508181036000830152612839816127fd565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000612876601b836121d4565b915061288182612840565b602082019050919050565b600060208201905081810360008301526128a581612869565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128e682612195565b91506128f183612195565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612926576129256128ac565b5b828201905092915050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612967600f836121d4565b915061297282612931565b602082019050919050565b600060208201905081810360008301526129968161295a565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b60006129d3601d836121d4565b91506129de8261299d565b602082019050919050565b60006020820190508181036000830152612a02816129c6565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000612a3f6016836121d4565b9150612a4a82612a09565b602082019050919050565b60006020820190508181036000830152612a6e81612a32565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000612aab601e836121d4565b9150612ab682612a75565b602082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e73207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b6000612b3d6029836121d4565b9150612b4882612ae1565b604082019050919050565b60006020820190508181036000830152612b6c81612b30565b9050919050565b6000612b7e82612195565b9150612b8983612195565b925082821015612b9c57612b9b6128ac565b5b828203905092915050565b6000612bb282612195565b9150612bbd83612195565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bf657612bf56128ac565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612c37601d836121d4565b9150612c4282612c01565b602082019050919050565b60006020820190508181036000830152612c6681612c2a565b9050919050565b7f457863656564732046726565206d6178696d756d20616c6c6f77656420746f6b60008201527f656e73207065722077616c6c6574000000000000000000000000000000000000602082015250565b6000612cc9602e836121d4565b9150612cd482612c6d565b604082019050919050565b60006020820190508181036000830152612cf881612cbc565b9050919050565b600081905092915050565b6000612d15826121c9565b612d1f8185612cff565b9350612d2f8185602086016121e5565b80840191505092915050565b6000612d478285612d0a565b9150612d538284612d0a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612dbb6026836121d4565b9150612dc682612d5f565b604082019050919050565b60006020820190508181036000830152612dea81612dae565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e1882612df1565b612e228185612dfc565b9350612e328185602086016121e5565b612e3b81612218565b840191505092915050565b6000608082019050612e5b600083018761230f565b612e68602083018661230f565b612e75604083018561219f565b8181036060830152612e878184612e0d565b905095945050505050565b600081519050612ea181612106565b92915050565b600060208284031215612ebd57612ebc6120d0565b5b6000612ecb84828501612e92565b9150509291505056fea2646970667358221220aae29c71f95189de62a382e338232b36264dd4c0bf0d301ccdb0ce2002e9902264736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636817c76c116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461060d578063e985e9c51461064a578063f2fde38b14610687578063f43a22dc146106b0576101cd565b806395d89b4114610574578063a0712d681461059f578063a22cb465146105bb578063b88d4fde146105e4576101cd565b806371e3500c116100d157806371e3500c146104f05780637d8966e4146105075780638b53f85e1461051e5780638da5cb5b14610549576101cd565b80636817c76c1461047157806370a082311461049c578063715018a6146104d9576101cd565b806322f3e2d41161016f5780633ccfd60b1161013e5780633ccfd60b146103cb57806342842e0e146103e257806355f804b31461040b5780636352211e14610434576101cd565b806322f3e2d41461032157806323b872dd1461034c578063302560481461037557806332cb6b0c146103a0576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a25780630f2cdd6c146102cb57806318160ddd146102f6576101cd565b806301ffc9a7146101d257806302ddb65b1461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612132565b6106db565b604051610206919061217a565b60405180910390f35b34801561021b57600080fd5b5061022461076d565b60405161023191906121ae565b60405180910390f35b34801561024657600080fd5b5061024f610773565b60405161025c9190612262565b60405180910390f35b34801561027157600080fd5b5061028c600480360381019061028791906122b0565b610805565b604051610299919061231e565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612365565b610881565b005b3480156102d757600080fd5b506102e06109c2565b6040516102ed91906121ae565b60405180910390f35b34801561030257600080fd5b5061030b6109c7565b60405161031891906121ae565b60405180910390f35b34801561032d57600080fd5b506103366109de565b604051610343919061217a565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906123a5565b6109f1565b005b34801561038157600080fd5b5061038a610d16565b60405161039791906121ae565b60405180910390f35b3480156103ac57600080fd5b506103b5610d1b565b6040516103c291906121ae565b60405180910390f35b3480156103d757600080fd5b506103e0610d21565b005b3480156103ee57600080fd5b50610409600480360381019061040491906123a5565b610db6565b005b34801561041757600080fd5b50610432600480360381019061042d919061252d565b610dd6565b005b34801561044057600080fd5b5061045b600480360381019061045691906122b0565b610e2f565b604051610468919061231e565b60405180910390f35b34801561047d57600080fd5b50610486610e41565b60405161049391906121ae565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190612576565b610e4c565b6040516104d091906121ae565b60405180910390f35b3480156104e557600080fd5b506104ee610f05565b005b3480156104fc57600080fd5b50610505610f8d565b005b34801561051357600080fd5b5061051c61103c565b005b34801561052a57600080fd5b506105336110a7565b60405161054091906121ae565b60405180910390f35b34801561055557600080fd5b5061055e6110ad565b60405161056b919061231e565b60405180910390f35b34801561058057600080fd5b506105896110d7565b6040516105969190612262565b60405180910390f35b6105b960048036038101906105b491906122b0565b611169565b005b3480156105c757600080fd5b506105e260048036038101906105dd91906125cf565b611456565b005b3480156105f057600080fd5b5061060b600480360381019061060691906126b0565b6115ce565b005b34801561061957600080fd5b50610634600480360381019061062f91906122b0565b611641565b6040516106419190612262565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190612733565b6116e0565b60405161067e919061217a565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612576565b611774565b005b3480156106bc57600080fd5b506106c561186c565b6040516106d291906121ae565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107665750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6105dc81565b606060028054610782906127a2565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae906127a2565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b600061081082611871565b610846576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088c82610e2f565b90508073ffffffffffffffffffffffffffffffffffffffff166108ad6118d0565b73ffffffffffffffffffffffffffffffffffffffff1614610910576108d9816108d46118d0565b6116e0565b61090f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601981565b60006109d16118d8565b6001546000540303905090565b600a60009054906101000a900460ff1681565b60006109fc826118dd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a63576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a6f846119ab565b91509150610a858187610a806118d0565b6119cd565b610ad157610a9a86610a956118d0565b6116e0565b610ad0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b38576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b458686866001611a11565b8015610b5057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c1e85610bfa888887611a17565b7c020000000000000000000000000000000000000000000000000000000017611a3f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ca6576000600185019050600060046000838152602001908152602001600020541415610ca4576000548114610ca3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d0e8686866001611a6a565b505050505050565b600381565b611a0a81565b3373ffffffffffffffffffffffffffffffffffffffff16610d406110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610d6057600080fd5b6000479050610d6d6110ad565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610db2573d6000803e3d6000fd5b5050565b610dd1838383604051806020016040528060008152506115ce565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610df56110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610e1557600080fd5b8060099080519060200190610e2b929190612023565b5050565b6000610e3a826118dd565b9050919050565b660e35fa931a000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f0d611a70565b73ffffffffffffffffffffffffffffffffffffffff16610f2b6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890612820565b60405180910390fd5b610f8b6000611a78565b565b3373ffffffffffffffffffffffffffffffffffffffff16610fac6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610fcc57600080fd5b61012c600c541115611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a9061288c565b60405180910390fd5b61101f33600b54611b3e565b600b54600c600082825461103391906128db565b92505081905550565b3373ffffffffffffffffffffffffffffffffffffffff1661105b6110ad565b73ffffffffffffffffffffffffffffffffffffffff161461107b57600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b61012c81565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110e6906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611112906127a2565b801561115f5780601f106111345761010080835404028352916020019161115f565b820191906000526020600020905b81548152906001019060200180831161114257829003601f168201915b5050505050905090565b611a0a6111746109c7565b11156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac9061297d565b60405180910390fd5b60006111bf6109c7565b90506000829050600061012c6105dc6111d891906128db565b90506111e26110ad565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461126457600a60009054906101000a900460ff16611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a906129e9565b60405180910390fd5b5b611a0a848461127391906128db565b11156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90612a55565b60405180910390fd5b600a8411156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90612ac1565b60405180910390fd5b60198461130433610e4c565b61130e91906128db565b111561134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690612b53565b60405180910390fd5b6105dc8311156113e65760018411156113725760018461136f9190612b73565b91505b600161137d33610e4c565b10158061138a5750600184115b156113e55781660e35fa931a00006113a29190612ba7565b3410156113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90612c4d565b60405180910390fd5b5b5b80831015611446576003846113fa33610e4c565b61140491906128db565b1115611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143c90612cdf565b60405180910390fd5b5b6114503385611b3e565b50505050565b61145e6118d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114d06118d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157d6118d0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c2919061217a565b60405180910390a35050565b6115d98484846109f1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461163b5761160484848484611b5c565b61163a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061164c82611871565b611682576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061168c611cad565b90506000815114156116ad57604051806020016040528060008152506116d8565b806116b784611d3f565b6040516020016116c8929190612d3b565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61177c611a70565b73ffffffffffffffffffffffffffffffffffffffff1661179a6110ad565b73ffffffffffffffffffffffffffffffffffffffff16146117f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e790612820565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790612dd1565b60405180910390fd5b61186981611a78565b50565b600a81565b60008161187c6118d8565b1115801561188b575060005482105b80156118c9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806118ec6118d8565b11611974576000548110156119735760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611971575b600081141561196757600460008360019003935083815260200190815260200160002054905061193c565b80925050506119a6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a2e868684611d99565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b58828260405180602001604052806000815250611da2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b826118d0565b8786866040518563ffffffff1660e01b8152600401611ba49493929190612e46565b6020604051808303816000875af1925050508015611be057506040513d601f19601f82011682018060405250810190611bdd9190612ea7565b60015b611c5a573d8060008114611c10576040519150601f19603f3d011682016040523d82523d6000602084013e611c15565b606091505b50600081511415611c52576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611cbc906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce8906127a2565b8015611d355780601f10611d0a57610100808354040283529160200191611d35565b820191906000526020600020905b815481529060010190602001808311611d1857829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611d8557600183039250600a81066030018353600a81049050611d65565b508181036020830392508083525050919050565b60009392505050565b611dac8383611e3f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e3a57600080549050600083820390505b611dec6000868380600101945086611b5c565b611e22576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dd9578160005414611e3757600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eac576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611ee7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ef46000848385611a11565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f6b83611f5c6000866000611a17565b611f6585612013565b17611a3f565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f8f5780600081905550505061200e6000848385611a6a565b505050565b60006001821460e11b9050919050565b82805461202f906127a2565b90600052602060002090601f0160209004810192826120515760008555612098565b82601f1061206a57805160ff1916838001178555612098565b82800160010185558215612098579182015b8281111561209757825182559160200191906001019061207c565b5b5090506120a591906120a9565b5090565b5b808211156120c25760008160009055506001016120aa565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61210f816120da565b811461211a57600080fd5b50565b60008135905061212c81612106565b92915050565b600060208284031215612148576121476120d0565b5b60006121568482850161211d565b91505092915050565b60008115159050919050565b6121748161215f565b82525050565b600060208201905061218f600083018461216b565b92915050565b6000819050919050565b6121a881612195565b82525050565b60006020820190506121c3600083018461219f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122035780820151818401526020810190506121e8565b83811115612212576000848401525b50505050565b6000601f19601f8301169050919050565b6000612234826121c9565b61223e81856121d4565b935061224e8185602086016121e5565b61225781612218565b840191505092915050565b6000602082019050818103600083015261227c8184612229565b905092915050565b61228d81612195565b811461229857600080fd5b50565b6000813590506122aa81612284565b92915050565b6000602082840312156122c6576122c56120d0565b5b60006122d48482850161229b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612308826122dd565b9050919050565b612318816122fd565b82525050565b6000602082019050612333600083018461230f565b92915050565b612342816122fd565b811461234d57600080fd5b50565b60008135905061235f81612339565b92915050565b6000806040838503121561237c5761237b6120d0565b5b600061238a85828601612350565b925050602061239b8582860161229b565b9150509250929050565b6000806000606084860312156123be576123bd6120d0565b5b60006123cc86828701612350565b93505060206123dd86828701612350565b92505060406123ee8682870161229b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61243a82612218565b810181811067ffffffffffffffff8211171561245957612458612402565b5b80604052505050565b600061246c6120c6565b90506124788282612431565b919050565b600067ffffffffffffffff82111561249857612497612402565b5b6124a182612218565b9050602081019050919050565b82818337600083830152505050565b60006124d06124cb8461247d565b612462565b9050828152602081018484840111156124ec576124eb6123fd565b5b6124f78482856124ae565b509392505050565b600082601f830112612514576125136123f8565b5b81356125248482602086016124bd565b91505092915050565b600060208284031215612543576125426120d0565b5b600082013567ffffffffffffffff811115612561576125606120d5565b5b61256d848285016124ff565b91505092915050565b60006020828403121561258c5761258b6120d0565b5b600061259a84828501612350565b91505092915050565b6125ac8161215f565b81146125b757600080fd5b50565b6000813590506125c9816125a3565b92915050565b600080604083850312156125e6576125e56120d0565b5b60006125f485828601612350565b9250506020612605858286016125ba565b9150509250929050565b600067ffffffffffffffff82111561262a57612629612402565b5b61263382612218565b9050602081019050919050565b600061265361264e8461260f565b612462565b90508281526020810184848401111561266f5761266e6123fd565b5b61267a8482856124ae565b509392505050565b600082601f830112612697576126966123f8565b5b81356126a7848260208601612640565b91505092915050565b600080600080608085870312156126ca576126c96120d0565b5b60006126d887828801612350565b94505060206126e987828801612350565b93505060406126fa8782880161229b565b925050606085013567ffffffffffffffff81111561271b5761271a6120d5565b5b61272787828801612682565b91505092959194509250565b6000806040838503121561274a576127496120d0565b5b600061275885828601612350565b925050602061276985828601612350565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127ba57607f821691505b602082108114156127ce576127cd612773565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061280a6020836121d4565b9150612815826127d4565b602082019050919050565b60006020820190508181036000830152612839816127fd565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000612876601b836121d4565b915061288182612840565b602082019050919050565b600060208201905081810360008301526128a581612869565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128e682612195565b91506128f183612195565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612926576129256128ac565b5b828201905092915050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612967600f836121d4565b915061297282612931565b602082019050919050565b600060208201905081810360008301526129968161295a565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b60006129d3601d836121d4565b91506129de8261299d565b602082019050919050565b60006020820190508181036000830152612a02816129c6565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000612a3f6016836121d4565b9150612a4a82612a09565b602082019050919050565b60006020820190508181036000830152612a6e81612a32565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000612aab601e836121d4565b9150612ab682612a75565b602082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e73207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b6000612b3d6029836121d4565b9150612b4882612ae1565b604082019050919050565b60006020820190508181036000830152612b6c81612b30565b9050919050565b6000612b7e82612195565b9150612b8983612195565b925082821015612b9c57612b9b6128ac565b5b828203905092915050565b6000612bb282612195565b9150612bbd83612195565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bf657612bf56128ac565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612c37601d836121d4565b9150612c4282612c01565b602082019050919050565b60006020820190508181036000830152612c6681612c2a565b9050919050565b7f457863656564732046726565206d6178696d756d20616c6c6f77656420746f6b60008201527f656e73207065722077616c6c6574000000000000000000000000000000000000602082015250565b6000612cc9602e836121d4565b9150612cd482612c6d565b604082019050919050565b60006020820190508181036000830152612cf881612cbc565b9050919050565b600081905092915050565b6000612d15826121c9565b612d1f8185612cff565b9350612d2f8185602086016121e5565b80840191505092915050565b6000612d478285612d0a565b9150612d538284612d0a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612dbb6026836121d4565b9150612dc682612d5f565b604082019050919050565b60006020820190508181036000830152612dea81612dae565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e1882612df1565b612e228185612dfc565b9350612e328185602086016121e5565b612e3b81612218565b840191505092915050565b6000608082019050612e5b600083018761230f565b612e68602083018661230f565b612e75604083018561219f565b8181036060830152612e878184612e0d565b905095945050505050565b600081519050612ea181612106565b92915050565b600060208284031215612ebd57612ebc6120d0565b5b6000612ecb84828501612e92565b9150509291505056fea2646970667358221220aae29c71f95189de62a382e338232b36264dd4c0bf0d301ccdb0ce2002e9902264736f6c634300080b0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48224:2516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18015:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48435:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23662:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25608:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25156:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48534:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17069:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48304:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34873:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48486:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48389:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50603:134;;;;;;;;;;;;;:::i;:::-;;26498:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49134:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23451:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48337:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18694:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;;;;;;;;;;;:::i;:::-;;49355:204;;;;;;;;;;;;;:::i;:::-;;49049:77;;;;;;;;;;;;;:::i;:::-;;48626:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1955:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23831:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49565:1030;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25884:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26754:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24006:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26263:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48582:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18015:615;18100:4;18415:10;18400:25;;:11;:25;;;;:102;;;;18492:10;18477:25;;:11;:25;;;;18400:102;:179;;;;18569:10;18554:25;;:11;:25;;;;18400:179;18380:199;;18015:615;;;:::o;48435:46::-;48477:4;48435:46;:::o;23662:100::-;23716:13;23749:5;23742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23662:100;:::o;25608:204::-;25676:7;25701:16;25709:7;25701;:16::i;:::-;25696:64;;25726:34;;;;;;;;;;;;;;25696:64;25780:15;:24;25796:7;25780:24;;;;;;;;;;;;;;;;;;;;;25773:31;;25608:204;;;:::o;25156:386::-;25229:13;25245:16;25253:7;25245;:16::i;:::-;25229:32;;25301:5;25278:28;;:19;:17;:19::i;:::-;:28;;;25274:175;;25326:44;25343:5;25350:19;:17;:19::i;:::-;25326:16;:44::i;:::-;25321:128;;25398:35;;;;;;;;;;;;;;25321:128;25274:175;25488:2;25461:15;:24;25477:7;25461:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25526:7;25522:2;25506:28;;25515:5;25506:28;;;;;;;;;;;;25218:324;25156:386;;:::o;48534:43::-;48575:2;48534:43;:::o;17069:315::-;17122:7;17350:15;:13;:15::i;:::-;17335:12;;17319:13;;:28;:46;17312:53;;17069:315;:::o;48304:28::-;;;;;;;;;;;;;:::o;34873:2800::-;35007:27;35037;35056:7;35037:18;:27::i;:::-;35007:57;;35122:4;35081:45;;35097:19;35081:45;;;35077:86;;35135:28;;;;;;;;;;;;;;35077:86;35177:27;35206:23;35233:28;35253:7;35233:19;:28::i;:::-;35176:85;;;;35361:62;35380:15;35397:4;35403:19;:17;:19::i;:::-;35361:18;:62::i;:::-;35356:174;;35443:43;35460:4;35466:19;:17;:19::i;:::-;35443:16;:43::i;:::-;35438:92;;35495:35;;;;;;;;;;;;;;35438:92;35356:174;35561:1;35547:16;;:2;:16;;;35543:52;;;35572:23;;;;;;;;;;;;;;35543:52;35608:43;35630:4;35636:2;35640:7;35649:1;35608:21;:43::i;:::-;35744:15;35741:160;;;35884:1;35863:19;35856:30;35741:160;36279:18;:24;36298:4;36279:24;;;;;;;;;;;;;;;;36277:26;;;;;;;;;;;;36348:18;:22;36367:2;36348:22;;;;;;;;;;;;;;;;36346:24;;;;;;;;;;;36670:145;36707:2;36755:45;36770:4;36776:2;36780:19;36755:14;:45::i;:::-;14297:8;36728:72;36670:18;:145::i;:::-;36641:17;:26;36659:7;36641:26;;;;;;;;;;;:174;;;;36985:1;14297:8;36935:19;:46;:51;36931:626;;;37007:19;37039:1;37029:7;:11;37007:33;;37196:1;37162:17;:30;37180:11;37162:30;;;;;;;;;;;;:35;37158:384;;;37300:13;;37285:11;:28;37281:242;;37480:19;37447:17;:30;37465:11;37447:30;;;;;;;;;;;:52;;;;37281:242;37158:384;36988:569;36931:626;37604:7;37600:2;37585:27;;37594:4;37585:27;;;;;;;;;;;;37623:42;37644:4;37650:2;37654:7;37663:1;37623:20;:42::i;:::-;34996:2677;;;34873:2800;;;:::o;48486:43::-;48528:1;48486:43;:::o;48389:41::-;48426:4;48389:41;:::o;50603:134::-;49018:10;49007:21;;:7;:5;:7::i;:::-;:21;;;48999:30;;;;;;50654:12:::1;50669:21;50654:36;;50705:7;:5;:7::i;:::-;50697:25;;:34;50723:7;50697:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50647:90;50603:134::o:0;26498:185::-;26636:39;26653:4;26659:2;26663:7;26636:39;;;;;;;;;;;;:16;:39::i;:::-;26498:185;;;:::o;49134:101::-;49018:10;49007:21;;:7;:5;:7::i;:::-;:21;;;48999:30;;;;;;49222:7:::1;49206:13;:23;;;;;;;;;;;;:::i;:::-;;49134:101:::0;:::o;23451:144::-;23515:7;23558:27;23577:7;23558:18;:27::i;:::-;23535:52;;23451:144;;;:::o;48337:47::-;48373:11;48337:47;:::o;18694:224::-;18758:7;18799:1;18782:19;;:5;:19;;;18778:60;;;18810:28;;;;;;;;;;;;;;18778:60;13249:13;18856:18;:25;18875:5;18856:25;;;;;;;;;;;;;;;;:54;18849:61;;18694:224;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;49355:204::-;49018:10;49007:21;;:7;:5;:7::i;:::-;:21;;;48999:30;;;;;;48661:3:::1;49414:13;;:25;;49406:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49478:37;49488:10;49500:14;;49478:9;:37::i;:::-;49539:14;;49522:13;;:31;;;;;;;:::i;:::-;;;;;;;;49355:204::o:0;49049:77::-;49018:10;49007:21;;:7;:5;:7::i;:::-;:21;;;48999:30;;;;;;49112:8:::1;;;;;;;;;;;49111:9;49100:8;;:20;;;;;;;;;;;;;;;;;;49049:77::o:0;48626:38::-;48661:3;48626:38;:::o;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;23831:104::-;23887:13;23920:7;23913:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23831:104;:::o;49565:1030::-;48426:4;48899:13;:11;:13::i;:::-;:27;;48891:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49628:17:::1;49648:13;:11;:13::i;:::-;49628:33;;49668:21;49692:6;49668:30;;49705:23;48661:3;48477:4;49731:26;;;;:::i;:::-;49705:52;;49784:7;:5;:7::i;:::-;49770:21;;:10;:21;;;49766:94;;49810:8;;;;;;;;;;;49802:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;49766:94;48426:4;49888:6;49876:9;:18;;;;:::i;:::-;:32;;49868:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;48619:2;49950:6;:20;;49942:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48575:2;50043:6;50019:21;50029:10;50019:9;:21::i;:::-;:30;;;;:::i;:::-;:48;;50011:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;48477:4;50125:9;:27;50122:263;;;50175:1;50166:6;:10;50163:61;;;50213:1;50204:6;:10;;;;:::i;:::-;50188:26;;50163:61;50260:1;50235:21;50245:10;50235:9;:21::i;:::-;:26;;:40;;;;50274:1;50265:6;:10;50235:40;50232:146;;;50321:13;48373:11;50309:25;;;;:::i;:::-;50296:9;:38;;50288:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;50232:146;50122:263;50408:15;50396:9;:27;50393:157;;;48528:1;50466:6;50442:21;50452:10;50442:9;:21::i;:::-;:30;;;;:::i;:::-;:49;;50434:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;50393:157;50558:29;50568:10;50580:6;50558:9;:29::i;:::-;49621:974;;;49565:1030:::0;:::o;25884:308::-;25995:19;:17;:19::i;:::-;25983:31;;:8;:31;;;25979:61;;;26023:17;;;;;;;;;;;;;;25979:61;26105:8;26053:18;:39;26072:19;:17;:19::i;:::-;26053:39;;;;;;;;;;;;;;;:49;26093:8;26053:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26165:8;26129:55;;26144:19;:17;:19::i;:::-;26129:55;;;26175:8;26129:55;;;;;;:::i;:::-;;;;;;;;25884:308;;:::o;26754:399::-;26921:31;26934:4;26940:2;26944:7;26921:12;:31::i;:::-;26985:1;26967:2;:14;;;:19;26963:183;;27006:56;27037:4;27043:2;27047:7;27056:5;27006:30;:56::i;:::-;27001:145;;27090:40;;;;;;;;;;;;;;27001:145;26963:183;26754:399;;;;:::o;24006:318::-;24079:13;24110:16;24118:7;24110;:16::i;:::-;24105:59;;24135:29;;;;;;;;;;;;;;24105:59;24177:21;24201:10;:8;:10::i;:::-;24177:34;;24254:1;24235:7;24229:21;:26;;:87;;;;;;;;;;;;;;;;;24282:7;24291:18;24301:7;24291:9;:18::i;:::-;24265:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24229:87;24222:94;;;24006:318;;;:::o;26263:164::-;26360:4;26384:18;:25;26403:5;26384:25;;;;;;;;;;;;;;;:35;26410:8;26384:35;;;;;;;;;;;;;;;;;;;;;;;;;26377:42;;26263:164;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;;;2945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;48582:39::-;48619:2;48582:39;:::o;27408:273::-;27465:4;27521:7;27502:15;:13;:15::i;:::-;:26;;:66;;;;;27555:13;;27545:7;:23;27502:66;:152;;;;;27653:1;14019:8;27606:17;:26;27624:7;27606:26;;;;;;;;;;;;:43;:48;27502:152;27482:172;;27408:273;;;:::o;45969:105::-;46029:7;46056:10;46049:17;;45969:105;:::o;16593:92::-;16649:7;16593:92;:::o;20368:1129::-;20435:7;20455:12;20470:7;20455:22;;20538:4;20519:15;:13;:15::i;:::-;:23;20515:915;;20572:13;;20565:4;:20;20561:869;;;20610:14;20627:17;:23;20645:4;20627:23;;;;;;;;;;;;20610:40;;20743:1;14019:8;20716:6;:23;:28;20712:699;;;21235:113;21252:1;21242:6;:11;21235:113;;;21295:17;:25;21313:6;;;;;;;21295:25;;;;;;;;;;;;21286:34;;21235:113;;;21381:6;21374:13;;;;;;20712:699;20587:843;20561:869;20515:915;21458:31;;;;;;;;;;;;;;20368:1129;;;;:::o;33209:652::-;33304:27;33333:23;33374:53;33430:15;33374:71;;33616:7;33610:4;33603:21;33651:22;33645:4;33638:36;33727:4;33721;33711:21;33688:44;;33823:19;33817:26;33798:45;;33554:300;33209:652;;;:::o;33974:645::-;34116:11;34278:15;34272:4;34268:26;34260:34;;34437:15;34426:9;34422:31;34409:44;;34584:15;34573:9;34570:30;34563:4;34552:9;34549:19;34546:55;34536:65;;33974:645;;;;;:::o;44802:159::-;;;;;:::o;43114:309::-;43249:7;43269:16;14420:3;43295:19;:40;;43269:67;;14420:3;43362:31;43373:4;43379:2;43383:9;43362:10;:31::i;:::-;43354:40;;:61;;43347:68;;;43114:309;;;;;:::o;22942:447::-;23022:14;23190:15;23183:5;23179:27;23170:36;;23364:5;23350:11;23326:22;23322:40;23319:51;23312:5;23309:62;23299:72;;22942:447;;;;:::o;45620:158::-;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;27765:104::-;27834:27;27844:2;27848:8;27834:27;;;;;;;;;;;;:9;:27::i;:::-;27765:104;;:::o;41624:716::-;41787:4;41833:2;41808:45;;;41854:19;:17;:19::i;:::-;41875:4;41881:7;41890:5;41808:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41804:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42108:1;42091:6;:13;:18;42087:235;;;42137:40;;;;;;;;;;;;;;42087:235;42280:6;42274:13;42265:6;42261:2;42257:15;42250:38;41804:529;41977:54;;;41967:64;;;:6;:64;;;;41960:71;;;41624:716;;;;;;:::o;49241:108::-;49301:13;49330;49323:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49241:108;:::o;46180:1960::-;46237:17;46656:3;46649:4;46643:11;46639:21;46632:28;;46747:3;46741:4;46734:17;46853:3;47309:5;47439:1;47434:3;47430:11;47423:18;;47576:2;47570:4;47566:13;47562:2;47558:22;47553:3;47545:36;47617:2;47611:4;47607:13;47599:21;;47201:697;47636:4;47201:697;;;47827:1;47822:3;47818:11;47811:18;;47878:2;47872:4;47868:13;47864:2;47860:22;47855:3;47847:36;47731:2;47725:4;47721:13;47713:21;;47201:697;;;47205:430;47937:3;47932;47928:13;48052:2;48047:3;48043:12;48036:19;;48115:6;48110:3;48103:19;46276:1857;;46180:1960;;;:::o;43999:147::-;44136:6;43999:147;;;;;:::o;28285:681::-;28408:19;28414:2;28418:8;28408:5;:19::i;:::-;28487:1;28469:2;:14;;;:19;28465:483;;28509:11;28523:13;;28509:27;;28555:13;28577:8;28571:3;:14;28555:30;;28604:233;28635:62;28674:1;28678:2;28682:7;;;;;;28691:5;28635:30;:62::i;:::-;28630:167;;28733:40;;;;;;;;;;;;;;28630:167;28832:3;28824:5;:11;28604:233;;28919:3;28902:13;;:20;28898:34;;28924:8;;;28898:34;28490:458;;28465:483;28285:681;;;:::o;29239:1529::-;29304:20;29327:13;;29304:36;;29369:1;29355:16;;:2;:16;;;29351:48;;;29380:19;;;;;;;;;;;;;;29351:48;29426:1;29414:8;:13;29410:44;;;29436:18;;;;;;;;;;;;;;29410:44;29467:61;29497:1;29501:2;29505:12;29519:8;29467:21;:61::i;:::-;30010:1;13386:2;29981:1;:25;;29980:31;29968:8;:44;29942:18;:22;29961:2;29942:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30289:139;30326:2;30380:33;30403:1;30407:2;30411:1;30380:14;:33::i;:::-;30347:30;30368:8;30347:20;:30::i;:::-;:66;30289:18;:139::i;:::-;30255:17;:31;30273:12;30255:31;;;;;;;;;;;:173;;;;30445:15;30463:12;30445:30;;30490:11;30519:8;30504:12;:23;30490:37;;30542:101;30594:9;;;;;;30590:2;30569:35;;30586:1;30569:35;;;;;;;;;;;;30638:3;30628:7;:13;30542:101;;30675:3;30659:13;:19;;;;29716:974;;30700:60;30729:1;30733:2;30737:12;30751:8;30700:20;:60::i;:::-;29293:1475;29239:1529;;:::o;24772:322::-;24842:14;25073:1;25063:8;25060:15;25035:23;25031:45;25021:55;;24772:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:177::-;13758:29;13754:1;13746:6;13742:14;13735:53;13618:177;:::o;13801:366::-;13943:3;13964:67;14028:2;14023:3;13964:67;:::i;:::-;13957:74;;14040:93;14129:3;14040:93;:::i;:::-;14158:2;14153:3;14149:12;14142:19;;13801:366;;;:::o;14173:419::-;14339:4;14377:2;14366:9;14362:18;14354:26;;14426:9;14420:4;14416:20;14412:1;14401:9;14397:17;14390:47;14454:131;14580:4;14454:131;:::i;:::-;14446:139;;14173:419;;;:::o;14598:180::-;14646:77;14643:1;14636:88;14743:4;14740:1;14733:15;14767:4;14764:1;14757:15;14784:305;14824:3;14843:20;14861:1;14843:20;:::i;:::-;14838:25;;14877:20;14895:1;14877:20;:::i;:::-;14872:25;;15031:1;14963:66;14959:74;14956:1;14953:81;14950:107;;;15037:18;;:::i;:::-;14950:107;15081:1;15078;15074:9;15067:16;;14784:305;;;;:::o;15095:165::-;15235:17;15231:1;15223:6;15219:14;15212:41;15095:165;:::o;15266:366::-;15408:3;15429:67;15493:2;15488:3;15429:67;:::i;:::-;15422:74;;15505:93;15594:3;15505:93;:::i;:::-;15623:2;15618:3;15614:12;15607:19;;15266:366;;;:::o;15638:419::-;15804:4;15842:2;15831:9;15827:18;15819:26;;15891:9;15885:4;15881:20;15877:1;15866:9;15862:17;15855:47;15919:131;16045:4;15919:131;:::i;:::-;15911:139;;15638:419;;;:::o;16063:179::-;16203:31;16199:1;16191:6;16187:14;16180:55;16063:179;:::o;16248:366::-;16390:3;16411:67;16475:2;16470:3;16411:67;:::i;:::-;16404:74;;16487:93;16576:3;16487:93;:::i;:::-;16605:2;16600:3;16596:12;16589:19;;16248:366;;;:::o;16620:419::-;16786:4;16824:2;16813:9;16809:18;16801:26;;16873:9;16867:4;16863:20;16859:1;16848:9;16844:17;16837:47;16901:131;17027:4;16901:131;:::i;:::-;16893:139;;16620:419;;;:::o;17045:172::-;17185:24;17181:1;17173:6;17169:14;17162:48;17045:172;:::o;17223:366::-;17365:3;17386:67;17450:2;17445:3;17386:67;:::i;:::-;17379:74;;17462:93;17551:3;17462:93;:::i;:::-;17580:2;17575:3;17571:12;17564:19;;17223:366;;;:::o;17595:419::-;17761:4;17799:2;17788:9;17784:18;17776:26;;17848:9;17842:4;17838:20;17834:1;17823:9;17819:17;17812:47;17876:131;18002:4;17876:131;:::i;:::-;17868:139;;17595:419;;;:::o;18020:180::-;18160:32;18156:1;18148:6;18144:14;18137:56;18020:180;:::o;18206:366::-;18348:3;18369:67;18433:2;18428:3;18369:67;:::i;:::-;18362:74;;18445:93;18534:3;18445:93;:::i;:::-;18563:2;18558:3;18554:12;18547:19;;18206:366;;;:::o;18578:419::-;18744:4;18782:2;18771:9;18767:18;18759:26;;18831:9;18825:4;18821:20;18817:1;18806:9;18802:17;18795:47;18859:131;18985:4;18859:131;:::i;:::-;18851:139;;18578:419;;;:::o;19003:228::-;19143:34;19139:1;19131:6;19127:14;19120:58;19212:11;19207:2;19199:6;19195:15;19188:36;19003:228;:::o;19237:366::-;19379:3;19400:67;19464:2;19459:3;19400:67;:::i;:::-;19393:74;;19476:93;19565:3;19476:93;:::i;:::-;19594:2;19589:3;19585:12;19578:19;;19237:366;;;:::o;19609:419::-;19775:4;19813:2;19802:9;19798:18;19790:26;;19862:9;19856:4;19852:20;19848:1;19837:9;19833:17;19826:47;19890:131;20016:4;19890:131;:::i;:::-;19882:139;;19609:419;;;:::o;20034:191::-;20074:4;20094:20;20112:1;20094:20;:::i;:::-;20089:25;;20128:20;20146:1;20128:20;:::i;:::-;20123:25;;20167:1;20164;20161:8;20158:34;;;20172:18;;:::i;:::-;20158:34;20217:1;20214;20210:9;20202:17;;20034:191;;;;:::o;20231:348::-;20271:7;20294:20;20312:1;20294:20;:::i;:::-;20289:25;;20328:20;20346:1;20328:20;:::i;:::-;20323:25;;20516:1;20448:66;20444:74;20441:1;20438:81;20433:1;20426:9;20419:17;20415:105;20412:131;;;20523:18;;:::i;:::-;20412:131;20571:1;20568;20564:9;20553:20;;20231:348;;;;:::o;20585:179::-;20725:31;20721:1;20713:6;20709:14;20702:55;20585:179;:::o;20770:366::-;20912:3;20933:67;20997:2;20992:3;20933:67;:::i;:::-;20926:74;;21009:93;21098:3;21009:93;:::i;:::-;21127:2;21122:3;21118:12;21111:19;;20770:366;;;:::o;21142:419::-;21308:4;21346:2;21335:9;21331:18;21323:26;;21395:9;21389:4;21385:20;21381:1;21370:9;21366:17;21359:47;21423:131;21549:4;21423:131;:::i;:::-;21415:139;;21142:419;;;:::o;21567:233::-;21707:34;21703:1;21695:6;21691:14;21684:58;21776:16;21771:2;21763:6;21759:15;21752:41;21567:233;:::o;21806:366::-;21948:3;21969:67;22033:2;22028:3;21969:67;:::i;:::-;21962:74;;22045:93;22134:3;22045:93;:::i;:::-;22163:2;22158:3;22154:12;22147:19;;21806:366;;;:::o;22178:419::-;22344:4;22382:2;22371:9;22367:18;22359:26;;22431:9;22425:4;22421:20;22417:1;22406:9;22402:17;22395:47;22459:131;22585:4;22459:131;:::i;:::-;22451:139;;22178:419;;;:::o;22603:148::-;22705:11;22742:3;22727:18;;22603:148;;;;:::o;22757:377::-;22863:3;22891:39;22924:5;22891:39;:::i;:::-;22946:89;23028:6;23023:3;22946:89;:::i;:::-;22939:96;;23044:52;23089:6;23084:3;23077:4;23070:5;23066:16;23044:52;:::i;:::-;23121:6;23116:3;23112:16;23105:23;;22867:267;22757:377;;;;:::o;23140:435::-;23320:3;23342:95;23433:3;23424:6;23342:95;:::i;:::-;23335:102;;23454:95;23545:3;23536:6;23454:95;:::i;:::-;23447:102;;23566:3;23559:10;;23140:435;;;;;:::o;23581:225::-;23721:34;23717:1;23709:6;23705:14;23698:58;23790:8;23785:2;23777:6;23773:15;23766:33;23581:225;:::o;23812:366::-;23954:3;23975:67;24039:2;24034:3;23975:67;:::i;:::-;23968:74;;24051:93;24140:3;24051:93;:::i;:::-;24169:2;24164:3;24160:12;24153:19;;23812:366;;;:::o;24184:419::-;24350:4;24388:2;24377:9;24373:18;24365:26;;24437:9;24431:4;24427:20;24423:1;24412:9;24408:17;24401:47;24465:131;24591:4;24465:131;:::i;:::-;24457:139;;24184:419;;;:::o;24609:98::-;24660:6;24694:5;24688:12;24678:22;;24609:98;;;:::o;24713:168::-;24796:11;24830:6;24825:3;24818:19;24870:4;24865:3;24861:14;24846:29;;24713:168;;;;:::o;24887:360::-;24973:3;25001:38;25033:5;25001:38;:::i;:::-;25055:70;25118:6;25113:3;25055:70;:::i;:::-;25048:77;;25134:52;25179:6;25174:3;25167:4;25160:5;25156:16;25134:52;:::i;:::-;25211:29;25233:6;25211:29;:::i;:::-;25206:3;25202:39;25195:46;;24977:270;24887:360;;;;:::o;25253:640::-;25448:4;25486:3;25475:9;25471:19;25463:27;;25500:71;25568:1;25557:9;25553:17;25544:6;25500:71;:::i;:::-;25581:72;25649:2;25638:9;25634:18;25625:6;25581:72;:::i;:::-;25663;25731:2;25720:9;25716:18;25707:6;25663:72;:::i;:::-;25782:9;25776:4;25772:20;25767:2;25756:9;25752:18;25745:48;25810:76;25881:4;25872:6;25810:76;:::i;:::-;25802:84;;25253:640;;;;;;;:::o;25899:141::-;25955:5;25986:6;25980:13;25971:22;;26002:32;26028:5;26002:32;:::i;:::-;25899:141;;;;:::o;26046:349::-;26115:6;26164:2;26152:9;26143:7;26139:23;26135:32;26132:119;;;26170:79;;:::i;:::-;26132:119;26290:1;26315:63;26370:7;26361:6;26350:9;26346:22;26315:63;:::i;:::-;26305:73;;26261:127;26046:349;;;;:::o

Swarm Source

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