ETH Price: $2,275.83 (-6.00%)

Token

MetaSwagToken (SwagZ)
 

Overview

Max Total Supply

143 SwagZ

Holders

37

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
15 SwagZ
0x386064895c37b306733c10161eb2821fa9bc63ca
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:
MetaSwagSC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

// File: MetaswagSC.sol


//
//                                      .......
//                                  ..,;:ccccc;.
//                   ...         ..;:ccccc::,..
//              ..'',cll:,;:;'..':clccc;'..        ..',,;;;;;,,'..
//             .:lllllllllllll::cllc;'.       ..';:ccccccccccccc::,.
//            .clllllllllllllllllc;.      ..';:cccccccccccccccccccc:,.
//           .:lllllllllllllllllc'.     .;cccccc:::ccccccccccccccc:c:,.
//           'lolllllllllllllllc'       ':cc:,'.. .':cccccccccccccccc:.
//           ,looolllllllllllll;.        ...       .;ccccccccccccccc::'
//           ,loollllllllllllll:.    ..',''.       .:cccccccccccccccc:.
//           .coooolllllllllllll:,',;:cllc:'      .;ccccccccccccccccc;.
//            'loooolllllllllllllllllll:,..      ':ccccccccccccccccc:'
//             .:looollllllllllllllc;'.       .';cccccccccccccccccc:'
//               .;:cllolllllcc;,'..       ..;:cllc;'':ccc:cccc:;;,.
//                  ....''....        ..';:cllllc;.   ......,,'.
//                                  .,cllllllc;'.
//                                  .,::;,,'..
//
pragma solidity ^0.8.7;





contract MetaSwagSC is ERC721A, Ownable {
    using Strings for uint256;
    uint256 public constant MAX_SUPPLY = 5555;
    uint256 public MAX_PER_MINT = 5;
    uint256 public TOKEN_PRICE = 0.07 ether;
    uint256 public RESERVED_TOKENS = 55;
    string public PROVENANCE;
    string private baseTokenUri;
    string public hiddenTokenUri;
    bool public isRevealed;
    bool public paused;
    bool public publicSale;
    bool public whitelistSale;
    bool public teamMinted;
    bytes32 private merkleRoot;
    mapping(address => uint256) public totalMint;
    mapping(address => uint256) public totalPublicMint;
    mapping(address => uint256) public totalWhitelistMint;

    constructor(string memory _provenance, bytes32 _merkleRoot)
        ERC721A("MetaSwagToken", "SwagZ")
    {
        PROVENANCE = _provenance;
        merkleRoot = _merkleRoot;
    }

    modifier IsUser() {
        require(tx.origin == msg.sender, "Can Only Be Called By A User");
        _;
    }

    function isValidUser(bytes32[] memory _merkleProof, bytes32 _leaf)
        public
        view
        returns (bool)
    {
        return MerkleProof.verify(_merkleProof, merkleRoot, _leaf);
    }

    function mint(uint256 _quantity) external payable IsUser {
        require(!paused, "Minting Is Paused");
        require(publicSale, "Public Sale Is Not Active");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Beyond Max Supply");
        require(
            (totalMint[msg.sender] + _quantity) <= MAX_PER_MINT,
            "Cant Mint More Than 5"
        );
        require(msg.value >= (TOKEN_PRICE * _quantity), "Not Enough Ether");
        totalMint[msg.sender] += _quantity;
        totalPublicMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function whitelistMint(bytes32[] memory _merkleProof, uint256 _quantity)
        external
        payable
        IsUser
    {
        require(!paused, "Minting Is Paused");
        require(whitelistSale, "Whitelist Sale Is Not Active");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Beyond Max Supply");
        require(
            (totalMint[msg.sender] + _quantity) <= MAX_PER_MINT,
            "Cant Mint More Than 5"
        );
        require(msg.value >= (TOKEN_PRICE * _quantity), "Not Enough Ether");
        require(
            isValidUser(_merkleProof, keccak256(abi.encodePacked(msg.sender))),
            "You Are Not Whitelisted"
        );
        totalMint[msg.sender] += _quantity;
        totalWhitelistMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function teamMint() external onlyOwner {
        require(!teamMinted, "Team Already Minted");
        teamMinted = true;
        _safeMint(msg.sender, RESERVED_TOKENS);
    }

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

    function tokenURI(uint256 _tokenID)
        public
        view
        override
        returns (string memory)
    {
        return
            string(abi.encodePacked(baseTokenUri, Strings.toString(_tokenID)));
    }

    function setTokenUri(string memory _baseTokenUri) external onlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function setHiddenTokenUri(string memory _hiddenTokenUri)
        external
        onlyOwner
    {
        hiddenTokenUri = _hiddenTokenUri;
    }

    function setTokenPrice(uint256 _tokenPrice) external onlyOwner {
        TOKEN_PRICE = _tokenPrice;
    }

    function setMaxPerMint(uint256 _maxPerMint) external onlyOwner {
        MAX_PER_MINT = _maxPerMint;
    }

    function getMerkleRoot() external view returns (bytes32) {
        return merkleRoot;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function togglePaused() external onlyOwner {
        paused = !paused;
    }

    function togglePublicSale() external onlyOwner {
        publicSale = !publicSale;
    }

    function toggleWhitelistSale() external onlyOwner {
        whitelistSale = !whitelistSale;
    }

    function toggleReveal() external onlyOwner {
        isRevealed = !isRevealed;
    }

    function withdraw() external onlyOwner {
        uint256 share_05 = (address(this).balance * 5) / 1000;
        uint256 share_5 = (address(this).balance * 5) / 100;
        uint256 share_8 = (address(this).balance * 8) / 100;
        uint256 share_10 = (address(this).balance * 10) / 100;
        uint256 share_22 = (address(this).balance * 22) / 100;
        uint256 share_24 = (address(this).balance * 24) / 100;
        uint256 share_25 = (address(this).balance * 25) / 100;
        payable(0x33F14E716966DcbB4875B840C555da5185a0aFb7).transfer(share_05);
        payable(0x2Be3D7769AaaD0A7666679634908C1768e755f9e).transfer(share_05);
        payable(0x9ce16328D5e0A4025f7968e39059E71Ed2E4CcFB).transfer(share_5);
        payable(0x63170DF36EfD3b79CB9bc9730b7359be4C08133C).transfer(share_5);
        payable(0x4ed51630B851aFdb312249Df2Ed7Bd6412aC9ddb).transfer(share_8);
        payable(0x280b894ee2843994e22B1aA902698c9A0E7f3f24).transfer(share_10);
        payable(0x52017bFCcF79f987473AEE80D8C2DEC540071C7E).transfer(share_22);
        payable(0x11BC3030890EF75DD2BA62B14253d2b265ce08E0).transfer(share_24);
        payable(0xEFe42f12aA20dcF736b11565C332C3c80007bd92).transfer(share_25);
        payable(msg.sender).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_provenance","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"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_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"bytes32","name":"_leaf","type":"bytes32"}],"name":"isValidUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","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":"_hiddenTokenUri","type":"string"}],"name":"setHiddenTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerMint","type":"uint256"}],"name":"setMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","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":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600560095566f8b0a10e470000600a556037600b553480156200002657600080fd5b50604051620045b7380380620045b783398181016040528101906200004c919062000362565b6040518060400160405280600d81526020017f4d65746153776167546f6b656e000000000000000000000000000000000000008152506040518060400160405280600581526020017f537761675a0000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d09291906200021d565b508060039080519060200190620000e99291906200021d565b50620000fa6200014a60201b60201c565b600081905550505062000122620001166200014f60201b60201c565b6200015760201b60201c565b81600c90805190602001906200013a9291906200021d565b5080601081905550505062000570565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022b9062000467565b90600052602060002090601f0160209004810192826200024f57600085556200029b565b82601f106200026a57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029a5782518255916020019190600101906200027d565b5b509050620002aa9190620002ae565b5090565b5b80821115620002c9576000816000905550600101620002af565b5090565b6000620002e4620002de84620003f1565b620003c8565b90508281526020810184848401111562000303576200030262000536565b5b6200031084828562000431565b509392505050565b600081519050620003298162000556565b92915050565b600082601f83011262000347576200034662000531565b5b815162000359848260208601620002cd565b91505092915050565b600080604083850312156200037c576200037b62000540565b5b600083015167ffffffffffffffff8111156200039d576200039c6200053b565b5b620003ab858286016200032f565b9250506020620003be8582860162000318565b9150509250929050565b6000620003d4620003e7565b9050620003e282826200049d565b919050565b6000604051905090565b600067ffffffffffffffff8211156200040f576200040e62000502565b5b6200041a8262000545565b9050602081019050919050565b6000819050919050565b60005b838110156200045157808201518184015260208101905062000434565b8381111562000461576000848401525b50505050565b600060028204905060018216806200048057607f821691505b60208210811415620004975762000496620004d3565b5b50919050565b620004a88262000545565b810181811067ffffffffffffffff82111715620004ca57620004c962000502565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005618162000427565b81146200056d57600080fd5b50565b61403780620005806000396000f3fe60806040526004361061027d5760003560e01c80636373a6b11161014f578063ae8bdd30116100c1578063e0fa18421161007a578063e0fa184214610920578063e222c7f91461095d578063e8b5498d14610974578063e985e9c51461099f578063f2fde38b146109dc578063fa7ffe6814610a055761027d565b8063ae8bdd3014610826578063b88d4fde1461084f578063ba7a86b814610878578063c87b56dd1461088f578063d2d8cb67146108cc578063db6242c3146108f75761027d565b80637bef907a116101135780637bef907a146107255780637cb64759146107625780638da5cb5b1461078b57806395d89b41146107b6578063a0712d68146107e1578063a22cb465146107fd5761027d565b80636373a6b11461065257806368fc68c71461067d5780636a61e5fc146106a857806370a08231146106d1578063715018a61461070e5761027d565b806331ffd6f1116101f357806349590657116101ac578063495906571461056657806354214f691461059157806359eda1b5146105bc5780635b8ad429146105d35780635c975abb146105ea5780636352211e146106155761027d565b806331ffd6f11461048e57806332cb6b0c146104b957806333bc1c5c146104e457806336566f061461050f5780633ccfd60b1461052657806342842e0e1461053d5761027d565b8063095ea7b311610245578063095ea7b31461038d57806309d42b30146103b657806318160ddd146103e15780631c16521c1461040c57806323b872dd146104495780632904e6d9146104725761027d565b806301ffc9a7146102825780630345e3cb146102bf5780630675b7c6146102fc57806306fdde0314610325578063081812fc14610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613263565b610a30565b6040516102b691906136cf565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190612fbb565b610ac2565b6040516102f39190613887565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e91906132bd565b610ada565b005b34801561033157600080fd5b5061033a610afc565b6040516103479190613705565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190613306565b610b8e565b6040516103849190613668565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af919061313e565b610c0d565b005b3480156103c257600080fd5b506103cb610d51565b6040516103d89190613887565b60405180910390f35b3480156103ed57600080fd5b506103f6610d57565b6040516104039190613887565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612fbb565b610d6e565b6040516104409190613887565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190613028565b610d86565b005b61048c600480360381019061048791906131da565b6110ab565b005b34801561049a57600080fd5b506104a3611417565b6040516104b091906136cf565b60405180910390f35b3480156104c557600080fd5b506104ce61142a565b6040516104db9190613887565b60405180910390f35b3480156104f057600080fd5b506104f9611430565b60405161050691906136cf565b60405180910390f35b34801561051b57600080fd5b50610524611443565b005b34801561053257600080fd5b5061053b611477565b005b34801561054957600080fd5b50610564600480360381019061055f9190613028565b6118ce565b005b34801561057257600080fd5b5061057b6118ee565b60405161058891906136ea565b60405180910390f35b34801561059d57600080fd5b506105a66118f8565b6040516105b391906136cf565b60405180910390f35b3480156105c857600080fd5b506105d161190b565b005b3480156105df57600080fd5b506105e861193f565b005b3480156105f657600080fd5b506105ff611973565b60405161060c91906136cf565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613306565b611986565b6040516106499190613668565b60405180910390f35b34801561065e57600080fd5b50610667611998565b6040516106749190613705565b60405180910390f35b34801561068957600080fd5b50610692611a26565b60405161069f9190613887565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190613306565b611a2c565b005b3480156106dd57600080fd5b506106f860048036038101906106f39190612fbb565b611a3e565b6040516107059190613887565b60405180910390f35b34801561071a57600080fd5b50610723611af7565b005b34801561073157600080fd5b5061074c6004803603810190610747919061317e565b611b0b565b60405161075991906136cf565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190613236565b611b22565b005b34801561079757600080fd5b506107a0611b34565b6040516107ad9190613668565b60405180910390f35b3480156107c257600080fd5b506107cb611b5e565b6040516107d89190613705565b60405180910390f35b6107fb60048036038101906107f69190613306565b611bf0565b005b34801561080957600080fd5b50610824600480360381019061081f91906130fe565b611eec565b005b34801561083257600080fd5b5061084d600480360381019061084891906132bd565b612064565b005b34801561085b57600080fd5b506108766004803603810190610871919061307b565b612086565b005b34801561088457600080fd5b5061088d6120f9565b005b34801561089b57600080fd5b506108b660048036038101906108b19190613306565b61217a565b6040516108c39190613705565b60405180910390f35b3480156108d857600080fd5b506108e16121ae565b6040516108ee9190613887565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190613306565b6121b4565b005b34801561092c57600080fd5b5061094760048036038101906109429190612fbb565b6121c6565b6040516109549190613887565b60405180910390f35b34801561096957600080fd5b506109726121de565b005b34801561098057600080fd5b50610989612212565b60405161099691906136cf565b60405180910390f35b3480156109ab57600080fd5b506109c660048036038101906109c19190612fe8565b612225565b6040516109d391906136cf565b60405180910390f35b3480156109e857600080fd5b50610a0360048036038101906109fe9190612fbb565b6122b9565b005b348015610a1157600080fd5b50610a1a61233d565b604051610a279190613705565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60136020528060005260406000206000915090505481565b610ae26123cb565b80600d9080519060200190610af8929190612d1c565b5050565b606060028054610b0b90613b82565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3790613b82565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b5050505050905090565b6000610b9982612449565b610bcf576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1882611986565b90508073ffffffffffffffffffffffffffffffffffffffff16610c396124a8565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c57610c6581610c606124a8565b612225565b610c9b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60095481565b6000610d616124b0565b6001546000540303905090565b60126020528060005260406000206000915090505481565b6000610d91826124b5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610df8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e0484612583565b91509150610e1a8187610e156124a8565b6125aa565b610e6657610e2f86610e2a6124a8565b612225565b610e65576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ecd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eda86868660016125ee565b8015610ee557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fb385610f8f8888876125f4565b7c02000000000000000000000000000000000000000000000000000000001761261c565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561103b576000600185019050600060046000838152602001908152602001600020541415611039576000548114611038578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110a38686866001612647565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611110906137a7565b60405180910390fd5b600f60019054906101000a900460ff1615611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116090613787565b60405180910390fd5b600f60039054906101000a900460ff166111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90613727565b60405180910390fd5b6115b3816111c4610d57565b6111ce91906139ad565b111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613847565b60405180910390fd5b60095481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125d91906139ad565b111561129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590613867565b60405180910390fd5b80600a546112ac9190613a34565b3410156112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613747565b60405180910390fd5b61131e82336040516020016113039190613629565b60405160208183030381529060405280519060200120611b0b565b61135d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611354906137e7565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ac91906139ad565b9250508190555080601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461140291906139ad565b92505081905550611413338261264d565b5050565b600f60039054906101000a900460ff1681565b6115b381565b600f60029054906101000a900460ff1681565b61144b6123cb565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b61147f6123cb565b60006103e86005476114919190613a34565b61149b9190613a03565b9050600060646005476114ae9190613a34565b6114b89190613a03565b9050600060646008476114cb9190613a34565b6114d59190613a03565b905060006064600a476114e89190613a34565b6114f29190613a03565b9050600060646016476115059190613a34565b61150f9190613a03565b9050600060646018476115229190613a34565b61152c9190613a03565b90506000606460194761153f9190613a34565b6115499190613a03565b90507333f14e716966dcbb4875b840c555da5185a0afb773ffffffffffffffffffffffffffffffffffffffff166108fc889081150290604051600060405180830381858888f193505050501580156115a5573d6000803e3d6000fd5b50732be3d7769aaad0a7666679634908c1768e755f9e73ffffffffffffffffffffffffffffffffffffffff166108fc889081150290604051600060405180830381858888f19350505050158015611600573d6000803e3d6000fd5b50739ce16328d5e0a4025f7968e39059e71ed2e4ccfb73ffffffffffffffffffffffffffffffffffffffff166108fc879081150290604051600060405180830381858888f1935050505015801561165b573d6000803e3d6000fd5b507363170df36efd3b79cb9bc9730b7359be4c08133c73ffffffffffffffffffffffffffffffffffffffff166108fc879081150290604051600060405180830381858888f193505050501580156116b6573d6000803e3d6000fd5b50734ed51630b851afdb312249df2ed7bd6412ac9ddb73ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f19350505050158015611711573d6000803e3d6000fd5b5073280b894ee2843994e22b1aa902698c9a0e7f3f2473ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f1935050505015801561176c573d6000803e3d6000fd5b507352017bfccf79f987473aee80d8c2dec540071c7e73ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156117c7573d6000803e3d6000fd5b507311bc3030890ef75dd2ba62b14253d2b265ce08e073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611822573d6000803e3d6000fd5b5073efe42f12aa20dcf736b11565c332c3c80007bd9273ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561187d573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156118c4573d6000803e3d6000fd5b5050505050505050565b6118e983838360405180602001604052806000815250612086565b505050565b6000601054905090565b600f60009054906101000a900460ff1681565b6119136123cb565b600f60039054906101000a900460ff1615600f60036101000a81548160ff021916908315150217905550565b6119476123cb565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600f60019054906101000a900460ff1681565b6000611991826124b5565b9050919050565b600c80546119a590613b82565b80601f01602080910402602001604051908101604052809291908181526020018280546119d190613b82565b8015611a1e5780601f106119f357610100808354040283529160200191611a1e565b820191906000526020600020905b815481529060010190602001808311611a0157829003601f168201915b505050505081565b600b5481565b611a346123cb565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611aff6123cb565b611b09600061266b565b565b6000611b1a8360105484612731565b905092915050565b611b2a6123cb565b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611b6d90613b82565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9990613b82565b8015611be65780601f10611bbb57610100808354040283529160200191611be6565b820191906000526020600020905b815481529060010190602001808311611bc957829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c55906137a7565b60405180910390fd5b600f60019054906101000a900460ff1615611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590613787565b60405180910390fd5b600f60029054906101000a900460ff16611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf4906137c7565b60405180910390fd5b6115b381611d09610d57565b611d1391906139ad565b1115611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90613847565b60405180910390fd5b60095481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611da291906139ad565b1115611de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dda90613867565b60405180910390fd5b80600a54611df19190613a34565b341015611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90613747565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e8291906139ad565b9250508190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed891906139ad565b92505081905550611ee9338261264d565b50565b611ef46124a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f59576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611f666124a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120136124a8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205891906136cf565b60405180910390a35050565b61206c6123cb565b80600e9080519060200190612082929190612d1c565b5050565b612091848484610d86565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120f3576120bc84848484612748565b6120f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6121016123cb565b600f60049054906101000a900460ff1615612151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214890613807565b60405180910390fd5b6001600f60046101000a81548160ff02191690831515021790555061217833600b5461264d565b565b6060600d612187836128a8565b604051602001612198929190613644565b6040516020818303038152906040529050919050565b600a5481565b6121bc6123cb565b8060098190555050565b60116020528060005260406000206000915090505481565b6121e66123cb565b600f60029054906101000a900460ff1615600f60026101000a81548160ff021916908315150217905550565b600f60049054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122c16123cb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232890613767565b60405180910390fd5b61233a8161266b565b50565b600e805461234a90613b82565b80601f016020809104026020016040519081016040528092919081815260200182805461237690613b82565b80156123c35780601f10612398576101008083540402835291602001916123c3565b820191906000526020600020905b8154815290600101906020018083116123a657829003601f168201915b505050505081565b6123d3612a09565b73ffffffffffffffffffffffffffffffffffffffff166123f1611b34565b73ffffffffffffffffffffffffffffffffffffffff1614612447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243e90613827565b60405180910390fd5b565b6000816124546124b0565b11158015612463575060005482105b80156124a1575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806124c46124b0565b1161254c5760005481101561254b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612549575b600081141561253f576004600083600190039350838152602001908152602001600020549050612514565b809250505061257e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861260b868684612a11565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612667828260405180602001604052806000815250612a1a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261273e8584612ab7565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261276e6124a8565b8786866040518563ffffffff1660e01b81526004016127909493929190613683565b602060405180830381600087803b1580156127aa57600080fd5b505af19250505080156127db57506040513d601f19601f820116820180604052508101906127d89190613290565b60015b612855573d806000811461280b576040519150601f19603f3d011682016040523d82523d6000602084013e612810565b606091505b5060008151141561284d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156128f0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a04565b600082905060005b6000821461292257808061290b90613be5565b915050600a8261291b9190613a03565b91506128f8565b60008167ffffffffffffffff81111561293e5761293d613d3f565b5b6040519080825280601f01601f1916602001820160405280156129705781602001600182028036833780820191505090505b5090505b600085146129fd576001826129899190613a8e565b9150600a856129989190613c52565b60306129a491906139ad565b60f81b8183815181106129ba576129b9613d10565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129f69190613a03565b9450612974565b8093505050505b919050565b600033905090565b60009392505050565b612a248383612b0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612ab257600080549050600083820390505b612a646000868380600101945086612748565b612a9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612a51578160005414612aaf57600080fd5b50505b505050565b60008082905060005b8451811015612b0257612aed82868381518110612ae057612adf613d10565b5b6020026020010151612cca565b91508080612afa90613be5565b915050612ac0565b508091505092915050565b6000805490506000821415612b4e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b5b60008483856125ee565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612bd283612bc360008660006125f4565b612bcc85612cf5565b1761261c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c7357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612c38565b506000821415612caf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612cc56000848385612647565b505050565b6000818310612ce257612cdd8284612d05565b612ced565b612cec8383612d05565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612d2890613b82565b90600052602060002090601f016020900481019282612d4a5760008555612d91565b82601f10612d6357805160ff1916838001178555612d91565b82800160010185558215612d91579182015b82811115612d90578251825591602001919060010190612d75565b5b509050612d9e9190612da2565b5090565b5b80821115612dbb576000816000905550600101612da3565b5090565b6000612dd2612dcd846138c7565b6138a2565b90508083825260208201905082856020860282011115612df557612df4613d73565b5b60005b85811015612e255781612e0b8882612f0b565b845260208401935060208301925050600181019050612df8565b5050509392505050565b6000612e42612e3d846138f3565b6138a2565b905082815260208101848484011115612e5e57612e5d613d78565b5b612e69848285613b40565b509392505050565b6000612e84612e7f84613924565b6138a2565b905082815260208101848484011115612ea057612e9f613d78565b5b612eab848285613b40565b509392505050565b600081359050612ec281613f8e565b92915050565b600082601f830112612edd57612edc613d6e565b5b8135612eed848260208601612dbf565b91505092915050565b600081359050612f0581613fa5565b92915050565b600081359050612f1a81613fbc565b92915050565b600081359050612f2f81613fd3565b92915050565b600081519050612f4481613fd3565b92915050565b600082601f830112612f5f57612f5e613d6e565b5b8135612f6f848260208601612e2f565b91505092915050565b600082601f830112612f8d57612f8c613d6e565b5b8135612f9d848260208601612e71565b91505092915050565b600081359050612fb581613fea565b92915050565b600060208284031215612fd157612fd0613d82565b5b6000612fdf84828501612eb3565b91505092915050565b60008060408385031215612fff57612ffe613d82565b5b600061300d85828601612eb3565b925050602061301e85828601612eb3565b9150509250929050565b60008060006060848603121561304157613040613d82565b5b600061304f86828701612eb3565b935050602061306086828701612eb3565b925050604061307186828701612fa6565b9150509250925092565b6000806000806080858703121561309557613094613d82565b5b60006130a387828801612eb3565b94505060206130b487828801612eb3565b93505060406130c587828801612fa6565b925050606085013567ffffffffffffffff8111156130e6576130e5613d7d565b5b6130f287828801612f4a565b91505092959194509250565b6000806040838503121561311557613114613d82565b5b600061312385828601612eb3565b925050602061313485828601612ef6565b9150509250929050565b6000806040838503121561315557613154613d82565b5b600061316385828601612eb3565b925050602061317485828601612fa6565b9150509250929050565b6000806040838503121561319557613194613d82565b5b600083013567ffffffffffffffff8111156131b3576131b2613d7d565b5b6131bf85828601612ec8565b92505060206131d085828601612f0b565b9150509250929050565b600080604083850312156131f1576131f0613d82565b5b600083013567ffffffffffffffff81111561320f5761320e613d7d565b5b61321b85828601612ec8565b925050602061322c85828601612fa6565b9150509250929050565b60006020828403121561324c5761324b613d82565b5b600061325a84828501612f0b565b91505092915050565b60006020828403121561327957613278613d82565b5b600061328784828501612f20565b91505092915050565b6000602082840312156132a6576132a5613d82565b5b60006132b484828501612f35565b91505092915050565b6000602082840312156132d3576132d2613d82565b5b600082013567ffffffffffffffff8111156132f1576132f0613d7d565b5b6132fd84828501612f78565b91505092915050565b60006020828403121561331c5761331b613d82565b5b600061332a84828501612fa6565b91505092915050565b61333c81613ac2565b82525050565b61335361334e82613ac2565b613c2e565b82525050565b61336281613ad4565b82525050565b61337181613ae0565b82525050565b60006133828261396a565b61338c8185613980565b935061339c818560208601613b4f565b6133a581613d87565b840191505092915050565b60006133bb82613975565b6133c58185613991565b93506133d5818560208601613b4f565b6133de81613d87565b840191505092915050565b60006133f482613975565b6133fe81856139a2565b935061340e818560208601613b4f565b80840191505092915050565b6000815461342781613b82565b61343181866139a2565b9450600182166000811461344c576001811461345d57613490565b60ff19831686528186019350613490565b61346685613955565b60005b8381101561348857815481890152600182019150602081019050613469565b838801955050505b50505092915050565b60006134a6601c83613991565b91506134b182613da5565b602082019050919050565b60006134c9601083613991565b91506134d482613dce565b602082019050919050565b60006134ec602683613991565b91506134f782613df7565b604082019050919050565b600061350f601183613991565b915061351a82613e46565b602082019050919050565b6000613532601c83613991565b915061353d82613e6f565b602082019050919050565b6000613555601983613991565b915061356082613e98565b602082019050919050565b6000613578601783613991565b915061358382613ec1565b602082019050919050565b600061359b601383613991565b91506135a682613eea565b602082019050919050565b60006135be602083613991565b91506135c982613f13565b602082019050919050565b60006135e1601183613991565b91506135ec82613f3c565b602082019050919050565b6000613604601583613991565b915061360f82613f65565b602082019050919050565b61362381613b36565b82525050565b60006136358284613342565b60148201915081905092915050565b6000613650828561341a565b915061365c82846133e9565b91508190509392505050565b600060208201905061367d6000830184613333565b92915050565b60006080820190506136986000830187613333565b6136a56020830186613333565b6136b2604083018561361a565b81810360608301526136c48184613377565b905095945050505050565b60006020820190506136e46000830184613359565b92915050565b60006020820190506136ff6000830184613368565b92915050565b6000602082019050818103600083015261371f81846133b0565b905092915050565b6000602082019050818103600083015261374081613499565b9050919050565b60006020820190508181036000830152613760816134bc565b9050919050565b60006020820190508181036000830152613780816134df565b9050919050565b600060208201905081810360008301526137a081613502565b9050919050565b600060208201905081810360008301526137c081613525565b9050919050565b600060208201905081810360008301526137e081613548565b9050919050565b600060208201905081810360008301526138008161356b565b9050919050565b600060208201905081810360008301526138208161358e565b9050919050565b60006020820190508181036000830152613840816135b1565b9050919050565b60006020820190508181036000830152613860816135d4565b9050919050565b60006020820190508181036000830152613880816135f7565b9050919050565b600060208201905061389c600083018461361a565b92915050565b60006138ac6138bd565b90506138b88282613bb4565b919050565b6000604051905090565b600067ffffffffffffffff8211156138e2576138e1613d3f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561390e5761390d613d3f565b5b61391782613d87565b9050602081019050919050565b600067ffffffffffffffff82111561393f5761393e613d3f565b5b61394882613d87565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139b882613b36565b91506139c383613b36565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139f8576139f7613c83565b5b828201905092915050565b6000613a0e82613b36565b9150613a1983613b36565b925082613a2957613a28613cb2565b5b828204905092915050565b6000613a3f82613b36565b9150613a4a83613b36565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a8357613a82613c83565b5b828202905092915050565b6000613a9982613b36565b9150613aa483613b36565b925082821015613ab757613ab6613c83565b5b828203905092915050565b6000613acd82613b16565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b6d578082015181840152602081019050613b52565b83811115613b7c576000848401525b50505050565b60006002820490506001821680613b9a57607f821691505b60208210811415613bae57613bad613ce1565b5b50919050565b613bbd82613d87565b810181811067ffffffffffffffff82111715613bdc57613bdb613d3f565b5b80604052505050565b6000613bf082613b36565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c2357613c22613c83565b5b600182019050919050565b6000613c3982613c40565b9050919050565b6000613c4b82613d98565b9050919050565b6000613c5d82613b36565b9150613c6883613b36565b925082613c7857613c77613cb2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57686974656c6973742053616c65204973204e6f742041637469766500000000600082015250565b7f4e6f7420456e6f75676820457468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720497320506175736564000000000000000000000000000000600082015250565b7f43616e204f6e6c792042652043616c6c65642042792041205573657200000000600082015250565b7f5075626c69632053616c65204973204e6f742041637469766500000000000000600082015250565b7f596f7520417265204e6f742057686974656c6973746564000000000000000000600082015250565b7f5465616d20416c7265616479204d696e74656400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4265796f6e64204d617820537570706c79000000000000000000000000000000600082015250565b7f43616e74204d696e74204d6f7265205468616e20350000000000000000000000600082015250565b613f9781613ac2565b8114613fa257600080fd5b50565b613fae81613ad4565b8114613fb957600080fd5b50565b613fc581613ae0565b8114613fd057600080fd5b50565b613fdc81613aea565b8114613fe757600080fd5b50565b613ff381613b36565b8114613ffe57600080fd5b5056fea26469706673582212202473cc6c06c253d2a3656a969d8b58dc453c25bb9762d6e84f1db1eb7d67703864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000405bd7a46216a38fdb889532760dbe0d4e7afdb959384c890b057debdb1e044f4f000000000000000000000000000000000000000000000000000000000000004036303663376239333366336465313037373363613933313366623931333862356461643636396337616230636137376637373164343636646663363465316366

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636373a6b11161014f578063ae8bdd30116100c1578063e0fa18421161007a578063e0fa184214610920578063e222c7f91461095d578063e8b5498d14610974578063e985e9c51461099f578063f2fde38b146109dc578063fa7ffe6814610a055761027d565b8063ae8bdd3014610826578063b88d4fde1461084f578063ba7a86b814610878578063c87b56dd1461088f578063d2d8cb67146108cc578063db6242c3146108f75761027d565b80637bef907a116101135780637bef907a146107255780637cb64759146107625780638da5cb5b1461078b57806395d89b41146107b6578063a0712d68146107e1578063a22cb465146107fd5761027d565b80636373a6b11461065257806368fc68c71461067d5780636a61e5fc146106a857806370a08231146106d1578063715018a61461070e5761027d565b806331ffd6f1116101f357806349590657116101ac578063495906571461056657806354214f691461059157806359eda1b5146105bc5780635b8ad429146105d35780635c975abb146105ea5780636352211e146106155761027d565b806331ffd6f11461048e57806332cb6b0c146104b957806333bc1c5c146104e457806336566f061461050f5780633ccfd60b1461052657806342842e0e1461053d5761027d565b8063095ea7b311610245578063095ea7b31461038d57806309d42b30146103b657806318160ddd146103e15780631c16521c1461040c57806323b872dd146104495780632904e6d9146104725761027d565b806301ffc9a7146102825780630345e3cb146102bf5780630675b7c6146102fc57806306fdde0314610325578063081812fc14610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613263565b610a30565b6040516102b691906136cf565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190612fbb565b610ac2565b6040516102f39190613887565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e91906132bd565b610ada565b005b34801561033157600080fd5b5061033a610afc565b6040516103479190613705565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190613306565b610b8e565b6040516103849190613668565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af919061313e565b610c0d565b005b3480156103c257600080fd5b506103cb610d51565b6040516103d89190613887565b60405180910390f35b3480156103ed57600080fd5b506103f6610d57565b6040516104039190613887565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612fbb565b610d6e565b6040516104409190613887565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190613028565b610d86565b005b61048c600480360381019061048791906131da565b6110ab565b005b34801561049a57600080fd5b506104a3611417565b6040516104b091906136cf565b60405180910390f35b3480156104c557600080fd5b506104ce61142a565b6040516104db9190613887565b60405180910390f35b3480156104f057600080fd5b506104f9611430565b60405161050691906136cf565b60405180910390f35b34801561051b57600080fd5b50610524611443565b005b34801561053257600080fd5b5061053b611477565b005b34801561054957600080fd5b50610564600480360381019061055f9190613028565b6118ce565b005b34801561057257600080fd5b5061057b6118ee565b60405161058891906136ea565b60405180910390f35b34801561059d57600080fd5b506105a66118f8565b6040516105b391906136cf565b60405180910390f35b3480156105c857600080fd5b506105d161190b565b005b3480156105df57600080fd5b506105e861193f565b005b3480156105f657600080fd5b506105ff611973565b60405161060c91906136cf565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613306565b611986565b6040516106499190613668565b60405180910390f35b34801561065e57600080fd5b50610667611998565b6040516106749190613705565b60405180910390f35b34801561068957600080fd5b50610692611a26565b60405161069f9190613887565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190613306565b611a2c565b005b3480156106dd57600080fd5b506106f860048036038101906106f39190612fbb565b611a3e565b6040516107059190613887565b60405180910390f35b34801561071a57600080fd5b50610723611af7565b005b34801561073157600080fd5b5061074c6004803603810190610747919061317e565b611b0b565b60405161075991906136cf565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190613236565b611b22565b005b34801561079757600080fd5b506107a0611b34565b6040516107ad9190613668565b60405180910390f35b3480156107c257600080fd5b506107cb611b5e565b6040516107d89190613705565b60405180910390f35b6107fb60048036038101906107f69190613306565b611bf0565b005b34801561080957600080fd5b50610824600480360381019061081f91906130fe565b611eec565b005b34801561083257600080fd5b5061084d600480360381019061084891906132bd565b612064565b005b34801561085b57600080fd5b506108766004803603810190610871919061307b565b612086565b005b34801561088457600080fd5b5061088d6120f9565b005b34801561089b57600080fd5b506108b660048036038101906108b19190613306565b61217a565b6040516108c39190613705565b60405180910390f35b3480156108d857600080fd5b506108e16121ae565b6040516108ee9190613887565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190613306565b6121b4565b005b34801561092c57600080fd5b5061094760048036038101906109429190612fbb565b6121c6565b6040516109549190613887565b60405180910390f35b34801561096957600080fd5b506109726121de565b005b34801561098057600080fd5b50610989612212565b60405161099691906136cf565b60405180910390f35b3480156109ab57600080fd5b506109c660048036038101906109c19190612fe8565b612225565b6040516109d391906136cf565b60405180910390f35b3480156109e857600080fd5b50610a0360048036038101906109fe9190612fbb565b6122b9565b005b348015610a1157600080fd5b50610a1a61233d565b604051610a279190613705565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60136020528060005260406000206000915090505481565b610ae26123cb565b80600d9080519060200190610af8929190612d1c565b5050565b606060028054610b0b90613b82565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3790613b82565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b5050505050905090565b6000610b9982612449565b610bcf576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1882611986565b90508073ffffffffffffffffffffffffffffffffffffffff16610c396124a8565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c57610c6581610c606124a8565b612225565b610c9b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60095481565b6000610d616124b0565b6001546000540303905090565b60126020528060005260406000206000915090505481565b6000610d91826124b5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610df8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e0484612583565b91509150610e1a8187610e156124a8565b6125aa565b610e6657610e2f86610e2a6124a8565b612225565b610e65576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ecd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eda86868660016125ee565b8015610ee557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fb385610f8f8888876125f4565b7c02000000000000000000000000000000000000000000000000000000001761261c565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561103b576000600185019050600060046000838152602001908152602001600020541415611039576000548114611038578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110a38686866001612647565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611110906137a7565b60405180910390fd5b600f60019054906101000a900460ff1615611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116090613787565b60405180910390fd5b600f60039054906101000a900460ff166111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90613727565b60405180910390fd5b6115b3816111c4610d57565b6111ce91906139ad565b111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613847565b60405180910390fd5b60095481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125d91906139ad565b111561129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590613867565b60405180910390fd5b80600a546112ac9190613a34565b3410156112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613747565b60405180910390fd5b61131e82336040516020016113039190613629565b60405160208183030381529060405280519060200120611b0b565b61135d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611354906137e7565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ac91906139ad565b9250508190555080601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461140291906139ad565b92505081905550611413338261264d565b5050565b600f60039054906101000a900460ff1681565b6115b381565b600f60029054906101000a900460ff1681565b61144b6123cb565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b61147f6123cb565b60006103e86005476114919190613a34565b61149b9190613a03565b9050600060646005476114ae9190613a34565b6114b89190613a03565b9050600060646008476114cb9190613a34565b6114d59190613a03565b905060006064600a476114e89190613a34565b6114f29190613a03565b9050600060646016476115059190613a34565b61150f9190613a03565b9050600060646018476115229190613a34565b61152c9190613a03565b90506000606460194761153f9190613a34565b6115499190613a03565b90507333f14e716966dcbb4875b840c555da5185a0afb773ffffffffffffffffffffffffffffffffffffffff166108fc889081150290604051600060405180830381858888f193505050501580156115a5573d6000803e3d6000fd5b50732be3d7769aaad0a7666679634908c1768e755f9e73ffffffffffffffffffffffffffffffffffffffff166108fc889081150290604051600060405180830381858888f19350505050158015611600573d6000803e3d6000fd5b50739ce16328d5e0a4025f7968e39059e71ed2e4ccfb73ffffffffffffffffffffffffffffffffffffffff166108fc879081150290604051600060405180830381858888f1935050505015801561165b573d6000803e3d6000fd5b507363170df36efd3b79cb9bc9730b7359be4c08133c73ffffffffffffffffffffffffffffffffffffffff166108fc879081150290604051600060405180830381858888f193505050501580156116b6573d6000803e3d6000fd5b50734ed51630b851afdb312249df2ed7bd6412ac9ddb73ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f19350505050158015611711573d6000803e3d6000fd5b5073280b894ee2843994e22b1aa902698c9a0e7f3f2473ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f1935050505015801561176c573d6000803e3d6000fd5b507352017bfccf79f987473aee80d8c2dec540071c7e73ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156117c7573d6000803e3d6000fd5b507311bc3030890ef75dd2ba62b14253d2b265ce08e073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611822573d6000803e3d6000fd5b5073efe42f12aa20dcf736b11565c332c3c80007bd9273ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561187d573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156118c4573d6000803e3d6000fd5b5050505050505050565b6118e983838360405180602001604052806000815250612086565b505050565b6000601054905090565b600f60009054906101000a900460ff1681565b6119136123cb565b600f60039054906101000a900460ff1615600f60036101000a81548160ff021916908315150217905550565b6119476123cb565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600f60019054906101000a900460ff1681565b6000611991826124b5565b9050919050565b600c80546119a590613b82565b80601f01602080910402602001604051908101604052809291908181526020018280546119d190613b82565b8015611a1e5780601f106119f357610100808354040283529160200191611a1e565b820191906000526020600020905b815481529060010190602001808311611a0157829003601f168201915b505050505081565b600b5481565b611a346123cb565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611aff6123cb565b611b09600061266b565b565b6000611b1a8360105484612731565b905092915050565b611b2a6123cb565b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611b6d90613b82565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9990613b82565b8015611be65780601f10611bbb57610100808354040283529160200191611be6565b820191906000526020600020905b815481529060010190602001808311611bc957829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c55906137a7565b60405180910390fd5b600f60019054906101000a900460ff1615611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590613787565b60405180910390fd5b600f60029054906101000a900460ff16611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf4906137c7565b60405180910390fd5b6115b381611d09610d57565b611d1391906139ad565b1115611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90613847565b60405180910390fd5b60095481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611da291906139ad565b1115611de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dda90613867565b60405180910390fd5b80600a54611df19190613a34565b341015611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90613747565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e8291906139ad565b9250508190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed891906139ad565b92505081905550611ee9338261264d565b50565b611ef46124a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f59576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611f666124a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120136124a8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205891906136cf565b60405180910390a35050565b61206c6123cb565b80600e9080519060200190612082929190612d1c565b5050565b612091848484610d86565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120f3576120bc84848484612748565b6120f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6121016123cb565b600f60049054906101000a900460ff1615612151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214890613807565b60405180910390fd5b6001600f60046101000a81548160ff02191690831515021790555061217833600b5461264d565b565b6060600d612187836128a8565b604051602001612198929190613644565b6040516020818303038152906040529050919050565b600a5481565b6121bc6123cb565b8060098190555050565b60116020528060005260406000206000915090505481565b6121e66123cb565b600f60029054906101000a900460ff1615600f60026101000a81548160ff021916908315150217905550565b600f60049054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122c16123cb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232890613767565b60405180910390fd5b61233a8161266b565b50565b600e805461234a90613b82565b80601f016020809104026020016040519081016040528092919081815260200182805461237690613b82565b80156123c35780601f10612398576101008083540402835291602001916123c3565b820191906000526020600020905b8154815290600101906020018083116123a657829003601f168201915b505050505081565b6123d3612a09565b73ffffffffffffffffffffffffffffffffffffffff166123f1611b34565b73ffffffffffffffffffffffffffffffffffffffff1614612447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243e90613827565b60405180910390fd5b565b6000816124546124b0565b11158015612463575060005482105b80156124a1575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806124c46124b0565b1161254c5760005481101561254b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612549575b600081141561253f576004600083600190039350838152602001908152602001600020549050612514565b809250505061257e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861260b868684612a11565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612667828260405180602001604052806000815250612a1a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261273e8584612ab7565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261276e6124a8565b8786866040518563ffffffff1660e01b81526004016127909493929190613683565b602060405180830381600087803b1580156127aa57600080fd5b505af19250505080156127db57506040513d601f19601f820116820180604052508101906127d89190613290565b60015b612855573d806000811461280b576040519150601f19603f3d011682016040523d82523d6000602084013e612810565b606091505b5060008151141561284d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156128f0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a04565b600082905060005b6000821461292257808061290b90613be5565b915050600a8261291b9190613a03565b91506128f8565b60008167ffffffffffffffff81111561293e5761293d613d3f565b5b6040519080825280601f01601f1916602001820160405280156129705781602001600182028036833780820191505090505b5090505b600085146129fd576001826129899190613a8e565b9150600a856129989190613c52565b60306129a491906139ad565b60f81b8183815181106129ba576129b9613d10565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129f69190613a03565b9450612974565b8093505050505b919050565b600033905090565b60009392505050565b612a248383612b0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612ab257600080549050600083820390505b612a646000868380600101945086612748565b612a9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612a51578160005414612aaf57600080fd5b50505b505050565b60008082905060005b8451811015612b0257612aed82868381518110612ae057612adf613d10565b5b6020026020010151612cca565b91508080612afa90613be5565b915050612ac0565b508091505092915050565b6000805490506000821415612b4e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b5b60008483856125ee565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612bd283612bc360008660006125f4565b612bcc85612cf5565b1761261c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c7357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612c38565b506000821415612caf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612cc56000848385612647565b505050565b6000818310612ce257612cdd8284612d05565b612ced565b612cec8383612d05565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612d2890613b82565b90600052602060002090601f016020900481019282612d4a5760008555612d91565b82601f10612d6357805160ff1916838001178555612d91565b82800160010185558215612d91579182015b82811115612d90578251825591602001919060010190612d75565b5b509050612d9e9190612da2565b5090565b5b80821115612dbb576000816000905550600101612da3565b5090565b6000612dd2612dcd846138c7565b6138a2565b90508083825260208201905082856020860282011115612df557612df4613d73565b5b60005b85811015612e255781612e0b8882612f0b565b845260208401935060208301925050600181019050612df8565b5050509392505050565b6000612e42612e3d846138f3565b6138a2565b905082815260208101848484011115612e5e57612e5d613d78565b5b612e69848285613b40565b509392505050565b6000612e84612e7f84613924565b6138a2565b905082815260208101848484011115612ea057612e9f613d78565b5b612eab848285613b40565b509392505050565b600081359050612ec281613f8e565b92915050565b600082601f830112612edd57612edc613d6e565b5b8135612eed848260208601612dbf565b91505092915050565b600081359050612f0581613fa5565b92915050565b600081359050612f1a81613fbc565b92915050565b600081359050612f2f81613fd3565b92915050565b600081519050612f4481613fd3565b92915050565b600082601f830112612f5f57612f5e613d6e565b5b8135612f6f848260208601612e2f565b91505092915050565b600082601f830112612f8d57612f8c613d6e565b5b8135612f9d848260208601612e71565b91505092915050565b600081359050612fb581613fea565b92915050565b600060208284031215612fd157612fd0613d82565b5b6000612fdf84828501612eb3565b91505092915050565b60008060408385031215612fff57612ffe613d82565b5b600061300d85828601612eb3565b925050602061301e85828601612eb3565b9150509250929050565b60008060006060848603121561304157613040613d82565b5b600061304f86828701612eb3565b935050602061306086828701612eb3565b925050604061307186828701612fa6565b9150509250925092565b6000806000806080858703121561309557613094613d82565b5b60006130a387828801612eb3565b94505060206130b487828801612eb3565b93505060406130c587828801612fa6565b925050606085013567ffffffffffffffff8111156130e6576130e5613d7d565b5b6130f287828801612f4a565b91505092959194509250565b6000806040838503121561311557613114613d82565b5b600061312385828601612eb3565b925050602061313485828601612ef6565b9150509250929050565b6000806040838503121561315557613154613d82565b5b600061316385828601612eb3565b925050602061317485828601612fa6565b9150509250929050565b6000806040838503121561319557613194613d82565b5b600083013567ffffffffffffffff8111156131b3576131b2613d7d565b5b6131bf85828601612ec8565b92505060206131d085828601612f0b565b9150509250929050565b600080604083850312156131f1576131f0613d82565b5b600083013567ffffffffffffffff81111561320f5761320e613d7d565b5b61321b85828601612ec8565b925050602061322c85828601612fa6565b9150509250929050565b60006020828403121561324c5761324b613d82565b5b600061325a84828501612f0b565b91505092915050565b60006020828403121561327957613278613d82565b5b600061328784828501612f20565b91505092915050565b6000602082840312156132a6576132a5613d82565b5b60006132b484828501612f35565b91505092915050565b6000602082840312156132d3576132d2613d82565b5b600082013567ffffffffffffffff8111156132f1576132f0613d7d565b5b6132fd84828501612f78565b91505092915050565b60006020828403121561331c5761331b613d82565b5b600061332a84828501612fa6565b91505092915050565b61333c81613ac2565b82525050565b61335361334e82613ac2565b613c2e565b82525050565b61336281613ad4565b82525050565b61337181613ae0565b82525050565b60006133828261396a565b61338c8185613980565b935061339c818560208601613b4f565b6133a581613d87565b840191505092915050565b60006133bb82613975565b6133c58185613991565b93506133d5818560208601613b4f565b6133de81613d87565b840191505092915050565b60006133f482613975565b6133fe81856139a2565b935061340e818560208601613b4f565b80840191505092915050565b6000815461342781613b82565b61343181866139a2565b9450600182166000811461344c576001811461345d57613490565b60ff19831686528186019350613490565b61346685613955565b60005b8381101561348857815481890152600182019150602081019050613469565b838801955050505b50505092915050565b60006134a6601c83613991565b91506134b182613da5565b602082019050919050565b60006134c9601083613991565b91506134d482613dce565b602082019050919050565b60006134ec602683613991565b91506134f782613df7565b604082019050919050565b600061350f601183613991565b915061351a82613e46565b602082019050919050565b6000613532601c83613991565b915061353d82613e6f565b602082019050919050565b6000613555601983613991565b915061356082613e98565b602082019050919050565b6000613578601783613991565b915061358382613ec1565b602082019050919050565b600061359b601383613991565b91506135a682613eea565b602082019050919050565b60006135be602083613991565b91506135c982613f13565b602082019050919050565b60006135e1601183613991565b91506135ec82613f3c565b602082019050919050565b6000613604601583613991565b915061360f82613f65565b602082019050919050565b61362381613b36565b82525050565b60006136358284613342565b60148201915081905092915050565b6000613650828561341a565b915061365c82846133e9565b91508190509392505050565b600060208201905061367d6000830184613333565b92915050565b60006080820190506136986000830187613333565b6136a56020830186613333565b6136b2604083018561361a565b81810360608301526136c48184613377565b905095945050505050565b60006020820190506136e46000830184613359565b92915050565b60006020820190506136ff6000830184613368565b92915050565b6000602082019050818103600083015261371f81846133b0565b905092915050565b6000602082019050818103600083015261374081613499565b9050919050565b60006020820190508181036000830152613760816134bc565b9050919050565b60006020820190508181036000830152613780816134df565b9050919050565b600060208201905081810360008301526137a081613502565b9050919050565b600060208201905081810360008301526137c081613525565b9050919050565b600060208201905081810360008301526137e081613548565b9050919050565b600060208201905081810360008301526138008161356b565b9050919050565b600060208201905081810360008301526138208161358e565b9050919050565b60006020820190508181036000830152613840816135b1565b9050919050565b60006020820190508181036000830152613860816135d4565b9050919050565b60006020820190508181036000830152613880816135f7565b9050919050565b600060208201905061389c600083018461361a565b92915050565b60006138ac6138bd565b90506138b88282613bb4565b919050565b6000604051905090565b600067ffffffffffffffff8211156138e2576138e1613d3f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561390e5761390d613d3f565b5b61391782613d87565b9050602081019050919050565b600067ffffffffffffffff82111561393f5761393e613d3f565b5b61394882613d87565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139b882613b36565b91506139c383613b36565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139f8576139f7613c83565b5b828201905092915050565b6000613a0e82613b36565b9150613a1983613b36565b925082613a2957613a28613cb2565b5b828204905092915050565b6000613a3f82613b36565b9150613a4a83613b36565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a8357613a82613c83565b5b828202905092915050565b6000613a9982613b36565b9150613aa483613b36565b925082821015613ab757613ab6613c83565b5b828203905092915050565b6000613acd82613b16565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b6d578082015181840152602081019050613b52565b83811115613b7c576000848401525b50505050565b60006002820490506001821680613b9a57607f821691505b60208210811415613bae57613bad613ce1565b5b50919050565b613bbd82613d87565b810181811067ffffffffffffffff82111715613bdc57613bdb613d3f565b5b80604052505050565b6000613bf082613b36565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c2357613c22613c83565b5b600182019050919050565b6000613c3982613c40565b9050919050565b6000613c4b82613d98565b9050919050565b6000613c5d82613b36565b9150613c6883613b36565b925082613c7857613c77613cb2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57686974656c6973742053616c65204973204e6f742041637469766500000000600082015250565b7f4e6f7420456e6f75676820457468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720497320506175736564000000000000000000000000000000600082015250565b7f43616e204f6e6c792042652043616c6c65642042792041205573657200000000600082015250565b7f5075626c69632053616c65204973204e6f742041637469766500000000000000600082015250565b7f596f7520417265204e6f742057686974656c6973746564000000000000000000600082015250565b7f5465616d20416c7265616479204d696e74656400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4265796f6e64204d617820537570706c79000000000000000000000000000000600082015250565b7f43616e74204d696e74204d6f7265205468616e20350000000000000000000000600082015250565b613f9781613ac2565b8114613fa257600080fd5b50565b613fae81613ad4565b8114613fb957600080fd5b50565b613fc581613ae0565b8114613fd057600080fd5b50565b613fdc81613aea565b8114613fe757600080fd5b50565b613ff381613b36565b8114613ffe57600080fd5b5056fea26469706673582212202473cc6c06c253d2a3656a969d8b58dc453c25bb9762d6e84f1db1eb7d67703864736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000405bd7a46216a38fdb889532760dbe0d4e7afdb959384c890b057debdb1e044f4f000000000000000000000000000000000000000000000000000000000000004036303663376239333366336465313037373363613933313366623931333862356461643636396337616230636137376637373164343636646663363465316366

-----Decoded View---------------
Arg [0] : _provenance (string): 606c7b933f3de10773ca9313fb9138b5dad669c7ab0ca77f771d466dfc64e1cf
Arg [1] : _merkleRoot (bytes32): 0x5bd7a46216a38fdb889532760dbe0d4e7afdb959384c890b057debdb1e044f4f

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 5bd7a46216a38fdb889532760dbe0d4e7afdb959384c890b057debdb1e044f4f
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [3] : 3630366337623933336633646531303737336361393331336662393133386235
Arg [4] : 6461643636396337616230636137376637373164343636646663363465316366


Deployed Bytecode Sourcemap

66814:5619:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33250:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67452:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70037:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34152:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40635:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40076:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66941:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29903:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67395:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44342:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68652:835;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67250:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66893:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67221:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70766:78;;;;;;;;;;;;;:::i;:::-;;71151:1279;;;;;;;;;;;;;:::i;:::-;;47255:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70551:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67167:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70950:99;;;;;;;;;;;;;:::i;:::-;;71057:86;;;;;;;;;;;;;:::i;:::-;;67196:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35545:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67067:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67025:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70320:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31087:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13998:103;;;;;;;;;;;;;:::i;:::-;;67829:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70652:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13350:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34328:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68040:604;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41193:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70161:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48038:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69495:178;;;;;;;;;;;;;:::i;:::-;;69802:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66979:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70435:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67344:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70852:90;;;;;;;;;;;;;:::i;:::-;;67282:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41658:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14256:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67132:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33250:639;33335:4;33674:10;33659:25;;:11;:25;;;;:102;;;;33751:10;33736:25;;:11;:25;;;;33659:102;:179;;;;33828:10;33813:25;;:11;:25;;;;33659:179;33639:199;;33250:639;;;:::o;67452:53::-;;;;;;;;;;;;;;;;;:::o;70037:116::-;13236:13;:11;:13::i;:::-;70132::::1;70117:12;:28;;;;;;;;;;;;:::i;:::-;;70037:116:::0;:::o;34152:100::-;34206:13;34239:5;34232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34152:100;:::o;40635:218::-;40711:7;40736:16;40744:7;40736;:16::i;:::-;40731:64;;40761:34;;;;;;;;;;;;;;40731:64;40815:15;:24;40831:7;40815:24;;;;;;;;;;;:30;;;;;;;;;;;;40808:37;;40635:218;;;:::o;40076:400::-;40157:13;40173:16;40181:7;40173;:16::i;:::-;40157:32;;40229:5;40206:28;;:19;:17;:19::i;:::-;:28;;;40202:175;;40254:44;40271:5;40278:19;:17;:19::i;:::-;40254:16;:44::i;:::-;40249:128;;40326:35;;;;;;;;;;;;;;40249:128;40202:175;40422:2;40389:15;:24;40405:7;40389:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40460:7;40456:2;40440:28;;40449:5;40440:28;;;;;;;;;;;;40146:330;40076:400;;:::o;66941:31::-;;;;:::o;29903:323::-;29964:7;30192:15;:13;:15::i;:::-;30177:12;;30161:13;;:28;:46;30154:53;;29903:323;:::o;67395:50::-;;;;;;;;;;;;;;;;;:::o;44342:2817::-;44476:27;44506;44525:7;44506:18;:27::i;:::-;44476:57;;44591:4;44550:45;;44566:19;44550:45;;;44546:86;;44604:28;;;;;;;;;;;;;;44546:86;44646:27;44675:23;44702:35;44729:7;44702:26;:35::i;:::-;44645:92;;;;44837:68;44862:15;44879:4;44885:19;:17;:19::i;:::-;44837:24;:68::i;:::-;44832:180;;44925:43;44942:4;44948:19;:17;:19::i;:::-;44925:16;:43::i;:::-;44920:92;;44977:35;;;;;;;;;;;;;;44920:92;44832:180;45043:1;45029:16;;:2;:16;;;45025:52;;;45054:23;;;;;;;;;;;;;;45025:52;45090:43;45112:4;45118:2;45122:7;45131:1;45090:21;:43::i;:::-;45226:15;45223:160;;;45366:1;45345:19;45338:30;45223:160;45763:18;:24;45782:4;45763:24;;;;;;;;;;;;;;;;45761:26;;;;;;;;;;;;45832:18;:22;45851:2;45832:22;;;;;;;;;;;;;;;;45830:24;;;;;;;;;;;46154:146;46191:2;46240:45;46255:4;46261:2;46265:19;46240:14;:45::i;:::-;26302:8;46212:73;46154:18;:146::i;:::-;46125:17;:26;46143:7;46125:26;;;;;;;;;;;:175;;;;46471:1;26302:8;46420:19;:47;:52;46416:627;;;46493:19;46525:1;46515:7;:11;46493:33;;46682:1;46648:17;:30;46666:11;46648:30;;;;;;;;;;;;:35;46644:384;;;46786:13;;46771:11;:28;46767:242;;46966:19;46933:17;:30;46951:11;46933:30;;;;;;;;;;;:52;;;;46767:242;46644:384;46474:569;46416:627;47090:7;47086:2;47071:27;;47080:4;47071:27;;;;;;;;;;;;47109:42;47130:4;47136:2;47140:7;47149:1;47109:20;:42::i;:::-;44465:2694;;;44342:2817;;;:::o;68652:835::-;67758:10;67745:23;;:9;:23;;;67737:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;68801:6:::1;;;;;;;;;;;68800:7;68792:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;68848:13;;;;;;;;;;;68840:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;66930:4;68930:9;68914:13;:11;:13::i;:::-;:25;;;;:::i;:::-;68913:41;;68905:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;69048:12;;69034:9;69010;:21;69020:10;69010:21;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;69009:51;;68987:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;69156:9;69142:11;;:23;;;;:::i;:::-;69128:9;:38;;69120:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;69220:66;69232:12;69273:10;69256:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;69246:39;;;;;;69220:11;:66::i;:::-;69198:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;69373:9;69348;:21;69358:10;69348:21;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;69427:9;69393:18;:30;69412:10;69393:30;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;69447:32;69457:10;69469:9;69447;:32::i;:::-;68652:835:::0;;:::o;67250:25::-;;;;;;;;;;;;;:::o;66893:41::-;66930:4;66893:41;:::o;67221:22::-;;;;;;;;;;;;;:::o;70766:78::-;13236:13;:11;:13::i;:::-;70830:6:::1;;;;;;;;;;;70829:7;70820:6;;:16;;;;;;;;;;;;;;;;;;70766:78::o:0;71151:1279::-;13236:13;:11;:13::i;:::-;71201:16:::1;71250:4;71245:1;71221:21;:25;;;;:::i;:::-;71220:34;;;;:::i;:::-;71201:53;;71265:15;71313:3;71308:1;71284:21;:25;;;;:::i;:::-;71283:33;;;;:::i;:::-;71265:51;;71327:15;71375:3;71370:1;71346:21;:25;;;;:::i;:::-;71345:33;;;;:::i;:::-;71327:51;;71389:16;71439:3;71433:2;71409:21;:26;;;;:::i;:::-;71408:34;;;;:::i;:::-;71389:53;;71453:16;71503:3;71497:2;71473:21;:26;;;;:::i;:::-;71472:34;;;;:::i;:::-;71453:53;;71517:16;71567:3;71561:2;71537:21;:26;;;;:::i;:::-;71536:34;;;;:::i;:::-;71517:53;;71581:16;71631:3;71625:2;71601:21;:26;;;;:::i;:::-;71600:34;;;;:::i;:::-;71581:53;;71653:42;71645:60;;:70;71706:8;71645:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71734:42;71726:60;;:70;71787:8;71726:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71815:42;71807:60;;:69;71868:7;71807:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71895:42;71887:60;;:69;71948:7;71887:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71975:42;71967:60;;:69;72028:7;71967:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;72055:42;72047:60;;:70;72108:8;72047:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;72136:42;72128:60;;:70;72189:8;72128:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;72217:42;72209:60;;:70;72270:8;72209:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;72298:42;72290:60;;:70;72351:8;72290:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;72379:10;72371:28;;:51;72400:21;72371:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71190:1240;;;;;;;71151:1279::o:0;47255:185::-;47393:39;47410:4;47416:2;47420:7;47393:39;;;;;;;;;;;;:16;:39::i;:::-;47255:185;;;:::o;70551:93::-;70599:7;70626:10;;70619:17;;70551:93;:::o;67167:22::-;;;;;;;;;;;;;:::o;70950:99::-;13236:13;:11;:13::i;:::-;71028::::1;;;;;;;;;;;71027:14;71011:13;;:30;;;;;;;;;;;;;;;;;;70950:99::o:0;71057:86::-;13236:13;:11;:13::i;:::-;71125:10:::1;;;;;;;;;;;71124:11;71111:10;;:24;;;;;;;;;;;;;;;;;;71057:86::o:0;67196:18::-;;;;;;;;;;;;;:::o;35545:152::-;35617:7;35660:27;35679:7;35660:18;:27::i;:::-;35637:52;;35545:152;;;:::o;67067:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67025:35::-;;;;:::o;70320:107::-;13236:13;:11;:13::i;:::-;70408:11:::1;70394;:25;;;;70320:107:::0;:::o;31087:233::-;31159:7;31200:1;31183:19;;:5;:19;;;31179:60;;;31211:28;;;;;;;;;;;;;;31179:60;25246:13;31257:18;:25;31276:5;31257:25;;;;;;;;;;;;;;;;:55;31250:62;;31087:233;;;:::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;67829:203::-;67944:4;67973:51;67992:12;68006:10;;68018:5;67973:18;:51::i;:::-;67966:58;;67829:203;;;;:::o;70652:106::-;13236:13;:11;:13::i;:::-;70739:11:::1;70726:10;:24;;;;70652:106:::0;:::o;13350:87::-;13396:7;13423:6;;;;;;;;;;;13416:13;;13350:87;:::o;34328:104::-;34384:13;34417:7;34410:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34328:104;:::o;68040:604::-;67758:10;67745:23;;:9;:23;;;67737:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;68117:6:::1;;;;;;;;;;;68116:7;68108:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;68164:10;;;;;;;;;;;68156:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;66930:4;68240:9;68224:13;:11;:13::i;:::-;:25;;;;:::i;:::-;68223:41;;68215:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;68358:12;;68344:9;68320;:21;68330:10;68320:21;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;68319:51;;68297:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;68466:9;68452:11;;:23;;;;:::i;:::-;68438:9;:38;;68430:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;68533:9;68508;:21;68518:10;68508:21;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;68584:9;68553:15;:27;68569:10;68553:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;68604:32;68614:10;68626:9;68604;:32::i;:::-;68040:604:::0;:::o;41193:308::-;41304:19;:17;:19::i;:::-;41292:31;;:8;:31;;;41288:61;;;41332:17;;;;;;;;;;;;;;41288:61;41414:8;41362:18;:39;41381:19;:17;:19::i;:::-;41362:39;;;;;;;;;;;;;;;:49;41402:8;41362:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41474:8;41438:55;;41453:19;:17;:19::i;:::-;41438:55;;;41484:8;41438:55;;;;;;:::i;:::-;;;;;;;;41193:308;;:::o;70161:151::-;13236:13;:11;:13::i;:::-;70289:15:::1;70272:14;:32;;;;;;;;;;;;:::i;:::-;;70161:151:::0;:::o;48038:399::-;48205:31;48218:4;48224:2;48228:7;48205:12;:31::i;:::-;48269:1;48251:2;:14;;;:19;48247:183;;48290:56;48321:4;48327:2;48331:7;48340:5;48290:30;:56::i;:::-;48285:145;;48374:40;;;;;;;;;;;;;;48285:145;48247:183;48038:399;;;;:::o;69495:178::-;13236:13;:11;:13::i;:::-;69554:10:::1;;;;;;;;;;;69553:11;69545:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;69612:4;69599:10;;:17;;;;;;;;;;;;;;;;;;69627:38;69637:10;69649:15;;69627:9;:38::i;:::-;69495:178::o:0;69802:227::-;69904:13;69979:12;69993:26;70010:8;69993:16;:26::i;:::-;69962:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69935:86;;69802:227;;;:::o;66979:39::-;;;;:::o;70435:108::-;13236:13;:11;:13::i;:::-;70524:11:::1;70509:12;:26;;;;70435:108:::0;:::o;67344:44::-;;;;;;;;;;;;;;;;;:::o;70852:90::-;13236:13;:11;:13::i;:::-;70924:10:::1;;;;;;;;;;;70923:11;70910:10;;:24;;;;;;;;;;;;;;;;;;70852:90::o:0;67282:22::-;;;;;;;;;;;;;:::o;41658:164::-;41755:4;41779:18;:25;41798:5;41779:25;;;;;;;;;;;;;;;:35;41805:8;41779:35;;;;;;;;;;;;;;;;;;;;;;;;;41772:42;;41658:164;;;;:::o;14256:201::-;13236:13;:11;:13::i;:::-;14365:1:::1;14345:22;;:8;:22;;;;14337:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14421:28;14440:8;14421:18;:28::i;:::-;14256:201:::0;:::o;67132:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13515:132::-;13590:12;:10;:12::i;:::-;13579:23;;:7;:5;:7::i;:::-;:23;;;13571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13515:132::o;42080:282::-;42145:4;42201:7;42182:15;:13;:15::i;:::-;:26;;:66;;;;;42235:13;;42225:7;:23;42182:66;:153;;;;;42334:1;26022:8;42286:17;:26;42304:7;42286:26;;;;;;;;;;;;:44;:49;42182:153;42162:173;;42080:282;;;:::o;63846:105::-;63906:7;63933:10;63926:17;;63846:105;:::o;29419:92::-;29475:7;29419:92;:::o;36700:1275::-;36767:7;36787:12;36802:7;36787:22;;36870:4;36851:15;:13;:15::i;:::-;:23;36847:1061;;36904:13;;36897:4;:20;36893:1015;;;36942:14;36959:17;:23;36977:4;36959:23;;;;;;;;;;;;36942:40;;37076:1;26022:8;37048:6;:24;:29;37044:845;;;37713:113;37730:1;37720:6;:11;37713:113;;;37773:17;:25;37791:6;;;;;;;37773:25;;;;;;;;;;;;37764:34;;37713:113;;;37859:6;37852:13;;;;;;37044:845;36919:989;36893:1015;36847:1061;37936:31;;;;;;;;;;;;;;36700:1275;;;;:::o;43243:479::-;43345:27;43374:23;43415:38;43456:15;:24;43472:7;43456:24;;;;;;;;;;;43415:65;;43627:18;43604:41;;43684:19;43678:26;43659:45;;43589:126;43243:479;;;:::o;42471:659::-;42620:11;42785:16;42778:5;42774:28;42765:37;;42945:16;42934:9;42930:32;42917:45;;43095:15;43084:9;43081:30;43073:5;43062:9;43059:20;43056:56;43046:66;;42471:659;;;;;:::o;49099:159::-;;;;;:::o;63155:311::-;63290:7;63310:16;26426:3;63336:19;:41;;63310:68;;26426:3;63404:31;63415:4;63421:2;63425:9;63404:10;:31::i;:::-;63396:40;;:62;;63389:69;;;63155:311;;;;;:::o;38523:450::-;38603:14;38771:16;38764:5;38760:28;38751:37;;38948:5;38934:11;38909:23;38905:41;38902:52;38895:5;38892:63;38882:73;;38523:450;;;;:::o;49923:158::-;;;;;:::o;57678:112::-;57755:27;57765:2;57769:8;57755:27;;;;;;;;;;;;:9;:27::i;:::-;57678:112;;:::o;14617:191::-;14691:16;14710:6;;;;;;;;;;;14691:25;;14736:8;14727:6;;:17;;;;;;;;;;;;;;;;;;14791:8;14760:40;;14781:8;14760:40;;;;;;;;;;;;14680:128;14617:191;:::o;3716:190::-;3841:4;3894;3865:25;3878:5;3885:4;3865:12;:25::i;:::-;:33;3858:40;;3716:190;;;;;:::o;50521:716::-;50684:4;50730:2;50705:45;;;50751:19;:17;:19::i;:::-;50772:4;50778:7;50787:5;50705:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50701:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51005:1;50988:6;:13;:18;50984:235;;;51034:40;;;;;;;;;;;;;;50984:235;51177:6;51171:13;51162:6;51158:2;51154:15;51147:38;50701:529;50874:54;;;50864:64;;;:6;:64;;;;50857:71;;;50521:716;;;;;;:::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;11901:98::-;11954:7;11981:10;11974:17;;11901:98;:::o;62856:147::-;62993:6;62856:147;;;;;:::o;56905:689::-;57036:19;57042:2;57046:8;57036:5;:19::i;:::-;57115:1;57097:2;:14;;;:19;57093:483;;57137:11;57151:13;;57137:27;;57183:13;57205:8;57199:3;:14;57183:30;;57232:233;57263:62;57302:1;57306:2;57310:7;;;;;;57319:5;57263:30;:62::i;:::-;57258:167;;57361:40;;;;;;;;;;;;;;57258:167;57460:3;57452:5;:11;57232:233;;57547:3;57530:13;;:20;57526:34;;57552:8;;;57526:34;57118:458;;57093:483;56905:689;;;:::o;4583:296::-;4666:7;4686:20;4709:4;4686:27;;4729:9;4724:118;4748:5;:12;4744:1;:16;4724:118;;;4797:33;4807:12;4821:5;4827:1;4821:8;;;;;;;;:::i;:::-;;;;;;;;4797:9;:33::i;:::-;4782:48;;4762:3;;;;;:::i;:::-;;;;4724:118;;;;4859:12;4852:19;;;4583:296;;;;:::o;51699:2454::-;51772:20;51795:13;;51772:36;;51835:1;51823:8;:13;51819:44;;;51845:18;;;;;;;;;;;;;;51819:44;51876:61;51906:1;51910:2;51914:12;51928:8;51876:21;:61::i;:::-;52420:1;25384:2;52390:1;:26;;52389:32;52377:8;:45;52351:18;:22;52370:2;52351:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52699:139;52736:2;52790:33;52813:1;52817:2;52821:1;52790:14;:33::i;:::-;52757:30;52778:8;52757:20;:30::i;:::-;:66;52699:18;:139::i;:::-;52665:17;:31;52683:12;52665:31;;;;;;;;;;;:173;;;;52855:16;52886:11;52915:8;52900:12;:23;52886:37;;53170:16;53166:2;53162:25;53150:37;;53542:12;53502:8;53461:1;53399:25;53340:1;53279;53252:335;53667:1;53653:12;53649:20;53607:346;53708:3;53699:7;53696:16;53607:346;;53926:7;53916:8;53913:1;53886:25;53883:1;53880;53875:59;53761:1;53752:7;53748:15;53737:26;;53607:346;;;53611:77;53998:1;53986:8;:13;53982:45;;;54008:19;;;;;;;;;;;;;;53982:45;54060:3;54044:13;:19;;;;52125:1950;;54085:60;54114:1;54118:2;54122:12;54136:8;54085:20;:60::i;:::-;51761:2392;51699:2454;;:::o;10790:149::-;10853:7;10884:1;10880;:5;:51;;10911:20;10926:1;10929;10911:14;:20::i;:::-;10880:51;;;10888:20;10903:1;10906;10888:14;:20::i;:::-;10880:51;10873:58;;10790:149;;;;:::o;39075:324::-;39145:14;39378:1;39368:8;39365:15;39339:24;39335:46;39325:56;;39075:324;;;:::o;10947:268::-;11015:13;11122:1;11116:4;11109:15;11151:1;11145:4;11138:15;11192:4;11186;11176:21;11167:30;;10947:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:329::-;3619:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:119;;;3674:79;;:::i;:::-;3636:119;3794:1;3819:53;3864:7;3855:6;3844:9;3840:22;3819:53;:::i;:::-;3809:63;;3765:117;3560:329;;;;:::o;3895:474::-;3963:6;3971;4020:2;4008:9;3999:7;3995:23;3991:32;3988:119;;;4026:79;;:::i;:::-;3988:119;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;3895:474;;;;;:::o;4375:619::-;4452:6;4460;4468;4517:2;4505:9;4496:7;4492:23;4488:32;4485:119;;;4523:79;;:::i;:::-;4485:119;4643:1;4668:53;4713:7;4704:6;4693:9;4689:22;4668:53;:::i;:::-;4658:63;;4614:117;4770:2;4796:53;4841:7;4832:6;4821:9;4817:22;4796:53;:::i;:::-;4786:63;;4741:118;4898:2;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4869:118;4375:619;;;;;:::o;5000:943::-;5095:6;5103;5111;5119;5168:3;5156:9;5147:7;5143:23;5139:33;5136:120;;;5175:79;;:::i;:::-;5136:120;5295:1;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5266:117;5422:2;5448:53;5493:7;5484:6;5473:9;5469:22;5448:53;:::i;:::-;5438:63;;5393:118;5550:2;5576:53;5621:7;5612:6;5601:9;5597:22;5576:53;:::i;:::-;5566:63;;5521:118;5706:2;5695:9;5691:18;5678:32;5737:18;5729:6;5726:30;5723:117;;;5759:79;;:::i;:::-;5723:117;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;:::i;:::-;5854:72;;5649:287;5000:943;;;;;;;:::o;5949:468::-;6014:6;6022;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:53;6267:7;6258:6;6247:9;6243:22;6222:53;:::i;:::-;6212:63;;6168:117;6324:2;6350:50;6392:7;6383:6;6372:9;6368:22;6350:50;:::i;:::-;6340:60;;6295:115;5949:468;;;;;:::o;6423:474::-;6491:6;6499;6548:2;6536:9;6527:7;6523:23;6519:32;6516:119;;;6554:79;;:::i;:::-;6516:119;6674:1;6699:53;6744:7;6735:6;6724:9;6720:22;6699:53;:::i;:::-;6689:63;;6645:117;6801:2;6827:53;6872:7;6863:6;6852:9;6848:22;6827:53;:::i;:::-;6817:63;;6772:118;6423:474;;;;;:::o;6903:684::-;6996:6;7004;7053:2;7041:9;7032:7;7028:23;7024:32;7021:119;;;7059:79;;:::i;:::-;7021:119;7207:1;7196:9;7192:17;7179:31;7237:18;7229:6;7226:30;7223:117;;;7259:79;;:::i;:::-;7223:117;7364:78;7434:7;7425:6;7414:9;7410:22;7364:78;:::i;:::-;7354:88;;7150:302;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;6903:684;;;;;:::o;7593:::-;7686:6;7694;7743:2;7731:9;7722:7;7718:23;7714:32;7711:119;;;7749:79;;:::i;:::-;7711:119;7897:1;7886:9;7882:17;7869:31;7927:18;7919:6;7916:30;7913:117;;;7949:79;;:::i;:::-;7913:117;8054:78;8124:7;8115:6;8104:9;8100:22;8054:78;:::i;:::-;8044:88;;7840:302;8181:2;8207:53;8252:7;8243:6;8232:9;8228:22;8207:53;:::i;:::-;8197:63;;8152:118;7593:684;;;;;:::o;8283:329::-;8342:6;8391:2;8379:9;8370:7;8366:23;8362:32;8359:119;;;8397:79;;:::i;:::-;8359:119;8517:1;8542:53;8587:7;8578:6;8567:9;8563:22;8542:53;:::i;:::-;8532:63;;8488:117;8283:329;;;;:::o;8618:327::-;8676:6;8725:2;8713:9;8704:7;8700:23;8696:32;8693:119;;;8731:79;;:::i;:::-;8693:119;8851:1;8876:52;8920:7;8911:6;8900:9;8896:22;8876:52;:::i;:::-;8866:62;;8822:116;8618:327;;;;:::o;8951:349::-;9020:6;9069:2;9057:9;9048:7;9044:23;9040:32;9037:119;;;9075:79;;:::i;:::-;9037:119;9195:1;9220:63;9275:7;9266:6;9255:9;9251:22;9220:63;:::i;:::-;9210:73;;9166:127;8951:349;;;;:::o;9306:509::-;9375:6;9424:2;9412:9;9403:7;9399:23;9395:32;9392:119;;;9430:79;;:::i;:::-;9392:119;9578:1;9567:9;9563:17;9550:31;9608:18;9600:6;9597:30;9594:117;;;9630:79;;:::i;:::-;9594:117;9735:63;9790:7;9781:6;9770:9;9766:22;9735:63;:::i;:::-;9725:73;;9521:287;9306:509;;;;:::o;9821:329::-;9880:6;9929:2;9917:9;9908:7;9904:23;9900:32;9897:119;;;9935:79;;:::i;:::-;9897:119;10055:1;10080:53;10125:7;10116:6;10105:9;10101:22;10080:53;:::i;:::-;10070:63;;10026:117;9821:329;;;;:::o;10156:118::-;10243:24;10261:5;10243:24;:::i;:::-;10238:3;10231:37;10156:118;;:::o;10280:157::-;10385:45;10405:24;10423:5;10405:24;:::i;:::-;10385:45;:::i;:::-;10380:3;10373:58;10280:157;;:::o;10443:109::-;10524:21;10539:5;10524:21;:::i;:::-;10519:3;10512:34;10443:109;;:::o;10558:118::-;10645:24;10663:5;10645:24;:::i;:::-;10640:3;10633:37;10558:118;;:::o;10682:360::-;10768:3;10796:38;10828:5;10796:38;:::i;:::-;10850:70;10913:6;10908:3;10850:70;:::i;:::-;10843:77;;10929:52;10974:6;10969:3;10962:4;10955:5;10951:16;10929:52;:::i;:::-;11006:29;11028:6;11006:29;:::i;:::-;11001:3;10997:39;10990:46;;10772:270;10682:360;;;;:::o;11048:364::-;11136:3;11164:39;11197:5;11164:39;:::i;:::-;11219:71;11283:6;11278:3;11219:71;:::i;:::-;11212:78;;11299:52;11344:6;11339:3;11332:4;11325:5;11321:16;11299:52;:::i;:::-;11376:29;11398:6;11376:29;:::i;:::-;11371:3;11367:39;11360:46;;11140:272;11048:364;;;;:::o;11418:377::-;11524:3;11552:39;11585:5;11552:39;:::i;:::-;11607:89;11689:6;11684:3;11607:89;:::i;:::-;11600:96;;11705:52;11750:6;11745:3;11738:4;11731:5;11727:16;11705:52;:::i;:::-;11782:6;11777:3;11773:16;11766:23;;11528:267;11418:377;;;;:::o;11825:845::-;11928:3;11965:5;11959:12;11994:36;12020:9;11994:36;:::i;:::-;12046:89;12128:6;12123:3;12046:89;:::i;:::-;12039:96;;12166:1;12155:9;12151:17;12182:1;12177:137;;;;12328:1;12323:341;;;;12144:520;;12177:137;12261:4;12257:9;12246;12242:25;12237:3;12230:38;12297:6;12292:3;12288:16;12281:23;;12177:137;;12323:341;12390:38;12422:5;12390:38;:::i;:::-;12450:1;12464:154;12478:6;12475:1;12472:13;12464:154;;;12552:7;12546:14;12542:1;12537:3;12533:11;12526:35;12602:1;12593:7;12589:15;12578:26;;12500:4;12497:1;12493:12;12488:17;;12464:154;;;12647:6;12642:3;12638:16;12631:23;;12330:334;;12144:520;;11932:738;;11825:845;;;;:::o;12676:366::-;12818:3;12839:67;12903:2;12898:3;12839:67;:::i;:::-;12832:74;;12915:93;13004:3;12915:93;:::i;:::-;13033:2;13028:3;13024:12;13017:19;;12676:366;;;:::o;13048:::-;13190:3;13211:67;13275:2;13270:3;13211:67;:::i;:::-;13204:74;;13287:93;13376:3;13287:93;:::i;:::-;13405:2;13400:3;13396:12;13389:19;;13048:366;;;:::o;13420:::-;13562:3;13583:67;13647:2;13642:3;13583:67;:::i;:::-;13576:74;;13659:93;13748:3;13659:93;:::i;:::-;13777:2;13772:3;13768:12;13761:19;;13420:366;;;:::o;13792:::-;13934:3;13955:67;14019:2;14014:3;13955:67;:::i;:::-;13948:74;;14031:93;14120:3;14031:93;:::i;:::-;14149:2;14144:3;14140:12;14133:19;;13792:366;;;:::o;14164:::-;14306:3;14327:67;14391:2;14386:3;14327:67;:::i;:::-;14320:74;;14403:93;14492:3;14403:93;:::i;:::-;14521:2;14516:3;14512:12;14505:19;;14164:366;;;:::o;14536:::-;14678:3;14699:67;14763:2;14758:3;14699:67;:::i;:::-;14692:74;;14775:93;14864:3;14775:93;:::i;:::-;14893:2;14888:3;14884:12;14877:19;;14536:366;;;:::o;14908:::-;15050:3;15071:67;15135:2;15130:3;15071:67;:::i;:::-;15064:74;;15147:93;15236:3;15147:93;:::i;:::-;15265:2;15260:3;15256:12;15249:19;;14908:366;;;:::o;15280:::-;15422:3;15443:67;15507:2;15502:3;15443:67;:::i;:::-;15436:74;;15519:93;15608:3;15519:93;:::i;:::-;15637:2;15632:3;15628:12;15621:19;;15280:366;;;:::o;15652:::-;15794:3;15815:67;15879:2;15874:3;15815:67;:::i;:::-;15808:74;;15891:93;15980:3;15891:93;:::i;:::-;16009:2;16004:3;16000:12;15993:19;;15652:366;;;:::o;16024:::-;16166:3;16187:67;16251:2;16246:3;16187:67;:::i;:::-;16180:74;;16263:93;16352:3;16263:93;:::i;:::-;16381:2;16376:3;16372:12;16365:19;;16024:366;;;:::o;16396:::-;16538:3;16559:67;16623:2;16618:3;16559:67;:::i;:::-;16552:74;;16635:93;16724:3;16635:93;:::i;:::-;16753:2;16748:3;16744:12;16737:19;;16396:366;;;:::o;16768:118::-;16855:24;16873:5;16855:24;:::i;:::-;16850:3;16843:37;16768:118;;:::o;16892:256::-;17004:3;17019:75;17090:3;17081:6;17019:75;:::i;:::-;17119:2;17114:3;17110:12;17103:19;;17139:3;17132:10;;16892:256;;;;:::o;17154:429::-;17331:3;17353:92;17441:3;17432:6;17353:92;:::i;:::-;17346:99;;17462:95;17553:3;17544:6;17462:95;:::i;:::-;17455:102;;17574:3;17567:10;;17154:429;;;;;:::o;17589:222::-;17682:4;17720:2;17709:9;17705:18;17697:26;;17733:71;17801:1;17790:9;17786:17;17777:6;17733:71;:::i;:::-;17589:222;;;;:::o;17817:640::-;18012:4;18050:3;18039:9;18035:19;18027:27;;18064:71;18132:1;18121:9;18117:17;18108:6;18064:71;:::i;:::-;18145:72;18213:2;18202:9;18198:18;18189:6;18145:72;:::i;:::-;18227;18295:2;18284:9;18280:18;18271:6;18227:72;:::i;:::-;18346:9;18340:4;18336:20;18331:2;18320:9;18316:18;18309:48;18374:76;18445:4;18436:6;18374:76;:::i;:::-;18366:84;;17817:640;;;;;;;:::o;18463:210::-;18550:4;18588:2;18577:9;18573:18;18565:26;;18601:65;18663:1;18652:9;18648:17;18639:6;18601:65;:::i;:::-;18463:210;;;;:::o;18679:222::-;18772:4;18810:2;18799:9;18795:18;18787:26;;18823:71;18891:1;18880:9;18876:17;18867:6;18823:71;:::i;:::-;18679:222;;;;:::o;18907:313::-;19020:4;19058:2;19047:9;19043:18;19035:26;;19107:9;19101:4;19097:20;19093:1;19082:9;19078:17;19071:47;19135:78;19208:4;19199:6;19135:78;:::i;:::-;19127:86;;18907:313;;;;:::o;19226:419::-;19392:4;19430:2;19419:9;19415:18;19407:26;;19479:9;19473:4;19469:20;19465:1;19454:9;19450:17;19443:47;19507:131;19633:4;19507:131;:::i;:::-;19499:139;;19226:419;;;:::o;19651:::-;19817:4;19855:2;19844:9;19840:18;19832:26;;19904:9;19898:4;19894:20;19890:1;19879:9;19875:17;19868:47;19932:131;20058:4;19932:131;:::i;:::-;19924:139;;19651:419;;;:::o;20076:::-;20242:4;20280:2;20269:9;20265:18;20257:26;;20329:9;20323:4;20319:20;20315:1;20304:9;20300:17;20293:47;20357:131;20483:4;20357:131;:::i;:::-;20349:139;;20076:419;;;:::o;20501:::-;20667:4;20705:2;20694:9;20690:18;20682:26;;20754:9;20748:4;20744:20;20740:1;20729:9;20725:17;20718:47;20782:131;20908:4;20782:131;:::i;:::-;20774:139;;20501:419;;;:::o;20926:::-;21092:4;21130:2;21119:9;21115:18;21107:26;;21179:9;21173:4;21169:20;21165:1;21154:9;21150:17;21143:47;21207:131;21333:4;21207:131;:::i;:::-;21199:139;;20926:419;;;:::o;21351:::-;21517:4;21555:2;21544:9;21540:18;21532:26;;21604:9;21598:4;21594:20;21590:1;21579:9;21575:17;21568:47;21632:131;21758:4;21632:131;:::i;:::-;21624:139;;21351:419;;;:::o;21776:::-;21942:4;21980:2;21969:9;21965:18;21957:26;;22029:9;22023:4;22019:20;22015:1;22004:9;22000:17;21993:47;22057:131;22183:4;22057:131;:::i;:::-;22049:139;;21776:419;;;:::o;22201:::-;22367:4;22405:2;22394:9;22390:18;22382:26;;22454:9;22448:4;22444:20;22440:1;22429:9;22425:17;22418:47;22482:131;22608:4;22482:131;:::i;:::-;22474:139;;22201:419;;;:::o;22626:::-;22792:4;22830:2;22819:9;22815:18;22807:26;;22879:9;22873:4;22869:20;22865:1;22854:9;22850:17;22843:47;22907:131;23033:4;22907:131;:::i;:::-;22899:139;;22626:419;;;:::o;23051:::-;23217:4;23255:2;23244:9;23240:18;23232:26;;23304:9;23298:4;23294:20;23290:1;23279:9;23275:17;23268:47;23332:131;23458:4;23332:131;:::i;:::-;23324:139;;23051:419;;;:::o;23476:::-;23642:4;23680:2;23669:9;23665:18;23657:26;;23729:9;23723:4;23719:20;23715:1;23704:9;23700:17;23693:47;23757:131;23883:4;23757:131;:::i;:::-;23749:139;;23476:419;;;:::o;23901:222::-;23994:4;24032:2;24021:9;24017:18;24009:26;;24045:71;24113:1;24102:9;24098:17;24089:6;24045:71;:::i;:::-;23901:222;;;;:::o;24129:129::-;24163:6;24190:20;;:::i;:::-;24180:30;;24219:33;24247:4;24239:6;24219:33;:::i;:::-;24129:129;;;:::o;24264:75::-;24297:6;24330:2;24324:9;24314:19;;24264:75;:::o;24345:311::-;24422:4;24512:18;24504:6;24501:30;24498:56;;;24534:18;;:::i;:::-;24498:56;24584:4;24576:6;24572:17;24564:25;;24644:4;24638;24634:15;24626:23;;24345:311;;;:::o;24662:307::-;24723:4;24813:18;24805:6;24802:30;24799:56;;;24835:18;;:::i;:::-;24799:56;24873:29;24895:6;24873:29;:::i;:::-;24865:37;;24957:4;24951;24947:15;24939:23;;24662:307;;;:::o;24975:308::-;25037:4;25127:18;25119:6;25116:30;25113:56;;;25149:18;;:::i;:::-;25113:56;25187:29;25209:6;25187:29;:::i;:::-;25179:37;;25271:4;25265;25261:15;25253:23;;24975:308;;;:::o;25289:141::-;25338:4;25361:3;25353:11;;25384:3;25381:1;25374:14;25418:4;25415:1;25405:18;25397:26;;25289:141;;;:::o;25436:98::-;25487:6;25521:5;25515:12;25505:22;;25436:98;;;:::o;25540:99::-;25592:6;25626:5;25620:12;25610:22;;25540:99;;;:::o;25645:168::-;25728:11;25762:6;25757:3;25750:19;25802:4;25797:3;25793:14;25778:29;;25645:168;;;;:::o;25819:169::-;25903:11;25937:6;25932:3;25925:19;25977:4;25972:3;25968:14;25953:29;;25819:169;;;;:::o;25994:148::-;26096:11;26133:3;26118:18;;25994:148;;;;:::o;26148:305::-;26188:3;26207:20;26225:1;26207:20;:::i;:::-;26202:25;;26241:20;26259:1;26241:20;:::i;:::-;26236:25;;26395:1;26327:66;26323:74;26320:1;26317:81;26314:107;;;26401:18;;:::i;:::-;26314:107;26445:1;26442;26438:9;26431:16;;26148:305;;;;:::o;26459:185::-;26499:1;26516:20;26534:1;26516:20;:::i;:::-;26511:25;;26550:20;26568:1;26550:20;:::i;:::-;26545:25;;26589:1;26579:35;;26594:18;;:::i;:::-;26579:35;26636:1;26633;26629:9;26624:14;;26459:185;;;;:::o;26650:348::-;26690:7;26713:20;26731:1;26713:20;:::i;:::-;26708:25;;26747:20;26765:1;26747:20;:::i;:::-;26742:25;;26935:1;26867:66;26863:74;26860:1;26857:81;26852:1;26845:9;26838:17;26834:105;26831:131;;;26942:18;;:::i;:::-;26831:131;26990:1;26987;26983:9;26972:20;;26650:348;;;;:::o;27004:191::-;27044:4;27064:20;27082:1;27064:20;:::i;:::-;27059:25;;27098:20;27116:1;27098:20;:::i;:::-;27093:25;;27137:1;27134;27131:8;27128:34;;;27142:18;;:::i;:::-;27128:34;27187:1;27184;27180:9;27172:17;;27004:191;;;;:::o;27201:96::-;27238:7;27267:24;27285:5;27267:24;:::i;:::-;27256:35;;27201:96;;;:::o;27303:90::-;27337:7;27380:5;27373:13;27366:21;27355:32;;27303:90;;;:::o;27399:77::-;27436:7;27465:5;27454:16;;27399:77;;;:::o;27482:149::-;27518:7;27558:66;27551:5;27547:78;27536:89;;27482:149;;;:::o;27637:126::-;27674:7;27714:42;27707:5;27703:54;27692:65;;27637:126;;;:::o;27769:77::-;27806:7;27835:5;27824:16;;27769:77;;;:::o;27852:154::-;27936:6;27931:3;27926;27913:30;27998:1;27989:6;27984:3;27980:16;27973:27;27852:154;;;:::o;28012:307::-;28080:1;28090:113;28104:6;28101:1;28098:13;28090:113;;;28189:1;28184:3;28180:11;28174:18;28170:1;28165:3;28161:11;28154:39;28126:2;28123:1;28119:10;28114:15;;28090:113;;;28221:6;28218:1;28215:13;28212:101;;;28301:1;28292:6;28287:3;28283:16;28276:27;28212:101;28061:258;28012:307;;;:::o;28325:320::-;28369:6;28406:1;28400:4;28396:12;28386:22;;28453:1;28447:4;28443:12;28474:18;28464:81;;28530:4;28522:6;28518:17;28508:27;;28464:81;28592:2;28584:6;28581:14;28561:18;28558:38;28555:84;;;28611:18;;:::i;:::-;28555:84;28376:269;28325:320;;;:::o;28651:281::-;28734:27;28756:4;28734:27;:::i;:::-;28726:6;28722:40;28864:6;28852:10;28849:22;28828:18;28816:10;28813:34;28810:62;28807:88;;;28875:18;;:::i;:::-;28807:88;28915:10;28911:2;28904:22;28694:238;28651:281;;:::o;28938:233::-;28977:3;29000:24;29018:5;29000:24;:::i;:::-;28991:33;;29046:66;29039:5;29036:77;29033:103;;;29116:18;;:::i;:::-;29033:103;29163:1;29156:5;29152:13;29145:20;;28938:233;;;:::o;29177:100::-;29216:7;29245:26;29265:5;29245:26;:::i;:::-;29234:37;;29177:100;;;:::o;29283:94::-;29322:7;29351:20;29365:5;29351:20;:::i;:::-;29340:31;;29283:94;;;:::o;29383:176::-;29415:1;29432:20;29450:1;29432:20;:::i;:::-;29427:25;;29466:20;29484:1;29466:20;:::i;:::-;29461:25;;29505:1;29495:35;;29510:18;;:::i;:::-;29495:35;29551:1;29548;29544:9;29539:14;;29383:176;;;;:::o;29565:180::-;29613:77;29610:1;29603:88;29710:4;29707:1;29700:15;29734:4;29731:1;29724:15;29751:180;29799:77;29796:1;29789:88;29896:4;29893:1;29886:15;29920:4;29917:1;29910:15;29937:180;29985:77;29982:1;29975:88;30082:4;30079:1;30072:15;30106:4;30103:1;30096:15;30123:180;30171:77;30168:1;30161:88;30268:4;30265:1;30258:15;30292:4;30289:1;30282:15;30309:180;30357:77;30354:1;30347:88;30454:4;30451:1;30444:15;30478:4;30475:1;30468:15;30495:117;30604:1;30601;30594:12;30618:117;30727:1;30724;30717:12;30741:117;30850:1;30847;30840:12;30864:117;30973:1;30970;30963:12;30987:117;31096:1;31093;31086:12;31110:102;31151:6;31202:2;31198:7;31193:2;31186:5;31182:14;31178:28;31168:38;;31110:102;;;:::o;31218:94::-;31251:8;31299:5;31295:2;31291:14;31270:35;;31218:94;;;:::o;31318:178::-;31458:30;31454:1;31446:6;31442:14;31435:54;31318:178;:::o;31502:166::-;31642:18;31638:1;31630:6;31626:14;31619:42;31502:166;:::o;31674:225::-;31814:34;31810:1;31802:6;31798:14;31791:58;31883:8;31878:2;31870:6;31866:15;31859:33;31674:225;:::o;31905:167::-;32045:19;32041:1;32033:6;32029:14;32022:43;31905:167;:::o;32078:178::-;32218:30;32214:1;32206:6;32202:14;32195:54;32078:178;:::o;32262:175::-;32402:27;32398:1;32390:6;32386:14;32379:51;32262:175;:::o;32443:173::-;32583:25;32579:1;32571:6;32567:14;32560:49;32443:173;:::o;32622:169::-;32762:21;32758:1;32750:6;32746:14;32739:45;32622:169;:::o;32797:182::-;32937:34;32933:1;32925:6;32921:14;32914:58;32797:182;:::o;32985:167::-;33125:19;33121:1;33113:6;33109:14;33102:43;32985:167;:::o;33158:171::-;33298:23;33294:1;33286:6;33282:14;33275:47;33158:171;:::o;33335:122::-;33408:24;33426:5;33408:24;:::i;:::-;33401:5;33398:35;33388:63;;33447:1;33444;33437:12;33388:63;33335:122;:::o;33463:116::-;33533:21;33548:5;33533:21;:::i;:::-;33526:5;33523:32;33513:60;;33569:1;33566;33559:12;33513:60;33463:116;:::o;33585:122::-;33658:24;33676:5;33658:24;:::i;:::-;33651:5;33648:35;33638:63;;33697:1;33694;33687:12;33638:63;33585:122;:::o;33713:120::-;33785:23;33802:5;33785:23;:::i;:::-;33778:5;33775:34;33765:62;;33823:1;33820;33813:12;33765:62;33713:120;:::o;33839:122::-;33912:24;33930:5;33912:24;:::i;:::-;33905:5;33902:35;33892:63;;33951:1;33948;33941:12;33892:63;33839:122;:::o

Swarm Source

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