ETH Price: $2,668.82 (+1.03%)

Token

bapeznft (BAPEZ)
 

Overview

Max Total Supply

133 BAPEZ

Holders

59

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BAPEZ
0xc528403Cbb2986a100420d2D44dEA78839E6f4be
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:
Bapez

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-28
*/

// File: contracts/IMeta.sol

//SPDX-License-Identifier: MIT
/*
#&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
#&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
#&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&--&------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&&&&--------------------------&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&--------------------------------&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&-------------------------------------------&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&-----------------------------------------------&&&&&&&&&&&
(&&&&&&&&&&&&&&&-----------------------------------------------------&&&&&&&&&&&
(&&&&&&&&&&&&--------------------------------------------------------&&&&&&&&&&&
(&&&&&&&&&&&&&&-----------------------------------------------------&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&------------------------------------------------&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&-------------------------------------------------&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&------------------------------------------------&&&&&&&&&&&&&&
(%%%%%%%%%%%%%%%%%------------------------------------------------%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%---------------------------------------------%%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%%-------------------------------------------%%%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%%%%---------------------------------------%%%%%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%%%%%%%%-------------------------------%%%%%%%%%%%%%%%%%%%%%%
(%%%%%%%%%%%%-----%%%%%%%%%%%%%%%-----------------------%%%%%%%%%%%%%%%%%%%%%%%%
(%%%%%%%----------------%%%%%%%%-------------------------%%%%%%%%%%%%%%%%%%%%%%%
(%%%%&------%%%%%%%--------%%%%--------------------------%%%%%%%%%%%%%%%%%%%%%%%
(%%%-----&%%%%%%%%%%%%%-----%%---------------------------%%%%%%%%%%%%%%%%%%%%%%%
/%%%-----%%%%%%%%%%%%%%%%---------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%-----%%---%%%%%%%%%%%%--------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%%----------%%%%%%%%%%%--------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%------%%%%%%%%%%%---------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%%%%%%%%%%%%%%%%%%----------------------------------%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%%%%%%%%%%%%%%%% @creator: BapezNFT %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%%%%%%%%%%%%%%% @author: debugger, twitter.com/debuggerguy %%%%%%%%%%%%%%
*/
pragma solidity ^0.8.0;

interface IMeta 
{
    function getMetadata(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.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/security/Pausable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/Bapez.sol


/*
#&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
#&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
#&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&--&------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&&&&--------------------------&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&--------------------------------&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&-------------------------------------------&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&-----------------------------------------------&&&&&&&&&&&
(&&&&&&&&&&&&&&&-----------------------------------------------------&&&&&&&&&&&
(&&&&&&&&&&&&--------------------------------------------------------&&&&&&&&&&&
(&&&&&&&&&&&&&&-----------------------------------------------------&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&------------------------------------------------&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&-------------------------------------------------&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&------------------------------------------------&&&&&&&&&&&&&&
(%%%%%%%%%%%%%%%%%------------------------------------------------%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%---------------------------------------------%%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%%-------------------------------------------%%%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%%%%---------------------------------------%%%%%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%%%%%%%%-------------------------------%%%%%%%%%%%%%%%%%%%%%%
(%%%%%%%%%%%%-----%%%%%%%%%%%%%%%-----------------------%%%%%%%%%%%%%%%%%%%%%%%%
(%%%%%%%----------------%%%%%%%%-------------------------%%%%%%%%%%%%%%%%%%%%%%%
(%%%%&------%%%%%%%--------%%%%--------------------------%%%%%%%%%%%%%%%%%%%%%%%
(%%%-----&%%%%%%%%%%%%%-----%%---------------------------%%%%%%%%%%%%%%%%%%%%%%%
/%%%-----%%%%%%%%%%%%%%%%---------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%-----%%---%%%%%%%%%%%%--------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%%----------%%%%%%%%%%%--------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%------%%%%%%%%%%%---------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%%%%%%%%%%%%%%%%%%----------------------------------%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%%%%%%%%%%%%%%%% @creator: BapezNFT %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%%%%%%%%%%%%%%% @author: debugger, twitter.com/debuggerguy %%%%%%%%%%%%%%
*/


pragma solidity ^0.8.0; 






contract Bapez is ERC721A, Ownable, Pausable 
{
       
    uint256 private constant TRIO_PRICE = 0.15 ether; //Price of 3 on presale
    uint256 private constant PRESALE_LIMIT = 3 ;

    uint256 public mintPrice = 0.055 ether;
    uint256 public totalColSize = 5555;
    uint256 private publicLimit = 5 ;

    bytes32 public bapezListMerkleRoot = 0x9bfbe7d1b76465602a0dd613a1349e376fcddd3e7031bfcc9f6e77278fdbc9b0;
    bytes32 public vibListMerkleRoot = 0xb72627c9af7cc26c6d5227e2ad9569d6055a386f9043c458e14ce0f19927a616;

    string private _baseTokenURI;
    
    bool public publicSaleActive;
    bool public bapezListSaleActive;
    bool public vibListSaleActive;

    mapping(address => uint256) public bapezMintList;
    mapping(address => uint256) public vibMintList;
    mapping(address => uint256) public publicMintList;

    address public mdProvider;

    constructor
    ( 
       string memory _name,
       string memory _symbol,
       address _mdProvider
    ) ERC721A(_name, _symbol) 
    {
        mdProvider = _mdProvider;
    }

    modifier callerIsUser() 
    {
        require(tx.origin == msg.sender, "Caller is contract");
        _;
    }

    modifier onlyPublicSaleActive() {
        require(publicSaleActive, "Public-Sale is not active");
        _;
    }

    modifier onlyBapezListSaleActive() {
        require(bapezListSaleActive, "BapezList-Sale is not active");
        _;
    }

    modifier onlyVibListSaleActive() {
        require(vibListSaleActive, "VibList-Sale is not active");
        _;
    }

    function setMdProvider(address _mdProvider) external onlyOwner {
        mdProvider = _mdProvider;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Token not existed");
        require( mdProvider != address(0),
            "Invalid metadata provider address"
        );

        return IMeta(mdProvider).getMetadata(_tokenId);
    }
    
    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function vibListMint(bytes32[] calldata _merkleProof, uint256 quantity)
        external
        payable
        onlyVibListSaleActive
        callerIsUser
        
    {
        require(vibMintList[msg.sender] + quantity <= PRESALE_LIMIT, "Up to 3 mints allowed");
        require(msg.value >= ( quantity == 3 ? TRIO_PRICE : mintPrice * quantity ), "Insufficient funds");
        require(totalSupply() + quantity <= totalColSize, "EXCEED_COL_SIZE");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, vibListMerkleRoot, leaf),
            "Merkle proof invalid"
        );

        vibMintList[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
        
    }

    function bapezListMint(bytes32[] calldata _merkleProof, uint256 quantity)
        external
        payable
        onlyBapezListSaleActive
        callerIsUser
        
    {
        require(bapezMintList[msg.sender] + quantity <= PRESALE_LIMIT, "Up to 3 mints allowed");
        require(msg.value >= (quantity == 3 ? TRIO_PRICE : mintPrice * quantity), "Insufficient funds");
        require(totalSupply() + quantity <= totalColSize, "EXCEED_COL_SIZE");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, bapezListMerkleRoot, leaf),
            "Merkle Proof Invalid"
        );

        bapezMintList[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function publicMint(uint256 quantity)
        external
        payable
        onlyPublicSaleActive
        callerIsUser
        
    {
        require(publicMintList[msg.sender] + quantity <= publicLimit, "Up to 5 mints allowed");
        require(msg.value >= mintPrice * quantity, "Insufficient funds");
        require(totalSupply() + quantity <= totalColSize, "EXCEED_COL_SIZE");

        publicMintList[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
        

    }
    
    //owner can mint just during public sale not to affect high prioritized levels.
    function ownerMint(uint256 quantity)
        external
        payable
        onlyPublicSaleActive
        onlyOwner
    {
        require(quantity > 0, "Invalid quantity");
        require(totalSupply() + quantity <= totalColSize, "EXCEED_COL_SIZE");

        _safeMint(msg.sender, quantity);
    }

    function toggleVibListSale() 
        external 
        onlyOwner {
        vibListSaleActive = !vibListSaleActive;
    }

    function toggleBapezListSale() 
        external 
        onlyOwner 
    {
        vibListSaleActive = false;
        bapezListSaleActive = !bapezListSaleActive;
    }

    function togglePublicSale() 
        external 
        onlyOwner 
    {
        vibListSaleActive = false;
        bapezListSaleActive = false;
        publicSaleActive = !publicSaleActive;
    }

    function setVibListMerkleRoot(bytes32 _vibListMerkleRoot) 
        external 
        onlyOwner {
        vibListMerkleRoot = _vibListMerkleRoot;
    }

    function setBapezListMerkleRoot(bytes32 _bapezListMerkleRoot)
        external
        onlyOwner
    {
        bapezListMerkleRoot = _bapezListMerkleRoot;
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }
    
    //stop transfer on pause
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 tokenId,
        uint256 quantity
    ) internal override(ERC721A) whenNotPaused {
        super._beforeTokenTransfers(from, to, tokenId, quantity);
    }

    function withdraw() 
        external 
        onlyOwner 
    {
        uint256 totalBalance = address(this).balance;

        address COMMUNITY_WALLET = 0x9f79De05F4f5f6520665402c633613DD2477CFfB;
        address FOUNDER = 0xf6a8B433B79334f9937bd1C57bD058a37Dc3Edf8;
        address ARTIST = 0xD55779fA12Ed38445CE5111C527b450AFE4DF32D;
        address TECH_LEAD = 0x18226CFfdA30ed33FD6CCD6A8CB9F6794Df48f63;
        address MARKETING_MANAGER = 0x4a5003Fa3491c8be0D44B26e3123caB569193B88;
        address COMMUNITY_MANAGER = 0xB25DD95a4Dc7a32ee551AB427d11cB23004AE183;
        address COMMUNICATIONS_MANAGER = 0x09E480E968F7e90e0Dd0bf2F6910A73134c969e2;
        
        payable(COMMUNITY_WALLET).transfer(
             ((totalBalance * 5000) / 10000)
        );
        payable(FOUNDER).transfer(
             ((totalBalance * 900) / 10000)
        );
        payable(ARTIST).transfer(
             ((totalBalance * 1300) / 10000)
        );
        payable(TECH_LEAD).transfer(
             ((totalBalance * 1100) / 10000)
        );
         payable(MARKETING_MANAGER).transfer(
              ((totalBalance * 1000) / 10000)
         );
        payable(COMMUNITY_MANAGER).transfer(
             ((totalBalance * 600) / 10000)
        );
        payable(COMMUNICATIONS_MANAGER).transfer(
             ((totalBalance * 100) / 10000)
        );
    }

    //this can be used only for reduction.
    function reduceSupply(uint256 _burnAmount) 
        external 
        onlyOwner 
    {
        require(_burnAmount > 0 ,"Just for reduction");
        require(totalSupply() < totalColSize ,"Too late" );
        require(totalColSize - _burnAmount >= totalSupply() ,"Insufficient amount" );
        totalColSize -= _burnAmount;
    }

    //this can be used only for reduction during public-sale.
    function changeMintPrice(uint256 _mintPrice) 
        external 
        onlyPublicSaleActive
        onlyOwner 
    {
        require(_mintPrice >= 0 ,"Invalid price");
        require(_mintPrice < mintPrice ,"Just for reduction");
        mintPrice = _mintPrice;
    }
    
    function changePublicMintLimit(uint256 _newLimit) 
        external 
        onlyPublicSaleActive
        onlyOwner 
    {
        require(_newLimit > 0 ,"Invalid value");
        publicLimit = _newLimit;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_mdProvider","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bapezListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"bapezListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"bapezListSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bapezMintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"changePublicMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mdProvider","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnAmount","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_bapezListMerkleRoot","type":"bytes32"}],"name":"setBapezListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mdProvider","type":"address"}],"name":"setMdProvider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_vibListMerkleRoot","type":"bytes32"}],"name":"setVibListMerkleRoot","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":"toggleBapezListSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleVibListSale","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":"totalColSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vibListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"vibListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"vibListSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vibMintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266c3663566a580006009556115b3600a556005600b557f9bfbe7d1b76465602a0dd613a1349e376fcddd3e7031bfcc9f6e77278fdbc9b0600c557fb72627c9af7cc26c6d5227e2ad9569d6055a386f9043c458e14ce0f19927a616600d553480156200006f57600080fd5b5060405162002da538038062002da58339810160408190526200009291620002b9565b825183908390620000ab9060029060208501906200015c565b508051620000c19060039060208401906200015c565b5050600160005550620000d4336200010a565b6008805460ff60a01b19169055601380546001600160a01b0319166001600160a01b039290921691909117905550620003999050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016a9062000346565b90600052602060002090601f0160209004810192826200018e5760008555620001d9565b82601f10620001a957805160ff1916838001178555620001d9565b82800160010185558215620001d9579182015b82811115620001d9578251825591602001919060010190620001bc565b50620001e7929150620001eb565b5090565b5b80821115620001e75760008155600101620001ec565b600082601f8301126200021457600080fd5b81516001600160401b038082111562000231576200023162000383565b604051601f8301601f19908116603f011681019082821181831017156200025c576200025c62000383565b816040528381526020925086838588010111156200027957600080fd5b600091505b838210156200029d57858201830151818301840152908201906200027e565b83821115620002af5760008385830101525b9695505050505050565b600080600060608486031215620002cf57600080fd5b83516001600160401b0380821115620002e757600080fd5b620002f58783880162000202565b945060208601519150808211156200030c57600080fd5b506200031b8682870162000202565b604086015190935090506001600160a01b03811681146200033b57600080fd5b809150509250925092565b600181811c908216806200035b57607f821691505b602082108114156200037d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6129fc80620003a96000396000f3fe6080604052600436106102725760003560e01c806378c68e161161014f578063bdd65d34116100c1578063e222c7f91161007a578063e222c7f914610721578063e985e9c514610736578063eb2f001e1461077f578063f19e75d414610795578063f2fde38b146107a8578063f83b8330146107c857600080fd5b8063bdd65d341461065e578063c87b56dd1461068b578063d024d0ef146106ab578063d04c8611146106d8578063de14ecc9146106ee578063e21569f81461070e57600080fd5b806395d89b411161011357806395d89b41146105ba578063a22cb465146105cf578063ae622d22146105ef578063b88d4fde14610604578063bc8893b414610624578063bd0689bb1461063e57600080fd5b806378c68e16146105315780637bb232ad1461055157806380623444146105675780638456cb59146105875780638da5cb5b1461059c57600080fd5b80633f4ba83a116101e85780635c975abb116101ac5780635c975abb14610487578063622aea6c146104a65780636352211e146104c65780636817c76c146104e657806370a08231146104fc578063715018a61461051c57600080fd5b80633f4ba83a146103f25780633fd173661461040757806342842e0e146104275780634601b3cf1461044757806352148e731461046757600080fd5b80631b26dc521161023a5780631b26dc521461034b57806323b872dd1461035e5780632db115441461037e5780633781fc2214610391578063386e10b0146103be5780633ccfd60b146103dd57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806318160ddd14610328575b600080fd5b34801561028357600080fd5b50610297610292366004612609565b6107dd565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c161082f565b6040516102a39190612723565b3480156102da57600080fd5b506102ee6102e93660046125f0565b6108c1565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061032661032136600461254b565b610905565b005b34801561033457600080fd5b5061033d610993565b6040519081526020016102a3565b610326610359366004612575565b6109a1565b34801561036a57600080fd5b50610326610379366004612428565b610bea565b61032661038c3660046125f0565b610bf5565b34801561039d57600080fd5b5061033d6103ac3660046123d3565b60106020526000908152604090205481565b3480156103ca57600080fd5b50600f5461029790610100900460ff1681565b3480156103e957600080fd5b50610326610d2d565b3480156103fe57600080fd5b50610326611014565b34801561041357600080fd5b506103266104223660046125f0565b611048565b34801561043357600080fd5b50610326610442366004612428565b6110df565b34801561045357600080fd5b506103266104623660046125f0565b6110fa565b34801561047357600080fd5b506103266104823660046123d3565b611129565b34801561049357600080fd5b50600854600160a01b900460ff16610297565b3480156104b257600080fd5b50600f546102979062010000900460ff1681565b3480156104d257600080fd5b506102ee6104e13660046125f0565b611175565b3480156104f257600080fd5b5061033d60095481565b34801561050857600080fd5b5061033d6105173660046123d3565b611187565b34801561052857600080fd5b506103266111d6565b34801561053d57600080fd5b506013546102ee906001600160a01b031681565b34801561055d57600080fd5b5061033d600a5481565b34801561057357600080fd5b506103266105823660046125f0565b61120a565b34801561059357600080fd5b50610326611330565b3480156105a857600080fd5b506008546001600160a01b03166102ee565b3480156105c657600080fd5b506102c1611362565b3480156105db57600080fd5b506103266105ea36600461250f565b611371565b3480156105fb57600080fd5b50610326611407565b34801561061057600080fd5b5061032661061f366004612464565b611454565b34801561063057600080fd5b50600f546102979060ff1681565b34801561064a57600080fd5b506103266106593660046125f0565b61149f565b34801561066a57600080fd5b5061033d6106793660046123d3565b60126020526000908152604090205481565b34801561069757600080fd5b506102c16106a63660046125f0565b611530565b3480156106b757600080fd5b5061033d6106c63660046123d3565b60116020526000908152604090205481565b3480156106e457600080fd5b5061033d600c5481565b3480156106fa57600080fd5b506103266107093660046125f0565b61165d565b61032661071c366004612575565b61168c565b34801561072d57600080fd5b506103266118bb565b34801561074257600080fd5b506102976107513660046123f5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078b57600080fd5b5061033d600d5481565b6103266107a33660046125f0565b6118fb565b3480156107b457600080fd5b506103266107c33660046123d3565b6119c8565b3480156107d457600080fd5b50610326611a60565b60006001600160e01b031982166380ac58cd60e01b148061080e57506001600160e01b03198216635b5e139f60e01b145b8061082957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461083e90612918565b80601f016020809104026020016040519081016040528092919081815260200182805461086a90612918565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b5050505050905090565b60006108cc82611aa9565b6108e9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061091082611175565b9050806001600160a01b0316836001600160a01b031614156109455760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096557506109638133610751565b155b15610983576040516367d9dca160e11b815260040160405180910390fd5b61098e838383611ae2565b505050565b600154600054036000190190565b600f54610100900460ff166109fd5760405162461bcd60e51b815260206004820152601c60248201527f426170657a4c6973742d53616c65206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b323314610a1c5760405162461bcd60e51b81526004016109f4906127f7565b33600090815260106020526040902054600390610a3a90839061287c565b1115610a805760405162461bcd60e51b8152602060048201526015602482015274155c081d1bc80cc81b5a5b9d1cc8185b1b1bddd959605a1b60448201526064016109f4565b80600314610a9b5780600954610a9691906128b6565b610aa5565b670214e8348c4f00005b341015610ac45760405162461bcd60e51b81526004016109f490612796565b600a5481610ad0610993565b610ada919061287c565b1115610af85760405162461bcd60e51b81526004016109f49061276d565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b7284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611b3e565b610bb55760405162461bcd60e51b815260206004820152601460248201527313595c9adb1948141c9bdbd988125b9d985b1a5960621b60448201526064016109f4565b3360009081526010602052604081208054849290610bd490849061287c565b90915550610be490503383611b54565b50505050565b61098e838383611b72565b600f5460ff16610c175760405162461bcd60e51b81526004016109f490612736565b323314610c365760405162461bcd60e51b81526004016109f4906127f7565b600b5433600090815260126020526040902054610c5490839061287c565b1115610c9a5760405162461bcd60e51b8152602060048201526015602482015274155c081d1bc80d481b5a5b9d1cc8185b1b1bddd959605a1b60448201526064016109f4565b80600954610ca891906128b6565b341015610cc75760405162461bcd60e51b81526004016109f490612796565b600a5481610cd3610993565b610cdd919061287c565b1115610cfb5760405162461bcd60e51b81526004016109f49061276d565b3360009081526012602052604081208054839290610d1a90849061287c565b90915550610d2a90503382611b54565b50565b6008546001600160a01b03163314610d575760405162461bcd60e51b81526004016109f4906127c2565b47739f79de05f4f5f6520665402c633613dd2477cffb73f6a8b433b79334f9937bd1c57bd058a37dc3edf873d55779fa12ed38445ce5111c527b450afe4df32d7318226cffda30ed33fd6ccd6a8cb9f6794df48f63734a5003fa3491c8be0d44b26e3123cab569193b8873b25dd95a4dc7a32ee551ab427d11cb23004ae1837309e480e968f7e90e0dd0bf2f6910a73134c969e2866108fc612710610dfe8b6113886128b6565b610e089190612894565b6040518115909202916000818181858888f19350505050158015610e30573d6000803e3d6000fd5b506001600160a01b0386166108fc612710610e4d8b6103846128b6565b610e579190612894565b6040518115909202916000818181858888f19350505050158015610e7f573d6000803e3d6000fd5b506001600160a01b0385166108fc612710610e9c8b6105146128b6565b610ea69190612894565b6040518115909202916000818181858888f19350505050158015610ece573d6000803e3d6000fd5b506001600160a01b0384166108fc612710610eeb8b61044c6128b6565b610ef59190612894565b6040518115909202916000818181858888f19350505050158015610f1d573d6000803e3d6000fd5b506001600160a01b0383166108fc612710610f3a8b6103e86128b6565b610f449190612894565b6040518115909202916000818181858888f19350505050158015610f6c573d6000803e3d6000fd5b506001600160a01b0382166108fc612710610f898b6102586128b6565b610f939190612894565b6040518115909202916000818181858888f19350505050158015610fbb573d6000803e3d6000fd5b506001600160a01b0381166108fc612710610fd78b60646128b6565b610fe19190612894565b6040518115909202916000818181858888f19350505050158015611009573d6000803e3d6000fd5b505050505050505050565b6008546001600160a01b0316331461103e5760405162461bcd60e51b81526004016109f4906127c2565b611046611d6f565b565b600f5460ff1661106a5760405162461bcd60e51b81526004016109f490612736565b6008546001600160a01b031633146110945760405162461bcd60e51b81526004016109f4906127c2565b60095481106110da5760405162461bcd60e51b8152602060048201526012602482015271253ab9ba103337b9103932b23ab1ba34b7b760711b60448201526064016109f4565b600955565b61098e83838360405180602001604052806000815250611454565b6008546001600160a01b031633146111245760405162461bcd60e51b81526004016109f4906127c2565b600d55565b6008546001600160a01b031633146111535760405162461bcd60e51b81526004016109f4906127c2565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b600061118082611e0c565b5192915050565b60006001600160a01b0382166111b0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146112005760405162461bcd60e51b81526004016109f4906127c2565b6110466000611f35565b6008546001600160a01b031633146112345760405162461bcd60e51b81526004016109f4906127c2565b600081116112795760405162461bcd60e51b8152602060048201526012602482015271253ab9ba103337b9103932b23ab1ba34b7b760711b60448201526064016109f4565b600a54611284610993565b106112bc5760405162461bcd60e51b8152602060048201526008602482015267546f6f206c61746560c01b60448201526064016109f4565b6112c4610993565b81600a546112d291906128d5565b10156113165760405162461bcd60e51b8152602060048201526013602482015272125b9cdd59999a58da595b9d08185b5bdd5b9d606a1b60448201526064016109f4565b80600a600082825461132891906128d5565b909155505050565b6008546001600160a01b0316331461135a5760405162461bcd60e51b81526004016109f4906127c2565b611046611f87565b60606003805461083e90612918565b6001600160a01b03821633141561139b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114315760405162461bcd60e51b81526004016109f4906127c2565b600f805461010062ff000019821681900460ff16150262ffff0019909116179055565b61145f848484611b72565b6001600160a01b0383163b15158015611481575061147f8484848461200f565b155b15610be4576040516368d2bf6b60e11b815260040160405180910390fd5b600f5460ff166114c15760405162461bcd60e51b81526004016109f490612736565b6008546001600160a01b031633146114eb5760405162461bcd60e51b81526004016109f4906127c2565b6000811161152b5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b60448201526064016109f4565b600b55565b606061153b82611aa9565b61157b5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b881b9bdd08195e1a5cdd1959607a1b60448201526064016109f4565b6013546001600160a01b03166115dd5760405162461bcd60e51b815260206004820152602160248201527f496e76616c6964206d657461646174612070726f7669646572206164647265736044820152607360f81b60648201526084016109f4565b60135460405163295d33a960e21b8152600481018490526001600160a01b039091169063a574cea49060240160006040518083038186803b15801561162157600080fd5b505afa158015611635573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108299190810190612643565b6008546001600160a01b031633146116875760405162461bcd60e51b81526004016109f4906127c2565b600c55565b600f5462010000900460ff166116e45760405162461bcd60e51b815260206004820152601a60248201527f5669624c6973742d53616c65206973206e6f742061637469766500000000000060448201526064016109f4565b3233146117035760405162461bcd60e51b81526004016109f4906127f7565b3360009081526011602052604090205460039061172190839061287c565b11156117675760405162461bcd60e51b8152602060048201526015602482015274155c081d1bc80cc81b5a5b9d1cc8185b1b1bddd959605a1b60448201526064016109f4565b80600314611782578060095461177d91906128b6565b61178c565b670214e8348c4f00005b3410156117ab5760405162461bcd60e51b81526004016109f490612796565b600a54816117b7610993565b6117c1919061287c565b11156117df5760405162461bcd60e51b81526004016109f49061276d565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061185984848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611b3e565b61189c5760405162461bcd60e51b815260206004820152601460248201527313595c9adb19481c1c9bdbd9881a5b9d985b1a5960621b60448201526064016109f4565b3360009081526011602052604081208054849290610bd490849061287c565b6008546001600160a01b031633146118e55760405162461bcd60e51b81526004016109f4906127c2565b600f805462ffffff19811660ff90911615179055565b600f5460ff1661191d5760405162461bcd60e51b81526004016109f490612736565b6008546001600160a01b031633146119475760405162461bcd60e51b81526004016109f4906127c2565b6000811161198a5760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b60448201526064016109f4565b600a5481611996610993565b6119a0919061287c565b11156119be5760405162461bcd60e51b81526004016109f49061276d565b610d2a3382611b54565b6008546001600160a01b031633146119f25760405162461bcd60e51b81526004016109f4906127c2565b6001600160a01b038116611a575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f4565b610d2a81611f35565b6008546001600160a01b03163314611a8a5760405162461bcd60e51b81526004016109f4906127c2565b600f805462ff0000198116620100009182900460ff1615909102179055565b600081600111158015611abd575060005482105b8015610829575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600082611b4b8584612106565b14949350505050565b611b6e82826040518060200160405280600081525061217a565b5050565b6000611b7d82611e0c565b9050836001600160a01b031681600001516001600160a01b031614611bb45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611bd25750611bd28533610751565b80611bed575033611be2846108c1565b6001600160a01b0316145b905080611c0d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611c3457604051633a954ecd60e21b815260040160405180910390fd5b611c418585856001612187565b611c4d60008487611ae2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611d23576000548214611d23578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600854600160a01b900460ff16611dbf5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109f4565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101919091528180600111158015611e3c575060005481105b15611f1c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611f1a5780516001600160a01b031615611eb0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611f15579392505050565b611eb0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff1615611fd45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109f4565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611def3390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906120449033908990889088906004016126e6565b602060405180830381600087803b15801561205e57600080fd5b505af192505050801561208e575060408051601f3d908101601f1916820190925261208b91810190612626565b60015b6120e9573d8080156120bc576040519150601f19603f3d011682016040523d82523d6000602084013e6120c1565b606091505b5080516120e1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081815b845181101561217257600085828151811061212857612128612984565b6020026020010151905080831161214e576000838152602082905260409020925061215f565b600081815260208490526040902092505b508061216a81612953565b91505061210b565b509392505050565b61098e83838360016121d9565b600854600160a01b900460ff16156121d45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109f4565b610be4565b6000546001600160a01b03851661220257604051622e076360e81b815260040160405180910390fd5b836122205760405163b562e8dd60e01b815260040160405180910390fd5b61222d6000868387612187565b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156122df57506001600160a01b0387163b15155b15612368575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612330600088848060010195508861200f565b61234d576040516368d2bf6b60e11b815260040160405180910390fd5b808214156122e557826000541461236357600080fd5b6123ae565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612369575b50600055611d68565b80356001600160a01b03811681146123ce57600080fd5b919050565b6000602082840312156123e557600080fd5b6123ee826123b7565b9392505050565b6000806040838503121561240857600080fd5b612411836123b7565b915061241f602084016123b7565b90509250929050565b60008060006060848603121561243d57600080fd5b612446846123b7565b9250612454602085016123b7565b9150604084013590509250925092565b6000806000806080858703121561247a57600080fd5b612483856123b7565b9350612491602086016123b7565b925060408501359150606085013567ffffffffffffffff8111156124b457600080fd5b8501601f810187136124c557600080fd5b80356124d86124d382612854565b612823565b8181528860208385010111156124ed57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b6000806040838503121561252257600080fd5b61252b836123b7565b91506020830135801515811461254057600080fd5b809150509250929050565b6000806040838503121561255e57600080fd5b612567836123b7565b946020939093013593505050565b60008060006040848603121561258a57600080fd5b833567ffffffffffffffff808211156125a257600080fd5b818601915086601f8301126125b657600080fd5b8135818111156125c557600080fd5b8760208260051b85010111156125da57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561260257600080fd5b5035919050565b60006020828403121561261b57600080fd5b81356123ee816129b0565b60006020828403121561263857600080fd5b81516123ee816129b0565b60006020828403121561265557600080fd5b815167ffffffffffffffff81111561266c57600080fd5b8201601f8101841361267d57600080fd5b805161268b6124d382612854565b8181528560208385010111156126a057600080fd5b6126b18260208301602086016128ec565b95945050505050565b600081518084526126d28160208601602086016128ec565b601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612719908301846126ba565b9695505050505050565b6020815260006123ee60208301846126ba565b60208082526019908201527f5075626c69632d53616c65206973206e6f742061637469766500000000000000604082015260600190565b6020808252600f908201526e4558434545445f434f4c5f53495a4560881b604082015260600190565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110d85b1b195c881a5cc818dbdb9d1c9858dd60721b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561284c5761284c61299a565b604052919050565b600067ffffffffffffffff82111561286e5761286e61299a565b50601f01601f191660200190565b6000821982111561288f5761288f61296e565b500190565b6000826128b157634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156128d0576128d061296e565b500290565b6000828210156128e7576128e761296e565b500390565b60005b838110156129075781810151838201526020016128ef565b83811115610be45750506000910152565b600181811c9082168061292c57607f821691505b6020821081141561294d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129675761296761296e565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d2a57600080fdfea2646970667358221220be4e8d7f3e362e9399911a2d5bdd13de766281bda4256d2bf761b405c9b18eee64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000f8f460aebcfa5d5ff07b0984e1a9eb9af5699eb30000000000000000000000000000000000000000000000000000000000000008626170657a6e66740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005424150455a000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c806378c68e161161014f578063bdd65d34116100c1578063e222c7f91161007a578063e222c7f914610721578063e985e9c514610736578063eb2f001e1461077f578063f19e75d414610795578063f2fde38b146107a8578063f83b8330146107c857600080fd5b8063bdd65d341461065e578063c87b56dd1461068b578063d024d0ef146106ab578063d04c8611146106d8578063de14ecc9146106ee578063e21569f81461070e57600080fd5b806395d89b411161011357806395d89b41146105ba578063a22cb465146105cf578063ae622d22146105ef578063b88d4fde14610604578063bc8893b414610624578063bd0689bb1461063e57600080fd5b806378c68e16146105315780637bb232ad1461055157806380623444146105675780638456cb59146105875780638da5cb5b1461059c57600080fd5b80633f4ba83a116101e85780635c975abb116101ac5780635c975abb14610487578063622aea6c146104a65780636352211e146104c65780636817c76c146104e657806370a08231146104fc578063715018a61461051c57600080fd5b80633f4ba83a146103f25780633fd173661461040757806342842e0e146104275780634601b3cf1461044757806352148e731461046757600080fd5b80631b26dc521161023a5780631b26dc521461034b57806323b872dd1461035e5780632db115441461037e5780633781fc2214610391578063386e10b0146103be5780633ccfd60b146103dd57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806318160ddd14610328575b600080fd5b34801561028357600080fd5b50610297610292366004612609565b6107dd565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c161082f565b6040516102a39190612723565b3480156102da57600080fd5b506102ee6102e93660046125f0565b6108c1565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061032661032136600461254b565b610905565b005b34801561033457600080fd5b5061033d610993565b6040519081526020016102a3565b610326610359366004612575565b6109a1565b34801561036a57600080fd5b50610326610379366004612428565b610bea565b61032661038c3660046125f0565b610bf5565b34801561039d57600080fd5b5061033d6103ac3660046123d3565b60106020526000908152604090205481565b3480156103ca57600080fd5b50600f5461029790610100900460ff1681565b3480156103e957600080fd5b50610326610d2d565b3480156103fe57600080fd5b50610326611014565b34801561041357600080fd5b506103266104223660046125f0565b611048565b34801561043357600080fd5b50610326610442366004612428565b6110df565b34801561045357600080fd5b506103266104623660046125f0565b6110fa565b34801561047357600080fd5b506103266104823660046123d3565b611129565b34801561049357600080fd5b50600854600160a01b900460ff16610297565b3480156104b257600080fd5b50600f546102979062010000900460ff1681565b3480156104d257600080fd5b506102ee6104e13660046125f0565b611175565b3480156104f257600080fd5b5061033d60095481565b34801561050857600080fd5b5061033d6105173660046123d3565b611187565b34801561052857600080fd5b506103266111d6565b34801561053d57600080fd5b506013546102ee906001600160a01b031681565b34801561055d57600080fd5b5061033d600a5481565b34801561057357600080fd5b506103266105823660046125f0565b61120a565b34801561059357600080fd5b50610326611330565b3480156105a857600080fd5b506008546001600160a01b03166102ee565b3480156105c657600080fd5b506102c1611362565b3480156105db57600080fd5b506103266105ea36600461250f565b611371565b3480156105fb57600080fd5b50610326611407565b34801561061057600080fd5b5061032661061f366004612464565b611454565b34801561063057600080fd5b50600f546102979060ff1681565b34801561064a57600080fd5b506103266106593660046125f0565b61149f565b34801561066a57600080fd5b5061033d6106793660046123d3565b60126020526000908152604090205481565b34801561069757600080fd5b506102c16106a63660046125f0565b611530565b3480156106b757600080fd5b5061033d6106c63660046123d3565b60116020526000908152604090205481565b3480156106e457600080fd5b5061033d600c5481565b3480156106fa57600080fd5b506103266107093660046125f0565b61165d565b61032661071c366004612575565b61168c565b34801561072d57600080fd5b506103266118bb565b34801561074257600080fd5b506102976107513660046123f5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078b57600080fd5b5061033d600d5481565b6103266107a33660046125f0565b6118fb565b3480156107b457600080fd5b506103266107c33660046123d3565b6119c8565b3480156107d457600080fd5b50610326611a60565b60006001600160e01b031982166380ac58cd60e01b148061080e57506001600160e01b03198216635b5e139f60e01b145b8061082957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461083e90612918565b80601f016020809104026020016040519081016040528092919081815260200182805461086a90612918565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b5050505050905090565b60006108cc82611aa9565b6108e9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061091082611175565b9050806001600160a01b0316836001600160a01b031614156109455760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096557506109638133610751565b155b15610983576040516367d9dca160e11b815260040160405180910390fd5b61098e838383611ae2565b505050565b600154600054036000190190565b600f54610100900460ff166109fd5760405162461bcd60e51b815260206004820152601c60248201527f426170657a4c6973742d53616c65206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b323314610a1c5760405162461bcd60e51b81526004016109f4906127f7565b33600090815260106020526040902054600390610a3a90839061287c565b1115610a805760405162461bcd60e51b8152602060048201526015602482015274155c081d1bc80cc81b5a5b9d1cc8185b1b1bddd959605a1b60448201526064016109f4565b80600314610a9b5780600954610a9691906128b6565b610aa5565b670214e8348c4f00005b341015610ac45760405162461bcd60e51b81526004016109f490612796565b600a5481610ad0610993565b610ada919061287c565b1115610af85760405162461bcd60e51b81526004016109f49061276d565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b7284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611b3e565b610bb55760405162461bcd60e51b815260206004820152601460248201527313595c9adb1948141c9bdbd988125b9d985b1a5960621b60448201526064016109f4565b3360009081526010602052604081208054849290610bd490849061287c565b90915550610be490503383611b54565b50505050565b61098e838383611b72565b600f5460ff16610c175760405162461bcd60e51b81526004016109f490612736565b323314610c365760405162461bcd60e51b81526004016109f4906127f7565b600b5433600090815260126020526040902054610c5490839061287c565b1115610c9a5760405162461bcd60e51b8152602060048201526015602482015274155c081d1bc80d481b5a5b9d1cc8185b1b1bddd959605a1b60448201526064016109f4565b80600954610ca891906128b6565b341015610cc75760405162461bcd60e51b81526004016109f490612796565b600a5481610cd3610993565b610cdd919061287c565b1115610cfb5760405162461bcd60e51b81526004016109f49061276d565b3360009081526012602052604081208054839290610d1a90849061287c565b90915550610d2a90503382611b54565b50565b6008546001600160a01b03163314610d575760405162461bcd60e51b81526004016109f4906127c2565b47739f79de05f4f5f6520665402c633613dd2477cffb73f6a8b433b79334f9937bd1c57bd058a37dc3edf873d55779fa12ed38445ce5111c527b450afe4df32d7318226cffda30ed33fd6ccd6a8cb9f6794df48f63734a5003fa3491c8be0d44b26e3123cab569193b8873b25dd95a4dc7a32ee551ab427d11cb23004ae1837309e480e968f7e90e0dd0bf2f6910a73134c969e2866108fc612710610dfe8b6113886128b6565b610e089190612894565b6040518115909202916000818181858888f19350505050158015610e30573d6000803e3d6000fd5b506001600160a01b0386166108fc612710610e4d8b6103846128b6565b610e579190612894565b6040518115909202916000818181858888f19350505050158015610e7f573d6000803e3d6000fd5b506001600160a01b0385166108fc612710610e9c8b6105146128b6565b610ea69190612894565b6040518115909202916000818181858888f19350505050158015610ece573d6000803e3d6000fd5b506001600160a01b0384166108fc612710610eeb8b61044c6128b6565b610ef59190612894565b6040518115909202916000818181858888f19350505050158015610f1d573d6000803e3d6000fd5b506001600160a01b0383166108fc612710610f3a8b6103e86128b6565b610f449190612894565b6040518115909202916000818181858888f19350505050158015610f6c573d6000803e3d6000fd5b506001600160a01b0382166108fc612710610f898b6102586128b6565b610f939190612894565b6040518115909202916000818181858888f19350505050158015610fbb573d6000803e3d6000fd5b506001600160a01b0381166108fc612710610fd78b60646128b6565b610fe19190612894565b6040518115909202916000818181858888f19350505050158015611009573d6000803e3d6000fd5b505050505050505050565b6008546001600160a01b0316331461103e5760405162461bcd60e51b81526004016109f4906127c2565b611046611d6f565b565b600f5460ff1661106a5760405162461bcd60e51b81526004016109f490612736565b6008546001600160a01b031633146110945760405162461bcd60e51b81526004016109f4906127c2565b60095481106110da5760405162461bcd60e51b8152602060048201526012602482015271253ab9ba103337b9103932b23ab1ba34b7b760711b60448201526064016109f4565b600955565b61098e83838360405180602001604052806000815250611454565b6008546001600160a01b031633146111245760405162461bcd60e51b81526004016109f4906127c2565b600d55565b6008546001600160a01b031633146111535760405162461bcd60e51b81526004016109f4906127c2565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b600061118082611e0c565b5192915050565b60006001600160a01b0382166111b0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146112005760405162461bcd60e51b81526004016109f4906127c2565b6110466000611f35565b6008546001600160a01b031633146112345760405162461bcd60e51b81526004016109f4906127c2565b600081116112795760405162461bcd60e51b8152602060048201526012602482015271253ab9ba103337b9103932b23ab1ba34b7b760711b60448201526064016109f4565b600a54611284610993565b106112bc5760405162461bcd60e51b8152602060048201526008602482015267546f6f206c61746560c01b60448201526064016109f4565b6112c4610993565b81600a546112d291906128d5565b10156113165760405162461bcd60e51b8152602060048201526013602482015272125b9cdd59999a58da595b9d08185b5bdd5b9d606a1b60448201526064016109f4565b80600a600082825461132891906128d5565b909155505050565b6008546001600160a01b0316331461135a5760405162461bcd60e51b81526004016109f4906127c2565b611046611f87565b60606003805461083e90612918565b6001600160a01b03821633141561139b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114315760405162461bcd60e51b81526004016109f4906127c2565b600f805461010062ff000019821681900460ff16150262ffff0019909116179055565b61145f848484611b72565b6001600160a01b0383163b15158015611481575061147f8484848461200f565b155b15610be4576040516368d2bf6b60e11b815260040160405180910390fd5b600f5460ff166114c15760405162461bcd60e51b81526004016109f490612736565b6008546001600160a01b031633146114eb5760405162461bcd60e51b81526004016109f4906127c2565b6000811161152b5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b60448201526064016109f4565b600b55565b606061153b82611aa9565b61157b5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b881b9bdd08195e1a5cdd1959607a1b60448201526064016109f4565b6013546001600160a01b03166115dd5760405162461bcd60e51b815260206004820152602160248201527f496e76616c6964206d657461646174612070726f7669646572206164647265736044820152607360f81b60648201526084016109f4565b60135460405163295d33a960e21b8152600481018490526001600160a01b039091169063a574cea49060240160006040518083038186803b15801561162157600080fd5b505afa158015611635573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108299190810190612643565b6008546001600160a01b031633146116875760405162461bcd60e51b81526004016109f4906127c2565b600c55565b600f5462010000900460ff166116e45760405162461bcd60e51b815260206004820152601a60248201527f5669624c6973742d53616c65206973206e6f742061637469766500000000000060448201526064016109f4565b3233146117035760405162461bcd60e51b81526004016109f4906127f7565b3360009081526011602052604090205460039061172190839061287c565b11156117675760405162461bcd60e51b8152602060048201526015602482015274155c081d1bc80cc81b5a5b9d1cc8185b1b1bddd959605a1b60448201526064016109f4565b80600314611782578060095461177d91906128b6565b61178c565b670214e8348c4f00005b3410156117ab5760405162461bcd60e51b81526004016109f490612796565b600a54816117b7610993565b6117c1919061287c565b11156117df5760405162461bcd60e51b81526004016109f49061276d565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061185984848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611b3e565b61189c5760405162461bcd60e51b815260206004820152601460248201527313595c9adb19481c1c9bdbd9881a5b9d985b1a5960621b60448201526064016109f4565b3360009081526011602052604081208054849290610bd490849061287c565b6008546001600160a01b031633146118e55760405162461bcd60e51b81526004016109f4906127c2565b600f805462ffffff19811660ff90911615179055565b600f5460ff1661191d5760405162461bcd60e51b81526004016109f490612736565b6008546001600160a01b031633146119475760405162461bcd60e51b81526004016109f4906127c2565b6000811161198a5760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b60448201526064016109f4565b600a5481611996610993565b6119a0919061287c565b11156119be5760405162461bcd60e51b81526004016109f49061276d565b610d2a3382611b54565b6008546001600160a01b031633146119f25760405162461bcd60e51b81526004016109f4906127c2565b6001600160a01b038116611a575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f4565b610d2a81611f35565b6008546001600160a01b03163314611a8a5760405162461bcd60e51b81526004016109f4906127c2565b600f805462ff0000198116620100009182900460ff1615909102179055565b600081600111158015611abd575060005482105b8015610829575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600082611b4b8584612106565b14949350505050565b611b6e82826040518060200160405280600081525061217a565b5050565b6000611b7d82611e0c565b9050836001600160a01b031681600001516001600160a01b031614611bb45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611bd25750611bd28533610751565b80611bed575033611be2846108c1565b6001600160a01b0316145b905080611c0d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611c3457604051633a954ecd60e21b815260040160405180910390fd5b611c418585856001612187565b611c4d60008487611ae2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611d23576000548214611d23578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600854600160a01b900460ff16611dbf5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109f4565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101919091528180600111158015611e3c575060005481105b15611f1c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611f1a5780516001600160a01b031615611eb0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611f15579392505050565b611eb0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff1615611fd45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109f4565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611def3390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906120449033908990889088906004016126e6565b602060405180830381600087803b15801561205e57600080fd5b505af192505050801561208e575060408051601f3d908101601f1916820190925261208b91810190612626565b60015b6120e9573d8080156120bc576040519150601f19603f3d011682016040523d82523d6000602084013e6120c1565b606091505b5080516120e1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081815b845181101561217257600085828151811061212857612128612984565b6020026020010151905080831161214e576000838152602082905260409020925061215f565b600081815260208490526040902092505b508061216a81612953565b91505061210b565b509392505050565b61098e83838360016121d9565b600854600160a01b900460ff16156121d45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109f4565b610be4565b6000546001600160a01b03851661220257604051622e076360e81b815260040160405180910390fd5b836122205760405163b562e8dd60e01b815260040160405180910390fd5b61222d6000868387612187565b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156122df57506001600160a01b0387163b15155b15612368575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612330600088848060010195508861200f565b61234d576040516368d2bf6b60e11b815260040160405180910390fd5b808214156122e557826000541461236357600080fd5b6123ae565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612369575b50600055611d68565b80356001600160a01b03811681146123ce57600080fd5b919050565b6000602082840312156123e557600080fd5b6123ee826123b7565b9392505050565b6000806040838503121561240857600080fd5b612411836123b7565b915061241f602084016123b7565b90509250929050565b60008060006060848603121561243d57600080fd5b612446846123b7565b9250612454602085016123b7565b9150604084013590509250925092565b6000806000806080858703121561247a57600080fd5b612483856123b7565b9350612491602086016123b7565b925060408501359150606085013567ffffffffffffffff8111156124b457600080fd5b8501601f810187136124c557600080fd5b80356124d86124d382612854565b612823565b8181528860208385010111156124ed57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b6000806040838503121561252257600080fd5b61252b836123b7565b91506020830135801515811461254057600080fd5b809150509250929050565b6000806040838503121561255e57600080fd5b612567836123b7565b946020939093013593505050565b60008060006040848603121561258a57600080fd5b833567ffffffffffffffff808211156125a257600080fd5b818601915086601f8301126125b657600080fd5b8135818111156125c557600080fd5b8760208260051b85010111156125da57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561260257600080fd5b5035919050565b60006020828403121561261b57600080fd5b81356123ee816129b0565b60006020828403121561263857600080fd5b81516123ee816129b0565b60006020828403121561265557600080fd5b815167ffffffffffffffff81111561266c57600080fd5b8201601f8101841361267d57600080fd5b805161268b6124d382612854565b8181528560208385010111156126a057600080fd5b6126b18260208301602086016128ec565b95945050505050565b600081518084526126d28160208601602086016128ec565b601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612719908301846126ba565b9695505050505050565b6020815260006123ee60208301846126ba565b60208082526019908201527f5075626c69632d53616c65206973206e6f742061637469766500000000000000604082015260600190565b6020808252600f908201526e4558434545445f434f4c5f53495a4560881b604082015260600190565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110d85b1b195c881a5cc818dbdb9d1c9858dd60721b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561284c5761284c61299a565b604052919050565b600067ffffffffffffffff82111561286e5761286e61299a565b50601f01601f191660200190565b6000821982111561288f5761288f61296e565b500190565b6000826128b157634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156128d0576128d061296e565b500290565b6000828210156128e7576128e761296e565b500390565b60005b838110156129075781810151838201526020016128ef565b83811115610be45750506000910152565b600181811c9082168061292c57607f821691505b6020821081141561294d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129675761296761296e565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d2a57600080fdfea2646970667358221220be4e8d7f3e362e9399911a2d5bdd13de766281bda4256d2bf761b405c9b18eee64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000f8f460aebcfa5d5ff07b0984e1a9eb9af5699eb30000000000000000000000000000000000000000000000000000000000000008626170657a6e66740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005424150455a000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): bapeznft
Arg [1] : _symbol (string): BAPEZ
Arg [2] : _mdProvider (address): 0xF8F460AEBCfa5D5FF07b0984E1a9eB9AF5699eB3

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000f8f460aebcfa5d5ff07b0984e1a9eb9af5699eb3
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 626170657a6e6674000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 424150455a000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55131:8321:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34760:305;;;;;;;;;;-1:-1:-1;34760:305:0;;;;;:::i;:::-;;:::i;:::-;;;6055:14:1;;6048:22;6030:41;;6018:2;6003:18;34760:305:0;;;;;;;;37873:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39376:204::-;;;;;;;;;;-1:-1:-1;39376:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5353:32:1;;;5335:51;;5323:2;5308:18;39376:204:0;5189:203:1;38939:371:0;;;;;;;;;;-1:-1:-1;38939:371:0;;;;;:::i;:::-;;:::i;:::-;;34009:303;;;;;;;;;;;;;:::i;:::-;;;6228:25:1;;;6216:2;6201:18;34009:303:0;6082:177:1;58103:767:0;;;;;;:::i;:::-;;:::i;40241:170::-;;;;;;;;;;-1:-1:-1;40241:170:0;;;;;:::i;:::-;;:::i;58878:504::-;;;;;;:::i;:::-;;:::i;55824:48::-;;;;;;;;;;-1:-1:-1;55824:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;55748:31;;;;;;;;;;-1:-1:-1;55748:31:0;;;;;;;;;;;61094:1385;;;;;;;;;;;;;:::i;60726:67::-;;;;;;;;;;;;;:::i;62941:277::-;;;;;;;;;;-1:-1:-1;62941:277:0;;;;;:::i;:::-;;:::i;40482:185::-;;;;;;;;;;-1:-1:-1;40482:185:0;;;;;:::i;:::-;;:::i;60320:154::-;;;;;;;;;;-1:-1:-1;60320:154:0;;;;;:::i;:::-;;:::i;56730:106::-;;;;;;;;;;-1:-1:-1;56730:106:0;;;;;:::i;:::-;;:::i;9581:86::-;;;;;;;;;;-1:-1:-1;9652:7:0;;-1:-1:-1;;;9652:7:0;;;;9581:86;;55786:29;;;;;;;;;;-1:-1:-1;55786:29:0;;;;;;;;;;;37681:125;;;;;;;;;;-1:-1:-1;37681:125:0;;;;;:::i;:::-;;:::i;55325:38::-;;;;;;;;;;;;;;;;35129:206;;;;;;;;;;-1:-1:-1;35129:206:0;;;;;:::i;:::-;;:::i;12480:103::-;;;;;;;;;;;;;:::i;55990:25::-;;;;;;;;;;-1:-1:-1;55990:25:0;;;;-1:-1:-1;;;;;55990:25:0;;;55370:34;;;;;;;;;;;;;;;;62531:339;;;;;;;;;;-1:-1:-1;62531:339:0;;;;;:::i;:::-;;:::i;60655:63::-;;;;;;;;;;;;;:::i;11829:87::-;;;;;;;;;;-1:-1:-1;11902:6:0;;-1:-1:-1;;;;;11902:6:0;11829:87;;38042:104;;;;;;;;;;;;;:::i;39652:287::-;;;;;;;;;;-1:-1:-1;39652:287:0;;;;;:::i;:::-;;:::i;59929:173::-;;;;;;;;;;;;;:::i;40738:369::-;;;;;;;;;;-1:-1:-1;40738:369:0;;;;;:::i;:::-;;:::i;55713:28::-;;;;;;;;;;-1:-1:-1;55713:28:0;;;;;;;;63230:217;;;;;;;;;;-1:-1:-1;63230:217:0;;;;;:::i;:::-;;:::i;55932:49::-;;;;;;;;;;-1:-1:-1;55932:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;56844:369;;;;;;;;;;-1:-1:-1;56844:369:0;;;;;:::i;:::-;;:::i;55879:46::-;;;;;;;;;;-1:-1:-1;55879:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;55452:103;;;;;;;;;;;;;;;;60482:165;;;;;;;;;;-1:-1:-1;60482:165:0;;;;;:::i;:::-;;:::i;57326:769::-;;;;;;:::i;:::-;;:::i;60110:202::-;;;;;;;;;;;;;:::i;40010:164::-;;;;;;;;;;-1:-1:-1;40010:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;40131:25:0;;;40107:4;40131:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40010:164;55562:101;;;;;;;;;;;;;;;;59479:309;;;;;;:::i;:::-;;:::i;12738:201::-;;;;;;;;;;-1:-1:-1;12738:201:0;;;;;:::i;:::-;;:::i;59796:125::-;;;;;;;;;;;;;:::i;34760:305::-;34862:4;-1:-1:-1;;;;;;34899:40:0;;-1:-1:-1;;;34899:40:0;;:105;;-1:-1:-1;;;;;;;34956:48:0;;-1:-1:-1;;;34956:48:0;34899:105;:158;;;-1:-1:-1;;;;;;;;;;24745:40:0;;;35021:36;34879:178;34760:305;-1:-1:-1;;34760:305:0:o;37873:100::-;37927:13;37960:5;37953:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37873:100;:::o;39376:204::-;39444:7;39469:16;39477:7;39469;:16::i;:::-;39464:64;;39494:34;;-1:-1:-1;;;39494:34:0;;;;;;;;;;;39464:64;-1:-1:-1;39548:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39548:24:0;;39376:204::o;38939:371::-;39012:13;39028:24;39044:7;39028:15;:24::i;:::-;39012:40;;39073:5;-1:-1:-1;;;;;39067:11:0;:2;-1:-1:-1;;;;;39067:11:0;;39063:48;;;39087:24;;-1:-1:-1;;;39087:24:0;;;;;;;;;;;39063:48;8315:10;-1:-1:-1;;;;;39128:21:0;;;;;;:63;;-1:-1:-1;39154:37:0;39171:5;8315:10;40010:164;:::i;39154:37::-;39153:38;39128:63;39124:138;;;39215:35;;-1:-1:-1;;;39215:35:0;;;;;;;;;;;39124:138;39274:28;39283:2;39287:7;39296:5;39274:8;:28::i;:::-;39001:309;38939:371;;:::o;34009:303::-;57309:1;34263:12;34053:7;34247:13;:28;-1:-1:-1;;34247:46:0;;34009:303::o;58103:767::-;56522:19;;;;;;;56514:60;;;;-1:-1:-1;;;56514:60:0;;8493:2:1;56514:60:0;;;8475:21:1;8532:2;8512:18;;;8505:30;8571;8551:18;;;8544:58;8619:18;;56514:60:0;;;;;;;;;56269:9:::1;56282:10;56269:23;56261:54;;;;-1:-1:-1::0;;;56261:54:0::1;;;;;;;:::i;:::-;58315:10:::2;58301:25;::::0;;;:13:::2;:25;::::0;;;;;55314:1:::2;::::0;58301:36:::2;::::0;58329:8;;58301:36:::2;:::i;:::-;:53;;58293:87;;;::::0;-1:-1:-1;;;58293:87:0;;13067:2:1;58293:87:0::2;::::0;::::2;13049:21:1::0;13106:2;13086:18;;;13079:30;-1:-1:-1;;;13125:18:1;;;13118:51;13186:18;;58293:87:0::2;12865:345:1::0;58293:87:0::2;58413:8;58425:1;58413:13;:49;;58454:8;58442:9;;:20;;;;:::i;:::-;58413:49;;;55232:10;58413:49;58399:9;:64;;58391:95;;;;-1:-1:-1::0;;;58391:95:0::2;;;;;;;:::i;:::-;58533:12;;58521:8;58505:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;58497:68;;;;-1:-1:-1::0;;;58497:68:0::2;;;;;;;:::i;:::-;58601:28;::::0;-1:-1:-1;;58618:10:0::2;5104:2:1::0;5100:15;5096:53;58601:28:0::2;::::0;::::2;5084:66:1::0;58576:12:0::2;::::0;5166::1;;58601:28:0::2;;;;;;;;;;;;58591:39;;;;;;58576:54;;58663:59;58682:12;;58663:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;58696:19:0::2;::::0;;-1:-1:-1;58717:4:0;;-1:-1:-1;58663:18:0::2;:59::i;:::-;58641:129;;;::::0;-1:-1:-1;;;58641:129:0;;10569:2:1;58641:129:0::2;::::0;::::2;10551:21:1::0;10608:2;10588:18;;;10581:30;-1:-1:-1;;;10627:18:1;;;10620:50;10687:18;;58641:129:0::2;10367:344:1::0;58641:129:0::2;58797:10;58783:25;::::0;;;:13:::2;:25;::::0;;;;:37;;58812:8;;58783:25;:37:::2;::::0;58812:8;;58783:37:::2;:::i;:::-;::::0;;;-1:-1:-1;58831:31:0::2;::::0;-1:-1:-1;58841:10:0::2;58853:8:::0;58831:9:::2;:31::i;:::-;58282:588;58103:767:::0;;;:::o;40241:170::-;40375:28;40385:4;40391:2;40395:7;40375:9;:28::i;58878:504::-;56394:16;;;;56386:54;;;;-1:-1:-1;;;56386:54:0;;;;;;;:::i;:::-;56269:9:::1;56282:10;56269:23;56261:54;;;;-1:-1:-1::0;;;56261:54:0::1;;;;;;;:::i;:::-;59078:11:::2;::::0;59052:10:::2;59037:26;::::0;;;:14:::2;:26;::::0;;;;;:37:::2;::::0;59066:8;;59037:37:::2;:::i;:::-;:52;;59029:86;;;::::0;-1:-1:-1;;;59029:86:0;;11279:2:1;59029:86:0::2;::::0;::::2;11261:21:1::0;11318:2;11298:18;;;11291:30;-1:-1:-1;;;11337:18:1;;;11330:51;11398:18;;59029:86:0::2;11077:345:1::0;59029:86:0::2;59159:8;59147:9;;:20;;;;:::i;:::-;59134:9;:33;;59126:64;;;;-1:-1:-1::0;;;59126:64:0::2;;;;;;;:::i;:::-;59237:12;;59225:8;59209:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;59201:68;;;;-1:-1:-1::0;;;59201:68:0::2;;;;;;;:::i;:::-;59297:10;59282:26;::::0;;;:14:::2;:26;::::0;;;;:38;;59312:8;;59282:26;:38:::2;::::0;59312:8;;59282:38:::2;:::i;:::-;::::0;;;-1:-1:-1;59331:31:0::2;::::0;-1:-1:-1;59341:10:0::2;59353:8:::0;59331:9:::2;:31::i;:::-;58878:504:::0;:::o;61094:1385::-;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23;12041:68;;;;-1:-1:-1;;;12041:68:0;;;;;;;:::i;:::-;61193:21:::1;61254:42;61325;61395;61468;61549;61630;61716;61254::::0;61779:92:::1;61854:5;61831:19;61193:21:::0;61846:4:::1;61831:19;:::i;:::-;61830:29;;;;:::i;:::-;61779:92;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;;;61882:25:0;::::1;:82;61947:5;61925:18;:12:::0;61940:3:::1;61925:18;:::i;:::-;61924:28;;;;:::i;:::-;61882:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;;;61975:24:0;::::1;:82;62040:5;62017:19;:12:::0;62032:4:::1;62017:19;:::i;:::-;62016:29;;;;:::i;:::-;61975:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;;;62068:27:0;::::1;:85;62136:5;62113:19;:12:::0;62128:4:::1;62113:19;:::i;:::-;62112:29;;;;:::i;:::-;62068:85;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;;;62165:35:0;::::1;:95;62242:5;62219:19;:12:::0;62234:4:::1;62219:19;:::i;:::-;62218:29;;;;:::i;:::-;62165:95;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;;;62271:35:0;::::1;:92;62346:5;62324:18;:12:::0;62339:3:::1;62324:18;:::i;:::-;62323:28;;;;:::i;:::-;62271:92;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;;;62374:40:0;::::1;:97;62454:5;62432:18;:12:::0;62447:3:::1;62432:18;:::i;:::-;62431:28;;;;:::i;:::-;62374:97;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;61159:1320;;;;;;;;61094:1385::o:0;60726:67::-;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23;12041:68;;;;-1:-1:-1;;;12041:68:0;;;;;;;:::i;:::-;60775:10:::1;:8;:10::i;:::-;60726:67::o:0;62941:277::-;56394:16;;;;56386:54;;;;-1:-1:-1;;;56386:54:0;;;;;;;:::i;:::-;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23:::1;12041:68;;;;-1:-1:-1::0;;;12041:68:0::1;;;;;;;:::i;:::-;63145:9:::2;;63132:10;:22;63124:53;;;::::0;-1:-1:-1;;;63124:53:0;;12720:2:1;63124:53:0::2;::::0;::::2;12702:21:1::0;12759:2;12739:18;;;12732:30;-1:-1:-1;;;12778:18:1;;;12771:48;12836:18;;63124:53:0::2;12518:342:1::0;63124:53:0::2;63188:9;:22:::0;62941:277::o;40482:185::-;40620:39;40637:4;40643:2;40647:7;40620:39;;;;;;;;;;;;:16;:39::i;60320:154::-;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23;12041:68;;;;-1:-1:-1;;;12041:68:0;;;;;;;:::i;:::-;60428:17:::1;:38:::0;60320:154::o;56730:106::-;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23;12041:68;;;;-1:-1:-1;;;12041:68:0;;;;;;;:::i;:::-;56804:10:::1;:24:::0;;-1:-1:-1;;;;;;56804:24:0::1;-1:-1:-1::0;;;;;56804:24:0;;;::::1;::::0;;;::::1;::::0;;56730:106::o;37681:125::-;37745:7;37772:21;37785:7;37772:12;:21::i;:::-;:26;;37681:125;-1:-1:-1;;37681:125:0:o;35129:206::-;35193:7;-1:-1:-1;;;;;35217:19:0;;35213:60;;35245:28;;-1:-1:-1;;;35245:28:0;;;;;;;;;;;35213:60;-1:-1:-1;;;;;;35299:19:0;;;;;:12;:19;;;;;:27;;;;35129:206::o;12480:103::-;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23;12041:68;;;;-1:-1:-1;;;12041:68:0;;;;;;;:::i;:::-;12545:30:::1;12572:1;12545:18;:30::i;62531:339::-:0;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23;12041:68;;;;-1:-1:-1;;;12041:68:0;;;;;;;:::i;:::-;62652:1:::1;62638:11;:15;62630:46;;;::::0;-1:-1:-1;;;62630:46:0;;12720:2:1;62630:46:0::1;::::0;::::1;12702:21:1::0;12759:2;12739:18;;;12732:30;-1:-1:-1;;;12778:18:1;;;12771:48;12836:18;;62630:46:0::1;12518:342:1::0;62630:46:0::1;62711:12;;62695:13;:11;:13::i;:::-;:28;62687:50;;;::::0;-1:-1:-1;;;62687:50:0;;8850:2:1;62687:50:0::1;::::0;::::1;8832:21:1::0;8889:1;8869:18;;;8862:29;-1:-1:-1;;;8907:18:1;;;8900:38;8955:18;;62687:50:0::1;8648:331:1::0;62687:50:0::1;62786:13;:11;:13::i;:::-;62771:11;62756:12;;:26;;;;:::i;:::-;:43;;62748:76;;;::::0;-1:-1:-1;;;62748:76:0;;13417:2:1;62748:76:0::1;::::0;::::1;13399:21:1::0;13456:2;13436:18;;;13429:30;-1:-1:-1;;;13475:18:1;;;13468:49;13534:18;;62748:76:0::1;13215:343:1::0;62748:76:0::1;62851:11;62835:12;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;62531:339:0:o;60655:63::-;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23;12041:68;;;;-1:-1:-1;;;12041:68:0;;;;;;;:::i;:::-;60702:8:::1;:6;:8::i;38042:104::-:0;38098:13;38131:7;38124:14;;;;;:::i;39652:287::-;-1:-1:-1;;;;;39751:24:0;;8315:10;39751:24;39747:54;;;39784:17;;-1:-1:-1;;;39784:17:0;;;;;;;;;;;39747:54;8315:10;39814:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39814:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39814:53:0;;;;;;;;;;39883:48;;6030:41:1;;;39814:42:0;;8315:10;39883:48;;6003:18:1;39883:48:0;;;;;;;39652:287;;:::o;59929:173::-;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23;12041:68;;;;-1:-1:-1;;;12041:68:0;;;;;;;:::i;:::-;60016:17:::1;:25:::0;;::::1;-1:-1:-1::0;;60016:25:0;::::1;60075:19:::0;;::::1;60016:25;60075:19;60074:20;60052:42;-1:-1:-1::0;;60052:42:0;;;::::1;::::0;;59929:173::o;40738:369::-;40905:28;40915:4;40921:2;40925:7;40905:9;:28::i;:::-;-1:-1:-1;;;;;40948:13:0;;14825:19;:23;;40948:76;;;;;40968:56;40999:4;41005:2;41009:7;41018:5;40968:30;:56::i;:::-;40967:57;40948:76;40944:156;;;41048:40;;-1:-1:-1;;;41048:40:0;;;;;;;;;;;63230:217;56394:16;;;;56386:54;;;;-1:-1:-1;;;56386:54:0;;;;;;;:::i;:::-;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23:::1;12041:68;;;;-1:-1:-1::0;;;12041:68:0::1;;;;;;;:::i;:::-;63386:1:::2;63374:9;:13;63366:39;;;::::0;-1:-1:-1;;;63366:39:0;;12031:2:1;63366:39:0::2;::::0;::::2;12013:21:1::0;12070:2;12050:18;;;12043:30;-1:-1:-1;;;12089:18:1;;;12082:43;12142:18;;63366:39:0::2;11829:337:1::0;63366:39:0::2;63416:11;:23:::0;63230:217::o;56844:369::-;56963:13;57002:17;57010:8;57002:7;:17::i;:::-;56994:47;;;;-1:-1:-1;;;56994:47:0;;9878:2:1;56994:47:0;;;9860:21:1;9917:2;9897:18;;;9890:30;-1:-1:-1;;;9936:18:1;;;9929:47;9993:18;;56994:47:0;9676:341:1;56994:47:0;57061:10;;-1:-1:-1;;;;;57061:10:0;57052:94;;;;-1:-1:-1;;;57052:94:0;;11629:2:1;57052:94:0;;;11611:21:1;11668:2;11648:18;;;11641:30;11707:34;11687:18;;;11680:62;-1:-1:-1;;;11758:18:1;;;11751:31;11799:19;;57052:94:0;11427:397:1;57052:94:0;57172:10;;57166:39;;-1:-1:-1;;;57166:39:0;;;;;6228:25:1;;;-1:-1:-1;;;;;57172:10:0;;;;57166:29;;6201:18:1;;57166:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57166:39:0;;;;;;;;;;;;:::i;60482:165::-;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23;12041:68;;;;-1:-1:-1;;;12041:68:0;;;;;;;:::i;:::-;60597:19:::1;:42:::0;60482:165::o;57326:769::-;56654:17;;;;;;;56646:56;;;;-1:-1:-1;;;56646:56:0;;13765:2:1;56646:56:0;;;13747:21:1;13804:2;13784:18;;;13777:30;13843:28;13823:18;;;13816:56;13889:18;;56646:56:0;13563:350:1;56646:56:0;56269:9:::1;56282:10;56269:23;56261:54;;;;-1:-1:-1::0;;;56261:54:0::1;;;;;;;:::i;:::-;57532:10:::2;57520:23;::::0;;;:11:::2;:23;::::0;;;;;55314:1:::2;::::0;57520:34:::2;::::0;57546:8;;57520:34:::2;:::i;:::-;:51;;57512:85;;;::::0;-1:-1:-1;;;57512:85:0;;13067:2:1;57512:85:0::2;::::0;::::2;13049:21:1::0;13106:2;13086:18;;;13079:30;-1:-1:-1;;;13125:18:1;;;13118:51;13186:18;;57512:85:0::2;12865:345:1::0;57512:85:0::2;57631:8;57643:1;57631:13;:49;;57672:8;57660:9;;:20;;;;:::i;:::-;57631:49;;;55232:10;57631:49;57616:9;:66;;57608:97;;;;-1:-1:-1::0;;;57608:97:0::2;;;;;;;:::i;:::-;57752:12;;57740:8;57724:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;57716:68;;;;-1:-1:-1::0;;;57716:68:0::2;;;;;;;:::i;:::-;57820:28;::::0;-1:-1:-1;;57837:10:0::2;5104:2:1::0;5100:15;5096:53;57820:28:0::2;::::0;::::2;5084:66:1::0;57795:12:0::2;::::0;5166::1;;57820:28:0::2;;;;;;;;;;;;57810:39;;;;;;57795:54;;57882:57;57901:12;;57882:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;57915:17:0::2;::::0;;-1:-1:-1;57934:4:0;;-1:-1:-1;57882:18:0::2;:57::i;:::-;57860:127;;;::::0;-1:-1:-1;;;57860:127:0;;6690:2:1;57860:127:0::2;::::0;::::2;6672:21:1::0;6729:2;6709:18;;;6702:30;-1:-1:-1;;;6748:18:1;;;6741:50;6808:18;;57860:127:0::2;6488:344:1::0;57860:127:0::2;58012:10;58000:23;::::0;;;:11:::2;:23;::::0;;;;:35;;58027:8;;58000:23;:35:::2;::::0;58027:8;;58000:35:::2;:::i;60110:202::-:0;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23;12041:68;;;;-1:-1:-1;;;12041:68:0;;;;;;;:::i;:::-;60194:17:::1;:25:::0;;-1:-1:-1;;60268:36:0;;60194:25:::1;60288:16:::0;;;60287:17:::1;60268:36;::::0;;60110:202::o;59479:309::-;56394:16;;;;56386:54;;;;-1:-1:-1;;;56386:54:0;;;;;;;:::i;:::-;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23:::1;12041:68;;;;-1:-1:-1::0;;;12041:68:0::1;;;;;;;:::i;:::-;59635:1:::2;59624:8;:12;59616:41;;;::::0;-1:-1:-1;;;59616:41:0;;10224:2:1;59616:41:0::2;::::0;::::2;10206:21:1::0;10263:2;10243:18;;;10236:30;-1:-1:-1;;;10282:18:1;;;10275:46;10338:18;;59616:41:0::2;10022:340:1::0;59616:41:0::2;59704:12;;59692:8;59676:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;59668:68;;;;-1:-1:-1::0;;;59668:68:0::2;;;;;;;:::i;:::-;59749:31;59759:10;59771:8;59749:9;:31::i;12738:201::-:0;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23;12041:68;;;;-1:-1:-1;;;12041:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12827:22:0;::::1;12819:73;;;::::0;-1:-1:-1;;;12819:73:0;;8086:2:1;12819:73:0::1;::::0;::::1;8068:21:1::0;8125:2;8105:18;;;8098:30;8164:34;8144:18;;;8137:62;-1:-1:-1;;;8215:18:1;;;8208:36;8261:19;;12819:73:0::1;7884:402:1::0;12819:73:0::1;12903:28;12922:8;12903:18;:28::i;59796:125::-:0;11902:6;;-1:-1:-1;;;;;11902:6:0;8315:10;12049:23;12041:68;;;;-1:-1:-1;;;12041:68:0;;;;;;;:::i;:::-;59896:17:::1;::::0;;-1:-1:-1;;59875:38:0;::::1;59896:17:::0;;;;::::1;;;59895:18;59875:38:::0;;::::1;;::::0;;59796:125::o;41362:174::-;41419:4;41462:7;57309:1;41443:26;;:53;;;;;41483:13;;41473:7;:23;41443:53;:85;;;;-1:-1:-1;;41501:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;41501:27:0;;;;41500:28;;41362:174::o;49519:196::-;49634:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;49634:29:0;-1:-1:-1;;;;;49634:29:0;;;;;;;;;49679:28;;49634:24;;49679:28;;;;;;;49519:196;;;:::o;3967:190::-;4092:4;4145;4116:25;4129:5;4136:4;4116:12;:25::i;:::-;:33;;3967:190;-1:-1:-1;;;;3967:190:0:o;41544:104::-;41613:27;41623:2;41627:8;41613:27;;;;;;;;;;;;:9;:27::i;:::-;41544:104;;:::o;44462:2130::-;44577:35;44615:21;44628:7;44615:12;:21::i;:::-;44577:59;;44675:4;-1:-1:-1;;;;;44653:26:0;:13;:18;;;-1:-1:-1;;;;;44653:26:0;;44649:67;;44688:28;;-1:-1:-1;;;44688:28:0;;;;;;;;;;;44649:67;44729:22;8315:10;-1:-1:-1;;;;;44755:20:0;;;;:73;;-1:-1:-1;44792:36:0;44809:4;8315:10;40010:164;:::i;44792:36::-;44755:126;;;-1:-1:-1;8315:10:0;44845:20;44857:7;44845:11;:20::i;:::-;-1:-1:-1;;;;;44845:36:0;;44755:126;44729:153;;44900:17;44895:66;;44926:35;;-1:-1:-1;;;44926:35:0;;;;;;;;;;;44895:66;-1:-1:-1;;;;;44976:16:0;;44972:52;;45001:23;;-1:-1:-1;;;45001:23:0;;;;;;;;;;;44972:52;45037:43;45059:4;45065:2;45069:7;45078:1;45037:21;:43::i;:::-;45145:35;45162:1;45166:7;45175:4;45145:8;:35::i;:::-;-1:-1:-1;;;;;45476:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45476:31:0;;;;;;;-1:-1:-1;;45476:31:0;;;;;;;45522:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45522:29:0;;;;;;;;;;;45602:20;;;:11;:20;;;;;;45637:18;;-1:-1:-1;;;;;;45670:49:0;;;;-1:-1:-1;;;45703:15:0;45670:49;;;;;;;;;;45993:11;;46053:24;;;;;46096:13;;45602:20;;46053:24;;46096:13;46092:384;;46306:13;;46291:11;:28;46287:174;;46344:20;;46413:28;;;;46387:54;;-1:-1:-1;;;46387:54:0;-1:-1:-1;;;;;;46387:54:0;;;-1:-1:-1;;;;;46344:20:0;;46387:54;;;;46287:174;45451:1036;;;46523:7;46519:2;-1:-1:-1;;;;;46504:27:0;46513:4;-1:-1:-1;;;;;46504:27:0;;;;;;;;;;;46542:42;44566:2026;;44462:2130;;;:::o;10640:120::-;9652:7;;-1:-1:-1;;;9652:7:0;;;;10176:41;;;;-1:-1:-1;;;10176:41:0;;7393:2:1;10176:41:0;;;7375:21:1;7432:2;7412:18;;;7405:30;-1:-1:-1;;;7451:18:1;;;7444:50;7511:18;;10176:41:0;7191:344:1;10176:41:0;10699:7:::1;:15:::0;;-1:-1:-1;;;;10699:15:0::1;::::0;;10730:22:::1;8315:10:::0;10739:12:::1;10730:22;::::0;-1:-1:-1;;;;;5353:32:1;;;5335:51;;5323:2;5308:18;10730:22:0::1;;;;;;;10640:120::o:0;36510:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;36621:7:0;;57309:1;36670:23;;:47;;;;;36704:13;;36697:4;:20;36670:47;36666:886;;;36738:31;36772:17;;;:11;:17;;;;;;;;;36738:51;;;;;;;;;-1:-1:-1;;;;;36738:51:0;;;;-1:-1:-1;;;36738:51:0;;;;;;;;;;;-1:-1:-1;;;36738:51:0;;;;;;;;;;;;;;36808:729;;36858:14;;-1:-1:-1;;;;;36858:28:0;;36854:101;;36922:9;36510:1109;-1:-1:-1;;;36510:1109:0:o;36854:101::-;-1:-1:-1;;;37297:6:0;37342:17;;;;:11;:17;;;;;;;;;37330:29;;;;;;;;;-1:-1:-1;;;;;37330:29:0;;;;;-1:-1:-1;;;37330:29:0;;;;;;;;;;;-1:-1:-1;;;37330:29:0;;;;;;;;;;;;;37390:28;37386:109;;37458:9;36510:1109;-1:-1:-1;;;36510:1109:0:o;37386:109::-;37257:261;;;36719:833;36666:886;37580:31;;-1:-1:-1;;;37580:31:0;;;;;;;;;;;13099:191;13192:6;;;-1:-1:-1;;;;;13209:17:0;;;-1:-1:-1;;;;;;13209:17:0;;;;;;;13242:40;;13192:6;;;13209:17;13192:6;;13242:40;;13173:16;;13242:40;13162:128;13099:191;:::o;10381:118::-;9652:7;;-1:-1:-1;;;9652:7:0;;;;9906:9;9898:38;;;;-1:-1:-1;;;9898:38:0;;9533:2:1;9898:38:0;;;9515:21:1;9572:2;9552:18;;;9545:30;-1:-1:-1;;;9591:18:1;;;9584:46;9647:18;;9898:38:0;9331:340:1;9898:38:0;10441:7:::1;:14:::0;;-1:-1:-1;;;;10441:14:0::1;-1:-1:-1::0;;;10441:14:0::1;::::0;;10471:20:::1;10478:12;8315:10:::0;;8235:98;50207:667;50391:72;;-1:-1:-1;;;50391:72:0;;50370:4;;-1:-1:-1;;;;;50391:36:0;;;;;:72;;8315:10;;50442:4;;50448:7;;50457:5;;50391:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50391:72:0;;;;;;;;-1:-1:-1;;50391:72:0;;;;;;;;;;;;:::i;:::-;;;50387:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50625:13:0;;50621:235;;50671:40;;-1:-1:-1;;;50671:40:0;;;;;;;;;;;50621:235;50814:6;50808:13;50799:6;50795:2;50791:15;50784:38;50387:480;-1:-1:-1;;;;;;50510:55:0;-1:-1:-1;;;50510:55:0;;-1:-1:-1;50207:667:0;;;;;;:::o;4518:675::-;4601:7;4644:4;4601:7;4659:497;4683:5;:12;4679:1;:16;4659:497;;;4717:20;4740:5;4746:1;4740:8;;;;;;;;:::i;:::-;;;;;;;4717:31;;4783:12;4767;:28;4763:382;;5269:13;5319:15;;;5355:4;5348:15;;;5402:4;5386:21;;4895:57;;4763:382;;;5269:13;5319:15;;;5355:4;5348:15;;;5402:4;5386:21;;5072:57;;4763:382;-1:-1:-1;4697:3:0;;;;:::i;:::-;;;;4659:497;;;-1:-1:-1;5173:12:0;4518:675;-1:-1:-1;;;4518:675:0:o;42011:163::-;42134:32;42140:2;42144:8;42154:5;42161:4;42134:5;:32::i;60835:251::-;9652:7;;-1:-1:-1;;;9652:7:0;;;;9906:9;9898:38;;;;-1:-1:-1;;;9898:38:0;;9533:2:1;9898:38:0;;;9515:21:1;9572:2;9552:18;;;9545:30;-1:-1:-1;;;9591:18:1;;;9584:46;9647:18;;9898:38:0;9331:340:1;9898:38:0;61022:56:::1;58103:767:::0;42433:1775;42572:20;42595:13;-1:-1:-1;;;;;42623:16:0;;42619:48;;42648:19;;-1:-1:-1;;;42648:19:0;;;;;;;;;;;42619:48;42682:13;42678:44;;42704:18;;-1:-1:-1;;;42704:18:0;;;;;;;;;;;42678:44;42735:61;42765:1;42769:2;42773:12;42787:8;42735:21;:61::i;:::-;-1:-1:-1;;;;;43073:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;43132:49:0;;43073:44;;;;;;;;43132:49;;;;-1:-1:-1;;43073:44:0;;;;;;43132:49;;;;;;;;;;;;;;;;43198:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;43248:66:0;;;;-1:-1:-1;;;43298:15:0;43248:66;;;;;;;;;;43198:25;43395:23;;;43439:4;:23;;;;-1:-1:-1;;;;;;43447:13:0;;14825:19;:23;;43447:15;43435:641;;;43483:314;43514:38;;43539:12;;-1:-1:-1;;;;;43514:38:0;;;43531:1;;43514:38;;43531:1;;43514:38;43580:69;43619:1;43623:2;43627:14;;;;;;43643:5;43580:30;:69::i;:::-;43575:174;;43685:40;;-1:-1:-1;;;43685:40:0;;;;;;;;;;;43575:174;43792:3;43776:12;:19;;43483:314;;43878:12;43861:13;;:29;43857:43;;43892:8;;;43857:43;43435:641;;;43941:120;43972:40;;43997:14;;;;;-1:-1:-1;;;;;43972:40:0;;;43989:1;;43972:40;;43989:1;;43972:40;44056:3;44040:12;:19;;43941:120;;43435:641;-1:-1:-1;44090:13:0;:28;44140:60;58103:767;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:888::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1408:18;1400:6;1397:30;1394:50;;;1440:1;1437;1430:12;1394:50;1463:22;;1516:4;1508:13;;1504:27;-1:-1:-1;1494:55:1;;1545:1;1542;1535:12;1494:55;1581:2;1568:16;1606:48;1622:31;1650:2;1622:31;:::i;:::-;1606:48;:::i;:::-;1677:2;1670:5;1663:17;1717:7;1712:2;1707;1703;1699:11;1695:20;1692:33;1689:53;;;1738:1;1735;1728:12;1689:53;1793:2;1788;1784;1780:11;1775:2;1768:5;1764:14;1751:45;1837:1;1832:2;1827;1820:5;1816:14;1812:23;1805:34;1858:5;1848:15;;;;;981:888;;;;;;;:::o;1874:347::-;1939:6;1947;2000:2;1988:9;1979:7;1975:23;1971:32;1968:52;;;2016:1;2013;2006:12;1968:52;2039:29;2058:9;2039:29;:::i;:::-;2029:39;;2118:2;2107:9;2103:18;2090:32;2165:5;2158:13;2151:21;2144:5;2141:32;2131:60;;2187:1;2184;2177:12;2131:60;2210:5;2200:15;;;1874:347;;;;;:::o;2226:254::-;2294:6;2302;2355:2;2343:9;2334:7;2330:23;2326:32;2323:52;;;2371:1;2368;2361:12;2323:52;2394:29;2413:9;2394:29;:::i;:::-;2384:39;2470:2;2455:18;;;;2442:32;;-1:-1:-1;;;2226:254:1:o;2485:689::-;2580:6;2588;2596;2649:2;2637:9;2628:7;2624:23;2620:32;2617:52;;;2665:1;2662;2655:12;2617:52;2705:9;2692:23;2734:18;2775:2;2767:6;2764:14;2761:34;;;2791:1;2788;2781:12;2761:34;2829:6;2818:9;2814:22;2804:32;;2874:7;2867:4;2863:2;2859:13;2855:27;2845:55;;2896:1;2893;2886:12;2845:55;2936:2;2923:16;2962:2;2954:6;2951:14;2948:34;;;2978:1;2975;2968:12;2948:34;3033:7;3026:4;3016:6;3013:1;3009:14;3005:2;3001:23;2997:34;2994:47;2991:67;;;3054:1;3051;3044:12;2991:67;3085:4;3077:13;;;;3109:6;;-1:-1:-1;3147:20:1;;;;3134:34;;2485:689;-1:-1:-1;;;;2485:689:1:o;3179:180::-;3238:6;3291:2;3279:9;3270:7;3266:23;3262:32;3259:52;;;3307:1;3304;3297:12;3259:52;-1:-1:-1;3330:23:1;;3179:180;-1:-1:-1;3179:180:1:o;3364:245::-;3422:6;3475:2;3463:9;3454:7;3450:23;3446:32;3443:52;;;3491:1;3488;3481:12;3443:52;3530:9;3517:23;3549:30;3573:5;3549:30;:::i;3614:249::-;3683:6;3736:2;3724:9;3715:7;3711:23;3707:32;3704:52;;;3752:1;3749;3742:12;3704:52;3784:9;3778:16;3803:30;3827:5;3803:30;:::i;3868:635::-;3948:6;4001:2;3989:9;3980:7;3976:23;3972:32;3969:52;;;4017:1;4014;4007:12;3969:52;4050:9;4044:16;4083:18;4075:6;4072:30;4069:50;;;4115:1;4112;4105:12;4069:50;4138:22;;4191:4;4183:13;;4179:27;-1:-1:-1;4169:55:1;;4220:1;4217;4210:12;4169:55;4249:2;4243:9;4274:48;4290:31;4318:2;4290:31;:::i;4274:48::-;4345:2;4338:5;4331:17;4385:7;4380:2;4375;4371;4367:11;4363:20;4360:33;4357:53;;;4406:1;4403;4396:12;4357:53;4419:54;4470:2;4465;4458:5;4454:14;4449:2;4445;4441:11;4419:54;:::i;:::-;4492:5;3868:635;-1:-1:-1;;;;;3868:635:1:o;4693:257::-;4734:3;4772:5;4766:12;4799:6;4794:3;4787:19;4815:63;4871:6;4864:4;4859:3;4855:14;4848:4;4841:5;4837:16;4815:63;:::i;:::-;4932:2;4911:15;-1:-1:-1;;4907:29:1;4898:39;;;;4939:4;4894:50;;4693:257;-1:-1:-1;;4693:257:1:o;5397:488::-;-1:-1:-1;;;;;5666:15:1;;;5648:34;;5718:15;;5713:2;5698:18;;5691:43;5765:2;5750:18;;5743:34;;;5813:3;5808:2;5793:18;;5786:31;;;5591:4;;5834:45;;5859:19;;5851:6;5834:45;:::i;:::-;5826:53;5397:488;-1:-1:-1;;;;;;5397:488:1:o;6264:219::-;6413:2;6402:9;6395:21;6376:4;6433:44;6473:2;6462:9;6458:18;6450:6;6433:44;:::i;6837:349::-;7039:2;7021:21;;;7078:2;7058:18;;;7051:30;7117:27;7112:2;7097:18;;7090:55;7177:2;7162:18;;6837:349::o;7540:339::-;7742:2;7724:21;;;7781:2;7761:18;;;7754:30;-1:-1:-1;;;7815:2:1;7800:18;;7793:45;7870:2;7855:18;;7540:339::o;8984:342::-;9186:2;9168:21;;;9225:2;9205:18;;;9198:30;-1:-1:-1;;;9259:2:1;9244:18;;9237:48;9317:2;9302:18;;8984:342::o;10716:356::-;10918:2;10900:21;;;10937:18;;;10930:30;10996:34;10991:2;10976:18;;10969:62;11063:2;11048:18;;10716:356::o;12171:342::-;12373:2;12355:21;;;12412:2;12392:18;;;12385:30;-1:-1:-1;;;12446:2:1;12431:18;;12424:48;12504:2;12489:18;;12171:342::o;14442:275::-;14513:2;14507:9;14578:2;14559:13;;-1:-1:-1;;14555:27:1;14543:40;;14613:18;14598:34;;14634:22;;;14595:62;14592:88;;;14660:18;;:::i;:::-;14696:2;14689:22;14442:275;;-1:-1:-1;14442:275:1:o;14722:186::-;14770:4;14803:18;14795:6;14792:30;14789:56;;;14825:18;;:::i;:::-;-1:-1:-1;14891:2:1;14870:15;-1:-1:-1;;14866:29:1;14897:4;14862:40;;14722:186::o;14913:128::-;14953:3;14984:1;14980:6;14977:1;14974:13;14971:39;;;14990:18;;:::i;:::-;-1:-1:-1;15026:9:1;;14913:128::o;15046:217::-;15086:1;15112;15102:132;;15156:10;15151:3;15147:20;15144:1;15137:31;15191:4;15188:1;15181:15;15219:4;15216:1;15209:15;15102:132;-1:-1:-1;15248:9:1;;15046:217::o;15268:168::-;15308:7;15374:1;15370;15366:6;15362:14;15359:1;15356:21;15351:1;15344:9;15337:17;15333:45;15330:71;;;15381:18;;:::i;:::-;-1:-1:-1;15421:9:1;;15268:168::o;15441:125::-;15481:4;15509:1;15506;15503:8;15500:34;;;15514:18;;:::i;:::-;-1:-1:-1;15551:9:1;;15441:125::o;15571:258::-;15643:1;15653:113;15667:6;15664:1;15661:13;15653:113;;;15743:11;;;15737:18;15724:11;;;15717:39;15689:2;15682:10;15653:113;;;15784:6;15781:1;15778:13;15775:48;;;-1:-1:-1;;15819:1:1;15801:16;;15794:27;15571:258::o;15834:380::-;15913:1;15909:12;;;;15956;;;15977:61;;16031:4;16023:6;16019:17;16009:27;;15977:61;16084:2;16076:6;16073:14;16053:18;16050:38;16047:161;;;16130:10;16125:3;16121:20;16118:1;16111:31;16165:4;16162:1;16155:15;16193:4;16190:1;16183:15;16047:161;;15834:380;;;:::o;16219:135::-;16258:3;-1:-1:-1;;16279:17:1;;16276:43;;;16299:18;;:::i;:::-;-1:-1:-1;16346:1:1;16335:13;;16219:135::o;16359:127::-;16420:10;16415:3;16411:20;16408:1;16401:31;16451:4;16448:1;16441:15;16475:4;16472:1;16465:15;16491:127;16552:10;16547:3;16543:20;16540:1;16533:31;16583:4;16580:1;16573:15;16607:4;16604:1;16597:15;16623:127;16684:10;16679:3;16675:20;16672:1;16665:31;16715:4;16712:1;16705:15;16739:4;16736:1;16729:15;16755:131;-1:-1:-1;;;;;;16829:32:1;;16819:43;;16809:71;;16876:1;16873;16866:12

Swarm Source

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