ETH Price: $3,157.96 (-4.17%)
Gas: 4 Gwei

Token

Bytepaw (PAW)
 

Overview

Max Total Supply

3,000 PAW

Holders

1,216

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kasens.eth
Balance
6 PAW
0x35ba887a6dc798323567e5e4c4534ebc65074bdb
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:
Bytepaw

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-16
*/

// 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.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 virtual {
        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;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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 '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        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 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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 virtual {
        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 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 virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        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 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 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;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: contracts/Bytepaw.sol



pragma solidity ^0.8.21;



contract Bytepaw is ERC721A, Ownable {
    uint256 public maxSupply = 3000;
    uint256 public mintPrice = .0011 ether;
    uint256 public maxPerTx = 5;
    uint256 public maxFree = 1;
    string public baseURI;
    bool public sale;
    mapping(address => uint256) public freeMintCounter;

    error SaleNotActive();
    error MaxSupplyReached();
    error MaxPerTxReached();
    error InsufficientFunds();

    constructor(string memory _initBaseTokenURI) payable ERC721A("Bytepaw", "PAW") {
        baseURI = _initBaseTokenURI;
    }

    function mint(uint256 _amount) external payable {
        if (!sale) revert SaleNotActive();

        uint256 _mintPrice = (msg.value == 0 &&
            (freeMintCounter[msg.sender] + _amount <= maxFree))
            ? 0
            : mintPrice;

        if (_amount > maxPerTx) revert MaxPerTxReached();
        if (msg.value < _mintPrice * _amount) revert InsufficientFunds();
        if (totalSupply() + _amount > maxSupply) revert MaxSupplyReached();

        if (_mintPrice == 0) {
            freeMintCounter[msg.sender] += _amount;
        }

        _safeMint(msg.sender, _amount);
    }

    function airdrop(address _receiver, uint256 _amount) external onlyOwner {
        _mint(_receiver, _amount);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        return string(abi.encodePacked(baseURI, _toString(tokenId), ".json"));
    }

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function setBaseURI(string calldata _newBaseTokenURI) external onlyOwner {
        baseURI = _newBaseTokenURI;
    }

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

    function setPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setSupply(uint256 _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    function setMaxPerTx(uint256 _maxPerTx) external onlyOwner {
        maxPerTx = _maxPerTx;
    }

    function setMaxFree(uint256 _maxFree) external onlyOwner {
        maxFree = _maxFree;
    }

    function toggleSale() external onlyOwner {
        sale = !sale;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseTokenURI","type":"string"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"MaxPerTxReached","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":"SaleNotActive","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFree","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610bb86009556603e871b540c000600a556005600b556001600c55604051620031b7380380620031b783398181016040528101906200004491906200037b565b6040518060400160405280600781526020017f42797465706177000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f50415700000000000000000000000000000000000000000000000000000000008152508160029081620000c1919062000601565b508060039081620000d3919062000601565b50620000e46200012460201b60201c565b5f8190555050506200010b620000ff6200012c60201b60201c565b6200013360201b60201c565b80600d90816200011c919062000601565b5050620006e5565b5f6001905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b62000257826200020f565b810181811067ffffffffffffffff821117156200027957620002786200021f565b5b80604052505050565b5f6200028d620001f6565b90506200029b82826200024c565b919050565b5f67ffffffffffffffff821115620002bd57620002bc6200021f565b5b620002c8826200020f565b9050602081019050919050565b5f5b83811015620002f4578082015181840152602081019050620002d7565b5f8484015250505050565b5f620003156200030f84620002a0565b62000282565b9050828152602081018484840111156200033457620003336200020b565b5b62000341848285620002d5565b509392505050565b5f82601f83011262000360576200035f62000207565b5b815162000372848260208601620002ff565b91505092915050565b5f60208284031215620003935762000392620001ff565b5b5f82015167ffffffffffffffff811115620003b357620003b262000203565b5b620003c18482850162000349565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200041957607f821691505b6020821081036200042f576200042e620003d4565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000456565b6200049f868362000456565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004e9620004e3620004dd84620004b7565b620004c0565b620004b7565b9050919050565b5f819050919050565b6200050483620004c9565b6200051c6200051382620004f0565b84845462000462565b825550505050565b5f90565b6200053262000524565b6200053f818484620004f9565b505050565b5b8181101562000566576200055a5f8262000528565b60018101905062000545565b5050565b601f821115620005b5576200057f8162000435565b6200058a8462000447565b810160208510156200059a578190505b620005b2620005a98562000447565b83018262000544565b50505b505050565b5f82821c905092915050565b5f620005d75f1984600802620005ba565b1980831691505092915050565b5f620005f18383620005c6565b9150826002028217905092915050565b6200060c82620003ca565b67ffffffffffffffff8111156200062857620006276200021f565b5b62000634825462000401565b620006418282856200056a565b5f60209050601f83116001811462000677575f841562000662578287015190505b6200066e8582620005e4565b865550620006dd565b601f198416620006878662000435565b5f5b82811015620006b05784890151825560018201915060208501945060208101905062000689565b86831015620006d05784890151620006cc601f891682620005c6565b8355505b6001600288020188555050505b505050505050565b612ac480620006f35f395ff3fe6080604052600436106101ed575f3560e01c8063715018a61161010c578063b88d4fde1161009f578063d755bf991161006e578063d755bf9914610655578063e985e9c51461067d578063f2fde38b146106b9578063f968adbe146106e1578063f9c4d1681461070b576101ed565b8063b88d4fde146105ab578063c6f6f216146105c7578063c87b56dd146105ef578063d5abeb011461062b576101ed565b806391b7f5ed116100db57806391b7f5ed1461051557806395d89b411461053d578063a0712d6814610567578063a22cb46514610583576101ed565b8063715018a6146104975780637d8966e4146104ad5780638ba4cc3c146104c35780638da5cb5b146104eb576101ed565b806342842e0e116101845780636817c76c116101535780636817c76c146103dd5780636ad1fe02146104075780636c0360eb1461043157806370a082311461045b576101ed565b806342842e0e14610333578063485a68a31461034f57806355f804b3146103795780636352211e146103a1576101ed565b806318160ddd116101c057806318160ddd146102af57806323b872dd146102d95780633b4c4b25146102f55780633ccfd60b1461031d576101ed565b806301ffc9a7146101f157806306fdde031461022d578063081812fc14610257578063095ea7b314610293575b5f80fd5b3480156101fc575f80fd5b5061021760048036038101906102129190611dad565b610747565b6040516102249190611df2565b60405180910390f35b348015610238575f80fd5b506102416107d8565b60405161024e9190611e95565b60405180910390f35b348015610262575f80fd5b5061027d60048036038101906102789190611ee8565b610868565b60405161028a9190611f52565b60405180910390f35b6102ad60048036038101906102a89190611f95565b6108e2565b005b3480156102ba575f80fd5b506102c3610a21565b6040516102d09190611fe2565b60405180910390f35b6102f360048036038101906102ee9190611ffb565b610a36565b005b348015610300575f80fd5b5061031b60048036038101906103169190611ee8565b610d44565b005b348015610328575f80fd5b50610331610d56565b005b61034d60048036038101906103489190611ffb565b610e09565b005b34801561035a575f80fd5b50610363610e28565b6040516103709190611fe2565b60405180910390f35b348015610384575f80fd5b5061039f600480360381019061039a91906120ac565b610e2e565b005b3480156103ac575f80fd5b506103c760048036038101906103c29190611ee8565b610e4c565b6040516103d49190611f52565b60405180910390f35b3480156103e8575f80fd5b506103f1610e5d565b6040516103fe9190611fe2565b60405180910390f35b348015610412575f80fd5b5061041b610e63565b6040516104289190611df2565b60405180910390f35b34801561043c575f80fd5b50610445610e75565b6040516104529190611e95565b60405180910390f35b348015610466575f80fd5b50610481600480360381019061047c91906120f7565b610f01565b60405161048e9190611fe2565b60405180910390f35b3480156104a2575f80fd5b506104ab610fb6565b005b3480156104b8575f80fd5b506104c1610fc9565b005b3480156104ce575f80fd5b506104e960048036038101906104e49190611f95565b610ffb565b005b3480156104f6575f80fd5b506104ff611011565b60405161050c9190611f52565b60405180910390f35b348015610520575f80fd5b5061053b60048036038101906105369190611ee8565b611039565b005b348015610548575f80fd5b5061055161104b565b60405161055e9190611e95565b60405180910390f35b610581600480360381019061057c9190611ee8565b6110db565b005b34801561058e575f80fd5b506105a960048036038101906105a4919061214c565b6112c2565b005b6105c560048036038101906105c091906122b2565b6113c8565b005b3480156105d2575f80fd5b506105ed60048036038101906105e89190611ee8565b61143a565b005b3480156105fa575f80fd5b5061061560048036038101906106109190611ee8565b61144c565b6040516106229190611e95565b60405180910390f35b348015610636575f80fd5b5061063f6114bf565b60405161064c9190611fe2565b60405180910390f35b348015610660575f80fd5b5061067b60048036038101906106769190611ee8565b6114c5565b005b348015610688575f80fd5b506106a3600480360381019061069e9190612332565b6114d7565b6040516106b09190611df2565b60405180910390f35b3480156106c4575f80fd5b506106df60048036038101906106da91906120f7565b611565565b005b3480156106ec575f80fd5b506106f56115e7565b6040516107029190611fe2565b60405180910390f35b348015610716575f80fd5b50610731600480360381019061072c91906120f7565b6115ed565b60405161073e9190611fe2565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e79061239d565b80601f01602080910402602001604051908101604052809291908181526020018280546108139061239d565b801561085e5780601f106108355761010080835404028352916020019161085e565b820191905f5260205f20905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b5f61087282611602565b6108a8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6108ec82610e4c565b90508073ffffffffffffffffffffffffffffffffffffffff1661090d61165c565b73ffffffffffffffffffffffffffffffffffffffff1614610970576109398161093461165c565b6114d7565b61096f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a2a611663565b6001545f540303905090565b5f610a408261166b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610ab28461172e565b91509150610ac88187610ac361165c565b611751565b610b1457610add86610ad861165c565b6114d7565b610b13576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b79576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b868686866001611794565b8015610b90575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610c5885610c3488888761179a565b7c0200000000000000000000000000000000000000000000000000000000176117c1565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610cd4575f6001850190505f60045f8381526020019081526020015f205403610cd2575f548114610cd1578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d3c86868660016117eb565b505050505050565b610d4c6117f1565b8060098190555050565b610d5e6117f1565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610d83906123fa565b5f6040518083038185875af1925050503d805f8114610dbd576040519150601f19603f3d011682016040523d82523d5f602084013e610dc2565b606091505b5050905080610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90612458565b60405180910390fd5b50565b610e2383838360405180602001604052805f8152506113c8565b505050565b600c5481565b610e366117f1565b8181600d9182610e4792919061261d565b505050565b5f610e568261166b565b9050919050565b600a5481565b600e5f9054906101000a900460ff1681565b600d8054610e829061239d565b80601f0160208091040260200160405190810160405280929190818152602001828054610eae9061239d565b8015610ef95780601f10610ed057610100808354040283529160200191610ef9565b820191905f5260205f20905b815481529060010190602001808311610edc57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f67576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610fbe6117f1565b610fc75f61186f565b565b610fd16117f1565b600e5f9054906101000a900460ff1615600e5f6101000a81548160ff021916908315150217905550565b6110036117f1565b61100d8282611932565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110416117f1565b80600a8190555050565b60606003805461105a9061239d565b80601f01602080910402602001604051908101604052809291908181526020018280546110869061239d565b80156110d15780601f106110a8576101008083540402835291602001916110d1565b820191905f5260205f20905b8154815290600101906020018083116110b457829003601f168201915b5050505050905090565b600e5f9054906101000a900460ff16611120576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f803414801561117a5750600c5482600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111779190612717565b11155b61118657600a54611188565b5f5b9050600b548211156111c6576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81816111d2919061274a565b34101561120b576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60095482611217610a21565b6112219190612717565b1115611259576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f81036112b45781600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546112ac9190612717565b925050819055505b6112be3383611adb565b5050565b8060075f6112ce61165c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661137761165c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113bc9190611df2565b60405180910390a35050565b6113d3848484610a36565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611434576113fd84848484611af8565b611433576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6114426117f1565b80600b8190555050565b606061145782611602565b61148d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d61149883611c43565b6040516020016114a992919061288f565b6040516020818303038152906040529050919050565b60095481565b6114cd6117f1565b80600c8190555050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61156d6117f1565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d29061292d565b60405180910390fd5b6115e48161186f565b50565b600b5481565b600f602052805f5260405f205f915090505481565b5f8161160c611663565b1115801561161a57505f5482105b801561165557505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f8082905080611679611663565b116116f7575f548110156116f6575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036116f4575b5f81036116ea5760045f836001900393508381526020019081526020015f205490506116c3565b8092505050611729565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86117b0868684611c92565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117f9611c9a565b73ffffffffffffffffffffffffffffffffffffffff16611817611011565b73ffffffffffffffffffffffffffffffffffffffff161461186d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186490612995565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f8203611970576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61197c5f848385611794565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506119ee836119df5f865f61179a565b6119e885611ca1565b176117c1565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611a885780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611a4f565b505f8203611ac2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611ad65f8483856117eb565b505050565b611af4828260405180602001604052805f815250611cb0565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b1d61165c565b8786866040518563ffffffff1660e01b8152600401611b3f9493929190612a05565b6020604051808303815f875af1925050508015611b7a57506040513d601f19601f82011682018060405250810190611b779190612a63565b60015b611bf0573d805f8114611ba8576040519150601f19603f3d011682016040523d82523d5f602084013e611bad565b606091505b505f815103611be8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391505f825281835b600115611c7d57600184039350600a81066030018453600a8104905080611c5b575b50828103602084039350808452505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b611cba8383611932565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611d42575f805490505f83820390505b611cf65f868380600101945086611af8565b611d2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ce457815f5414611d3f575f80fd5b50505b505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d8c81611d58565b8114611d96575f80fd5b50565b5f81359050611da781611d83565b92915050565b5f60208284031215611dc257611dc1611d50565b5b5f611dcf84828501611d99565b91505092915050565b5f8115159050919050565b611dec81611dd8565b82525050565b5f602082019050611e055f830184611de3565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611e42578082015181840152602081019050611e27565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e6782611e0b565b611e718185611e15565b9350611e81818560208601611e25565b611e8a81611e4d565b840191505092915050565b5f6020820190508181035f830152611ead8184611e5d565b905092915050565b5f819050919050565b611ec781611eb5565b8114611ed1575f80fd5b50565b5f81359050611ee281611ebe565b92915050565b5f60208284031215611efd57611efc611d50565b5b5f611f0a84828501611ed4565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611f3c82611f13565b9050919050565b611f4c81611f32565b82525050565b5f602082019050611f655f830184611f43565b92915050565b611f7481611f32565b8114611f7e575f80fd5b50565b5f81359050611f8f81611f6b565b92915050565b5f8060408385031215611fab57611faa611d50565b5b5f611fb885828601611f81565b9250506020611fc985828601611ed4565b9150509250929050565b611fdc81611eb5565b82525050565b5f602082019050611ff55f830184611fd3565b92915050565b5f805f6060848603121561201257612011611d50565b5b5f61201f86828701611f81565b935050602061203086828701611f81565b925050604061204186828701611ed4565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261206c5761206b61204b565b5b8235905067ffffffffffffffff8111156120895761208861204f565b5b6020830191508360018202830111156120a5576120a4612053565b5b9250929050565b5f80602083850312156120c2576120c1611d50565b5b5f83013567ffffffffffffffff8111156120df576120de611d54565b5b6120eb85828601612057565b92509250509250929050565b5f6020828403121561210c5761210b611d50565b5b5f61211984828501611f81565b91505092915050565b61212b81611dd8565b8114612135575f80fd5b50565b5f8135905061214681612122565b92915050565b5f806040838503121561216257612161611d50565b5b5f61216f85828601611f81565b925050602061218085828601612138565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6121c482611e4d565b810181811067ffffffffffffffff821117156121e3576121e261218e565b5b80604052505050565b5f6121f5611d47565b905061220182826121bb565b919050565b5f67ffffffffffffffff8211156122205761221f61218e565b5b61222982611e4d565b9050602081019050919050565b828183375f83830152505050565b5f61225661225184612206565b6121ec565b9050828152602081018484840111156122725761227161218a565b5b61227d848285612236565b509392505050565b5f82601f8301126122995761229861204b565b5b81356122a9848260208601612244565b91505092915050565b5f805f80608085870312156122ca576122c9611d50565b5b5f6122d787828801611f81565b94505060206122e887828801611f81565b93505060406122f987828801611ed4565b925050606085013567ffffffffffffffff81111561231a57612319611d54565b5b61232687828801612285565b91505092959194509250565b5f806040838503121561234857612347611d50565b5b5f61235585828601611f81565b925050602061236685828601611f81565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806123b457607f821691505b6020821081036123c7576123c6612370565b5b50919050565b5f81905092915050565b50565b5f6123e55f836123cd565b91506123f0826123d7565b5f82019050919050565b5f612404826123da565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f612442601083611e15565b915061244d8261240e565b602082019050919050565b5f6020820190508181035f83015261246f81612436565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026124dc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826124a1565b6124e686836124a1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61252161251c61251784611eb5565b6124fe565b611eb5565b9050919050565b5f819050919050565b61253a83612507565b61254e61254682612528565b8484546124ad565b825550505050565b5f90565b612562612556565b61256d818484612531565b505050565b5b81811015612590576125855f8261255a565b600181019050612573565b5050565b601f8211156125d5576125a681612480565b6125af84612492565b810160208510156125be578190505b6125d26125ca85612492565b830182612572565b50505b505050565b5f82821c905092915050565b5f6125f55f19846008026125da565b1980831691505092915050565b5f61260d83836125e6565b9150826002028217905092915050565b6126278383612476565b67ffffffffffffffff8111156126405761263f61218e565b5b61264a825461239d565b612655828285612594565b5f601f831160018114612682575f8415612670578287013590505b61267a8582612602565b8655506126e1565b601f19841661269086612480565b5f5b828110156126b757848901358255600182019150602085019450602081019050612692565b868310156126d457848901356126d0601f8916826125e6565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61272182611eb5565b915061272c83611eb5565b9250828201905080821115612744576127436126ea565b5b92915050565b5f61275482611eb5565b915061275f83611eb5565b925082820261276d81611eb5565b91508282048414831517612784576127836126ea565b5b5092915050565b5f81905092915050565b5f81546127a18161239d565b6127ab818661278b565b9450600182165f81146127c557600181146127da5761280c565b60ff198316865281151582028601935061280c565b6127e385612480565b5f5b83811015612804578154818901526001820191506020810190506127e5565b838801955050505b50505092915050565b5f61281f82611e0b565b612829818561278b565b9350612839818560208601611e25565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f61287960058361278b565b915061288482612845565b600582019050919050565b5f61289a8285612795565b91506128a68284612815565b91506128b18261286d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612917602683611e15565b9150612922826128bd565b604082019050919050565b5f6020820190508181035f8301526129448161290b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61297f602083611e15565b915061298a8261294b565b602082019050919050565b5f6020820190508181035f8301526129ac81612973565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6129d7826129b3565b6129e181856129bd565b93506129f1818560208601611e25565b6129fa81611e4d565b840191505092915050565b5f608082019050612a185f830187611f43565b612a256020830186611f43565b612a326040830185611fd3565b8181036060830152612a4481846129cd565b905095945050505050565b5f81519050612a5d81611d83565b92915050565b5f60208284031215612a7857612a77611d50565b5b5f612a8584828501612a4f565b9150509291505056fea2646970667358221220586c4bae0c8e9cca530bf09d50ba4c315628043e392991609a2b5984a87b31cf64736f6c6343000815003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66354259506452373433793542667572434d344c5a36345833747333704c44317646564e68487470723634412f00000000000000000000

Deployed Bytecode

0x6080604052600436106101ed575f3560e01c8063715018a61161010c578063b88d4fde1161009f578063d755bf991161006e578063d755bf9914610655578063e985e9c51461067d578063f2fde38b146106b9578063f968adbe146106e1578063f9c4d1681461070b576101ed565b8063b88d4fde146105ab578063c6f6f216146105c7578063c87b56dd146105ef578063d5abeb011461062b576101ed565b806391b7f5ed116100db57806391b7f5ed1461051557806395d89b411461053d578063a0712d6814610567578063a22cb46514610583576101ed565b8063715018a6146104975780637d8966e4146104ad5780638ba4cc3c146104c35780638da5cb5b146104eb576101ed565b806342842e0e116101845780636817c76c116101535780636817c76c146103dd5780636ad1fe02146104075780636c0360eb1461043157806370a082311461045b576101ed565b806342842e0e14610333578063485a68a31461034f57806355f804b3146103795780636352211e146103a1576101ed565b806318160ddd116101c057806318160ddd146102af57806323b872dd146102d95780633b4c4b25146102f55780633ccfd60b1461031d576101ed565b806301ffc9a7146101f157806306fdde031461022d578063081812fc14610257578063095ea7b314610293575b5f80fd5b3480156101fc575f80fd5b5061021760048036038101906102129190611dad565b610747565b6040516102249190611df2565b60405180910390f35b348015610238575f80fd5b506102416107d8565b60405161024e9190611e95565b60405180910390f35b348015610262575f80fd5b5061027d60048036038101906102789190611ee8565b610868565b60405161028a9190611f52565b60405180910390f35b6102ad60048036038101906102a89190611f95565b6108e2565b005b3480156102ba575f80fd5b506102c3610a21565b6040516102d09190611fe2565b60405180910390f35b6102f360048036038101906102ee9190611ffb565b610a36565b005b348015610300575f80fd5b5061031b60048036038101906103169190611ee8565b610d44565b005b348015610328575f80fd5b50610331610d56565b005b61034d60048036038101906103489190611ffb565b610e09565b005b34801561035a575f80fd5b50610363610e28565b6040516103709190611fe2565b60405180910390f35b348015610384575f80fd5b5061039f600480360381019061039a91906120ac565b610e2e565b005b3480156103ac575f80fd5b506103c760048036038101906103c29190611ee8565b610e4c565b6040516103d49190611f52565b60405180910390f35b3480156103e8575f80fd5b506103f1610e5d565b6040516103fe9190611fe2565b60405180910390f35b348015610412575f80fd5b5061041b610e63565b6040516104289190611df2565b60405180910390f35b34801561043c575f80fd5b50610445610e75565b6040516104529190611e95565b60405180910390f35b348015610466575f80fd5b50610481600480360381019061047c91906120f7565b610f01565b60405161048e9190611fe2565b60405180910390f35b3480156104a2575f80fd5b506104ab610fb6565b005b3480156104b8575f80fd5b506104c1610fc9565b005b3480156104ce575f80fd5b506104e960048036038101906104e49190611f95565b610ffb565b005b3480156104f6575f80fd5b506104ff611011565b60405161050c9190611f52565b60405180910390f35b348015610520575f80fd5b5061053b60048036038101906105369190611ee8565b611039565b005b348015610548575f80fd5b5061055161104b565b60405161055e9190611e95565b60405180910390f35b610581600480360381019061057c9190611ee8565b6110db565b005b34801561058e575f80fd5b506105a960048036038101906105a4919061214c565b6112c2565b005b6105c560048036038101906105c091906122b2565b6113c8565b005b3480156105d2575f80fd5b506105ed60048036038101906105e89190611ee8565b61143a565b005b3480156105fa575f80fd5b5061061560048036038101906106109190611ee8565b61144c565b6040516106229190611e95565b60405180910390f35b348015610636575f80fd5b5061063f6114bf565b60405161064c9190611fe2565b60405180910390f35b348015610660575f80fd5b5061067b60048036038101906106769190611ee8565b6114c5565b005b348015610688575f80fd5b506106a3600480360381019061069e9190612332565b6114d7565b6040516106b09190611df2565b60405180910390f35b3480156106c4575f80fd5b506106df60048036038101906106da91906120f7565b611565565b005b3480156106ec575f80fd5b506106f56115e7565b6040516107029190611fe2565b60405180910390f35b348015610716575f80fd5b50610731600480360381019061072c91906120f7565b6115ed565b60405161073e9190611fe2565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e79061239d565b80601f01602080910402602001604051908101604052809291908181526020018280546108139061239d565b801561085e5780601f106108355761010080835404028352916020019161085e565b820191905f5260205f20905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b5f61087282611602565b6108a8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6108ec82610e4c565b90508073ffffffffffffffffffffffffffffffffffffffff1661090d61165c565b73ffffffffffffffffffffffffffffffffffffffff1614610970576109398161093461165c565b6114d7565b61096f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a2a611663565b6001545f540303905090565b5f610a408261166b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610ab28461172e565b91509150610ac88187610ac361165c565b611751565b610b1457610add86610ad861165c565b6114d7565b610b13576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b79576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b868686866001611794565b8015610b90575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610c5885610c3488888761179a565b7c0200000000000000000000000000000000000000000000000000000000176117c1565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610cd4575f6001850190505f60045f8381526020019081526020015f205403610cd2575f548114610cd1578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d3c86868660016117eb565b505050505050565b610d4c6117f1565b8060098190555050565b610d5e6117f1565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610d83906123fa565b5f6040518083038185875af1925050503d805f8114610dbd576040519150601f19603f3d011682016040523d82523d5f602084013e610dc2565b606091505b5050905080610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90612458565b60405180910390fd5b50565b610e2383838360405180602001604052805f8152506113c8565b505050565b600c5481565b610e366117f1565b8181600d9182610e4792919061261d565b505050565b5f610e568261166b565b9050919050565b600a5481565b600e5f9054906101000a900460ff1681565b600d8054610e829061239d565b80601f0160208091040260200160405190810160405280929190818152602001828054610eae9061239d565b8015610ef95780601f10610ed057610100808354040283529160200191610ef9565b820191905f5260205f20905b815481529060010190602001808311610edc57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f67576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610fbe6117f1565b610fc75f61186f565b565b610fd16117f1565b600e5f9054906101000a900460ff1615600e5f6101000a81548160ff021916908315150217905550565b6110036117f1565b61100d8282611932565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110416117f1565b80600a8190555050565b60606003805461105a9061239d565b80601f01602080910402602001604051908101604052809291908181526020018280546110869061239d565b80156110d15780601f106110a8576101008083540402835291602001916110d1565b820191905f5260205f20905b8154815290600101906020018083116110b457829003601f168201915b5050505050905090565b600e5f9054906101000a900460ff16611120576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f803414801561117a5750600c5482600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111779190612717565b11155b61118657600a54611188565b5f5b9050600b548211156111c6576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81816111d2919061274a565b34101561120b576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60095482611217610a21565b6112219190612717565b1115611259576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f81036112b45781600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546112ac9190612717565b925050819055505b6112be3383611adb565b5050565b8060075f6112ce61165c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661137761165c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113bc9190611df2565b60405180910390a35050565b6113d3848484610a36565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611434576113fd84848484611af8565b611433576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6114426117f1565b80600b8190555050565b606061145782611602565b61148d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d61149883611c43565b6040516020016114a992919061288f565b6040516020818303038152906040529050919050565b60095481565b6114cd6117f1565b80600c8190555050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61156d6117f1565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d29061292d565b60405180910390fd5b6115e48161186f565b50565b600b5481565b600f602052805f5260405f205f915090505481565b5f8161160c611663565b1115801561161a57505f5482105b801561165557505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f8082905080611679611663565b116116f7575f548110156116f6575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036116f4575b5f81036116ea5760045f836001900393508381526020019081526020015f205490506116c3565b8092505050611729565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86117b0868684611c92565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117f9611c9a565b73ffffffffffffffffffffffffffffffffffffffff16611817611011565b73ffffffffffffffffffffffffffffffffffffffff161461186d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186490612995565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f8203611970576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61197c5f848385611794565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506119ee836119df5f865f61179a565b6119e885611ca1565b176117c1565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611a885780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611a4f565b505f8203611ac2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611ad65f8483856117eb565b505050565b611af4828260405180602001604052805f815250611cb0565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b1d61165c565b8786866040518563ffffffff1660e01b8152600401611b3f9493929190612a05565b6020604051808303815f875af1925050508015611b7a57506040513d601f19601f82011682018060405250810190611b779190612a63565b60015b611bf0573d805f8114611ba8576040519150601f19603f3d011682016040523d82523d5f602084013e611bad565b606091505b505f815103611be8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391505f825281835b600115611c7d57600184039350600a81066030018453600a8104905080611c5b575b50828103602084039350808452505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b611cba8383611932565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611d42575f805490505f83820390505b611cf65f868380600101945086611af8565b611d2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ce457815f5414611d3f575f80fd5b50505b505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d8c81611d58565b8114611d96575f80fd5b50565b5f81359050611da781611d83565b92915050565b5f60208284031215611dc257611dc1611d50565b5b5f611dcf84828501611d99565b91505092915050565b5f8115159050919050565b611dec81611dd8565b82525050565b5f602082019050611e055f830184611de3565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611e42578082015181840152602081019050611e27565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e6782611e0b565b611e718185611e15565b9350611e81818560208601611e25565b611e8a81611e4d565b840191505092915050565b5f6020820190508181035f830152611ead8184611e5d565b905092915050565b5f819050919050565b611ec781611eb5565b8114611ed1575f80fd5b50565b5f81359050611ee281611ebe565b92915050565b5f60208284031215611efd57611efc611d50565b5b5f611f0a84828501611ed4565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611f3c82611f13565b9050919050565b611f4c81611f32565b82525050565b5f602082019050611f655f830184611f43565b92915050565b611f7481611f32565b8114611f7e575f80fd5b50565b5f81359050611f8f81611f6b565b92915050565b5f8060408385031215611fab57611faa611d50565b5b5f611fb885828601611f81565b9250506020611fc985828601611ed4565b9150509250929050565b611fdc81611eb5565b82525050565b5f602082019050611ff55f830184611fd3565b92915050565b5f805f6060848603121561201257612011611d50565b5b5f61201f86828701611f81565b935050602061203086828701611f81565b925050604061204186828701611ed4565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261206c5761206b61204b565b5b8235905067ffffffffffffffff8111156120895761208861204f565b5b6020830191508360018202830111156120a5576120a4612053565b5b9250929050565b5f80602083850312156120c2576120c1611d50565b5b5f83013567ffffffffffffffff8111156120df576120de611d54565b5b6120eb85828601612057565b92509250509250929050565b5f6020828403121561210c5761210b611d50565b5b5f61211984828501611f81565b91505092915050565b61212b81611dd8565b8114612135575f80fd5b50565b5f8135905061214681612122565b92915050565b5f806040838503121561216257612161611d50565b5b5f61216f85828601611f81565b925050602061218085828601612138565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6121c482611e4d565b810181811067ffffffffffffffff821117156121e3576121e261218e565b5b80604052505050565b5f6121f5611d47565b905061220182826121bb565b919050565b5f67ffffffffffffffff8211156122205761221f61218e565b5b61222982611e4d565b9050602081019050919050565b828183375f83830152505050565b5f61225661225184612206565b6121ec565b9050828152602081018484840111156122725761227161218a565b5b61227d848285612236565b509392505050565b5f82601f8301126122995761229861204b565b5b81356122a9848260208601612244565b91505092915050565b5f805f80608085870312156122ca576122c9611d50565b5b5f6122d787828801611f81565b94505060206122e887828801611f81565b93505060406122f987828801611ed4565b925050606085013567ffffffffffffffff81111561231a57612319611d54565b5b61232687828801612285565b91505092959194509250565b5f806040838503121561234857612347611d50565b5b5f61235585828601611f81565b925050602061236685828601611f81565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806123b457607f821691505b6020821081036123c7576123c6612370565b5b50919050565b5f81905092915050565b50565b5f6123e55f836123cd565b91506123f0826123d7565b5f82019050919050565b5f612404826123da565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f612442601083611e15565b915061244d8261240e565b602082019050919050565b5f6020820190508181035f83015261246f81612436565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026124dc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826124a1565b6124e686836124a1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61252161251c61251784611eb5565b6124fe565b611eb5565b9050919050565b5f819050919050565b61253a83612507565b61254e61254682612528565b8484546124ad565b825550505050565b5f90565b612562612556565b61256d818484612531565b505050565b5b81811015612590576125855f8261255a565b600181019050612573565b5050565b601f8211156125d5576125a681612480565b6125af84612492565b810160208510156125be578190505b6125d26125ca85612492565b830182612572565b50505b505050565b5f82821c905092915050565b5f6125f55f19846008026125da565b1980831691505092915050565b5f61260d83836125e6565b9150826002028217905092915050565b6126278383612476565b67ffffffffffffffff8111156126405761263f61218e565b5b61264a825461239d565b612655828285612594565b5f601f831160018114612682575f8415612670578287013590505b61267a8582612602565b8655506126e1565b601f19841661269086612480565b5f5b828110156126b757848901358255600182019150602085019450602081019050612692565b868310156126d457848901356126d0601f8916826125e6565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61272182611eb5565b915061272c83611eb5565b9250828201905080821115612744576127436126ea565b5b92915050565b5f61275482611eb5565b915061275f83611eb5565b925082820261276d81611eb5565b91508282048414831517612784576127836126ea565b5b5092915050565b5f81905092915050565b5f81546127a18161239d565b6127ab818661278b565b9450600182165f81146127c557600181146127da5761280c565b60ff198316865281151582028601935061280c565b6127e385612480565b5f5b83811015612804578154818901526001820191506020810190506127e5565b838801955050505b50505092915050565b5f61281f82611e0b565b612829818561278b565b9350612839818560208601611e25565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f61287960058361278b565b915061288482612845565b600582019050919050565b5f61289a8285612795565b91506128a68284612815565b91506128b18261286d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612917602683611e15565b9150612922826128bd565b604082019050919050565b5f6020820190508181035f8301526129448161290b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61297f602083611e15565b915061298a8261294b565b602082019050919050565b5f6020820190508181035f8301526129ac81612973565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6129d7826129b3565b6129e181856129bd565b93506129f1818560208601611e25565b6129fa81611e4d565b840191505092915050565b5f608082019050612a185f830187611f43565b612a256020830186611f43565b612a326040830185611fd3565b8181036060830152612a4481846129cd565b905095945050505050565b5f81519050612a5d81611d83565b92915050565b5f60208284031215612a7857612a77611d50565b5b5f612a8584828501612a4f565b9150509291505056fea2646970667358221220586c4bae0c8e9cca530bf09d50ba4c315628043e392991609a2b5984a87b31cf64736f6c63430008150033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66354259506452373433793542667572434d344c5a36345833747333704c44317646564e68487470723634412f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseTokenURI (string): ipfs://Qmf5BYPdR743y5BfurCM4LZ64X3ts3pLD1vFVNhHtpr64A/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d66354259506452373433793542667572434d344c5a3634
Arg [3] : 5833747333704c44317646564e68487470723634412f00000000000000000000


Deployed Bytecode Sourcemap

55126:2629:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22025:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22927:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29418:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28851:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18678:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33057:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57184:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57579:173;;;;;;;;;;;;;:::i;:::-;;35978:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55287:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56836:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24320:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55208:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55348:16;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55320:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19862:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2804:103;;;;;;;;;;;;;:::i;:::-;;57499:72;;;;;;;;;;;;;:::i;:::-;;56307:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2163:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57078:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23103:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55686:613;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29976:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36769:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57291:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56431:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55170:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57397:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30367:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3062:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55253:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55371:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22025:639;22110:4;22449:10;22434:25;;:11;:25;;;;:102;;;;22526:10;22511:25;;:11;:25;;;;22434:102;:179;;;;22603:10;22588:25;;:11;:25;;;;22434:179;22414:199;;22025:639;;;:::o;22927:100::-;22981:13;23014:5;23007:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22927:100;:::o;29418:218::-;29494:7;29519:16;29527:7;29519;:16::i;:::-;29514:64;;29544:34;;;;;;;;;;;;;;29514:64;29598:15;:24;29614:7;29598:24;;;;;;;;;;;:30;;;;;;;;;;;;29591:37;;29418:218;;;:::o;28851:408::-;28940:13;28956:16;28964:7;28956;:16::i;:::-;28940:32;;29012:5;28989:28;;:19;:17;:19::i;:::-;:28;;;28985:175;;29037:44;29054:5;29061:19;:17;:19::i;:::-;29037:16;:44::i;:::-;29032:128;;29109:35;;;;;;;;;;;;;;29032:128;28985:175;29205:2;29172:15;:24;29188:7;29172:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29243:7;29239:2;29223:28;;29232:5;29223:28;;;;;;;;;;;;28929:330;28851:408;;:::o;18678:323::-;18739:7;18967:15;:13;:15::i;:::-;18952:12;;18936:13;;:28;:46;18929:53;;18678:323;:::o;33057:2825::-;33199:27;33229;33248:7;33229:18;:27::i;:::-;33199:57;;33314:4;33273:45;;33289:19;33273:45;;;33269:86;;33327:28;;;;;;;;;;;;;;33269:86;33369:27;33398:23;33425:35;33452:7;33425:26;:35::i;:::-;33368:92;;;;33560:68;33585:15;33602:4;33608:19;:17;:19::i;:::-;33560:24;:68::i;:::-;33555:180;;33648:43;33665:4;33671:19;:17;:19::i;:::-;33648:16;:43::i;:::-;33643:92;;33700:35;;;;;;;;;;;;;;33643:92;33555:180;33766:1;33752:16;;:2;:16;;;33748:52;;33777:23;;;;;;;;;;;;;;33748:52;33813:43;33835:4;33841:2;33845:7;33854:1;33813:21;:43::i;:::-;33949:15;33946:160;;;34089:1;34068:19;34061:30;33946:160;34486:18;:24;34505:4;34486:24;;;;;;;;;;;;;;;;34484:26;;;;;;;;;;;;34555:18;:22;34574:2;34555:22;;;;;;;;;;;;;;;;34553:24;;;;;;;;;;;34877:146;34914:2;34963:45;34978:4;34984:2;34988:19;34963:14;:45::i;:::-;15077:8;34935:73;34877:18;:146::i;:::-;34848:17;:26;34866:7;34848:26;;;;;;;;;;;:175;;;;35194:1;15077:8;35143:19;:47;:52;35139:627;;35216:19;35248:1;35238:7;:11;35216:33;;35405:1;35371:17;:30;35389:11;35371:30;;;;;;;;;;;;:35;35367:384;;35509:13;;35494:11;:28;35490:242;;35689:19;35656:17;:30;35674:11;35656:30;;;;;;;;;;;:52;;;;35490:242;35367:384;35197:569;35139:627;35813:7;35809:2;35794:27;;35803:4;35794:27;;;;;;;;;;;;35832:42;35853:4;35859:2;35863:7;35872:1;35832:20;:42::i;:::-;33188:2694;;;33057:2825;;;:::o;57184:99::-;2049:13;:11;:13::i;:::-;57265:10:::1;57253:9;:22;;;;57184:99:::0;:::o;57579:173::-;2049:13;:11;:13::i;:::-;57630:12:::1;57648:10;:15;;57671:21;57648:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57629:68;;;57716:7;57708:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;57618:134;57579:173::o:0;35978:193::-;36124:39;36141:4;36147:2;36151:7;36124:39;;;;;;;;;;;;:16;:39::i;:::-;35978:193;;;:::o;55287:26::-;;;;:::o;56836:118::-;2049:13;:11;:13::i;:::-;56930:16:::1;;56920:7;:26;;;;;;;:::i;:::-;;56836:118:::0;;:::o;24320:152::-;24392:7;24435:27;24454:7;24435:18;:27::i;:::-;24412:52;;24320:152;;;:::o;55208:38::-;;;;:::o;55348:16::-;;;;;;;;;;;;;:::o;55320:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19862:233::-;19934:7;19975:1;19958:19;;:5;:19;;;19954:60;;19986:28;;;;;;;;;;;;;;19954:60;14021:13;20032:18;:25;20051:5;20032:25;;;;;;;;;;;;;;;;:55;20025:62;;19862:233;;;:::o;2804:103::-;2049:13;:11;:13::i;:::-;2869:30:::1;2896:1;2869:18;:30::i;:::-;2804:103::o:0;57499:72::-;2049:13;:11;:13::i;:::-;57559:4:::1;;;;;;;;;;;57558:5;57551:4;;:12;;;;;;;;;;;;;;;;;;57499:72::o:0;56307:116::-;2049:13;:11;:13::i;:::-;56390:25:::1;56396:9;56407:7;56390:5;:25::i;:::-;56307:116:::0;;:::o;2163:87::-;2209:7;2236:6;;;;;;;;;;;2229:13;;2163:87;:::o;57078:98::-;2049:13;:11;:13::i;:::-;57158:10:::1;57146:9;:22;;;;57078:98:::0;:::o;23103:104::-;23159:13;23192:7;23185:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23103:104;:::o;55686:613::-;55750:4;;;;;;;;;;;55745:33;;55763:15;;;;;;;;;;;;;;55745:33;55791:18;55826:1;55813:9;:14;:81;;;;;55886:7;;55875;55845:15;:27;55861:10;55845:27;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:48;;55813:81;55812:125;;55928:9;;55812:125;;;55911:1;55812:125;55791:146;;55964:8;;55954:7;:18;55950:48;;;55981:17;;;;;;;;;;;;;;55950:48;56038:7;56025:10;:20;;;;:::i;:::-;56013:9;:32;56009:64;;;56054:19;;;;;;;;;;;;;;56009:64;56114:9;;56104:7;56088:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:35;56084:66;;;56132:18;;;;;;;;;;;;;;56084:66;56181:1;56167:10;:15;56163:86;;56230:7;56199:15;:27;56215:10;56199:27;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;56163:86;56261:30;56271:10;56283:7;56261:9;:30::i;:::-;55734:565;55686:613;:::o;29976:234::-;30123:8;30071:18;:39;30090:19;:17;:19::i;:::-;30071:39;;;;;;;;;;;;;;;:49;30111:8;30071:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30183:8;30147:55;;30162:19;:17;:19::i;:::-;30147:55;;;30193:8;30147:55;;;;;;:::i;:::-;;;;;;;;29976:234;;:::o;36769:407::-;36944:31;36957:4;36963:2;36967:7;36944:12;:31::i;:::-;37008:1;36990:2;:14;;;:19;36986:183;;37029:56;37060:4;37066:2;37070:7;37079:5;37029:30;:56::i;:::-;37024:145;;37113:40;;;;;;;;;;;;;;37024:145;36986:183;36769:407;;;;:::o;57291:98::-;2049:13;:11;:13::i;:::-;57372:9:::1;57361:8;:20;;;;57291:98:::0;:::o;56431:296::-;56549:13;56585:16;56593:7;56585;:16::i;:::-;56580:59;;56610:29;;;;;;;;;;;;;;56580:59;56681:7;56690:18;56700:7;56690:9;:18::i;:::-;56664:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56650:69;;56431:296;;;:::o;55170:31::-;;;;:::o;57397:94::-;2049:13;:11;:13::i;:::-;57475:8:::1;57465:7;:18;;;;57397:94:::0;:::o;30367:164::-;30464:4;30488:18;:25;30507:5;30488:25;;;;;;;;;;;;;;;:35;30514:8;30488:35;;;;;;;;;;;;;;;;;;;;;;;;;30481:42;;30367:164;;;;:::o;3062:201::-;2049:13;:11;:13::i;:::-;3171:1:::1;3151:22;;:8;:22;;::::0;3143:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3227:28;3246:8;3227:18;:28::i;:::-;3062:201:::0;:::o;55253:27::-;;;;:::o;55371:50::-;;;;;;;;;;;;;;;;;:::o;30789:282::-;30854:4;30910:7;30891:15;:13;:15::i;:::-;:26;;:66;;;;;30944:13;;30934:7;:23;30891:66;:153;;;;;31043:1;14797:8;30995:17;:26;31013:7;30995:26;;;;;;;;;;;;:44;:49;30891:153;30871:173;;30789:282;;;:::o;53097:105::-;53157:7;53184:10;53177:17;;53097:105;:::o;56735:93::-;56792:7;56819:1;56812:8;;56735:93;:::o;25475:1275::-;25542:7;25562:12;25577:7;25562:22;;25645:4;25626:15;:13;:15::i;:::-;:23;25622:1061;;25679:13;;25672:4;:20;25668:1015;;;25717:14;25734:17;:23;25752:4;25734:23;;;;;;;;;;;;25717:40;;25851:1;14797:8;25823:6;:24;:29;25819:845;;26488:113;26505:1;26495:6;:11;26488:113;;26548:17;:25;26566:6;;;;;;;26548:25;;;;;;;;;;;;26539:34;;26488:113;;;26634:6;26627:13;;;;;;25819:845;25694:989;25668:1015;25622:1061;26711:31;;;;;;;;;;;;;;25475:1275;;;;:::o;31952:485::-;32054:27;32083:23;32124:38;32165:15;:24;32181:7;32165:24;;;;;;;;;;;32124:65;;32342:18;32319:41;;32399:19;32393:26;32374:45;;32304:126;31952:485;;;:::o;31180:659::-;31329:11;31494:16;31487:5;31483:28;31474:37;;31654:16;31643:9;31639:32;31626:45;;31804:15;31793:9;31790:30;31782:5;31771:9;31768:20;31765:56;31755:66;;31180:659;;;;;:::o;37838:159::-;;;;;:::o;52406:311::-;52541:7;52561:16;15201:3;52587:19;:41;;52561:68;;15201:3;52655:31;52666:4;52672:2;52676:9;52655:10;:31::i;:::-;52647:40;;:62;;52640:69;;;52406:311;;;;;:::o;27298:450::-;27378:14;27546:16;27539:5;27535:28;27526:37;;27723:5;27709:11;27684:23;27680:41;27677:52;27670:5;27667:63;27657:73;;27298:450;;;;:::o;38662:158::-;;;;;:::o;2328:132::-;2403:12;:10;:12::i;:::-;2392:23;;:7;:5;:7::i;:::-;:23;;;2384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2328:132::o;3423:191::-;3497:16;3516:6;;;;;;;;;;;3497:25;;3542:8;3533:6;;:17;;;;;;;;;;;;;;;;;;3597:8;3566:40;;3587:8;3566:40;;;;;;;;;;;;3486:128;3423:191;:::o;40438:2966::-;40511:20;40534:13;;40511:36;;40574:1;40562:8;:13;40558:44;;40584:18;;;;;;;;;;;;;;40558:44;40615:61;40645:1;40649:2;40653:12;40667:8;40615:21;:61::i;:::-;41159:1;14159:2;41129:1;:26;;41128:32;41116:8;:45;41090:18;:22;41109:2;41090:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41438:139;41475:2;41529:33;41552:1;41556:2;41560:1;41529:14;:33::i;:::-;41496:30;41517:8;41496:20;:30::i;:::-;:66;41438:18;:139::i;:::-;41404:17;:31;41422:12;41404:31;;;;;;;;;;;:173;;;;41594:16;41625:11;41654:8;41639:12;:23;41625:37;;42175:16;42171:2;42167:25;42155:37;;42547:12;42507:8;42466:1;42404:25;42345:1;42284;42257:335;42918:1;42904:12;42900:20;42858:346;42959:3;42950:7;42947:16;42858:346;;43177:7;43167:8;43164:1;43137:25;43134:1;43131;43126:59;43012:1;43003:7;42999:15;42988:26;;42858:346;;;42862:77;43249:1;43237:8;:13;43233:45;;43259:19;;;;;;;;;;;;;;43233:45;43311:3;43295:13;:19;;;;40864:2462;;43336:60;43365:1;43369:2;43373:12;43387:8;43336:20;:60::i;:::-;40500:2904;40438:2966;;:::o;46929:112::-;47006:27;47016:2;47020:8;47006:27;;;;;;;;;;;;:9;:27::i;:::-;46929:112;;:::o;39260:716::-;39423:4;39469:2;39444:45;;;39490:19;:17;:19::i;:::-;39511:4;39517:7;39526:5;39444:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39744:1;39727:6;:13;:18;39723:235;;39773:40;;;;;;;;;;;;;;39723:235;39916:6;39910:13;39901:6;39897:2;39893:15;39886:38;39440:529;39613:54;;;39603:64;;;:6;:64;;;;39596:71;;;39260:716;;;;;;:::o;53304:1745::-;53369:17;53803:4;53796;53790:11;53786:22;53895:1;53889:4;53882:15;53970:4;53967:1;53963:12;53956:19;;54052:1;54047:3;54040:14;54156:3;54395:5;54377:428;54403:1;54377:428;;;54443:1;54438:3;54434:11;54427:18;;54614:2;54608:4;54604:13;54600:2;54596:22;54591:3;54583:36;54708:2;54702:4;54698:13;54690:21;;54775:4;54377:428;54765:25;54377:428;54381:21;54844:3;54839;54835:13;54959:4;54954:3;54950:14;54943:21;;55024:6;55019:3;55012:19;53408:1634;;;53304:1745;;;:::o;52107:147::-;52244:6;52107:147;;;;;:::o;714:98::-;767:7;794:10;787:17;;714:98;:::o;27850:324::-;27920:14;28153:1;28143:8;28140:15;28114:24;28110:46;28100:56;;27850:324;;;:::o;46156:689::-;46287:19;46293:2;46297:8;46287:5;:19::i;:::-;46366:1;46348:2;:14;;;:19;46344:483;;46388:11;46402:13;;46388:27;;46434:13;46456:8;46450:3;:14;46434:30;;46483:233;46514:62;46553:1;46557:2;46561:7;;;;;;46570:5;46514:30;:62::i;:::-;46509:167;;46612:40;;;;;;;;;;;;;;46509:167;46711:3;46703:5;:11;46483:233;;46798:3;46781:13;;:20;46777:34;;46803:8;;;46777:34;46369:458;;46344:483;46156:689;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:147::-;12438:11;12475:3;12460:18;;12337:147;;;;:::o;12490:114::-;;:::o;12610:398::-;12769:3;12790:83;12871:1;12866:3;12790:83;:::i;:::-;12783:90;;12882:93;12971:3;12882:93;:::i;:::-;13000:1;12995:3;12991:11;12984:18;;12610:398;;;:::o;13014:379::-;13198:3;13220:147;13363:3;13220:147;:::i;:::-;13213:154;;13384:3;13377:10;;13014:379;;;:::o;13399:166::-;13539:18;13535:1;13527:6;13523:14;13516:42;13399:166;:::o;13571:366::-;13713:3;13734:67;13798:2;13793:3;13734:67;:::i;:::-;13727:74;;13810:93;13899:3;13810:93;:::i;:::-;13928:2;13923:3;13919:12;13912:19;;13571:366;;;:::o;13943:419::-;14109:4;14147:2;14136:9;14132:18;14124:26;;14196:9;14190:4;14186:20;14182:1;14171:9;14167:17;14160:47;14224:131;14350:4;14224:131;:::i;:::-;14216:139;;13943:419;;;:::o;14368:97::-;14427:6;14455:3;14445:13;;14368:97;;;;:::o;14471:141::-;14520:4;14543:3;14535:11;;14566:3;14563:1;14556:14;14600:4;14597:1;14587:18;14579:26;;14471:141;;;:::o;14618:93::-;14655:6;14702:2;14697;14690:5;14686:14;14682:23;14672:33;;14618:93;;;:::o;14717:107::-;14761:8;14811:5;14805:4;14801:16;14780:37;;14717:107;;;;:::o;14830:393::-;14899:6;14949:1;14937:10;14933:18;14972:97;15002:66;14991:9;14972:97;:::i;:::-;15090:39;15120:8;15109:9;15090:39;:::i;:::-;15078:51;;15162:4;15158:9;15151:5;15147:21;15138:30;;15211:4;15201:8;15197:19;15190:5;15187:30;15177:40;;14906:317;;14830:393;;;;;:::o;15229:60::-;15257:3;15278:5;15271:12;;15229:60;;;:::o;15295:142::-;15345:9;15378:53;15396:34;15405:24;15423:5;15405:24;:::i;:::-;15396:34;:::i;:::-;15378:53;:::i;:::-;15365:66;;15295:142;;;:::o;15443:75::-;15486:3;15507:5;15500:12;;15443:75;;;:::o;15524:269::-;15634:39;15665:7;15634:39;:::i;:::-;15695:91;15744:41;15768:16;15744:41;:::i;:::-;15736:6;15729:4;15723:11;15695:91;:::i;:::-;15689:4;15682:105;15600:193;15524:269;;;:::o;15799:73::-;15844:3;15799:73;:::o;15878:189::-;15955:32;;:::i;:::-;15996:65;16054:6;16046;16040:4;15996:65;:::i;:::-;15931:136;15878:189;;:::o;16073:186::-;16133:120;16150:3;16143:5;16140:14;16133:120;;;16204:39;16241:1;16234:5;16204:39;:::i;:::-;16177:1;16170:5;16166:13;16157:22;;16133:120;;;16073:186;;:::o;16265:543::-;16366:2;16361:3;16358:11;16355:446;;;16400:38;16432:5;16400:38;:::i;:::-;16484:29;16502:10;16484:29;:::i;:::-;16474:8;16470:44;16667:2;16655:10;16652:18;16649:49;;;16688:8;16673:23;;16649:49;16711:80;16767:22;16785:3;16767:22;:::i;:::-;16757:8;16753:37;16740:11;16711:80;:::i;:::-;16370:431;;16355:446;16265:543;;;:::o;16814:117::-;16868:8;16918:5;16912:4;16908:16;16887:37;;16814:117;;;;:::o;16937:169::-;16981:6;17014:51;17062:1;17058:6;17050:5;17047:1;17043:13;17014:51;:::i;:::-;17010:56;17095:4;17089;17085:15;17075:25;;16988:118;16937:169;;;;:::o;17111:295::-;17187:4;17333:29;17358:3;17352:4;17333:29;:::i;:::-;17325:37;;17395:3;17392:1;17388:11;17382:4;17379:21;17371:29;;17111:295;;;;:::o;17411:1403::-;17535:44;17575:3;17570;17535:44;:::i;:::-;17644:18;17636:6;17633:30;17630:56;;;17666:18;;:::i;:::-;17630:56;17710:38;17742:4;17736:11;17710:38;:::i;:::-;17795:67;17855:6;17847;17841:4;17795:67;:::i;:::-;17889:1;17918:2;17910:6;17907:14;17935:1;17930:632;;;;18606:1;18623:6;18620:84;;;18679:9;18674:3;18670:19;18657:33;18648:42;;18620:84;18730:67;18790:6;18783:5;18730:67;:::i;:::-;18724:4;18717:81;18579:229;17900:908;;17930:632;17982:4;17978:9;17970:6;17966:22;18016:37;18048:4;18016:37;:::i;:::-;18075:1;18089:215;18103:7;18100:1;18097:14;18089:215;;;18189:9;18184:3;18180:19;18167:33;18159:6;18152:49;18240:1;18232:6;18228:14;18218:24;;18287:2;18276:9;18272:18;18259:31;;18126:4;18123:1;18119:12;18114:17;;18089:215;;;18332:6;18323:7;18320:19;18317:186;;;18397:9;18392:3;18388:19;18375:33;18440:48;18482:4;18474:6;18470:17;18459:9;18440:48;:::i;:::-;18432:6;18425:64;18340:163;18317:186;18549:1;18545;18537:6;18533:14;18529:22;18523:4;18516:36;17937:625;;;17900:908;;17510:1304;;;17411:1403;;;:::o;18820:180::-;18868:77;18865:1;18858:88;18965:4;18962:1;18955:15;18989:4;18986:1;18979:15;19006:191;19046:3;19065:20;19083:1;19065:20;:::i;:::-;19060:25;;19099:20;19117:1;19099:20;:::i;:::-;19094:25;;19142:1;19139;19135:9;19128:16;;19163:3;19160:1;19157:10;19154:36;;;19170:18;;:::i;:::-;19154:36;19006:191;;;;:::o;19203:410::-;19243:7;19266:20;19284:1;19266:20;:::i;:::-;19261:25;;19300:20;19318:1;19300:20;:::i;:::-;19295:25;;19355:1;19352;19348:9;19377:30;19395:11;19377:30;:::i;:::-;19366:41;;19556:1;19547:7;19543:15;19540:1;19537:22;19517:1;19510:9;19490:83;19467:139;;19586:18;;:::i;:::-;19467:139;19251:362;19203:410;;;;:::o;19619:148::-;19721:11;19758:3;19743:18;;19619:148;;;;:::o;19797:874::-;19900:3;19937:5;19931:12;19966:36;19992:9;19966:36;:::i;:::-;20018:89;20100:6;20095:3;20018:89;:::i;:::-;20011:96;;20138:1;20127:9;20123:17;20154:1;20149:166;;;;20329:1;20324:341;;;;20116:549;;20149:166;20233:4;20229:9;20218;20214:25;20209:3;20202:38;20295:6;20288:14;20281:22;20273:6;20269:35;20264:3;20260:45;20253:52;;20149:166;;20324:341;20391:38;20423:5;20391:38;:::i;:::-;20451:1;20465:154;20479:6;20476:1;20473:13;20465:154;;;20553:7;20547:14;20543:1;20538:3;20534:11;20527:35;20603:1;20594:7;20590:15;20579:26;;20501:4;20498:1;20494:12;20489:17;;20465:154;;;20648:6;20643:3;20639:16;20632:23;;20331:334;;20116:549;;19904:767;;19797:874;;;;:::o;20677:390::-;20783:3;20811:39;20844:5;20811:39;:::i;:::-;20866:89;20948:6;20943:3;20866:89;:::i;:::-;20859:96;;20964:65;21022:6;21017:3;21010:4;21003:5;20999:16;20964:65;:::i;:::-;21054:6;21049:3;21045:16;21038:23;;20787:280;20677:390;;;;:::o;21073:155::-;21213:7;21209:1;21201:6;21197:14;21190:31;21073:155;:::o;21234:400::-;21394:3;21415:84;21497:1;21492:3;21415:84;:::i;:::-;21408:91;;21508:93;21597:3;21508:93;:::i;:::-;21626:1;21621:3;21617:11;21610:18;;21234:400;;;:::o;21640:695::-;21918:3;21940:92;22028:3;22019:6;21940:92;:::i;:::-;21933:99;;22049:95;22140:3;22131:6;22049:95;:::i;:::-;22042:102;;22161:148;22305:3;22161:148;:::i;:::-;22154:155;;22326:3;22319:10;;21640:695;;;;;:::o;22341:225::-;22481:34;22477:1;22469:6;22465:14;22458:58;22550:8;22545:2;22537:6;22533:15;22526:33;22341:225;:::o;22572:366::-;22714:3;22735:67;22799:2;22794:3;22735:67;:::i;:::-;22728:74;;22811:93;22900:3;22811:93;:::i;:::-;22929:2;22924:3;22920:12;22913:19;;22572:366;;;:::o;22944:419::-;23110:4;23148:2;23137:9;23133:18;23125:26;;23197:9;23191:4;23187:20;23183:1;23172:9;23168:17;23161:47;23225:131;23351:4;23225:131;:::i;:::-;23217:139;;22944:419;;;:::o;23369:182::-;23509:34;23505:1;23497:6;23493:14;23486:58;23369:182;:::o;23557:366::-;23699:3;23720:67;23784:2;23779:3;23720:67;:::i;:::-;23713:74;;23796:93;23885:3;23796:93;:::i;:::-;23914:2;23909:3;23905:12;23898:19;;23557:366;;;:::o;23929:419::-;24095:4;24133:2;24122:9;24118:18;24110:26;;24182:9;24176:4;24172:20;24168:1;24157:9;24153:17;24146:47;24210:131;24336:4;24210:131;:::i;:::-;24202:139;;23929:419;;;:::o;24354:98::-;24405:6;24439:5;24433:12;24423:22;;24354:98;;;:::o;24458:168::-;24541:11;24575:6;24570:3;24563:19;24615:4;24610:3;24606:14;24591:29;;24458:168;;;;:::o;24632:373::-;24718:3;24746:38;24778:5;24746:38;:::i;:::-;24800:70;24863:6;24858:3;24800:70;:::i;:::-;24793:77;;24879:65;24937:6;24932:3;24925:4;24918:5;24914:16;24879:65;:::i;:::-;24969:29;24991:6;24969:29;:::i;:::-;24964:3;24960:39;24953:46;;24722:283;24632:373;;;;:::o;25011:640::-;25206:4;25244:3;25233:9;25229:19;25221:27;;25258:71;25326:1;25315:9;25311:17;25302:6;25258:71;:::i;:::-;25339:72;25407:2;25396:9;25392:18;25383:6;25339:72;:::i;:::-;25421;25489:2;25478:9;25474:18;25465:6;25421:72;:::i;:::-;25540:9;25534:4;25530:20;25525:2;25514:9;25510:18;25503:48;25568:76;25639:4;25630:6;25568:76;:::i;:::-;25560:84;;25011:640;;;;;;;:::o;25657:141::-;25713:5;25744:6;25738:13;25729:22;;25760:32;25786:5;25760:32;:::i;:::-;25657:141;;;;:::o;25804:349::-;25873:6;25922:2;25910:9;25901:7;25897:23;25893:32;25890:119;;;25928:79;;:::i;:::-;25890:119;26048:1;26073:63;26128:7;26119:6;26108:9;26104:22;26073:63;:::i;:::-;26063:73;;26019:127;25804:349;;;;:::o

Swarm Source

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