ETH Price: $2,888.28 (-10.36%)
Gas: 13 Gwei

Token

Fibonacci (FIB)
 

Overview

Max Total Supply

10,000 FIB

Holders

732

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
100 FIB
0xd3b408d8cbdd710bb2b57086f0edc3b6c5ebb2e1
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:
Fibonacci

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: 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: 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 1;
    }

    /**
     * @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/Fibonacci.sol


// Fibonacci

pragma solidity >=0.8.9 <0.9.0;



contract Fibonacci is ERC721A, Ownable {
    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;

    uint256 public PRICE = 0.0069 ether;
    uint256 public MAX_SUPPLY = 10000;
    uint256 public FREE_SUPPLY = 3000;
    uint256 public MAX_MINT = 10;
    uint256 public MAX_FREE_MINT = 5;

    bool public PAUSE = true;
    bool public REVEALED = false;

    mapping(address => uint256) public FREE_MINT_BALANCE;

    /// @notice Contract is paused
    error ContractIsPaused();
    /// @notice Zero amount mint
    error ZeroAmountMint();
    /// @notice Max amount has currently been minted
    error MaxSupplyReached();
    /// @notice User has reached max mint amount
    error MaxMintAmountReached();
    /// @notice User has sent the correct amount of ETH
    error InsufficientFunds();
    /// @notice There are no more free mints
    error FreeMintSoldOut();

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

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

    modifier mintCompliance(uint256 _mintAmount) {
        uint256 supply = totalSupply();
        if (PAUSE) revert ContractIsPaused();
        if (_mintAmount == 0) revert ZeroAmountMint();
        if (supply + _mintAmount > MAX_SUPPLY) revert MaxSupplyReached();
        if (_mintAmount > MAX_MINT) revert MaxMintAmountReached();
        _;
    }

    // public
    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        if (msg.value == 0) {
            if (totalSupply() + _mintAmount > FREE_SUPPLY)
                revert FreeMintSoldOut();

            uint256 FREE_MINT_COUNT = FREE_MINT_BALANCE[msg.sender];
            if (FREE_MINT_COUNT + _mintAmount > MAX_FREE_MINT)
                revert MaxMintAmountReached();

            FREE_MINT_BALANCE[msg.sender] += _mintAmount;
        } else {

            if (msg.value > PRICE * _mintAmount) revert InsufficientFunds();
        }

        _safeMint(msg.sender, _mintAmount);
    }

    // owner mint
    function mintForOwner(uint256 _mintAmount) public onlyOwner {
        uint256 supply = totalSupply();
        if (MAX_SUPPLY <= supply + _mintAmount) revert MaxSupplyReached();
        _safeMint(msg.sender, _mintAmount);
    }

    function contractURI() public view returns (string memory) {
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        "contract-data",
                        baseExtension
                    )
                )
                : "";
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (REVEALED == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _toString(tokenId),
                        baseExtension
                    )
                )
                : "";
    }

    //only owner    
    function reveal() public onlyOwner {
        REVEALED = true;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        PRICE = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        MAX_MINT = _newmaxMintAmount;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setPause(bool _state) public onlyOwner {
        PAUSE = _state;
    }

    function withdraw() public payable onlyOwner {
        (bool finished, ) = payable(0x6568615f468D177de965DA903F3B49B8509Dc7f7).call{
            value: (address(this).balance * 33) / 100
        }("");
        require(finished);

        (bool hs, ) = payable(0x8106AF408125B39cEfA2fdfD34CF6C313E7B77D0).call{
            value: (address(this).balance * 33) / 100
        }("");
        require(hs);
        
        (bool os, ) = payable(0x85fd31EcBAd82634A2a14Ed7f068B898E2e47152).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":"ContractIsPaused","type":"error"},{"inputs":[],"name":"FreeMintSoldOut","type":"error"},{"inputs":[],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"MaxMintAmountReached","type":"error"},{"inputs":[],"name":"MaxSupplyReached","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"},{"inputs":[],"name":"ZeroAmountMint","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":[{"internalType":"address","name":"","type":"address"}],"name":"FREE_MINT_BALANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","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":[],"name":"PAUSE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEALED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"reveal","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600a9062000026908262000264565b506618838370f34000600c55612710600d55610bb8600e55600a600f5560056010556011805461ffff191660011790553480156200006357600080fd5b506040516200218f3803806200218f8339810160408190526200008691620003e7565b8383600262000096838262000264565b506003620000a5828262000264565b5050600160005550620000b833620000d8565b620000c3826200012a565b620000ce8162000146565b50505050620004a0565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001346200015e565b600962000142828262000264565b5050565b620001506200015e565b600b62000142828262000264565b6008546001600160a01b03163314620001bd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001ea57607f821691505b6020821081036200020b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200025f57600081815260208120601f850160051c810160208610156200023a5750805b601f850160051c820191505b818110156200025b5782815560010162000246565b5050505b505050565b81516001600160401b03811115620002805762000280620001bf565b6200029881620002918454620001d5565b8462000211565b602080601f831160018114620002d05760008415620002b75750858301515b600019600386901b1c1916600185901b1785556200025b565b600085815260208120601f198616915b828110156200030157888601518255948401946001909101908401620002e0565b5085821015620003205787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200034257600080fd5b81516001600160401b03808211156200035f576200035f620001bf565b604051601f8301601f19908116603f011681019082821181831017156200038a576200038a620001bf565b81604052838152602092508683858801011115620003a757600080fd5b600091505b83821015620003cb5785820183015181830184015290820190620003ac565b83821115620003dd5760008385830101525b9695505050505050565b60008060008060808587031215620003fe57600080fd5b84516001600160401b03808211156200041657600080fd5b620004248883890162000330565b955060208701519150808211156200043b57600080fd5b620004498883890162000330565b945060408701519150808211156200046057600080fd5b6200046e8883890162000330565b935060608701519150808211156200048557600080fd5b50620004948782880162000330565b91505092959194509250565b611cdf80620004b06000396000f3fe6080604052600436106102305760003560e01c80637f00c7a61161012e578063bedb86fb116100ab578063e8a3d4851161006f578063e8a3d48514610627578063e985e9c51461063c578063f0292a0314610685578063f2c4ce1e1461069b578063f2fde38b146106bb57600080fd5b8063bedb86fb14610598578063c6682862146105b8578063c87b56dd146105cd578063da3ef23f146105ed578063e65fad971461060d57600080fd5b8063a0712d68116100f2578063a0712d6814610511578063a22cb46514610524578063a475b5dd14610544578063a76a958714610559578063b88d4fde1461057857600080fd5b80637f00c7a6146104925780638d859f3e146104b25780638da5cb5b146104c857806395d89b41146104e65780639858cf19146104fb57600080fd5b8063408b1464116101bc5780636352211e116101805780636352211e1461040857806363bc312a146104285780636c0360eb1461044857806370a082311461045d578063715018a61461047d57600080fd5b8063408b14641461036557806341cda2031461039257806342842e0e146103a857806344a0d68a146103c857806355f804b3146103e857600080fd5b8063095ea7b311610203578063095ea7b3146102d957806318160ddd146102fb57806323b872dd1461032757806332cb6b0c146103475780633ccfd60b1461035d57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063081c8c44146102c4575b600080fd5b34801561024157600080fd5b5061025561025036600461169a565b6106db565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61072d565b604051610261919061170f565b34801561029857600080fd5b506102ac6102a7366004611722565b6107bf565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b5061027f610803565b3480156102e557600080fd5b506102f96102f4366004611757565b610891565b005b34801561030757600080fd5b50610319600154600054036000190190565b604051908152602001610261565b34801561033357600080fd5b506102f9610342366004611781565b610931565b34801561035357600080fd5b50610319600d5481565b6102f9610aca565b34801561037157600080fd5b506103196103803660046117bd565b60126020526000908152604090205481565b34801561039e57600080fd5b5061031960105481565b3480156103b457600080fd5b506102f96103c3366004611781565b610c3a565b3480156103d457600080fd5b506102f96103e3366004611722565b610c55565b3480156103f457600080fd5b506102f9610403366004611864565b610c62565b34801561041457600080fd5b506102ac610423366004611722565b610c7a565b34801561043457600080fd5b506102f9610443366004611722565b610c85565b34801561045457600080fd5b5061027f610cd7565b34801561046957600080fd5b506103196104783660046117bd565b610ce4565b34801561048957600080fd5b506102f9610d33565b34801561049e57600080fd5b506102f96104ad366004611722565b610d47565b3480156104be57600080fd5b50610319600c5481565b3480156104d457600080fd5b506008546001600160a01b03166102ac565b3480156104f257600080fd5b5061027f610d54565b34801561050757600080fd5b50610319600e5481565b6102f961051f366004611722565b610d63565b34801561053057600080fd5b506102f961053f3660046118bd565b610ef3565b34801561055057600080fd5b506102f9610f88565b34801561056557600080fd5b5060115461025590610100900460ff1681565b34801561058457600080fd5b506102f96105933660046118f0565b610fa1565b3480156105a457600080fd5b506102f96105b336600461196c565b610feb565b3480156105c457600080fd5b5061027f611006565b3480156105d957600080fd5b5061027f6105e8366004611722565b611013565b3480156105f957600080fd5b506102f9610608366004611864565b61118c565b34801561061957600080fd5b506011546102559060ff1681565b34801561063357600080fd5b5061027f6111a0565b34801561064857600080fd5b50610255610657366004611987565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069157600080fd5b50610319600f5481565b3480156106a757600080fd5b506102f96106b6366004611864565b6111f6565b3480156106c757600080fd5b506102f96106d63660046117bd565b61120a565b60006301ffc9a760e01b6001600160e01b03198316148061070c57506380ac58cd60e01b6001600160e01b03198316145b806107275750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461073c906119b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610768906119b1565b80156107b55780601f1061078a576101008083540402835291602001916107b5565b820191906000526020600020905b81548152906001019060200180831161079857829003601f168201915b5050505050905090565b60006107ca82611283565b6107e7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610810906119b1565b80601f016020809104026020016040519081016040528092919081815260200182805461083c906119b1565b80156108895780601f1061085e57610100808354040283529160200191610889565b820191906000526020600020905b81548152906001019060200180831161086c57829003601f168201915b505050505081565b600061089c82610c7a565b9050336001600160a01b038216146108d5576108b88133610657565b6108d5576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061093c826112b8565b9050836001600160a01b0316816001600160a01b03161461096f5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109bc5761099f8633610657565b6109bc57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109e357604051633a954ecd60e21b815260040160405180910390fd5b80156109ee57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a8057600184016000818152600460205260408120549003610a7e576000548114610a7e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610ad2611327565b6000736568615f468d177de965da903f3b49b8509dc7f76064610af6476021611a01565b610b009190611a20565b604051600081818185875af1925050503d8060008114610b3c576040519150601f19603f3d011682016040523d82523d6000602084013e610b41565b606091505b5050905080610b4f57600080fd5b6000738106af408125b39cefa2fdfd34cf6c313e7b77d06064610b73476021611a01565b610b7d9190611a20565b604051600081818185875af1925050503d8060008114610bb9576040519150601f19603f3d011682016040523d82523d6000602084013e610bbe565b606091505b5050905080610bcc57600080fd5b6040516000907385fd31ecbad82634a2a14ed7f068b898e2e471529047908381818185875af1925050503d8060008114610c22576040519150601f19603f3d011682016040523d82523d6000602084013e610c27565b606091505b5050905080610c3557600080fd5b505050565b610c3583838360405180602001604052806000815250610fa1565b610c5d611327565b600c55565b610c6a611327565b6009610c768282611a88565b5050565b6000610727826112b8565b610c8d611327565b6000610ca0600154600054036000190190565b9050610cac8282611b48565b600d5411610ccd5760405163d05cb60960e01b815260040160405180910390fd5b610c763383611381565b60098054610810906119b1565b60006001600160a01b038216610d0d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d3b611327565b610d45600061139b565b565b610d4f611327565b600f55565b60606003805461073c906119b1565b806000610d77600154600054036000190190565b60115490915060ff1615610d9e576040516306d39fcd60e41b815260040160405180910390fd5b81600003610dbf57604051631f029f1960e11b815260040160405180910390fd5b600d54610dcc8383611b48565b1115610deb5760405163d05cb60960e01b815260040160405180910390fd5b600f54821115610e0e57604051630c398d6560e41b815260040160405180910390fd5b34600003610ebb57600e5483610e2b600154600054036000190190565b610e359190611b48565b1115610e5457604051631fcc27c360e11b815260040160405180910390fd5b33600090815260126020526040902054601054610e718583611b48565b1115610e9057604051630c398d6560e41b815260040160405180910390fd5b3360009081526012602052604081208054869290610eaf908490611b48565b90915550610ee9915050565b82600c54610ec99190611a01565b341115610ee95760405163356680b760e01b815260040160405180910390fd5b610c353384611381565b336001600160a01b03831603610f1c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f90611327565b6011805461ff001916610100179055565b610fac848484610931565b6001600160a01b0383163b15610fe557610fc8848484846113ed565b610fe5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610ff3611327565b6011805460ff1916911515919091179055565b600a8054610810906119b1565b606061101e82611283565b6110875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b601154610100900460ff16151560000361112d57600b80546110a8906119b1565b80601f01602080910402602001604051908101604052809291908181526020018280546110d4906119b1565b80156111215780601f106110f657610100808354040283529160200191611121565b820191906000526020600020905b81548152906001019060200180831161110457829003601f168201915b50505050509050919050565b60006111376114d9565b905060008151116111575760405180602001604052806000815250611185565b80611161846114e8565b600a60405160200161117593929190611bd3565b6040516020818303038152906040525b9392505050565b611194611327565b600a610c768282611a88565b606060006111ac6114d9565b905060008151116111cc57604051806020016040528060008152506111f0565b80600a6040516020016111e0929190611c10565b6040516020818303038152906040525b91505090565b6111fe611327565b600b610c768282611a88565b611212611327565b6001600160a01b0381166112775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161107e565b6112808161139b565b50565b600081600111158015611297575060005482105b8015610727575050600090815260046020526040902054600160e01b161590565b6000818060011161130e5760005481101561130e5760008181526004602052604081205490600160e01b8216900361130c575b806000036111855750600019016000818152600460205260409020546112eb565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610d455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161107e565b610c76828260405180602001604052806000815250611537565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611422903390899088908890600401611c4f565b6020604051808303816000875af192505050801561145d575060408051601f3d908101601f1916820190925261145a91810190611c8c565b60015b6114bb573d80801561148b576040519150601f19603f3d011682016040523d82523d6000602084013e611490565b606091505b5080516000036114b3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461073c906119b1565b604080516080810191829052607f0190826030600a8206018353600a90045b801561152557600183039250600a81066030018353600a9004611507565b50819003601f19909101908152919050565b61154183836115a4565b6001600160a01b0383163b15610c35576000548281035b61156b60008683806001019450866113ed565b611588576040516368d2bf6b60e11b815260040160405180910390fd5b81811061155857816000541461159d57600080fd5b5050505050565b6000546001600160a01b0383166115cd57604051622e076360e81b815260040160405180910390fd5b816000036115ee5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116385760005550505050565b6001600160e01b03198116811461128057600080fd5b6000602082840312156116ac57600080fd5b813561118581611684565b60005b838110156116d25781810151838201526020016116ba565b83811115610fe55750506000910152565b600081518084526116fb8160208601602086016116b7565b601f01601f19169290920160200192915050565b60208152600061118560208301846116e3565b60006020828403121561173457600080fd5b5035919050565b80356001600160a01b038116811461175257600080fd5b919050565b6000806040838503121561176a57600080fd5b6117738361173b565b946020939093013593505050565b60008060006060848603121561179657600080fd5b61179f8461173b565b92506117ad6020850161173b565b9150604084013590509250925092565b6000602082840312156117cf57600080fd5b6111858261173b565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611809576118096117d8565b604051601f8501601f19908116603f01168101908282118183101715611831576118316117d8565b8160405280935085815286868601111561184a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561187657600080fd5b813567ffffffffffffffff81111561188d57600080fd5b8201601f8101841361189e57600080fd5b6114d1848235602084016117ee565b8035801515811461175257600080fd5b600080604083850312156118d057600080fd5b6118d98361173b565b91506118e7602084016118ad565b90509250929050565b6000806000806080858703121561190657600080fd5b61190f8561173b565b935061191d6020860161173b565b925060408501359150606085013567ffffffffffffffff81111561194057600080fd5b8501601f8101871361195157600080fd5b611960878235602084016117ee565b91505092959194509250565b60006020828403121561197e57600080fd5b611185826118ad565b6000806040838503121561199a57600080fd5b6119a38361173b565b91506118e76020840161173b565b600181811c908216806119c557607f821691505b6020821081036119e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611a1b57611a1b6119eb565b500290565b600082611a3d57634e487b7160e01b600052601260045260246000fd5b500490565b601f821115610c3557600081815260208120601f850160051c81016020861015611a695750805b601f850160051c820191505b81811015610ac257828155600101611a75565b815167ffffffffffffffff811115611aa257611aa26117d8565b611ab681611ab084546119b1565b84611a42565b602080601f831160018114611aeb5760008415611ad35750858301515b600019600386901b1c1916600185901b178555610ac2565b600085815260208120601f198616915b82811015611b1a57888601518255948401946001909101908401611afb565b5085821015611b385787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115611b5b57611b5b6119eb565b500190565b60008154611b6d816119b1565b60018281168015611b855760018114611b9a57611bc9565b60ff1984168752821515830287019450611bc9565b8560005260208060002060005b85811015611bc05781548a820152908401908201611ba7565b50505082870194505b5050505092915050565b60008451611be58184602089016116b7565b845190830190611bf98183602089016116b7565b611c0581830186611b60565b979650505050505050565b60008351611c228184602088016116b7565b6c636f6e74726163742d6461746160981b908301908152611c46600d820185611b60565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c82908301846116e3565b9695505050505050565b600060208284031215611c9e57600080fd5b81516111858161168456fea26469706673582212202ace3544ddedac4ba9e8defefbbdb7472fc85607d43d98adc73cc5115be2c5f464736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000094669626f6e61636369000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034649420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000474656d7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000474656d7000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80637f00c7a61161012e578063bedb86fb116100ab578063e8a3d4851161006f578063e8a3d48514610627578063e985e9c51461063c578063f0292a0314610685578063f2c4ce1e1461069b578063f2fde38b146106bb57600080fd5b8063bedb86fb14610598578063c6682862146105b8578063c87b56dd146105cd578063da3ef23f146105ed578063e65fad971461060d57600080fd5b8063a0712d68116100f2578063a0712d6814610511578063a22cb46514610524578063a475b5dd14610544578063a76a958714610559578063b88d4fde1461057857600080fd5b80637f00c7a6146104925780638d859f3e146104b25780638da5cb5b146104c857806395d89b41146104e65780639858cf19146104fb57600080fd5b8063408b1464116101bc5780636352211e116101805780636352211e1461040857806363bc312a146104285780636c0360eb1461044857806370a082311461045d578063715018a61461047d57600080fd5b8063408b14641461036557806341cda2031461039257806342842e0e146103a857806344a0d68a146103c857806355f804b3146103e857600080fd5b8063095ea7b311610203578063095ea7b3146102d957806318160ddd146102fb57806323b872dd1461032757806332cb6b0c146103475780633ccfd60b1461035d57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063081c8c44146102c4575b600080fd5b34801561024157600080fd5b5061025561025036600461169a565b6106db565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61072d565b604051610261919061170f565b34801561029857600080fd5b506102ac6102a7366004611722565b6107bf565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b5061027f610803565b3480156102e557600080fd5b506102f96102f4366004611757565b610891565b005b34801561030757600080fd5b50610319600154600054036000190190565b604051908152602001610261565b34801561033357600080fd5b506102f9610342366004611781565b610931565b34801561035357600080fd5b50610319600d5481565b6102f9610aca565b34801561037157600080fd5b506103196103803660046117bd565b60126020526000908152604090205481565b34801561039e57600080fd5b5061031960105481565b3480156103b457600080fd5b506102f96103c3366004611781565b610c3a565b3480156103d457600080fd5b506102f96103e3366004611722565b610c55565b3480156103f457600080fd5b506102f9610403366004611864565b610c62565b34801561041457600080fd5b506102ac610423366004611722565b610c7a565b34801561043457600080fd5b506102f9610443366004611722565b610c85565b34801561045457600080fd5b5061027f610cd7565b34801561046957600080fd5b506103196104783660046117bd565b610ce4565b34801561048957600080fd5b506102f9610d33565b34801561049e57600080fd5b506102f96104ad366004611722565b610d47565b3480156104be57600080fd5b50610319600c5481565b3480156104d457600080fd5b506008546001600160a01b03166102ac565b3480156104f257600080fd5b5061027f610d54565b34801561050757600080fd5b50610319600e5481565b6102f961051f366004611722565b610d63565b34801561053057600080fd5b506102f961053f3660046118bd565b610ef3565b34801561055057600080fd5b506102f9610f88565b34801561056557600080fd5b5060115461025590610100900460ff1681565b34801561058457600080fd5b506102f96105933660046118f0565b610fa1565b3480156105a457600080fd5b506102f96105b336600461196c565b610feb565b3480156105c457600080fd5b5061027f611006565b3480156105d957600080fd5b5061027f6105e8366004611722565b611013565b3480156105f957600080fd5b506102f9610608366004611864565b61118c565b34801561061957600080fd5b506011546102559060ff1681565b34801561063357600080fd5b5061027f6111a0565b34801561064857600080fd5b50610255610657366004611987565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069157600080fd5b50610319600f5481565b3480156106a757600080fd5b506102f96106b6366004611864565b6111f6565b3480156106c757600080fd5b506102f96106d63660046117bd565b61120a565b60006301ffc9a760e01b6001600160e01b03198316148061070c57506380ac58cd60e01b6001600160e01b03198316145b806107275750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461073c906119b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610768906119b1565b80156107b55780601f1061078a576101008083540402835291602001916107b5565b820191906000526020600020905b81548152906001019060200180831161079857829003601f168201915b5050505050905090565b60006107ca82611283565b6107e7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610810906119b1565b80601f016020809104026020016040519081016040528092919081815260200182805461083c906119b1565b80156108895780601f1061085e57610100808354040283529160200191610889565b820191906000526020600020905b81548152906001019060200180831161086c57829003601f168201915b505050505081565b600061089c82610c7a565b9050336001600160a01b038216146108d5576108b88133610657565b6108d5576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061093c826112b8565b9050836001600160a01b0316816001600160a01b03161461096f5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109bc5761099f8633610657565b6109bc57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109e357604051633a954ecd60e21b815260040160405180910390fd5b80156109ee57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a8057600184016000818152600460205260408120549003610a7e576000548114610a7e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610ad2611327565b6000736568615f468d177de965da903f3b49b8509dc7f76064610af6476021611a01565b610b009190611a20565b604051600081818185875af1925050503d8060008114610b3c576040519150601f19603f3d011682016040523d82523d6000602084013e610b41565b606091505b5050905080610b4f57600080fd5b6000738106af408125b39cefa2fdfd34cf6c313e7b77d06064610b73476021611a01565b610b7d9190611a20565b604051600081818185875af1925050503d8060008114610bb9576040519150601f19603f3d011682016040523d82523d6000602084013e610bbe565b606091505b5050905080610bcc57600080fd5b6040516000907385fd31ecbad82634a2a14ed7f068b898e2e471529047908381818185875af1925050503d8060008114610c22576040519150601f19603f3d011682016040523d82523d6000602084013e610c27565b606091505b5050905080610c3557600080fd5b505050565b610c3583838360405180602001604052806000815250610fa1565b610c5d611327565b600c55565b610c6a611327565b6009610c768282611a88565b5050565b6000610727826112b8565b610c8d611327565b6000610ca0600154600054036000190190565b9050610cac8282611b48565b600d5411610ccd5760405163d05cb60960e01b815260040160405180910390fd5b610c763383611381565b60098054610810906119b1565b60006001600160a01b038216610d0d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d3b611327565b610d45600061139b565b565b610d4f611327565b600f55565b60606003805461073c906119b1565b806000610d77600154600054036000190190565b60115490915060ff1615610d9e576040516306d39fcd60e41b815260040160405180910390fd5b81600003610dbf57604051631f029f1960e11b815260040160405180910390fd5b600d54610dcc8383611b48565b1115610deb5760405163d05cb60960e01b815260040160405180910390fd5b600f54821115610e0e57604051630c398d6560e41b815260040160405180910390fd5b34600003610ebb57600e5483610e2b600154600054036000190190565b610e359190611b48565b1115610e5457604051631fcc27c360e11b815260040160405180910390fd5b33600090815260126020526040902054601054610e718583611b48565b1115610e9057604051630c398d6560e41b815260040160405180910390fd5b3360009081526012602052604081208054869290610eaf908490611b48565b90915550610ee9915050565b82600c54610ec99190611a01565b341115610ee95760405163356680b760e01b815260040160405180910390fd5b610c353384611381565b336001600160a01b03831603610f1c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f90611327565b6011805461ff001916610100179055565b610fac848484610931565b6001600160a01b0383163b15610fe557610fc8848484846113ed565b610fe5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610ff3611327565b6011805460ff1916911515919091179055565b600a8054610810906119b1565b606061101e82611283565b6110875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b601154610100900460ff16151560000361112d57600b80546110a8906119b1565b80601f01602080910402602001604051908101604052809291908181526020018280546110d4906119b1565b80156111215780601f106110f657610100808354040283529160200191611121565b820191906000526020600020905b81548152906001019060200180831161110457829003601f168201915b50505050509050919050565b60006111376114d9565b905060008151116111575760405180602001604052806000815250611185565b80611161846114e8565b600a60405160200161117593929190611bd3565b6040516020818303038152906040525b9392505050565b611194611327565b600a610c768282611a88565b606060006111ac6114d9565b905060008151116111cc57604051806020016040528060008152506111f0565b80600a6040516020016111e0929190611c10565b6040516020818303038152906040525b91505090565b6111fe611327565b600b610c768282611a88565b611212611327565b6001600160a01b0381166112775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161107e565b6112808161139b565b50565b600081600111158015611297575060005482105b8015610727575050600090815260046020526040902054600160e01b161590565b6000818060011161130e5760005481101561130e5760008181526004602052604081205490600160e01b8216900361130c575b806000036111855750600019016000818152600460205260409020546112eb565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610d455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161107e565b610c76828260405180602001604052806000815250611537565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611422903390899088908890600401611c4f565b6020604051808303816000875af192505050801561145d575060408051601f3d908101601f1916820190925261145a91810190611c8c565b60015b6114bb573d80801561148b576040519150601f19603f3d011682016040523d82523d6000602084013e611490565b606091505b5080516000036114b3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461073c906119b1565b604080516080810191829052607f0190826030600a8206018353600a90045b801561152557600183039250600a81066030018353600a9004611507565b50819003601f19909101908152919050565b61154183836115a4565b6001600160a01b0383163b15610c35576000548281035b61156b60008683806001019450866113ed565b611588576040516368d2bf6b60e11b815260040160405180910390fd5b81811061155857816000541461159d57600080fd5b5050505050565b6000546001600160a01b0383166115cd57604051622e076360e81b815260040160405180910390fd5b816000036115ee5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116385760005550505050565b6001600160e01b03198116811461128057600080fd5b6000602082840312156116ac57600080fd5b813561118581611684565b60005b838110156116d25781810151838201526020016116ba565b83811115610fe55750506000910152565b600081518084526116fb8160208601602086016116b7565b601f01601f19169290920160200192915050565b60208152600061118560208301846116e3565b60006020828403121561173457600080fd5b5035919050565b80356001600160a01b038116811461175257600080fd5b919050565b6000806040838503121561176a57600080fd5b6117738361173b565b946020939093013593505050565b60008060006060848603121561179657600080fd5b61179f8461173b565b92506117ad6020850161173b565b9150604084013590509250925092565b6000602082840312156117cf57600080fd5b6111858261173b565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611809576118096117d8565b604051601f8501601f19908116603f01168101908282118183101715611831576118316117d8565b8160405280935085815286868601111561184a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561187657600080fd5b813567ffffffffffffffff81111561188d57600080fd5b8201601f8101841361189e57600080fd5b6114d1848235602084016117ee565b8035801515811461175257600080fd5b600080604083850312156118d057600080fd5b6118d98361173b565b91506118e7602084016118ad565b90509250929050565b6000806000806080858703121561190657600080fd5b61190f8561173b565b935061191d6020860161173b565b925060408501359150606085013567ffffffffffffffff81111561194057600080fd5b8501601f8101871361195157600080fd5b611960878235602084016117ee565b91505092959194509250565b60006020828403121561197e57600080fd5b611185826118ad565b6000806040838503121561199a57600080fd5b6119a38361173b565b91506118e76020840161173b565b600181811c908216806119c557607f821691505b6020821081036119e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611a1b57611a1b6119eb565b500290565b600082611a3d57634e487b7160e01b600052601260045260246000fd5b500490565b601f821115610c3557600081815260208120601f850160051c81016020861015611a695750805b601f850160051c820191505b81811015610ac257828155600101611a75565b815167ffffffffffffffff811115611aa257611aa26117d8565b611ab681611ab084546119b1565b84611a42565b602080601f831160018114611aeb5760008415611ad35750858301515b600019600386901b1c1916600185901b178555610ac2565b600085815260208120601f198616915b82811015611b1a57888601518255948401946001909101908401611afb565b5085821015611b385787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115611b5b57611b5b6119eb565b500190565b60008154611b6d816119b1565b60018281168015611b855760018114611b9a57611bc9565b60ff1984168752821515830287019450611bc9565b8560005260208060002060005b85811015611bc05781548a820152908401908201611ba7565b50505082870194505b5050505092915050565b60008451611be58184602089016116b7565b845190830190611bf98183602089016116b7565b611c0581830186611b60565b979650505050505050565b60008351611c228184602088016116b7565b6c636f6e74726163742d6461746160981b908301908152611c46600d820185611b60565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c82908301846116e3565b9695505050505050565b600060208284031215611c9e57600080fd5b81516111858161168456fea26469706673582212202ace3544ddedac4ba9e8defefbbdb7472fc85607d43d98adc73cc5115be2c5f464736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000094669626f6e61636369000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034649420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000474656d7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000474656d7000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Fibonacci
Arg [1] : _symbol (string): FIB
Arg [2] : _initBaseURI (string): temp
Arg [3] : _initNotRevealedUri (string): temp

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4669626f6e616363690000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4649420000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 74656d7000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [11] : 74656d7000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48427:5214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18202:615;;;;;;;;;;-1:-1:-1;18202:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18202:615:0;;;;;;;;23849:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25795:204::-;;;;;;;;;;-1:-1:-1;25795:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;25795:204:0;1528:203:1;48545:28:0;;;;;;;;;;;;;:::i;25343:386::-;;;;;;;;;;-1:-1:-1;25343:386:0;;;;;:::i;:::-;;:::i;:::-;;17256:315;;;;;;;;;;;;16863:1;17522:12;17309:7;17506:13;:28;-1:-1:-1;;17506:46:0;;17256:315;;;;2319:25:1;;;2307:2;2292:18;17256:315:0;2173:177:1;35060:2800:0;;;;;;;;;;-1:-1:-1;35060:2800:0;;;;;:::i;:::-;;:::i;48624:33::-;;;;;;;;;;;;;;;;53076:562;;;:::i;48848:52::-;;;;;;;;;;-1:-1:-1;48848:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;48739:32;;;;;;;;;;;;;;;;26685:185;;;;;;;;;;-1:-1:-1;26685:185:0;;;;;:::i;:::-;;:::i;52362:87::-;;;;;;;;;;-1:-1:-1;52362:87:0;;;;;:::i;:::-;;:::i;52716:104::-;;;;;;;;;;-1:-1:-1;52716:104:0;;;;;:::i;:::-;;:::i;23638:144::-;;;;;;;;;;-1:-1:-1;23638:144:0;;;;;:::i;:::-;;:::i;50850:230::-;;;;;;;;;;-1:-1:-1;50850:230:0;;;;;:::i;:::-;;:::i;48473:21::-;;;;;;;;;;;;;:::i;18881:224::-;;;;;;;;;;-1:-1:-1;18881:224:0;;;;;:::i;:::-;;:::i;2809:103::-;;;;;;;;;;;;;:::i;52457:117::-;;;;;;;;;;-1:-1:-1;52457:117:0;;;;;:::i;:::-;;:::i;48582:35::-;;;;;;;;;;;;;;;;2161:87;;;;;;;;;;-1:-1:-1;2234:6:0;;-1:-1:-1;;;;;2234:6:0;2161:87;;24018:104;;;;;;;;;;;;;:::i;48664:33::-;;;;;;;;;;;;;;;;50170:653;;;;;;:::i;:::-;;:::i;26071:308::-;;;;;;;;;;-1:-1:-1;26071:308:0;;;;;:::i;:::-;;:::i;52285:69::-;;;;;;;;;;;;;:::i;48811:28::-;;;;;;;;;;-1:-1:-1;48811:28:0;;;;;;;;;;;26941:399;;;;;;;;;;-1:-1:-1;26941:399:0;;;;;:::i;:::-;;:::i;52987:81::-;;;;;;;;;;-1:-1:-1;52987:81:0;;;;;:::i;:::-;;:::i;48501:37::-;;;;;;;;;;;;;:::i;51530:725::-;;;;;;;;;;-1:-1:-1;51530:725:0;;;;;:::i;:::-;;:::i;52828:151::-;;;;;;;;;;-1:-1:-1;52828:151:0;;;;;:::i;:::-;;:::i;48780:24::-;;;;;;;;;;-1:-1:-1;48780:24:0;;;;;;;;51088:434;;;;;;;;;;;;;:::i;26450:164::-;;;;;;;;;;-1:-1:-1;26450:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26571:25:0;;;26547:4;26571:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26450:164;48704:28;;;;;;;;;;;;;;;;52582:126;;;;;;;;;;-1:-1:-1;52582:126:0;;;;;:::i;:::-;;:::i;3067:201::-;;;;;;;;;;-1:-1:-1;3067:201:0;;;;;:::i;:::-;;:::i;18202:615::-;18287:4;-1:-1:-1;;;;;;;;;18587:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18664:25:0;;;18587:102;:179;;;-1:-1:-1;;;;;;;;;;18741:25:0;;;18587:179;18567:199;18202:615;-1:-1:-1;;18202:615:0:o;23849:100::-;23903:13;23936:5;23929:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23849:100;:::o;25795:204::-;25863:7;25888:16;25896:7;25888;:16::i;:::-;25883:64;;25913:34;;-1:-1:-1;;;25913:34:0;;;;;;;;;;;25883:64;-1:-1:-1;25967:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25967:24:0;;25795:204::o;48545:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25343:386::-;25416:13;25432:16;25440:7;25432;:16::i;:::-;25416:32;-1:-1:-1;46243:10:0;-1:-1:-1;;;;;25465:28:0;;;25461:175;;25513:44;25530:5;46243:10;26450:164;:::i;25513:44::-;25508:128;;25585:35;;-1:-1:-1;;;25585:35:0;;;;;;;;;;;25508:128;25648:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25648:29:0;-1:-1:-1;;;;;25648:29:0;;;;;;;;;25693:28;;25648:24;;25693:28;;;;;;;25405:324;25343:386;;:::o;35060:2800::-;35194:27;35224;35243:7;35224:18;:27::i;:::-;35194:57;;35309:4;-1:-1:-1;;;;;35268:45:0;35284:19;-1:-1:-1;;;;;35268:45:0;;35264:86;;35322:28;;-1:-1:-1;;;35322:28:0;;;;;;;;;;;35264:86;35364:27;33790:21;;;33617:15;33832:4;33825:36;33914:4;33898:21;;34004:26;;46243:10;34757:30;;;-1:-1:-1;;;;;34455:26:0;;34736:19;;;34733:55;35543:174;;35630:43;35647:4;46243:10;26450:164;:::i;35630:43::-;35625:92;;35682:35;;-1:-1:-1;;;35682:35:0;;;;;;;;;;;35625:92;-1:-1:-1;;;;;35734:16:0;;35730:52;;35759:23;;-1:-1:-1;;;35759:23:0;;;;;;;;;;;35730:52;35931:15;35928:160;;;36071:1;36050:19;36043:30;35928:160;-1:-1:-1;;;;;36466:24:0;;;;;;;:18;:24;;;;;;36464:26;;-1:-1:-1;;36464:26:0;;;36535:22;;;;;;;;;36533:24;;-1:-1:-1;36533:24:0;;;23537:11;23513:22;23509:40;23496:62;-1:-1:-1;;;23496:62:0;36828:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;37122:46:0;;:51;;37118:626;;37226:1;37216:11;;37194:19;37349:30;;;:17;:30;;;;;;:35;;37345:384;;37487:13;;37472:11;:28;37468:242;;37634:30;;;;:17;:30;;;;;:52;;;37468:242;37175:569;37118:626;37791:7;37787:2;-1:-1:-1;;;;;37772:27:0;37781:4;-1:-1:-1;;;;;37772:27:0;;;;;;;;;;;37810:42;35183:2677;;;35060:2800;;;:::o;53076:562::-;2047:13;:11;:13::i;:::-;53133::::1;53160:42;53261:3;53231:26;:21;53255:2;53231:26;:::i;:::-;53230:34;;;;:::i;:::-;53152:127;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53132:147;;;53298:8;53290:17;;;::::0;::::1;;53321:7;53342:42;53443:3;53413:26;:21;53437:2;53413:26;:::i;:::-;53412:34;;;;:::i;:::-;53334:127;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53320:141;;;53480:2;53472:11;;;::::0;::::1;;53518:90;::::0;53505:7:::1;::::0;53526:42:::1;::::0;53582:21:::1;::::0;53505:7;53518:90;53505:7;53518:90;53582:21;53526:42;53518:90:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53504:104;;;53627:2;53619:11;;;::::0;::::1;;53121:517;;;53076:562::o:0;26685:185::-;26823:39;26840:4;26846:2;26850:7;26823:39;;;;;;;;;;;;:16;:39::i;52362:87::-;2047:13;:11;:13::i;:::-;52425:5:::1;:16:::0;52362:87::o;52716:104::-;2047:13;:11;:13::i;:::-;52791:7:::1;:21;52801:11:::0;52791:7;:21:::1;:::i;:::-;;52716:104:::0;:::o;23638:144::-;23702:7;23745:27;23764:7;23745:18;:27::i;50850:230::-;2047:13;:11;:13::i;:::-;50921:14:::1;50938:13;16863:1:::0;17522:12;17309:7;17506:13;:28;-1:-1:-1;;17506:46:0;;17256:315;50938:13:::1;50921:30:::0;-1:-1:-1;50980:20:0::1;50989:11:::0;50921:30;50980:20:::1;:::i;:::-;50966:10;;:34;50962:65;;51009:18;;-1:-1:-1::0;;;51009:18:0::1;;;;;;;;;;;50962:65;51038:34;51048:10;51060:11;51038:9;:34::i;48473:21::-:0;;;;;;;:::i;18881:224::-;18945:7;-1:-1:-1;;;;;18969:19:0;;18965:60;;18997:28;;-1:-1:-1;;;18997:28:0;;;;;;;;;;;18965:60;-1:-1:-1;;;;;;19043:25:0;;;;;:18;:25;;;;;;13436:13;19043:54;;18881:224::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;52457:117::-;2047:13;:11;:13::i;:::-;52538:8:::1;:28:::0;52457:117::o;24018:104::-;24074:13;24107:7;24100:14;;;;;:::i;50170:653::-;50262:11;49851:14;49868:13;16863:1;17522:12;17309:7;17506:13;:28;-1:-1:-1;;17506:46:0;;17256:315;49868:13;49896:5;;49851:30;;-1:-1:-1;49896:5:0;;49892:36;;;49910:18;;-1:-1:-1;;;49910:18:0;;;;;;;;;;;49892:36;49943:11;49958:1;49943:16;49939:45;;49968:16;;-1:-1:-1;;;49968:16:0;;;;;;;;;;;49939:45;50022:10;;49999:20;50008:11;49999:6;:20;:::i;:::-;:33;49995:64;;;50041:18;;-1:-1:-1;;;50041:18:0;;;;;;;;;;;49995:64;50088:8;;50074:11;:22;50070:57;;;50105:22;;-1:-1:-1;;;50105:22:0;;;;;;;;;;;50070:57;50295:9:::1;50308:1;50295:14:::0;50291:478:::1;;50360:11;;50346;50330:13;16863:1:::0;17522:12;17309:7;17506:13;:28;-1:-1:-1;;17506:46:0;;17256:315;50330:13:::1;:27;;;;:::i;:::-;:41;50326:88;;;50397:17;;-1:-1:-1::0;;;50397:17:0::1;;;;;;;;;;;50326:88;50475:10;50431:23;50457:29:::0;;;:17:::1;:29;::::0;;;;;50537:13:::1;::::0;50505:29:::1;50523:11:::0;50457:29;50505::::1;:::i;:::-;:45;50501:97;;;50576:22;;-1:-1:-1::0;;;50576:22:0::1;;;;;;;;;;;50501:97;50633:10;50615:29;::::0;;;:17:::1;:29;::::0;;;;:44;;50648:11;;50615:29;:44:::1;::::0;50648:11;;50615:44:::1;:::i;:::-;::::0;;;-1:-1:-1;50291:478:0::1;::::0;-1:-1:-1;;50291:478:0::1;;50718:11;50710:5;;:19;;;;:::i;:::-;50698:9;:31;50694:63;;;50738:19;;-1:-1:-1::0;;;50738:19:0::1;;;;;;;;;;;50694:63;50781:34;50791:10;50803:11;50781:9;:34::i;26071:308::-:0;46243:10;-1:-1:-1;;;;;26170:31:0;;;26166:61;;26210:17;;-1:-1:-1;;;26210:17:0;;;;;;;;;;;26166:61;46243:10;26240:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26240:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26240:60:0;;;;;;;;;;26316:55;;540:41:1;;;26240:49:0;;46243:10;26316:55;;513:18:1;26316:55:0;;;;;;;26071:308;;:::o;52285:69::-;2047:13;:11;:13::i;:::-;52331:8:::1;:15:::0;;-1:-1:-1;;52331:15:0::1;;;::::0;;52285:69::o;26941:399::-;27108:31;27121:4;27127:2;27131:7;27108:12;:31::i;:::-;-1:-1:-1;;;;;27154:14:0;;;:19;27150:183;;27193:56;27224:4;27230:2;27234:7;27243:5;27193:30;:56::i;:::-;27188:145;;27277:40;;-1:-1:-1;;;27277:40:0;;;;;;;;;;;27188:145;26941:399;;;;:::o;52987:81::-;2047:13;:11;:13::i;:::-;53046:5:::1;:14:::0;;-1:-1:-1;;53046:14:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52987:81::o;48501:37::-;;;;;;;:::i;51530:725::-;51648:13;51701:16;51709:7;51701;:16::i;:::-;51679:113;;;;-1:-1:-1;;;51679:113:0;;9311:2:1;51679:113:0;;;9293:21:1;9350:2;9330:18;;;9323:30;9389:34;9369:18;;;9362:62;-1:-1:-1;;;9440:18:1;;;9433:45;9495:19;;51679:113:0;;;;;;;;;51809:8;;;;;;;:17;;51821:5;51809:17;51805:71;;51850:14;51843:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51530:725;;;:::o;51805:71::-;51888:28;51919:10;:8;:10::i;:::-;51888:41;;51991:1;51966:14;51960:28;:32;:287;;;;;;;;;;;;;;;;;52084:14;52125:18;52135:7;52125:9;:18::i;:::-;52170:13;52041:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51960:287;51940:307;51530:725;-1:-1:-1;;;51530:725:0:o;52828:151::-;2047:13;:11;:13::i;:::-;52938::::1;:33;52954:17:::0;52938:13;:33:::1;:::i;51088:434::-:0;51132:13;51158:28;51189:10;:8;:10::i;:::-;51158:41;;51261:1;51236:14;51230:28;:32;:284;;;;;;;;;;;;;;;;;51354:14;51437:13;51311:162;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51230:284;51210:304;;;51088:434;:::o;52582:126::-;2047:13;:11;:13::i;:::-;52668:14:::1;:32;52685:15:::0;52668:14;:32:::1;:::i;3067:201::-:0;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;3156:22:0;::::1;3148:73;;;::::0;-1:-1:-1;;;3148:73:0;;11546:2:1;3148:73:0::1;::::0;::::1;11528:21:1::0;11585:2;11565:18;;;11558:30;11624:34;11604:18;;;11597:62;-1:-1:-1;;;11675:18:1;;;11668:36;11721:19;;3148:73:0::1;11344:402:1::0;3148:73:0::1;3232:28;3251:8;3232:18;:28::i;:::-;3067:201:::0;:::o;27595:273::-;27652:4;27708:7;16863:1;27689:26;;:66;;;;;27742:13;;27732:7;:23;27689:66;:152;;;;-1:-1:-1;;27793:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27793:43:0;:48;;27595:273::o;20555:1129::-;20622:7;20657;;16863:1;20706:23;20702:915;;20759:13;;20752:4;:20;20748:869;;;20797:14;20814:23;;;:17;:23;;;;;;;-1:-1:-1;;;20903:23:0;;:28;;20899:699;;21422:113;21429:6;21439:1;21429:11;21422:113;;-1:-1:-1;;;21500:6:0;21482:25;;;;:17;:25;;;;;;21422:113;;20899:699;20774:843;20748:869;21645:31;;-1:-1:-1;;;21645:31:0;;;;;;;;;;;2326:132;2234:6;;-1:-1:-1;;;;;2234:6:0;46243:10;2390:23;2382:68;;;;-1:-1:-1;;;2382:68:0;;11953:2:1;2382:68:0;;;11935:21:1;;;11972:18;;;11965:30;12031:34;12011:18;;;12004:62;12083:18;;2382:68:0;11751:356:1;27952:104:0;28021:27;28031:2;28035:8;28021:27;;;;;;;;;;;;:9;:27::i;3428:191::-;3521:6;;;-1:-1:-1;;;;;3538:17:0;;;-1:-1:-1;;;;;;3538:17:0;;;;;;;3571:40;;3521:6;;;3538:17;3521:6;;3571:40;;3502:16;;3571:40;3491:128;3428:191;:::o;41811:716::-;41995:88;;-1:-1:-1;;;41995:88:0;;41974:4;;-1:-1:-1;;;;;41995:45:0;;;;;:88;;46243:10;;42062:4;;42068:7;;42077:5;;41995:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41995:88:0;;;;;;;;-1:-1:-1;;41995:88:0;;;;;;;;;;;;:::i;:::-;;;41991:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42278:6;:13;42295:1;42278:18;42274:235;;42324:40;;-1:-1:-1;;;42324:40:0;;;;;;;;;;;42274:235;42467:6;42461:13;42452:6;42448:2;42444:15;42437:38;41991:529;-1:-1:-1;;;;;;42154:64:0;-1:-1:-1;;;42154:64:0;;-1:-1:-1;41991:529:0;41811:716;;;;;;:::o;49679:108::-;49739:13;49772:7;49765:14;;;;;:::i;46367:1960::-;46836:4;46830:11;;46843:3;46826:21;;46921:17;;;;47617:11;;;47496:5;47749:2;47763;47753:13;;47745:22;47617:11;47732:36;47804:2;47794:13;;47388:697;47823:4;47388:697;;;48014:1;48009:3;48005:11;47998:18;;48065:2;48059:4;48055:13;48051:2;48047:22;48042:3;48034:36;47918:2;47908:13;;47388:697;;;-1:-1:-1;48115:13:0;;;-1:-1:-1;;48230:12:0;;;48290:19;;;48230:12;46367:1960;-1:-1:-1;46367:1960:0:o;28472:681::-;28595:19;28601:2;28605:8;28595:5;:19::i;:::-;-1:-1:-1;;;;;28656:14:0;;;:19;28652:483;;28696:11;28710:13;28758:14;;;28791:233;28822:62;28861:1;28865:2;28869:7;;;;;;28878:5;28822:30;:62::i;:::-;28817:167;;28920:40;;-1:-1:-1;;;28920:40:0;;;;;;;;;;;28817:167;29019:3;29011:5;:11;28791:233;;29106:3;29089:13;;:20;29085:34;;29111:8;;;29085:34;28677:458;;28472:681;;;:::o;29426:1529::-;29491:20;29514:13;-1:-1:-1;;;;;29542:16:0;;29538:48;;29567:19;;-1:-1:-1;;;29567:19:0;;;;;;;;;;;29538:48;29601:8;29613:1;29601:13;29597:44;;29623:18;;-1:-1:-1;;;29623:18:0;;;;;;;;;;;29597:44;-1:-1:-1;;;;;30129:22:0;;;;;;:18;:22;;13573:2;30129:22;;:70;;30167:31;30155:44;;30129:70;;;23537:11;23513:22;23509:40;-1:-1:-1;25247:15:0;;25222:23;25218:45;23506:51;23496:62;30442:31;;;;:17;:31;;;;;:173;30460:12;30691:23;;;30729:101;30756:35;;30781:9;;;;;-1:-1:-1;;;;;30756:35:0;;;30773:1;;30756:35;;30773:1;;30756:35;30825:3;30815:7;:13;30729:101;;30846:13;:19;-1:-1:-1;53121:517:0::1;;;53076:562::o:0;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:254;4334:6;4342;4395:2;4383:9;4374:7;4370:23;4366:32;4363:52;;;4411:1;4408;4401:12;4363:52;4434:29;4453:9;4434:29;:::i;:::-;4424:39;;4482:35;4513:2;4502:9;4498:18;4482:35;:::i;:::-;4472:45;;4269:254;;;;;:::o;4528:667::-;4623:6;4631;4639;4647;4700:3;4688:9;4679:7;4675:23;4671:33;4668:53;;;4717:1;4714;4707:12;4668:53;4740:29;4759:9;4740:29;:::i;:::-;4730:39;;4788:38;4822:2;4811:9;4807:18;4788:38;:::i;:::-;4778:48;;4873:2;4862:9;4858:18;4845:32;4835:42;;4928:2;4917:9;4913:18;4900:32;4955:18;4947:6;4944:30;4941:50;;;4987:1;4984;4977:12;4941:50;5010:22;;5063:4;5055:13;;5051:27;-1:-1:-1;5041:55:1;;5092:1;5089;5082:12;5041:55;5115:74;5181:7;5176:2;5163:16;5158:2;5154;5150:11;5115:74;:::i;:::-;5105:84;;;4528:667;;;;;;;:::o;5200:180::-;5256:6;5309:2;5297:9;5288:7;5284:23;5280:32;5277:52;;;5325:1;5322;5315:12;5277:52;5348:26;5364:9;5348:26;:::i;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;6035:127::-;6096:10;6091:3;6087:20;6084:1;6077:31;6127:4;6124:1;6117:15;6151:4;6148:1;6141:15;6167:168;6207:7;6273:1;6269;6265:6;6261:14;6258:1;6255:21;6250:1;6243:9;6236:17;6232:45;6229:71;;;6280:18;;:::i;:::-;-1:-1:-1;6320:9:1;;6167:168::o;6340:217::-;6380:1;6406;6396:132;;6450:10;6445:3;6441:20;6438:1;6431:31;6485:4;6482:1;6475:15;6513:4;6510:1;6503:15;6396:132;-1:-1:-1;6542:9:1;;6340:217::o;6898:545::-;7000:2;6995:3;6992:11;6989:448;;;7036:1;7061:5;7057:2;7050:17;7106:4;7102:2;7092:19;7176:2;7164:10;7160:19;7157:1;7153:27;7147:4;7143:38;7212:4;7200:10;7197:20;7194:47;;;-1:-1:-1;7235:4:1;7194:47;7290:2;7285:3;7281:12;7278:1;7274:20;7268:4;7264:31;7254:41;;7345:82;7363:2;7356:5;7353:13;7345:82;;;7408:17;;;7389:1;7378:13;7345:82;;7619:1352;7745:3;7739:10;7772:18;7764:6;7761:30;7758:56;;;7794:18;;:::i;:::-;7823:97;7913:6;7873:38;7905:4;7899:11;7873:38;:::i;:::-;7867:4;7823:97;:::i;:::-;7975:4;;8039:2;8028:14;;8056:1;8051:663;;;;8758:1;8775:6;8772:89;;;-1:-1:-1;8827:19:1;;;8821:26;8772:89;-1:-1:-1;;7576:1:1;7572:11;;;7568:24;7564:29;7554:40;7600:1;7596:11;;;7551:57;8874:81;;8021:944;;8051:663;6845:1;6838:14;;;6882:4;6869:18;;-1:-1:-1;;8087:20:1;;;8205:236;8219:7;8216:1;8213:14;8205:236;;;8308:19;;;8302:26;8287:42;;8400:27;;;;8368:1;8356:14;;;;8235:19;;8205:236;;;8209:3;8469:6;8460:7;8457:19;8454:201;;;8530:19;;;8524:26;-1:-1:-1;;8613:1:1;8609:14;;;8625:3;8605:24;8601:37;8597:42;8582:58;8567:74;;8454:201;-1:-1:-1;;;;;8701:1:1;8685:14;;;8681:22;8668:36;;-1:-1:-1;7619:1352:1:o;8976:128::-;9016:3;9047:1;9043:6;9040:1;9037:13;9034:39;;;9053:18;;:::i;:::-;-1:-1:-1;9089:9:1;;8976:128::o;9525:722::-;9575:3;9616:5;9610:12;9645:36;9671:9;9645:36;:::i;:::-;9700:1;9717:18;;;9744:133;;;;9891:1;9886:355;;;;9710:531;;9744:133;-1:-1:-1;;9777:24:1;;9765:37;;9850:14;;9843:22;9831:35;;9822:45;;;-1:-1:-1;9744:133:1;;9886:355;9917:5;9914:1;9907:16;9946:4;9991:2;9988:1;9978:16;10016:1;10030:165;10044:6;10041:1;10038:13;10030:165;;;10122:14;;10109:11;;;10102:35;10165:16;;;;10059:10;;10030:165;;;10034:3;;;10224:6;10219:3;10215:16;10208:23;;9710:531;;;;;9525:722;;;;:::o;10252:550::-;10476:3;10514:6;10508:13;10530:53;10576:6;10571:3;10564:4;10556:6;10552:17;10530:53;:::i;:::-;10646:13;;10605:16;;;;10668:57;10646:13;10605:16;10702:4;10690:17;;10668:57;:::i;:::-;10741:55;10786:8;10779:5;10775:20;10767:6;10741:55;:::i;:::-;10734:62;10252:550;-1:-1:-1;;;;;;;10252:550:1:o;10807:532::-;11084:3;11122:6;11116:13;11138:53;11184:6;11179:3;11172:4;11164:6;11160:17;11138:53;:::i;:::-;-1:-1:-1;;;11213:16:1;;;11238:30;;;11284:49;11329:2;11318:14;;11310:6;11284:49;:::i;:::-;11277:56;10807:532;-1:-1:-1;;;;;10807:532:1:o;12112:489::-;-1:-1:-1;;;;;12381:15:1;;;12363:34;;12433:15;;12428:2;12413:18;;12406:43;12480:2;12465:18;;12458:34;;;12528:3;12523:2;12508:18;;12501:31;;;12306:4;;12549:46;;12575:19;;12567:6;12549:46;:::i;:::-;12541:54;12112:489;-1:-1:-1;;;;;;12112:489:1:o;12606:249::-;12675:6;12728:2;12716:9;12707:7;12703:23;12699:32;12696:52;;;12744:1;12741;12734:12;12696:52;12776:9;12770:16;12795:30;12819:5;12795:30;:::i

Swarm Source

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