ETH Price: $3,304.47 (-3.77%)
Gas: 14 Gwei

Token

Bozo (Bozo)
 

Overview

Max Total Supply

6,666 Bozo

Holders

1,626

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 Bozo
0x62d35fb79e1003fc179a92b88e278bcdc1ae4e15
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:
Bozo

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: contracts/utils/MerkleProof.sol



pragma solidity >=0.8.7;

/**
 * @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.
 */
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 Merklee 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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}
// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

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

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

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

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

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

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

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

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

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

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

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

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

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

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

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

// File: contracts/Bozo.sol



pragma solidity >=0.8.7;






contract Bozo is ERC721A, Ownable {
    //@dev Attributes for NFT configuration
    string internal baseURI;
    uint256 public cost = 0.0035 ether;
    uint256 public maxSupply = 6666;
    uint public MAX_FREE_SUPPLY = 3333;

    uint256 public MAX_FREE_PER_TX = 2;
    uint256 public MAX_MINT_PER_TX = 5;
    uint256 public freeMints = 0;
    mapping(uint256 => string) private _tokenURIs;
    bool public paused;
    
    // @dev inner attributes of the contract
    constructor(string memory _uri) ERC721A("Bozo", "Bozo") {
        baseURI = _uri;
    }

    function mintDevSupply(uint _amount) external onlyOwner {
        _safeMint(msg.sender, _amount);
    }
    
    modifier priceCheck(uint _amount) {
        uint eligibleFreemint = 0;
        if(freeMints < MAX_FREE_SUPPLY)
            eligibleFreemint = MAX_FREE_SUPPLY - freeMints;

        if (eligibleFreemint > 1) eligibleFreemint = 2;

        require(msg.value == cost * ( _amount - eligibleFreemint ), "Invalid ETH amount");
        _;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }    
    function pause(bool _state) external onlyOwner {
        paused = _state;
    }
    /**
     * @dev get base URI for NFT metadata
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function mint(uint256 amount) external payable {
        uint costFull = getCost(amount);
        require(msg.value == costFull, "Invalid ETH amount");
        require(!paused, "Contract is paused.");
        require(amount <= MAX_MINT_PER_TX, "Exceed max mintable amount");
        require(totalSupply() + amount <= maxSupply, "Exceeds max supply.");

        if(amount > 1)
            freeMints += 2;
        else 
            freeMints++;
        _safeMint(msg.sender, amount);
    }

    /**
     * @dev change cost of NFT
     * @param _newCost new cost of each edition
     */
    function setCost(uint256 _newCost) external onlyOwner {
        cost = _newCost;
    }


    /**
     * @dev change metadata uri
     * @param _newBaseURI new URI for metadata
     */
    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    /**
     * @dev Get token URI
     * @param tokenId ID of the token to retrieve
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "URI query for nonexistent token"
        );

        if (bytes(_tokenURIs[tokenId]).length == 0) {
            string memory currentBaseURI = _baseURI();
            return
                bytes(currentBaseURI).length > 0
                    ? string(
                        abi.encodePacked(
                            currentBaseURI,
                            Strings.toString(tokenId),
                            ".json"
                        )
                    )
                    : "";
        } else return _tokenURIs[tokenId];
    }

    function getCost(uint amount) public view returns(uint) {
        uint eligibleFreemint = 0;
        if(freeMints < MAX_FREE_SUPPLY)
            eligibleFreemint = MAX_FREE_SUPPLY - freeMints;

        if (eligibleFreemint > 1) eligibleFreemint = 2;
        return cost * ( amount - eligibleFreemint );
    }

    function withdraw() external payable onlyOwner {
        // This will payout the owner 100% of the contract balance.
        // =============================================================================
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintDevSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","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":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052660c6f3b40b6c000600a55611a0a600b55610d05600c556002600d556005600e556000600f553480156200003757600080fd5b50604051620036f1380380620036f183398181016040528101906200005d919062000358565b6040518060400160405280600481526020017f426f7a6f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f426f7a6f000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e19291906200022a565b508060039080519060200190620000fa9291906200022a565b506200010b6200015360201b60201c565b600081905550505062000133620001276200015c60201b60201c565b6200016460201b60201c565b80600990805190602001906200014b9291906200022a565b50506200052d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000238906200043e565b90600052602060002090601f0160209004810192826200025c5760008555620002a8565b82601f106200027757805160ff1916838001178555620002a8565b82800160010185558215620002a8579182015b82811115620002a75782518255916020019190600101906200028a565b5b509050620002b79190620002bb565b5090565b5b80821115620002d6576000816000905550600101620002bc565b5090565b6000620002f1620002eb84620003d2565b620003a9565b90508281526020810184848401111562000310576200030f6200050d565b5b6200031d84828562000408565b509392505050565b600082601f8301126200033d576200033c62000508565b5b81516200034f848260208601620002da565b91505092915050565b60006020828403121562000371576200037062000517565b5b600082015167ffffffffffffffff81111562000392576200039162000512565b5b620003a08482850162000325565b91505092915050565b6000620003b5620003c8565b9050620003c3828262000474565b919050565b6000604051905090565b600067ffffffffffffffff821115620003f057620003ef620004d9565b5b620003fb826200051c565b9050602081019050919050565b60005b83811015620004285780820151818401526020810190506200040b565b8381111562000438576000848401525b50505050565b600060028204905060018216806200045757607f821691505b602082108114156200046e576200046d620004aa565b5b50919050565b6200047f826200051c565b810181811067ffffffffffffffff82111715620004a157620004a0620004d9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6131b4806200053d6000396000f3fe6080604052600436106101d85760003560e01c80635c975abb11610102578063a0712d6811610095578063ccb22f0911610064578063ccb22f091461067c578063d5abeb01146106a7578063e985e9c5146106d2578063f2fde38b1461070f576101d8565b8063a0712d68146105d1578063a22cb465146105ed578063b88d4fde14610616578063c87b56dd1461063f576101d8565b806380b17335116100d157806380b17335146105255780638da5cb5b146105505780638ecad7211461057b57806395d89b41146105a6576101d8565b80635c975abb146104695780636352211e1461049457806370a08231146104d1578063715018a61461050e576101d8565b806318160ddd1161017a57806344a0d68a1161014957806344a0d68a146103b15780635172f18c146103da57806355f804b3146104035780635a4dd47d1461042c576101d8565b806318160ddd1461032a57806323b872dd146103555780633ccfd60b1461037e57806342842e0e14610388576101d8565b806306fdde03116101b657806306fdde031461026e578063081812fc14610299578063095ea7b3146102d657806313faede6146102ff576101d8565b806301ffc9a7146101dd57806302329a291461021a57806302ddb65b14610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612666565b610738565b60405161021191906129ec565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612639565b6107ca565b005b34801561024f57600080fd5b50610258610863565b6040516102659190612b09565b60405180910390f35b34801561027a57600080fd5b50610283610869565b6040516102909190612a07565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190612709565b6108fb565b6040516102cd9190612985565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906125f9565b610977565b005b34801561030b57600080fd5b50610314610ab8565b6040516103219190612b09565b60405180910390f35b34801561033657600080fd5b5061033f610abe565b60405161034c9190612b09565b60405180910390f35b34801561036157600080fd5b5061037c600480360381019061037791906124e3565b610ad5565b005b610386610dfa565b005b34801561039457600080fd5b506103af60048036038101906103aa91906124e3565b610ef6565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612709565b610f16565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612709565b610f9c565b005b34801561040f57600080fd5b5061042a600480360381019061042591906126c0565b611025565b005b34801561043857600080fd5b50610453600480360381019061044e9190612709565b6110bb565b6040516104609190612b09565b60405180910390f35b34801561047557600080fd5b5061047e611110565b60405161048b91906129ec565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612709565b611123565b6040516104c89190612985565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190612476565b611135565b6040516105059190612b09565b60405180910390f35b34801561051a57600080fd5b506105236111ee565b005b34801561053157600080fd5b5061053a611276565b6040516105479190612b09565b60405180910390f35b34801561055c57600080fd5b5061056561127c565b6040516105729190612985565b60405180910390f35b34801561058757600080fd5b506105906112a6565b60405161059d9190612b09565b60405180910390f35b3480156105b257600080fd5b506105bb6112ac565b6040516105c89190612a07565b60405180910390f35b6105eb60048036038101906105e69190612709565b61133e565b005b3480156105f957600080fd5b50610614600480360381019061060f91906125b9565b6114c8565b005b34801561062257600080fd5b5061063d60048036038101906106389190612536565b611640565b005b34801561064b57600080fd5b5061066660048036038101906106619190612709565b6116b3565b6040516106739190612a07565b60405180910390f35b34801561068857600080fd5b50610691611826565b60405161069e9190612b09565b60405180910390f35b3480156106b357600080fd5b506106bc61182c565b6040516106c99190612b09565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f491906124a3565b611832565b60405161070691906129ec565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612476565b6118c6565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6107d26119be565b73ffffffffffffffffffffffffffffffffffffffff166107f061127c565b73ffffffffffffffffffffffffffffffffffffffff1614610846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083d90612a89565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b600c5481565b60606002805461087890612dc4565b80601f01602080910402602001604051908101604052809291908181526020018280546108a490612dc4565b80156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b5050505050905090565b6000610906826119c6565b61093c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098282611123565b90508073ffffffffffffffffffffffffffffffffffffffff166109a3611a25565b73ffffffffffffffffffffffffffffffffffffffff1614610a06576109cf816109ca611a25565b611832565b610a05576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b6000610ac8611a2d565b6001546000540303905090565b6000610ae082611a36565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b47576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b5384611b04565b91509150610b698187610b64611a25565b611b26565b610bb557610b7e86610b79611a25565b611832565b610bb4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c1c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c298686866001611b6a565b8015610c3457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0285610cde888887611b70565b7c020000000000000000000000000000000000000000000000000000000017611b98565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d8a576000600185019050600060046000838152602001908152602001600020541415610d88576000548114610d87578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610df28686866001611bc3565b505050505050565b610e026119be565b73ffffffffffffffffffffffffffffffffffffffff16610e2061127c565b73ffffffffffffffffffffffffffffffffffffffff1614610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90612a89565b60405180910390fd5b6000610e8061127c565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ea390612970565b60006040518083038185875af1925050503d8060008114610ee0576040519150601f19603f3d011682016040523d82523d6000602084013e610ee5565b606091505b5050905080610ef357600080fd5b50565b610f1183838360405180602001604052806000815250611640565b505050565b610f1e6119be565b73ffffffffffffffffffffffffffffffffffffffff16610f3c61127c565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990612a89565b60405180910390fd5b80600a8190555050565b610fa46119be565b73ffffffffffffffffffffffffffffffffffffffff16610fc261127c565b73ffffffffffffffffffffffffffffffffffffffff1614611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90612a89565b60405180910390fd5b6110223382611bc9565b50565b61102d6119be565b73ffffffffffffffffffffffffffffffffffffffff1661104b61127c565b73ffffffffffffffffffffffffffffffffffffffff16146110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890612a89565b60405180910390fd5b80600990805190602001906110b792919061228a565b5050565b60008060009050600c54600f5410156110e157600f54600c546110de9190612cda565b90505b60018111156110ef57600290505b80836110fb9190612cda565b600a546111089190612c80565b915050919050565b601160009054906101000a900460ff1681565b600061112e82611a36565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561119d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111f66119be565b73ffffffffffffffffffffffffffffffffffffffff1661121461127c565b73ffffffffffffffffffffffffffffffffffffffff161461126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190612a89565b60405180910390fd5b6112746000611be7565b565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546112bb90612dc4565b80601f01602080910402602001604051908101604052809291908181526020018280546112e790612dc4565b80156113345780601f1061130957610100808354040283529160200191611334565b820191906000526020600020905b81548152906001019060200180831161131757829003601f168201915b5050505050905090565b6000611349826110bb565b905080341461138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490612a69565b60405180910390fd5b601160009054906101000a900460ff16156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490612ae9565b60405180910390fd5b600e54821115611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990612ac9565b60405180910390fd5b600b548261142e610abe565b6114389190612bf9565b1115611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090612aa9565b60405180910390fd5b60018211156114a1576002600f60008282546114959190612bf9565b925050819055506114ba565b600f60008154809291906114b490612e27565b91905055505b6114c43383611bc9565b5050565b6114d0611a25565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611535576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611542611a25565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115ef611a25565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163491906129ec565b60405180910390a35050565b61164b848484610ad5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116ad5761167684848484611cad565b6116ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116be826119c6565b6116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490612a29565b60405180910390fd5b600060106000848152602001908152602001600020805461171d90612dc4565b9050141561178257600061172f611e0d565b9050600081511161174f576040518060200160405280600081525061177a565b8061175984611e9f565b60405160200161176a929190612941565b6040516020818303038152906040525b915050611821565b6010600083815260200190815260200160002080546117a090612dc4565b80601f01602080910402602001604051908101604052809291908181526020018280546117cc90612dc4565b80156118195780601f106117ee57610100808354040283529160200191611819565b820191906000526020600020905b8154815290600101906020018083116117fc57829003601f168201915b505050505090505b919050565b600d5481565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118ce6119be565b73ffffffffffffffffffffffffffffffffffffffff166118ec61127c565b73ffffffffffffffffffffffffffffffffffffffff1614611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990612a89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990612a49565b60405180910390fd5b6119bb81611be7565b50565b600033905090565b6000816119d1611a2d565b111580156119e0575060005482105b8015611a1e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611a45611a2d565b11611acd57600054811015611acc5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611aca575b6000811415611ac0576004600083600190039350838152602001908152602001600020549050611a95565b8092505050611aff565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b87868684612000565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611be3828260405180602001604052806000815250612009565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cd3611a25565b8786866040518563ffffffff1660e01b8152600401611cf594939291906129a0565b602060405180830381600087803b158015611d0f57600080fd5b505af1925050508015611d4057506040513d601f19601f82011682018060405250810190611d3d9190612693565b60015b611dba573d8060008114611d70576040519150601f19603f3d011682016040523d82523d6000602084013e611d75565b606091505b50600081511415611db2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611e1c90612dc4565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4890612dc4565b8015611e955780601f10611e6a57610100808354040283529160200191611e95565b820191906000526020600020905b815481529060010190602001808311611e7857829003601f168201915b5050505050905090565b60606000821415611ee7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ffb565b600082905060005b60008214611f19578080611f0290612e27565b915050600a82611f129190612c4f565b9150611eef565b60008167ffffffffffffffff811115611f3557611f34612f5d565b5b6040519080825280601f01601f191660200182016040528015611f675781602001600182028036833780820191505090505b5090505b60008514611ff457600182611f809190612cda565b9150600a85611f8f9190612e70565b6030611f9b9190612bf9565b60f81b818381518110611fb157611fb0612f2e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fed9190612c4f565b9450611f6b565b8093505050505b919050565b60009392505050565b61201383836120a6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120a157600080549050600083820390505b6120536000868380600101945086611cad565b612089576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061204057816000541461209e57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612113576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561214e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61215b6000848385611b6a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121d2836121c36000866000611b70565b6121cc8561227a565b17611b98565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106121f6578060008190555050506122756000848385611bc3565b505050565b60006001821460e11b9050919050565b82805461229690612dc4565b90600052602060002090601f0160209004810192826122b857600085556122ff565b82601f106122d157805160ff19168380011785556122ff565b828001600101855582156122ff579182015b828111156122fe5782518255916020019190600101906122e3565b5b50905061230c9190612310565b5090565b5b80821115612329576000816000905550600101612311565b5090565b600061234061233b84612b49565b612b24565b90508281526020810184848401111561235c5761235b612f91565b5b612367848285612d82565b509392505050565b600061238261237d84612b7a565b612b24565b90508281526020810184848401111561239e5761239d612f91565b5b6123a9848285612d82565b509392505050565b6000813590506123c081613122565b92915050565b6000813590506123d581613139565b92915050565b6000813590506123ea81613150565b92915050565b6000815190506123ff81613150565b92915050565b600082601f83011261241a57612419612f8c565b5b813561242a84826020860161232d565b91505092915050565b600082601f83011261244857612447612f8c565b5b813561245884826020860161236f565b91505092915050565b60008135905061247081613167565b92915050565b60006020828403121561248c5761248b612f9b565b5b600061249a848285016123b1565b91505092915050565b600080604083850312156124ba576124b9612f9b565b5b60006124c8858286016123b1565b92505060206124d9858286016123b1565b9150509250929050565b6000806000606084860312156124fc576124fb612f9b565b5b600061250a868287016123b1565b935050602061251b868287016123b1565b925050604061252c86828701612461565b9150509250925092565b600080600080608085870312156125505761254f612f9b565b5b600061255e878288016123b1565b945050602061256f878288016123b1565b935050604061258087828801612461565b925050606085013567ffffffffffffffff8111156125a1576125a0612f96565b5b6125ad87828801612405565b91505092959194509250565b600080604083850312156125d0576125cf612f9b565b5b60006125de858286016123b1565b92505060206125ef858286016123c6565b9150509250929050565b600080604083850312156126105761260f612f9b565b5b600061261e858286016123b1565b925050602061262f85828601612461565b9150509250929050565b60006020828403121561264f5761264e612f9b565b5b600061265d848285016123c6565b91505092915050565b60006020828403121561267c5761267b612f9b565b5b600061268a848285016123db565b91505092915050565b6000602082840312156126a9576126a8612f9b565b5b60006126b7848285016123f0565b91505092915050565b6000602082840312156126d6576126d5612f9b565b5b600082013567ffffffffffffffff8111156126f4576126f3612f96565b5b61270084828501612433565b91505092915050565b60006020828403121561271f5761271e612f9b565b5b600061272d84828501612461565b91505092915050565b61273f81612d0e565b82525050565b61274e81612d20565b82525050565b600061275f82612bab565b6127698185612bc1565b9350612779818560208601612d91565b61278281612fa0565b840191505092915050565b600061279882612bb6565b6127a28185612bdd565b93506127b2818560208601612d91565b6127bb81612fa0565b840191505092915050565b60006127d182612bb6565b6127db8185612bee565b93506127eb818560208601612d91565b80840191505092915050565b6000612804601f83612bdd565b915061280f82612fb1565b602082019050919050565b6000612827602683612bdd565b915061283282612fda565b604082019050919050565b600061284a601283612bdd565b915061285582613029565b602082019050919050565b600061286d600583612bee565b915061287882613052565b600582019050919050565b6000612890602083612bdd565b915061289b8261307b565b602082019050919050565b60006128b3601383612bdd565b91506128be826130a4565b602082019050919050565b60006128d6600083612bd2565b91506128e1826130cd565b600082019050919050565b60006128f9601a83612bdd565b9150612904826130d0565b602082019050919050565b600061291c601383612bdd565b9150612927826130f9565b602082019050919050565b61293b81612d78565b82525050565b600061294d82856127c6565b915061295982846127c6565b915061296482612860565b91508190509392505050565b600061297b826128c9565b9150819050919050565b600060208201905061299a6000830184612736565b92915050565b60006080820190506129b56000830187612736565b6129c26020830186612736565b6129cf6040830185612932565b81810360608301526129e18184612754565b905095945050505050565b6000602082019050612a016000830184612745565b92915050565b60006020820190508181036000830152612a21818461278d565b905092915050565b60006020820190508181036000830152612a42816127f7565b9050919050565b60006020820190508181036000830152612a628161281a565b9050919050565b60006020820190508181036000830152612a828161283d565b9050919050565b60006020820190508181036000830152612aa281612883565b9050919050565b60006020820190508181036000830152612ac2816128a6565b9050919050565b60006020820190508181036000830152612ae2816128ec565b9050919050565b60006020820190508181036000830152612b028161290f565b9050919050565b6000602082019050612b1e6000830184612932565b92915050565b6000612b2e612b3f565b9050612b3a8282612df6565b919050565b6000604051905090565b600067ffffffffffffffff821115612b6457612b63612f5d565b5b612b6d82612fa0565b9050602081019050919050565b600067ffffffffffffffff821115612b9557612b94612f5d565b5b612b9e82612fa0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c0482612d78565b9150612c0f83612d78565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c4457612c43612ea1565b5b828201905092915050565b6000612c5a82612d78565b9150612c6583612d78565b925082612c7557612c74612ed0565b5b828204905092915050565b6000612c8b82612d78565b9150612c9683612d78565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ccf57612cce612ea1565b5b828202905092915050565b6000612ce582612d78565b9150612cf083612d78565b925082821015612d0357612d02612ea1565b5b828203905092915050565b6000612d1982612d58565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612daf578082015181840152602081019050612d94565b83811115612dbe576000848401525b50505050565b60006002820490506001821680612ddc57607f821691505b60208210811415612df057612def612eff565b5b50919050565b612dff82612fa0565b810181811067ffffffffffffffff82111715612e1e57612e1d612f5d565b5b80604052505050565b6000612e3282612d78565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e6557612e64612ea1565b5b600182019050919050565b6000612e7b82612d78565b9150612e8683612d78565b925082612e9657612e95612ed0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642045544820616d6f756e740000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b50565b7f457863656564206d6178206d696e7461626c6520616d6f756e74000000000000600082015250565b7f436f6e7472616374206973207061757365642e00000000000000000000000000600082015250565b61312b81612d0e565b811461313657600080fd5b50565b61314281612d20565b811461314d57600080fd5b50565b61315981612d2c565b811461316457600080fd5b50565b61317081612d78565b811461317b57600080fd5b5056fea2646970667358221220e097cc378a49f4c4a00d926c7451bf25e75b9ccc1f9585d990cb3f361de48f8b64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65717065416d535751694b42685970766d736e4262454d36426643564e483854316e61386b475445545671462f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80635c975abb11610102578063a0712d6811610095578063ccb22f0911610064578063ccb22f091461067c578063d5abeb01146106a7578063e985e9c5146106d2578063f2fde38b1461070f576101d8565b8063a0712d68146105d1578063a22cb465146105ed578063b88d4fde14610616578063c87b56dd1461063f576101d8565b806380b17335116100d157806380b17335146105255780638da5cb5b146105505780638ecad7211461057b57806395d89b41146105a6576101d8565b80635c975abb146104695780636352211e1461049457806370a08231146104d1578063715018a61461050e576101d8565b806318160ddd1161017a57806344a0d68a1161014957806344a0d68a146103b15780635172f18c146103da57806355f804b3146104035780635a4dd47d1461042c576101d8565b806318160ddd1461032a57806323b872dd146103555780633ccfd60b1461037e57806342842e0e14610388576101d8565b806306fdde03116101b657806306fdde031461026e578063081812fc14610299578063095ea7b3146102d657806313faede6146102ff576101d8565b806301ffc9a7146101dd57806302329a291461021a57806302ddb65b14610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612666565b610738565b60405161021191906129ec565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612639565b6107ca565b005b34801561024f57600080fd5b50610258610863565b6040516102659190612b09565b60405180910390f35b34801561027a57600080fd5b50610283610869565b6040516102909190612a07565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190612709565b6108fb565b6040516102cd9190612985565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906125f9565b610977565b005b34801561030b57600080fd5b50610314610ab8565b6040516103219190612b09565b60405180910390f35b34801561033657600080fd5b5061033f610abe565b60405161034c9190612b09565b60405180910390f35b34801561036157600080fd5b5061037c600480360381019061037791906124e3565b610ad5565b005b610386610dfa565b005b34801561039457600080fd5b506103af60048036038101906103aa91906124e3565b610ef6565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612709565b610f16565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612709565b610f9c565b005b34801561040f57600080fd5b5061042a600480360381019061042591906126c0565b611025565b005b34801561043857600080fd5b50610453600480360381019061044e9190612709565b6110bb565b6040516104609190612b09565b60405180910390f35b34801561047557600080fd5b5061047e611110565b60405161048b91906129ec565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612709565b611123565b6040516104c89190612985565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190612476565b611135565b6040516105059190612b09565b60405180910390f35b34801561051a57600080fd5b506105236111ee565b005b34801561053157600080fd5b5061053a611276565b6040516105479190612b09565b60405180910390f35b34801561055c57600080fd5b5061056561127c565b6040516105729190612985565b60405180910390f35b34801561058757600080fd5b506105906112a6565b60405161059d9190612b09565b60405180910390f35b3480156105b257600080fd5b506105bb6112ac565b6040516105c89190612a07565b60405180910390f35b6105eb60048036038101906105e69190612709565b61133e565b005b3480156105f957600080fd5b50610614600480360381019061060f91906125b9565b6114c8565b005b34801561062257600080fd5b5061063d60048036038101906106389190612536565b611640565b005b34801561064b57600080fd5b5061066660048036038101906106619190612709565b6116b3565b6040516106739190612a07565b60405180910390f35b34801561068857600080fd5b50610691611826565b60405161069e9190612b09565b60405180910390f35b3480156106b357600080fd5b506106bc61182c565b6040516106c99190612b09565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f491906124a3565b611832565b60405161070691906129ec565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612476565b6118c6565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6107d26119be565b73ffffffffffffffffffffffffffffffffffffffff166107f061127c565b73ffffffffffffffffffffffffffffffffffffffff1614610846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083d90612a89565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b600c5481565b60606002805461087890612dc4565b80601f01602080910402602001604051908101604052809291908181526020018280546108a490612dc4565b80156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b5050505050905090565b6000610906826119c6565b61093c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098282611123565b90508073ffffffffffffffffffffffffffffffffffffffff166109a3611a25565b73ffffffffffffffffffffffffffffffffffffffff1614610a06576109cf816109ca611a25565b611832565b610a05576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b6000610ac8611a2d565b6001546000540303905090565b6000610ae082611a36565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b47576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b5384611b04565b91509150610b698187610b64611a25565b611b26565b610bb557610b7e86610b79611a25565b611832565b610bb4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c1c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c298686866001611b6a565b8015610c3457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0285610cde888887611b70565b7c020000000000000000000000000000000000000000000000000000000017611b98565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d8a576000600185019050600060046000838152602001908152602001600020541415610d88576000548114610d87578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610df28686866001611bc3565b505050505050565b610e026119be565b73ffffffffffffffffffffffffffffffffffffffff16610e2061127c565b73ffffffffffffffffffffffffffffffffffffffff1614610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90612a89565b60405180910390fd5b6000610e8061127c565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ea390612970565b60006040518083038185875af1925050503d8060008114610ee0576040519150601f19603f3d011682016040523d82523d6000602084013e610ee5565b606091505b5050905080610ef357600080fd5b50565b610f1183838360405180602001604052806000815250611640565b505050565b610f1e6119be565b73ffffffffffffffffffffffffffffffffffffffff16610f3c61127c565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990612a89565b60405180910390fd5b80600a8190555050565b610fa46119be565b73ffffffffffffffffffffffffffffffffffffffff16610fc261127c565b73ffffffffffffffffffffffffffffffffffffffff1614611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90612a89565b60405180910390fd5b6110223382611bc9565b50565b61102d6119be565b73ffffffffffffffffffffffffffffffffffffffff1661104b61127c565b73ffffffffffffffffffffffffffffffffffffffff16146110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890612a89565b60405180910390fd5b80600990805190602001906110b792919061228a565b5050565b60008060009050600c54600f5410156110e157600f54600c546110de9190612cda565b90505b60018111156110ef57600290505b80836110fb9190612cda565b600a546111089190612c80565b915050919050565b601160009054906101000a900460ff1681565b600061112e82611a36565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561119d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111f66119be565b73ffffffffffffffffffffffffffffffffffffffff1661121461127c565b73ffffffffffffffffffffffffffffffffffffffff161461126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190612a89565b60405180910390fd5b6112746000611be7565b565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546112bb90612dc4565b80601f01602080910402602001604051908101604052809291908181526020018280546112e790612dc4565b80156113345780601f1061130957610100808354040283529160200191611334565b820191906000526020600020905b81548152906001019060200180831161131757829003601f168201915b5050505050905090565b6000611349826110bb565b905080341461138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490612a69565b60405180910390fd5b601160009054906101000a900460ff16156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490612ae9565b60405180910390fd5b600e54821115611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990612ac9565b60405180910390fd5b600b548261142e610abe565b6114389190612bf9565b1115611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090612aa9565b60405180910390fd5b60018211156114a1576002600f60008282546114959190612bf9565b925050819055506114ba565b600f60008154809291906114b490612e27565b91905055505b6114c43383611bc9565b5050565b6114d0611a25565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611535576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611542611a25565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115ef611a25565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163491906129ec565b60405180910390a35050565b61164b848484610ad5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116ad5761167684848484611cad565b6116ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116be826119c6565b6116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490612a29565b60405180910390fd5b600060106000848152602001908152602001600020805461171d90612dc4565b9050141561178257600061172f611e0d565b9050600081511161174f576040518060200160405280600081525061177a565b8061175984611e9f565b60405160200161176a929190612941565b6040516020818303038152906040525b915050611821565b6010600083815260200190815260200160002080546117a090612dc4565b80601f01602080910402602001604051908101604052809291908181526020018280546117cc90612dc4565b80156118195780601f106117ee57610100808354040283529160200191611819565b820191906000526020600020905b8154815290600101906020018083116117fc57829003601f168201915b505050505090505b919050565b600d5481565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118ce6119be565b73ffffffffffffffffffffffffffffffffffffffff166118ec61127c565b73ffffffffffffffffffffffffffffffffffffffff1614611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990612a89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990612a49565b60405180910390fd5b6119bb81611be7565b50565b600033905090565b6000816119d1611a2d565b111580156119e0575060005482105b8015611a1e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611a45611a2d565b11611acd57600054811015611acc5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611aca575b6000811415611ac0576004600083600190039350838152602001908152602001600020549050611a95565b8092505050611aff565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b87868684612000565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611be3828260405180602001604052806000815250612009565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cd3611a25565b8786866040518563ffffffff1660e01b8152600401611cf594939291906129a0565b602060405180830381600087803b158015611d0f57600080fd5b505af1925050508015611d4057506040513d601f19601f82011682018060405250810190611d3d9190612693565b60015b611dba573d8060008114611d70576040519150601f19603f3d011682016040523d82523d6000602084013e611d75565b606091505b50600081511415611db2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611e1c90612dc4565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4890612dc4565b8015611e955780601f10611e6a57610100808354040283529160200191611e95565b820191906000526020600020905b815481529060010190602001808311611e7857829003601f168201915b5050505050905090565b60606000821415611ee7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ffb565b600082905060005b60008214611f19578080611f0290612e27565b915050600a82611f129190612c4f565b9150611eef565b60008167ffffffffffffffff811115611f3557611f34612f5d565b5b6040519080825280601f01601f191660200182016040528015611f675781602001600182028036833780820191505090505b5090505b60008514611ff457600182611f809190612cda565b9150600a85611f8f9190612e70565b6030611f9b9190612bf9565b60f81b818381518110611fb157611fb0612f2e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fed9190612c4f565b9450611f6b565b8093505050505b919050565b60009392505050565b61201383836120a6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120a157600080549050600083820390505b6120536000868380600101945086611cad565b612089576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061204057816000541461209e57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612113576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561214e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61215b6000848385611b6a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121d2836121c36000866000611b70565b6121cc8561227a565b17611b98565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106121f6578060008190555050506122756000848385611bc3565b505050565b60006001821460e11b9050919050565b82805461229690612dc4565b90600052602060002090601f0160209004810192826122b857600085556122ff565b82601f106122d157805160ff19168380011785556122ff565b828001600101855582156122ff579182015b828111156122fe5782518255916020019190600101906122e3565b5b50905061230c9190612310565b5090565b5b80821115612329576000816000905550600101612311565b5090565b600061234061233b84612b49565b612b24565b90508281526020810184848401111561235c5761235b612f91565b5b612367848285612d82565b509392505050565b600061238261237d84612b7a565b612b24565b90508281526020810184848401111561239e5761239d612f91565b5b6123a9848285612d82565b509392505050565b6000813590506123c081613122565b92915050565b6000813590506123d581613139565b92915050565b6000813590506123ea81613150565b92915050565b6000815190506123ff81613150565b92915050565b600082601f83011261241a57612419612f8c565b5b813561242a84826020860161232d565b91505092915050565b600082601f83011261244857612447612f8c565b5b813561245884826020860161236f565b91505092915050565b60008135905061247081613167565b92915050565b60006020828403121561248c5761248b612f9b565b5b600061249a848285016123b1565b91505092915050565b600080604083850312156124ba576124b9612f9b565b5b60006124c8858286016123b1565b92505060206124d9858286016123b1565b9150509250929050565b6000806000606084860312156124fc576124fb612f9b565b5b600061250a868287016123b1565b935050602061251b868287016123b1565b925050604061252c86828701612461565b9150509250925092565b600080600080608085870312156125505761254f612f9b565b5b600061255e878288016123b1565b945050602061256f878288016123b1565b935050604061258087828801612461565b925050606085013567ffffffffffffffff8111156125a1576125a0612f96565b5b6125ad87828801612405565b91505092959194509250565b600080604083850312156125d0576125cf612f9b565b5b60006125de858286016123b1565b92505060206125ef858286016123c6565b9150509250929050565b600080604083850312156126105761260f612f9b565b5b600061261e858286016123b1565b925050602061262f85828601612461565b9150509250929050565b60006020828403121561264f5761264e612f9b565b5b600061265d848285016123c6565b91505092915050565b60006020828403121561267c5761267b612f9b565b5b600061268a848285016123db565b91505092915050565b6000602082840312156126a9576126a8612f9b565b5b60006126b7848285016123f0565b91505092915050565b6000602082840312156126d6576126d5612f9b565b5b600082013567ffffffffffffffff8111156126f4576126f3612f96565b5b61270084828501612433565b91505092915050565b60006020828403121561271f5761271e612f9b565b5b600061272d84828501612461565b91505092915050565b61273f81612d0e565b82525050565b61274e81612d20565b82525050565b600061275f82612bab565b6127698185612bc1565b9350612779818560208601612d91565b61278281612fa0565b840191505092915050565b600061279882612bb6565b6127a28185612bdd565b93506127b2818560208601612d91565b6127bb81612fa0565b840191505092915050565b60006127d182612bb6565b6127db8185612bee565b93506127eb818560208601612d91565b80840191505092915050565b6000612804601f83612bdd565b915061280f82612fb1565b602082019050919050565b6000612827602683612bdd565b915061283282612fda565b604082019050919050565b600061284a601283612bdd565b915061285582613029565b602082019050919050565b600061286d600583612bee565b915061287882613052565b600582019050919050565b6000612890602083612bdd565b915061289b8261307b565b602082019050919050565b60006128b3601383612bdd565b91506128be826130a4565b602082019050919050565b60006128d6600083612bd2565b91506128e1826130cd565b600082019050919050565b60006128f9601a83612bdd565b9150612904826130d0565b602082019050919050565b600061291c601383612bdd565b9150612927826130f9565b602082019050919050565b61293b81612d78565b82525050565b600061294d82856127c6565b915061295982846127c6565b915061296482612860565b91508190509392505050565b600061297b826128c9565b9150819050919050565b600060208201905061299a6000830184612736565b92915050565b60006080820190506129b56000830187612736565b6129c26020830186612736565b6129cf6040830185612932565b81810360608301526129e18184612754565b905095945050505050565b6000602082019050612a016000830184612745565b92915050565b60006020820190508181036000830152612a21818461278d565b905092915050565b60006020820190508181036000830152612a42816127f7565b9050919050565b60006020820190508181036000830152612a628161281a565b9050919050565b60006020820190508181036000830152612a828161283d565b9050919050565b60006020820190508181036000830152612aa281612883565b9050919050565b60006020820190508181036000830152612ac2816128a6565b9050919050565b60006020820190508181036000830152612ae2816128ec565b9050919050565b60006020820190508181036000830152612b028161290f565b9050919050565b6000602082019050612b1e6000830184612932565b92915050565b6000612b2e612b3f565b9050612b3a8282612df6565b919050565b6000604051905090565b600067ffffffffffffffff821115612b6457612b63612f5d565b5b612b6d82612fa0565b9050602081019050919050565b600067ffffffffffffffff821115612b9557612b94612f5d565b5b612b9e82612fa0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c0482612d78565b9150612c0f83612d78565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c4457612c43612ea1565b5b828201905092915050565b6000612c5a82612d78565b9150612c6583612d78565b925082612c7557612c74612ed0565b5b828204905092915050565b6000612c8b82612d78565b9150612c9683612d78565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ccf57612cce612ea1565b5b828202905092915050565b6000612ce582612d78565b9150612cf083612d78565b925082821015612d0357612d02612ea1565b5b828203905092915050565b6000612d1982612d58565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612daf578082015181840152602081019050612d94565b83811115612dbe576000848401525b50505050565b60006002820490506001821680612ddc57607f821691505b60208210811415612df057612def612eff565b5b50919050565b612dff82612fa0565b810181811067ffffffffffffffff82111715612e1e57612e1d612f5d565b5b80604052505050565b6000612e3282612d78565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e6557612e64612ea1565b5b600182019050919050565b6000612e7b82612d78565b9150612e8683612d78565b925082612e9657612e95612ed0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642045544820616d6f756e740000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b50565b7f457863656564206d6178206d696e7461626c6520616d6f756e74000000000000600082015250565b7f436f6e7472616374206973207061757365642e00000000000000000000000000600082015250565b61312b81612d0e565b811461313657600080fd5b50565b61314281612d20565b811461314d57600080fd5b50565b61315981612d2c565b811461316457600080fd5b50565b61317081612d78565b811461317b57600080fd5b5056fea2646970667358221220e097cc378a49f4c4a00d926c7451bf25e75b9ccc1f9585d990cb3f361de48f8b64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65717065416d535751694b42685970766d736e4262454d36426643564e483854316e61386b475445545671462f00000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmeqpeAmSWQiKBhYpvmsnBbEM6BfCVNH8T1na8kGTETVqF/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d65717065416d535751694b42685970766d736e4262454d
Arg [3] : 36426643564e483854316e61386b475445545671462f00000000000000000000


Deployed Bytecode Sourcemap

52790:3859:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22585:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53952:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52985:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28232:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30178:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29726:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52906:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21639:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39443:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56330:316;;;:::i;:::-;;31068:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54822:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53371:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55019:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56007:315;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53197:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28021:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23264:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7176:103;;;;;;;;;;;;;:::i;:::-;;53110:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6525:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53069:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28401:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54216:499;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30454:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31324:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55229:770;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53028:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52947:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30833:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7434:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22585:615;22670:4;22985:10;22970:25;;:11;:25;;;;:102;;;;23062:10;23047:25;;:11;:25;;;;22970:102;:179;;;;23139:10;23124:25;;:11;:25;;;;22970:179;22950:199;;22585:615;;;:::o;53952:81::-;6756:12;:10;:12::i;:::-;6745:23;;:7;:5;:7::i;:::-;:23;;;6737:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54019:6:::1;54010;;:15;;;;;;;;;;;;;;;;;;53952:81:::0;:::o;52985:34::-;;;;:::o;28232:100::-;28286:13;28319:5;28312:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28232:100;:::o;30178:204::-;30246:7;30271:16;30279:7;30271;:16::i;:::-;30266:64;;30296:34;;;;;;;;;;;;;;30266:64;30350:15;:24;30366:7;30350:24;;;;;;;;;;;;;;;;;;;;;30343:31;;30178:204;;;:::o;29726:386::-;29799:13;29815:16;29823:7;29815;:16::i;:::-;29799:32;;29871:5;29848:28;;:19;:17;:19::i;:::-;:28;;;29844:175;;29896:44;29913:5;29920:19;:17;:19::i;:::-;29896:16;:44::i;:::-;29891:128;;29968:35;;;;;;;;;;;;;;29891:128;29844:175;30058:2;30031:15;:24;30047:7;30031:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30096:7;30092:2;30076:28;;30085:5;30076:28;;;;;;;;;;;;29788:324;29726:386;;:::o;52906:34::-;;;;:::o;21639:315::-;21692:7;21920:15;:13;:15::i;:::-;21905:12;;21889:13;;:28;:46;21882:53;;21639:315;:::o;39443:2800::-;39577:27;39607;39626:7;39607:18;:27::i;:::-;39577:57;;39692:4;39651:45;;39667:19;39651:45;;;39647:86;;39705:28;;;;;;;;;;;;;;39647:86;39747:27;39776:23;39803:28;39823:7;39803:19;:28::i;:::-;39746:85;;;;39931:62;39950:15;39967:4;39973:19;:17;:19::i;:::-;39931:18;:62::i;:::-;39926:174;;40013:43;40030:4;40036:19;:17;:19::i;:::-;40013:16;:43::i;:::-;40008:92;;40065:35;;;;;;;;;;;;;;40008:92;39926:174;40131:1;40117:16;;:2;:16;;;40113:52;;;40142:23;;;;;;;;;;;;;;40113:52;40178:43;40200:4;40206:2;40210:7;40219:1;40178:21;:43::i;:::-;40314:15;40311:160;;;40454:1;40433:19;40426:30;40311:160;40849:18;:24;40868:4;40849:24;;;;;;;;;;;;;;;;40847:26;;;;;;;;;;;;40918:18;:22;40937:2;40918:22;;;;;;;;;;;;;;;;40916:24;;;;;;;;;;;41240:145;41277:2;41325:45;41340:4;41346:2;41350:19;41325:14;:45::i;:::-;18867:8;41298:72;41240:18;:145::i;:::-;41211:17;:26;41229:7;41211:26;;;;;;;;;;;:174;;;;41555:1;18867:8;41505:19;:46;:51;41501:626;;;41577:19;41609:1;41599:7;:11;41577:33;;41766:1;41732:17;:30;41750:11;41732:30;;;;;;;;;;;;:35;41728:384;;;41870:13;;41855:11;:28;41851:242;;42050:19;42017:17;:30;42035:11;42017:30;;;;;;;;;;;:52;;;;41851:242;41728:384;41558:569;41501:626;42174:7;42170:2;42155:27;;42164:4;42155:27;;;;;;;;;;;;42193:42;42214:4;42220:2;42224:7;42233:1;42193:20;:42::i;:::-;39566:2677;;;39443:2800;;;:::o;56330:316::-;6756:12;:10;:12::i;:::-;6745:23;;:7;:5;:7::i;:::-;:23;;;6737:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56548:7:::1;56569;:5;:7::i;:::-;56561:21;;56590;56561:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56547:69;;;56635:2;56627:11;;;::::0;::::1;;56377:269;56330:316::o:0;31068:185::-;31206:39;31223:4;31229:2;31233:7;31206:39;;;;;;;;;;;;:16;:39::i;:::-;31068:185;;;:::o;54822:88::-;6756:12;:10;:12::i;:::-;6745:23;;:7;:5;:7::i;:::-;:23;;;6737:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54894:8:::1;54887:4;:15;;;;54822:88:::0;:::o;53371:105::-;6756:12;:10;:12::i;:::-;6745:23;;:7;:5;:7::i;:::-;:23;;;6737:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53438:30:::1;53448:10;53460:7;53438:9;:30::i;:::-;53371:105:::0;:::o;55019:106::-;6756:12;:10;:12::i;:::-;6745:23;;:7;:5;:7::i;:::-;:23;;;6737:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55106:11:::1;55096:7;:21;;;;;;;;;;;;:::i;:::-;;55019:106:::0;:::o;56007:315::-;56057:4;56074:21;56098:1;56074:25;;56125:15;;56113:9;;:27;56110:91;;;56192:9;;56174:15;;:27;;;;:::i;:::-;56155:46;;56110:91;56237:1;56218:16;:20;56214:46;;;56259:1;56240:20;;56214:46;56296:16;56287:6;:25;;;;:::i;:::-;56278:4;;:36;;;;:::i;:::-;56271:43;;;56007:315;;;:::o;53197:18::-;;;;;;;;;;;;;:::o;28021:144::-;28085:7;28128:27;28147:7;28128:18;:27::i;:::-;28105:52;;28021:144;;;:::o;23264:224::-;23328:7;23369:1;23352:19;;:5;:19;;;23348:60;;;23380:28;;;;;;;;;;;;;;23348:60;17819:13;23426:18;:25;23445:5;23426:25;;;;;;;;;;;;;;;;:54;23419:61;;23264:224;;;:::o;7176:103::-;6756:12;:10;:12::i;:::-;6745:23;;:7;:5;:7::i;:::-;:23;;;6737:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7241:30:::1;7268:1;7241:18;:30::i;:::-;7176:103::o:0;53110:28::-;;;;:::o;6525:87::-;6571:7;6598:6;;;;;;;;;;;6591:13;;6525:87;:::o;53069:34::-;;;;:::o;28401:104::-;28457:13;28490:7;28483:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28401:104;:::o;54216:499::-;54274:13;54290:15;54298:6;54290:7;:15::i;:::-;54274:31;;54337:8;54324:9;:21;54316:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;54388:6;;;;;;;;;;;54387:7;54379:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;54447:15;;54437:6;:25;;54429:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;54538:9;;54528:6;54512:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;54504:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;54596:1;54587:6;:10;54584:83;;;54625:1;54612:9;;:14;;;;;;;:::i;:::-;;;;;;;;54584:83;;;54656:9;;:11;;;;;;;;;:::i;:::-;;;;;;54584:83;54678:29;54688:10;54700:6;54678:9;:29::i;:::-;54263:452;54216:499;:::o;30454:308::-;30565:19;:17;:19::i;:::-;30553:31;;:8;:31;;;30549:61;;;30593:17;;;;;;;;;;;;;;30549:61;30675:8;30623:18;:39;30642:19;:17;:19::i;:::-;30623:39;;;;;;;;;;;;;;;:49;30663:8;30623:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30735:8;30699:55;;30714:19;:17;:19::i;:::-;30699:55;;;30745:8;30699:55;;;;;;:::i;:::-;;;;;;;;30454:308;;:::o;31324:399::-;31491:31;31504:4;31510:2;31514:7;31491:12;:31::i;:::-;31555:1;31537:2;:14;;;:19;31533:183;;31576:56;31607:4;31613:2;31617:7;31626:5;31576:30;:56::i;:::-;31571:145;;31660:40;;;;;;;;;;;;;;31571:145;31533:183;31324:399;;;;:::o;55229:770::-;55347:13;55400:16;55408:7;55400;:16::i;:::-;55378:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;55529:1;55498:10;:19;55509:7;55498:19;;;;;;;;;;;55492:33;;;;;:::i;:::-;;;:38;55488:503;;;55547:28;55578:10;:8;:10::i;:::-;55547:41;;55658:1;55633:14;55627:28;:32;:320;;;;;;;;;;;;;;;;;55763:14;55808:25;55825:7;55808:16;:25::i;:::-;55716:182;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55627:320;55603:344;;;;;55488:503;55972:10;:19;55983:7;55972:19;;;;;;;;;;;55965:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55229:770;;;;:::o;53028:34::-;;;;:::o;52947:31::-;;;;:::o;30833:164::-;30930:4;30954:18;:25;30973:5;30954:25;;;;;;;;;;;;;;;:35;30980:8;30954:35;;;;;;;;;;;;;;;;;;;;;;;;;30947:42;;30833:164;;;;:::o;7434:201::-;6756:12;:10;:12::i;:::-;6745:23;;:7;:5;:7::i;:::-;:23;;;6737:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7543:1:::1;7523:22;;:8;:22;;;;7515:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7599:28;7618:8;7599:18;:28::i;:::-;7434:201:::0;:::o;5249:98::-;5302:7;5329:10;5322:17;;5249:98;:::o;31978:273::-;32035:4;32091:7;32072:15;:13;:15::i;:::-;:26;;:66;;;;;32125:13;;32115:7;:23;32072:66;:152;;;;;32223:1;18589:8;32176:17;:26;32194:7;32176:26;;;;;;;;;;;;:43;:48;32072:152;32052:172;;31978:273;;;:::o;50539:105::-;50599:7;50626:10;50619:17;;50539:105;:::o;53841:101::-;53906:7;53933:1;53926:8;;53841:101;:::o;24938:1129::-;25005:7;25025:12;25040:7;25025:22;;25108:4;25089:15;:13;:15::i;:::-;:23;25085:915;;25142:13;;25135:4;:20;25131:869;;;25180:14;25197:17;:23;25215:4;25197:23;;;;;;;;;;;;25180:40;;25313:1;18589:8;25286:6;:23;:28;25282:699;;;25805:113;25822:1;25812:6;:11;25805:113;;;25865:17;:25;25883:6;;;;;;;25865:25;;;;;;;;;;;;25856:34;;25805:113;;;25951:6;25944:13;;;;;;25282:699;25157:843;25131:869;25085:915;26028:31;;;;;;;;;;;;;;24938:1129;;;;:::o;37779:652::-;37874:27;37903:23;37944:53;38000:15;37944:71;;38186:7;38180:4;38173:21;38221:22;38215:4;38208:36;38297:4;38291;38281:21;38258:44;;38393:19;38387:26;38368:45;;38124:300;37779:652;;;:::o;38544:645::-;38686:11;38848:15;38842:4;38838:26;38830:34;;39007:15;38996:9;38992:31;38979:44;;39154:15;39143:9;39140:30;39133:4;39122:9;39119:19;39116:55;39106:65;;38544:645;;;;;:::o;49372:159::-;;;;;:::o;47684:309::-;47819:7;47839:16;18990:3;47865:19;:40;;47839:67;;18990:3;47932:31;47943:4;47949:2;47953:9;47932:10;:31::i;:::-;47924:40;;:61;;47917:68;;;47684:309;;;;;:::o;27512:447::-;27592:14;27760:15;27753:5;27749:27;27740:36;;27934:5;27920:11;27896:22;27892:40;27889:51;27882:5;27879:62;27869:72;;27512:447;;;;:::o;50190:158::-;;;;;:::o;32335:104::-;32404:27;32414:2;32418:8;32404:27;;;;;;;;;;;;:9;:27::i;:::-;32335:104;;:::o;7795:191::-;7869:16;7888:6;;;;;;;;;;;7869:25;;7914:8;7905:6;;:17;;;;;;;;;;;;;;;;;;7969:8;7938:40;;7959:8;7938:40;;;;;;;;;;;;7858:128;7795:191;:::o;46194:716::-;46357:4;46403:2;46378:45;;;46424:19;:17;:19::i;:::-;46445:4;46451:7;46460:5;46378:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46374:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46678:1;46661:6;:13;:18;46657:235;;;46707:40;;;;;;;;;;;;;;46657:235;46850:6;46844:13;46835:6;46831:2;46827:15;46820:38;46374:529;46547:54;;;46537:64;;;:6;:64;;;;46530:71;;;46194:716;;;;;;:::o;54100:108::-;54160:13;54193:7;54186:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54100:108;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;48569:147::-;48706:6;48569:147;;;;;:::o;32855:681::-;32978:19;32984:2;32988:8;32978:5;:19::i;:::-;33057:1;33039:2;:14;;;:19;33035:483;;33079:11;33093:13;;33079:27;;33125:13;33147:8;33141:3;:14;33125:30;;33174:233;33205:62;33244:1;33248:2;33252:7;;;;;;33261:5;33205:30;:62::i;:::-;33200:167;;33303:40;;;;;;;;;;;;;;33200:167;33402:3;33394:5;:11;33174:233;;33489:3;33472:13;;:20;33468:34;;33494:8;;;33468:34;33060:458;;33035:483;32855:681;;;:::o;33809:1529::-;33874:20;33897:13;;33874:36;;33939:1;33925:16;;:2;:16;;;33921:48;;;33950:19;;;;;;;;;;;;;;33921:48;33996:1;33984:8;:13;33980:44;;;34006:18;;;;;;;;;;;;;;33980:44;34037:61;34067:1;34071:2;34075:12;34089:8;34037:21;:61::i;:::-;34580:1;17956:2;34551:1;:25;;34550:31;34538:8;:44;34512:18;:22;34531:2;34512:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;34859:139;34896:2;34950:33;34973:1;34977:2;34981:1;34950:14;:33::i;:::-;34917:30;34938:8;34917:20;:30::i;:::-;:66;34859:18;:139::i;:::-;34825:17;:31;34843:12;34825:31;;;;;;;;;;;:173;;;;35015:15;35033:12;35015:30;;35060:11;35089:8;35074:12;:23;35060:37;;35112:101;35164:9;;;;;;35160:2;35139:35;;35156:1;35139:35;;;;;;;;;;;;35208:3;35198:7;:13;35112:101;;35245:3;35229:13;:19;;;;34286:974;;35270:60;35299:1;35303:2;35307:12;35321:8;35270:20;:60::i;:::-;33863:1475;33809:1529;;:::o;29342:322::-;29412:14;29643:1;29633:8;29630:15;29605:23;29601:45;29591:55;;29342:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:400::-;10121:3;10142:84;10224:1;10219:3;10142:84;:::i;:::-;10135:91;;10235:93;10324:3;10235:93;:::i;:::-;10353:1;10348:3;10344:11;10337:18;;9961:400;;;:::o;10367:366::-;10509:3;10530:67;10594:2;10589:3;10530:67;:::i;:::-;10523:74;;10606:93;10695:3;10606:93;:::i;:::-;10724:2;10719:3;10715:12;10708:19;;10367:366;;;:::o;10739:::-;10881:3;10902:67;10966:2;10961:3;10902:67;:::i;:::-;10895:74;;10978:93;11067:3;10978:93;:::i;:::-;11096:2;11091:3;11087:12;11080:19;;10739:366;;;:::o;11111:398::-;11270:3;11291:83;11372:1;11367:3;11291:83;:::i;:::-;11284:90;;11383:93;11472:3;11383:93;:::i;:::-;11501:1;11496:3;11492:11;11485:18;;11111:398;;;:::o;11515:366::-;11657:3;11678:67;11742:2;11737:3;11678:67;:::i;:::-;11671:74;;11754:93;11843:3;11754:93;:::i;:::-;11872:2;11867:3;11863:12;11856:19;;11515:366;;;:::o;11887:::-;12029:3;12050:67;12114:2;12109:3;12050:67;:::i;:::-;12043:74;;12126:93;12215:3;12126:93;:::i;:::-;12244:2;12239:3;12235:12;12228:19;;11887:366;;;:::o;12259:118::-;12346:24;12364:5;12346:24;:::i;:::-;12341:3;12334:37;12259:118;;:::o;12383:701::-;12664:3;12686:95;12777:3;12768:6;12686:95;:::i;:::-;12679:102;;12798:95;12889:3;12880:6;12798:95;:::i;:::-;12791:102;;12910:148;13054:3;12910:148;:::i;:::-;12903:155;;13075:3;13068:10;;12383:701;;;;;:::o;13090:379::-;13274:3;13296:147;13439:3;13296:147;:::i;:::-;13289:154;;13460:3;13453:10;;13090:379;;;:::o;13475:222::-;13568:4;13606:2;13595:9;13591:18;13583:26;;13619:71;13687:1;13676:9;13672:17;13663:6;13619:71;:::i;:::-;13475:222;;;;:::o;13703:640::-;13898:4;13936:3;13925:9;13921:19;13913:27;;13950:71;14018:1;14007:9;14003:17;13994:6;13950:71;:::i;:::-;14031:72;14099:2;14088:9;14084:18;14075:6;14031:72;:::i;:::-;14113;14181:2;14170:9;14166:18;14157:6;14113:72;:::i;:::-;14232:9;14226:4;14222:20;14217:2;14206:9;14202:18;14195:48;14260:76;14331:4;14322:6;14260:76;:::i;:::-;14252:84;;13703:640;;;;;;;:::o;14349:210::-;14436:4;14474:2;14463:9;14459:18;14451:26;;14487:65;14549:1;14538:9;14534:17;14525:6;14487:65;:::i;:::-;14349:210;;;;:::o;14565:313::-;14678:4;14716:2;14705:9;14701:18;14693:26;;14765:9;14759:4;14755:20;14751:1;14740:9;14736:17;14729:47;14793:78;14866:4;14857:6;14793:78;:::i;:::-;14785:86;;14565:313;;;;:::o;14884:419::-;15050:4;15088:2;15077:9;15073:18;15065:26;;15137:9;15131:4;15127:20;15123:1;15112:9;15108:17;15101:47;15165:131;15291:4;15165:131;:::i;:::-;15157:139;;14884:419;;;:::o;15309:::-;15475:4;15513:2;15502:9;15498:18;15490:26;;15562:9;15556:4;15552:20;15548:1;15537:9;15533:17;15526:47;15590:131;15716:4;15590:131;:::i;:::-;15582:139;;15309:419;;;:::o;15734:::-;15900:4;15938:2;15927:9;15923:18;15915:26;;15987:9;15981:4;15977:20;15973:1;15962:9;15958:17;15951:47;16015:131;16141:4;16015:131;:::i;:::-;16007:139;;15734:419;;;:::o;16159:::-;16325:4;16363:2;16352:9;16348:18;16340:26;;16412:9;16406:4;16402:20;16398:1;16387:9;16383:17;16376:47;16440:131;16566:4;16440:131;:::i;:::-;16432:139;;16159:419;;;:::o;16584:::-;16750:4;16788:2;16777:9;16773:18;16765:26;;16837:9;16831:4;16827:20;16823:1;16812:9;16808:17;16801:47;16865:131;16991:4;16865:131;:::i;:::-;16857:139;;16584:419;;;:::o;17009:::-;17175:4;17213:2;17202:9;17198:18;17190:26;;17262:9;17256:4;17252:20;17248:1;17237:9;17233:17;17226:47;17290:131;17416:4;17290:131;:::i;:::-;17282:139;;17009:419;;;:::o;17434:::-;17600:4;17638:2;17627:9;17623:18;17615:26;;17687:9;17681:4;17677:20;17673:1;17662:9;17658:17;17651:47;17715:131;17841:4;17715:131;:::i;:::-;17707:139;;17434:419;;;:::o;17859:222::-;17952:4;17990:2;17979:9;17975:18;17967:26;;18003:71;18071:1;18060:9;18056:17;18047:6;18003:71;:::i;:::-;17859:222;;;;:::o;18087:129::-;18121:6;18148:20;;:::i;:::-;18138:30;;18177:33;18205:4;18197:6;18177:33;:::i;:::-;18087:129;;;:::o;18222:75::-;18255:6;18288:2;18282:9;18272:19;;18222:75;:::o;18303:307::-;18364:4;18454:18;18446:6;18443:30;18440:56;;;18476:18;;:::i;:::-;18440:56;18514:29;18536:6;18514:29;:::i;:::-;18506:37;;18598:4;18592;18588:15;18580:23;;18303:307;;;:::o;18616:308::-;18678:4;18768:18;18760:6;18757:30;18754:56;;;18790:18;;:::i;:::-;18754:56;18828:29;18850:6;18828:29;:::i;:::-;18820:37;;18912:4;18906;18902:15;18894:23;;18616:308;;;:::o;18930:98::-;18981:6;19015:5;19009:12;18999:22;;18930:98;;;:::o;19034:99::-;19086:6;19120:5;19114:12;19104:22;;19034:99;;;:::o;19139:168::-;19222:11;19256:6;19251:3;19244:19;19296:4;19291:3;19287:14;19272:29;;19139:168;;;;:::o;19313:147::-;19414:11;19451:3;19436:18;;19313:147;;;;:::o;19466:169::-;19550:11;19584:6;19579:3;19572:19;19624:4;19619:3;19615:14;19600:29;;19466:169;;;;:::o;19641:148::-;19743:11;19780:3;19765:18;;19641:148;;;;:::o;19795:305::-;19835:3;19854:20;19872:1;19854:20;:::i;:::-;19849:25;;19888:20;19906:1;19888:20;:::i;:::-;19883:25;;20042:1;19974:66;19970:74;19967:1;19964:81;19961:107;;;20048:18;;:::i;:::-;19961:107;20092:1;20089;20085:9;20078:16;;19795:305;;;;:::o;20106:185::-;20146:1;20163:20;20181:1;20163:20;:::i;:::-;20158:25;;20197:20;20215:1;20197:20;:::i;:::-;20192:25;;20236:1;20226:35;;20241:18;;:::i;:::-;20226:35;20283:1;20280;20276:9;20271:14;;20106:185;;;;:::o;20297:348::-;20337:7;20360:20;20378:1;20360:20;:::i;:::-;20355:25;;20394:20;20412:1;20394:20;:::i;:::-;20389:25;;20582:1;20514:66;20510:74;20507:1;20504:81;20499:1;20492:9;20485:17;20481:105;20478:131;;;20589:18;;:::i;:::-;20478:131;20637:1;20634;20630:9;20619:20;;20297:348;;;;:::o;20651:191::-;20691:4;20711:20;20729:1;20711:20;:::i;:::-;20706:25;;20745:20;20763:1;20745:20;:::i;:::-;20740:25;;20784:1;20781;20778:8;20775:34;;;20789:18;;:::i;:::-;20775:34;20834:1;20831;20827:9;20819:17;;20651:191;;;;:::o;20848:96::-;20885:7;20914:24;20932:5;20914:24;:::i;:::-;20903:35;;20848:96;;;:::o;20950:90::-;20984:7;21027:5;21020:13;21013:21;21002:32;;20950:90;;;:::o;21046:149::-;21082:7;21122:66;21115:5;21111:78;21100:89;;21046:149;;;:::o;21201:126::-;21238:7;21278:42;21271:5;21267:54;21256:65;;21201:126;;;:::o;21333:77::-;21370:7;21399:5;21388:16;;21333:77;;;:::o;21416:154::-;21500:6;21495:3;21490;21477:30;21562:1;21553:6;21548:3;21544:16;21537:27;21416:154;;;:::o;21576:307::-;21644:1;21654:113;21668:6;21665:1;21662:13;21654:113;;;21753:1;21748:3;21744:11;21738:18;21734:1;21729:3;21725:11;21718:39;21690:2;21687:1;21683:10;21678:15;;21654:113;;;21785:6;21782:1;21779:13;21776:101;;;21865:1;21856:6;21851:3;21847:16;21840:27;21776:101;21625:258;21576:307;;;:::o;21889:320::-;21933:6;21970:1;21964:4;21960:12;21950:22;;22017:1;22011:4;22007:12;22038:18;22028:81;;22094:4;22086:6;22082:17;22072:27;;22028:81;22156:2;22148:6;22145:14;22125:18;22122:38;22119:84;;;22175:18;;:::i;:::-;22119:84;21940:269;21889:320;;;:::o;22215:281::-;22298:27;22320:4;22298:27;:::i;:::-;22290:6;22286:40;22428:6;22416:10;22413:22;22392:18;22380:10;22377:34;22374:62;22371:88;;;22439:18;;:::i;:::-;22371:88;22479:10;22475:2;22468:22;22258:238;22215:281;;:::o;22502:233::-;22541:3;22564:24;22582:5;22564:24;:::i;:::-;22555:33;;22610:66;22603:5;22600:77;22597:103;;;22680:18;;:::i;:::-;22597:103;22727:1;22720:5;22716:13;22709:20;;22502:233;;;:::o;22741:176::-;22773:1;22790:20;22808:1;22790:20;:::i;:::-;22785:25;;22824:20;22842:1;22824:20;:::i;:::-;22819:25;;22863:1;22853:35;;22868:18;;:::i;:::-;22853:35;22909:1;22906;22902:9;22897:14;;22741:176;;;;:::o;22923:180::-;22971:77;22968:1;22961:88;23068:4;23065:1;23058:15;23092:4;23089:1;23082:15;23109:180;23157:77;23154:1;23147:88;23254:4;23251:1;23244:15;23278:4;23275:1;23268:15;23295:180;23343:77;23340:1;23333:88;23440:4;23437:1;23430:15;23464:4;23461:1;23454:15;23481:180;23529:77;23526:1;23519:88;23626:4;23623:1;23616:15;23650:4;23647:1;23640:15;23667:180;23715:77;23712:1;23705:88;23812:4;23809:1;23802:15;23836:4;23833:1;23826:15;23853:117;23962:1;23959;23952:12;23976:117;24085:1;24082;24075:12;24099:117;24208:1;24205;24198:12;24222:117;24331:1;24328;24321:12;24345:102;24386:6;24437:2;24433:7;24428:2;24421:5;24417:14;24413:28;24403:38;;24345:102;;;:::o;24453:181::-;24593:33;24589:1;24581:6;24577:14;24570:57;24453:181;:::o;24640:225::-;24780:34;24776:1;24768:6;24764:14;24757:58;24849:8;24844:2;24836:6;24832:15;24825:33;24640:225;:::o;24871:168::-;25011:20;25007:1;24999:6;24995:14;24988:44;24871:168;:::o;25045:155::-;25185:7;25181:1;25173:6;25169:14;25162:31;25045:155;:::o;25206:182::-;25346:34;25342:1;25334:6;25330:14;25323:58;25206:182;:::o;25394:169::-;25534:21;25530:1;25522:6;25518:14;25511:45;25394:169;:::o;25569:114::-;;:::o;25689:176::-;25829:28;25825:1;25817:6;25813:14;25806:52;25689:176;:::o;25871:169::-;26011:21;26007:1;25999:6;25995:14;25988:45;25871:169;:::o;26046:122::-;26119:24;26137:5;26119:24;:::i;:::-;26112:5;26109:35;26099:63;;26158:1;26155;26148:12;26099:63;26046:122;:::o;26174:116::-;26244:21;26259:5;26244:21;:::i;:::-;26237:5;26234:32;26224:60;;26280:1;26277;26270:12;26224:60;26174:116;:::o;26296:120::-;26368:23;26385:5;26368:23;:::i;:::-;26361:5;26358:34;26348:62;;26406:1;26403;26396:12;26348:62;26296:120;:::o;26422:122::-;26495:24;26513:5;26495:24;:::i;:::-;26488:5;26485:35;26475:63;;26534:1;26531;26524:12;26475:63;26422:122;:::o

Swarm Source

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