ETH Price: $3,454.25 (+1.87%)
Gas: 9 Gwei

Token

Bear Riders NFT (HODL)
 

Overview

Max Total Supply

4,865 HODL

Holders

1,510

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 HODL
0x7D4320c3A77bf087D1d67Ad16628Ed0713671130
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:
BearRiders

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-27
*/

//SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. It the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`.
        // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`.
        // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`.
        // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a
        // good first aproximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1;
        uint256 x = a;
        if (x >> 128 > 0) {
            x >>= 128;
            result <<= 64;
        }
        if (x >> 64 > 0) {
            x >>= 64;
            result <<= 32;
        }
        if (x >> 32 > 0) {
            x >>= 32;
            result <<= 16;
        }
        if (x >> 16 > 0) {
            x >>= 16;
            result <<= 8;
        }
        if (x >> 8 > 0) {
            x >>= 8;
            result <<= 4;
        }
        if (x >> 4 > 0) {
            x >>= 4;
            result <<= 2;
        }
        if (x >> 2 > 0) {
            result <<= 1;
        }

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        uint256 result = sqrt(a);
        if (rounding == Rounding.Up && result * result < a) {
            result += 1;
        }
        return result;
    }
}

// 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/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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


pragma solidity ^0.8.13;


contract BearRiders is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    enum MintState {

        // PUBLIC: open for all, integer id: 0
        PUBLIC,
        // WHITELIST: only used for
        WHITELIST,
        // mint is closed, only admin/owner may mint
        CLOSED
    }

    uint256 public constant MINT_PER_ACCOUNT = 3;


    uint256 public immutable MAX_SUPPLY;

    // the state of whether minting is allowed.
    MintState private mintingState = MintState.CLOSED;

    string public readMeURI;
    // the base uri for the token
    string public baseURI;

    string public unrevealedURI;

    constructor(
       uint256 maxSupply,
       string memory name, string memory symbol
    ) ERC721A(name, symbol) {
        MAX_SUPPLY = maxSupply;
    }

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

    function setReadMeURI(string calldata _uri) external onlyOwner {
        readMeURI = _uri;
    }

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

    function setUnrevealedURI(string calldata _uri) external onlyOwner {
        unrevealedURI = _uri;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        return bytes(baseURI).length > 0
                        ? string(
                            abi.encodePacked(
                                baseURI,
                                tokenId.toString(),
                                ".json"))
                        : unrevealedURI;
    }

    modifier mintOpen() {
        require(mintingState == MintState.PUBLIC, "minting not active.");
        _;
    }

    function ownerMint(uint16 amount) external onlyOwner {
        uint256 totalSupply = totalSupply();
        // ensure minting the amount entered would not mint over the max supply
        require(
            totalSupply + amount < MAX_SUPPLY,
            "mint amount would be out of range."
        );

          _safeMint(_msgSender(), amount);
    }


    function max(int256 a, int256 b) internal pure returns(int256) {
        return a > b ? a : b;
    }

    function min(int256 a, int256 b) internal pure returns(int256) {
        return a < b ? a : b;
    }


    function mint(uint256 amount) external nonReentrant mintOpen {
        require(_totalMinted() < MAX_SUPPLY, "minted out.");
        require(_totalMinted() + amount <= MAX_SUPPLY, "mint amount would be out of range.");
        require(msg.sender == tx.origin);
        require(amount > 0 && amount <= MINT_PER_ACCOUNT, "number too large");

        uint minted = _numberMinted(msg.sender);        

        require(minted < 3, "max amount minted");

        // this will determine how many free mints are left.
        // 1000 - 999 = 1
        // for example
        // int256 remainingFreeMints = max(int256(MAX_FREE_MINTS) - int256(totalSupply()), 0);
        // uint256 requiredPrice = 0;


        // if (remainingFreeMints > 0) {
        //     // we have free mint left.
        //     // limit the user to 1 per free mint.
        //     require(amount == 1, "you may only mint one free NFT at this time.");
        //     require(minted < 1, "account already claimed free mint");


        //     // mark their account as having minted during free mint
        //     _setAux(msg.sender, 1); 
        // } else {
        //     uint256 accountMintLimit = MINT_PER_ACCOUNT;

        //     if (_getAux(msg.sender) > 0) {
        //         // being greater than 1, means they minted during the free period. allow them to mint an extra one during paid.
        //         accountMintLimit += 1; 
        //     }

        //     require(minted < accountMintLimit, "mint limit reached");
        //     require(minted + amount <= accountMintLimit, "mint limit reached");

        //     requiredPrice = amount * MINT_PRICE;
        // }

        // if (requiredPrice > 0) {
        //     require(msg.value >= requiredPrice, "out of free mints, must pay 0.005 ether for each");
        // }

        _safeMint(msg.sender, amount);

        // if (msg.value > requiredPrice) {
        //     uint256 diff = msg.value - requiredPrice;
        //     (bool ok,) = payable(msg.sender).call{value: diff}("");
        //     require(ok, "failed to send refund.");
        // }
    }



    // toggles the state of mint
    function setMintingState(MintState state) external onlyOwner {
        mintingState = state;
    }



    // Issue a withdrawal to a specific address
    function withdraw(address sendTo) external onlyOwner {
        (bool ok, ) = payable(sendTo).call{value: address(this).balance}("");
        require(ok);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_ACCOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"readMeURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum BearRiders.MintState","name":"state","type":"uint8"}],"name":"setMintingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setReadMeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sendTo","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526002600a60006101000a81548160ff021916908360028111156200002d576200002c620001b3565b5b02179055503480156200003f57600080fd5b50604051620043b8380380620043b88339818101604052810190620000659190620003b0565b818181600290816200007891906200068b565b5080600390816200008a91906200068b565b506200009b620000dc60201b60201c565b6000819055505050620000c3620000b7620000e560201b60201c565b620000ed60201b60201c565b6001600981905550826080818152505050505062000772565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6200020b81620001f6565b81146200021757600080fd5b50565b6000815190506200022b8162000200565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000286826200023b565b810181811067ffffffffffffffff82111715620002a857620002a76200024c565b5b80604052505050565b6000620002bd620001e2565b9050620002cb82826200027b565b919050565b600067ffffffffffffffff821115620002ee57620002ed6200024c565b5b620002f9826200023b565b9050602081019050919050565b60005b838110156200032657808201518184015260208101905062000309565b60008484015250505050565b6000620003496200034384620002d0565b620002b1565b90508281526020810184848401111562000368576200036762000236565b5b6200037584828562000306565b509392505050565b600082601f83011262000395576200039462000231565b5b8151620003a784826020860162000332565b91505092915050565b600080600060608486031215620003cc57620003cb620001ec565b5b6000620003dc868287016200021a565b935050602084015167ffffffffffffffff8111156200040057620003ff620001f1565b5b6200040e868287016200037d565b925050604084015167ffffffffffffffff811115620004325762000431620001f1565b5b62000440868287016200037d565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200049d57607f821691505b602082108103620004b357620004b262000455565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200051d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004de565b620005298683620004de565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200056c620005666200056084620001f6565b62000541565b620001f6565b9050919050565b6000819050919050565b62000588836200054b565b620005a0620005978262000573565b848454620004eb565b825550505050565b600090565b620005b7620005a8565b620005c48184846200057d565b505050565b5b81811015620005ec57620005e0600082620005ad565b600181019050620005ca565b5050565b601f8211156200063b576200060581620004b9565b6200061084620004ce565b8101602085101562000620578190505b620006386200062f85620004ce565b830182620005c9565b50505b505050565b600082821c905092915050565b6000620006606000198460080262000640565b1980831691505092915050565b60006200067b83836200064d565b9150826002028217905092915050565b62000696826200044a565b67ffffffffffffffff811115620006b257620006b16200024c565b5b620006be825462000484565b620006cb828285620005f0565b600060209050601f831160018114620007035760008415620006ee578287015190505b620006fa85826200066d565b8655506200076a565b601f1984166200071386620004b9565b60005b828110156200073d5784890151825560018201915060208501945060208101905062000716565b868310156200075d578489015162000759601f8916826200064d565b8355505b6001600288020188555050505b505050505050565b608051613c15620007a36000396000818161089b01528181610947015281816110a6015261110f0152613c156000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636c0360eb11610104578063a0712d68116100a2578063e985e9c511610071578063e985e9c5146104f4578063f2fde38b14610524578063fd52bd7614610540578063fe2c7fee1461055c576101cf565b8063a0712d6814610470578063a22cb4651461048c578063b88d4fde146104a8578063c87b56dd146104c4576101cf565b8063715018a6116100de578063715018a61461040c5780638da5cb5b1461041657806395d89b41146104345780639c3b663814610452576101cf565b80636c0360eb146103a05780637035bf18146103be57806370a08231146103dc576101cf565b806336e8942f116101715780634ffecb491161014b5780634ffecb491461031c57806351cff8d91461033857806355f804b3146103545780636352211e14610370576101cf565b806336e8942f146102c657806342842e0e146102e257806342b41aad146102fe576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c57806332cb6b0c146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e991906129d5565b610578565b6040516101fb9190612a1d565b60405180910390f35b61020c61065a565b6040516102199190612ac8565b60405180910390f35b61023c60048036038101906102379190612b20565b6106ec565b6040516102499190612b8e565b60405180910390f35b61026c60048036038101906102679190612bd5565b610768565b005b610276610872565b6040516102839190612c24565b60405180910390f35b6102a660048036038101906102a19190612c3f565b610889565b005b6102b0610899565b6040516102bd9190612c24565b60405180910390f35b6102e060048036038101906102db9190612ccc565b6108bd565b005b6102fc60048036038101906102f79190612c3f565b6109cf565b005b6103066109ef565b6040516103139190612ac8565b60405180910390f35b61033660048036038101906103319190612d5e565b610a7d565b005b610352600480360381019061034d9190612dab565b610b0f565b005b61036e60048036038101906103699190612d5e565b610c05565b005b61038a60048036038101906103859190612b20565b610c97565b6040516103979190612b8e565b60405180910390f35b6103a8610cad565b6040516103b59190612ac8565b60405180910390f35b6103c6610d3b565b6040516103d39190612ac8565b60405180910390f35b6103f660048036038101906103f19190612dab565b610dc9565b6040516104039190612c24565b60405180910390f35b610414610e98565b005b61041e610f20565b60405161042b9190612b8e565b60405180910390f35b61043c610f4a565b6040516104499190612ac8565b60405180910390f35b61045a610fdc565b6040516104679190612c24565b60405180910390f35b61048a60048036038101906104859190612b20565b610fe1565b005b6104a660048036038101906104a19190612e04565b611270565b005b6104c260048036038101906104bd9190612f74565b6113e7565b005b6104de60048036038101906104d99190612b20565b611463565b6040516104eb9190612ac8565b60405180910390f35b61050e60048036038101906105099190612ff7565b611586565b60405161051b9190612a1d565b60405180910390f35b61053e60048036038101906105399190612dab565b61161a565b005b61055a6004803603810190610555919061305c565b611711565b005b61057660048036038101906105719190612d5e565b6117ba565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065357506106528261184c565b5b9050919050565b606060028054610669906130b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610695906130b8565b80156106e25780601f106106b7576101008083540402835291602001916106e2565b820191906000526020600020905b8154815290600101906020018083116106c557829003601f168201915b5050505050905090565b60006106f7826118b6565b61072d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077382610c97565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107da576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f9611904565b73ffffffffffffffffffffffffffffffffffffffff161415801561082b575061082981610824611904565b611586565b155b15610862576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61086d83838361190c565b505050565b600061087c6119be565b6001546000540303905090565b6108948383836119c7565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6108c5611904565b73ffffffffffffffffffffffffffffffffffffffff166108e3610f20565b73ffffffffffffffffffffffffffffffffffffffff1614610939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093090613135565b60405180910390fd5b6000610943610872565b90507f00000000000000000000000000000000000000000000000000000000000000008261ffff16826109769190613184565b106109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad9061322a565b60405180910390fd5b6109cb6109c1611904565b8361ffff16611e7b565b5050565b6109ea838383604051806020016040528060008152506113e7565b505050565b600b80546109fc906130b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906130b8565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b505050505081565b610a85611904565b73ffffffffffffffffffffffffffffffffffffffff16610aa3610f20565b73ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613135565b60405180910390fd5b8181600b9182610b0a929190613401565b505050565b610b17611904565b73ffffffffffffffffffffffffffffffffffffffff16610b35610f20565b73ffffffffffffffffffffffffffffffffffffffff1614610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8290613135565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610bb190613502565b60006040518083038185875af1925050503d8060008114610bee576040519150601f19603f3d011682016040523d82523d6000602084013e610bf3565b606091505b5050905080610c0157600080fd5b5050565b610c0d611904565b73ffffffffffffffffffffffffffffffffffffffff16610c2b610f20565b73ffffffffffffffffffffffffffffffffffffffff1614610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890613135565b60405180910390fd5b8181600c9182610c92929190613401565b505050565b6000610ca282611e99565b600001519050919050565b600c8054610cba906130b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce6906130b8565b8015610d335780601f10610d0857610100808354040283529160200191610d33565b820191906000526020600020905b815481529060010190602001808311610d1657829003601f168201915b505050505081565b600d8054610d48906130b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d74906130b8565b8015610dc15780601f10610d9657610100808354040283529160200191610dc1565b820191906000526020600020905b815481529060010190602001808311610da457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e30576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ea0611904565b73ffffffffffffffffffffffffffffffffffffffff16610ebe610f20565b73ffffffffffffffffffffffffffffffffffffffff1614610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90613135565b60405180910390fd5b610f1e6000612128565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f59906130b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f85906130b8565b8015610fd25780601f10610fa757610100808354040283529160200191610fd2565b820191906000526020600020905b815481529060010190602001808311610fb557829003601f168201915b5050505050905090565b600381565b600260095403611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90613563565b60405180910390fd5b60026009819055506000600281111561104257611041613583565b5b600a60009054906101000a900460ff16600281111561106457611063613583565b5b146110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b906135fe565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006110cd6121ee565b1061110d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111049061366a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816111376121ee565b6111419190613184565b1115611182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111799061322a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111ba57600080fd5b6000811180156111cb575060038111155b61120a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611201906136d6565b60405180910390fd5b600061121533612201565b90506003811061125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613742565b60405180910390fd5b6112643383611e7b565b50600160098190555050565b611278611904565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112dc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112e9611904565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611396611904565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113db9190612a1d565b60405180910390a35050565b6113f28484846119c7565b6114118373ffffffffffffffffffffffffffffffffffffffff1661226b565b801561142657506114248484848461228e565b155b1561145d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061146e826118b6565b6114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a4906137d4565b60405180910390fd5b6000600c80546114bc906130b8565b90501161155357600d80546114d0906130b8565b80601f01602080910402602001604051908101604052809291908181526020018280546114fc906130b8565b80156115495780601f1061151e57610100808354040283529160200191611549565b820191906000526020600020905b81548152906001019060200180831161152c57829003601f168201915b505050505061157f565b600c61155e836123de565b60405160200161156f9291906138ff565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611622611904565b73ffffffffffffffffffffffffffffffffffffffff16611640610f20565b73ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90613135565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc906139a0565b60405180910390fd5b61170e81612128565b50565b611719611904565b73ffffffffffffffffffffffffffffffffffffffff16611737610f20565b73ffffffffffffffffffffffffffffffffffffffff161461178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490613135565b60405180910390fd5b80600a60006101000a81548160ff021916908360028111156117b2576117b1613583565b5b021790555050565b6117c2611904565b73ffffffffffffffffffffffffffffffffffffffff166117e0610f20565b73ffffffffffffffffffffffffffffffffffffffff1614611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90613135565b60405180910390fd5b8181600d9182611847929190613401565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118c16119be565b111580156118d0575060005482105b80156118fd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006119d282611e99565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a3d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a5e611904565b73ffffffffffffffffffffffffffffffffffffffff161480611a8d5750611a8c85611a87611904565b611586565b5b80611ad25750611a9b611904565b73ffffffffffffffffffffffffffffffffffffffff16611aba846106ec565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b0b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b71576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b7e858585600161253e565b611b8a6000848761190c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611e09576000548214611e0857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e748585856001612544565b5050505050565b611e9582826040518060200160405280600081525061254a565b5050565b611ea1612926565b600082905080611eaf6119be565b11158015611ebe575060005481105b156120f1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516120ef57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fd3578092505050612123565b5b6001156120ee57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120e9578092505050612123565b611fd4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006121f86119be565b60005403905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122b4611904565b8786866040518563ffffffff1660e01b81526004016122d69493929190613a15565b6020604051808303816000875af192505050801561231257506040513d601f19601f8201168201806040525081019061230f9190613a76565b60015b61238b573d8060008114612342576040519150601f19603f3d011682016040523d82523d6000602084013e612347565b606091505b506000815103612383576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612425576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612539565b600082905060005b6000821461245757808061244090613aa3565b915050600a826124509190613b1a565b915061242d565b60008167ffffffffffffffff81111561247357612472612e49565b5b6040519080825280601f01601f1916602001820160405280156124a55781602001600182028036833780820191505090505b5090505b60008514612532576001826124be9190613b4b565b9150600a856124cd9190613b7f565b60306124d99190613184565b60f81b8183815181106124ef576124ee613bb0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561252b9190613b1a565b94506124a9565b8093505050505b919050565b50505050565b50505050565b612557838383600161255c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036125c8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612602576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61260f600086838761253e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156127d957506127d88773ffffffffffffffffffffffffffffffffffffffff1661226b565b5b1561289e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461284e600088848060010195508861228e565b612884576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036127df57826000541461289957600080fd5b612909565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361289f575b81600081905550505061291f6000868387612544565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129b28161297d565b81146129bd57600080fd5b50565b6000813590506129cf816129a9565b92915050565b6000602082840312156129eb576129ea612973565b5b60006129f9848285016129c0565b91505092915050565b60008115159050919050565b612a1781612a02565b82525050565b6000602082019050612a326000830184612a0e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a72578082015181840152602081019050612a57565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a9a82612a38565b612aa48185612a43565b9350612ab4818560208601612a54565b612abd81612a7e565b840191505092915050565b60006020820190508181036000830152612ae28184612a8f565b905092915050565b6000819050919050565b612afd81612aea565b8114612b0857600080fd5b50565b600081359050612b1a81612af4565b92915050565b600060208284031215612b3657612b35612973565b5b6000612b4484828501612b0b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b7882612b4d565b9050919050565b612b8881612b6d565b82525050565b6000602082019050612ba36000830184612b7f565b92915050565b612bb281612b6d565b8114612bbd57600080fd5b50565b600081359050612bcf81612ba9565b92915050565b60008060408385031215612bec57612beb612973565b5b6000612bfa85828601612bc0565b9250506020612c0b85828601612b0b565b9150509250929050565b612c1e81612aea565b82525050565b6000602082019050612c396000830184612c15565b92915050565b600080600060608486031215612c5857612c57612973565b5b6000612c6686828701612bc0565b9350506020612c7786828701612bc0565b9250506040612c8886828701612b0b565b9150509250925092565b600061ffff82169050919050565b612ca981612c92565b8114612cb457600080fd5b50565b600081359050612cc681612ca0565b92915050565b600060208284031215612ce257612ce1612973565b5b6000612cf084828501612cb7565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612d1e57612d1d612cf9565b5b8235905067ffffffffffffffff811115612d3b57612d3a612cfe565b5b602083019150836001820283011115612d5757612d56612d03565b5b9250929050565b60008060208385031215612d7557612d74612973565b5b600083013567ffffffffffffffff811115612d9357612d92612978565b5b612d9f85828601612d08565b92509250509250929050565b600060208284031215612dc157612dc0612973565b5b6000612dcf84828501612bc0565b91505092915050565b612de181612a02565b8114612dec57600080fd5b50565b600081359050612dfe81612dd8565b92915050565b60008060408385031215612e1b57612e1a612973565b5b6000612e2985828601612bc0565b9250506020612e3a85828601612def565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e8182612a7e565b810181811067ffffffffffffffff82111715612ea057612e9f612e49565b5b80604052505050565b6000612eb3612969565b9050612ebf8282612e78565b919050565b600067ffffffffffffffff821115612edf57612ede612e49565b5b612ee882612a7e565b9050602081019050919050565b82818337600083830152505050565b6000612f17612f1284612ec4565b612ea9565b905082815260208101848484011115612f3357612f32612e44565b5b612f3e848285612ef5565b509392505050565b600082601f830112612f5b57612f5a612cf9565b5b8135612f6b848260208601612f04565b91505092915050565b60008060008060808587031215612f8e57612f8d612973565b5b6000612f9c87828801612bc0565b9450506020612fad87828801612bc0565b9350506040612fbe87828801612b0b565b925050606085013567ffffffffffffffff811115612fdf57612fde612978565b5b612feb87828801612f46565b91505092959194509250565b6000806040838503121561300e5761300d612973565b5b600061301c85828601612bc0565b925050602061302d85828601612bc0565b9150509250929050565b6003811061304457600080fd5b50565b60008135905061305681613037565b92915050565b60006020828403121561307257613071612973565b5b600061308084828501613047565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130d057607f821691505b6020821081036130e3576130e2613089565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061311f602083612a43565b915061312a826130e9565b602082019050919050565b6000602082019050818103600083015261314e81613112565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061318f82612aea565b915061319a83612aea565b92508282019050808211156131b2576131b1613155565b5b92915050565b7f6d696e7420616d6f756e7420776f756c64206265206f7574206f662072616e6760008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613214602283612a43565b915061321f826131b8565b604082019050919050565b6000602082019050818103600083015261324381613207565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132b77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261327a565b6132c1868361327a565b95508019841693508086168417925050509392505050565b6000819050919050565b60006132fe6132f96132f484612aea565b6132d9565b612aea565b9050919050565b6000819050919050565b613318836132e3565b61332c61332482613305565b848454613287565b825550505050565b600090565b613341613334565b61334c81848461330f565b505050565b5b8181101561337057613365600082613339565b600181019050613352565b5050565b601f8211156133b55761338681613255565b61338f8461326a565b8101602085101561339e578190505b6133b26133aa8561326a565b830182613351565b50505b505050565b600082821c905092915050565b60006133d8600019846008026133ba565b1980831691505092915050565b60006133f183836133c7565b9150826002028217905092915050565b61340b838361324a565b67ffffffffffffffff81111561342457613423612e49565b5b61342e82546130b8565b613439828285613374565b6000601f8311600181146134685760008415613456578287013590505b61346085826133e5565b8655506134c8565b601f19841661347686613255565b60005b8281101561349e57848901358255600182019150602085019450602081019050613479565b868310156134bb57848901356134b7601f8916826133c7565b8355505b6001600288020188555050505b50505050505050565b600081905092915050565b50565b60006134ec6000836134d1565b91506134f7826134dc565b600082019050919050565b600061350d826134df565b9150819050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061354d601f83612a43565b915061355882613517565b602082019050919050565b6000602082019050818103600083015261357c81613540565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f6d696e74696e67206e6f74206163746976652e00000000000000000000000000600082015250565b60006135e8601383612a43565b91506135f3826135b2565b602082019050919050565b60006020820190508181036000830152613617816135db565b9050919050565b7f6d696e746564206f75742e000000000000000000000000000000000000000000600082015250565b6000613654600b83612a43565b915061365f8261361e565b602082019050919050565b6000602082019050818103600083015261368381613647565b9050919050565b7f6e756d62657220746f6f206c6172676500000000000000000000000000000000600082015250565b60006136c0601083612a43565b91506136cb8261368a565b602082019050919050565b600060208201905081810360008301526136ef816136b3565b9050919050565b7f6d617820616d6f756e74206d696e746564000000000000000000000000000000600082015250565b600061372c601183612a43565b9150613737826136f6565b602082019050919050565b6000602082019050818103600083015261375b8161371f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006137be602f83612a43565b91506137c982613762565b604082019050919050565b600060208201905081810360008301526137ed816137b1565b9050919050565b600081905092915050565b6000815461380c816130b8565b61381681866137f4565b94506001821660008114613831576001811461384657613879565b60ff1983168652811515820286019350613879565b61384f85613255565b60005b8381101561387157815481890152600182019150602081019050613852565b838801955050505b50505092915050565b600061388d82612a38565b61389781856137f4565b93506138a7818560208601612a54565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138e96005836137f4565b91506138f4826138b3565b600582019050919050565b600061390b82856137ff565b91506139178284613882565b9150613922826138dc565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061398a602683612a43565b91506139958261392e565b604082019050919050565b600060208201905081810360008301526139b98161397d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139e7826139c0565b6139f181856139cb565b9350613a01818560208601612a54565b613a0a81612a7e565b840191505092915050565b6000608082019050613a2a6000830187612b7f565b613a376020830186612b7f565b613a446040830185612c15565b8181036060830152613a5681846139dc565b905095945050505050565b600081519050613a70816129a9565b92915050565b600060208284031215613a8c57613a8b612973565b5b6000613a9a84828501613a61565b91505092915050565b6000613aae82612aea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ae057613adf613155565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b2582612aea565b9150613b3083612aea565b925082613b4057613b3f613aeb565b5b828204905092915050565b6000613b5682612aea565b9150613b6183612aea565b9250828203905081811115613b7957613b78613155565b5b92915050565b6000613b8a82612aea565b9150613b9583612aea565b925082613ba557613ba4613aeb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122020f82a2e7b85ae2a106118a6b8f4fe873cf2cdc29c9186bc0ab46992107f06c064736f6c634300081100330000000000000000000000000000000000000000000000000000000000001301000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000f4265617220526964657273204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004484f444c00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636c0360eb11610104578063a0712d68116100a2578063e985e9c511610071578063e985e9c5146104f4578063f2fde38b14610524578063fd52bd7614610540578063fe2c7fee1461055c576101cf565b8063a0712d6814610470578063a22cb4651461048c578063b88d4fde146104a8578063c87b56dd146104c4576101cf565b8063715018a6116100de578063715018a61461040c5780638da5cb5b1461041657806395d89b41146104345780639c3b663814610452576101cf565b80636c0360eb146103a05780637035bf18146103be57806370a08231146103dc576101cf565b806336e8942f116101715780634ffecb491161014b5780634ffecb491461031c57806351cff8d91461033857806355f804b3146103545780636352211e14610370576101cf565b806336e8942f146102c657806342842e0e146102e257806342b41aad146102fe576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c57806332cb6b0c146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e991906129d5565b610578565b6040516101fb9190612a1d565b60405180910390f35b61020c61065a565b6040516102199190612ac8565b60405180910390f35b61023c60048036038101906102379190612b20565b6106ec565b6040516102499190612b8e565b60405180910390f35b61026c60048036038101906102679190612bd5565b610768565b005b610276610872565b6040516102839190612c24565b60405180910390f35b6102a660048036038101906102a19190612c3f565b610889565b005b6102b0610899565b6040516102bd9190612c24565b60405180910390f35b6102e060048036038101906102db9190612ccc565b6108bd565b005b6102fc60048036038101906102f79190612c3f565b6109cf565b005b6103066109ef565b6040516103139190612ac8565b60405180910390f35b61033660048036038101906103319190612d5e565b610a7d565b005b610352600480360381019061034d9190612dab565b610b0f565b005b61036e60048036038101906103699190612d5e565b610c05565b005b61038a60048036038101906103859190612b20565b610c97565b6040516103979190612b8e565b60405180910390f35b6103a8610cad565b6040516103b59190612ac8565b60405180910390f35b6103c6610d3b565b6040516103d39190612ac8565b60405180910390f35b6103f660048036038101906103f19190612dab565b610dc9565b6040516104039190612c24565b60405180910390f35b610414610e98565b005b61041e610f20565b60405161042b9190612b8e565b60405180910390f35b61043c610f4a565b6040516104499190612ac8565b60405180910390f35b61045a610fdc565b6040516104679190612c24565b60405180910390f35b61048a60048036038101906104859190612b20565b610fe1565b005b6104a660048036038101906104a19190612e04565b611270565b005b6104c260048036038101906104bd9190612f74565b6113e7565b005b6104de60048036038101906104d99190612b20565b611463565b6040516104eb9190612ac8565b60405180910390f35b61050e60048036038101906105099190612ff7565b611586565b60405161051b9190612a1d565b60405180910390f35b61053e60048036038101906105399190612dab565b61161a565b005b61055a6004803603810190610555919061305c565b611711565b005b61057660048036038101906105719190612d5e565b6117ba565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065357506106528261184c565b5b9050919050565b606060028054610669906130b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610695906130b8565b80156106e25780601f106106b7576101008083540402835291602001916106e2565b820191906000526020600020905b8154815290600101906020018083116106c557829003601f168201915b5050505050905090565b60006106f7826118b6565b61072d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077382610c97565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107da576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f9611904565b73ffffffffffffffffffffffffffffffffffffffff161415801561082b575061082981610824611904565b611586565b155b15610862576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61086d83838361190c565b505050565b600061087c6119be565b6001546000540303905090565b6108948383836119c7565b505050565b7f000000000000000000000000000000000000000000000000000000000000130181565b6108c5611904565b73ffffffffffffffffffffffffffffffffffffffff166108e3610f20565b73ffffffffffffffffffffffffffffffffffffffff1614610939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093090613135565b60405180910390fd5b6000610943610872565b90507f00000000000000000000000000000000000000000000000000000000000013018261ffff16826109769190613184565b106109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad9061322a565b60405180910390fd5b6109cb6109c1611904565b8361ffff16611e7b565b5050565b6109ea838383604051806020016040528060008152506113e7565b505050565b600b80546109fc906130b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906130b8565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b505050505081565b610a85611904565b73ffffffffffffffffffffffffffffffffffffffff16610aa3610f20565b73ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613135565b60405180910390fd5b8181600b9182610b0a929190613401565b505050565b610b17611904565b73ffffffffffffffffffffffffffffffffffffffff16610b35610f20565b73ffffffffffffffffffffffffffffffffffffffff1614610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8290613135565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610bb190613502565b60006040518083038185875af1925050503d8060008114610bee576040519150601f19603f3d011682016040523d82523d6000602084013e610bf3565b606091505b5050905080610c0157600080fd5b5050565b610c0d611904565b73ffffffffffffffffffffffffffffffffffffffff16610c2b610f20565b73ffffffffffffffffffffffffffffffffffffffff1614610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890613135565b60405180910390fd5b8181600c9182610c92929190613401565b505050565b6000610ca282611e99565b600001519050919050565b600c8054610cba906130b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce6906130b8565b8015610d335780601f10610d0857610100808354040283529160200191610d33565b820191906000526020600020905b815481529060010190602001808311610d1657829003601f168201915b505050505081565b600d8054610d48906130b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d74906130b8565b8015610dc15780601f10610d9657610100808354040283529160200191610dc1565b820191906000526020600020905b815481529060010190602001808311610da457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e30576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ea0611904565b73ffffffffffffffffffffffffffffffffffffffff16610ebe610f20565b73ffffffffffffffffffffffffffffffffffffffff1614610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90613135565b60405180910390fd5b610f1e6000612128565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f59906130b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f85906130b8565b8015610fd25780601f10610fa757610100808354040283529160200191610fd2565b820191906000526020600020905b815481529060010190602001808311610fb557829003601f168201915b5050505050905090565b600381565b600260095403611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90613563565b60405180910390fd5b60026009819055506000600281111561104257611041613583565b5b600a60009054906101000a900460ff16600281111561106457611063613583565b5b146110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b906135fe565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000013016110cd6121ee565b1061110d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111049061366a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001301816111376121ee565b6111419190613184565b1115611182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111799061322a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111ba57600080fd5b6000811180156111cb575060038111155b61120a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611201906136d6565b60405180910390fd5b600061121533612201565b90506003811061125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613742565b60405180910390fd5b6112643383611e7b565b50600160098190555050565b611278611904565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112dc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112e9611904565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611396611904565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113db9190612a1d565b60405180910390a35050565b6113f28484846119c7565b6114118373ffffffffffffffffffffffffffffffffffffffff1661226b565b801561142657506114248484848461228e565b155b1561145d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061146e826118b6565b6114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a4906137d4565b60405180910390fd5b6000600c80546114bc906130b8565b90501161155357600d80546114d0906130b8565b80601f01602080910402602001604051908101604052809291908181526020018280546114fc906130b8565b80156115495780601f1061151e57610100808354040283529160200191611549565b820191906000526020600020905b81548152906001019060200180831161152c57829003601f168201915b505050505061157f565b600c61155e836123de565b60405160200161156f9291906138ff565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611622611904565b73ffffffffffffffffffffffffffffffffffffffff16611640610f20565b73ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90613135565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc906139a0565b60405180910390fd5b61170e81612128565b50565b611719611904565b73ffffffffffffffffffffffffffffffffffffffff16611737610f20565b73ffffffffffffffffffffffffffffffffffffffff161461178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490613135565b60405180910390fd5b80600a60006101000a81548160ff021916908360028111156117b2576117b1613583565b5b021790555050565b6117c2611904565b73ffffffffffffffffffffffffffffffffffffffff166117e0610f20565b73ffffffffffffffffffffffffffffffffffffffff1614611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90613135565b60405180910390fd5b8181600d9182611847929190613401565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118c16119be565b111580156118d0575060005482105b80156118fd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006119d282611e99565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a3d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a5e611904565b73ffffffffffffffffffffffffffffffffffffffff161480611a8d5750611a8c85611a87611904565b611586565b5b80611ad25750611a9b611904565b73ffffffffffffffffffffffffffffffffffffffff16611aba846106ec565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b0b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b71576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b7e858585600161253e565b611b8a6000848761190c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611e09576000548214611e0857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e748585856001612544565b5050505050565b611e9582826040518060200160405280600081525061254a565b5050565b611ea1612926565b600082905080611eaf6119be565b11158015611ebe575060005481105b156120f1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516120ef57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fd3578092505050612123565b5b6001156120ee57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120e9578092505050612123565b611fd4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006121f86119be565b60005403905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122b4611904565b8786866040518563ffffffff1660e01b81526004016122d69493929190613a15565b6020604051808303816000875af192505050801561231257506040513d601f19601f8201168201806040525081019061230f9190613a76565b60015b61238b573d8060008114612342576040519150601f19603f3d011682016040523d82523d6000602084013e612347565b606091505b506000815103612383576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612425576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612539565b600082905060005b6000821461245757808061244090613aa3565b915050600a826124509190613b1a565b915061242d565b60008167ffffffffffffffff81111561247357612472612e49565b5b6040519080825280601f01601f1916602001820160405280156124a55781602001600182028036833780820191505090505b5090505b60008514612532576001826124be9190613b4b565b9150600a856124cd9190613b7f565b60306124d99190613184565b60f81b8183815181106124ef576124ee613bb0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561252b9190613b1a565b94506124a9565b8093505050505b919050565b50505050565b50505050565b612557838383600161255c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036125c8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612602576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61260f600086838761253e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156127d957506127d88773ffffffffffffffffffffffffffffffffffffffff1661226b565b5b1561289e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461284e600088848060010195508861228e565b612884576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036127df57826000541461289957600080fd5b612909565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361289f575b81600081905550505061291f6000868387612544565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129b28161297d565b81146129bd57600080fd5b50565b6000813590506129cf816129a9565b92915050565b6000602082840312156129eb576129ea612973565b5b60006129f9848285016129c0565b91505092915050565b60008115159050919050565b612a1781612a02565b82525050565b6000602082019050612a326000830184612a0e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a72578082015181840152602081019050612a57565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a9a82612a38565b612aa48185612a43565b9350612ab4818560208601612a54565b612abd81612a7e565b840191505092915050565b60006020820190508181036000830152612ae28184612a8f565b905092915050565b6000819050919050565b612afd81612aea565b8114612b0857600080fd5b50565b600081359050612b1a81612af4565b92915050565b600060208284031215612b3657612b35612973565b5b6000612b4484828501612b0b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b7882612b4d565b9050919050565b612b8881612b6d565b82525050565b6000602082019050612ba36000830184612b7f565b92915050565b612bb281612b6d565b8114612bbd57600080fd5b50565b600081359050612bcf81612ba9565b92915050565b60008060408385031215612bec57612beb612973565b5b6000612bfa85828601612bc0565b9250506020612c0b85828601612b0b565b9150509250929050565b612c1e81612aea565b82525050565b6000602082019050612c396000830184612c15565b92915050565b600080600060608486031215612c5857612c57612973565b5b6000612c6686828701612bc0565b9350506020612c7786828701612bc0565b9250506040612c8886828701612b0b565b9150509250925092565b600061ffff82169050919050565b612ca981612c92565b8114612cb457600080fd5b50565b600081359050612cc681612ca0565b92915050565b600060208284031215612ce257612ce1612973565b5b6000612cf084828501612cb7565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612d1e57612d1d612cf9565b5b8235905067ffffffffffffffff811115612d3b57612d3a612cfe565b5b602083019150836001820283011115612d5757612d56612d03565b5b9250929050565b60008060208385031215612d7557612d74612973565b5b600083013567ffffffffffffffff811115612d9357612d92612978565b5b612d9f85828601612d08565b92509250509250929050565b600060208284031215612dc157612dc0612973565b5b6000612dcf84828501612bc0565b91505092915050565b612de181612a02565b8114612dec57600080fd5b50565b600081359050612dfe81612dd8565b92915050565b60008060408385031215612e1b57612e1a612973565b5b6000612e2985828601612bc0565b9250506020612e3a85828601612def565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e8182612a7e565b810181811067ffffffffffffffff82111715612ea057612e9f612e49565b5b80604052505050565b6000612eb3612969565b9050612ebf8282612e78565b919050565b600067ffffffffffffffff821115612edf57612ede612e49565b5b612ee882612a7e565b9050602081019050919050565b82818337600083830152505050565b6000612f17612f1284612ec4565b612ea9565b905082815260208101848484011115612f3357612f32612e44565b5b612f3e848285612ef5565b509392505050565b600082601f830112612f5b57612f5a612cf9565b5b8135612f6b848260208601612f04565b91505092915050565b60008060008060808587031215612f8e57612f8d612973565b5b6000612f9c87828801612bc0565b9450506020612fad87828801612bc0565b9350506040612fbe87828801612b0b565b925050606085013567ffffffffffffffff811115612fdf57612fde612978565b5b612feb87828801612f46565b91505092959194509250565b6000806040838503121561300e5761300d612973565b5b600061301c85828601612bc0565b925050602061302d85828601612bc0565b9150509250929050565b6003811061304457600080fd5b50565b60008135905061305681613037565b92915050565b60006020828403121561307257613071612973565b5b600061308084828501613047565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130d057607f821691505b6020821081036130e3576130e2613089565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061311f602083612a43565b915061312a826130e9565b602082019050919050565b6000602082019050818103600083015261314e81613112565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061318f82612aea565b915061319a83612aea565b92508282019050808211156131b2576131b1613155565b5b92915050565b7f6d696e7420616d6f756e7420776f756c64206265206f7574206f662072616e6760008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613214602283612a43565b915061321f826131b8565b604082019050919050565b6000602082019050818103600083015261324381613207565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132b77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261327a565b6132c1868361327a565b95508019841693508086168417925050509392505050565b6000819050919050565b60006132fe6132f96132f484612aea565b6132d9565b612aea565b9050919050565b6000819050919050565b613318836132e3565b61332c61332482613305565b848454613287565b825550505050565b600090565b613341613334565b61334c81848461330f565b505050565b5b8181101561337057613365600082613339565b600181019050613352565b5050565b601f8211156133b55761338681613255565b61338f8461326a565b8101602085101561339e578190505b6133b26133aa8561326a565b830182613351565b50505b505050565b600082821c905092915050565b60006133d8600019846008026133ba565b1980831691505092915050565b60006133f183836133c7565b9150826002028217905092915050565b61340b838361324a565b67ffffffffffffffff81111561342457613423612e49565b5b61342e82546130b8565b613439828285613374565b6000601f8311600181146134685760008415613456578287013590505b61346085826133e5565b8655506134c8565b601f19841661347686613255565b60005b8281101561349e57848901358255600182019150602085019450602081019050613479565b868310156134bb57848901356134b7601f8916826133c7565b8355505b6001600288020188555050505b50505050505050565b600081905092915050565b50565b60006134ec6000836134d1565b91506134f7826134dc565b600082019050919050565b600061350d826134df565b9150819050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061354d601f83612a43565b915061355882613517565b602082019050919050565b6000602082019050818103600083015261357c81613540565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f6d696e74696e67206e6f74206163746976652e00000000000000000000000000600082015250565b60006135e8601383612a43565b91506135f3826135b2565b602082019050919050565b60006020820190508181036000830152613617816135db565b9050919050565b7f6d696e746564206f75742e000000000000000000000000000000000000000000600082015250565b6000613654600b83612a43565b915061365f8261361e565b602082019050919050565b6000602082019050818103600083015261368381613647565b9050919050565b7f6e756d62657220746f6f206c6172676500000000000000000000000000000000600082015250565b60006136c0601083612a43565b91506136cb8261368a565b602082019050919050565b600060208201905081810360008301526136ef816136b3565b9050919050565b7f6d617820616d6f756e74206d696e746564000000000000000000000000000000600082015250565b600061372c601183612a43565b9150613737826136f6565b602082019050919050565b6000602082019050818103600083015261375b8161371f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006137be602f83612a43565b91506137c982613762565b604082019050919050565b600060208201905081810360008301526137ed816137b1565b9050919050565b600081905092915050565b6000815461380c816130b8565b61381681866137f4565b94506001821660008114613831576001811461384657613879565b60ff1983168652811515820286019350613879565b61384f85613255565b60005b8381101561387157815481890152600182019150602081019050613852565b838801955050505b50505092915050565b600061388d82612a38565b61389781856137f4565b93506138a7818560208601612a54565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138e96005836137f4565b91506138f4826138b3565b600582019050919050565b600061390b82856137ff565b91506139178284613882565b9150613922826138dc565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061398a602683612a43565b91506139958261392e565b604082019050919050565b600060208201905081810360008301526139b98161397d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139e7826139c0565b6139f181856139cb565b9350613a01818560208601612a54565b613a0a81612a7e565b840191505092915050565b6000608082019050613a2a6000830187612b7f565b613a376020830186612b7f565b613a446040830185612c15565b8181036060830152613a5681846139dc565b905095945050505050565b600081519050613a70816129a9565b92915050565b600060208284031215613a8c57613a8b612973565b5b6000613a9a84828501613a61565b91505092915050565b6000613aae82612aea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ae057613adf613155565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b2582612aea565b9150613b3083612aea565b925082613b4057613b3f613aeb565b5b828204905092915050565b6000613b5682612aea565b9150613b6183612aea565b9250828203905081811115613b7957613b78613155565b5b92915050565b6000613b8a82612aea565b9150613b9583612aea565b925082613ba557613ba4613aeb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122020f82a2e7b85ae2a106118a6b8f4fe873cf2cdc29c9186bc0ab46992107f06c064736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000001301000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000f4265617220526964657273204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004484f444c00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxSupply (uint256): 4865
Arg [1] : name (string): Bear Riders NFT
Arg [2] : symbol (string): HODL

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000001301
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 4265617220526964657273204e46540000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 484f444c00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

65339:5135:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45032:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48145:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49648:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49211:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44281:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50513:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65717:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67376:362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50754:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65868:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66364:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70309:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66470:94;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47953:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65933:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65963:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45401:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64490:103;;;:::i;:::-;;63839:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48314:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65662:44;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67970:2132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49924:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51010:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66686:559;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50282:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64748:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70148:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66572:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45032:305;45134:4;45186:25;45171:40;;;:11;:40;;;;:105;;;;45243:33;45228:48;;;:11;:48;;;;45171:105;:158;;;;45293:36;45317:11;45293:23;:36::i;:::-;45171:158;45151:178;;45032:305;;;:::o;48145:100::-;48199:13;48232:5;48225:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48145:100;:::o;49648:204::-;49716:7;49741:16;49749:7;49741;:16::i;:::-;49736:64;;49766:34;;;;;;;;;;;;;;49736:64;49820:15;:24;49836:7;49820:24;;;;;;;;;;;;;;;;;;;;;49813:31;;49648:204;;;:::o;49211:371::-;49284:13;49300:24;49316:7;49300:15;:24::i;:::-;49284:40;;49345:5;49339:11;;:2;:11;;;49335:48;;49359:24;;;;;;;;;;;;;;49335:48;49416:5;49400:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;49426:37;49443:5;49450:12;:10;:12::i;:::-;49426:16;:37::i;:::-;49425:38;49400:63;49396:138;;;49487:35;;;;;;;;;;;;;;49396:138;49546:28;49555:2;49559:7;49568:5;49546:8;:28::i;:::-;49273:309;49211:371;;:::o;44281:303::-;44325:7;44550:15;:13;:15::i;:::-;44535:12;;44519:13;;:28;:46;44512:53;;44281:303;:::o;50513:170::-;50647:28;50657:4;50663:2;50667:7;50647:9;:28::i;:::-;50513:170;;;:::o;65717:35::-;;;:::o;67376:362::-;64070:12;:10;:12::i;:::-;64059:23;;:7;:5;:7::i;:::-;:23;;;64051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67440:19:::1;67462:13;:11;:13::i;:::-;67440:35;;67612:10;67603:6;67589:20;;:11;:20;;;;:::i;:::-;:33;67567:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;67699:31;67709:12;:10;:12::i;:::-;67723:6;67699:31;;:9;:31::i;:::-;67429:309;67376:362:::0;:::o;50754:185::-;50892:39;50909:4;50915:2;50919:7;50892:39;;;;;;;;;;;;:16;:39::i;:::-;50754:185;;;:::o;65868:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66364:98::-;64070:12;:10;:12::i;:::-;64059:23;;:7;:5;:7::i;:::-;:23;;;64051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66450:4:::1;;66438:9;:16;;;;;;;:::i;:::-;;66364:98:::0;;:::o;70309:162::-;64070:12;:10;:12::i;:::-;64059:23;;:7;:5;:7::i;:::-;:23;;;64051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70374:7:::1;70395:6;70387:20;;70415:21;70387:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70373:68;;;70460:2;70452:11;;;::::0;::::1;;70362:109;70309:162:::0;:::o;66470:94::-;64070:12;:10;:12::i;:::-;64059:23;;:7;:5;:7::i;:::-;:23;;;64051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66552:4:::1;;66542:7;:14;;;;;;;:::i;:::-;;66470:94:::0;;:::o;47953:125::-;48017:7;48044:21;48057:7;48044:12;:21::i;:::-;:26;;;48037:33;;47953:125;;;:::o;65933:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65963:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45401:206::-;45465:7;45506:1;45489:19;;:5;:19;;;45485:60;;45517:28;;;;;;;;;;;;;;45485:60;45571:12;:19;45584:5;45571:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;45563:36;;45556:43;;45401:206;;;:::o;64490:103::-;64070:12;:10;:12::i;:::-;64059:23;;:7;:5;:7::i;:::-;:23;;;64051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64555:30:::1;64582:1;64555:18;:30::i;:::-;64490:103::o:0;63839:87::-;63885:7;63912:6;;;;;;;;;;;63905:13;;63839:87;:::o;48314:104::-;48370:13;48403:7;48396:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48314:104;:::o;65662:44::-;65705:1;65662:44;:::o;67970:2132::-;38930:1;39528:7;;:19;39520:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38930:1;39661:7;:18;;;;67308:16:::1;67292:32;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:32;;;;;;;;:::i;:::-;;;67284:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;68067:10:::2;68050:14;:12;:14::i;:::-;:27;68042:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;68139:10;68129:6;68112:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;68104:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;68221:9;68207:23;;:10;:23;;;68199:32;;;::::0;::::2;;68259:1;68250:6;:10;:40;;;;;65705:1;68264:6;:26;;68250:40;68242:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;68324:11;68338:25;68352:10;68338:13;:25::i;:::-;68324:39;;68401:1;68392:6;:10;68384:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;69819:29;69829:10;69841:6;69819:9;:29::i;:::-;68031:2071;38886:1:::0;39840:7;:22;;;;67970:2132;:::o;49924:287::-;50035:12;:10;:12::i;:::-;50023:24;;:8;:24;;;50019:54;;50056:17;;;;;;;;;;;;;;50019:54;50131:8;50086:18;:32;50105:12;:10;:12::i;:::-;50086:32;;;;;;;;;;;;;;;:42;50119:8;50086:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;50184:8;50155:48;;50170:12;:10;:12::i;:::-;50155:48;;;50194:8;50155:48;;;;;;:::i;:::-;;;;;;;;49924:287;;:::o;51010:369::-;51177:28;51187:4;51193:2;51197:7;51177:9;:28::i;:::-;51220:15;:2;:13;;;:15::i;:::-;:76;;;;;51240:56;51271:4;51277:2;51281:7;51290:5;51240:30;:56::i;:::-;51239:57;51220:76;51216:156;;;51320:40;;;;;;;;;;;;;;51216:156;51010:369;;;;:::o;66686:559::-;66787:13;66840:16;66848:7;66840;:16::i;:::-;66818:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;66975:1;66957:7;66951:21;;;;;:::i;:::-;;;:25;:286;;67224:13;66951:286;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67092:7;67134:18;:7;:16;:18::i;:::-;67041:154;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66951:286;66944:293;;66686:559;;;:::o;50282:164::-;50379:4;50403:18;:25;50422:5;50403:25;;;;;;;;;;;;;;;:35;50429:8;50403:35;;;;;;;;;;;;;;;;;;;;;;;;;50396:42;;50282:164;;;;:::o;64748:201::-;64070:12;:10;:12::i;:::-;64059:23;;:7;:5;:7::i;:::-;:23;;;64051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64857:1:::1;64837:22;;:8;:22;;::::0;64829:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;64913:28;64932:8;64913:18;:28::i;:::-;64748:201:::0;:::o;70148:100::-;64070:12;:10;:12::i;:::-;64059:23;;:7;:5;:7::i;:::-;:23;;;64051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70235:5:::1;70220:12;;:20;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;70148:100:::0;:::o;66572:106::-;64070:12;:10;:12::i;:::-;64059:23;;:7;:5;:7::i;:::-;:23;;;64051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66666:4:::1;;66650:13;:20;;;;;;;:::i;:::-;;66572:106:::0;;:::o;11350:157::-;11435:4;11474:25;11459:40;;;:11;:40;;;;11452:47;;11350:157;;;:::o;51634:174::-;51691:4;51734:7;51715:15;:13;:15::i;:::-;:26;;:53;;;;;51755:13;;51745:7;:23;51715:53;:85;;;;;51773:11;:20;51785:7;51773:20;;;;;;;;;;;:27;;;;;;;;;;;;51772:28;51715:85;51708:92;;51634:174;;;:::o;40556:98::-;40609:7;40636:10;40629:17;;40556:98;:::o;59791:196::-;59933:2;59906:15;:24;59922:7;59906:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;59971:7;59967:2;59951:28;;59960:5;59951:28;;;;;;;;;;;;59791:196;;;:::o;66255:101::-;66320:7;66347:1;66340:8;;66255:101;:::o;54734:2130::-;54849:35;54887:21;54900:7;54887:12;:21::i;:::-;54849:59;;54947:4;54925:26;;:13;:18;;;:26;;;54921:67;;54960:28;;;;;;;;;;;;;;54921:67;55001:22;55043:4;55027:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;55064:36;55081:4;55087:12;:10;:12::i;:::-;55064:16;:36::i;:::-;55027:73;:126;;;;55141:12;:10;:12::i;:::-;55117:36;;:20;55129:7;55117:11;:20::i;:::-;:36;;;55027:126;55001:153;;55172:17;55167:66;;55198:35;;;;;;;;;;;;;;55167:66;55262:1;55248:16;;:2;:16;;;55244:52;;55273:23;;;;;;;;;;;;;;55244:52;55309:43;55331:4;55337:2;55341:7;55350:1;55309:21;:43::i;:::-;55417:35;55434:1;55438:7;55447:4;55417:8;:35::i;:::-;55778:1;55748:12;:18;55761:4;55748:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55822:1;55794:12;:16;55807:2;55794:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55840:31;55874:11;:20;55886:7;55874:20;;;;;;;;;;;55840:54;;55925:2;55909:8;:13;;;:18;;;;;;;;;;;;;;;;;;55975:15;55942:8;:23;;;:49;;;;;;;;;;;;;;;;;;56243:19;56275:1;56265:7;:11;56243:33;;56291:31;56325:11;:24;56337:11;56325:24;;;;;;;;;;;56291:58;;56393:1;56368:27;;:8;:13;;;;;;;;;;;;:27;;;56364:384;;56578:13;;56563:11;:28;56559:174;;56632:4;56616:8;:13;;;:20;;;;;;;;;;;;;;;;;;56685:13;:28;;;56659:8;:23;;;:54;;;;;;;;;;;;;;;;;;56559:174;56364:384;55723:1036;;;56795:7;56791:2;56776:27;;56785:4;56776:27;;;;;;;;;;;;56814:42;56835:4;56841:2;56845:7;56854:1;56814:20;:42::i;:::-;54838:2026;;54734:2130;;;:::o;51816:104::-;51885:27;51895:2;51899:8;51885:27;;;;;;;;;;;;:9;:27::i;:::-;51816:104;;:::o;46782:1109::-;46844:21;;:::i;:::-;46878:12;46893:7;46878:22;;46961:4;46942:15;:13;:15::i;:::-;:23;;:47;;;;;46976:13;;46969:4;:20;46942:47;46938:886;;;47010:31;47044:11;:17;47056:4;47044:17;;;;;;;;;;;47010:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47085:9;:16;;;47080:729;;47156:1;47130:28;;:9;:14;;;:28;;;47126:101;;47194:9;47187:16;;;;;;47126:101;47529:261;47536:4;47529:261;;;47569:6;;;;;;;;47614:11;:17;47626:4;47614:17;;;;;;;;;;;47602:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47688:1;47662:28;;:9;:14;;;:28;;;47658:109;;47730:9;47723:16;;;;;;47658:109;47529:261;;;47080:729;46991:833;46938:886;47852:31;;;;;;;;;;;;;;46782:1109;;;;:::o;65109:191::-;65183:16;65202:6;;;;;;;;;;;65183:25;;65228:8;65219:6;;:17;;;;;;;;;;;;;;;;;;65283:8;65252:40;;65273:8;65252:40;;;;;;;;;;;;65172:128;65109:191;:::o;44677:283::-;44724:7;44926:15;:13;:15::i;:::-;44910:13;;:31;44903:38;;44677:283;:::o;45689:137::-;45750:7;45785:12;:19;45798:5;45785:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;45777:41;;45770:48;;45689:137;;;:::o;1267:326::-;1327:4;1584:1;1562:7;:19;;;:23;1555:30;;1267:326;;;:::o;60479:667::-;60642:4;60679:2;60663:36;;;60700:12;:10;:12::i;:::-;60714:4;60720:7;60729:5;60663:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;60659:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60914:1;60897:6;:13;:18;60893:235;;60943:40;;;;;;;;;;;;;;60893:235;61086:6;61080:13;61071:6;61067:2;61063:15;61056:38;60659:480;60792:45;;;60782:55;;;:6;:55;;;;60775:62;;;60479:667;;;;;;:::o;35359:723::-;35415:13;35645:1;35636:5;:10;35632:53;;35663:10;;;;;;;;;;;;;;;;;;;;;35632:53;35695:12;35710:5;35695:20;;35726:14;35751:78;35766:1;35758:4;:9;35751:78;;35784:8;;;;;:::i;:::-;;;;35815:2;35807:10;;;;;:::i;:::-;;;35751:78;;;35839:19;35871:6;35861:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35839:39;;35889:154;35905:1;35896:5;:10;35889:154;;35933:1;35923:11;;;;;:::i;:::-;;;36000:2;35992:5;:10;;;;:::i;:::-;35979:2;:24;;;;:::i;:::-;35966:39;;35949:6;35956;35949:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;36029:2;36020:11;;;;;:::i;:::-;;;35889:154;;;36067:6;36053:21;;;;;35359:723;;;;:::o;61794:159::-;;;;;:::o;62612:158::-;;;;;:::o;52283:163::-;52406:32;52412:2;52416:8;52426:5;52433:4;52406:5;:32::i;:::-;52283:163;;;:::o;52705:1775::-;52844:20;52867:13;;52844:36;;52909:1;52895:16;;:2;:16;;;52891:48;;52920:19;;;;;;;;;;;;;;52891:48;52966:1;52954:8;:13;52950:44;;52976:18;;;;;;;;;;;;;;52950:44;53007:61;53037:1;53041:2;53045:12;53059:8;53007:21;:61::i;:::-;53380:8;53345:12;:16;53358:2;53345:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53444:8;53404:12;:16;53417:2;53404:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53503:2;53470:11;:25;53482:12;53470:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;53570:15;53520:11;:25;53532:12;53520:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;53603:20;53626:12;53603:35;;53653:11;53682:8;53667:12;:23;53653:37;;53711:4;:23;;;;;53719:15;:2;:13;;;:15::i;:::-;53711:23;53707:641;;;53755:314;53811:12;53807:2;53786:38;;53803:1;53786:38;;;;;;;;;;;;53852:69;53891:1;53895:2;53899:14;;;;;;53915:5;53852:30;:69::i;:::-;53847:174;;53957:40;;;;;;;;;;;;;;53847:174;54064:3;54048:12;:19;53755:314;;54150:12;54133:13;;:29;54129:43;;54164:8;;;54129:43;53707:641;;;54213:120;54269:14;;;;;;54265:2;54244:40;;54261:1;54244:40;;;;;;;;;;;;54328:3;54312:12;:19;54213:120;;53707:641;54378:12;54362:13;:28;;;;53320:1082;;54412:60;54441:1;54445:2;54449:12;54463:8;54412:20;:60::i;:::-;52833:1647;52705:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:89::-;5903:7;5943:6;5936:5;5932:18;5921:29;;5867:89;;;:::o;5962:120::-;6034:23;6051:5;6034:23;:::i;:::-;6027:5;6024:34;6014:62;;6072:1;6069;6062:12;6014:62;5962:120;:::o;6088:137::-;6133:5;6171:6;6158:20;6149:29;;6187:32;6213:5;6187:32;:::i;:::-;6088:137;;;;:::o;6231:327::-;6289:6;6338:2;6326:9;6317:7;6313:23;6309:32;6306:119;;;6344:79;;:::i;:::-;6306:119;6464:1;6489:52;6533:7;6524:6;6513:9;6509:22;6489:52;:::i;:::-;6479:62;;6435:116;6231:327;;;;:::o;6564:117::-;6673:1;6670;6663:12;6687:117;6796:1;6793;6786:12;6810:117;6919:1;6916;6909:12;6947:553;7005:8;7015:6;7065:3;7058:4;7050:6;7046:17;7042:27;7032:122;;7073:79;;:::i;:::-;7032:122;7186:6;7173:20;7163:30;;7216:18;7208:6;7205:30;7202:117;;;7238:79;;:::i;:::-;7202:117;7352:4;7344:6;7340:17;7328:29;;7406:3;7398:4;7390:6;7386:17;7376:8;7372:32;7369:41;7366:128;;;7413:79;;:::i;:::-;7366:128;6947:553;;;;;:::o;7506:529::-;7577:6;7585;7634:2;7622:9;7613:7;7609:23;7605:32;7602:119;;;7640:79;;:::i;:::-;7602:119;7788:1;7777:9;7773:17;7760:31;7818:18;7810:6;7807:30;7804:117;;;7840:79;;:::i;:::-;7804:117;7953:65;8010:7;8001:6;7990:9;7986:22;7953:65;:::i;:::-;7935:83;;;;7731:297;7506:529;;;;;:::o;8041:329::-;8100:6;8149:2;8137:9;8128:7;8124:23;8120:32;8117:119;;;8155:79;;:::i;:::-;8117:119;8275:1;8300:53;8345:7;8336:6;8325:9;8321:22;8300:53;:::i;:::-;8290:63;;8246:117;8041:329;;;;:::o;8376:116::-;8446:21;8461:5;8446:21;:::i;:::-;8439:5;8436:32;8426:60;;8482:1;8479;8472:12;8426:60;8376:116;:::o;8498:133::-;8541:5;8579:6;8566:20;8557:29;;8595:30;8619:5;8595:30;:::i;:::-;8498:133;;;;:::o;8637:468::-;8702:6;8710;8759:2;8747:9;8738:7;8734:23;8730:32;8727:119;;;8765:79;;:::i;:::-;8727:119;8885:1;8910:53;8955:7;8946:6;8935:9;8931:22;8910:53;:::i;:::-;8900:63;;8856:117;9012:2;9038:50;9080:7;9071:6;9060:9;9056:22;9038:50;:::i;:::-;9028:60;;8983:115;8637:468;;;;;:::o;9111:117::-;9220:1;9217;9210:12;9234:180;9282:77;9279:1;9272:88;9379:4;9376:1;9369:15;9403:4;9400:1;9393:15;9420:281;9503:27;9525:4;9503:27;:::i;:::-;9495:6;9491:40;9633:6;9621:10;9618:22;9597:18;9585:10;9582:34;9579:62;9576:88;;;9644:18;;:::i;:::-;9576:88;9684:10;9680:2;9673:22;9463:238;9420:281;;:::o;9707:129::-;9741:6;9768:20;;:::i;:::-;9758:30;;9797:33;9825:4;9817:6;9797:33;:::i;:::-;9707:129;;;:::o;9842:307::-;9903:4;9993:18;9985:6;9982:30;9979:56;;;10015:18;;:::i;:::-;9979:56;10053:29;10075:6;10053:29;:::i;:::-;10045:37;;10137:4;10131;10127:15;10119:23;;9842:307;;;:::o;10155:146::-;10252:6;10247:3;10242;10229:30;10293:1;10284:6;10279:3;10275:16;10268:27;10155:146;;;:::o;10307:423::-;10384:5;10409:65;10425:48;10466:6;10425:48;:::i;:::-;10409:65;:::i;:::-;10400:74;;10497:6;10490:5;10483:21;10535:4;10528:5;10524:16;10573:3;10564:6;10559:3;10555:16;10552:25;10549:112;;;10580:79;;:::i;:::-;10549:112;10670:54;10717:6;10712:3;10707;10670:54;:::i;:::-;10390:340;10307:423;;;;;:::o;10749:338::-;10804:5;10853:3;10846:4;10838:6;10834:17;10830:27;10820:122;;10861:79;;:::i;:::-;10820:122;10978:6;10965:20;11003:78;11077:3;11069:6;11062:4;11054:6;11050:17;11003:78;:::i;:::-;10994:87;;10810:277;10749:338;;;;:::o;11093:943::-;11188:6;11196;11204;11212;11261:3;11249:9;11240:7;11236:23;11232:33;11229:120;;;11268:79;;:::i;:::-;11229:120;11388:1;11413:53;11458:7;11449:6;11438:9;11434:22;11413:53;:::i;:::-;11403:63;;11359:117;11515:2;11541:53;11586:7;11577:6;11566:9;11562:22;11541:53;:::i;:::-;11531:63;;11486:118;11643:2;11669:53;11714:7;11705:6;11694:9;11690:22;11669:53;:::i;:::-;11659:63;;11614:118;11799:2;11788:9;11784:18;11771:32;11830:18;11822:6;11819:30;11816:117;;;11852:79;;:::i;:::-;11816:117;11957:62;12011:7;12002:6;11991:9;11987:22;11957:62;:::i;:::-;11947:72;;11742:287;11093:943;;;;;;;:::o;12042:474::-;12110:6;12118;12167:2;12155:9;12146:7;12142:23;12138:32;12135:119;;;12173:79;;:::i;:::-;12135:119;12293:1;12318:53;12363:7;12354:6;12343:9;12339:22;12318:53;:::i;:::-;12308:63;;12264:117;12420:2;12446:53;12491:7;12482:6;12471:9;12467:22;12446:53;:::i;:::-;12436:63;;12391:118;12042:474;;;;;:::o;12522:113::-;12609:1;12602:5;12599:12;12589:40;;12625:1;12622;12615:12;12589:40;12522:113;:::o;12641:167::-;12701:5;12739:6;12726:20;12717:29;;12755:47;12796:5;12755:47;:::i;:::-;12641:167;;;;:::o;12814:357::-;12887:6;12936:2;12924:9;12915:7;12911:23;12907:32;12904:119;;;12942:79;;:::i;:::-;12904:119;13062:1;13087:67;13146:7;13137:6;13126:9;13122:22;13087:67;:::i;:::-;13077:77;;13033:131;12814:357;;;;:::o;13177:180::-;13225:77;13222:1;13215:88;13322:4;13319:1;13312:15;13346:4;13343:1;13336:15;13363:320;13407:6;13444:1;13438:4;13434:12;13424:22;;13491:1;13485:4;13481:12;13512:18;13502:81;;13568:4;13560:6;13556:17;13546:27;;13502:81;13630:2;13622:6;13619:14;13599:18;13596:38;13593:84;;13649:18;;:::i;:::-;13593:84;13414:269;13363:320;;;:::o;13689:182::-;13829:34;13825:1;13817:6;13813:14;13806:58;13689:182;:::o;13877:366::-;14019:3;14040:67;14104:2;14099:3;14040:67;:::i;:::-;14033:74;;14116:93;14205:3;14116:93;:::i;:::-;14234:2;14229:3;14225:12;14218:19;;13877:366;;;:::o;14249:419::-;14415:4;14453:2;14442:9;14438:18;14430:26;;14502:9;14496:4;14492:20;14488:1;14477:9;14473:17;14466:47;14530:131;14656:4;14530:131;:::i;:::-;14522:139;;14249:419;;;:::o;14674:180::-;14722:77;14719:1;14712:88;14819:4;14816:1;14809:15;14843:4;14840:1;14833:15;14860:191;14900:3;14919:20;14937:1;14919:20;:::i;:::-;14914:25;;14953:20;14971:1;14953:20;:::i;:::-;14948:25;;14996:1;14993;14989:9;14982:16;;15017:3;15014:1;15011:10;15008:36;;;15024:18;;:::i;:::-;15008:36;14860:191;;;;:::o;15057:221::-;15197:34;15193:1;15185:6;15181:14;15174:58;15266:4;15261:2;15253:6;15249:15;15242:29;15057:221;:::o;15284:366::-;15426:3;15447:67;15511:2;15506:3;15447:67;:::i;:::-;15440:74;;15523:93;15612:3;15523:93;:::i;:::-;15641:2;15636:3;15632:12;15625:19;;15284:366;;;:::o;15656:419::-;15822:4;15860:2;15849:9;15845:18;15837:26;;15909:9;15903:4;15899:20;15895:1;15884:9;15880:17;15873:47;15937:131;16063:4;15937:131;:::i;:::-;15929:139;;15656:419;;;:::o;16081:97::-;16140:6;16168:3;16158:13;;16081:97;;;;:::o;16184:141::-;16233:4;16256:3;16248:11;;16279:3;16276:1;16269:14;16313:4;16310:1;16300:18;16292:26;;16184:141;;;:::o;16331:93::-;16368:6;16415:2;16410;16403:5;16399:14;16395:23;16385:33;;16331:93;;;:::o;16430:107::-;16474:8;16524:5;16518:4;16514:16;16493:37;;16430:107;;;;:::o;16543:393::-;16612:6;16662:1;16650:10;16646:18;16685:97;16715:66;16704:9;16685:97;:::i;:::-;16803:39;16833:8;16822:9;16803:39;:::i;:::-;16791:51;;16875:4;16871:9;16864:5;16860:21;16851:30;;16924:4;16914:8;16910:19;16903:5;16900:30;16890:40;;16619:317;;16543:393;;;;;:::o;16942:60::-;16970:3;16991:5;16984:12;;16942:60;;;:::o;17008:142::-;17058:9;17091:53;17109:34;17118:24;17136:5;17118:24;:::i;:::-;17109:34;:::i;:::-;17091:53;:::i;:::-;17078:66;;17008:142;;;:::o;17156:75::-;17199:3;17220:5;17213:12;;17156:75;;;:::o;17237:269::-;17347:39;17378:7;17347:39;:::i;:::-;17408:91;17457:41;17481:16;17457:41;:::i;:::-;17449:6;17442:4;17436:11;17408:91;:::i;:::-;17402:4;17395:105;17313:193;17237:269;;;:::o;17512:73::-;17557:3;17512:73;:::o;17591:189::-;17668:32;;:::i;:::-;17709:65;17767:6;17759;17753:4;17709:65;:::i;:::-;17644:136;17591:189;;:::o;17786:186::-;17846:120;17863:3;17856:5;17853:14;17846:120;;;17917:39;17954:1;17947:5;17917:39;:::i;:::-;17890:1;17883:5;17879:13;17870:22;;17846:120;;;17786:186;;:::o;17978:543::-;18079:2;18074:3;18071:11;18068:446;;;18113:38;18145:5;18113:38;:::i;:::-;18197:29;18215:10;18197:29;:::i;:::-;18187:8;18183:44;18380:2;18368:10;18365:18;18362:49;;;18401:8;18386:23;;18362:49;18424:80;18480:22;18498:3;18480:22;:::i;:::-;18470:8;18466:37;18453:11;18424:80;:::i;:::-;18083:431;;18068:446;17978:543;;;:::o;18527:117::-;18581:8;18631:5;18625:4;18621:16;18600:37;;18527:117;;;;:::o;18650:169::-;18694:6;18727:51;18775:1;18771:6;18763:5;18760:1;18756:13;18727:51;:::i;:::-;18723:56;18808:4;18802;18798:15;18788:25;;18701:118;18650:169;;;;:::o;18824:295::-;18900:4;19046:29;19071:3;19065:4;19046:29;:::i;:::-;19038:37;;19108:3;19105:1;19101:11;19095:4;19092:21;19084:29;;18824:295;;;;:::o;19124:1403::-;19248:44;19288:3;19283;19248:44;:::i;:::-;19357:18;19349:6;19346:30;19343:56;;;19379:18;;:::i;:::-;19343:56;19423:38;19455:4;19449:11;19423:38;:::i;:::-;19508:67;19568:6;19560;19554:4;19508:67;:::i;:::-;19602:1;19631:2;19623:6;19620:14;19648:1;19643:632;;;;20319:1;20336:6;20333:84;;;20392:9;20387:3;20383:19;20370:33;20361:42;;20333:84;20443:67;20503:6;20496:5;20443:67;:::i;:::-;20437:4;20430:81;20292:229;19613:908;;19643:632;19695:4;19691:9;19683:6;19679:22;19729:37;19761:4;19729:37;:::i;:::-;19788:1;19802:215;19816:7;19813:1;19810:14;19802:215;;;19902:9;19897:3;19893:19;19880:33;19872:6;19865:49;19953:1;19945:6;19941:14;19931:24;;20000:2;19989:9;19985:18;19972:31;;19839:4;19836:1;19832:12;19827:17;;19802:215;;;20045:6;20036:7;20033:19;20030:186;;;20110:9;20105:3;20101:19;20088:33;20153:48;20195:4;20187:6;20183:17;20172:9;20153:48;:::i;:::-;20145:6;20138:64;20053:163;20030:186;20262:1;20258;20250:6;20246:14;20242:22;20236:4;20229:36;19650:625;;;19613:908;;19223:1304;;;19124:1403;;;:::o;20533:147::-;20634:11;20671:3;20656:18;;20533:147;;;;:::o;20686:114::-;;:::o;20806:398::-;20965:3;20986:83;21067:1;21062:3;20986:83;:::i;:::-;20979:90;;21078:93;21167:3;21078:93;:::i;:::-;21196:1;21191:3;21187:11;21180:18;;20806:398;;;:::o;21210:379::-;21394:3;21416:147;21559:3;21416:147;:::i;:::-;21409:154;;21580:3;21573:10;;21210:379;;;:::o;21595:181::-;21735:33;21731:1;21723:6;21719:14;21712:57;21595:181;:::o;21782:366::-;21924:3;21945:67;22009:2;22004:3;21945:67;:::i;:::-;21938:74;;22021:93;22110:3;22021:93;:::i;:::-;22139:2;22134:3;22130:12;22123:19;;21782:366;;;:::o;22154:419::-;22320:4;22358:2;22347:9;22343:18;22335:26;;22407:9;22401:4;22397:20;22393:1;22382:9;22378:17;22371:47;22435:131;22561:4;22435:131;:::i;:::-;22427:139;;22154:419;;;:::o;22579:180::-;22627:77;22624:1;22617:88;22724:4;22721:1;22714:15;22748:4;22745:1;22738:15;22765:169;22905:21;22901:1;22893:6;22889:14;22882:45;22765:169;:::o;22940:366::-;23082:3;23103:67;23167:2;23162:3;23103:67;:::i;:::-;23096:74;;23179:93;23268:3;23179:93;:::i;:::-;23297:2;23292:3;23288:12;23281:19;;22940:366;;;:::o;23312:419::-;23478:4;23516:2;23505:9;23501:18;23493:26;;23565:9;23559:4;23555:20;23551:1;23540:9;23536:17;23529:47;23593:131;23719:4;23593:131;:::i;:::-;23585:139;;23312:419;;;:::o;23737:161::-;23877:13;23873:1;23865:6;23861:14;23854:37;23737:161;:::o;23904:366::-;24046:3;24067:67;24131:2;24126:3;24067:67;:::i;:::-;24060:74;;24143:93;24232:3;24143:93;:::i;:::-;24261:2;24256:3;24252:12;24245:19;;23904:366;;;:::o;24276:419::-;24442:4;24480:2;24469:9;24465:18;24457:26;;24529:9;24523:4;24519:20;24515:1;24504:9;24500:17;24493:47;24557:131;24683:4;24557:131;:::i;:::-;24549:139;;24276:419;;;:::o;24701:166::-;24841:18;24837:1;24829:6;24825:14;24818:42;24701:166;:::o;24873:366::-;25015:3;25036:67;25100:2;25095:3;25036:67;:::i;:::-;25029:74;;25112:93;25201:3;25112:93;:::i;:::-;25230:2;25225:3;25221:12;25214:19;;24873:366;;;:::o;25245:419::-;25411:4;25449:2;25438:9;25434:18;25426:26;;25498:9;25492:4;25488:20;25484:1;25473:9;25469:17;25462:47;25526:131;25652:4;25526:131;:::i;:::-;25518:139;;25245:419;;;:::o;25670:167::-;25810:19;25806:1;25798:6;25794:14;25787:43;25670:167;:::o;25843:366::-;25985:3;26006:67;26070:2;26065:3;26006:67;:::i;:::-;25999:74;;26082:93;26171:3;26082:93;:::i;:::-;26200:2;26195:3;26191:12;26184:19;;25843:366;;;:::o;26215:419::-;26381:4;26419:2;26408:9;26404:18;26396:26;;26468:9;26462:4;26458:20;26454:1;26443:9;26439:17;26432:47;26496:131;26622:4;26496:131;:::i;:::-;26488:139;;26215:419;;;:::o;26640:234::-;26780:34;26776:1;26768:6;26764:14;26757:58;26849:17;26844:2;26836:6;26832:15;26825:42;26640:234;:::o;26880:366::-;27022:3;27043:67;27107:2;27102:3;27043:67;:::i;:::-;27036:74;;27119:93;27208:3;27119:93;:::i;:::-;27237:2;27232:3;27228:12;27221:19;;26880:366;;;:::o;27252:419::-;27418:4;27456:2;27445:9;27441:18;27433:26;;27505:9;27499:4;27495:20;27491:1;27480:9;27476:17;27469:47;27533:131;27659:4;27533:131;:::i;:::-;27525:139;;27252:419;;;:::o;27677:148::-;27779:11;27816:3;27801:18;;27677:148;;;;:::o;27855:874::-;27958:3;27995:5;27989:12;28024:36;28050:9;28024:36;:::i;:::-;28076:89;28158:6;28153:3;28076:89;:::i;:::-;28069:96;;28196:1;28185:9;28181:17;28212:1;28207:166;;;;28387:1;28382:341;;;;28174:549;;28207:166;28291:4;28287:9;28276;28272:25;28267:3;28260:38;28353:6;28346:14;28339:22;28331:6;28327:35;28322:3;28318:45;28311:52;;28207:166;;28382:341;28449:38;28481:5;28449:38;:::i;:::-;28509:1;28523:154;28537:6;28534:1;28531:13;28523:154;;;28611:7;28605:14;28601:1;28596:3;28592:11;28585:35;28661:1;28652:7;28648:15;28637:26;;28559:4;28556:1;28552:12;28547:17;;28523:154;;;28706:6;28701:3;28697:16;28690:23;;28389:334;;28174:549;;27962:767;;27855:874;;;;:::o;28735:390::-;28841:3;28869:39;28902:5;28869:39;:::i;:::-;28924:89;29006:6;29001:3;28924:89;:::i;:::-;28917:96;;29022:65;29080:6;29075:3;29068:4;29061:5;29057:16;29022:65;:::i;:::-;29112:6;29107:3;29103:16;29096:23;;28845:280;28735:390;;;;:::o;29131:155::-;29271:7;29267:1;29259:6;29255:14;29248:31;29131:155;:::o;29292:400::-;29452:3;29473:84;29555:1;29550:3;29473:84;:::i;:::-;29466:91;;29566:93;29655:3;29566:93;:::i;:::-;29684:1;29679:3;29675:11;29668:18;;29292:400;;;:::o;29698:695::-;29976:3;29998:92;30086:3;30077:6;29998:92;:::i;:::-;29991:99;;30107:95;30198:3;30189:6;30107:95;:::i;:::-;30100:102;;30219:148;30363:3;30219:148;:::i;:::-;30212:155;;30384:3;30377:10;;29698:695;;;;;:::o;30399:225::-;30539:34;30535:1;30527:6;30523:14;30516:58;30608:8;30603:2;30595:6;30591:15;30584:33;30399:225;:::o;30630:366::-;30772:3;30793:67;30857:2;30852:3;30793:67;:::i;:::-;30786:74;;30869:93;30958:3;30869:93;:::i;:::-;30987:2;30982:3;30978:12;30971:19;;30630:366;;;:::o;31002:419::-;31168:4;31206:2;31195:9;31191:18;31183:26;;31255:9;31249:4;31245:20;31241:1;31230:9;31226:17;31219:47;31283:131;31409:4;31283:131;:::i;:::-;31275:139;;31002:419;;;:::o;31427:98::-;31478:6;31512:5;31506:12;31496:22;;31427:98;;;:::o;31531:168::-;31614:11;31648:6;31643:3;31636:19;31688:4;31683:3;31679:14;31664:29;;31531:168;;;;:::o;31705:373::-;31791:3;31819:38;31851:5;31819:38;:::i;:::-;31873:70;31936:6;31931:3;31873:70;:::i;:::-;31866:77;;31952:65;32010:6;32005:3;31998:4;31991:5;31987:16;31952:65;:::i;:::-;32042:29;32064:6;32042:29;:::i;:::-;32037:3;32033:39;32026:46;;31795:283;31705:373;;;;:::o;32084:640::-;32279:4;32317:3;32306:9;32302:19;32294:27;;32331:71;32399:1;32388:9;32384:17;32375:6;32331:71;:::i;:::-;32412:72;32480:2;32469:9;32465:18;32456:6;32412:72;:::i;:::-;32494;32562:2;32551:9;32547:18;32538:6;32494:72;:::i;:::-;32613:9;32607:4;32603:20;32598:2;32587:9;32583:18;32576:48;32641:76;32712:4;32703:6;32641:76;:::i;:::-;32633:84;;32084:640;;;;;;;:::o;32730:141::-;32786:5;32817:6;32811:13;32802:22;;32833:32;32859:5;32833:32;:::i;:::-;32730:141;;;;:::o;32877:349::-;32946:6;32995:2;32983:9;32974:7;32970:23;32966:32;32963:119;;;33001:79;;:::i;:::-;32963:119;33121:1;33146:63;33201:7;33192:6;33181:9;33177:22;33146:63;:::i;:::-;33136:73;;33092:127;32877:349;;;;:::o;33232:233::-;33271:3;33294:24;33312:5;33294:24;:::i;:::-;33285:33;;33340:66;33333:5;33330:77;33327:103;;33410:18;;:::i;:::-;33327:103;33457:1;33450:5;33446:13;33439:20;;33232:233;;;:::o;33471:180::-;33519:77;33516:1;33509:88;33616:4;33613:1;33606:15;33640:4;33637:1;33630:15;33657:185;33697:1;33714:20;33732:1;33714:20;:::i;:::-;33709:25;;33748:20;33766:1;33748:20;:::i;:::-;33743:25;;33787:1;33777:35;;33792:18;;:::i;:::-;33777:35;33834:1;33831;33827:9;33822:14;;33657:185;;;;:::o;33848:194::-;33888:4;33908:20;33926:1;33908:20;:::i;:::-;33903:25;;33942:20;33960:1;33942:20;:::i;:::-;33937:25;;33986:1;33983;33979:9;33971:17;;34010:1;34004:4;34001:11;33998:37;;;34015:18;;:::i;:::-;33998:37;33848:194;;;;:::o;34048:176::-;34080:1;34097:20;34115:1;34097:20;:::i;:::-;34092:25;;34131:20;34149:1;34131:20;:::i;:::-;34126:25;;34170:1;34160:35;;34175:18;;:::i;:::-;34160:35;34216:1;34213;34209:9;34204:14;;34048:176;;;;:::o;34230:180::-;34278:77;34275:1;34268:88;34375:4;34372:1;34365:15;34399:4;34396:1;34389:15

Swarm Source

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