ETH Price: $3,375.85 (-1.98%)
Gas: 3 Gwei

Token

BOO (BOO)
 

Overview

Max Total Supply

5,555 BOO

Holders

2,708

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BOO
0x820dfdc28a5d4dd681752190a6450c3f795a8116
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:
BooBunch

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    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;
    }

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-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.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            if (to.code.length != 0) {
                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 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) 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

// File: undefined/BooBunch.sol


pragma solidity ^0.8.4;






contract BooBunch is ERC721A, Ownable, Pausable, ReentrancyGuard {

    enum MintPhase {
        CLOSED,
        OGWL,
        PUBLIC
    }

    // Configuration: Metadata
    string public baseURI;

    // Configuration: General
    uint256 public immutable maxSupply = 5555;
    uint256 public price = 0.033 ether;
    MintPhase public phase = MintPhase.CLOSED;

    mapping(address => bool) public ogClaimed;
    mapping(address => bool) public whiteListClaimed;
    mapping(address => bool) public publicFreeClaimed;

    // Configuration: OG Mint
    bytes32 public ogMerkleRoot;
    uint256 public maxPerOgMinter = 4; // Actually 3, this is to avoid using <=

    // Configuration: WL Mint
    bytes32 public whitelistMerkleRoot;
    uint256 public maxPerWhitelistMinter = 3; // Actually 2, this is to avoid using <=

    // Configuration: Public Mint
    uint256 public maxPerFreePublicTx = 2; // Actually 1, this is to avoid using <=
    uint256 public maxPerPublicTx = 4; // Actually 3, this is to avoid using <=

    // Withdraw accounts
    address private constant WALLET_B = 0xaB636856459793ADDB093aEAAD4fB400f94e8A75;
    address private constant WALLET_C = 0x8E090D4b9C3E5c38Be4aA9D111ECea1834280fA2;

    constructor(
        string memory _initBaseUri
    ) ERC721A("BOO", "BOO") {
        setBaseURI(_initBaseUri);
    }

    // ERC721A overrides ===========================================================================

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

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    // When the contract is paused, all token transfers are prevented in case of emergency
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 tokenId,
        uint256 quantity
    ) internal override(ERC721A) whenNotPaused {
        super._beforeTokenTransfers(from, to, tokenId, quantity);
    }

    // Admin functions =============================================================================

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

    function unpause() public onlyOwner {
        _unpause();
    }

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

    function setOgMerkleRoot(bytes32 _ogMerkleRoot) external onlyOwner {
        ogMerkleRoot = _ogMerkleRoot;
    }

    function setwhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    function setMaxPerOgMinter(uint256 _maxPerOgMinter) external onlyOwner {
        maxPerOgMinter = _maxPerOgMinter;
    }

    function setmaxPerWhitelistMinter(uint256 _maxPerWhitelistMinter) external onlyOwner {
        maxPerWhitelistMinter = _maxPerWhitelistMinter;
    }

    function setMaxPerPublicTx(uint256 _maxPerPublicTx) external onlyOwner {
        maxPerPublicTx = _maxPerPublicTx;
    }

    function setPhase(MintPhase _mintPhase) external onlyOwner {
        phase = _mintPhase;
    }

    // Update price in case of major ETH fluctuations
    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    /* solhint-disable avoid-low-level-calls */
    function withdraw() external nonReentrant onlyOwner {
        uint256 currentBalance = address(this).balance;

        (bool successB, ) = payable(WALLET_B).call{ value: (currentBalance * 92) / 100 }("");
        require(successB, "Failed to send to B");

        (bool successC, ) = payable(WALLET_C).call{ value: (currentBalance * 8) / 100 }("");
        require(successC, "Failed to send to C");

    } /* solhint-enable avoid-low-level-calls */

    // Public functions ============================================================================

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }

    // Minting functions ===========================================================================

    function _mintPresale(
        address buyer,
        uint256 quantity,
        bytes32[] calldata proof,
        bytes32 merkleRoot,
        uint256 limit
    ) internal {
        string memory payload = string(abi.encodePacked(buyer));
        require(_verify(merkleRoot, _leaf(payload), proof), "Address is not allowed during OGWL Sale");
        require(quantity < limit, "Exceeds OGWL per transaction limit");
        require(numberMinted(_msgSender()) + quantity < limit, "Exceeds total OGWL limit");

        _safeMint(buyer, quantity);
    }

    function mintOg(uint256 quantity, bytes32[] calldata proof) external payable nonReentrant {
        require(phase == MintPhase.OGWL, "OG or WhiteList sale is not active");
        require(!ogClaimed[msg.sender], "Address has already been claimed!");

        _mintPresale(_msgSender(), quantity, proof, ogMerkleRoot, maxPerOgMinter);

        ogClaimed[msg.sender] = true;
    }

    function mintWhitelist(uint256 quantity, bytes32[] calldata proof) external payable nonReentrant {
        require(phase == MintPhase.OGWL, "OG or WhiteList sale is not active");
        require(!whiteListClaimed[msg.sender], "Address has already been claimed!");

        _mintPresale(_msgSender(), quantity, proof, whitelistMerkleRoot, maxPerWhitelistMinter);

        whiteListClaimed[msg.sender] = true;
    }

    function mintPublicFree(uint256 quantity) external payable nonReentrant {
        require(phase == MintPhase.PUBLIC, "Public sale is not active");
        require(totalMinted() + quantity <= 3333, "Exceeds Free Supply");
        require(quantity < maxPerFreePublicTx, "Exceeds max per transaction");
        require(!publicFreeClaimed[msg.sender], "Only 1 Free Per Wallet");

        _safeMint(_msgSender(), quantity);

        publicFreeClaimed[msg.sender] = true;
    }

    function mintPublic(uint256 quantity) external payable nonReentrant {
        require(phase == MintPhase.PUBLIC, "Public sale is not active");
        require(totalMinted() + quantity <= maxSupply, "Exceeds max supply");
        require(quantity < maxPerPublicTx, "Exceeds max per transaction");
        require(price * quantity == msg.value, "Incorrect amount of funds provided");

        _safeMint(_msgSender(), quantity);
    }

    // Merkle tree functions =======================================================================

    function _leaf(string memory payload) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(payload));
    }

    function _verify(
        bytes32 merkleRoot,
        bytes32 leaf,
        bytes32[] memory proof
    ) internal pure returns (bool) {
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseUri","type":"string"}],"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFreePublicTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerOgMinter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerPublicTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWhitelistMinter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintOg","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPublicFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ogClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"enum BooBunch.MintPhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicFreeClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerOgMinter","type":"uint256"}],"name":"setMaxPerOgMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerPublicTx","type":"uint256"}],"name":"setMaxPerPublicTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_ogMerkleRoot","type":"bytes32"}],"name":"setOgMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum BooBunch.MintPhase","name":"_mintPhase","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWhitelistMinter","type":"uint256"}],"name":"setmaxPerWhitelistMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setwhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","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":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526115b360805266753d533d968000600b55600c805460ff1916905560046011819055600360135560026014556015553480156200004057600080fd5b5060405162002b6238038062002b6283398101604081905262000063916200025e565b604080518082018252600380825262424f4f60e81b602080840182815285518087019096529285528401528151919291620000a191600291620001b8565b508051620000b7906003906020840190620001b8565b5050600160005550620000ca33620000ee565b6008805460ff60a01b191690556001600955620000e78162000140565b5062000387565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200019f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b490600a906020840190620001b8565b5050565b828054620001c69062000334565b90600052602060002090601f016020900481019282620001ea576000855562000235565b82601f106200020557805160ff191683800117855562000235565b8280016001018555821562000235579182015b828111156200023557825182559160200191906001019062000218565b506200024392915062000247565b5090565b5b8082111562000243576000815560010162000248565b6000602080838503121562000271578182fd5b82516001600160401b038082111562000288578384fd5b818501915085601f8301126200029c578384fd5b815181811115620002b157620002b162000371565b604051601f8201601f19908116603f01168101908382118183101715620002dc57620002dc62000371565b816040528281528886848701011115620002f4578687fd5b8693505b82841015620003175784840186015181850187015292850192620002f8565b828411156200032857868684830101525b98975050505050505050565b600181811c908216806200034957607f821691505b602082108114156200036b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6080516127b8620003aa60003960008181610751015261156401526127b86000f3fe6080604052600436106102935760003560e01c806375cbaf761161015a578063c87b56dd116100c1578063dc33e6811161007a578063dc33e681146107b3578063e985e9c5146107d3578063ed526b651461081c578063ef0d5f3d1461082f578063efd0cbf91461084f578063f2fde38b1461086257600080fd5b8063c87b56dd146106cf578063ccaf9991146106ef578063cfda71851461070f578063d5abeb011461073f578063d75286e514610773578063d8a7ab891461079357600080fd5b8063a22cb46511610113578063a22cb46514610619578063a2309ff814610639578063aa98e0c614610652578063b1c9fe6e14610668578063b88d4fde1461068f578063c03afb59146106af57600080fd5b806375cbaf76146105885780638456cb591461059b5780638da5cb5b146105b057806391b7f5ed146105ce57806395d89b41146105ee578063a035b1fe1461060357600080fd5b80633f4ba83a116101fe5780635c975abb116101b75780635c975abb146104cf5780636352211e146104ee5780636c0360eb1461050e57806370a0823114610523578063715018a61461054357806373fc16ad1461055857600080fd5b80633f4ba83a1461042e5780634021f7661461044357806342842e0e14610463578063480ceec0146104835780634849344a1461049957806355f804b3146104af57600080fd5b80630a302530116102505780630a3025301461038057806318160ddd146103965780632333f3c4146103b357806323b872dd146103e3578063286c51cf146104035780633ccfd60b1461041957600080fd5b806301ffc9a714610298578063061431a8146102cd57806306fdde03146102e2578063081812fc14610304578063095ea7b31461033c5780630a07c08e1461035c575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612362565b610882565b60405190151581526020015b60405180910390f35b6102e06102db3660046123ff565b6108d4565b005b3480156102ee57600080fd5b506102f76109b0565b6040516102c49190612565565b34801561031057600080fd5b5061032461031f36600461234a565b610a42565b6040516001600160a01b0390911681526020016102c4565b34801561034857600080fd5b506102e0610357366004612321565b610a86565b34801561036857600080fd5b5061037260115481565b6040519081526020016102c4565b34801561038c57600080fd5b5061037260105481565b3480156103a257600080fd5b506001546000540360001901610372565b3480156103bf57600080fd5b506102b86103ce3660046121e7565b600e6020526000908152604090205460ff1681565b3480156103ef57600080fd5b506102e06103fe366004612233565b610b59565b34801561040f57600080fd5b5061037260135481565b34801561042557600080fd5b506102e0610b69565b34801561043a57600080fd5b506102e0610d32565b34801561044f57600080fd5b506102e061045e36600461234a565b610d66565b34801561046f57600080fd5b506102e061047e366004612233565b610d95565b34801561048f57600080fd5b5061037260145481565b3480156104a557600080fd5b5061037260155481565b3480156104bb57600080fd5b506102e06104ca3660046123b9565b610db0565b3480156104db57600080fd5b50600854600160a01b900460ff166102b8565b3480156104fa57600080fd5b5061032461050936600461234a565b610df1565b34801561051a57600080fd5b506102f7610dfc565b34801561052f57600080fd5b5061037261053e3660046121e7565b610e8a565b34801561054f57600080fd5b506102e0610ed9565b34801561056457600080fd5b506102b86105733660046121e7565b600d6020526000908152604090205460ff1681565b6102e06105963660046123ff565b610f0d565b3480156105a757600080fd5b506102e0610fe0565b3480156105bc57600080fd5b506008546001600160a01b0316610324565b3480156105da57600080fd5b506102e06105e936600461234a565b611012565b3480156105fa57600080fd5b506102f7611041565b34801561060f57600080fd5b50610372600b5481565b34801561062557600080fd5b506102e06106343660046122e7565b611050565b34801561064557600080fd5b5060005460001901610372565b34801561065e57600080fd5b5061037260125481565b34801561067457600080fd5b50600c546106829060ff1681565b6040516102c4919061253d565b34801561069b57600080fd5b506102e06106aa36600461226e565b6110e6565b3480156106bb57600080fd5b506102e06106ca36600461239a565b611130565b3480156106db57600080fd5b506102f76106ea36600461234a565b61118f565b3480156106fb57600080fd5b506102e061070a36600461234a565b611214565b34801561071b57600080fd5b506102b861072a3660046121e7565b600f6020526000908152604090205460ff1681565b34801561074b57600080fd5b506103727f000000000000000000000000000000000000000000000000000000000000000081565b34801561077f57600080fd5b506102e061078e36600461234a565b611243565b34801561079f57600080fd5b506102e06107ae36600461234a565b611272565b3480156107bf57600080fd5b506103726107ce3660046121e7565b6112a1565b3480156107df57600080fd5b506102b86107ee366004612201565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102e061082a36600461234a565b6112cc565b34801561083b57600080fd5b506102e061084a36600461234a565b61149b565b6102e061085d36600461234a565b6114ca565b34801561086e57600080fd5b506102e061087d3660046121e7565b6116a7565b60006301ffc9a760e01b6001600160e01b0319831614806108b357506380ac58cd60e01b6001600160e01b03198316145b806108ce5750635b5e139f60e01b6001600160e01b03198316145b92915050565b600260095414156109005760405162461bcd60e51b81526004016108f7906125ef565b60405180910390fd5b60026009556001600c5460ff16600281111561092c57634e487b7160e01b600052602160045260246000fd5b146109495760405162461bcd60e51b81526004016108f790612578565b336000908152600e602052604090205460ff16156109795760405162461bcd60e51b81526004016108f790612626565b61098b33848484601254601354611742565b5050336000908152600e60205260409020805460ff1916600190811790915560095550565b6060600280546109bf906126ea565b80601f01602080910402602001604051908101604052809291908181526020018280546109eb906126ea565b8015610a385780601f10610a0d57610100808354040283529160200191610a38565b820191906000526020600020905b815481529060010190602001808311610a1b57829003601f168201915b5050505050905090565b6000610a4d826118e2565b610a6a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a9182611917565b9050806001600160a01b0316836001600160a01b03161415610ac65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610afd57610ae081336107ee565b610afd576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b64838383611980565b505050565b60026009541415610b8c5760405162461bcd60e51b81526004016108f7906125ef565b60026009556008546001600160a01b03163314610bbb5760405162461bcd60e51b81526004016108f7906125ba565b47600073ab636856459793addb093aeaad4fb400f94e8a756064610be084605c61269f565b610bea919061267f565b604051600081818185875af1925050503d8060008114610c26576040519150601f19603f3d011682016040523d82523d6000602084013e610c2b565b606091505b5050905080610c725760405162461bcd60e51b81526020600482015260136024820152722330b4b632b2103a379039b2b732103a37902160691b60448201526064016108f7565b6000738e090d4b9c3e5c38be4aa9d111ecea1834280fa26064610c9685600861269f565b610ca0919061267f565b604051600081818185875af1925050503d8060008114610cdc576040519150601f19603f3d011682016040523d82523d6000602084013e610ce1565b606091505b5050905080610d285760405162461bcd60e51b81526020600482015260136024820152724661696c656420746f2073656e6420746f204360681b60448201526064016108f7565b5050600160095550565b6008546001600160a01b03163314610d5c5760405162461bcd60e51b81526004016108f7906125ba565b610d64611b30565b565b6008546001600160a01b03163314610d905760405162461bcd60e51b81526004016108f7906125ba565b601155565b610b64838383604051806020016040528060008152506110e6565b6008546001600160a01b03163314610dda5760405162461bcd60e51b81526004016108f7906125ba565b8051610ded90600a9060208401906120bc565b5050565b60006108ce82611917565b600a8054610e09906126ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610e35906126ea565b8015610e825780601f10610e5757610100808354040283529160200191610e82565b820191906000526020600020905b815481529060010190602001808311610e6557829003601f168201915b505050505081565b60006001600160a01b038216610eb3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f035760405162461bcd60e51b81526004016108f7906125ba565b610d646000611bcd565b60026009541415610f305760405162461bcd60e51b81526004016108f7906125ef565b60026009556001600c5460ff166002811115610f5c57634e487b7160e01b600052602160045260246000fd5b14610f795760405162461bcd60e51b81526004016108f790612578565b336000908152600d602052604090205460ff1615610fa95760405162461bcd60e51b81526004016108f790612626565b610fbb33848484601054601154611742565b5050336000908152600d60205260409020805460ff1916600190811790915560095550565b6008546001600160a01b0316331461100a5760405162461bcd60e51b81526004016108f7906125ba565b610d64611c1f565b6008546001600160a01b0316331461103c5760405162461bcd60e51b81526004016108f7906125ba565b600b55565b6060600380546109bf906126ea565b6001600160a01b03821633141561107a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110f1848484611980565b6001600160a01b0383163b1561112a5761110d84848484611ca7565b61112a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461115a5760405162461bcd60e51b81526004016108f7906125ba565b600c805482919060ff1916600183600281111561118757634e487b7160e01b600052602160045260246000fd5b021790555050565b606061119a826118e2565b6111b757604051630a14c4b560e41b815260040160405180910390fd5b60006111c1611d9f565b90508051600014156111e2576040518060200160405280600081525061120d565b806111ec84611dae565b6040516020016111fd9291906124c1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461123e5760405162461bcd60e51b81526004016108f7906125ba565b601355565b6008546001600160a01b0316331461126d5760405162461bcd60e51b81526004016108f7906125ba565b601255565b6008546001600160a01b0316331461129c5760405162461bcd60e51b81526004016108f7906125ba565b601055565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166108ce565b600260095414156112ef5760405162461bcd60e51b81526004016108f7906125ef565b60026009819055600c5460ff16600281111561131b57634e487b7160e01b600052602160045260246000fd5b146113645760405162461bcd60e51b81526020600482015260196024820152785075626c69632073616c65206973206e6f742061637469766560381b60448201526064016108f7565b610d05816113756000546000190190565b61137f9190612667565b11156113c35760405162461bcd60e51b815260206004820152601360248201527245786365656473204672656520537570706c7960681b60448201526064016108f7565b60145481106114145760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e000000000060448201526064016108f7565b336000908152600f602052604090205460ff161561146d5760405162461bcd60e51b815260206004820152601660248201527513db9b1e480c48119c99594814195c8815d85b1b195d60521b60448201526064016108f7565b611478335b82611dfd565b50336000908152600f60205260409020805460ff19166001908117909155600955565b6008546001600160a01b031633146114c55760405162461bcd60e51b81526004016108f7906125ba565b601555565b600260095414156114ed5760405162461bcd60e51b81526004016108f7906125ef565b60026009819055600c5460ff16600281111561151957634e487b7160e01b600052602160045260246000fd5b146115625760405162461bcd60e51b81526020600482015260196024820152785075626c69632073616c65206973206e6f742061637469766560381b60448201526064016108f7565b7f0000000000000000000000000000000000000000000000000000000000000000816115916000546000190190565b61159b9190612667565b11156115de5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016108f7565b601554811061162f5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e000000000060448201526064016108f7565b3481600b5461163e919061269f565b146116965760405162461bcd60e51b815260206004820152602260248201527f496e636f727265637420616d6f756e74206f662066756e64732070726f766964604482015261195960f21b60648201526084016108f7565b61169f33611472565b506001600955565b6008546001600160a01b031633146116d15760405162461bcd60e51b81526004016108f7906125ba565b6001600160a01b0381166117365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f7565b61173f81611bcd565b50565b60408051606088901b6bffffffffffffffffffffffff191660208201528151601481830301815260349091019091526117b78361177e83611e17565b878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611e4792505050565b6118135760405162461bcd60e51b815260206004820152602760248201527f41646472657373206973206e6f7420616c6c6f77656420647572696e67204f47604482015266574c2053616c6560c81b60648201526084016108f7565b81861061186d5760405162461bcd60e51b815260206004820152602260248201527f45786365656473204f47574c20706572207472616e73616374696f6e206c696d6044820152611a5d60f21b60648201526084016108f7565b8186611878336112a1565b6118829190612667565b106118cf5760405162461bcd60e51b815260206004820152601860248201527f4578636565647320746f74616c204f47574c206c696d6974000000000000000060448201526064016108f7565b6118d98787611dfd565b50505050505050565b6000816001111580156118f6575060005482105b80156108ce575050600090815260046020526040902054600160e01b161590565b600081806001116119675760005481101561196757600081815260046020526040902054600160e01b8116611965575b8061120d575060001901600081815260046020526040902054611947565b505b604051636f96cda160e11b815260040160405180910390fd5b600061198b82611917565b9050836001600160a01b0316816001600160a01b0316146119be5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119dc57506119dc85336107ee565b806119f75750336119ec84610a42565b6001600160a01b0316145b905080611a1757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a3e57604051633a954ecd60e21b815260040160405180910390fd5b611a4b8585856001611e54565b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216611ae85760018301600081815260046020526040902054611ae6576000548114611ae65760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600854600160a01b900460ff16611b805760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108f7565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff1615611c6c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108f7565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bb03390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611cdc903390899088908890600401612500565b602060405180830381600087803b158015611cf657600080fd5b505af1925050508015611d26575060408051601f3d908101601f19168201909252611d239181019061237e565b60015b611d81573d808015611d54576040519150601f19603f3d011682016040523d82523d6000602084013e611d59565b606091505b508051611d79576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546109bf906126ea565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611deb57600183039250600a81066030018353600a9004611dcd565b50819003601f19909101908152919050565b610ded828260405180602001604052806000815250611ea6565b600081604051602001611e2a91906124a5565b604051602081830303815290604052805190602001209050919050565b6000611d97828585612024565b600854600160a01b900460ff1615611ea15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108f7565b61112a565b6000546001600160a01b038416611ecf57604051622e076360e81b815260040160405180910390fd5b82611eed5760405163b562e8dd60e01b815260040160405180910390fd5b611efa6000858386611e54565b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611fcf575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f986000878480600101955087611ca7565b611fb5576040516368d2bf6b60e11b815260040160405180910390fd5b808210611f4d578260005414611fca57600080fd5b612014565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611fd0575b50600090815561112a9085838684565b600082612031858461203a565b14949350505050565b600081815b84518110156120b457600085828151811061206a57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161209057600083815260208290526040902092506120a1565b600081815260208490526040902092505b50806120ac81612725565b91505061203f565b509392505050565b8280546120c8906126ea565b90600052602060002090601f0160209004810192826120ea5760008555612130565b82601f1061210357805160ff1916838001178555612130565b82800160010185558215612130579182015b82811115612130578251825591602001919060010190612115565b5061213c929150612140565b5090565b5b8082111561213c5760008155600101612141565b600067ffffffffffffffff8084111561217057612170612756565b604051601f8501601f19908116603f0116810190828211818310171561219857612198612756565b816040528093508581528686860111156121b157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146121e257600080fd5b919050565b6000602082840312156121f8578081fd5b61120d826121cb565b60008060408385031215612213578081fd5b61221c836121cb565b915061222a602084016121cb565b90509250929050565b600080600060608486031215612247578081fd5b612250846121cb565b925061225e602085016121cb565b9150604084013590509250925092565b60008060008060808587031215612283578081fd5b61228c856121cb565b935061229a602086016121cb565b925060408501359150606085013567ffffffffffffffff8111156122bc578182fd5b8501601f810187136122cc578182fd5b6122db87823560208401612155565b91505092959194509250565b600080604083850312156122f9578182fd5b612302836121cb565b915060208301358015158114612316578182fd5b809150509250929050565b60008060408385031215612333578182fd5b61233c836121cb565b946020939093013593505050565b60006020828403121561235b578081fd5b5035919050565b600060208284031215612373578081fd5b813561120d8161276c565b60006020828403121561238f578081fd5b815161120d8161276c565b6000602082840312156123ab578081fd5b81356003811061120d578182fd5b6000602082840312156123ca578081fd5b813567ffffffffffffffff8111156123e0578182fd5b8201601f810184136123f0578182fd5b611d9784823560208401612155565b600080600060408486031215612413578283fd5b83359250602084013567ffffffffffffffff80821115612431578384fd5b818601915086601f830112612444578384fd5b813581811115612452578485fd5b8760208260051b8501011115612466578485fd5b6020830194508093505050509250925092565b600081518084526124918160208601602086016126be565b601f01601f19169290920160200192915050565b600082516124b78184602087016126be565b9190910192915050565b600083516124d38184602088016126be565b8351908301906124e78183602088016126be565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253390830184612479565b9695505050505050565b602081016003831061255f57634e487b7160e01b600052602160045260246000fd5b91905290565b60208152600061120d6020830184612479565b60208082526022908201527f4f47206f722057686974654c6973742073616c65206973206e6f742061637469604082015261766560f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526021908201527f416464726573732068617320616c7265616479206265656e20636c61696d65646040820152602160f81b606082015260800190565b6000821982111561267a5761267a612740565b500190565b60008261269a57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156126b9576126b9612740565b500290565b60005b838110156126d95781810151838201526020016126c1565b8381111561112a5750506000910152565b600181811c908216806126fe57607f821691505b6020821081141561271f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561273957612739612740565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461173f57600080fdfea2646970667358221220c2ee1d9e8462fba071c6750eeaeb5a52680f6b5c098ea686e14056285172b57d64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d516d70316a3459675574755a6b5965727952746659733664596d6f55377150684131356265556b37474762702f00000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c806375cbaf761161015a578063c87b56dd116100c1578063dc33e6811161007a578063dc33e681146107b3578063e985e9c5146107d3578063ed526b651461081c578063ef0d5f3d1461082f578063efd0cbf91461084f578063f2fde38b1461086257600080fd5b8063c87b56dd146106cf578063ccaf9991146106ef578063cfda71851461070f578063d5abeb011461073f578063d75286e514610773578063d8a7ab891461079357600080fd5b8063a22cb46511610113578063a22cb46514610619578063a2309ff814610639578063aa98e0c614610652578063b1c9fe6e14610668578063b88d4fde1461068f578063c03afb59146106af57600080fd5b806375cbaf76146105885780638456cb591461059b5780638da5cb5b146105b057806391b7f5ed146105ce57806395d89b41146105ee578063a035b1fe1461060357600080fd5b80633f4ba83a116101fe5780635c975abb116101b75780635c975abb146104cf5780636352211e146104ee5780636c0360eb1461050e57806370a0823114610523578063715018a61461054357806373fc16ad1461055857600080fd5b80633f4ba83a1461042e5780634021f7661461044357806342842e0e14610463578063480ceec0146104835780634849344a1461049957806355f804b3146104af57600080fd5b80630a302530116102505780630a3025301461038057806318160ddd146103965780632333f3c4146103b357806323b872dd146103e3578063286c51cf146104035780633ccfd60b1461041957600080fd5b806301ffc9a714610298578063061431a8146102cd57806306fdde03146102e2578063081812fc14610304578063095ea7b31461033c5780630a07c08e1461035c575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612362565b610882565b60405190151581526020015b60405180910390f35b6102e06102db3660046123ff565b6108d4565b005b3480156102ee57600080fd5b506102f76109b0565b6040516102c49190612565565b34801561031057600080fd5b5061032461031f36600461234a565b610a42565b6040516001600160a01b0390911681526020016102c4565b34801561034857600080fd5b506102e0610357366004612321565b610a86565b34801561036857600080fd5b5061037260115481565b6040519081526020016102c4565b34801561038c57600080fd5b5061037260105481565b3480156103a257600080fd5b506001546000540360001901610372565b3480156103bf57600080fd5b506102b86103ce3660046121e7565b600e6020526000908152604090205460ff1681565b3480156103ef57600080fd5b506102e06103fe366004612233565b610b59565b34801561040f57600080fd5b5061037260135481565b34801561042557600080fd5b506102e0610b69565b34801561043a57600080fd5b506102e0610d32565b34801561044f57600080fd5b506102e061045e36600461234a565b610d66565b34801561046f57600080fd5b506102e061047e366004612233565b610d95565b34801561048f57600080fd5b5061037260145481565b3480156104a557600080fd5b5061037260155481565b3480156104bb57600080fd5b506102e06104ca3660046123b9565b610db0565b3480156104db57600080fd5b50600854600160a01b900460ff166102b8565b3480156104fa57600080fd5b5061032461050936600461234a565b610df1565b34801561051a57600080fd5b506102f7610dfc565b34801561052f57600080fd5b5061037261053e3660046121e7565b610e8a565b34801561054f57600080fd5b506102e0610ed9565b34801561056457600080fd5b506102b86105733660046121e7565b600d6020526000908152604090205460ff1681565b6102e06105963660046123ff565b610f0d565b3480156105a757600080fd5b506102e0610fe0565b3480156105bc57600080fd5b506008546001600160a01b0316610324565b3480156105da57600080fd5b506102e06105e936600461234a565b611012565b3480156105fa57600080fd5b506102f7611041565b34801561060f57600080fd5b50610372600b5481565b34801561062557600080fd5b506102e06106343660046122e7565b611050565b34801561064557600080fd5b5060005460001901610372565b34801561065e57600080fd5b5061037260125481565b34801561067457600080fd5b50600c546106829060ff1681565b6040516102c4919061253d565b34801561069b57600080fd5b506102e06106aa36600461226e565b6110e6565b3480156106bb57600080fd5b506102e06106ca36600461239a565b611130565b3480156106db57600080fd5b506102f76106ea36600461234a565b61118f565b3480156106fb57600080fd5b506102e061070a36600461234a565b611214565b34801561071b57600080fd5b506102b861072a3660046121e7565b600f6020526000908152604090205460ff1681565b34801561074b57600080fd5b506103727f00000000000000000000000000000000000000000000000000000000000015b381565b34801561077f57600080fd5b506102e061078e36600461234a565b611243565b34801561079f57600080fd5b506102e06107ae36600461234a565b611272565b3480156107bf57600080fd5b506103726107ce3660046121e7565b6112a1565b3480156107df57600080fd5b506102b86107ee366004612201565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102e061082a36600461234a565b6112cc565b34801561083b57600080fd5b506102e061084a36600461234a565b61149b565b6102e061085d36600461234a565b6114ca565b34801561086e57600080fd5b506102e061087d3660046121e7565b6116a7565b60006301ffc9a760e01b6001600160e01b0319831614806108b357506380ac58cd60e01b6001600160e01b03198316145b806108ce5750635b5e139f60e01b6001600160e01b03198316145b92915050565b600260095414156109005760405162461bcd60e51b81526004016108f7906125ef565b60405180910390fd5b60026009556001600c5460ff16600281111561092c57634e487b7160e01b600052602160045260246000fd5b146109495760405162461bcd60e51b81526004016108f790612578565b336000908152600e602052604090205460ff16156109795760405162461bcd60e51b81526004016108f790612626565b61098b33848484601254601354611742565b5050336000908152600e60205260409020805460ff1916600190811790915560095550565b6060600280546109bf906126ea565b80601f01602080910402602001604051908101604052809291908181526020018280546109eb906126ea565b8015610a385780601f10610a0d57610100808354040283529160200191610a38565b820191906000526020600020905b815481529060010190602001808311610a1b57829003601f168201915b5050505050905090565b6000610a4d826118e2565b610a6a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a9182611917565b9050806001600160a01b0316836001600160a01b03161415610ac65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610afd57610ae081336107ee565b610afd576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b64838383611980565b505050565b60026009541415610b8c5760405162461bcd60e51b81526004016108f7906125ef565b60026009556008546001600160a01b03163314610bbb5760405162461bcd60e51b81526004016108f7906125ba565b47600073ab636856459793addb093aeaad4fb400f94e8a756064610be084605c61269f565b610bea919061267f565b604051600081818185875af1925050503d8060008114610c26576040519150601f19603f3d011682016040523d82523d6000602084013e610c2b565b606091505b5050905080610c725760405162461bcd60e51b81526020600482015260136024820152722330b4b632b2103a379039b2b732103a37902160691b60448201526064016108f7565b6000738e090d4b9c3e5c38be4aa9d111ecea1834280fa26064610c9685600861269f565b610ca0919061267f565b604051600081818185875af1925050503d8060008114610cdc576040519150601f19603f3d011682016040523d82523d6000602084013e610ce1565b606091505b5050905080610d285760405162461bcd60e51b81526020600482015260136024820152724661696c656420746f2073656e6420746f204360681b60448201526064016108f7565b5050600160095550565b6008546001600160a01b03163314610d5c5760405162461bcd60e51b81526004016108f7906125ba565b610d64611b30565b565b6008546001600160a01b03163314610d905760405162461bcd60e51b81526004016108f7906125ba565b601155565b610b64838383604051806020016040528060008152506110e6565b6008546001600160a01b03163314610dda5760405162461bcd60e51b81526004016108f7906125ba565b8051610ded90600a9060208401906120bc565b5050565b60006108ce82611917565b600a8054610e09906126ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610e35906126ea565b8015610e825780601f10610e5757610100808354040283529160200191610e82565b820191906000526020600020905b815481529060010190602001808311610e6557829003601f168201915b505050505081565b60006001600160a01b038216610eb3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f035760405162461bcd60e51b81526004016108f7906125ba565b610d646000611bcd565b60026009541415610f305760405162461bcd60e51b81526004016108f7906125ef565b60026009556001600c5460ff166002811115610f5c57634e487b7160e01b600052602160045260246000fd5b14610f795760405162461bcd60e51b81526004016108f790612578565b336000908152600d602052604090205460ff1615610fa95760405162461bcd60e51b81526004016108f790612626565b610fbb33848484601054601154611742565b5050336000908152600d60205260409020805460ff1916600190811790915560095550565b6008546001600160a01b0316331461100a5760405162461bcd60e51b81526004016108f7906125ba565b610d64611c1f565b6008546001600160a01b0316331461103c5760405162461bcd60e51b81526004016108f7906125ba565b600b55565b6060600380546109bf906126ea565b6001600160a01b03821633141561107a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110f1848484611980565b6001600160a01b0383163b1561112a5761110d84848484611ca7565b61112a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461115a5760405162461bcd60e51b81526004016108f7906125ba565b600c805482919060ff1916600183600281111561118757634e487b7160e01b600052602160045260246000fd5b021790555050565b606061119a826118e2565b6111b757604051630a14c4b560e41b815260040160405180910390fd5b60006111c1611d9f565b90508051600014156111e2576040518060200160405280600081525061120d565b806111ec84611dae565b6040516020016111fd9291906124c1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461123e5760405162461bcd60e51b81526004016108f7906125ba565b601355565b6008546001600160a01b0316331461126d5760405162461bcd60e51b81526004016108f7906125ba565b601255565b6008546001600160a01b0316331461129c5760405162461bcd60e51b81526004016108f7906125ba565b601055565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166108ce565b600260095414156112ef5760405162461bcd60e51b81526004016108f7906125ef565b60026009819055600c5460ff16600281111561131b57634e487b7160e01b600052602160045260246000fd5b146113645760405162461bcd60e51b81526020600482015260196024820152785075626c69632073616c65206973206e6f742061637469766560381b60448201526064016108f7565b610d05816113756000546000190190565b61137f9190612667565b11156113c35760405162461bcd60e51b815260206004820152601360248201527245786365656473204672656520537570706c7960681b60448201526064016108f7565b60145481106114145760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e000000000060448201526064016108f7565b336000908152600f602052604090205460ff161561146d5760405162461bcd60e51b815260206004820152601660248201527513db9b1e480c48119c99594814195c8815d85b1b195d60521b60448201526064016108f7565b611478335b82611dfd565b50336000908152600f60205260409020805460ff19166001908117909155600955565b6008546001600160a01b031633146114c55760405162461bcd60e51b81526004016108f7906125ba565b601555565b600260095414156114ed5760405162461bcd60e51b81526004016108f7906125ef565b60026009819055600c5460ff16600281111561151957634e487b7160e01b600052602160045260246000fd5b146115625760405162461bcd60e51b81526020600482015260196024820152785075626c69632073616c65206973206e6f742061637469766560381b60448201526064016108f7565b7f00000000000000000000000000000000000000000000000000000000000015b3816115916000546000190190565b61159b9190612667565b11156115de5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016108f7565b601554811061162f5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e000000000060448201526064016108f7565b3481600b5461163e919061269f565b146116965760405162461bcd60e51b815260206004820152602260248201527f496e636f727265637420616d6f756e74206f662066756e64732070726f766964604482015261195960f21b60648201526084016108f7565b61169f33611472565b506001600955565b6008546001600160a01b031633146116d15760405162461bcd60e51b81526004016108f7906125ba565b6001600160a01b0381166117365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f7565b61173f81611bcd565b50565b60408051606088901b6bffffffffffffffffffffffff191660208201528151601481830301815260349091019091526117b78361177e83611e17565b878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611e4792505050565b6118135760405162461bcd60e51b815260206004820152602760248201527f41646472657373206973206e6f7420616c6c6f77656420647572696e67204f47604482015266574c2053616c6560c81b60648201526084016108f7565b81861061186d5760405162461bcd60e51b815260206004820152602260248201527f45786365656473204f47574c20706572207472616e73616374696f6e206c696d6044820152611a5d60f21b60648201526084016108f7565b8186611878336112a1565b6118829190612667565b106118cf5760405162461bcd60e51b815260206004820152601860248201527f4578636565647320746f74616c204f47574c206c696d6974000000000000000060448201526064016108f7565b6118d98787611dfd565b50505050505050565b6000816001111580156118f6575060005482105b80156108ce575050600090815260046020526040902054600160e01b161590565b600081806001116119675760005481101561196757600081815260046020526040902054600160e01b8116611965575b8061120d575060001901600081815260046020526040902054611947565b505b604051636f96cda160e11b815260040160405180910390fd5b600061198b82611917565b9050836001600160a01b0316816001600160a01b0316146119be5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119dc57506119dc85336107ee565b806119f75750336119ec84610a42565b6001600160a01b0316145b905080611a1757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a3e57604051633a954ecd60e21b815260040160405180910390fd5b611a4b8585856001611e54565b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216611ae85760018301600081815260046020526040902054611ae6576000548114611ae65760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600854600160a01b900460ff16611b805760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108f7565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff1615611c6c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108f7565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bb03390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611cdc903390899088908890600401612500565b602060405180830381600087803b158015611cf657600080fd5b505af1925050508015611d26575060408051601f3d908101601f19168201909252611d239181019061237e565b60015b611d81573d808015611d54576040519150601f19603f3d011682016040523d82523d6000602084013e611d59565b606091505b508051611d79576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546109bf906126ea565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611deb57600183039250600a81066030018353600a9004611dcd565b50819003601f19909101908152919050565b610ded828260405180602001604052806000815250611ea6565b600081604051602001611e2a91906124a5565b604051602081830303815290604052805190602001209050919050565b6000611d97828585612024565b600854600160a01b900460ff1615611ea15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108f7565b61112a565b6000546001600160a01b038416611ecf57604051622e076360e81b815260040160405180910390fd5b82611eed5760405163b562e8dd60e01b815260040160405180910390fd5b611efa6000858386611e54565b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611fcf575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f986000878480600101955087611ca7565b611fb5576040516368d2bf6b60e11b815260040160405180910390fd5b808210611f4d578260005414611fca57600080fd5b612014565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611fd0575b50600090815561112a9085838684565b600082612031858461203a565b14949350505050565b600081815b84518110156120b457600085828151811061206a57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161209057600083815260208290526040902092506120a1565b600081815260208490526040902092505b50806120ac81612725565b91505061203f565b509392505050565b8280546120c8906126ea565b90600052602060002090601f0160209004810192826120ea5760008555612130565b82601f1061210357805160ff1916838001178555612130565b82800160010185558215612130579182015b82811115612130578251825591602001919060010190612115565b5061213c929150612140565b5090565b5b8082111561213c5760008155600101612141565b600067ffffffffffffffff8084111561217057612170612756565b604051601f8501601f19908116603f0116810190828211818310171561219857612198612756565b816040528093508581528686860111156121b157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146121e257600080fd5b919050565b6000602082840312156121f8578081fd5b61120d826121cb565b60008060408385031215612213578081fd5b61221c836121cb565b915061222a602084016121cb565b90509250929050565b600080600060608486031215612247578081fd5b612250846121cb565b925061225e602085016121cb565b9150604084013590509250925092565b60008060008060808587031215612283578081fd5b61228c856121cb565b935061229a602086016121cb565b925060408501359150606085013567ffffffffffffffff8111156122bc578182fd5b8501601f810187136122cc578182fd5b6122db87823560208401612155565b91505092959194509250565b600080604083850312156122f9578182fd5b612302836121cb565b915060208301358015158114612316578182fd5b809150509250929050565b60008060408385031215612333578182fd5b61233c836121cb565b946020939093013593505050565b60006020828403121561235b578081fd5b5035919050565b600060208284031215612373578081fd5b813561120d8161276c565b60006020828403121561238f578081fd5b815161120d8161276c565b6000602082840312156123ab578081fd5b81356003811061120d578182fd5b6000602082840312156123ca578081fd5b813567ffffffffffffffff8111156123e0578182fd5b8201601f810184136123f0578182fd5b611d9784823560208401612155565b600080600060408486031215612413578283fd5b83359250602084013567ffffffffffffffff80821115612431578384fd5b818601915086601f830112612444578384fd5b813581811115612452578485fd5b8760208260051b8501011115612466578485fd5b6020830194508093505050509250925092565b600081518084526124918160208601602086016126be565b601f01601f19169290920160200192915050565b600082516124b78184602087016126be565b9190910192915050565b600083516124d38184602088016126be565b8351908301906124e78183602088016126be565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253390830184612479565b9695505050505050565b602081016003831061255f57634e487b7160e01b600052602160045260246000fd5b91905290565b60208152600061120d6020830184612479565b60208082526022908201527f4f47206f722057686974654c6973742073616c65206973206e6f742061637469604082015261766560f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526021908201527f416464726573732068617320616c7265616479206265656e20636c61696d65646040820152602160f81b606082015260800190565b6000821982111561267a5761267a612740565b500190565b60008261269a57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156126b9576126b9612740565b500290565b60005b838110156126d95781810151838201526020016126c1565b8381111561112a5750506000910152565b600181811c908216806126fe57607f821691505b6020821081141561271f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561273957612739612740565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461173f57600080fdfea2646970667358221220c2ee1d9e8462fba071c6750eeaeb5a52680f6b5c098ea686e14056285172b57d64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d516d70316a3459675574755a6b5965727952746659733664596d6f55377150684131356265556b37474762702f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseUri (string): ipfs://QmQmp1j4YgUtuZkYeryRtfYs6dYmoU7qPhA15beUk7GGbp/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d516d70316a3459675574755a6b59657279527466597336
Arg [3] : 64596d6f55377150684131356265556b37474762702f00000000000000000000


Deployed Bytecode Sourcemap

49639:7431:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24291:615;;;;;;;;;;-1:-1:-1;24291:615:0;;;;;:::i;:::-;;:::i;:::-;;;7916:14:1;;7909:22;7891:41;;7879:2;7864:18;24291:615:0;;;;;;;;55252:420;;;;;;:::i;:::-;;:::i;:::-;;29304:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31372:204::-;;;;;;;;;;-1:-1:-1;31372:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7214:32:1;;;7196:51;;7184:2;7169:18;31372:204:0;7151:102:1;30832:474:0;;;;;;;;;;-1:-1:-1;30832:474:0;;;;;:::i;:::-;;:::i;50250:33::-;;;;;;;;;;;;;;;;;;;8089:25:1;;;8077:2;8062:18;50250:33:0;8044:76:1;50216:27:0;;;;;;;;;;;;;;;;23345:315;;;;;;;;;;-1:-1:-1;51337:1:0;23611:12;23398:7;23595:13;:28;-1:-1:-1;;23595:46:0;23345:315;;50072:48;;;;;;;;;;-1:-1:-1;50072:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32258:170;;;;;;;;;;-1:-1:-1;32258:170:0;;;;;:::i;:::-;;:::i;50405:40::-;;;;;;;;;;;;;;;;53394:414;;;;;;;;;;;;;:::i;52217:65::-;;;;;;;;;;;;;:::i;52674:122::-;;;;;;;;;;-1:-1:-1;52674:122:0;;;;;:::i;:::-;;:::i;32499:185::-;;;;;;;;;;-1:-1:-1;32499:185:0;;;;;:::i;:::-;;:::i;50530:37::-;;;;;;;;;;;;;;;;50615:33;;;;;;;;;;;;;;;;52290:104;;;;;;;;;;-1:-1:-1;52290:104:0;;;;;:::i;:::-;;:::i;7502:86::-;;;;;;;;;;-1:-1:-1;7573:7:0;;-1:-1:-1;;;7573:7:0;;;;7502:86;;29093:144;;;;;;;;;;-1:-1:-1;29093:144:0;;;;;:::i;:::-;;:::i;49824:21::-;;;;;;;;;;;;;:::i;24970:224::-;;;;;;;;;;-1:-1:-1;24970:224:0;;;;;:::i;:::-;;:::i;10401:103::-;;;;;;;;;;;;;:::i;50024:41::-;;;;;;;;;;-1:-1:-1;50024:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54859:385;;;;;;:::i;:::-;;:::i;52148:61::-;;;;;;;;;;;;;:::i;9750:87::-;;;;;;;;;;-1:-1:-1;9823:6:0;;-1:-1:-1;;;;;9823:6:0;9750:87;;53251:86;;;;;;;;;;-1:-1:-1;53251:86:0;;;;;:::i;:::-;;:::i;29473:104::-;;;;;;;;;;;;;:::i;49933:34::-;;;;;;;;;;;;;;;;31648:308;;;;;;;;;;-1:-1:-1;31648:308:0;;;;;:::i;:::-;;:::i;54084:93::-;;;;;;;;;;-1:-1:-1;54128:7:0;23993:13;-1:-1:-1;;23993:31:0;54084:93;;50364:34;;;;;;;;;;;;;;;;49974:41;;;;;;;;;;-1:-1:-1;49974:41:0;;;;;;;;;;;;;;;:::i;32755:396::-;;;;;;;;;;-1:-1:-1;32755:396:0;;;;;:::i;:::-;;:::i;53092:96::-;;;;;;;;;;-1:-1:-1;53092:96:0;;;;;:::i;:::-;;:::i;51358:327::-;;;;;;;;;;-1:-1:-1;51358:327:0;;;;;:::i;:::-;;:::i;52804:150::-;;;;;;;;;;-1:-1:-1;52804:150:0;;;;;:::i;:::-;;:::i;50127:49::-;;;;;;;;;;-1:-1:-1;50127:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49885:41;;;;;;;;;;;;;;;52524:142;;;;;;;;;;-1:-1:-1;52524:142:0;;;;;:::i;:::-;;:::i;52402:114::-;;;;;;;;;;-1:-1:-1;52402:114:0;;;;;:::i;:::-;;:::i;53963:113::-;;;;;;;;;;-1:-1:-1;53963:113:0;;;;;:::i;:::-;;:::i;32027:164::-;;;;;;;;;;-1:-1:-1;32027:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32148:25:0;;;32124:4;32148:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32027:164;55680:480;;;;;;:::i;:::-;;:::i;52962:122::-;;;;;;;;;;-1:-1:-1;52962:122:0;;;;;:::i;:::-;;:::i;56168:438::-;;;;;;:::i;:::-;;:::i;10659:201::-;;;;;;;;;;-1:-1:-1;10659:201:0;;;;;:::i;:::-;;:::i;24291:615::-;24376:4;-1:-1:-1;;;;;;;;;24676:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;24753:25:0;;;24676:102;:179;;;-1:-1:-1;;;;;;;;;;24830:25:0;;;24676:179;24656:199;24291:615;-1:-1:-1;;24291:615:0:o;55252:420::-;4530:1;5128:7;;:19;;5120:63;;;;-1:-1:-1;;;5120:63:0;;;;;;;:::i;:::-;;;;;;;;;4530:1;5261:7;:18;55377:14:::1;55368:5;::::0;::::1;;:23;::::0;::::1;;;;-1:-1:-1::0;;;55368:23:0::1;;;;;;;;;;55360:70;;;;-1:-1:-1::0;;;55360:70:0::1;;;;;;;:::i;:::-;55467:10;55450:28;::::0;;;:16:::1;:28;::::0;;;;;::::1;;55449:29;55441:75;;;;-1:-1:-1::0;;;55441:75:0::1;;;;;;;:::i;:::-;55529:87;6236:10:::0;55556:8:::1;55566:5;;55573:19;;55594:21;;55529:12;:87::i;:::-;-1:-1:-1::0;;55646:10:0::1;55629:28;::::0;;;:16:::1;:28;::::0;;;;:35;;-1:-1:-1;;55629:35:0::1;55660:4;55629:35:::0;;::::1;::::0;;;5440:7;:22;-1:-1:-1;55252:420:0:o;29304:100::-;29358:13;29391:5;29384:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29304:100;:::o;31372:204::-;31440:7;31465:16;31473:7;31465;:16::i;:::-;31460:64;;31490:34;;-1:-1:-1;;;31490:34:0;;;;;;;;;;;31460:64;-1:-1:-1;31544:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31544:24:0;;31372:204::o;30832:474::-;30905:13;30937:27;30956:7;30937:18;:27::i;:::-;30905:61;;30987:5;-1:-1:-1;;;;;30981:11:0;:2;-1:-1:-1;;;;;30981:11:0;;30977:48;;;31001:24;;-1:-1:-1;;;31001:24:0;;;;;;;;;;;30977:48;6236:10;-1:-1:-1;;;;;31042:28:0;;;31038:175;;31090:44;31107:5;6236:10;32027:164;:::i;31090:44::-;31085:128;;31162:35;;-1:-1:-1;;;31162:35:0;;;;;;;;;;;31085:128;31225:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;31225:29:0;-1:-1:-1;;;;;31225:29:0;;;;;;;;;31270:28;;31225:24;;31270:28;;;;;;;30832:474;;;:::o;32258:170::-;32392:28;32402:4;32408:2;32412:7;32392:9;:28::i;:::-;32258:170;;;:::o;53394:414::-;4530:1;5128:7;;:19;;5120:63;;;;-1:-1:-1;;;5120:63:0;;;;;;;:::i;:::-;4530:1;5261:7;:18;9823:6;;-1:-1:-1;;;;;9823:6:0;6236:10;9970:23:::1;9962:68;;;;-1:-1:-1::0;;;9962:68:0::1;;;;;;;:::i;:::-;53482:21:::2;53457:22;50760:42;53591:3;53568:19;53482:21:::0;53585:2:::2;53568:19;:::i;:::-;53567:27;;;;:::i;:::-;53536:64;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53516:84;;;53619:8;53611:40;;;::::0;-1:-1:-1;;;53611:40:0;;8898:2:1;53611:40:0::2;::::0;::::2;8880:21:1::0;8937:2;8917:18;;;8910:30;-1:-1:-1;;;8956:18:1;;;8949:49;9015:18;;53611:40:0::2;8870:169:1::0;53611:40:0::2;53665:13;50845:42;53738:3;53716:18;:14:::0;53733:1:::2;53716:18;:::i;:::-;53715:26;;;;:::i;:::-;53684:63;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53664:83;;;53766:8;53758:40;;;::::0;-1:-1:-1;;;53758:40:0;;9998:2:1;53758:40:0::2;::::0;::::2;9980:21:1::0;10037:2;10017:18;;;10010:30;-1:-1:-1;;;10056:18:1;;;10049:49;10115:18;;53758:40:0::2;9970:169:1::0;53758:40:0::2;-1:-1:-1::0;;4486:1:0;5440:7;:22;-1:-1:-1;53394:414:0:o;52217:65::-;9823:6;;-1:-1:-1;;;;;9823:6:0;6236:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;52264:10:::1;:8;:10::i;:::-;52217:65::o:0;52674:122::-;9823:6;;-1:-1:-1;;;;;9823:6:0;6236:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;52756:14:::1;:32:::0;52674:122::o;32499:185::-;32637:39;32654:4;32660:2;32664:7;32637:39;;;;;;;;;;;;:16;:39::i;52290:104::-;9823:6;;-1:-1:-1;;;;;9823:6:0;6236:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;52365:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52290:104:::0;:::o;29093:144::-;29157:7;29200:27;29219:7;29200:18;:27::i;49824:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24970:224::-;25034:7;-1:-1:-1;;;;;25058:19:0;;25054:60;;25086:28;;-1:-1:-1;;;25086:28:0;;;;;;;;;;;25054:60;-1:-1:-1;;;;;;25132:25:0;;;;;:18;:25;;;;;;20309:13;25132:54;;24970:224::o;10401:103::-;9823:6;;-1:-1:-1;;;;;9823:6:0;6236:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;10466:30:::1;10493:1;10466:18;:30::i;54859:385::-:0;4530:1;5128:7;;:19;;5120:63;;;;-1:-1:-1;;;5120:63:0;;;;;;;:::i;:::-;4530:1;5261:7;:18;54977:14:::1;54968:5;::::0;::::1;;:23;::::0;::::1;;;;-1:-1:-1::0;;;54968:23:0::1;;;;;;;;;;54960:70;;;;-1:-1:-1::0;;;54960:70:0::1;;;;;;;:::i;:::-;55060:10;55050:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;55049:22;55041:68;;;;-1:-1:-1::0;;;55041:68:0::1;;;;;;;:::i;:::-;55122:73;6236:10:::0;55149:8:::1;55159:5;;55166:12;;55180:14;;55122:12;:73::i;:::-;-1:-1:-1::0;;55218:10:0::1;55208:21;::::0;;;:9:::1;:21;::::0;;;;:28;;-1:-1:-1;;55208:28:0::1;55232:4;55208:28:::0;;::::1;::::0;;;5440:7;:22;-1:-1:-1;54859:385:0:o;52148:61::-;9823:6;;-1:-1:-1;;;;;9823:6:0;6236:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;52193:8:::1;:6;:8::i;53251:86::-:0;9823:6;;-1:-1:-1;;;;;9823:6:0;6236:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;53315:5:::1;:14:::0;53251:86::o;29473:104::-;29529:13;29562:7;29555:14;;;;;:::i;31648:308::-;-1:-1:-1;;;;;31747:31:0;;6236:10;31747:31;31743:61;;;31787:17;;-1:-1:-1;;;31787:17:0;;;;;;;;;;;31743:61;6236:10;31817:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;31817:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;31817:60:0;;;;;;;;;;31893:55;;7891:41:1;;;31817:49:0;;6236:10;31893:55;;7864:18:1;31893:55:0;;;;;;;31648:308;;:::o;32755:396::-;32922:28;32932:4;32938:2;32942:7;32922:9;:28::i;:::-;-1:-1:-1;;;;;32965:14:0;;;:19;32961:183;;33004:56;33035:4;33041:2;33045:7;33054:5;33004:30;:56::i;:::-;32999:145;;33088:40;;-1:-1:-1;;;33088:40:0;;;;;;;;;;;32999:145;32755:396;;;;:::o;53092:96::-;9823:6;;-1:-1:-1;;;;;9823:6:0;6236:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;53162:5:::1;:18:::0;;53170:10;;53162:5;-1:-1:-1;;53162:18:0::1;::::0;53170:10;53162:18:::1;::::0;::::1;;;;-1:-1:-1::0;;;53162:18:0::1;;;;;;;;;;;;;;53092:96:::0;:::o;51358:327::-;51431:13;51462:16;51470:7;51462;:16::i;:::-;51457:59;;51487:29;;-1:-1:-1;;;51487:29:0;;;;;;;;;;;51457:59;51529:21;51553:10;:8;:10::i;:::-;51529:34;;51587:7;51581:21;51606:1;51581:26;;:96;;;;;;;;;;;;;;;;;51634:7;51643:18;51653:7;51643:9;:18::i;:::-;51617:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51581:96;51574:103;51358:327;-1:-1:-1;;;51358:327:0:o;52804:150::-;9823:6;;-1:-1:-1;;;;;9823:6:0;6236:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;52900:21:::1;:46:::0;52804:150::o;52524:142::-;9823:6;;-1:-1:-1;;;;;9823:6:0;6236:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;52616:19:::1;:42:::0;52524:142::o;52402:114::-;9823:6;;-1:-1:-1;;;;;9823:6:0;6236:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;52480:12:::1;:28:::0;52402:114::o;53963:113::-;-1:-1:-1;;;;;25365:25:0;;54021:7;25365:25;;;:18;:25;;20446:2;25365:25;;;;20309:13;25365:49;;25364:80;54048:20;25276:176;55680:480;4530:1;5128:7;;:19;;5120:63;;;;-1:-1:-1;;;5120:63:0;;;;;;;:::i;:::-;4530:1;5261:7;:18;;;55771:5:::1;::::0;::::1;;:25;::::0;::::1;;;;-1:-1:-1::0;;;55771:25:0::1;;;;;;;;;;55763:63;;;::::0;-1:-1:-1;;;55763:63:0;;12613:2:1;55763:63:0::1;::::0;::::1;12595:21:1::0;12652:2;12632:18;;;12625:30;-1:-1:-1;;;12671:18:1;;;12664:55;12736:18;;55763:63:0::1;12585:175:1::0;55763:63:0::1;55873:4;55861:8;55845:13;54128:7:::0;23993:13;-1:-1:-1;;23993:31:0;;54084:93;55845:13:::1;:24;;;;:::i;:::-;:32;;55837:64;;;::::0;-1:-1:-1;;;55837:64:0;;12967:2:1;55837:64:0::1;::::0;::::1;12949:21:1::0;13006:2;12986:18;;;12979:30;-1:-1:-1;;;13025:18:1;;;13018:49;13084:18;;55837:64:0::1;12939:169:1::0;55837:64:0::1;55931:18;;55920:8;:29;55912:69;;;::::0;-1:-1:-1;;;55912:69:0;;14023:2:1;55912:69:0::1;::::0;::::1;14005:21:1::0;14062:2;14042:18;;;14035:30;14101:29;14081:18;;;14074:57;14148:18;;55912:69:0::1;13995:177:1::0;55912:69:0::1;56019:10;56001:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;56000:30;55992:65;;;::::0;-1:-1:-1;;;55992:65:0;;12262:2:1;55992:65:0::1;::::0;::::1;12244:21:1::0;12301:2;12281:18;;;12274:30;-1:-1:-1;;;12320:18:1;;;12313:52;12382:18;;55992:65:0::1;12234:172:1::0;55992:65:0::1;56070:33;6236:10:::0;56080:12:::1;56094:8;56070:9;:33::i;:::-;-1:-1:-1::0;56134:10:0::1;56116:29;::::0;;;:17:::1;:29;::::0;;;;:36;;-1:-1:-1;;56116:36:0::1;56148:4;56116:36:::0;;::::1;::::0;;;5440:7;:22;55680:480::o;52962:122::-;9823:6;;-1:-1:-1;;;;;9823:6:0;6236:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;53044:14:::1;:32:::0;52962:122::o;56168:438::-;4530:1;5128:7;;:19;;5120:63;;;;-1:-1:-1;;;5120:63:0;;;;;;;:::i;:::-;4530:1;5261:7;:18;;;56255:5:::1;::::0;::::1;;:25;::::0;::::1;;;;-1:-1:-1::0;;;56255:25:0::1;;;;;;;;;;56247:63;;;::::0;-1:-1:-1;;;56247:63:0;;12613:2:1;56247:63:0::1;::::0;::::1;12595:21:1::0;12652:2;12632:18;;;12625:30;-1:-1:-1;;;12671:18:1;;;12664:55;12736:18;;56247:63:0::1;12585:175:1::0;56247:63:0::1;56357:9;56345:8;56329:13;54128:7:::0;23993:13;-1:-1:-1;;23993:31:0;;54084:93;56329:13:::1;:24;;;;:::i;:::-;:37;;56321:68;;;::::0;-1:-1:-1;;;56321:68:0;;13315:2:1;56321:68:0::1;::::0;::::1;13297:21:1::0;13354:2;13334:18;;;13327:30;-1:-1:-1;;;13373:18:1;;;13366:48;13431:18;;56321:68:0::1;13287:168:1::0;56321:68:0::1;56419:14;;56408:8;:25;56400:65;;;::::0;-1:-1:-1;;;56400:65:0;;14023:2:1;56400:65:0::1;::::0;::::1;14005:21:1::0;14062:2;14042:18;;;14035:30;14101:29;14081:18;;;14074:57;14148:18;;56400:65:0::1;13995:177:1::0;56400:65:0::1;56504:9;56492:8;56484:5;;:16;;;;:::i;:::-;:29;56476:76;;;::::0;-1:-1:-1;;;56476:76:0;;14379:2:1;56476:76:0::1;::::0;::::1;14361:21:1::0;14418:2;14398:18;;;14391:30;14457:34;14437:18;;;14430:62;-1:-1:-1;;;14508:18:1;;;14501:32;14550:19;;56476:76:0::1;14351:224:1::0;56476:76:0::1;56565:33;6236:10:::0;56575:12:::1;6156:98:::0;56565:33:::1;-1:-1:-1::0;4486:1:0;5440:7;:22;56168:438::o;10659:201::-;9823:6;;-1:-1:-1;;;;;9823:6:0;6236:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10748:22:0;::::1;10740:73;;;::::0;-1:-1:-1;;;10740:73:0;;10346:2:1;10740:73:0::1;::::0;::::1;10328:21:1::0;10385:2;10365:18;;;10358:30;10424:34;10404:18;;;10397:62;-1:-1:-1;;;10475:18:1;;;10468:36;10521:19;;10740:73:0::1;10318:228:1::0;10740:73:0::1;10824:28;10843:8;10824:18;:28::i;:::-;10659:201:::0;:::o;54289:562::-;54508:23;;;5832:2:1;5828:15;;;-1:-1:-1;;5824:53:1;54508:23:0;;;5812:66:1;54508:23:0;;;;;;;;;5894:12:1;;;;54508:23:0;;;54551:42;54559:10;54571:14;54508:23;54571:5;:14::i;:::-;54587:5;;54551:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54551:7:0;;-1:-1:-1;;;54551:42:0:i;:::-;54543:94;;;;-1:-1:-1;;;54543:94:0;;11509:2:1;54543:94:0;;;11491:21:1;11548:2;11528:18;;;11521:30;11587:34;11567:18;;;11560:62;-1:-1:-1;;;11638:18:1;;;11631:37;11685:19;;54543:94:0;11481:229:1;54543:94:0;54667:5;54656:8;:16;54648:63;;;;-1:-1:-1;;;54648:63:0;;10753:2:1;54648:63:0;;;10735:21:1;10792:2;10772:18;;;10765:30;10831:34;10811:18;;;10804:62;-1:-1:-1;;;10882:18:1;;;10875:32;10924:19;;54648:63:0;10725:224:1;54648:63:0;54770:5;54759:8;54730:26;6236:10;53963:113;:::i;54730:26::-;:37;;;;:::i;:::-;:45;54722:82;;;;-1:-1:-1;;;54722:82:0;;11156:2:1;54722:82:0;;;11138:21:1;11195:2;11175:18;;;11168:30;11234:26;11214:18;;;11207:54;11278:18;;54722:82:0;11128:174:1;54722:82:0;54817:26;54827:5;54834:8;54817:9;:26::i;:::-;54289:562;;;;;;;:::o;33406:273::-;33463:4;33519:7;51337:1;33500:26;;:66;;;;;33553:13;;33543:7;:23;33500:66;:152;;;;-1:-1:-1;;33604:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33604:43:0;:48;;33406:273::o;26608:1129::-;26675:7;26710;;51337:1;26759:23;26755:915;;26812:13;;26805:4;:20;26801:869;;;26850:14;26867:23;;;:17;:23;;;;;;-1:-1:-1;;;26956:23:0;;26952:699;;27475:113;27482:11;27475:113;;-1:-1:-1;;;27553:6:0;27535:25;;;;:17;:25;;;;;;27475:113;;26952:699;26801:869;;27698:31;;-1:-1:-1;;;27698:31:0;;;;;;;;;;;38645:2515;38760:27;38790;38809:7;38790:18;:27::i;:::-;38760:57;;38875:4;-1:-1:-1;;;;;38834:45:0;38850:19;-1:-1:-1;;;;;38834:45:0;;38830:86;;38888:28;;-1:-1:-1;;;38888:28:0;;;;;;;;;;;38830:86;38929:22;6236:10;-1:-1:-1;;;;;38955:27:0;;;;:87;;-1:-1:-1;38999:43:0;39016:4;6236:10;32027:164;:::i;38999:43::-;38955:147;;;-1:-1:-1;6236:10:0;39059:20;39071:7;39059:11;:20::i;:::-;-1:-1:-1;;;;;39059:43:0;;38955:147;38929:174;;39121:17;39116:66;;39147:35;;-1:-1:-1;;;39147:35:0;;;;;;;;;;;39116:66;-1:-1:-1;;;;;39197:16:0;;39193:52;;39222:23;;-1:-1:-1;;;39222:23:0;;;;;;;;;;;39193:52;39258:43;39280:4;39286:2;39290:7;39299:1;39258:21;:43::i;:::-;39374:24;;;;:15;:24;;;;;;;;39367:31;;-1:-1:-1;;;;;;39367:31:0;;;-1:-1:-1;;;;;39766:24:0;;;;;:18;:24;;;;;39764:26;;-1:-1:-1;;39764:26:0;;;39835:22;;;;;;;39833:24;;-1:-1:-1;39833:24:0;;;40128:26;;;:17;:26;;;;;-1:-1:-1;;;40216:15:0;20963:3;40216:41;40174:84;;:128;;40128:174;;;40422:46;;40418:626;;40526:1;40516:11;;40494:19;40649:30;;;:17;:30;;;;;;40645:384;;40787:13;;40772:11;:28;40768:242;;40934:30;;;;:17;:30;;;;;:52;;;40768:242;40418:626;;41091:7;41087:2;-1:-1:-1;;;;;41072:27:0;41081:4;-1:-1:-1;;;;;41072:27:0;;;;;;;;;;;38645:2515;;;;;:::o;8561:120::-;7573:7;;-1:-1:-1;;;7573:7:0;;;;8097:41;;;;-1:-1:-1;;;8097:41:0;;9649:2:1;8097:41:0;;;9631:21:1;9688:2;9668:18;;;9661:30;-1:-1:-1;;;9707:18:1;;;9700:50;9767:18;;8097:41:0;9621:170:1;8097:41:0;8620:7:::1;:15:::0;;-1:-1:-1;;;;8620:15:0::1;::::0;;8651:22:::1;6236:10:::0;8660:12:::1;8651:22;::::0;-1:-1:-1;;;;;7214:32:1;;;7196:51;;7184:2;7169:18;8651:22:0::1;;;;;;;8561:120::o:0;11020:191::-;11113:6;;;-1:-1:-1;;;;;11130:17:0;;;-1:-1:-1;;;;;;11130:17:0;;;;;;;11163:40;;11113:6;;;11130:17;11113:6;;11163:40;;11094:16;;11163:40;11020:191;;:::o;8302:118::-;7573:7;;-1:-1:-1;;;7573:7:0;;;;7827:9;7819:38;;;;-1:-1:-1;;;7819:38:0;;11917:2:1;7819:38:0;;;11899:21:1;11956:2;11936:18;;;11929:30;-1:-1:-1;;;11975:18:1;;;11968:46;12031:18;;7819:38:0;11889:166:1;7819:38:0;8362:7:::1;:14:::0;;-1:-1:-1;;;;8362:14:0::1;-1:-1:-1::0;;;8362:14:0::1;::::0;;8392:20:::1;8399:12;6236:10:::0;;6156:98;44857:716;45041:88;;-1:-1:-1;;;45041:88:0;;45020:4;;-1:-1:-1;;;;;45041:45:0;;;;;:88;;6236:10;;45108:4;;45114:7;;45123:5;;45041:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45041:88:0;;;;;;;;-1:-1:-1;;45041:88:0;;;;;;;;;;;;:::i;:::-;;;45037:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45324:13:0;;45320:235;;45370:40;;-1:-1:-1;;;45370:40:0;;;;;;;;;;;45320:235;45513:6;45507:13;45498:6;45494:2;45490:15;45483:38;45037:529;-1:-1:-1;;;;;;45200:64:0;-1:-1:-1;;;45200:64:0;;-1:-1:-1;45037:529:0;44857:716;;;;;;:::o;51129:108::-;51189:13;51222:7;51215:14;;;;;:::i;47599:1959::-;48070:4;48064:11;;48077:3;48060:21;;48155:17;;;;48852:11;;;48731:5;48984:2;48998;48988:13;;48980:22;48852:11;48967:36;49039:2;49029:13;;48622:682;49058:4;48622:682;;;49233:1;49228:3;49224:11;49217:18;;49284:2;49278:4;49274:13;49270:2;49266:22;49261:3;49253:36;49154:2;49144:13;;48622:682;;;-1:-1:-1;49346:13:0;;;-1:-1:-1;;49461:12:0;;;49521:19;;;49461:12;47695:1856;-1:-1:-1;47695:1856:0:o;33763:104::-;33832:27;33842:2;33846:8;33832:27;;;;;;;;;;;;:9;:27::i;56718:132::-;56779:7;56833;56816:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;56806:36;;;;;;56799:43;;56718:132;;;:::o;56858:207::-;56990:4;57014:43;57033:5;57040:10;57052:4;57014:18;:43::i;51785:251::-;7573:7;;-1:-1:-1;;;7573:7:0;;;;7827:9;7819:38;;;;-1:-1:-1;;;7819:38:0;;11917:2:1;7819:38:0;;;11899:21:1;11956:2;11936:18;;;11929:30;-1:-1:-1;;;11975:18:1;;;11968:46;12031:18;;7819:38:0;11889:166:1;7819:38:0;51972:56:::1;32755:396:::0;34240:2236;34363:20;34386:13;-1:-1:-1;;;;;34414:16:0;;34410:48;;34439:19;;-1:-1:-1;;;34439:19:0;;;;;;;;;;;34410:48;34473:13;34469:44;;34495:18;;-1:-1:-1;;;34495:18:0;;;;;;;;;;;34469:44;34526:61;34556:1;34560:2;34564:12;34578:8;34526:21;:61::i;:::-;-1:-1:-1;;;;;35062:22:0;;;;;;:18;:22;;;;20446:2;35062:22;;;:70;;35100:31;35088:44;;35062:70;;;35375:31;;;:17;:31;;;;;35468:15;20963:3;35468:41;35426:84;;-1:-1:-1;35546:13:0;;21226:3;35531:56;35426:162;35375:213;;:31;;35669:23;;;;35713:14;:19;35709:635;;35753:313;35784:38;;35809:12;;-1:-1:-1;;;;;35784:38:0;;;35801:1;;35784:38;;35801:1;;35784:38;35850:69;35889:1;35893:2;35897:14;;;;;;35913:5;35850:30;:69::i;:::-;35845:174;;35955:40;;-1:-1:-1;;;35955:40:0;;;;;;;;;;;35845:174;36061:3;36046:12;:18;35753:313;;36147:12;36130:13;;:29;36126:43;;36161:8;;;36126:43;35709:635;;;36210:119;36241:40;;36266:14;;;;;-1:-1:-1;;;;;36241:40:0;;;36258:1;;36241:40;;36258:1;;36241:40;36324:3;36309:12;:18;36210:119;;35709:635;-1:-1:-1;36358:13:0;:28;;;36408:60;;36441:2;36445:12;36459:8;36408:60;:::i;1253:190::-;1378:4;1431;1402:25;1415:5;1422:4;1402:12;:25::i;:::-;:33;;1253:190;-1:-1:-1;;;;1253:190:0:o;1804:675::-;1887:7;1930:4;1887:7;1945:497;1969:5;:12;1965:1;:16;1945:497;;;2003:20;2026:5;2032:1;2026:8;;;;;;-1:-1:-1;;;2026:8:0;;;;;;;;;;;;;;;2003:31;;2069:12;2053;:28;2049:382;;2555:13;2605:15;;;2641:4;2634:15;;;2688:4;2672:21;;2181:57;;2049:382;;;2555:13;2605:15;;;2641:4;2634:15;;;2688:4;2672:21;;2358:57;;2049:382;-1:-1:-1;1983:3:0;;;;:::i;:::-;;;;1945:497;;;-1:-1:-1;2459:12:0;1804:675;-1:-1:-1;;;1804:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:190::-;3048:6;3101:2;3089:9;3080:7;3076:23;3072:32;3069:2;;;3122:6;3114;3107:22;3069:2;-1:-1:-1;3150:23:1;;3059:120;-1:-1:-1;3059:120:1:o;3184:255::-;3242:6;3295:2;3283:9;3274:7;3270:23;3266:32;3263:2;;;3316:6;3308;3301:22;3263:2;3360:9;3347:23;3379:30;3403:5;3379:30;:::i;3444:259::-;3513:6;3566:2;3554:9;3545:7;3541:23;3537:32;3534:2;;;3587:6;3579;3572:22;3534:2;3624:9;3618:16;3643:30;3667:5;3643:30;:::i;3708:290::-;3781:6;3834:2;3822:9;3813:7;3809:23;3805:32;3802:2;;;3855:6;3847;3840:22;3802:2;3899:9;3886:23;3938:1;3931:5;3928:12;3918:2;;3959:6;3951;3944:22;4003:480;4072:6;4125:2;4113:9;4104:7;4100:23;4096:32;4093:2;;;4146:6;4138;4131:22;4093:2;4191:9;4178:23;4224:18;4216:6;4213:30;4210:2;;;4261:6;4253;4246:22;4210:2;4289:22;;4342:4;4334:13;;4330:27;-1:-1:-1;4320:2:1;;4376:6;4368;4361:22;4320:2;4404:73;4469:7;4464:2;4451:16;4446:2;4442;4438:11;4404:73;:::i;4683:733::-;4778:6;4786;4794;4847:2;4835:9;4826:7;4822:23;4818:32;4815:2;;;4868:6;4860;4853:22;4815:2;4909:9;4896:23;4886:33;;4970:2;4959:9;4955:18;4942:32;4993:18;5034:2;5026:6;5023:14;5020:2;;;5055:6;5047;5040:22;5020:2;5098:6;5087:9;5083:22;5073:32;;5143:7;5136:4;5132:2;5128:13;5124:27;5114:2;;5170:6;5162;5155:22;5114:2;5215;5202:16;5241:2;5233:6;5230:14;5227:2;;;5262:6;5254;5247:22;5227:2;5320:7;5315:2;5305:6;5302:1;5298:14;5294:2;5290:23;5286:32;5283:45;5280:2;;;5346:6;5338;5331:22;5280:2;5382;5378;5374:11;5364:21;;5404:6;5394:16;;;;;4805:611;;;;;:::o;5421:257::-;5462:3;5500:5;5494:12;5527:6;5522:3;5515:19;5543:63;5599:6;5592:4;5587:3;5583:14;5576:4;5569:5;5565:16;5543:63;:::i;:::-;5660:2;5639:15;-1:-1:-1;;5635:29:1;5626:39;;;;5667:4;5622:50;;5470:208;-1:-1:-1;;5470:208:1:o;5917:276::-;6048:3;6086:6;6080:13;6102:53;6148:6;6143:3;6136:4;6128:6;6124:17;6102:53;:::i;:::-;6171:16;;;;;6056:137;-1:-1:-1;;6056:137:1:o;6198:637::-;6478:3;6516:6;6510:13;6532:53;6578:6;6573:3;6566:4;6558:6;6554:17;6532:53;:::i;:::-;6648:13;;6607:16;;;;6670:57;6648:13;6607:16;6704:4;6692:17;;6670:57;:::i;:::-;-1:-1:-1;;;6749:20:1;;6778:22;;;6827:1;6816:13;;6486:349;-1:-1:-1;;;;6486:349:1:o;7258:488::-;-1:-1:-1;;;;;7527:15:1;;;7509:34;;7579:15;;7574:2;7559:18;;7552:43;7626:2;7611:18;;7604:34;;;7674:3;7669:2;7654:18;;7647:31;;;7452:4;;7695:45;;7720:19;;7712:6;7695:45;:::i;:::-;7687:53;7461:285;-1:-1:-1;;;;;;7461:285:1:o;8125:342::-;8271:2;8256:18;;8304:1;8293:13;;8283:2;;8349:10;8344:3;8340:20;8337:1;8330:31;8384:4;8381:1;8374:15;8412:4;8409:1;8402:15;8283:2;8436:25;;;8238:229;:::o;8472:219::-;8621:2;8610:9;8603:21;8584:4;8641:44;8681:2;8670:9;8666:18;8658:6;8641:44;:::i;9044:398::-;9246:2;9228:21;;;9285:2;9265:18;;;9258:30;9324:34;9319:2;9304:18;;9297:62;-1:-1:-1;;;9390:2:1;9375:18;;9368:32;9432:3;9417:19;;9218:224::o;13460:356::-;13662:2;13644:21;;;13681:18;;;13674:30;13740:34;13735:2;13720:18;;13713:62;13807:2;13792:18;;13634:182::o;14580:355::-;14782:2;14764:21;;;14821:2;14801:18;;;14794:30;14860:33;14855:2;14840:18;;14833:61;14926:2;14911:18;;14754:181::o;14940:397::-;15142:2;15124:21;;;15181:2;15161:18;;;15154:30;15220:34;15215:2;15200:18;;15193:62;-1:-1:-1;;;15286:2:1;15271:18;;15264:31;15327:3;15312:19;;15114:223::o;15524:128::-;15564:3;15595:1;15591:6;15588:1;15585:13;15582:2;;;15601:18;;:::i;:::-;-1:-1:-1;15637:9:1;;15572:80::o;15657:217::-;15697:1;15723;15713:2;;-1:-1:-1;;;15748:31:1;;15802:4;15799:1;15792:15;15830:4;15755:1;15820:15;15713:2;-1:-1:-1;15859:9:1;;15703:171::o;15879:168::-;15919:7;15985:1;15981;15977:6;15973:14;15970:1;15967:21;15962:1;15955:9;15948:17;15944:45;15941:2;;;15992:18;;:::i;:::-;-1:-1:-1;16032:9:1;;15931:116::o;16052:258::-;16124:1;16134:113;16148:6;16145:1;16142:13;16134:113;;;16224:11;;;16218:18;16205:11;;;16198:39;16170:2;16163:10;16134:113;;;16265:6;16262:1;16259:13;16256:2;;;-1:-1:-1;;16300:1:1;16282:16;;16275:27;16105:205::o;16315:380::-;16394:1;16390:12;;;;16437;;;16458:2;;16512:4;16504:6;16500:17;16490:27;;16458:2;16565;16557:6;16554:14;16534:18;16531:38;16528:2;;;16611:10;16606:3;16602:20;16599:1;16592:31;16646:4;16643:1;16636:15;16674:4;16671:1;16664:15;16528:2;;16370:325;;;:::o;16700:135::-;16739:3;-1:-1:-1;;16760:17:1;;16757:2;;;16780:18;;:::i;:::-;-1:-1:-1;16827:1:1;16816:13;;16747:88::o;16840:127::-;16901:10;16896:3;16892:20;16889:1;16882:31;16932:4;16929:1;16922:15;16956:4;16953:1;16946:15;16972:127;17033:10;17028:3;17024:20;17021:1;17014:31;17064:4;17061:1;17054:15;17088:4;17085:1;17078:15;17104:131;-1:-1:-1;;;;;;17178:32:1;;17168:43;;17158:2;;17225:1;17222;17215:12

Swarm Source

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