ETH Price: $2,672.85 (+0.71%)
Gas: 6 Gwei

Token

The Dog Experiment Official (TDE)
 

Overview

Max Total Supply

290 TDE

Holders

76

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 TDE
0x5982ab91bf915654f1847050fdad85eb6260751d
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:
TheDogExperimentOfficial

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-31
*/

// SPDX-License-Identifier: MIT


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





/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        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(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).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 (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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

// 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: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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);
    }
}

pragma solidity ^0.8.15;

contract TheDogExperimentOfficial is ERC721A, DefaultOperatorFilterer, Ownable {

    bool public toggleForMint;
    bool public toggleForPreReveal;
    string public baseURI; 
    string public preRevealURI;

    uint256 public maxSupply = 3000;
    uint256 public totalFree = 1000;
    uint256 public mintMax = 100;

    uint256 public maxFreePerWallet = 2;
    uint256 public price = 0.003 ether;

    mapping (address => uint256) public walletPublic;
    mapping(address => uint256) private _mintedFreeAmount;

    constructor () ERC721A("The Dog Experiment Official", "TDE") {
        _safeMint(msg.sender, 10);
        toggleForMint = false;
        toggleForPreReveal = false;
        setPreRevealURI("ipfs://bafkreie2gjdzt2jpfypq7wrhghidbypy2guyg6s3xr32pmhxyctpgebsmy");
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

        if (isFree) {
            cost = 0;
        }

        require(toggleForMint , "Sale not active");
        require(msg.value >= count * cost, "Please send the exact amount.");
        require(count <= mintMax, "You cannot mint more than wallet limit");
        require(totalSupply() + count <= maxSupply,"Max Supply is Reached");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        walletPublic[msg.sender] += count;
        _safeMint(msg.sender, count);
    }


    function toggleMint() public onlyOwner {
        toggleForMint = !toggleForMint;
    }

    function toggleReveal() public onlyOwner {
        toggleForPreReveal = !toggleForPreReveal;
    }

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

    function withdrawFunds() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
        
	}

    function setPreRevealURI(string memory preRevealURI_) public onlyOwner {
        preRevealURI = preRevealURI_;
    }

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setMax(uint256 amount) external onlyOwner {
        mintMax = amount;
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {

        if (toggleForPreReveal == false) {
            return preRevealURI;
        }

        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, _toString(tokenId), ""));
    }


    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

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

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

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

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":"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintMax","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":"preRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"preRevealURI_","type":"string"}],"name":"setPreRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":"toggleForMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleForPreReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","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":[],"name":"totalFree","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":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610bb8600b556103e8600c556064600d556002600e55660aa87bee538000600f553480156200003257600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601b81526020017f54686520446f67204578706572696d656e74204f6666696369616c00000000008152506040518060400160405280600381526020017f54444500000000000000000000000000000000000000000000000000000000008152508160029081620000c7919062000c56565b508060039081620000d9919062000c56565b50620000ea6200038260201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002e7578015620001ad576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200017392919062000d82565b600060405180830381600087803b1580156200018e57600080fd5b505af1158015620001a3573d6000803e3d6000fd5b50505050620002e6565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000267576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200022d92919062000d82565b600060405180830381600087803b1580156200024857600080fd5b505af11580156200025d573d6000803e3d6000fd5b50505050620002e5565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002b0919062000daf565b600060405180830381600087803b158015620002cb57600080fd5b505af1158015620002e0573d6000803e3d6000fd5b505050505b5b5b505062000309620002fd6200038760201b60201c565b6200038f60201b60201c565b6200031c33600a6200045560201b60201c565b6000600860146101000a81548160ff0219169083151502179055506000600860156101000a81548160ff0219169083151502179055506200037c60405180608001604052806042815260200162004757604291396200047b60201b60201c565b62000fec565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000477828260405180602001604052806000815250620004a060201b60201c565b5050565b6200048b6200055160201b60201c565b80600a90816200049c919062000c56565b5050565b620004b28383620005e260201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200054c57600080549050600083820390505b620004fb6000868380600101945086620007c960201b60201c565b62000532576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620004e05781600054146200054957600080fd5b50505b505050565b620005616200038760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005876200092a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d79062000e2d565b60405180910390fd5b565b6000805490506000820362000623576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200063860008483856200095460201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620006c783620006a960008660006200095a60201b60201c565b620006ba856200098a60201b60201c565b176200099a60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200076a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506200072d565b5060008203620007a6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620007c46000848385620009c560201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007f7620009cb60201b60201c565b8786866040518563ffffffff1660e01b81526004016200081b949392919062000f04565b6020604051808303816000875af19250505080156200085a57506040513d601f19601f8201168201806040525081019062000857919062000fba565b60015b620008d7573d80600081146200088d576040519150601f19603f3d011682016040523d82523d6000602084013e62000892565b606091505b506000815103620008cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b60008060e883901c905060e862000979868684620009d360201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a5e57607f821691505b60208210810362000a745762000a7362000a16565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ade7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a9f565b62000aea868362000a9f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b3762000b3162000b2b8462000b02565b62000b0c565b62000b02565b9050919050565b6000819050919050565b62000b538362000b16565b62000b6b62000b628262000b3e565b84845462000aac565b825550505050565b600090565b62000b8262000b73565b62000b8f81848462000b48565b505050565b5b8181101562000bb75762000bab60008262000b78565b60018101905062000b95565b5050565b601f82111562000c065762000bd08162000a7a565b62000bdb8462000a8f565b8101602085101562000beb578190505b62000c0362000bfa8562000a8f565b83018262000b94565b50505b505050565b600082821c905092915050565b600062000c2b6000198460080262000c0b565b1980831691505092915050565b600062000c46838362000c18565b9150826002028217905092915050565b62000c6182620009dc565b67ffffffffffffffff81111562000c7d5762000c7c620009e7565b5b62000c89825462000a45565b62000c9682828562000bbb565b600060209050601f83116001811462000cce576000841562000cb9578287015190505b62000cc5858262000c38565b86555062000d35565b601f19841662000cde8662000a7a565b60005b8281101562000d085784890151825560018201915060208501945060208101905062000ce1565b8683101562000d28578489015162000d24601f89168262000c18565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d6a8262000d3d565b9050919050565b62000d7c8162000d5d565b82525050565b600060408201905062000d99600083018562000d71565b62000da8602083018462000d71565b9392505050565b600060208201905062000dc6600083018462000d71565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e1560208362000dcc565b915062000e228262000ddd565b602082019050919050565b6000602082019050818103600083015262000e488162000e06565b9050919050565b62000e5a8162000b02565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000e9c57808201518184015260208101905062000e7f565b8381111562000eac576000848401525b50505050565b6000601f19601f8301169050919050565b600062000ed08262000e60565b62000edc818562000e6b565b935062000eee81856020860162000e7c565b62000ef98162000eb2565b840191505092915050565b600060808201905062000f1b600083018762000d71565b62000f2a602083018662000d71565b62000f39604083018562000e4f565b818103606083015262000f4d818462000ec3565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000f948162000f5d565b811462000fa057600080fd5b50565b60008151905062000fb48162000f89565b92915050565b60006020828403121562000fd35762000fd262000f58565b5b600062000fe38482850162000fa3565b91505092915050565b61375b8062000ffc6000396000f3fe60806040526004361061021a5760003560e01c80636352211e11610123578063a035b1fe116100ab578063c87b56dd1161006f578063c87b56dd14610746578063d3dd5fe014610783578063d5abeb011461079a578063e985e9c5146107c5578063f2fde38b146108025761021a565b8063a035b1fe1461068f578063a0712d68146106ba578063a22cb465146106d6578063a7027357146106ff578063b88d4fde1461072a5761021a565b806379b6ed36116100f257806379b6ed36146105bc5780638da5cb5b146105e757806391b7f5ed1461061257806392910eec1461063b57806395d89b41146106645761021a565b80636352211e146105005780636c0360eb1461053d57806370a0823114610568578063715018a6146105a55761021a565b80632be905ba116101a657806341f434341161017557806341f434341461044e57806342842e0e146104795780634d1555611461049557806355f804b3146104c05780635b8ad429146104e95761021a565b80632be905ba14610390578063300e85bf146103cd578063333e44e6146103f8578063344194b3146104235761021a565b806318160ddd116101ed57806318160ddd146102e05780631fe9eabc1461030b57806323b872dd1461033457806324600fc3146103505780632a85db55146103675761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906126ef565b61082b565b6040516102539190612737565b60405180910390f35b34801561026857600080fd5b506102716108bd565b60405161027e91906127eb565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612843565b61094f565b6040516102bb91906128b1565b60405180910390f35b6102de60048036038101906102d991906128f8565b6109ce565b005b3480156102ec57600080fd5b506102f5610ad8565b6040516103029190612947565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612843565b610aef565b005b61034e60048036038101906103499190612962565b610b01565b005b34801561035c57600080fd5b50610365610c51565b005b34801561037357600080fd5b5061038e60048036038101906103899190612aea565b610ca2565b005b34801561039c57600080fd5b506103b760048036038101906103b29190612b33565b610cbd565b6040516103c49190612947565b60405180910390f35b3480156103d957600080fd5b506103e2610cd5565b6040516103ef9190612737565b60405180910390f35b34801561040457600080fd5b5061040d610ce8565b60405161041a9190612947565b60405180910390f35b34801561042f57600080fd5b50610438610cee565b6040516104459190612737565b60405180910390f35b34801561045a57600080fd5b50610463610d01565b6040516104709190612bbf565b60405180910390f35b610493600480360381019061048e9190612962565b610d13565b005b3480156104a157600080fd5b506104aa610e63565b6040516104b79190612947565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612aea565b610e69565b005b3480156104f557600080fd5b506104fe610e84565b005b34801561050c57600080fd5b5061052760048036038101906105229190612843565b610eb8565b60405161053491906128b1565b60405180910390f35b34801561054957600080fd5b50610552610eca565b60405161055f91906127eb565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612b33565b610f58565b60405161059c9190612947565b60405180910390f35b3480156105b157600080fd5b506105ba611010565b005b3480156105c857600080fd5b506105d1611024565b6040516105de91906127eb565b60405180910390f35b3480156105f357600080fd5b506105fc6110b2565b60405161060991906128b1565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190612843565b6110dc565b005b34801561064757600080fd5b50610662600480360381019061065d9190612843565b6110ee565b005b34801561067057600080fd5b50610679611100565b60405161068691906127eb565b60405180910390f35b34801561069b57600080fd5b506106a4611192565b6040516106b19190612947565b60405180910390f35b6106d460048036038101906106cf9190612843565b611198565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190612c06565b611424565b005b34801561070b57600080fd5b5061071461152e565b6040516107219190612947565b60405180910390f35b610744600480360381019061073f9190612ce7565b611534565b005b34801561075257600080fd5b5061076d60048036038101906107689190612843565b611687565b60405161077a91906127eb565b60405180910390f35b34801561078f57600080fd5b506107986117b1565b005b3480156107a657600080fd5b506107af6117e5565b6040516107bc9190612947565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612d6a565b6117eb565b6040516107f99190612737565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612b33565b61187f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108cc90612dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546108f890612dd9565b80156109455780601f1061091a57610100808354040283529160200191610945565b820191906000526020600020905b81548152906001019060200180831161092857829003601f168201915b5050505050905090565b600061095a82611902565b610990576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ac9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610a46929190612e0a565b602060405180830381865afa158015610a63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a879190612e48565b610ac857806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610abf91906128b1565b60405180910390fd5b5b610ad38383611961565b505050565b6000610ae2611aa5565b6001546000540303905090565b610af7611aaa565b80600d8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c3f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b7357610b6e848484611b28565b610c4b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bbc929190612e0a565b602060405180830381865afa158015610bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bfd9190612e48565b610c3e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c3591906128b1565b60405180910390fd5b5b610c4a848484611b28565b5b50505050565b610c59611aaa565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c9f573d6000803e3d6000fd5b50565b610caa611aaa565b80600a9081610cb99190613017565b5050565b60106020528060005260406000206000915090505481565b600860149054906101000a900460ff1681565b600c5481565b600860159054906101000a900460ff1681565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e51573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d8557610d80848484611e4a565b610e5d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dce929190612e0a565b602060405180830381865afa158015610deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0f9190612e48565b610e5057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e4791906128b1565b60405180910390fd5b5b610e5c848484611e4a565b5b50505050565b600d5481565b610e71611aaa565b8060099081610e809190613017565b5050565b610e8c611aaa565b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b6000610ec382611e6a565b9050919050565b60098054610ed790612dd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0390612dd9565b8015610f505780601f10610f2557610100808354040283529160200191610f50565b820191906000526020600020905b815481529060010190602001808311610f3357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fbf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611018611aaa565b6110226000611f36565b565b600a805461103190612dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461105d90612dd9565b80156110aa5780601f1061107f576101008083540402835291602001916110aa565b820191906000526020600020905b81548152906001019060200180831161108d57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110e4611aaa565b80600f8190555050565b6110f6611aaa565b80600c8190555050565b60606003805461110f90612dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461113b90612dd9565b80156111885780601f1061115d57610100808354040283529160200191611188565b820191906000526020600020905b81548152906001019060200180831161116b57829003601f168201915b5050505050905090565b600f5481565b6000600f54905060006001600c546111b09190613118565b836111b9610ad8565b6111c39190613118565b10801561121c5750600e5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112199190613118565b11155b9050801561122957600091505b600860149054906101000a900460ff16611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f906131ba565b60405180910390fd5b818361128491906131da565b3410156112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90613280565b60405180910390fd5b600d5483111561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613312565b60405180910390fd5b600b5483611317610ad8565b6113219190613118565b1115611362576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113599061337e565b60405180910390fd5b80156113bf5782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113b79190613118565b925050819055505b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461140e9190613118565b9250508190555061141f3384611ffc565b505050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561151f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161149c929190612e0a565b602060405180830381865afa1580156114b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114dd9190612e48565b61151e57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161151591906128b1565b60405180910390fd5b5b611529838361201a565b505050565b600e5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611673573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115a7576115a285858585612125565b611680565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016115f0929190612e0a565b602060405180830381865afa15801561160d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116319190612e48565b61167257336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161166991906128b1565b60405180910390fd5b5b61167f85858585612125565b5b5050505050565b606060001515600860159054906101000a900460ff1615150361173657600a80546116b190612dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546116dd90612dd9565b801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b505050505090506117ac565b61173f82611902565b61177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590613410565b60405180910390fd5b600961178983612198565b60405160200161179a929190613515565b60405160208183030381529060405290505b919050565b6117b9611aaa565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611887611aaa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed906135b6565b60405180910390fd5b6118ff81611f36565b50565b60008161190d611aa5565b1115801561191c575060005482105b801561195a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061196c82610eb8565b90508073ffffffffffffffffffffffffffffffffffffffff1661198d6121e8565b73ffffffffffffffffffffffffffffffffffffffff16146119f0576119b9816119b46121e8565b6117eb565b6119ef576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611ab26121f0565b73ffffffffffffffffffffffffffffffffffffffff16611ad06110b2565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613622565b60405180910390fd5b565b6000611b3382611e6a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b9a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611ba6846121f8565b91509150611bbc8187611bb76121e8565b61221f565b611c0857611bd186611bcc6121e8565b6117eb565b611c07576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c6e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c7b8686866001612263565b8015611c8657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611d5485611d30888887612269565b7c020000000000000000000000000000000000000000000000000000000017612291565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611dda5760006001850190506000600460008381526020019081526020016000205403611dd8576000548114611dd7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e4286868660016122bc565b505050505050565b611e6583838360405180602001604052806000815250611534565b505050565b60008082905080611e79611aa5565b11611eff57600054811015611efe5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611efc575b60008103611ef2576004600083600190039350838152602001908152602001600020549050611ec8565b8092505050611f31565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120168282604051806020016040528060008152506122c2565b5050565b80600760006120276121e8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120d46121e8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121199190612737565b60405180910390a35050565b612130848484610b01565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121925761215b8484848461235f565b612191576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b6001156121d357600184039350600a81066030018453600a81049050806121b1575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86122808686846124af565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6122cc83836124b8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461235a57600080549050600083820390505b61230c600086838060010194508661235f565b612342576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122f957816000541461235757600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123856121e8565b8786866040518563ffffffff1660e01b81526004016123a79493929190613697565b6020604051808303816000875af19250505080156123e357506040513d601f19601f820116820180604052508101906123e091906136f8565b60015b61245c573d8060008114612413576040519150601f19603f3d011682016040523d82523d6000602084013e612418565b606091505b506000815103612454576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036124f8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125056000848385612263565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061257c8361256d6000866000612269565b61257685612673565b17612291565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461261d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125e2565b5060008203612658576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061266e60008483856122bc565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126cc81612697565b81146126d757600080fd5b50565b6000813590506126e9816126c3565b92915050565b6000602082840312156127055761270461268d565b5b6000612713848285016126da565b91505092915050565b60008115159050919050565b6127318161271c565b82525050565b600060208201905061274c6000830184612728565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561278c578082015181840152602081019050612771565b8381111561279b576000848401525b50505050565b6000601f19601f8301169050919050565b60006127bd82612752565b6127c7818561275d565b93506127d781856020860161276e565b6127e0816127a1565b840191505092915050565b6000602082019050818103600083015261280581846127b2565b905092915050565b6000819050919050565b6128208161280d565b811461282b57600080fd5b50565b60008135905061283d81612817565b92915050565b6000602082840312156128595761285861268d565b5b60006128678482850161282e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061289b82612870565b9050919050565b6128ab81612890565b82525050565b60006020820190506128c660008301846128a2565b92915050565b6128d581612890565b81146128e057600080fd5b50565b6000813590506128f2816128cc565b92915050565b6000806040838503121561290f5761290e61268d565b5b600061291d858286016128e3565b925050602061292e8582860161282e565b9150509250929050565b6129418161280d565b82525050565b600060208201905061295c6000830184612938565b92915050565b60008060006060848603121561297b5761297a61268d565b5b6000612989868287016128e3565b935050602061299a868287016128e3565b92505060406129ab8682870161282e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129f7826127a1565b810181811067ffffffffffffffff82111715612a1657612a156129bf565b5b80604052505050565b6000612a29612683565b9050612a3582826129ee565b919050565b600067ffffffffffffffff821115612a5557612a546129bf565b5b612a5e826127a1565b9050602081019050919050565b82818337600083830152505050565b6000612a8d612a8884612a3a565b612a1f565b905082815260208101848484011115612aa957612aa86129ba565b5b612ab4848285612a6b565b509392505050565b600082601f830112612ad157612ad06129b5565b5b8135612ae1848260208601612a7a565b91505092915050565b600060208284031215612b0057612aff61268d565b5b600082013567ffffffffffffffff811115612b1e57612b1d612692565b5b612b2a84828501612abc565b91505092915050565b600060208284031215612b4957612b4861268d565b5b6000612b57848285016128e3565b91505092915050565b6000819050919050565b6000612b85612b80612b7b84612870565b612b60565b612870565b9050919050565b6000612b9782612b6a565b9050919050565b6000612ba982612b8c565b9050919050565b612bb981612b9e565b82525050565b6000602082019050612bd46000830184612bb0565b92915050565b612be38161271c565b8114612bee57600080fd5b50565b600081359050612c0081612bda565b92915050565b60008060408385031215612c1d57612c1c61268d565b5b6000612c2b858286016128e3565b9250506020612c3c85828601612bf1565b9150509250929050565b600067ffffffffffffffff821115612c6157612c606129bf565b5b612c6a826127a1565b9050602081019050919050565b6000612c8a612c8584612c46565b612a1f565b905082815260208101848484011115612ca657612ca56129ba565b5b612cb1848285612a6b565b509392505050565b600082601f830112612cce57612ccd6129b5565b5b8135612cde848260208601612c77565b91505092915050565b60008060008060808587031215612d0157612d0061268d565b5b6000612d0f878288016128e3565b9450506020612d20878288016128e3565b9350506040612d318782880161282e565b925050606085013567ffffffffffffffff811115612d5257612d51612692565b5b612d5e87828801612cb9565b91505092959194509250565b60008060408385031215612d8157612d8061268d565b5b6000612d8f858286016128e3565b9250506020612da0858286016128e3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612df157607f821691505b602082108103612e0457612e03612daa565b5b50919050565b6000604082019050612e1f60008301856128a2565b612e2c60208301846128a2565b9392505050565b600081519050612e4281612bda565b92915050565b600060208284031215612e5e57612e5d61268d565b5b6000612e6c84828501612e33565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ed77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e9a565b612ee18683612e9a565b95508019841693508086168417925050509392505050565b6000612f14612f0f612f0a8461280d565b612b60565b61280d565b9050919050565b6000819050919050565b612f2e83612ef9565b612f42612f3a82612f1b565b848454612ea7565b825550505050565b600090565b612f57612f4a565b612f62818484612f25565b505050565b5b81811015612f8657612f7b600082612f4f565b600181019050612f68565b5050565b601f821115612fcb57612f9c81612e75565b612fa584612e8a565b81016020851015612fb4578190505b612fc8612fc085612e8a565b830182612f67565b50505b505050565b600082821c905092915050565b6000612fee60001984600802612fd0565b1980831691505092915050565b60006130078383612fdd565b9150826002028217905092915050565b61302082612752565b67ffffffffffffffff811115613039576130386129bf565b5b6130438254612dd9565b61304e828285612f8a565b600060209050601f831160018114613081576000841561306f578287015190505b6130798582612ffb565b8655506130e1565b601f19841661308f86612e75565b60005b828110156130b757848901518255600182019150602085019450602081019050613092565b868310156130d457848901516130d0601f891682612fdd565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131238261280d565b915061312e8361280d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613163576131626130e9565b5b828201905092915050565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b60006131a4600f8361275d565b91506131af8261316e565b602082019050919050565b600060208201905081810360008301526131d381613197565b9050919050565b60006131e58261280d565b91506131f08361280d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613229576132286130e9565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061326a601d8361275d565b915061327582613234565b602082019050919050565b600060208201905081810360008301526132998161325d565b9050919050565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e2077616c6c657460008201527f206c696d69740000000000000000000000000000000000000000000000000000602082015250565b60006132fc60268361275d565b9150613307826132a0565b604082019050919050565b6000602082019050818103600083015261332b816132ef565b9050919050565b7f4d617820537570706c7920697320526561636865640000000000000000000000600082015250565b600061336860158361275d565b915061337382613332565b602082019050919050565b600060208201905081810360008301526133978161335b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133fa602f8361275d565b91506134058261339e565b604082019050919050565b60006020820190508181036000830152613429816133ed565b9050919050565b600081905092915050565b6000815461344881612dd9565b6134528186613430565b9450600182166000811461346d5760018114613482576134b5565b60ff19831686528115158202860193506134b5565b61348b85612e75565b60005b838110156134ad5781548189015260018201915060208101905061348e565b838801955050505b50505092915050565b60006134c982612752565b6134d38185613430565b93506134e381856020860161276e565b80840191505092915050565b50565b60006134ff600083613430565b915061350a826134ef565b600082019050919050565b6000613521828561343b565b915061352d82846134be565b9150613538826134f2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135a060268361275d565b91506135ab82613544565b604082019050919050565b600060208201905081810360008301526135cf81613593565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061360c60208361275d565b9150613617826135d6565b602082019050919050565b6000602082019050818103600083015261363b816135ff565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061366982613642565b613673818561364d565b935061368381856020860161276e565b61368c816127a1565b840191505092915050565b60006080820190506136ac60008301876128a2565b6136b960208301866128a2565b6136c66040830185612938565b81810360608301526136d8818461365e565b905095945050505050565b6000815190506136f2816126c3565b92915050565b60006020828403121561370e5761370d61268d565b5b600061371c848285016136e3565b9150509291505056fea2646970667358221220992a63efd66505dd62de13eabbbedb4e8a4e61705c48c9009ed66ddabbfb1b1964736f6c634300080f0033697066733a2f2f6261666b7265696532676a647a74326a7066797071377772686768696462797079326775796736733378723332706d687879637470676562736d79

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636352211e11610123578063a035b1fe116100ab578063c87b56dd1161006f578063c87b56dd14610746578063d3dd5fe014610783578063d5abeb011461079a578063e985e9c5146107c5578063f2fde38b146108025761021a565b8063a035b1fe1461068f578063a0712d68146106ba578063a22cb465146106d6578063a7027357146106ff578063b88d4fde1461072a5761021a565b806379b6ed36116100f257806379b6ed36146105bc5780638da5cb5b146105e757806391b7f5ed1461061257806392910eec1461063b57806395d89b41146106645761021a565b80636352211e146105005780636c0360eb1461053d57806370a0823114610568578063715018a6146105a55761021a565b80632be905ba116101a657806341f434341161017557806341f434341461044e57806342842e0e146104795780634d1555611461049557806355f804b3146104c05780635b8ad429146104e95761021a565b80632be905ba14610390578063300e85bf146103cd578063333e44e6146103f8578063344194b3146104235761021a565b806318160ddd116101ed57806318160ddd146102e05780631fe9eabc1461030b57806323b872dd1461033457806324600fc3146103505780632a85db55146103675761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906126ef565b61082b565b6040516102539190612737565b60405180910390f35b34801561026857600080fd5b506102716108bd565b60405161027e91906127eb565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612843565b61094f565b6040516102bb91906128b1565b60405180910390f35b6102de60048036038101906102d991906128f8565b6109ce565b005b3480156102ec57600080fd5b506102f5610ad8565b6040516103029190612947565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612843565b610aef565b005b61034e60048036038101906103499190612962565b610b01565b005b34801561035c57600080fd5b50610365610c51565b005b34801561037357600080fd5b5061038e60048036038101906103899190612aea565b610ca2565b005b34801561039c57600080fd5b506103b760048036038101906103b29190612b33565b610cbd565b6040516103c49190612947565b60405180910390f35b3480156103d957600080fd5b506103e2610cd5565b6040516103ef9190612737565b60405180910390f35b34801561040457600080fd5b5061040d610ce8565b60405161041a9190612947565b60405180910390f35b34801561042f57600080fd5b50610438610cee565b6040516104459190612737565b60405180910390f35b34801561045a57600080fd5b50610463610d01565b6040516104709190612bbf565b60405180910390f35b610493600480360381019061048e9190612962565b610d13565b005b3480156104a157600080fd5b506104aa610e63565b6040516104b79190612947565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612aea565b610e69565b005b3480156104f557600080fd5b506104fe610e84565b005b34801561050c57600080fd5b5061052760048036038101906105229190612843565b610eb8565b60405161053491906128b1565b60405180910390f35b34801561054957600080fd5b50610552610eca565b60405161055f91906127eb565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612b33565b610f58565b60405161059c9190612947565b60405180910390f35b3480156105b157600080fd5b506105ba611010565b005b3480156105c857600080fd5b506105d1611024565b6040516105de91906127eb565b60405180910390f35b3480156105f357600080fd5b506105fc6110b2565b60405161060991906128b1565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190612843565b6110dc565b005b34801561064757600080fd5b50610662600480360381019061065d9190612843565b6110ee565b005b34801561067057600080fd5b50610679611100565b60405161068691906127eb565b60405180910390f35b34801561069b57600080fd5b506106a4611192565b6040516106b19190612947565b60405180910390f35b6106d460048036038101906106cf9190612843565b611198565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190612c06565b611424565b005b34801561070b57600080fd5b5061071461152e565b6040516107219190612947565b60405180910390f35b610744600480360381019061073f9190612ce7565b611534565b005b34801561075257600080fd5b5061076d60048036038101906107689190612843565b611687565b60405161077a91906127eb565b60405180910390f35b34801561078f57600080fd5b506107986117b1565b005b3480156107a657600080fd5b506107af6117e5565b6040516107bc9190612947565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612d6a565b6117eb565b6040516107f99190612737565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612b33565b61187f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108cc90612dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546108f890612dd9565b80156109455780601f1061091a57610100808354040283529160200191610945565b820191906000526020600020905b81548152906001019060200180831161092857829003601f168201915b5050505050905090565b600061095a82611902565b610990576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ac9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610a46929190612e0a565b602060405180830381865afa158015610a63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a879190612e48565b610ac857806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610abf91906128b1565b60405180910390fd5b5b610ad38383611961565b505050565b6000610ae2611aa5565b6001546000540303905090565b610af7611aaa565b80600d8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c3f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b7357610b6e848484611b28565b610c4b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bbc929190612e0a565b602060405180830381865afa158015610bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bfd9190612e48565b610c3e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c3591906128b1565b60405180910390fd5b5b610c4a848484611b28565b5b50505050565b610c59611aaa565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c9f573d6000803e3d6000fd5b50565b610caa611aaa565b80600a9081610cb99190613017565b5050565b60106020528060005260406000206000915090505481565b600860149054906101000a900460ff1681565b600c5481565b600860159054906101000a900460ff1681565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e51573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d8557610d80848484611e4a565b610e5d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dce929190612e0a565b602060405180830381865afa158015610deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0f9190612e48565b610e5057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e4791906128b1565b60405180910390fd5b5b610e5c848484611e4a565b5b50505050565b600d5481565b610e71611aaa565b8060099081610e809190613017565b5050565b610e8c611aaa565b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b6000610ec382611e6a565b9050919050565b60098054610ed790612dd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0390612dd9565b8015610f505780601f10610f2557610100808354040283529160200191610f50565b820191906000526020600020905b815481529060010190602001808311610f3357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fbf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611018611aaa565b6110226000611f36565b565b600a805461103190612dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461105d90612dd9565b80156110aa5780601f1061107f576101008083540402835291602001916110aa565b820191906000526020600020905b81548152906001019060200180831161108d57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110e4611aaa565b80600f8190555050565b6110f6611aaa565b80600c8190555050565b60606003805461110f90612dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461113b90612dd9565b80156111885780601f1061115d57610100808354040283529160200191611188565b820191906000526020600020905b81548152906001019060200180831161116b57829003601f168201915b5050505050905090565b600f5481565b6000600f54905060006001600c546111b09190613118565b836111b9610ad8565b6111c39190613118565b10801561121c5750600e5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112199190613118565b11155b9050801561122957600091505b600860149054906101000a900460ff16611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f906131ba565b60405180910390fd5b818361128491906131da565b3410156112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90613280565b60405180910390fd5b600d5483111561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613312565b60405180910390fd5b600b5483611317610ad8565b6113219190613118565b1115611362576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113599061337e565b60405180910390fd5b80156113bf5782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113b79190613118565b925050819055505b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461140e9190613118565b9250508190555061141f3384611ffc565b505050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561151f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161149c929190612e0a565b602060405180830381865afa1580156114b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114dd9190612e48565b61151e57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161151591906128b1565b60405180910390fd5b5b611529838361201a565b505050565b600e5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611673573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115a7576115a285858585612125565b611680565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016115f0929190612e0a565b602060405180830381865afa15801561160d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116319190612e48565b61167257336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161166991906128b1565b60405180910390fd5b5b61167f85858585612125565b5b5050505050565b606060001515600860159054906101000a900460ff1615150361173657600a80546116b190612dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546116dd90612dd9565b801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b505050505090506117ac565b61173f82611902565b61177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590613410565b60405180910390fd5b600961178983612198565b60405160200161179a929190613515565b60405160208183030381529060405290505b919050565b6117b9611aaa565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611887611aaa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed906135b6565b60405180910390fd5b6118ff81611f36565b50565b60008161190d611aa5565b1115801561191c575060005482105b801561195a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061196c82610eb8565b90508073ffffffffffffffffffffffffffffffffffffffff1661198d6121e8565b73ffffffffffffffffffffffffffffffffffffffff16146119f0576119b9816119b46121e8565b6117eb565b6119ef576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611ab26121f0565b73ffffffffffffffffffffffffffffffffffffffff16611ad06110b2565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613622565b60405180910390fd5b565b6000611b3382611e6a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b9a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611ba6846121f8565b91509150611bbc8187611bb76121e8565b61221f565b611c0857611bd186611bcc6121e8565b6117eb565b611c07576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c6e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c7b8686866001612263565b8015611c8657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611d5485611d30888887612269565b7c020000000000000000000000000000000000000000000000000000000017612291565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611dda5760006001850190506000600460008381526020019081526020016000205403611dd8576000548114611dd7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e4286868660016122bc565b505050505050565b611e6583838360405180602001604052806000815250611534565b505050565b60008082905080611e79611aa5565b11611eff57600054811015611efe5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611efc575b60008103611ef2576004600083600190039350838152602001908152602001600020549050611ec8565b8092505050611f31565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120168282604051806020016040528060008152506122c2565b5050565b80600760006120276121e8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120d46121e8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121199190612737565b60405180910390a35050565b612130848484610b01565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121925761215b8484848461235f565b612191576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b6001156121d357600184039350600a81066030018453600a81049050806121b1575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86122808686846124af565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6122cc83836124b8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461235a57600080549050600083820390505b61230c600086838060010194508661235f565b612342576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122f957816000541461235757600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123856121e8565b8786866040518563ffffffff1660e01b81526004016123a79493929190613697565b6020604051808303816000875af19250505080156123e357506040513d601f19601f820116820180604052508101906123e091906136f8565b60015b61245c573d8060008114612413576040519150601f19603f3d011682016040523d82523d6000602084013e612418565b606091505b506000815103612454576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036124f8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125056000848385612263565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061257c8361256d6000866000612269565b61257685612673565b17612291565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461261d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125e2565b5060008203612658576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061266e60008483856122bc565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126cc81612697565b81146126d757600080fd5b50565b6000813590506126e9816126c3565b92915050565b6000602082840312156127055761270461268d565b5b6000612713848285016126da565b91505092915050565b60008115159050919050565b6127318161271c565b82525050565b600060208201905061274c6000830184612728565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561278c578082015181840152602081019050612771565b8381111561279b576000848401525b50505050565b6000601f19601f8301169050919050565b60006127bd82612752565b6127c7818561275d565b93506127d781856020860161276e565b6127e0816127a1565b840191505092915050565b6000602082019050818103600083015261280581846127b2565b905092915050565b6000819050919050565b6128208161280d565b811461282b57600080fd5b50565b60008135905061283d81612817565b92915050565b6000602082840312156128595761285861268d565b5b60006128678482850161282e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061289b82612870565b9050919050565b6128ab81612890565b82525050565b60006020820190506128c660008301846128a2565b92915050565b6128d581612890565b81146128e057600080fd5b50565b6000813590506128f2816128cc565b92915050565b6000806040838503121561290f5761290e61268d565b5b600061291d858286016128e3565b925050602061292e8582860161282e565b9150509250929050565b6129418161280d565b82525050565b600060208201905061295c6000830184612938565b92915050565b60008060006060848603121561297b5761297a61268d565b5b6000612989868287016128e3565b935050602061299a868287016128e3565b92505060406129ab8682870161282e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129f7826127a1565b810181811067ffffffffffffffff82111715612a1657612a156129bf565b5b80604052505050565b6000612a29612683565b9050612a3582826129ee565b919050565b600067ffffffffffffffff821115612a5557612a546129bf565b5b612a5e826127a1565b9050602081019050919050565b82818337600083830152505050565b6000612a8d612a8884612a3a565b612a1f565b905082815260208101848484011115612aa957612aa86129ba565b5b612ab4848285612a6b565b509392505050565b600082601f830112612ad157612ad06129b5565b5b8135612ae1848260208601612a7a565b91505092915050565b600060208284031215612b0057612aff61268d565b5b600082013567ffffffffffffffff811115612b1e57612b1d612692565b5b612b2a84828501612abc565b91505092915050565b600060208284031215612b4957612b4861268d565b5b6000612b57848285016128e3565b91505092915050565b6000819050919050565b6000612b85612b80612b7b84612870565b612b60565b612870565b9050919050565b6000612b9782612b6a565b9050919050565b6000612ba982612b8c565b9050919050565b612bb981612b9e565b82525050565b6000602082019050612bd46000830184612bb0565b92915050565b612be38161271c565b8114612bee57600080fd5b50565b600081359050612c0081612bda565b92915050565b60008060408385031215612c1d57612c1c61268d565b5b6000612c2b858286016128e3565b9250506020612c3c85828601612bf1565b9150509250929050565b600067ffffffffffffffff821115612c6157612c606129bf565b5b612c6a826127a1565b9050602081019050919050565b6000612c8a612c8584612c46565b612a1f565b905082815260208101848484011115612ca657612ca56129ba565b5b612cb1848285612a6b565b509392505050565b600082601f830112612cce57612ccd6129b5565b5b8135612cde848260208601612c77565b91505092915050565b60008060008060808587031215612d0157612d0061268d565b5b6000612d0f878288016128e3565b9450506020612d20878288016128e3565b9350506040612d318782880161282e565b925050606085013567ffffffffffffffff811115612d5257612d51612692565b5b612d5e87828801612cb9565b91505092959194509250565b60008060408385031215612d8157612d8061268d565b5b6000612d8f858286016128e3565b9250506020612da0858286016128e3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612df157607f821691505b602082108103612e0457612e03612daa565b5b50919050565b6000604082019050612e1f60008301856128a2565b612e2c60208301846128a2565b9392505050565b600081519050612e4281612bda565b92915050565b600060208284031215612e5e57612e5d61268d565b5b6000612e6c84828501612e33565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ed77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e9a565b612ee18683612e9a565b95508019841693508086168417925050509392505050565b6000612f14612f0f612f0a8461280d565b612b60565b61280d565b9050919050565b6000819050919050565b612f2e83612ef9565b612f42612f3a82612f1b565b848454612ea7565b825550505050565b600090565b612f57612f4a565b612f62818484612f25565b505050565b5b81811015612f8657612f7b600082612f4f565b600181019050612f68565b5050565b601f821115612fcb57612f9c81612e75565b612fa584612e8a565b81016020851015612fb4578190505b612fc8612fc085612e8a565b830182612f67565b50505b505050565b600082821c905092915050565b6000612fee60001984600802612fd0565b1980831691505092915050565b60006130078383612fdd565b9150826002028217905092915050565b61302082612752565b67ffffffffffffffff811115613039576130386129bf565b5b6130438254612dd9565b61304e828285612f8a565b600060209050601f831160018114613081576000841561306f578287015190505b6130798582612ffb565b8655506130e1565b601f19841661308f86612e75565b60005b828110156130b757848901518255600182019150602085019450602081019050613092565b868310156130d457848901516130d0601f891682612fdd565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131238261280d565b915061312e8361280d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613163576131626130e9565b5b828201905092915050565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b60006131a4600f8361275d565b91506131af8261316e565b602082019050919050565b600060208201905081810360008301526131d381613197565b9050919050565b60006131e58261280d565b91506131f08361280d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613229576132286130e9565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061326a601d8361275d565b915061327582613234565b602082019050919050565b600060208201905081810360008301526132998161325d565b9050919050565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e2077616c6c657460008201527f206c696d69740000000000000000000000000000000000000000000000000000602082015250565b60006132fc60268361275d565b9150613307826132a0565b604082019050919050565b6000602082019050818103600083015261332b816132ef565b9050919050565b7f4d617820537570706c7920697320526561636865640000000000000000000000600082015250565b600061336860158361275d565b915061337382613332565b602082019050919050565b600060208201905081810360008301526133978161335b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133fa602f8361275d565b91506134058261339e565b604082019050919050565b60006020820190508181036000830152613429816133ed565b9050919050565b600081905092915050565b6000815461344881612dd9565b6134528186613430565b9450600182166000811461346d5760018114613482576134b5565b60ff19831686528115158202860193506134b5565b61348b85612e75565b60005b838110156134ad5781548189015260018201915060208101905061348e565b838801955050505b50505092915050565b60006134c982612752565b6134d38185613430565b93506134e381856020860161276e565b80840191505092915050565b50565b60006134ff600083613430565b915061350a826134ef565b600082019050919050565b6000613521828561343b565b915061352d82846134be565b9150613538826134f2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135a060268361275d565b91506135ab82613544565b604082019050919050565b600060208201905081810360008301526135cf81613593565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061360c60208361275d565b9150613617826135d6565b602082019050919050565b6000602082019050818103600083015261363b816135ff565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061366982613642565b613673818561364d565b935061368381856020860161276e565b61368c816127a1565b840191505092915050565b60006080820190506136ac60008301876128a2565b6136b960208301866128a2565b6136c66040830185612938565b81810360608301526136d8818461365e565b905095945050505050565b6000815190506136f2816126c3565b92915050565b60006020828403121561370e5761370d61268d565b5b600061371c848285016136e3565b9150509291505056fea2646970667358221220992a63efd66505dd62de13eabbbedb4e8a4e61705c48c9009ed66ddabbfb1b1964736f6c634300080f0033

Deployed Bytecode Sourcemap

63623:3958:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24025:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24927:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31418:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66794:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20678:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65974:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66967:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65516:113;;;;;;;;;;;;;:::i;:::-;;65637:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64042:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63711:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63882:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63743:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2807:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67146:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63920:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65763:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65292;;;;;;;;;;;;;:::i;:::-;;26320:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63780:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21862:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62778:103;;;;;;;;;;;;;:::i;:::-;;63809:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62130:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66068:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65871:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25103:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63999:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64437:749;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66610:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63957:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67333:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66162:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65196:88;;;;;;;;;;;;;:::i;:::-;;63844:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32367:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63036:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24025:639;24110:4;24449:10;24434:25;;:11;:25;;;;:102;;;;24526:10;24511:25;;:11;:25;;;;24434:102;:179;;;;24603:10;24588:25;;:11;:25;;;;24434:179;24414:199;;24025:639;;;:::o;24927:100::-;24981:13;25014:5;25007:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24927:100;:::o;31418:218::-;31494:7;31519:16;31527:7;31519;:16::i;:::-;31514:64;;31544:34;;;;;;;;;;;;;;31514:64;31598:15;:24;31614:7;31598:24;;;;;;;;;;;:30;;;;;;;;;;;;31591:37;;31418:218;;;:::o;66794:165::-;66898:8;4849:1;2907:42;4801:45;;;:49;4797:225;;;2907:42;4872;;;4923:4;4930:8;4872:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4867:144;;4986:8;4967:28;;;;;;;;;;;:::i;:::-;;;;;;;;4867:144;4797:225;66919:32:::1;66933:8;66943:7;66919:13;:32::i;:::-;66794:165:::0;;;:::o;20678:323::-;20739:7;20967:15;:13;:15::i;:::-;20952:12;;20936:13;;:28;:46;20929:53;;20678:323;:::o;65974:86::-;62016:13;:11;:13::i;:::-;66046:6:::1;66036:7;:16;;;;65974:86:::0;:::o;66967:171::-;67076:4;4103:1;2907:42;4055:45;;;:49;4051:539;;;4344:10;4336:18;;:4;:18;;;4332:85;;67093:37:::1;67112:4;67118:2;67122:7;67093:18;:37::i;:::-;4395:7:::0;;4332:85;2907:42;4436;;;4487:4;4494:10;4436:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4431:148;;4552:10;4533:30;;;;;;;;;;;:::i;:::-;;;;;;;;4431:148;4051:539;67093:37:::1;67112:4;67118:2;67122:7;67093:18;:37::i;:::-;66967:171:::0;;;;;:::o;65516:113::-;62016:13;:11;:13::i;:::-;65571:10:::1;65563:28;;:51;65592:21;65563:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65516:113::o:0;65637:118::-;62016:13;:11;:13::i;:::-;65734::::1;65719:12;:28;;;;;;:::i;:::-;;65637:118:::0;:::o;64042:48::-;;;;;;;;;;;;;;;;;:::o;63711:25::-;;;;;;;;;;;;;:::o;63882:31::-;;;;:::o;63743:30::-;;;;;;;;;;;;;:::o;2807:143::-;2907:42;2807:143;:::o;67146:179::-;67259:4;4103:1;2907:42;4055:45;;;:49;4051:539;;;4344:10;4336:18;;:4;:18;;;4332:85;;67276:41:::1;67299:4;67305:2;67309:7;67276:22;:41::i;:::-;4395:7:::0;;4332:85;2907:42;4436;;;4487:4;4494:10;4436:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4431:148;;4552:10;4533:30;;;;;;;;;;;:::i;:::-;;;;;;;;4431:148;4051:539;67276:41:::1;67299:4;67305:2;67309:7;67276:22;:41::i;:::-;67146:179:::0;;;;;:::o;63920:28::-;;;;:::o;65763:100::-;62016:13;:11;:13::i;:::-;65847:8:::1;65837:7;:18;;;;;;:::i;:::-;;65763:100:::0;:::o;65292:::-;62016:13;:11;:13::i;:::-;65366:18:::1;;;;;;;;;;;65365:19;65344:18;;:40;;;;;;;;;;;;;;;;;;65292:100::o:0;26320:152::-;26392:7;26435:27;26454:7;26435:18;:27::i;:::-;26412:52;;26320:152;;;:::o;63780:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21862:233::-;21934:7;21975:1;21958:19;;:5;:19;;;21954:60;;21986:28;;;;;;;;;;;;;;21954:60;16021:13;22032:18;:25;22051:5;22032:25;;;;;;;;;;;;;;;;:55;22025:62;;21862:233;;;:::o;62778:103::-;62016:13;:11;:13::i;:::-;62843:30:::1;62870:1;62843:18;:30::i;:::-;62778:103::o:0;63809:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62130:87::-;62176:7;62203:6;;;;;;;;;;;62196:13;;62130:87;:::o;66068:86::-;62016:13;:11;:13::i;:::-;66140:6:::1;66132:5;:14;;;;66068:86:::0;:::o;65871:95::-;62016:13;:11;:13::i;:::-;65952:6:::1;65940:9;:18;;;;65871:95:::0;:::o;25103:104::-;25159:13;25192:7;25185:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25103:104;:::o;63999:34::-;;;;:::o;64437:749::-;64494:12;64509:5;;64494:20;;64525:11;64577:1;64565:9;;:13;;;;:::i;:::-;64557:5;64541:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;64540:115;;;;;64638:16;;64629:5;64597:17;:29;64615:10;64597:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;64540:115;64525:131;;64673:6;64669:47;;;64703:1;64696:8;;64669:47;64736:13;;;;;;;;;;;64728:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;64810:4;64802:5;:12;;;;:::i;:::-;64789:9;:25;;64781:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;64876:7;;64867:5;:16;;64859:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;64970:9;;64961:5;64945:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;64937:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;65021:6;65017:77;;;65077:5;65044:17;:29;65062:10;65044:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;65017:77;65134:5;65106:12;:24;65119:10;65106:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;65150:28;65160:10;65172:5;65150:9;:28::i;:::-;64483:703;;64437:749;:::o;66610:176::-;66714:8;4849:1;2907:42;4801:45;;;:49;4797:225;;;2907:42;4872;;;4923:4;4930:8;4872:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4867:144;;4986:8;4967:28;;;;;;;;;;;:::i;:::-;;;;;;;;4867:144;4797:225;66735:43:::1;66759:8;66769;66735:23;:43::i;:::-;66610:176:::0;;;:::o;63957:35::-;;;;:::o;67333:245::-;67501:4;4103:1;2907:42;4055:45;;;:49;4051:539;;;4344:10;4336:18;;:4;:18;;;4332:85;;67523:47:::1;67546:4;67552:2;67556:7;67565:4;67523:22;:47::i;:::-;4395:7:::0;;4332:85;2907:42;4436;;;4487:4;4494:10;4436:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4431:148;;4552:10;4533:30;;;;;;;;;;;:::i;:::-;;;;;;;;4431:148;4051:539;67523:47:::1;67546:4;67552:2;67556:7;67565:4;67523:22;:47::i;:::-;67333:245:::0;;;;;;:::o;66162:438::-;66280:13;66339:5;66317:27;;:18;;;;;;;;;;;:27;;;66313:79;;66368:12;66361:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66313:79;66426:16;66434:7;66426;:16::i;:::-;66404:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;66559:7;66568:18;66578:7;66568:9;:18::i;:::-;66542:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66528:64;;66162:438;;;;:::o;65196:88::-;62016:13;:11;:13::i;:::-;65263::::1;;;;;;;;;;;65262:14;65246:13;;:30;;;;;;;;;;;;;;;;;;65196:88::o:0;63844:31::-;;;;:::o;32367:164::-;32464:4;32488:18;:25;32507:5;32488:25;;;;;;;;;;;;;;;:35;32514:8;32488:35;;;;;;;;;;;;;;;;;;;;;;;;;32481:42;;32367:164;;;;:::o;63036:201::-;62016:13;:11;:13::i;:::-;63145:1:::1;63125:22;;:8;:22;;::::0;63117:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63201:28;63220:8;63201:18;:28::i;:::-;63036:201:::0;:::o;32789:282::-;32854:4;32910:7;32891:15;:13;:15::i;:::-;:26;;:66;;;;;32944:13;;32934:7;:23;32891:66;:153;;;;;33043:1;16797:8;32995:17;:26;33013:7;32995:26;;;;;;;;;;;;:44;:49;32891:153;32871:173;;32789:282;;;:::o;30851:408::-;30940:13;30956:16;30964:7;30956;:16::i;:::-;30940:32;;31012:5;30989:28;;:19;:17;:19::i;:::-;:28;;;30985:175;;31037:44;31054:5;31061:19;:17;:19::i;:::-;31037:16;:44::i;:::-;31032:128;;31109:35;;;;;;;;;;;;;;31032:128;30985:175;31205:2;31172:15;:24;31188:7;31172:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31243:7;31239:2;31223:28;;31232:5;31223:28;;;;;;;;;;;;30929:330;30851:408;;:::o;20194:92::-;20250:7;20194:92;:::o;62295:132::-;62370:12;:10;:12::i;:::-;62359:23;;:7;:5;:7::i;:::-;:23;;;62351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62295:132::o;35057:2825::-;35199:27;35229;35248:7;35229:18;:27::i;:::-;35199:57;;35314:4;35273:45;;35289:19;35273:45;;;35269:86;;35327:28;;;;;;;;;;;;;;35269:86;35369:27;35398:23;35425:35;35452:7;35425:26;:35::i;:::-;35368:92;;;;35560:68;35585:15;35602:4;35608:19;:17;:19::i;:::-;35560:24;:68::i;:::-;35555:180;;35648:43;35665:4;35671:19;:17;:19::i;:::-;35648:16;:43::i;:::-;35643:92;;35700:35;;;;;;;;;;;;;;35643:92;35555:180;35766:1;35752:16;;:2;:16;;;35748:52;;35777:23;;;;;;;;;;;;;;35748:52;35813:43;35835:4;35841:2;35845:7;35854:1;35813:21;:43::i;:::-;35949:15;35946:160;;;36089:1;36068:19;36061:30;35946:160;36486:18;:24;36505:4;36486:24;;;;;;;;;;;;;;;;36484:26;;;;;;;;;;;;36555:18;:22;36574:2;36555:22;;;;;;;;;;;;;;;;36553:24;;;;;;;;;;;36877:146;36914:2;36963:45;36978:4;36984:2;36988:19;36963:14;:45::i;:::-;17077:8;36935:73;36877:18;:146::i;:::-;36848:17;:26;36866:7;36848:26;;;;;;;;;;;:175;;;;37194:1;17077:8;37143:19;:47;:52;37139:627;;37216:19;37248:1;37238:7;:11;37216:33;;37405:1;37371:17;:30;37389:11;37371:30;;;;;;;;;;;;:35;37367:384;;37509:13;;37494:11;:28;37490:242;;37689:19;37656:17;:30;37674:11;37656:30;;;;;;;;;;;:52;;;;37490:242;37367:384;37197:569;37139:627;37813:7;37809:2;37794:27;;37803:4;37794:27;;;;;;;;;;;;37832:42;37853:4;37859:2;37863:7;37872:1;37832:20;:42::i;:::-;35188:2694;;;35057:2825;;;:::o;37978:193::-;38124:39;38141:4;38147:2;38151:7;38124:39;;;;;;;;;;;;:16;:39::i;:::-;37978:193;;;:::o;27475:1275::-;27542:7;27562:12;27577:7;27562:22;;27645:4;27626:15;:13;:15::i;:::-;:23;27622:1061;;27679:13;;27672:4;:20;27668:1015;;;27717:14;27734:17;:23;27752:4;27734:23;;;;;;;;;;;;27717:40;;27851:1;16797:8;27823:6;:24;:29;27819:845;;28488:113;28505:1;28495:6;:11;28488:113;;28548:17;:25;28566:6;;;;;;;28548:25;;;;;;;;;;;;28539:34;;28488:113;;;28634:6;28627:13;;;;;;27819:845;27694:989;27668:1015;27622:1061;28711:31;;;;;;;;;;;;;;27475:1275;;;;:::o;63397:191::-;63471:16;63490:6;;;;;;;;;;;63471:25;;63516:8;63507:6;;:17;;;;;;;;;;;;;;;;;;63571:8;63540:40;;63561:8;63540:40;;;;;;;;;;;;63460:128;63397:191;:::o;48929:112::-;49006:27;49016:2;49020:8;49006:27;;;;;;;;;;;;:9;:27::i;:::-;48929:112;;:::o;31976:234::-;32123:8;32071:18;:39;32090:19;:17;:19::i;:::-;32071:39;;;;;;;;;;;;;;;:49;32111:8;32071:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32183:8;32147:55;;32162:19;:17;:19::i;:::-;32147:55;;;32193:8;32147:55;;;;;;:::i;:::-;;;;;;;;31976:234;;:::o;38769:407::-;38944:31;38957:4;38963:2;38967:7;38944:12;:31::i;:::-;39008:1;38990:2;:14;;;:19;38986:183;;39029:56;39060:4;39066:2;39070:7;39079:5;39029:30;:56::i;:::-;39024:145;;39113:40;;;;;;;;;;;;;;39024:145;38986:183;38769:407;;;;:::o;55304:1745::-;55369:17;55803:4;55796;55790:11;55786:22;55895:1;55889:4;55882:15;55970:4;55967:1;55963:12;55956:19;;56052:1;56047:3;56040:14;56156:3;56395:5;56377:428;56403:1;56377:428;;;56443:1;56438:3;56434:11;56427:18;;56614:2;56608:4;56604:13;56600:2;56596:22;56591:3;56583:36;56708:2;56702:4;56698:13;56690:21;;56775:4;56377:428;56765:25;56377:428;56381:21;56844:3;56839;56835:13;56959:4;56954:3;56950:14;56943:21;;57024:6;57019:3;57012:19;55408:1634;;;55304:1745;;;:::o;55097:105::-;55157:7;55184:10;55177:17;;55097:105;:::o;60681:98::-;60734:7;60761:10;60754:17;;60681:98;:::o;33952:485::-;34054:27;34083:23;34124:38;34165:15;:24;34181:7;34165:24;;;;;;;;;;;34124:65;;34342:18;34319:41;;34399:19;34393:26;34374:45;;34304:126;33952:485;;;:::o;33180:659::-;33329:11;33494:16;33487:5;33483:28;33474:37;;33654:16;33643:9;33639:32;33626:45;;33804:15;33793:9;33790:30;33782:5;33771:9;33768:20;33765:56;33755:66;;33180:659;;;;;:::o;39838:159::-;;;;;:::o;54406:311::-;54541:7;54561:16;17201:3;54587:19;:41;;54561:68;;17201:3;54655:31;54666:4;54672:2;54676:9;54655:10;:31::i;:::-;54647:40;;:62;;54640:69;;;54406:311;;;;;:::o;29298:450::-;29378:14;29546:16;29539:5;29535:28;29526:37;;29723:5;29709:11;29684:23;29680:41;29677:52;29670:5;29667:63;29657:73;;29298:450;;;;:::o;40662:158::-;;;;;:::o;48156:689::-;48287:19;48293:2;48297:8;48287:5;:19::i;:::-;48366:1;48348:2;:14;;;:19;48344:483;;48388:11;48402:13;;48388:27;;48434:13;48456:8;48450:3;:14;48434:30;;48483:233;48514:62;48553:1;48557:2;48561:7;;;;;;48570:5;48514:30;:62::i;:::-;48509:167;;48612:40;;;;;;;;;;;;;;48509:167;48711:3;48703:5;:11;48483:233;;48798:3;48781:13;;:20;48777:34;;48803:8;;;48777:34;48369:458;;48344:483;48156:689;;;:::o;41260:716::-;41423:4;41469:2;41444:45;;;41490:19;:17;:19::i;:::-;41511:4;41517:7;41526:5;41444:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41744:1;41727:6;:13;:18;41723:235;;41773:40;;;;;;;;;;;;;;41723:235;41916:6;41910:13;41901:6;41897:2;41893:15;41886:38;41440:529;41613:54;;;41603:64;;;:6;:64;;;;41596:71;;;41260:716;;;;;;:::o;54107:147::-;54244:6;54107:147;;;;;:::o;42438:2966::-;42511:20;42534:13;;42511:36;;42574:1;42562:8;:13;42558:44;;42584:18;;;;;;;;;;;;;;42558:44;42615:61;42645:1;42649:2;42653:12;42667:8;42615:21;:61::i;:::-;43159:1;16159:2;43129:1;:26;;43128:32;43116:8;:45;43090:18;:22;43109:2;43090:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43438:139;43475:2;43529:33;43552:1;43556:2;43560:1;43529:14;:33::i;:::-;43496:30;43517:8;43496:20;:30::i;:::-;:66;43438:18;:139::i;:::-;43404:17;:31;43422:12;43404:31;;;;;;;;;;;:173;;;;43594:16;43625:11;43654:8;43639:12;:23;43625:37;;44175:16;44171:2;44167:25;44155:37;;44547:12;44507:8;44466:1;44404:25;44345:1;44284;44257:335;44918:1;44904:12;44900:20;44858:346;44959:3;44950:7;44947:16;44858:346;;45177:7;45167:8;45164:1;45137:25;45134:1;45131;45126:59;45012:1;45003:7;44999:15;44988:26;;44858:346;;;44862:77;45249:1;45237:8;:13;45233:45;;45259:19;;;;;;;;;;;;;;45233:45;45311:3;45295:13;:19;;;;42864:2462;;45336:60;45365:1;45369:2;45373:12;45387:8;45336:20;:60::i;:::-;42500:2904;42438:2966;;:::o;29850:324::-;29920:14;30153:1;30143:8;30140:15;30114:24;30110:46;30100:56;;29850:324;;;:::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:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:60::-;8899:3;8920:5;8913:12;;8871:60;;;:::o;8937:142::-;8987:9;9020:53;9038:34;9047:24;9065:5;9047:24;:::i;:::-;9038:34;:::i;:::-;9020:53;:::i;:::-;9007:66;;8937:142;;;:::o;9085:126::-;9135:9;9168:37;9199:5;9168:37;:::i;:::-;9155:50;;9085:126;;;:::o;9217:157::-;9298:9;9331:37;9362:5;9331:37;:::i;:::-;9318:50;;9217:157;;;:::o;9380:193::-;9498:68;9560:5;9498:68;:::i;:::-;9493:3;9486:81;9380:193;;:::o;9579:284::-;9703:4;9741:2;9730:9;9726:18;9718:26;;9754:102;9853:1;9842:9;9838:17;9829:6;9754:102;:::i;:::-;9579:284;;;;:::o;9869:116::-;9939:21;9954:5;9939:21;:::i;:::-;9932:5;9929:32;9919:60;;9975:1;9972;9965:12;9919:60;9869:116;:::o;9991:133::-;10034:5;10072:6;10059:20;10050:29;;10088:30;10112:5;10088:30;:::i;:::-;9991:133;;;;:::o;10130:468::-;10195:6;10203;10252:2;10240:9;10231:7;10227:23;10223:32;10220:119;;;10258:79;;:::i;:::-;10220:119;10378:1;10403:53;10448:7;10439:6;10428:9;10424:22;10403:53;:::i;:::-;10393:63;;10349:117;10505:2;10531:50;10573:7;10564:6;10553:9;10549:22;10531:50;:::i;:::-;10521:60;;10476:115;10130:468;;;;;:::o;10604:307::-;10665:4;10755:18;10747:6;10744:30;10741:56;;;10777:18;;:::i;:::-;10741:56;10815:29;10837:6;10815:29;:::i;:::-;10807:37;;10899:4;10893;10889:15;10881:23;;10604:307;;;:::o;10917:410::-;10994:5;11019:65;11035:48;11076:6;11035:48;:::i;:::-;11019:65;:::i;:::-;11010:74;;11107:6;11100:5;11093:21;11145:4;11138:5;11134:16;11183:3;11174:6;11169:3;11165:16;11162:25;11159:112;;;11190:79;;:::i;:::-;11159:112;11280:41;11314:6;11309:3;11304;11280:41;:::i;:::-;11000:327;10917:410;;;;;:::o;11346:338::-;11401:5;11450:3;11443:4;11435:6;11431:17;11427:27;11417:122;;11458:79;;:::i;:::-;11417:122;11575:6;11562:20;11600:78;11674:3;11666:6;11659:4;11651:6;11647:17;11600:78;:::i;:::-;11591:87;;11407:277;11346:338;;;;:::o;11690:943::-;11785:6;11793;11801;11809;11858:3;11846:9;11837:7;11833:23;11829:33;11826:120;;;11865:79;;:::i;:::-;11826:120;11985:1;12010:53;12055:7;12046:6;12035:9;12031:22;12010:53;:::i;:::-;12000:63;;11956:117;12112:2;12138:53;12183:7;12174:6;12163:9;12159:22;12138:53;:::i;:::-;12128:63;;12083:118;12240:2;12266:53;12311:7;12302:6;12291:9;12287:22;12266:53;:::i;:::-;12256:63;;12211:118;12396:2;12385:9;12381:18;12368:32;12427:18;12419:6;12416:30;12413:117;;;12449:79;;:::i;:::-;12413:117;12554:62;12608:7;12599:6;12588:9;12584:22;12554:62;:::i;:::-;12544:72;;12339:287;11690:943;;;;;;;:::o;12639:474::-;12707:6;12715;12764:2;12752:9;12743:7;12739:23;12735:32;12732:119;;;12770:79;;:::i;:::-;12732:119;12890:1;12915:53;12960:7;12951:6;12940:9;12936:22;12915:53;:::i;:::-;12905:63;;12861:117;13017:2;13043:53;13088:7;13079:6;13068:9;13064:22;13043:53;:::i;:::-;13033:63;;12988:118;12639:474;;;;;:::o;13119:180::-;13167:77;13164:1;13157:88;13264:4;13261:1;13254:15;13288:4;13285:1;13278:15;13305:320;13349:6;13386:1;13380:4;13376:12;13366:22;;13433:1;13427:4;13423:12;13454:18;13444:81;;13510:4;13502:6;13498:17;13488:27;;13444:81;13572:2;13564:6;13561:14;13541:18;13538:38;13535:84;;13591:18;;:::i;:::-;13535:84;13356:269;13305:320;;;:::o;13631:332::-;13752:4;13790:2;13779:9;13775:18;13767:26;;13803:71;13871:1;13860:9;13856:17;13847:6;13803:71;:::i;:::-;13884:72;13952:2;13941:9;13937:18;13928:6;13884:72;:::i;:::-;13631:332;;;;;:::o;13969:137::-;14023:5;14054:6;14048:13;14039:22;;14070:30;14094:5;14070:30;:::i;:::-;13969:137;;;;:::o;14112:345::-;14179:6;14228:2;14216:9;14207:7;14203:23;14199:32;14196:119;;;14234:79;;:::i;:::-;14196:119;14354:1;14379:61;14432:7;14423:6;14412:9;14408:22;14379:61;:::i;:::-;14369:71;;14325:125;14112:345;;;;:::o;14463:141::-;14512:4;14535:3;14527:11;;14558:3;14555:1;14548:14;14592:4;14589:1;14579:18;14571:26;;14463:141;;;:::o;14610:93::-;14647:6;14694:2;14689;14682:5;14678:14;14674:23;14664:33;;14610:93;;;:::o;14709:107::-;14753:8;14803:5;14797:4;14793:16;14772:37;;14709:107;;;;:::o;14822:393::-;14891:6;14941:1;14929:10;14925:18;14964:97;14994:66;14983:9;14964:97;:::i;:::-;15082:39;15112:8;15101:9;15082:39;:::i;:::-;15070:51;;15154:4;15150:9;15143:5;15139:21;15130:30;;15203:4;15193:8;15189:19;15182:5;15179:30;15169:40;;14898:317;;14822:393;;;;;:::o;15221:142::-;15271:9;15304:53;15322:34;15331:24;15349:5;15331:24;:::i;:::-;15322:34;:::i;:::-;15304:53;:::i;:::-;15291:66;;15221:142;;;:::o;15369:75::-;15412:3;15433:5;15426:12;;15369:75;;;:::o;15450:269::-;15560:39;15591:7;15560:39;:::i;:::-;15621:91;15670:41;15694:16;15670:41;:::i;:::-;15662:6;15655:4;15649:11;15621:91;:::i;:::-;15615:4;15608:105;15526:193;15450:269;;;:::o;15725:73::-;15770:3;15725:73;:::o;15804:189::-;15881:32;;:::i;:::-;15922:65;15980:6;15972;15966:4;15922:65;:::i;:::-;15857:136;15804:189;;:::o;15999:186::-;16059:120;16076:3;16069:5;16066:14;16059:120;;;16130:39;16167:1;16160:5;16130:39;:::i;:::-;16103:1;16096:5;16092:13;16083:22;;16059:120;;;15999:186;;:::o;16191:543::-;16292:2;16287:3;16284:11;16281:446;;;16326:38;16358:5;16326:38;:::i;:::-;16410:29;16428:10;16410:29;:::i;:::-;16400:8;16396:44;16593:2;16581:10;16578:18;16575:49;;;16614:8;16599:23;;16575:49;16637:80;16693:22;16711:3;16693:22;:::i;:::-;16683:8;16679:37;16666:11;16637:80;:::i;:::-;16296:431;;16281:446;16191:543;;;:::o;16740:117::-;16794:8;16844:5;16838:4;16834:16;16813:37;;16740:117;;;;:::o;16863:169::-;16907:6;16940:51;16988:1;16984:6;16976:5;16973:1;16969:13;16940:51;:::i;:::-;16936:56;17021:4;17015;17011:15;17001:25;;16914:118;16863:169;;;;:::o;17037:295::-;17113:4;17259:29;17284:3;17278:4;17259:29;:::i;:::-;17251:37;;17321:3;17318:1;17314:11;17308:4;17305:21;17297:29;;17037:295;;;;:::o;17337:1395::-;17454:37;17487:3;17454:37;:::i;:::-;17556:18;17548:6;17545:30;17542:56;;;17578:18;;:::i;:::-;17542:56;17622:38;17654:4;17648:11;17622:38;:::i;:::-;17707:67;17767:6;17759;17753:4;17707:67;:::i;:::-;17801:1;17825:4;17812:17;;17857:2;17849:6;17846:14;17874:1;17869:618;;;;18531:1;18548:6;18545:77;;;18597:9;18592:3;18588:19;18582:26;18573:35;;18545:77;18648:67;18708:6;18701:5;18648:67;:::i;:::-;18642:4;18635:81;18504:222;17839:887;;17869:618;17921:4;17917:9;17909:6;17905:22;17955:37;17987:4;17955:37;:::i;:::-;18014:1;18028:208;18042:7;18039:1;18036:14;18028:208;;;18121:9;18116:3;18112:19;18106:26;18098:6;18091:42;18172:1;18164:6;18160:14;18150:24;;18219:2;18208:9;18204:18;18191:31;;18065:4;18062:1;18058:12;18053:17;;18028:208;;;18264:6;18255:7;18252:19;18249:179;;;18322:9;18317:3;18313:19;18307:26;18365:48;18407:4;18399:6;18395:17;18384:9;18365:48;:::i;:::-;18357:6;18350:64;18272:156;18249:179;18474:1;18470;18462:6;18458:14;18454:22;18448:4;18441:36;17876:611;;;17839:887;;17429:1303;;;17337:1395;;:::o;18738:180::-;18786:77;18783:1;18776:88;18883:4;18880:1;18873:15;18907:4;18904:1;18897:15;18924:305;18964:3;18983:20;19001:1;18983:20;:::i;:::-;18978:25;;19017:20;19035:1;19017:20;:::i;:::-;19012:25;;19171:1;19103:66;19099:74;19096:1;19093:81;19090:107;;;19177:18;;:::i;:::-;19090:107;19221:1;19218;19214:9;19207:16;;18924:305;;;;:::o;19235:165::-;19375:17;19371:1;19363:6;19359:14;19352:41;19235:165;:::o;19406:366::-;19548:3;19569:67;19633:2;19628:3;19569:67;:::i;:::-;19562:74;;19645:93;19734:3;19645:93;:::i;:::-;19763:2;19758:3;19754:12;19747:19;;19406:366;;;:::o;19778:419::-;19944:4;19982:2;19971:9;19967:18;19959:26;;20031:9;20025:4;20021:20;20017:1;20006:9;20002:17;19995:47;20059:131;20185:4;20059:131;:::i;:::-;20051:139;;19778:419;;;:::o;20203:348::-;20243:7;20266:20;20284:1;20266:20;:::i;:::-;20261:25;;20300:20;20318:1;20300:20;:::i;:::-;20295:25;;20488:1;20420:66;20416:74;20413:1;20410:81;20405:1;20398:9;20391:17;20387:105;20384:131;;;20495:18;;:::i;:::-;20384:131;20543:1;20540;20536:9;20525:20;;20203:348;;;;:::o;20557:179::-;20697:31;20693:1;20685:6;20681:14;20674:55;20557:179;:::o;20742:366::-;20884:3;20905:67;20969:2;20964:3;20905:67;:::i;:::-;20898:74;;20981:93;21070:3;20981:93;:::i;:::-;21099:2;21094:3;21090:12;21083:19;;20742:366;;;:::o;21114:419::-;21280:4;21318:2;21307:9;21303:18;21295:26;;21367:9;21361:4;21357:20;21353:1;21342:9;21338:17;21331:47;21395:131;21521:4;21395:131;:::i;:::-;21387:139;;21114:419;;;:::o;21539:225::-;21679:34;21675:1;21667:6;21663:14;21656:58;21748:8;21743:2;21735:6;21731:15;21724:33;21539:225;:::o;21770:366::-;21912:3;21933:67;21997:2;21992:3;21933:67;:::i;:::-;21926:74;;22009:93;22098:3;22009:93;:::i;:::-;22127:2;22122:3;22118:12;22111:19;;21770:366;;;:::o;22142:419::-;22308:4;22346:2;22335:9;22331:18;22323:26;;22395:9;22389:4;22385:20;22381:1;22370:9;22366:17;22359:47;22423:131;22549:4;22423:131;:::i;:::-;22415:139;;22142:419;;;:::o;22567:171::-;22707:23;22703:1;22695:6;22691:14;22684:47;22567:171;:::o;22744:366::-;22886:3;22907:67;22971:2;22966:3;22907:67;:::i;:::-;22900:74;;22983:93;23072:3;22983:93;:::i;:::-;23101:2;23096:3;23092:12;23085:19;;22744:366;;;:::o;23116:419::-;23282:4;23320:2;23309:9;23305:18;23297:26;;23369:9;23363:4;23359:20;23355:1;23344:9;23340:17;23333:47;23397:131;23523:4;23397:131;:::i;:::-;23389:139;;23116:419;;;:::o;23541:234::-;23681:34;23677:1;23669:6;23665:14;23658:58;23750:17;23745:2;23737:6;23733:15;23726:42;23541:234;:::o;23781:366::-;23923:3;23944:67;24008:2;24003:3;23944:67;:::i;:::-;23937:74;;24020:93;24109:3;24020:93;:::i;:::-;24138:2;24133:3;24129:12;24122:19;;23781:366;;;:::o;24153:419::-;24319:4;24357:2;24346:9;24342:18;24334:26;;24406:9;24400:4;24396:20;24392:1;24381:9;24377:17;24370:47;24434:131;24560:4;24434:131;:::i;:::-;24426:139;;24153:419;;;:::o;24578:148::-;24680:11;24717:3;24702:18;;24578:148;;;;:::o;24756:874::-;24859:3;24896:5;24890:12;24925:36;24951:9;24925:36;:::i;:::-;24977:89;25059:6;25054:3;24977:89;:::i;:::-;24970:96;;25097:1;25086:9;25082:17;25113:1;25108:166;;;;25288:1;25283:341;;;;25075:549;;25108:166;25192:4;25188:9;25177;25173:25;25168:3;25161:38;25254:6;25247:14;25240:22;25232:6;25228:35;25223:3;25219:45;25212:52;;25108:166;;25283:341;25350:38;25382:5;25350:38;:::i;:::-;25410:1;25424:154;25438:6;25435:1;25432:13;25424:154;;;25512:7;25506:14;25502:1;25497:3;25493:11;25486:35;25562:1;25553:7;25549:15;25538:26;;25460:4;25457:1;25453:12;25448:17;;25424:154;;;25607:6;25602:3;25598:16;25591:23;;25290:334;;25075:549;;24863:767;;24756:874;;;;:::o;25636:377::-;25742:3;25770:39;25803:5;25770:39;:::i;:::-;25825:89;25907:6;25902:3;25825:89;:::i;:::-;25818:96;;25923:52;25968:6;25963:3;25956:4;25949:5;25945:16;25923:52;:::i;:::-;26000:6;25995:3;25991:16;25984:23;;25746:267;25636:377;;;;:::o;26019:114::-;;:::o;26139:400::-;26299:3;26320:84;26402:1;26397:3;26320:84;:::i;:::-;26313:91;;26413:93;26502:3;26413:93;:::i;:::-;26531:1;26526:3;26522:11;26515:18;;26139:400;;;:::o;26545:695::-;26823:3;26845:92;26933:3;26924:6;26845:92;:::i;:::-;26838:99;;26954:95;27045:3;27036:6;26954:95;:::i;:::-;26947:102;;27066:148;27210:3;27066:148;:::i;:::-;27059:155;;27231:3;27224:10;;26545:695;;;;;:::o;27246:225::-;27386:34;27382:1;27374:6;27370:14;27363:58;27455:8;27450:2;27442:6;27438:15;27431:33;27246:225;:::o;27477:366::-;27619:3;27640:67;27704:2;27699:3;27640:67;:::i;:::-;27633:74;;27716:93;27805:3;27716:93;:::i;:::-;27834:2;27829:3;27825:12;27818:19;;27477:366;;;:::o;27849:419::-;28015:4;28053:2;28042:9;28038:18;28030:26;;28102:9;28096:4;28092:20;28088:1;28077:9;28073:17;28066:47;28130:131;28256:4;28130:131;:::i;:::-;28122:139;;27849:419;;;:::o;28274:182::-;28414:34;28410:1;28402:6;28398:14;28391:58;28274:182;:::o;28462:366::-;28604:3;28625:67;28689:2;28684:3;28625:67;:::i;:::-;28618:74;;28701:93;28790:3;28701:93;:::i;:::-;28819:2;28814:3;28810:12;28803:19;;28462:366;;;:::o;28834:419::-;29000:4;29038:2;29027:9;29023:18;29015:26;;29087:9;29081:4;29077:20;29073:1;29062:9;29058:17;29051:47;29115:131;29241:4;29115:131;:::i;:::-;29107:139;;28834:419;;;:::o;29259:98::-;29310:6;29344:5;29338:12;29328:22;;29259:98;;;:::o;29363:168::-;29446:11;29480:6;29475:3;29468:19;29520:4;29515:3;29511:14;29496:29;;29363:168;;;;:::o;29537:360::-;29623:3;29651:38;29683:5;29651:38;:::i;:::-;29705:70;29768:6;29763:3;29705:70;:::i;:::-;29698:77;;29784:52;29829:6;29824:3;29817:4;29810:5;29806:16;29784:52;:::i;:::-;29861:29;29883:6;29861:29;:::i;:::-;29856:3;29852:39;29845:46;;29627:270;29537:360;;;;:::o;29903:640::-;30098:4;30136:3;30125:9;30121:19;30113:27;;30150:71;30218:1;30207:9;30203:17;30194:6;30150:71;:::i;:::-;30231:72;30299:2;30288:9;30284:18;30275:6;30231:72;:::i;:::-;30313;30381:2;30370:9;30366:18;30357:6;30313:72;:::i;:::-;30432:9;30426:4;30422:20;30417:2;30406:9;30402:18;30395:48;30460:76;30531:4;30522:6;30460:76;:::i;:::-;30452:84;;29903:640;;;;;;;:::o;30549:141::-;30605:5;30636:6;30630:13;30621:22;;30652:32;30678:5;30652:32;:::i;:::-;30549:141;;;;:::o;30696:349::-;30765:6;30814:2;30802:9;30793:7;30789:23;30785:32;30782:119;;;30820:79;;:::i;:::-;30782:119;30940:1;30965:63;31020:7;31011:6;31000:9;30996:22;30965:63;:::i;:::-;30955:73;;30911:127;30696:349;;;;:::o

Swarm Source

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