ETH Price: $2,481.99 (+0.21%)

Token

ReefPets Clownfish (RPCF)
 

Overview

Max Total Supply

222 RPCF

Holders

185

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 RPCF
0xfdf8734583865000b13aff0c9511720ad8f170a1
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:
ReefPetsClownfish

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-05
*/

// File: contracts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: contracts/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/ReefPetsClownfish.sol


pragma solidity ^0.8.13;






contract ReefPetsClownfish is ERC721AQueryable, DefaultOperatorFilterer, Ownable, Pausable {

    uint256 public MAX_MINTS = 2000;
    uint256 public MAX_SUPPLY = 5000;
    uint256 public price = 0.025 ether;

    string public baseURI;

    // Dev info
    address public dev = 0x1234cdF2D2dC0F3337DBF5128F934f1Ae9286E4c;
    uint256 public devCut = 12;//%

    uint256 public mintCounter = 0;
    uint256 public airDropCounter = 0;

    string public extension = ".json";

    constructor() ERC721A("ReefPets Clownfish", "RPCF") {
        toggleAllMintPause();
    }

    function mint(uint256 quantity) external payable whenNotPaused {
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "mint: Exceeded the limit per wallet");
        require(totalSupply() + quantity <= MAX_SUPPLY, "mint: Not enough tokens left");
        require(msg.value >= (price * quantity), "mint: Not enough ether sent");

        mintCounter += quantity;
        _safeMint(msg.sender, quantity);
    }

    function airDrop(address[] calldata addrs, uint256 quantity) external onlyOwner {
        uint256 len = addrs.length;
        require(totalSupply() + (quantity * len) <= MAX_SUPPLY, "airDrop: Not enough tokens to airdrop");
        airDropCounter += quantity * len;
        for (uint256 i = 0; i < len; i++) {
            _safeMint(addrs[i], quantity);
        }
    }

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

    function tokenURI(uint256 tokenId) 
        public 
        view 
        override(ERC721A, IERC721A) 
        returns (string memory) 
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), extension)) : '';
    }

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function transferFrom(address from, address to, uint256 tokenId)
        public
        payable
        override(ERC721A, IERC721A)
        onlyAllowedOperator(from)
    {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId)
        public
        payable
        override(ERC721A, IERC721A)
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override(ERC721A, IERC721A)
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    //ADMIN

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxMint(uint256 _max) external onlyOwner {
        MAX_MINTS = _max;
    }

    function toggleAllMintPause() public onlyOwner {
        paused() ? _unpause() : _pause();
    }

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

    function updateMaxSupply(uint256 _max) external onlyOwner {
        MAX_SUPPLY = _max;
    }

    function updateDev(address devWallet) external {
        require(msg.sender == dev, "updateDev: sender is not dev");
        dev = devWallet;
    }

    function withdraw() external onlyOwner {
        require(address(this).balance > 0, "withdraw: contract balance must be greater than 0"); 
        uint256 balance = address(this).balance;
        uint256 ownerBal = ((balance * (100 - devCut)) / 100);
        uint256 devBal = ((balance * (devCut)) / 100);
        payable(msg.sender).transfer(ownerBal);
        payable(dev).transfer(devBal);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airDropCounter","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":"payable","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":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devCut","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extension","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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"payable","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":"payable","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":"uint256","name":"_max","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAllMintPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"devWallet","type":"address"}],"name":"updateDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526107d0600955611388600a556658d15e17628000600b55731234cdf2d2dc0f3337dbf5128f934f1ae9286e4c600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c600e556000600f5560006010556040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060119080519060200190620000cc9291906200077a565b50348015620000da57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601281526020017f526565665065747320436c6f776e6669736800000000000000000000000000008152506040518060400160405280600481526020017f52504346000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001769291906200077a565b5080600390805190602001906200018f9291906200077a565b50620001a0620003f060201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200039d57801562000263576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002299291906200086f565b600060405180830381600087803b1580156200024457600080fd5b505af115801562000259573d6000803e3d6000fd5b505050506200039c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200031d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002e39291906200086f565b600060405180830381600087803b158015620002fe57600080fd5b505af115801562000313573d6000803e3d6000fd5b505050506200039b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200036691906200089c565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b505050505b5b5b5050620003bf620003b3620003f960201b60201c565b6200040160201b60201c565b6000600860146101000a81548160ff021916908315150217905550620003ea620004c760201b60201c565b62000a84565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004d76200051560201b60201c565b620004e7620005a660201b60201c565b6200050257620004fc620005bd60201b60201c565b62000513565b620005126200063260201b60201c565b5b565b62000525620003f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200054b620006a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059b906200091a565b60405180910390fd5b565b6000600860149054906101000a900460ff16905090565b620005cd620006d160201b60201c565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25862000619620003f960201b60201c565b6040516200062891906200089c565b60405180910390a1565b620006426200072660201b60201c565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6200068e620003f960201b60201c565b6040516200069d91906200089c565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006e1620005a660201b60201c565b1562000724576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071b906200098c565b60405180910390fd5b565b62000736620005a660201b60201c565b62000778576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076f90620009fe565b60405180910390fd5b565b828054620007889062000a4f565b90600052602060002090601f016020900481019282620007ac5760008555620007f8565b82601f10620007c757805160ff1916838001178555620007f8565b82800160010185558215620007f8579182015b82811115620007f7578251825591602001919060010190620007da565b5b5090506200080791906200080b565b5090565b5b80821115620008265760008160009055506001016200080c565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000857826200082a565b9050919050565b62000869816200084a565b82525050565b60006040820190506200088660008301856200085e565b6200089560208301846200085e565b9392505050565b6000602082019050620008b360008301846200085e565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000902602083620008b9565b91506200090f82620008ca565b602082019050919050565b600060208201905081810360008301526200093581620008f3565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000974601083620008b9565b915062000981826200093c565b602082019050919050565b60006020820190508181036000830152620009a78162000965565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000620009e6601483620008b9565b9150620009f382620009ae565b602082019050919050565b6000602082019050818103600083015262000a1981620009d7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a6857607f821691505b60208210810362000a7e5762000a7d62000a20565b5b50919050565b61448a8062000a946000396000f3fe60806040526004361061023b5760003560e01c806373be8f921161012e578063a0712d68116100ab578063cce132d11161006f578063cce132d114610832578063e985e9c51461085d578063f103b4331461089a578063f2fde38b146108c3578063fd1fc4a0146108ec5761023b565b8063a0712d6814610757578063a22cb46514610773578063b88d4fde1461079c578063c23dc68f146107b8578063c87b56dd146107f55761023b565b8063934c1938116100f2578063934c19381461067057806395d89b411461069957806399a2557a146106c45780639c28683714610701578063a035b1fe1461072c5761023b565b806373be8f92146105895780638462151c146105b45780638da5cb5b146105f157806391b7f5ed1461061c57806391cca3db146106455761023b565b806342842e0e116101bc5780635c975abb116101805780635c975abb146104a25780636352211e146104cd5780636c0360eb1461050a57806370a0823114610535578063715018a6146105725761023b565b806342842e0e146103cc57806346aa52ce146103e8578063547520fe1461041357806355f804b31461043c5780635bbb2177146104655761023b565b806323b872dd1161020357806323b872dd1461032c578063274a32d3146103485780632d5537b01461035f57806332cb6b0c1461038a5780633ccfd60b146103b55761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd14610301575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061301f565b610915565b6040516102749190613067565b60405180910390f35b34801561028957600080fd5b506102926109a7565b60405161029f919061311b565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613173565b610a39565b6040516102dc91906131e1565b60405180910390f35b6102ff60048036038101906102fa9190613228565b610ab8565b005b34801561030d57600080fd5b50610316610bfc565b6040516103239190613277565b60405180910390f35b61034660048036038101906103419190613292565b610c13565b005b34801561035457600080fd5b5061035d610df5565b005b34801561036b57600080fd5b50610374610e21565b604051610381919061311b565b60405180910390f35b34801561039657600080fd5b5061039f610eaf565b6040516103ac9190613277565b60405180910390f35b3480156103c157600080fd5b506103ca610eb5565b005b6103e660048036038101906103e19190613292565b611002565b005b3480156103f457600080fd5b506103fd6111e4565b60405161040a9190613277565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190613173565b6111ea565b005b34801561044857600080fd5b50610463600480360381019061045e919061341a565b6111fc565b005b34801561047157600080fd5b5061048c600480360381019061048791906134c3565b61121e565b6040516104999190613673565b60405180910390f35b3480156104ae57600080fd5b506104b76112e1565b6040516104c49190613067565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190613173565b6112f8565b60405161050191906131e1565b60405180910390f35b34801561051657600080fd5b5061051f61130a565b60405161052c919061311b565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613695565b611398565b6040516105699190613277565b60405180910390f35b34801561057e57600080fd5b50610587611450565b005b34801561059557600080fd5b5061059e611464565b6040516105ab9190613277565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190613695565b61146a565b6040516105e89190613780565b60405180910390f35b3480156105fd57600080fd5b506106066115ad565b60405161061391906131e1565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e9190613173565b6115d7565b005b34801561065157600080fd5b5061065a6115e9565b60405161066791906131e1565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190613695565b61160f565b005b3480156106a557600080fd5b506106ae6116e3565b6040516106bb919061311b565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e691906137a2565b611775565b6040516106f89190613780565b60405180910390f35b34801561070d57600080fd5b50610716611981565b6040516107239190613277565b60405180910390f35b34801561073857600080fd5b50610741611987565b60405161074e9190613277565b60405180910390f35b610771600480360381019061076c9190613173565b61198d565b005b34801561077f57600080fd5b5061079a60048036038101906107959190613821565b611aba565b005b6107b660048036038101906107b19190613902565b611bc5565b005b3480156107c457600080fd5b506107df60048036038101906107da9190613173565b611daa565b6040516107ec91906139da565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190613173565b611e14565b604051610829919061311b565b60405180910390f35b34801561083e57600080fd5b50610847611eb6565b6040516108549190613277565b60405180910390f35b34801561086957600080fd5b50610884600480360381019061087f91906139f5565b611ebc565b6040516108919190613067565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc9190613173565b611f50565b005b3480156108cf57600080fd5b506108ea60048036038101906108e59190613695565b611f62565b005b3480156108f857600080fd5b50610913600480360381019061090e9190613a8b565b611fe5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109b690613b1a565b80601f01602080910402602001604051908101604052809291908181526020018280546109e290613b1a565b8015610a2f5780601f10610a0457610100808354040283529160200191610a2f565b820191906000526020600020905b815481529060010190602001808311610a1257829003601f168201915b5050505050905090565b6000610a44826120d1565b610a7a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac3826112f8565b90508073ffffffffffffffffffffffffffffffffffffffff16610ae4612130565b73ffffffffffffffffffffffffffffffffffffffff1614610b4757610b1081610b0b612130565b611ebc565b610b46576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c06612138565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610de3573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c8557610c80848484612141565b610def565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cce929190613b4b565b602060405180830381865afa158015610ceb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0f9190613b89565b8015610da157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d5f929190613b4b565b602060405180830381865afa158015610d7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da09190613b89565b5b610de257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dd991906131e1565b60405180910390fd5b5b610dee848484612141565b5b50505050565b610dfd612463565b610e056112e1565b610e1657610e116124e1565b610e1f565b610e1e612544565b5b565b60118054610e2e90613b1a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5a90613b1a565b8015610ea75780601f10610e7c57610100808354040283529160200191610ea7565b820191906000526020600020905b815481529060010190602001808311610e8a57829003601f168201915b505050505081565b600a5481565b610ebd612463565b60004711610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790613c28565b60405180910390fd5b600047905060006064600e546064610f189190613c77565b83610f239190613cab565b610f2d9190613d34565b905060006064600e5484610f419190613cab565b610f4b9190613d34565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610f93573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ffc573d6000803e3d6000fd5b50505050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111d2573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110745761106f8484846125a7565b6111de565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110bd929190613b4b565b602060405180830381865afa1580156110da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110fe9190613b89565b801561119057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161114e929190613b4b565b602060405180830381865afa15801561116b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118f9190613b89565b5b6111d157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111c891906131e1565b60405180910390fd5b5b6111dd8484846125a7565b5b50505050565b600f5481565b6111f2612463565b8060098190555050565b611204612463565b80600c908051906020019061121a929190612ec1565b5050565b6060600083839050905060008167ffffffffffffffff811115611244576112436132ef565b5b60405190808252806020026020018201604052801561127d57816020015b61126a612f47565b8152602001906001900390816112625790505b50905060005b8281146112d5576112ac8686838181106112a05761129f613d65565b5b90506020020135611daa565b8282815181106112bf576112be613d65565b5b6020026020010181905250806001019050611283565b50809250505092915050565b6000600860149054906101000a900460ff16905090565b6000611303826125c7565b9050919050565b600c805461131790613b1a565b80601f016020809104026020016040519081016040528092919081815260200182805461134390613b1a565b80156113905780601f1061136557610100808354040283529160200191611390565b820191906000526020600020905b81548152906001019060200180831161137357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ff576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611458612463565b6114626000612693565b565b60105481565b6060600080600061147a85611398565b905060008167ffffffffffffffff811115611498576114976132ef565b5b6040519080825280602002602001820160405280156114c65781602001602082028036833780820191505090505b5090506114d1612f47565b60006114db612138565b90505b83861461159f576114ee81612759565b9150816040015161159457600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461153957816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611593578083878060010198508151811061158657611585613d65565b5b6020026020010181815250505b5b8060010190506114de565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115df612463565b80600b8190555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690613de0565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600380546116f290613b1a565b80601f016020809104026020016040519081016040528092919081815260200182805461171e90613b1a565b801561176b5780601f106117405761010080835404028352916020019161176b565b820191906000526020600020905b81548152906001019060200180831161174e57829003601f168201915b5050505050905090565b60608183106117b0576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117bb612784565b90506117c5612138565b8510156117d7576117d4612138565b94505b808411156117e3578093505b60006117ee87611398565b90508486101561181157600086860390508181101561180b578091505b50611816565b600090505b60008167ffffffffffffffff811115611832576118316132ef565b5b6040519080825280602002602001820160405280156118605781602001602082028036833780820191505090505b50905060008203611877578094505050505061197a565b600061188288611daa565b90506000816040015161189757816000015190505b60008990505b8881141580156118ad5750848714155b1561196c576118bb81612759565b9250826040015161196157600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461190657826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611960578084888060010199508151811061195357611952613d65565b5b6020026020010181815250505b5b80600101905061189d565b508583528296505050505050505b9392505050565b600e5481565b600b5481565b61199561278d565b6009546119a1336127d7565b826119ac9190613e00565b11156119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613ec8565b60405180910390fd5b600a54816119f9610bfc565b611a039190613e00565b1115611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b90613f34565b60405180910390fd5b80600b54611a529190613cab565b341015611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90613fa0565b60405180910390fd5b80600f6000828254611aa69190613e00565b92505081905550611ab7338261282e565b50565b8060076000611ac7612130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b74612130565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb99190613067565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611d96573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c3857611c338585858561284c565b611da3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611c81929190613b4b565b602060405180830381865afa158015611c9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc29190613b89565b8015611d5457506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d12929190613b4b565b602060405180830381865afa158015611d2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d539190613b89565b5b611d9557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611d8c91906131e1565b60405180910390fd5b5b611da28585858561284c565b5b5050505050565b611db2612f47565b611dba612f47565b611dc2612138565b831080611dd65750611dd2612784565b8310155b15611de45780915050611e0f565b611ded83612759565b9050806040015115611e025780915050611e0f565b611e0b836128bf565b9150505b919050565b6060611e1f826120d1565b611e55576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600c8054611e6490613b1a565b905003611e805760405180602001604052806000815250611eaf565b600c611e8b836128df565b6011604051602001611e9f93929190614090565b6040516020818303038152906040525b9050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f58612463565b80600a8190555050565b611f6a612463565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090614133565b60405180910390fd5b611fe281612693565b50565b611fed612463565b6000838390509050600a5481836120049190613cab565b61200c610bfc565b6120169190613e00565b1115612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e906141c5565b60405180910390fd5b80826120639190613cab565b601060008282546120749190613e00565b9250508190555060005b818110156120ca576120b785858381811061209c5761209b613d65565b5b90506020020160208101906120b19190613695565b8461282e565b80806120c2906141e5565b91505061207e565b5050505050565b6000816120dc612138565b111580156120eb575060005482105b8015612129575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600061214c826125c7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121b3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806121bf8461292f565b915091506121d581876121d0612130565b612956565b612221576121ea866121e5612130565b611ebc565b612220576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612287576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612294868686600161299a565b801561229f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061236d856123498888876129a0565b7c0200000000000000000000000000000000000000000000000000000000176129c8565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036123f357600060018501905060006004600083815260200190815260200160002054036123f15760005481146123f0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461245b86868660016129f3565b505050505050565b61246b6129f9565b73ffffffffffffffffffffffffffffffffffffffff166124896115ad565b73ffffffffffffffffffffffffffffffffffffffff16146124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d690614279565b60405180910390fd5b565b6124e961278d565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861252d6129f9565b60405161253a91906131e1565b60405180910390a1565b61254c612a01565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125906129f9565b60405161259d91906131e1565b60405180910390a1565b6125c283838360405180602001604052806000815250611bc5565b505050565b600080829050806125d6612138565b1161265c5760005481101561265b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612659575b6000810361264f576004600083600190039350838152602001908152602001600020549050612625565b809250505061268e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612761612f47565b61277d6004600084815260200190815260200160002054612a4a565b9050919050565b60008054905090565b6127956112e1565b156127d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cc906142e5565b60405180910390fd5b565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612848828260405180602001604052806000815250612b00565b5050565b612857848484610c13565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128b95761288284848484612b9d565b6128b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6128c7612f47565b6128d86128d3836125c7565b612a4a565b9050919050565b606060a060405101806040526020810391506000825281835b60011561291a57600184039350600a81066030018453600a81049050806128f8575b50828103602084039350808452505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86129b7868684612ced565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b612a096112e1565b612a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3f90614351565b60405180910390fd5b565b612a52612f47565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612b0a8383612cf6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b9857600080549050600083820390505b612b4a6000868380600101945086612b9d565b612b80576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b37578160005414612b9557600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bc3612130565b8786866040518563ffffffff1660e01b8152600401612be594939291906143c6565b6020604051808303816000875af1925050508015612c2157506040513d601f19601f82011682018060405250810190612c1e9190614427565b60015b612c9a573d8060008114612c51576040519150601f19603f3d011682016040523d82523d6000602084013e612c56565b606091505b506000815103612c92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612d36576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d43600084838561299a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612dba83612dab60008660006129a0565b612db485612eb1565b176129c8565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612e5b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612e20565b5060008203612e96576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612eac60008483856129f3565b505050565b60006001821460e11b9050919050565b828054612ecd90613b1a565b90600052602060002090601f016020900481019282612eef5760008555612f36565b82601f10612f0857805160ff1916838001178555612f36565b82800160010185558215612f36579182015b82811115612f35578251825591602001919060010190612f1a565b5b509050612f439190612f96565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612faf576000816000905550600101612f97565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ffc81612fc7565b811461300757600080fd5b50565b60008135905061301981612ff3565b92915050565b60006020828403121561303557613034612fbd565b5b60006130438482850161300a565b91505092915050565b60008115159050919050565b6130618161304c565b82525050565b600060208201905061307c6000830184613058565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130bc5780820151818401526020810190506130a1565b838111156130cb576000848401525b50505050565b6000601f19601f8301169050919050565b60006130ed82613082565b6130f7818561308d565b935061310781856020860161309e565b613110816130d1565b840191505092915050565b6000602082019050818103600083015261313581846130e2565b905092915050565b6000819050919050565b6131508161313d565b811461315b57600080fd5b50565b60008135905061316d81613147565b92915050565b60006020828403121561318957613188612fbd565b5b60006131978482850161315e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131cb826131a0565b9050919050565b6131db816131c0565b82525050565b60006020820190506131f660008301846131d2565b92915050565b613205816131c0565b811461321057600080fd5b50565b600081359050613222816131fc565b92915050565b6000806040838503121561323f5761323e612fbd565b5b600061324d85828601613213565b925050602061325e8582860161315e565b9150509250929050565b6132718161313d565b82525050565b600060208201905061328c6000830184613268565b92915050565b6000806000606084860312156132ab576132aa612fbd565b5b60006132b986828701613213565b93505060206132ca86828701613213565b92505060406132db8682870161315e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613327826130d1565b810181811067ffffffffffffffff82111715613346576133456132ef565b5b80604052505050565b6000613359612fb3565b9050613365828261331e565b919050565b600067ffffffffffffffff821115613385576133846132ef565b5b61338e826130d1565b9050602081019050919050565b82818337600083830152505050565b60006133bd6133b88461336a565b61334f565b9050828152602081018484840111156133d9576133d86132ea565b5b6133e484828561339b565b509392505050565b600082601f830112613401576134006132e5565b5b81356134118482602086016133aa565b91505092915050565b6000602082840312156134305761342f612fbd565b5b600082013567ffffffffffffffff81111561344e5761344d612fc2565b5b61345a848285016133ec565b91505092915050565b600080fd5b600080fd5b60008083601f840112613483576134826132e5565b5b8235905067ffffffffffffffff8111156134a05761349f613463565b5b6020830191508360208202830111156134bc576134bb613468565b5b9250929050565b600080602083850312156134da576134d9612fbd565b5b600083013567ffffffffffffffff8111156134f8576134f7612fc2565b5b6135048582860161346d565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613545816131c0565b82525050565b600067ffffffffffffffff82169050919050565b6135688161354b565b82525050565b6135778161304c565b82525050565b600062ffffff82169050919050565b6135958161357d565b82525050565b6080820160008201516135b1600085018261353c565b5060208201516135c4602085018261355f565b5060408201516135d7604085018261356e565b5060608201516135ea606085018261358c565b50505050565b60006135fc838361359b565b60808301905092915050565b6000602082019050919050565b600061362082613510565b61362a818561351b565b93506136358361352c565b8060005b8381101561366657815161364d88826135f0565b975061365883613608565b925050600181019050613639565b5085935050505092915050565b6000602082019050818103600083015261368d8184613615565b905092915050565b6000602082840312156136ab576136aa612fbd565b5b60006136b984828501613213565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136f78161313d565b82525050565b600061370983836136ee565b60208301905092915050565b6000602082019050919050565b600061372d826136c2565b61373781856136cd565b9350613742836136de565b8060005b8381101561377357815161375a88826136fd565b975061376583613715565b925050600181019050613746565b5085935050505092915050565b6000602082019050818103600083015261379a8184613722565b905092915050565b6000806000606084860312156137bb576137ba612fbd565b5b60006137c986828701613213565b93505060206137da8682870161315e565b92505060406137eb8682870161315e565b9150509250925092565b6137fe8161304c565b811461380957600080fd5b50565b60008135905061381b816137f5565b92915050565b6000806040838503121561383857613837612fbd565b5b600061384685828601613213565b92505060206138578582860161380c565b9150509250929050565b600067ffffffffffffffff82111561387c5761387b6132ef565b5b613885826130d1565b9050602081019050919050565b60006138a56138a084613861565b61334f565b9050828152602081018484840111156138c1576138c06132ea565b5b6138cc84828561339b565b509392505050565b600082601f8301126138e9576138e86132e5565b5b81356138f9848260208601613892565b91505092915050565b6000806000806080858703121561391c5761391b612fbd565b5b600061392a87828801613213565b945050602061393b87828801613213565b935050604061394c8782880161315e565b925050606085013567ffffffffffffffff81111561396d5761396c612fc2565b5b613979878288016138d4565b91505092959194509250565b60808201600082015161399b600085018261353c565b5060208201516139ae602085018261355f565b5060408201516139c1604085018261356e565b5060608201516139d4606085018261358c565b50505050565b60006080820190506139ef6000830184613985565b92915050565b60008060408385031215613a0c57613a0b612fbd565b5b6000613a1a85828601613213565b9250506020613a2b85828601613213565b9150509250929050565b60008083601f840112613a4b57613a4a6132e5565b5b8235905067ffffffffffffffff811115613a6857613a67613463565b5b602083019150836020820283011115613a8457613a83613468565b5b9250929050565b600080600060408486031215613aa457613aa3612fbd565b5b600084013567ffffffffffffffff811115613ac257613ac1612fc2565b5b613ace86828701613a35565b93509350506020613ae18682870161315e565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b3257607f821691505b602082108103613b4557613b44613aeb565b5b50919050565b6000604082019050613b6060008301856131d2565b613b6d60208301846131d2565b9392505050565b600081519050613b83816137f5565b92915050565b600060208284031215613b9f57613b9e612fbd565b5b6000613bad84828501613b74565b91505092915050565b7f77697468647261773a20636f6e74726163742062616c616e6365206d7573742060008201527f62652067726561746572207468616e2030000000000000000000000000000000602082015250565b6000613c1260318361308d565b9150613c1d82613bb6565b604082019050919050565b60006020820190508181036000830152613c4181613c05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c828261313d565b9150613c8d8361313d565b925082821015613ca057613c9f613c48565b5b828203905092915050565b6000613cb68261313d565b9150613cc18361313d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cfa57613cf9613c48565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d3f8261313d565b9150613d4a8361313d565b925082613d5a57613d59613d05565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f7570646174654465763a2073656e646572206973206e6f742064657600000000600082015250565b6000613dca601c8361308d565b9150613dd582613d94565b602082019050919050565b60006020820190508181036000830152613df981613dbd565b9050919050565b6000613e0b8261313d565b9150613e168361313d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4b57613e4a613c48565b5b828201905092915050565b7f6d696e743a20457863656564656420746865206c696d6974207065722077616c60008201527f6c65740000000000000000000000000000000000000000000000000000000000602082015250565b6000613eb260238361308d565b9150613ebd82613e56565b604082019050919050565b60006020820190508181036000830152613ee181613ea5565b9050919050565b7f6d696e743a204e6f7420656e6f75676820746f6b656e73206c65667400000000600082015250565b6000613f1e601c8361308d565b9150613f2982613ee8565b602082019050919050565b60006020820190508181036000830152613f4d81613f11565b9050919050565b7f6d696e743a204e6f7420656e6f7567682065746865722073656e740000000000600082015250565b6000613f8a601b8361308d565b9150613f9582613f54565b602082019050919050565b60006020820190508181036000830152613fb981613f7d565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613fed81613b1a565b613ff78186613fc0565b94506001821660008114614012576001811461402357614056565b60ff19831686528186019350614056565b61402c85613fcb565b60005b8381101561404e5781548189015260018201915060208101905061402f565b838801955050505b50505092915050565b600061406a82613082565b6140748185613fc0565b935061408481856020860161309e565b80840191505092915050565b600061409c8286613fe0565b91506140a8828561405f565b91506140b48284613fe0565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061411d60268361308d565b9150614128826140c1565b604082019050919050565b6000602082019050818103600083015261414c81614110565b9050919050565b7f61697244726f703a204e6f7420656e6f75676820746f6b656e7320746f20616960008201527f7264726f70000000000000000000000000000000000000000000000000000000602082015250565b60006141af60258361308d565b91506141ba82614153565b604082019050919050565b600060208201905081810360008301526141de816141a2565b9050919050565b60006141f08261313d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361422257614221613c48565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061426360208361308d565b915061426e8261422d565b602082019050919050565b6000602082019050818103600083015261429281614256565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006142cf60108361308d565b91506142da82614299565b602082019050919050565b600060208201905081810360008301526142fe816142c2565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061433b60148361308d565b915061434682614305565b602082019050919050565b6000602082019050818103600083015261436a8161432e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061439882614371565b6143a2818561437c565b93506143b281856020860161309e565b6143bb816130d1565b840191505092915050565b60006080820190506143db60008301876131d2565b6143e860208301866131d2565b6143f56040830185613268565b8181036060830152614407818461438d565b905095945050505050565b60008151905061442181612ff3565b92915050565b60006020828403121561443d5761443c612fbd565b5b600061444b84828501614412565b9150509291505056fea26469706673582212200f884e34de727f6202626103bed8d78a991f410931dbca657779095512a7bc8964736f6c634300080d0033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806373be8f921161012e578063a0712d68116100ab578063cce132d11161006f578063cce132d114610832578063e985e9c51461085d578063f103b4331461089a578063f2fde38b146108c3578063fd1fc4a0146108ec5761023b565b8063a0712d6814610757578063a22cb46514610773578063b88d4fde1461079c578063c23dc68f146107b8578063c87b56dd146107f55761023b565b8063934c1938116100f2578063934c19381461067057806395d89b411461069957806399a2557a146106c45780639c28683714610701578063a035b1fe1461072c5761023b565b806373be8f92146105895780638462151c146105b45780638da5cb5b146105f157806391b7f5ed1461061c57806391cca3db146106455761023b565b806342842e0e116101bc5780635c975abb116101805780635c975abb146104a25780636352211e146104cd5780636c0360eb1461050a57806370a0823114610535578063715018a6146105725761023b565b806342842e0e146103cc57806346aa52ce146103e8578063547520fe1461041357806355f804b31461043c5780635bbb2177146104655761023b565b806323b872dd1161020357806323b872dd1461032c578063274a32d3146103485780632d5537b01461035f57806332cb6b0c1461038a5780633ccfd60b146103b55761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd14610301575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061301f565b610915565b6040516102749190613067565b60405180910390f35b34801561028957600080fd5b506102926109a7565b60405161029f919061311b565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613173565b610a39565b6040516102dc91906131e1565b60405180910390f35b6102ff60048036038101906102fa9190613228565b610ab8565b005b34801561030d57600080fd5b50610316610bfc565b6040516103239190613277565b60405180910390f35b61034660048036038101906103419190613292565b610c13565b005b34801561035457600080fd5b5061035d610df5565b005b34801561036b57600080fd5b50610374610e21565b604051610381919061311b565b60405180910390f35b34801561039657600080fd5b5061039f610eaf565b6040516103ac9190613277565b60405180910390f35b3480156103c157600080fd5b506103ca610eb5565b005b6103e660048036038101906103e19190613292565b611002565b005b3480156103f457600080fd5b506103fd6111e4565b60405161040a9190613277565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190613173565b6111ea565b005b34801561044857600080fd5b50610463600480360381019061045e919061341a565b6111fc565b005b34801561047157600080fd5b5061048c600480360381019061048791906134c3565b61121e565b6040516104999190613673565b60405180910390f35b3480156104ae57600080fd5b506104b76112e1565b6040516104c49190613067565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190613173565b6112f8565b60405161050191906131e1565b60405180910390f35b34801561051657600080fd5b5061051f61130a565b60405161052c919061311b565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613695565b611398565b6040516105699190613277565b60405180910390f35b34801561057e57600080fd5b50610587611450565b005b34801561059557600080fd5b5061059e611464565b6040516105ab9190613277565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190613695565b61146a565b6040516105e89190613780565b60405180910390f35b3480156105fd57600080fd5b506106066115ad565b60405161061391906131e1565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e9190613173565b6115d7565b005b34801561065157600080fd5b5061065a6115e9565b60405161066791906131e1565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190613695565b61160f565b005b3480156106a557600080fd5b506106ae6116e3565b6040516106bb919061311b565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e691906137a2565b611775565b6040516106f89190613780565b60405180910390f35b34801561070d57600080fd5b50610716611981565b6040516107239190613277565b60405180910390f35b34801561073857600080fd5b50610741611987565b60405161074e9190613277565b60405180910390f35b610771600480360381019061076c9190613173565b61198d565b005b34801561077f57600080fd5b5061079a60048036038101906107959190613821565b611aba565b005b6107b660048036038101906107b19190613902565b611bc5565b005b3480156107c457600080fd5b506107df60048036038101906107da9190613173565b611daa565b6040516107ec91906139da565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190613173565b611e14565b604051610829919061311b565b60405180910390f35b34801561083e57600080fd5b50610847611eb6565b6040516108549190613277565b60405180910390f35b34801561086957600080fd5b50610884600480360381019061087f91906139f5565b611ebc565b6040516108919190613067565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc9190613173565b611f50565b005b3480156108cf57600080fd5b506108ea60048036038101906108e59190613695565b611f62565b005b3480156108f857600080fd5b50610913600480360381019061090e9190613a8b565b611fe5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109b690613b1a565b80601f01602080910402602001604051908101604052809291908181526020018280546109e290613b1a565b8015610a2f5780601f10610a0457610100808354040283529160200191610a2f565b820191906000526020600020905b815481529060010190602001808311610a1257829003601f168201915b5050505050905090565b6000610a44826120d1565b610a7a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac3826112f8565b90508073ffffffffffffffffffffffffffffffffffffffff16610ae4612130565b73ffffffffffffffffffffffffffffffffffffffff1614610b4757610b1081610b0b612130565b611ebc565b610b46576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c06612138565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610de3573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c8557610c80848484612141565b610def565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cce929190613b4b565b602060405180830381865afa158015610ceb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0f9190613b89565b8015610da157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d5f929190613b4b565b602060405180830381865afa158015610d7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da09190613b89565b5b610de257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dd991906131e1565b60405180910390fd5b5b610dee848484612141565b5b50505050565b610dfd612463565b610e056112e1565b610e1657610e116124e1565b610e1f565b610e1e612544565b5b565b60118054610e2e90613b1a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5a90613b1a565b8015610ea75780601f10610e7c57610100808354040283529160200191610ea7565b820191906000526020600020905b815481529060010190602001808311610e8a57829003601f168201915b505050505081565b600a5481565b610ebd612463565b60004711610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790613c28565b60405180910390fd5b600047905060006064600e546064610f189190613c77565b83610f239190613cab565b610f2d9190613d34565b905060006064600e5484610f419190613cab565b610f4b9190613d34565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610f93573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ffc573d6000803e3d6000fd5b50505050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111d2573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110745761106f8484846125a7565b6111de565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110bd929190613b4b565b602060405180830381865afa1580156110da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110fe9190613b89565b801561119057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161114e929190613b4b565b602060405180830381865afa15801561116b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118f9190613b89565b5b6111d157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111c891906131e1565b60405180910390fd5b5b6111dd8484846125a7565b5b50505050565b600f5481565b6111f2612463565b8060098190555050565b611204612463565b80600c908051906020019061121a929190612ec1565b5050565b6060600083839050905060008167ffffffffffffffff811115611244576112436132ef565b5b60405190808252806020026020018201604052801561127d57816020015b61126a612f47565b8152602001906001900390816112625790505b50905060005b8281146112d5576112ac8686838181106112a05761129f613d65565b5b90506020020135611daa565b8282815181106112bf576112be613d65565b5b6020026020010181905250806001019050611283565b50809250505092915050565b6000600860149054906101000a900460ff16905090565b6000611303826125c7565b9050919050565b600c805461131790613b1a565b80601f016020809104026020016040519081016040528092919081815260200182805461134390613b1a565b80156113905780601f1061136557610100808354040283529160200191611390565b820191906000526020600020905b81548152906001019060200180831161137357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ff576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611458612463565b6114626000612693565b565b60105481565b6060600080600061147a85611398565b905060008167ffffffffffffffff811115611498576114976132ef565b5b6040519080825280602002602001820160405280156114c65781602001602082028036833780820191505090505b5090506114d1612f47565b60006114db612138565b90505b83861461159f576114ee81612759565b9150816040015161159457600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461153957816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611593578083878060010198508151811061158657611585613d65565b5b6020026020010181815250505b5b8060010190506114de565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115df612463565b80600b8190555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690613de0565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600380546116f290613b1a565b80601f016020809104026020016040519081016040528092919081815260200182805461171e90613b1a565b801561176b5780601f106117405761010080835404028352916020019161176b565b820191906000526020600020905b81548152906001019060200180831161174e57829003601f168201915b5050505050905090565b60608183106117b0576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117bb612784565b90506117c5612138565b8510156117d7576117d4612138565b94505b808411156117e3578093505b60006117ee87611398565b90508486101561181157600086860390508181101561180b578091505b50611816565b600090505b60008167ffffffffffffffff811115611832576118316132ef565b5b6040519080825280602002602001820160405280156118605781602001602082028036833780820191505090505b50905060008203611877578094505050505061197a565b600061188288611daa565b90506000816040015161189757816000015190505b60008990505b8881141580156118ad5750848714155b1561196c576118bb81612759565b9250826040015161196157600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461190657826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611960578084888060010199508151811061195357611952613d65565b5b6020026020010181815250505b5b80600101905061189d565b508583528296505050505050505b9392505050565b600e5481565b600b5481565b61199561278d565b6009546119a1336127d7565b826119ac9190613e00565b11156119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613ec8565b60405180910390fd5b600a54816119f9610bfc565b611a039190613e00565b1115611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b90613f34565b60405180910390fd5b80600b54611a529190613cab565b341015611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90613fa0565b60405180910390fd5b80600f6000828254611aa69190613e00565b92505081905550611ab7338261282e565b50565b8060076000611ac7612130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b74612130565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb99190613067565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611d96573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c3857611c338585858561284c565b611da3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611c81929190613b4b565b602060405180830381865afa158015611c9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc29190613b89565b8015611d5457506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d12929190613b4b565b602060405180830381865afa158015611d2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d539190613b89565b5b611d9557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611d8c91906131e1565b60405180910390fd5b5b611da28585858561284c565b5b5050505050565b611db2612f47565b611dba612f47565b611dc2612138565b831080611dd65750611dd2612784565b8310155b15611de45780915050611e0f565b611ded83612759565b9050806040015115611e025780915050611e0f565b611e0b836128bf565b9150505b919050565b6060611e1f826120d1565b611e55576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600c8054611e6490613b1a565b905003611e805760405180602001604052806000815250611eaf565b600c611e8b836128df565b6011604051602001611e9f93929190614090565b6040516020818303038152906040525b9050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f58612463565b80600a8190555050565b611f6a612463565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090614133565b60405180910390fd5b611fe281612693565b50565b611fed612463565b6000838390509050600a5481836120049190613cab565b61200c610bfc565b6120169190613e00565b1115612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e906141c5565b60405180910390fd5b80826120639190613cab565b601060008282546120749190613e00565b9250508190555060005b818110156120ca576120b785858381811061209c5761209b613d65565b5b90506020020160208101906120b19190613695565b8461282e565b80806120c2906141e5565b91505061207e565b5050505050565b6000816120dc612138565b111580156120eb575060005482105b8015612129575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600061214c826125c7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121b3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806121bf8461292f565b915091506121d581876121d0612130565b612956565b612221576121ea866121e5612130565b611ebc565b612220576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612287576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612294868686600161299a565b801561229f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061236d856123498888876129a0565b7c0200000000000000000000000000000000000000000000000000000000176129c8565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036123f357600060018501905060006004600083815260200190815260200160002054036123f15760005481146123f0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461245b86868660016129f3565b505050505050565b61246b6129f9565b73ffffffffffffffffffffffffffffffffffffffff166124896115ad565b73ffffffffffffffffffffffffffffffffffffffff16146124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d690614279565b60405180910390fd5b565b6124e961278d565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861252d6129f9565b60405161253a91906131e1565b60405180910390a1565b61254c612a01565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125906129f9565b60405161259d91906131e1565b60405180910390a1565b6125c283838360405180602001604052806000815250611bc5565b505050565b600080829050806125d6612138565b1161265c5760005481101561265b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612659575b6000810361264f576004600083600190039350838152602001908152602001600020549050612625565b809250505061268e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612761612f47565b61277d6004600084815260200190815260200160002054612a4a565b9050919050565b60008054905090565b6127956112e1565b156127d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cc906142e5565b60405180910390fd5b565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612848828260405180602001604052806000815250612b00565b5050565b612857848484610c13565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128b95761288284848484612b9d565b6128b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6128c7612f47565b6128d86128d3836125c7565b612a4a565b9050919050565b606060a060405101806040526020810391506000825281835b60011561291a57600184039350600a81066030018453600a81049050806128f8575b50828103602084039350808452505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86129b7868684612ced565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b612a096112e1565b612a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3f90614351565b60405180910390fd5b565b612a52612f47565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612b0a8383612cf6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b9857600080549050600083820390505b612b4a6000868380600101945086612b9d565b612b80576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b37578160005414612b9557600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bc3612130565b8786866040518563ffffffff1660e01b8152600401612be594939291906143c6565b6020604051808303816000875af1925050508015612c2157506040513d601f19601f82011682018060405250810190612c1e9190614427565b60015b612c9a573d8060008114612c51576040519150601f19603f3d011682016040523d82523d6000602084013e612c56565b606091505b506000815103612c92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612d36576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d43600084838561299a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612dba83612dab60008660006129a0565b612db485612eb1565b176129c8565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612e5b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612e20565b5060008203612e96576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612eac60008483856129f3565b505050565b60006001821460e11b9050919050565b828054612ecd90613b1a565b90600052602060002090601f016020900481019282612eef5760008555612f36565b82601f10612f0857805160ff1916838001178555612f36565b82800160010185558215612f36579182015b82811115612f35578251825591602001919060010190612f1a565b5b509050612f439190612f96565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612faf576000816000905550600101612f97565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ffc81612fc7565b811461300757600080fd5b50565b60008135905061301981612ff3565b92915050565b60006020828403121561303557613034612fbd565b5b60006130438482850161300a565b91505092915050565b60008115159050919050565b6130618161304c565b82525050565b600060208201905061307c6000830184613058565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130bc5780820151818401526020810190506130a1565b838111156130cb576000848401525b50505050565b6000601f19601f8301169050919050565b60006130ed82613082565b6130f7818561308d565b935061310781856020860161309e565b613110816130d1565b840191505092915050565b6000602082019050818103600083015261313581846130e2565b905092915050565b6000819050919050565b6131508161313d565b811461315b57600080fd5b50565b60008135905061316d81613147565b92915050565b60006020828403121561318957613188612fbd565b5b60006131978482850161315e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131cb826131a0565b9050919050565b6131db816131c0565b82525050565b60006020820190506131f660008301846131d2565b92915050565b613205816131c0565b811461321057600080fd5b50565b600081359050613222816131fc565b92915050565b6000806040838503121561323f5761323e612fbd565b5b600061324d85828601613213565b925050602061325e8582860161315e565b9150509250929050565b6132718161313d565b82525050565b600060208201905061328c6000830184613268565b92915050565b6000806000606084860312156132ab576132aa612fbd565b5b60006132b986828701613213565b93505060206132ca86828701613213565b92505060406132db8682870161315e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613327826130d1565b810181811067ffffffffffffffff82111715613346576133456132ef565b5b80604052505050565b6000613359612fb3565b9050613365828261331e565b919050565b600067ffffffffffffffff821115613385576133846132ef565b5b61338e826130d1565b9050602081019050919050565b82818337600083830152505050565b60006133bd6133b88461336a565b61334f565b9050828152602081018484840111156133d9576133d86132ea565b5b6133e484828561339b565b509392505050565b600082601f830112613401576134006132e5565b5b81356134118482602086016133aa565b91505092915050565b6000602082840312156134305761342f612fbd565b5b600082013567ffffffffffffffff81111561344e5761344d612fc2565b5b61345a848285016133ec565b91505092915050565b600080fd5b600080fd5b60008083601f840112613483576134826132e5565b5b8235905067ffffffffffffffff8111156134a05761349f613463565b5b6020830191508360208202830111156134bc576134bb613468565b5b9250929050565b600080602083850312156134da576134d9612fbd565b5b600083013567ffffffffffffffff8111156134f8576134f7612fc2565b5b6135048582860161346d565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613545816131c0565b82525050565b600067ffffffffffffffff82169050919050565b6135688161354b565b82525050565b6135778161304c565b82525050565b600062ffffff82169050919050565b6135958161357d565b82525050565b6080820160008201516135b1600085018261353c565b5060208201516135c4602085018261355f565b5060408201516135d7604085018261356e565b5060608201516135ea606085018261358c565b50505050565b60006135fc838361359b565b60808301905092915050565b6000602082019050919050565b600061362082613510565b61362a818561351b565b93506136358361352c565b8060005b8381101561366657815161364d88826135f0565b975061365883613608565b925050600181019050613639565b5085935050505092915050565b6000602082019050818103600083015261368d8184613615565b905092915050565b6000602082840312156136ab576136aa612fbd565b5b60006136b984828501613213565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136f78161313d565b82525050565b600061370983836136ee565b60208301905092915050565b6000602082019050919050565b600061372d826136c2565b61373781856136cd565b9350613742836136de565b8060005b8381101561377357815161375a88826136fd565b975061376583613715565b925050600181019050613746565b5085935050505092915050565b6000602082019050818103600083015261379a8184613722565b905092915050565b6000806000606084860312156137bb576137ba612fbd565b5b60006137c986828701613213565b93505060206137da8682870161315e565b92505060406137eb8682870161315e565b9150509250925092565b6137fe8161304c565b811461380957600080fd5b50565b60008135905061381b816137f5565b92915050565b6000806040838503121561383857613837612fbd565b5b600061384685828601613213565b92505060206138578582860161380c565b9150509250929050565b600067ffffffffffffffff82111561387c5761387b6132ef565b5b613885826130d1565b9050602081019050919050565b60006138a56138a084613861565b61334f565b9050828152602081018484840111156138c1576138c06132ea565b5b6138cc84828561339b565b509392505050565b600082601f8301126138e9576138e86132e5565b5b81356138f9848260208601613892565b91505092915050565b6000806000806080858703121561391c5761391b612fbd565b5b600061392a87828801613213565b945050602061393b87828801613213565b935050604061394c8782880161315e565b925050606085013567ffffffffffffffff81111561396d5761396c612fc2565b5b613979878288016138d4565b91505092959194509250565b60808201600082015161399b600085018261353c565b5060208201516139ae602085018261355f565b5060408201516139c1604085018261356e565b5060608201516139d4606085018261358c565b50505050565b60006080820190506139ef6000830184613985565b92915050565b60008060408385031215613a0c57613a0b612fbd565b5b6000613a1a85828601613213565b9250506020613a2b85828601613213565b9150509250929050565b60008083601f840112613a4b57613a4a6132e5565b5b8235905067ffffffffffffffff811115613a6857613a67613463565b5b602083019150836020820283011115613a8457613a83613468565b5b9250929050565b600080600060408486031215613aa457613aa3612fbd565b5b600084013567ffffffffffffffff811115613ac257613ac1612fc2565b5b613ace86828701613a35565b93509350506020613ae18682870161315e565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b3257607f821691505b602082108103613b4557613b44613aeb565b5b50919050565b6000604082019050613b6060008301856131d2565b613b6d60208301846131d2565b9392505050565b600081519050613b83816137f5565b92915050565b600060208284031215613b9f57613b9e612fbd565b5b6000613bad84828501613b74565b91505092915050565b7f77697468647261773a20636f6e74726163742062616c616e6365206d7573742060008201527f62652067726561746572207468616e2030000000000000000000000000000000602082015250565b6000613c1260318361308d565b9150613c1d82613bb6565b604082019050919050565b60006020820190508181036000830152613c4181613c05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c828261313d565b9150613c8d8361313d565b925082821015613ca057613c9f613c48565b5b828203905092915050565b6000613cb68261313d565b9150613cc18361313d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cfa57613cf9613c48565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d3f8261313d565b9150613d4a8361313d565b925082613d5a57613d59613d05565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f7570646174654465763a2073656e646572206973206e6f742064657600000000600082015250565b6000613dca601c8361308d565b9150613dd582613d94565b602082019050919050565b60006020820190508181036000830152613df981613dbd565b9050919050565b6000613e0b8261313d565b9150613e168361313d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4b57613e4a613c48565b5b828201905092915050565b7f6d696e743a20457863656564656420746865206c696d6974207065722077616c60008201527f6c65740000000000000000000000000000000000000000000000000000000000602082015250565b6000613eb260238361308d565b9150613ebd82613e56565b604082019050919050565b60006020820190508181036000830152613ee181613ea5565b9050919050565b7f6d696e743a204e6f7420656e6f75676820746f6b656e73206c65667400000000600082015250565b6000613f1e601c8361308d565b9150613f2982613ee8565b602082019050919050565b60006020820190508181036000830152613f4d81613f11565b9050919050565b7f6d696e743a204e6f7420656e6f7567682065746865722073656e740000000000600082015250565b6000613f8a601b8361308d565b9150613f9582613f54565b602082019050919050565b60006020820190508181036000830152613fb981613f7d565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613fed81613b1a565b613ff78186613fc0565b94506001821660008114614012576001811461402357614056565b60ff19831686528186019350614056565b61402c85613fcb565b60005b8381101561404e5781548189015260018201915060208101905061402f565b838801955050505b50505092915050565b600061406a82613082565b6140748185613fc0565b935061408481856020860161309e565b80840191505092915050565b600061409c8286613fe0565b91506140a8828561405f565b91506140b48284613fe0565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061411d60268361308d565b9150614128826140c1565b604082019050919050565b6000602082019050818103600083015261414c81614110565b9050919050565b7f61697244726f703a204e6f7420656e6f75676820746f6b656e7320746f20616960008201527f7264726f70000000000000000000000000000000000000000000000000000000602082015250565b60006141af60258361308d565b91506141ba82614153565b604082019050919050565b600060208201905081810360008301526141de816141a2565b9050919050565b60006141f08261313d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361422257614221613c48565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061426360208361308d565b915061426e8261422d565b602082019050919050565b6000602082019050818103600083015261429281614256565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006142cf60108361308d565b91506142da82614299565b602082019050919050565b600060208201905081810360008301526142fe816142c2565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061433b60148361308d565b915061434682614305565b602082019050919050565b6000602082019050818103600083015261436a8161432e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061439882614371565b6143a2818561437c565b93506143b281856020860161309e565b6143bb816130d1565b840191505092915050565b60006080820190506143db60008301876131d2565b6143e860208301866131d2565b6143f56040830185613268565b8181036060830152614407818461438d565b905095945050505050565b60008151905061442181612ff3565b92915050565b60006020828403121561443d5761443c612fbd565b5b600061444b84828501614412565b9150509291505056fea26469706673582212200f884e34de727f6202626103bed8d78a991f410931dbca657779095512a7bc8964736f6c634300080d0033

Deployed Bytecode Sourcemap

80102:3810:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38012:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38914:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45405:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44838:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34665:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82073:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83036:98;;;;;;;;;;;;;:::i;:::-;;80556:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80240:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83502:405;;;;;;;;;;;;;:::i;:::-;;82312:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80477:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82940:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83142:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75235:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15926:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40307:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80322:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35849:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18791:103;;;;;;;;;;;;;:::i;:::-;;80514:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79111:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18143:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82846:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80369:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83344:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39090:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76151:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80439:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80279:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80697:429;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45963:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82559:264;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74648:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81625:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80202:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46354:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83242:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19049:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81134:375;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38012:639;38097:4;38436:10;38421:25;;:11;:25;;;;:102;;;;38513:10;38498:25;;:11;:25;;;;38421:102;:179;;;;38590:10;38575:25;;:11;:25;;;;38421:179;38401:199;;38012:639;;;:::o;38914:100::-;38968:13;39001:5;38994:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38914:100;:::o;45405:218::-;45481:7;45506:16;45514:7;45506;:16::i;:::-;45501:64;;45531:34;;;;;;;;;;;;;;45501:64;45585:15;:24;45601:7;45585:24;;;;;;;;;;;:30;;;;;;;;;;;;45578:37;;45405:218;;;:::o;44838:408::-;44927:13;44943:16;44951:7;44943;:16::i;:::-;44927:32;;44999:5;44976:28;;:19;:17;:19::i;:::-;:28;;;44972:175;;45024:44;45041:5;45048:19;:17;:19::i;:::-;45024:16;:44::i;:::-;45019:128;;45096:35;;;;;;;;;;;;;;45019:128;44972:175;45192:2;45159:15;:24;45175:7;45159:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;45230:7;45226:2;45210:28;;45219:5;45210:28;;;;;;;;;;;;44916:330;44838:408;;:::o;34665:323::-;34726:7;34954:15;:13;:15::i;:::-;34939:12;;34923:13;;:28;:46;34916:53;;34665:323;:::o;82073:231::-;82237:4;3641:1;2455:42;3595:43;;;:47;3591:699;;;3882:10;3874:18;;:4;:18;;;3870:85;;82259:37:::1;82278:4;82284:2;82288:7;82259:18;:37::i;:::-;3933:7:::0;;3870:85;2455:42;4015:40;;;4064:4;4071:10;4015:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2455:42;4111:40;;;4160:4;4167;4111:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4015:157;3969:310;;4252:10;4233:30;;;;;;;;;;;:::i;:::-;;;;;;;;3969:310;3591:699;82259:37:::1;82278:4;82284:2;82288:7;82259:18;:37::i;:::-;82073:231:::0;;;;;:::o;83036:98::-;18029:13;:11;:13::i;:::-;83094:8:::1;:6;:8::i;:::-;:32;;83118:8;:6;:8::i;:::-;83094:32;;;83105:10;:8;:10::i;:::-;83094:32;83036:98::o:0;80556:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80240:32::-;;;;:::o;83502:405::-;18029:13;:11;:13::i;:::-;83584:1:::1;83560:21;:25;83552:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;83651:15;83669:21;83651:39;;83701:16;83750:3;83739:6;;83733:3;:12;;;;:::i;:::-;83722:7;:24;;;;:::i;:::-;83721:32;;;;:::i;:::-;83701:53;;83765:14;83806:3;83795:6;;83784:7;:18;;;;:::i;:::-;83783:26;;;;:::i;:::-;83765:45;;83829:10;83821:28;;:38;83850:8;83821:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;83878:3;;;;;;;;;;;83870:21;;:29;83892:6;83870:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;83541:366;;;83502:405::o:0;82312:239::-;82480:4;3641:1;2455:42;3595:43;;;:47;3591:699;;;3882:10;3874:18;;:4;:18;;;3870:85;;82502:41:::1;82525:4;82531:2;82535:7;82502:22;:41::i;:::-;3933:7:::0;;3870:85;2455:42;4015:40;;;4064:4;4071:10;4015:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2455:42;4111:40;;;4160:4;4167;4111:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4015:157;3969:310;;4252:10;4233:30;;;;;;;;;;;:::i;:::-;;;;;;;;3969:310;3591:699;82502:41:::1;82525:4;82531:2;82535:7;82502:22;:41::i;:::-;82312:239:::0;;;;;:::o;80477:30::-;;;;:::o;82940:88::-;18029:13;:11;:13::i;:::-;83016:4:::1;83004:9;:16;;;;82940:88:::0;:::o;83142:92::-;18029:13;:11;:13::i;:::-;83222:4:::1;83212:7;:14;;;;;;;;;;;;:::i;:::-;;83142:92:::0;:::o;75235:528::-;75379:23;75445:22;75470:8;;:15;;75445:40;;75500:34;75558:14;75537:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;75500:73;;75593:9;75588:125;75609:14;75604:1;:19;75588:125;;75665:32;75685:8;;75694:1;75685:11;;;;;;;:::i;:::-;;;;;;;;75665:19;:32::i;:::-;75649:10;75660:1;75649:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;75625:3;;;;;75588:125;;;;75734:10;75727:17;;;;75235:528;;;;:::o;15926:86::-;15973:4;15997:7;;;;;;;;;;;15990:14;;15926:86;:::o;40307:152::-;40379:7;40422:27;40441:7;40422:18;:27::i;:::-;40399:52;;40307:152;;;:::o;80322:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35849:233::-;35921:7;35962:1;35945:19;;:5;:19;;;35941:60;;35973:28;;;;;;;;;;;;;;35941:60;30008:13;36019:18;:25;36038:5;36019:25;;;;;;;;;;;;;;;;:55;36012:62;;35849:233;;;:::o;18791:103::-;18029:13;:11;:13::i;:::-;18856:30:::1;18883:1;18856:18;:30::i;:::-;18791:103::o:0;80514:33::-;;;;:::o;79111:900::-;79189:16;79243:19;79277:25;79317:22;79342:16;79352:5;79342:9;:16::i;:::-;79317:41;;79373:25;79415:14;79401:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79373:57;;79445:31;;:::i;:::-;79496:9;79508:15;:13;:15::i;:::-;79496:27;;79491:472;79540:14;79525:11;:29;79491:472;;79592:15;79605:1;79592:12;:15::i;:::-;79580:27;;79630:9;:16;;;79671:8;79626:73;79747:1;79721:28;;:9;:14;;;:28;;;79717:111;;79794:9;:14;;;79774:34;;79717:111;79871:5;79850:26;;:17;:26;;;79846:102;;79927:1;79901:8;79910:13;;;;;;79901:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;79846:102;79491:472;79556:3;;;;;79491:472;;;;79984:8;79977:15;;;;;;;79111:900;;;:::o;18143:87::-;18189:7;18216:6;;;;;;;;;;;18209:13;;18143:87;:::o;82846:86::-;18029:13;:11;:13::i;:::-;82918:6:::1;82910:5;:14;;;;82846:86:::0;:::o;80369:63::-;;;;;;;;;;;;;:::o;83344:150::-;83424:3;;;;;;;;;;;83410:17;;:10;:17;;;83402:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;83477:9;83471:3;;:15;;;;;;;;;;;;;;;;;;83344:150;:::o;39090:104::-;39146:13;39179:7;39172:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39090:104;:::o;76151:2513::-;76294:16;76361:4;76352:5;:13;76348:45;;76374:19;;;;;;;;;;;;;;76348:45;76408:19;76442:17;76462:14;:12;:14::i;:::-;76442:34;;76562:15;:13;:15::i;:::-;76554:5;:23;76550:87;;;76606:15;:13;:15::i;:::-;76598:23;;76550:87;76713:9;76706:4;:16;76702:73;;;76750:9;76743:16;;76702:73;76789:25;76817:16;76827:5;76817:9;:16::i;:::-;76789:44;;77011:4;77003:5;:12;76999:278;;;77036:19;77065:5;77058:4;:12;77036:34;;77107:17;77093:11;:31;77089:111;;;77169:11;77149:31;;77089:111;77017:198;76999:278;;;77260:1;77240:21;;76999:278;77291:25;77333:17;77319:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77291:60;;77391:1;77370:17;:22;77366:78;;77420:8;77413:15;;;;;;;;77366:78;77588:31;77622:26;77642:5;77622:19;:26::i;:::-;77588:60;;77663:25;77908:9;:16;;;77903:92;;77965:9;:14;;;77945:34;;77903:92;78014:9;78026:5;78014:17;;78009:478;78038:4;78033:1;:9;;:45;;;;;78061:17;78046:11;:32;;78033:45;78009:478;;;78116:15;78129:1;78116:12;:15::i;:::-;78104:27;;78154:9;:16;;;78195:8;78150:73;78271:1;78245:28;;:9;:14;;;:28;;;78241:111;;78318:9;:14;;;78298:34;;78241:111;78395:5;78374:26;;:17;:26;;;78370:102;;78451:1;78425:8;78434:13;;;;;;78425:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;78370:102;78009:478;78080:3;;;;;78009:478;;;;78589:11;78579:8;78572:29;78637:8;78630:15;;;;;;;;76151:2513;;;;;;:::o;80439:26::-;;;;:::o;80279:34::-;;;;:::o;80697:429::-;15531:19;:17;:19::i;:::-;80819:9:::1;;80790:25;80804:10;80790:13;:25::i;:::-;80779:8;:36;;;;:::i;:::-;:49;;80771:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;80915:10;;80903:8;80887:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;80879:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;80999:8;80991:5;;:16;;;;:::i;:::-;80977:9;:31;;80969:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;81068:8;81053:11;;:23;;;;;;;:::i;:::-;;;;;;;;81087:31;81097:10;81109:8;81087:9;:31::i;:::-;80697:429:::0;:::o;45963:234::-;46110:8;46058:18;:39;46077:19;:17;:19::i;:::-;46058:39;;;;;;;;;;;;;;;:49;46098:8;46058:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;46170:8;46134:55;;46149:19;:17;:19::i;:::-;46134:55;;;46180:8;46134:55;;;;;;:::i;:::-;;;;;;;;45963:234;;:::o;82559:264::-;82746:4;3641:1;2455:42;3595:43;;;:47;3591:699;;;3882:10;3874:18;;:4;:18;;;3870:85;;82768:47:::1;82791:4;82797:2;82801:7;82810:4;82768:22;:47::i;:::-;3933:7:::0;;3870:85;2455:42;4015:40;;;4064:4;4071:10;4015:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2455:42;4111:40;;;4160:4;4167;4111:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4015:157;3969:310;;4252:10;4233:30;;;;;;;;;;;:::i;:::-;;;;;;;;3969:310;3591:699;82768:47:::1;82791:4;82797:2;82801:7;82810:4;82768:22;:47::i;:::-;82559:264:::0;;;;;;:::o;74648:428::-;74732:21;;:::i;:::-;74766:31;;:::i;:::-;74822:15;:13;:15::i;:::-;74812:7;:25;:54;;;;74852:14;:12;:14::i;:::-;74841:7;:25;;74812:54;74808:103;;;74890:9;74883:16;;;;;74808:103;74933:21;74946:7;74933:12;:21::i;:::-;74921:33;;74969:9;:16;;;74965:65;;;75009:9;75002:16;;;;;74965:65;75047:21;75060:7;75047:12;:21::i;:::-;75040:28;;;74648:428;;;;:::o;81625:339::-;81749:13;81786:16;81794:7;81786;:16::i;:::-;81781:59;;81811:29;;;;;;;;;;;;;;81781:59;81883:1;81864:7;81858:21;;;;;:::i;:::-;;;:26;:98;;;;;;;;;;;;;;;;;81911:7;81920:18;81930:7;81920:9;:18::i;:::-;81940:9;81894:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81858:98;81851:105;;81625:339;;;:::o;80202:31::-;;;;:::o;46354:164::-;46451:4;46475:18;:25;46494:5;46475:25;;;;;;;;;;;;;;;:35;46501:8;46475:35;;;;;;;;;;;;;;;;;;;;;;;;;46468:42;;46354:164;;;;:::o;83242:94::-;18029:13;:11;:13::i;:::-;83324:4:::1;83311:10;:17;;;;83242:94:::0;:::o;19049:201::-;18029:13;:11;:13::i;:::-;19158:1:::1;19138:22;;:8;:22;;::::0;19130:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19214:28;19233:8;19214:18;:28::i;:::-;19049:201:::0;:::o;81134:375::-;18029:13;:11;:13::i;:::-;81225:11:::1;81239:5;;:12;;81225:26;;81306:10;;81298:3;81287:8;:14;;;;:::i;:::-;81270:13;:11;:13::i;:::-;:32;;;;:::i;:::-;:46;;81262:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;81398:3;81387:8;:14;;;;:::i;:::-;81369;;:32;;;;;;;:::i;:::-;;;;;;;;81417:9;81412:90;81436:3;81432:1;:7;81412:90;;;81461:29;81471:5;;81477:1;81471:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;81481;81461:9;:29::i;:::-;81441:3;;;;;:::i;:::-;;;;81412:90;;;;81214:295;81134:375:::0;;;:::o;46776:282::-;46841:4;46897:7;46878:15;:13;:15::i;:::-;:26;;:66;;;;;46931:13;;46921:7;:23;46878:66;:153;;;;;47030:1;30784:8;46982:17;:26;47000:7;46982:26;;;;;;;;;;;;:44;:49;46878:153;46858:173;;46776:282;;;:::o;69084:105::-;69144:7;69171:10;69164:17;;69084:105;:::o;81972:93::-;82029:7;82056:1;82049:8;;81972:93;:::o;49044:2825::-;49186:27;49216;49235:7;49216:18;:27::i;:::-;49186:57;;49301:4;49260:45;;49276:19;49260:45;;;49256:86;;49314:28;;;;;;;;;;;;;;49256:86;49356:27;49385:23;49412:35;49439:7;49412:26;:35::i;:::-;49355:92;;;;49547:68;49572:15;49589:4;49595:19;:17;:19::i;:::-;49547:24;:68::i;:::-;49542:180;;49635:43;49652:4;49658:19;:17;:19::i;:::-;49635:16;:43::i;:::-;49630:92;;49687:35;;;;;;;;;;;;;;49630:92;49542:180;49753:1;49739:16;;:2;:16;;;49735:52;;49764:23;;;;;;;;;;;;;;49735:52;49800:43;49822:4;49828:2;49832:7;49841:1;49800:21;:43::i;:::-;49936:15;49933:160;;;50076:1;50055:19;50048:30;49933:160;50473:18;:24;50492:4;50473:24;;;;;;;;;;;;;;;;50471:26;;;;;;;;;;;;50542:18;:22;50561:2;50542:22;;;;;;;;;;;;;;;;50540:24;;;;;;;;;;;50864:146;50901:2;50950:45;50965:4;50971:2;50975:19;50950:14;:45::i;:::-;31064:8;50922:73;50864:18;:146::i;:::-;50835:17;:26;50853:7;50835:26;;;;;;;;;;;:175;;;;51181:1;31064:8;51130:19;:47;:52;51126:627;;51203:19;51235:1;51225:7;:11;51203:33;;51392:1;51358:17;:30;51376:11;51358:30;;;;;;;;;;;;:35;51354:384;;51496:13;;51481:11;:28;51477:242;;51676:19;51643:17;:30;51661:11;51643:30;;;;;;;;;;;:52;;;;51477:242;51354:384;51184:569;51126:627;51800:7;51796:2;51781:27;;51790:4;51781:27;;;;;;;;;;;;51819:42;51840:4;51846:2;51850:7;51859:1;51819:20;:42::i;:::-;49175:2694;;;49044:2825;;;:::o;18308:132::-;18383:12;:10;:12::i;:::-;18372:23;;:7;:5;:7::i;:::-;:23;;;18364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18308:132::o;16522:118::-;15531:19;:17;:19::i;:::-;16592:4:::1;16582:7;;:14;;;;;;;;;;;;;;;;;;16612:20;16619:12;:10;:12::i;:::-;16612:20;;;;;;:::i;:::-;;;;;;;;16522:118::o:0;16781:120::-;15790:16;:14;:16::i;:::-;16850:5:::1;16840:7;;:15;;;;;;;;;;;;;;;;;;16871:22;16880:12;:10;:12::i;:::-;16871:22;;;;;;:::i;:::-;;;;;;;;16781:120::o:0;51965:193::-;52111:39;52128:4;52134:2;52138:7;52111:39;;;;;;;;;;;;:16;:39::i;:::-;51965:193;;;:::o;41462:1275::-;41529:7;41549:12;41564:7;41549:22;;41632:4;41613:15;:13;:15::i;:::-;:23;41609:1061;;41666:13;;41659:4;:20;41655:1015;;;41704:14;41721:17;:23;41739:4;41721:23;;;;;;;;;;;;41704:40;;41838:1;30784:8;41810:6;:24;:29;41806:845;;42475:113;42492:1;42482:6;:11;42475:113;;42535:17;:25;42553:6;;;;;;;42535:25;;;;;;;;;;;;42526:34;;42475:113;;;42621:6;42614:13;;;;;;41806:845;41681:989;41655:1015;41609:1061;42698:31;;;;;;;;;;;;;;41462:1275;;;;:::o;19410:191::-;19484:16;19503:6;;;;;;;;;;;19484:25;;19529:8;19520:6;;:17;;;;;;;;;;;;;;;;;;19584:8;19553:40;;19574:8;19553:40;;;;;;;;;;;;19473:128;19410:191;:::o;40910:161::-;40978:21;;:::i;:::-;41019:44;41038:17;:24;41056:5;41038:24;;;;;;;;;;;;41019:18;:44::i;:::-;41012:51;;40910:161;;;:::o;34352:103::-;34407:7;34434:13;;34427:20;;34352:103;:::o;16085:108::-;16156:8;:6;:8::i;:::-;16155:9;16147:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;16085:108::o;36164:178::-;36225:7;30008:13;30146:2;36253:18;:25;36272:5;36253:25;;;;;;;;;;;;;;;;:50;;36252:82;36245:89;;36164:178;;;:::o;62916:112::-;62993:27;63003:2;63007:8;62993:27;;;;;;;;;;;;:9;:27::i;:::-;62916:112;;:::o;52756:407::-;52931:31;52944:4;52950:2;52954:7;52931:12;:31::i;:::-;52995:1;52977:2;:14;;;:19;52973:183;;53016:56;53047:4;53053:2;53057:7;53066:5;53016:30;:56::i;:::-;53011:145;;53100:40;;;;;;;;;;;;;;53011:145;52973:183;52756:407;;;;:::o;40648:166::-;40718:21;;:::i;:::-;40759:47;40778:27;40797:7;40778:18;:27::i;:::-;40759:18;:47::i;:::-;40752:54;;40648:166;;;:::o;69291:1745::-;69356:17;69790:4;69783;69777:11;69773:22;69882:1;69876:4;69869:15;69957:4;69954:1;69950:12;69943:19;;70039:1;70034:3;70027:14;70143:3;70382:5;70364:428;70390:1;70364:428;;;70430:1;70425:3;70421:11;70414:18;;70601:2;70595:4;70591:13;70587:2;70583:22;70578:3;70570:36;70695:2;70689:4;70685:13;70677:21;;70762:4;70364:428;70752:25;70364:428;70368:21;70831:3;70826;70822:13;70946:4;70941:3;70937:14;70930:21;;71011:6;71006:3;70999:19;69395:1634;;;69291:1745;;;:::o;47939:485::-;48041:27;48070:23;48111:38;48152:15;:24;48168:7;48152:24;;;;;;;;;;;48111:65;;48329:18;48306:41;;48386:19;48380:26;48361:45;;48291:126;47939:485;;;:::o;47167:659::-;47316:11;47481:16;47474:5;47470:28;47461:37;;47641:16;47630:9;47626:32;47613:45;;47791:15;47780:9;47777:30;47769:5;47758:9;47755:20;47752:56;47742:66;;47167:659;;;;;:::o;53825:159::-;;;;;:::o;68393:311::-;68528:7;68548:16;31188:3;68574:19;:41;;68548:68;;31188:3;68642:31;68653:4;68659:2;68663:9;68642:10;:31::i;:::-;68634:40;;:62;;68627:69;;;68393:311;;;;;:::o;43285:450::-;43365:14;43533:16;43526:5;43522:28;43513:37;;43710:5;43696:11;43671:23;43667:41;43664:52;43657:5;43654:63;43644:73;;43285:450;;;;:::o;54649:158::-;;;;;:::o;14039:98::-;14092:7;14119:10;14112:17;;14039:98;:::o;16270:108::-;16337:8;:6;:8::i;:::-;16329:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;16270:108::o;42836:366::-;42902:31;;:::i;:::-;42979:6;42946:9;:14;;:41;;;;;;;;;;;30667:3;43032:6;:33;;42998:9;:24;;:68;;;;;;;;;;;43124:1;30784:8;43096:6;:24;:29;;43077:9;:16;;:48;;;;;;;;;;;31188:3;43165:6;:28;;43136:9;:19;;:58;;;;;;;;;;;42836:366;;;:::o;62143:689::-;62274:19;62280:2;62284:8;62274:5;:19::i;:::-;62353:1;62335:2;:14;;;:19;62331:483;;62375:11;62389:13;;62375:27;;62421:13;62443:8;62437:3;:14;62421:30;;62470:233;62501:62;62540:1;62544:2;62548:7;;;;;;62557:5;62501:30;:62::i;:::-;62496:167;;62599:40;;;;;;;;;;;;;;62496:167;62698:3;62690:5;:11;62470:233;;62785:3;62768:13;;:20;62764:34;;62790:8;;;62764:34;62356:458;;62331:483;62143:689;;;:::o;55247:716::-;55410:4;55456:2;55431:45;;;55477:19;:17;:19::i;:::-;55498:4;55504:7;55513:5;55431:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55427:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55731:1;55714:6;:13;:18;55710:235;;55760:40;;;;;;;;;;;;;;55710:235;55903:6;55897:13;55888:6;55884:2;55880:15;55873:38;55427:529;55600:54;;;55590:64;;;:6;:64;;;;55583:71;;;55247:716;;;;;;:::o;68094:147::-;68231:6;68094:147;;;;;:::o;56425:2966::-;56498:20;56521:13;;56498:36;;56561:1;56549:8;:13;56545:44;;56571:18;;;;;;;;;;;;;;56545:44;56602:61;56632:1;56636:2;56640:12;56654:8;56602:21;:61::i;:::-;57146:1;30146:2;57116:1;:26;;57115:32;57103:8;:45;57077:18;:22;57096:2;57077:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;57425:139;57462:2;57516:33;57539:1;57543:2;57547:1;57516:14;:33::i;:::-;57483:30;57504:8;57483:20;:30::i;:::-;:66;57425:18;:139::i;:::-;57391:17;:31;57409:12;57391:31;;;;;;;;;;;:173;;;;57581:16;57612:11;57641:8;57626:12;:23;57612:37;;58162:16;58158:2;58154:25;58142:37;;58534:12;58494:8;58453:1;58391:25;58332:1;58271;58244:335;58905:1;58891:12;58887:20;58845:346;58946:3;58937:7;58934:16;58845:346;;59164:7;59154:8;59151:1;59124:25;59121:1;59118;59113:59;58999:1;58990:7;58986:15;58975:26;;58845:346;;;58849:77;59236:1;59224:8;:13;59220:45;;59246:19;;;;;;;;;;;;;;59220:45;59298:3;59282:13;:19;;;;56851:2462;;59323:60;59352:1;59356:2;59360:12;59374:8;59323:20;:60::i;:::-;56487:2904;56425:2966;;:::o;43837:324::-;43907:14;44140:1;44130:8;44127:15;44101:24;44097:46;44087:56;;43837:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:117::-;8645:1;8642;8635:12;8659:117;8768:1;8765;8758:12;8799:568;8872:8;8882:6;8932:3;8925:4;8917:6;8913:17;8909:27;8899:122;;8940:79;;:::i;:::-;8899:122;9053:6;9040:20;9030:30;;9083:18;9075:6;9072:30;9069:117;;;9105:79;;:::i;:::-;9069:117;9219:4;9211:6;9207:17;9195:29;;9273:3;9265:4;9257:6;9253:17;9243:8;9239:32;9236:41;9233:128;;;9280:79;;:::i;:::-;9233:128;8799:568;;;;;:::o;9373:559::-;9459:6;9467;9516:2;9504:9;9495:7;9491:23;9487:32;9484:119;;;9522:79;;:::i;:::-;9484:119;9670:1;9659:9;9655:17;9642:31;9700:18;9692:6;9689:30;9686:117;;;9722:79;;:::i;:::-;9686:117;9835:80;9907:7;9898:6;9887:9;9883:22;9835:80;:::i;:::-;9817:98;;;;9613:312;9373:559;;;;;:::o;9938:146::-;10037:6;10071:5;10065:12;10055:22;;9938:146;;;:::o;10090:216::-;10221:11;10255:6;10250:3;10243:19;10295:4;10290:3;10286:14;10271:29;;10090:216;;;;:::o;10312:164::-;10411:4;10434:3;10426:11;;10464:4;10459:3;10455:14;10447:22;;10312:164;;;:::o;10482:108::-;10559:24;10577:5;10559:24;:::i;:::-;10554:3;10547:37;10482:108;;:::o;10596:101::-;10632:7;10672:18;10665:5;10661:30;10650:41;;10596:101;;;:::o;10703:105::-;10778:23;10795:5;10778:23;:::i;:::-;10773:3;10766:36;10703:105;;:::o;10814:99::-;10885:21;10900:5;10885:21;:::i;:::-;10880:3;10873:34;10814:99;;:::o;10919:91::-;10955:7;10995:8;10988:5;10984:20;10973:31;;10919:91;;;:::o;11016:105::-;11091:23;11108:5;11091:23;:::i;:::-;11086:3;11079:36;11016:105;;:::o;11199:866::-;11350:4;11345:3;11341:14;11437:4;11430:5;11426:16;11420:23;11456:63;11513:4;11508:3;11504:14;11490:12;11456:63;:::i;:::-;11365:164;11621:4;11614:5;11610:16;11604:23;11640:61;11695:4;11690:3;11686:14;11672:12;11640:61;:::i;:::-;11539:172;11795:4;11788:5;11784:16;11778:23;11814:57;11865:4;11860:3;11856:14;11842:12;11814:57;:::i;:::-;11721:160;11968:4;11961:5;11957:16;11951:23;11987:61;12042:4;12037:3;12033:14;12019:12;11987:61;:::i;:::-;11891:167;11319:746;11199:866;;:::o;12071:307::-;12204:10;12225:110;12331:3;12323:6;12225:110;:::i;:::-;12367:4;12362:3;12358:14;12344:28;;12071:307;;;;:::o;12384:145::-;12486:4;12518;12513:3;12509:14;12501:22;;12384:145;;;:::o;12611:988::-;12794:3;12823:86;12903:5;12823:86;:::i;:::-;12925:118;13036:6;13031:3;12925:118;:::i;:::-;12918:125;;13067:88;13149:5;13067:88;:::i;:::-;13178:7;13209:1;13194:380;13219:6;13216:1;13213:13;13194:380;;;13295:6;13289:13;13322:127;13445:3;13430:13;13322:127;:::i;:::-;13315:134;;13472:92;13557:6;13472:92;:::i;:::-;13462:102;;13254:320;13241:1;13238;13234:9;13229:14;;13194:380;;;13198:14;13590:3;13583:10;;12799:800;;;12611:988;;;;:::o;13605:501::-;13812:4;13850:2;13839:9;13835:18;13827:26;;13899:9;13893:4;13889:20;13885:1;13874:9;13870:17;13863:47;13927:172;14094:4;14085:6;13927:172;:::i;:::-;13919:180;;13605:501;;;;:::o;14112:329::-;14171:6;14220:2;14208:9;14199:7;14195:23;14191:32;14188:119;;;14226:79;;:::i;:::-;14188:119;14346:1;14371:53;14416:7;14407:6;14396:9;14392:22;14371:53;:::i;:::-;14361:63;;14317:117;14112:329;;;;:::o;14447:114::-;14514:6;14548:5;14542:12;14532:22;;14447:114;;;:::o;14567:184::-;14666:11;14700:6;14695:3;14688:19;14740:4;14735:3;14731:14;14716:29;;14567:184;;;;:::o;14757:132::-;14824:4;14847:3;14839:11;;14877:4;14872:3;14868:14;14860:22;;14757:132;;;:::o;14895:108::-;14972:24;14990:5;14972:24;:::i;:::-;14967:3;14960:37;14895:108;;:::o;15009:179::-;15078:10;15099:46;15141:3;15133:6;15099:46;:::i;:::-;15177:4;15172:3;15168:14;15154:28;;15009:179;;;;:::o;15194:113::-;15264:4;15296;15291:3;15287:14;15279:22;;15194:113;;;:::o;15343:732::-;15462:3;15491:54;15539:5;15491:54;:::i;:::-;15561:86;15640:6;15635:3;15561:86;:::i;:::-;15554:93;;15671:56;15721:5;15671:56;:::i;:::-;15750:7;15781:1;15766:284;15791:6;15788:1;15785:13;15766:284;;;15867:6;15861:13;15894:63;15953:3;15938:13;15894:63;:::i;:::-;15887:70;;15980:60;16033:6;15980:60;:::i;:::-;15970:70;;15826:224;15813:1;15810;15806:9;15801:14;;15766:284;;;15770:14;16066:3;16059:10;;15467:608;;;15343:732;;;;:::o;16081:373::-;16224:4;16262:2;16251:9;16247:18;16239:26;;16311:9;16305:4;16301:20;16297:1;16286:9;16282:17;16275:47;16339:108;16442:4;16433:6;16339:108;:::i;:::-;16331:116;;16081:373;;;;:::o;16460:619::-;16537:6;16545;16553;16602:2;16590:9;16581:7;16577:23;16573:32;16570:119;;;16608:79;;:::i;:::-;16570:119;16728:1;16753:53;16798:7;16789:6;16778:9;16774:22;16753:53;:::i;:::-;16743:63;;16699:117;16855:2;16881:53;16926:7;16917:6;16906:9;16902:22;16881:53;:::i;:::-;16871:63;;16826:118;16983:2;17009:53;17054:7;17045:6;17034:9;17030:22;17009:53;:::i;:::-;16999:63;;16954:118;16460:619;;;;;:::o;17085:116::-;17155:21;17170:5;17155:21;:::i;:::-;17148:5;17145:32;17135:60;;17191:1;17188;17181:12;17135:60;17085:116;:::o;17207:133::-;17250:5;17288:6;17275:20;17266:29;;17304:30;17328:5;17304:30;:::i;:::-;17207:133;;;;:::o;17346:468::-;17411:6;17419;17468:2;17456:9;17447:7;17443:23;17439:32;17436:119;;;17474:79;;:::i;:::-;17436:119;17594:1;17619:53;17664:7;17655:6;17644:9;17640:22;17619:53;:::i;:::-;17609:63;;17565:117;17721:2;17747:50;17789:7;17780:6;17769:9;17765:22;17747:50;:::i;:::-;17737:60;;17692:115;17346:468;;;;;:::o;17820:307::-;17881:4;17971:18;17963:6;17960:30;17957:56;;;17993:18;;:::i;:::-;17957:56;18031:29;18053:6;18031:29;:::i;:::-;18023:37;;18115:4;18109;18105:15;18097:23;;17820:307;;;:::o;18133:410::-;18210:5;18235:65;18251:48;18292:6;18251:48;:::i;:::-;18235:65;:::i;:::-;18226:74;;18323:6;18316:5;18309:21;18361:4;18354:5;18350:16;18399:3;18390:6;18385:3;18381:16;18378:25;18375:112;;;18406:79;;:::i;:::-;18375:112;18496:41;18530:6;18525:3;18520;18496:41;:::i;:::-;18216:327;18133:410;;;;;:::o;18562:338::-;18617:5;18666:3;18659:4;18651:6;18647:17;18643:27;18633:122;;18674:79;;:::i;:::-;18633:122;18791:6;18778:20;18816:78;18890:3;18882:6;18875:4;18867:6;18863:17;18816:78;:::i;:::-;18807:87;;18623:277;18562:338;;;;:::o;18906:943::-;19001:6;19009;19017;19025;19074:3;19062:9;19053:7;19049:23;19045:33;19042:120;;;19081:79;;:::i;:::-;19042:120;19201:1;19226:53;19271:7;19262:6;19251:9;19247:22;19226:53;:::i;:::-;19216:63;;19172:117;19328:2;19354:53;19399:7;19390:6;19379:9;19375:22;19354:53;:::i;:::-;19344:63;;19299:118;19456:2;19482:53;19527:7;19518:6;19507:9;19503:22;19482:53;:::i;:::-;19472:63;;19427:118;19612:2;19601:9;19597:18;19584:32;19643:18;19635:6;19632:30;19629:117;;;19665:79;;:::i;:::-;19629:117;19770:62;19824:7;19815:6;19804:9;19800:22;19770:62;:::i;:::-;19760:72;;19555:287;18906:943;;;;;;;:::o;19927:876::-;20088:4;20083:3;20079:14;20175:4;20168:5;20164:16;20158:23;20194:63;20251:4;20246:3;20242:14;20228:12;20194:63;:::i;:::-;20103:164;20359:4;20352:5;20348:16;20342:23;20378:61;20433:4;20428:3;20424:14;20410:12;20378:61;:::i;:::-;20277:172;20533:4;20526:5;20522:16;20516:23;20552:57;20603:4;20598:3;20594:14;20580:12;20552:57;:::i;:::-;20459:160;20706:4;20699:5;20695:16;20689:23;20725:61;20780:4;20775:3;20771:14;20757:12;20725:61;:::i;:::-;20629:167;20057:746;19927:876;;:::o;20809:351::-;20966:4;21004:3;20993:9;20989:19;20981:27;;21018:135;21150:1;21139:9;21135:17;21126:6;21018:135;:::i;:::-;20809:351;;;;:::o;21166:474::-;21234:6;21242;21291:2;21279:9;21270:7;21266:23;21262:32;21259:119;;;21297:79;;:::i;:::-;21259:119;21417:1;21442:53;21487:7;21478:6;21467:9;21463:22;21442:53;:::i;:::-;21432:63;;21388:117;21544:2;21570:53;21615:7;21606:6;21595:9;21591:22;21570:53;:::i;:::-;21560:63;;21515:118;21166:474;;;;;:::o;21663:568::-;21736:8;21746:6;21796:3;21789:4;21781:6;21777:17;21773:27;21763:122;;21804:79;;:::i;:::-;21763:122;21917:6;21904:20;21894:30;;21947:18;21939:6;21936:30;21933:117;;;21969:79;;:::i;:::-;21933:117;22083:4;22075:6;22071:17;22059:29;;22137:3;22129:4;22121:6;22117:17;22107:8;22103:32;22100:41;22097:128;;;22144:79;;:::i;:::-;22097:128;21663:568;;;;;:::o;22237:704::-;22332:6;22340;22348;22397:2;22385:9;22376:7;22372:23;22368:32;22365:119;;;22403:79;;:::i;:::-;22365:119;22551:1;22540:9;22536:17;22523:31;22581:18;22573:6;22570:30;22567:117;;;22603:79;;:::i;:::-;22567:117;22716:80;22788:7;22779:6;22768:9;22764:22;22716:80;:::i;:::-;22698:98;;;;22494:312;22845:2;22871:53;22916:7;22907:6;22896:9;22892:22;22871:53;:::i;:::-;22861:63;;22816:118;22237:704;;;;;:::o;22947:180::-;22995:77;22992:1;22985:88;23092:4;23089:1;23082:15;23116:4;23113:1;23106:15;23133:320;23177:6;23214:1;23208:4;23204:12;23194:22;;23261:1;23255:4;23251:12;23282:18;23272:81;;23338:4;23330:6;23326:17;23316:27;;23272:81;23400:2;23392:6;23389:14;23369:18;23366:38;23363:84;;23419:18;;:::i;:::-;23363:84;23184:269;23133:320;;;:::o;23459:332::-;23580:4;23618:2;23607:9;23603:18;23595:26;;23631:71;23699:1;23688:9;23684:17;23675:6;23631:71;:::i;:::-;23712:72;23780:2;23769:9;23765:18;23756:6;23712:72;:::i;:::-;23459:332;;;;;:::o;23797:137::-;23851:5;23882:6;23876:13;23867:22;;23898:30;23922:5;23898:30;:::i;:::-;23797:137;;;;:::o;23940:345::-;24007:6;24056:2;24044:9;24035:7;24031:23;24027:32;24024:119;;;24062:79;;:::i;:::-;24024:119;24182:1;24207:61;24260:7;24251:6;24240:9;24236:22;24207:61;:::i;:::-;24197:71;;24153:125;23940:345;;;;:::o;24291:236::-;24431:34;24427:1;24419:6;24415:14;24408:58;24500:19;24495:2;24487:6;24483:15;24476:44;24291:236;:::o;24533:366::-;24675:3;24696:67;24760:2;24755:3;24696:67;:::i;:::-;24689:74;;24772:93;24861:3;24772:93;:::i;:::-;24890:2;24885:3;24881:12;24874:19;;24533:366;;;:::o;24905:419::-;25071:4;25109:2;25098:9;25094:18;25086:26;;25158:9;25152:4;25148:20;25144:1;25133:9;25129:17;25122:47;25186:131;25312:4;25186:131;:::i;:::-;25178:139;;24905:419;;;:::o;25330:180::-;25378:77;25375:1;25368:88;25475:4;25472:1;25465:15;25499:4;25496:1;25489:15;25516:191;25556:4;25576:20;25594:1;25576:20;:::i;:::-;25571:25;;25610:20;25628:1;25610:20;:::i;:::-;25605:25;;25649:1;25646;25643:8;25640:34;;;25654:18;;:::i;:::-;25640:34;25699:1;25696;25692:9;25684:17;;25516:191;;;;:::o;25713:348::-;25753:7;25776:20;25794:1;25776:20;:::i;:::-;25771:25;;25810:20;25828:1;25810:20;:::i;:::-;25805:25;;25998:1;25930:66;25926:74;25923:1;25920:81;25915:1;25908:9;25901:17;25897:105;25894:131;;;26005:18;;:::i;:::-;25894:131;26053:1;26050;26046:9;26035:20;;25713:348;;;;:::o;26067:180::-;26115:77;26112:1;26105:88;26212:4;26209:1;26202:15;26236:4;26233:1;26226:15;26253:185;26293:1;26310:20;26328:1;26310:20;:::i;:::-;26305:25;;26344:20;26362:1;26344:20;:::i;:::-;26339:25;;26383:1;26373:35;;26388:18;;:::i;:::-;26373:35;26430:1;26427;26423:9;26418:14;;26253:185;;;;:::o;26444:180::-;26492:77;26489:1;26482:88;26589:4;26586:1;26579:15;26613:4;26610:1;26603:15;26630:178;26770:30;26766:1;26758:6;26754:14;26747:54;26630:178;:::o;26814:366::-;26956:3;26977:67;27041:2;27036:3;26977:67;:::i;:::-;26970:74;;27053:93;27142:3;27053:93;:::i;:::-;27171:2;27166:3;27162:12;27155:19;;26814:366;;;:::o;27186:419::-;27352:4;27390:2;27379:9;27375:18;27367:26;;27439:9;27433:4;27429:20;27425:1;27414:9;27410:17;27403:47;27467:131;27593:4;27467:131;:::i;:::-;27459:139;;27186:419;;;:::o;27611:305::-;27651:3;27670:20;27688:1;27670:20;:::i;:::-;27665:25;;27704:20;27722:1;27704:20;:::i;:::-;27699:25;;27858:1;27790:66;27786:74;27783:1;27780:81;27777:107;;;27864:18;;:::i;:::-;27777:107;27908:1;27905;27901:9;27894:16;;27611:305;;;;:::o;27922:222::-;28062:34;28058:1;28050:6;28046:14;28039:58;28131:5;28126:2;28118:6;28114:15;28107:30;27922:222;:::o;28150:366::-;28292:3;28313:67;28377:2;28372:3;28313:67;:::i;:::-;28306:74;;28389:93;28478:3;28389:93;:::i;:::-;28507:2;28502:3;28498:12;28491:19;;28150:366;;;:::o;28522:419::-;28688:4;28726:2;28715:9;28711:18;28703:26;;28775:9;28769:4;28765:20;28761:1;28750:9;28746:17;28739:47;28803:131;28929:4;28803:131;:::i;:::-;28795:139;;28522:419;;;:::o;28947:178::-;29087:30;29083:1;29075:6;29071:14;29064:54;28947:178;:::o;29131:366::-;29273:3;29294:67;29358:2;29353:3;29294:67;:::i;:::-;29287:74;;29370:93;29459:3;29370:93;:::i;:::-;29488:2;29483:3;29479:12;29472:19;;29131:366;;;:::o;29503:419::-;29669:4;29707:2;29696:9;29692:18;29684:26;;29756:9;29750:4;29746:20;29742:1;29731:9;29727:17;29720:47;29784:131;29910:4;29784:131;:::i;:::-;29776:139;;29503:419;;;:::o;29928:177::-;30068:29;30064:1;30056:6;30052:14;30045:53;29928:177;:::o;30111:366::-;30253:3;30274:67;30338:2;30333:3;30274:67;:::i;:::-;30267:74;;30350:93;30439:3;30350:93;:::i;:::-;30468:2;30463:3;30459:12;30452:19;;30111:366;;;:::o;30483:419::-;30649:4;30687:2;30676:9;30672:18;30664:26;;30736:9;30730:4;30726:20;30722:1;30711:9;30707:17;30700:47;30764:131;30890:4;30764:131;:::i;:::-;30756:139;;30483:419;;;:::o;30908:148::-;31010:11;31047:3;31032:18;;30908:148;;;;:::o;31062:141::-;31111:4;31134:3;31126:11;;31157:3;31154:1;31147:14;31191:4;31188:1;31178:18;31170:26;;31062:141;;;:::o;31233:845::-;31336:3;31373:5;31367:12;31402:36;31428:9;31402:36;:::i;:::-;31454:89;31536:6;31531:3;31454:89;:::i;:::-;31447:96;;31574:1;31563:9;31559:17;31590:1;31585:137;;;;31736:1;31731:341;;;;31552:520;;31585:137;31669:4;31665:9;31654;31650:25;31645:3;31638:38;31705:6;31700:3;31696:16;31689:23;;31585:137;;31731:341;31798:38;31830:5;31798:38;:::i;:::-;31858:1;31872:154;31886:6;31883:1;31880:13;31872:154;;;31960:7;31954:14;31950:1;31945:3;31941:11;31934:35;32010:1;32001:7;31997:15;31986:26;;31908:4;31905:1;31901:12;31896:17;;31872:154;;;32055:6;32050:3;32046:16;32039:23;;31738:334;;31552:520;;31340:738;;31233:845;;;;:::o;32084:377::-;32190:3;32218:39;32251:5;32218:39;:::i;:::-;32273:89;32355:6;32350:3;32273:89;:::i;:::-;32266:96;;32371:52;32416:6;32411:3;32404:4;32397:5;32393:16;32371:52;:::i;:::-;32448:6;32443:3;32439:16;32432:23;;32194:267;32084:377;;;;:::o;32467:583::-;32689:3;32711:92;32799:3;32790:6;32711:92;:::i;:::-;32704:99;;32820:95;32911:3;32902:6;32820:95;:::i;:::-;32813:102;;32932:92;33020:3;33011:6;32932:92;:::i;:::-;32925:99;;33041:3;33034:10;;32467:583;;;;;;:::o;33056:225::-;33196:34;33192:1;33184:6;33180:14;33173:58;33265:8;33260:2;33252:6;33248:15;33241:33;33056:225;:::o;33287:366::-;33429:3;33450:67;33514:2;33509:3;33450:67;:::i;:::-;33443:74;;33526:93;33615:3;33526:93;:::i;:::-;33644:2;33639:3;33635:12;33628:19;;33287:366;;;:::o;33659:419::-;33825:4;33863:2;33852:9;33848:18;33840:26;;33912:9;33906:4;33902:20;33898:1;33887:9;33883:17;33876:47;33940:131;34066:4;33940:131;:::i;:::-;33932:139;;33659:419;;;:::o;34084:224::-;34224:34;34220:1;34212:6;34208:14;34201:58;34293:7;34288:2;34280:6;34276:15;34269:32;34084:224;:::o;34314:366::-;34456:3;34477:67;34541:2;34536:3;34477:67;:::i;:::-;34470:74;;34553:93;34642:3;34553:93;:::i;:::-;34671:2;34666:3;34662:12;34655:19;;34314:366;;;:::o;34686:419::-;34852:4;34890:2;34879:9;34875:18;34867:26;;34939:9;34933:4;34929:20;34925:1;34914:9;34910:17;34903:47;34967:131;35093:4;34967:131;:::i;:::-;34959:139;;34686:419;;;:::o;35111:233::-;35150:3;35173:24;35191:5;35173:24;:::i;:::-;35164:33;;35219:66;35212:5;35209:77;35206:103;;35289:18;;:::i;:::-;35206:103;35336:1;35329:5;35325:13;35318:20;;35111:233;;;:::o;35350:182::-;35490:34;35486:1;35478:6;35474:14;35467:58;35350:182;:::o;35538:366::-;35680:3;35701:67;35765:2;35760:3;35701:67;:::i;:::-;35694:74;;35777:93;35866:3;35777:93;:::i;:::-;35895:2;35890:3;35886:12;35879:19;;35538:366;;;:::o;35910:419::-;36076:4;36114:2;36103:9;36099:18;36091:26;;36163:9;36157:4;36153:20;36149:1;36138:9;36134:17;36127:47;36191:131;36317:4;36191:131;:::i;:::-;36183:139;;35910:419;;;:::o;36335:166::-;36475:18;36471:1;36463:6;36459:14;36452:42;36335:166;:::o;36507:366::-;36649:3;36670:67;36734:2;36729:3;36670:67;:::i;:::-;36663:74;;36746:93;36835:3;36746:93;:::i;:::-;36864:2;36859:3;36855:12;36848:19;;36507:366;;;:::o;36879:419::-;37045:4;37083:2;37072:9;37068:18;37060:26;;37132:9;37126:4;37122:20;37118:1;37107:9;37103:17;37096:47;37160:131;37286:4;37160:131;:::i;:::-;37152:139;;36879:419;;;:::o;37304:170::-;37444:22;37440:1;37432:6;37428:14;37421:46;37304:170;:::o;37480:366::-;37622:3;37643:67;37707:2;37702:3;37643:67;:::i;:::-;37636:74;;37719:93;37808:3;37719:93;:::i;:::-;37837:2;37832:3;37828:12;37821:19;;37480:366;;;:::o;37852:419::-;38018:4;38056:2;38045:9;38041:18;38033:26;;38105:9;38099:4;38095:20;38091:1;38080:9;38076:17;38069:47;38133:131;38259:4;38133:131;:::i;:::-;38125:139;;37852:419;;;:::o;38277:98::-;38328:6;38362:5;38356:12;38346:22;;38277:98;;;:::o;38381:168::-;38464:11;38498:6;38493:3;38486:19;38538:4;38533:3;38529:14;38514:29;;38381:168;;;;:::o;38555:360::-;38641:3;38669:38;38701:5;38669:38;:::i;:::-;38723:70;38786:6;38781:3;38723:70;:::i;:::-;38716:77;;38802:52;38847:6;38842:3;38835:4;38828:5;38824:16;38802:52;:::i;:::-;38879:29;38901:6;38879:29;:::i;:::-;38874:3;38870:39;38863:46;;38645:270;38555:360;;;;:::o;38921:640::-;39116:4;39154:3;39143:9;39139:19;39131:27;;39168:71;39236:1;39225:9;39221:17;39212:6;39168:71;:::i;:::-;39249:72;39317:2;39306:9;39302:18;39293:6;39249:72;:::i;:::-;39331;39399:2;39388:9;39384:18;39375:6;39331:72;:::i;:::-;39450:9;39444:4;39440:20;39435:2;39424:9;39420:18;39413:48;39478:76;39549:4;39540:6;39478:76;:::i;:::-;39470:84;;38921:640;;;;;;;:::o;39567:141::-;39623:5;39654:6;39648:13;39639:22;;39670:32;39696:5;39670:32;:::i;:::-;39567:141;;;;:::o;39714:349::-;39783:6;39832:2;39820:9;39811:7;39807:23;39803:32;39800:119;;;39838:79;;:::i;:::-;39800:119;39958:1;39983:63;40038:7;40029:6;40018:9;40014:22;39983:63;:::i;:::-;39973:73;;39929:127;39714:349;;;;:::o

Swarm Source

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