ETH Price: $3,247.53 (+2.60%)
Gas: 2 Gwei

Token

Cat Balloon (BALLOON)
 

Overview

Max Total Supply

3,456 BALLOON

Holders

941

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 BALLOON
0xa98d8f5010447dd410be425135a523fa949e629e
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:
CatBalloon

Compiler Version
v0.8.16+commit.07a7930e

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-16
*/

// SPDX-License-Identifier: MIT
// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

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

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


pragma solidity ^0.8.13;


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

// File: contracts/CatBalloon.sol



pragma solidity ^0.8.0;





pragma solidity ^0.8.15;


contract CatBalloon is ERC721A, DefaultOperatorFilterer, Ownable {

    mapping (address => bool) public minterAddress;
    bool public mintIsOpen;
    string public baseURI;  
    string public baseExtension = ".json";
    uint256 public price = 0;
    uint256 public maxSupply = 3456;
    uint256 public teamSupply = 0;  
    uint256 public mintSupply = 3456;
    uint256 public MAX_MINTS = 2;
    mapping (address => uint256) public walletPublic;


    constructor () ERC721A("Cat Balloon", "BALLOON") {
        mintIsOpen = true;
    }

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

    // Mint
    function publicMint(uint256 qty) external payable
    {
        require(mintIsOpen , "Soon Balloon!");
        require(qty <= MAX_MINTS, "Meow, limit!");
        require(totalSupply() + qty <= mintSupply,"Meow, sold out!");
        require(msg.value >= qty * price,"No ETH!");
        walletPublic[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }

    function airdropToken(uint256[] calldata amount, address[] calldata owners) public onlyOwner {
        for(uint256 i = 0; i < owners.length; ++i) {            
            _safeMint(owners[i], amount[i]); // Minting of the token
        }
    }

    /////////////////////////////
    // CONTRACT MANAGEMENT 
    /////////////////////////////

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

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

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

    function withdrawFunds() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
        
	}
        function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
        
    }

        function setMaxMints(uint256 newMax) public onlyOwner {
        MAX_MINTS = newMax;

    }

        function setTeamSupply(uint256 maxTeam_) external onlyOwner {
        teamSupply = maxTeam_;
      
    }

        function teamMint(uint256 qty) external onlyOwner
    {
        _safeMint(msg.sender, qty);
    

    } 

    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

    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":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"amount","type":"uint256[]"},{"internalType":"address[]","name":"owners","type":"address[]"}],"name":"airdropToken","outputs":[],"stateMutability":"nonpayable","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintIsOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTeam_","type":"uint256"}],"name":"setTeamSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMint","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":"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"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90816200004a9190620006bc565b506000600d55610d80600e556000600f55610d8060105560026011553480156200007357600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600b81526020017f4361742042616c6c6f6f6e0000000000000000000000000000000000000000008152506040518060400160405280600781526020017f42414c4c4f4f4e000000000000000000000000000000000000000000000000008152508160029081620001089190620006bc565b5080600390816200011a9190620006bc565b506200012b6200036b60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000328578015620001ee576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001b4929190620007e8565b600060405180830381600087803b158015620001cf57600080fd5b505af1158015620001e4573d6000803e3d6000fd5b5050505062000327565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002a8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200026e929190620007e8565b600060405180830381600087803b1580156200028957600080fd5b505af11580156200029e573d6000803e3d6000fd5b5050505062000326565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002f1919062000815565b600060405180830381600087803b1580156200030c57600080fd5b505af115801562000321573d6000803e3d6000fd5b505050505b5b5b50506200034a6200033e6200037460201b60201c565b6200037c60201b60201c565b6001600a60006101000a81548160ff02191690831515021790555062000832565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004c457607f821691505b602082108103620004da57620004d96200047c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000505565b62000550868362000505565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200059d62000597620005918462000568565b62000572565b62000568565b9050919050565b6000819050919050565b620005b9836200057c565b620005d1620005c882620005a4565b84845462000512565b825550505050565b600090565b620005e8620005d9565b620005f5818484620005ae565b505050565b5b818110156200061d5762000611600082620005de565b600181019050620005fb565b5050565b601f8211156200066c576200063681620004e0565b6200064184620004f5565b8101602085101562000651578190505b620006696200066085620004f5565b830182620005fa565b50505b505050565b600082821c905092915050565b6000620006916000198460080262000671565b1980831691505092915050565b6000620006ac83836200067e565b9150826002028217905092915050565b620006c78262000442565b67ffffffffffffffff811115620006e357620006e26200044d565b5b620006ef8254620004ab565b620006fc82828562000621565b600060209050601f8311600181146200073457600084156200071f578287015190505b6200072b85826200069e565b8655506200079b565b601f1984166200074486620004e0565b60005b828110156200076e5784890151825560018201915060208501945060208101905062000747565b868310156200078e57848901516200078a601f8916826200067e565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007d082620007a3565b9050919050565b620007e281620007c3565b82525050565b6000604082019050620007ff6000830185620007d7565b6200080e6020830184620007d7565b9392505050565b60006020820190506200082c6000830184620007d7565b92915050565b6136fd80620008426000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063aa1152ab116100ab578063d3dd5fe01161006f578063d3dd5fe01461077e578063d5abeb0114610795578063e985e9c5146107c0578063f2fde38b146107fd578063f8f103dd146108265761021a565b8063aa1152ab146106a4578063b88d4fde146106cf578063c6682862146106eb578063c87b56dd14610716578063cce132d1146107535761021a565b80638da5cb5b116100f25780638da5cb5b146105d157806391b7f5ed146105fc57806395d89b4114610625578063a035b1fe14610650578063a22cb4651461067b5761021a565b806370a082311461052b578063715018a61461056857806379c9cb7b1461057f57806379ff6fee146105a85761021a565b80632be905ba116101a657806341f434341161017557806341f434341461045357806342842e0e1461047e57806355f804b31461049a5780636352211e146104c35780636c0360eb146105005761021a565b80632be905ba146103a65780632cfac6ec146103e35780632db115441461040e5780632fbba1151461042a5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806318160ddd1461030b57806322ae7f7b1461033657806323b872dd1461037357806324600fc31461038f5761021a565b806301ffc9a71461021f578063045b7dca1461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061267a565b61084f565b60405161025391906126c2565b60405180910390f35b34801561026857600080fd5b506102716108e1565b60405161027e91906126f6565b60405180910390f35b34801561029357600080fd5b5061029c6108e7565b6040516102a991906127a1565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906127ef565b610979565b6040516102e6919061285d565b60405180910390f35b610309600480360381019061030491906128a4565b6109f8565b005b34801561031757600080fd5b50610320610b02565b60405161032d91906126f6565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906128e4565b610b19565b60405161036a91906126c2565b60405180910390f35b61038d60048036038101906103889190612911565b610b39565b005b34801561039b57600080fd5b506103a4610c89565b005b3480156103b257600080fd5b506103cd60048036038101906103c891906128e4565b610cda565b6040516103da91906126f6565b60405180910390f35b3480156103ef57600080fd5b506103f8610cf2565b60405161040591906126f6565b60405180910390f35b610428600480360381019061042391906127ef565b610cf8565b005b34801561043657600080fd5b50610451600480360381019061044c91906127ef565b610e96565b005b34801561045f57600080fd5b50610468610eab565b60405161047591906129c3565b60405180910390f35b61049860048036038101906104939190612911565b610ebd565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190612b13565b61100d565b005b3480156104cf57600080fd5b506104ea60048036038101906104e591906127ef565b611028565b6040516104f7919061285d565b60405180910390f35b34801561050c57600080fd5b5061051561103a565b60405161052291906127a1565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d91906128e4565b6110c8565b60405161055f91906126f6565b60405180910390f35b34801561057457600080fd5b5061057d611180565b005b34801561058b57600080fd5b506105a660048036038101906105a191906127ef565b611194565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190612c12565b6111a6565b005b3480156105dd57600080fd5b506105e661121e565b6040516105f3919061285d565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e91906127ef565b611248565b005b34801561063157600080fd5b5061063a61125a565b60405161064791906127a1565b60405180910390f35b34801561065c57600080fd5b506106656112ec565b60405161067291906126f6565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190612cbf565b6112f2565b005b3480156106b057600080fd5b506106b96113fc565b6040516106c691906126c2565b60405180910390f35b6106e960048036038101906106e49190612da0565b61140f565b005b3480156106f757600080fd5b50610700611562565b60405161070d91906127a1565b60405180910390f35b34801561072257600080fd5b5061073d600480360381019061073891906127ef565b6115f0565b60405161074a91906127a1565b60405180910390f35b34801561075f57600080fd5b5061076861168e565b60405161077591906126f6565b60405180910390f35b34801561078a57600080fd5b50610793611694565b005b3480156107a157600080fd5b506107aa6116c8565b6040516107b791906126f6565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e29190612e23565b6116ce565b6040516107f491906126c2565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f91906128e4565b611762565b005b34801561083257600080fd5b5061084d600480360381019061084891906127ef565b6117e5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108aa57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108da5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60105481565b6060600280546108f690612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461092290612e92565b801561096f5780601f106109445761010080835404028352916020019161096f565b820191906000526020600020905b81548152906001019060200180831161095257829003601f168201915b5050505050905090565b6000610984826117f7565b6109ba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610af3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610a70929190612ec3565b602060405180830381865afa158015610a8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab19190612f01565b610af257806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ae9919061285d565b60405180910390fd5b5b610afd8383611856565b505050565b6000610b0c61199a565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c77573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bab57610ba68484846119a3565b610c83565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bf4929190612ec3565b602060405180830381865afa158015610c11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c359190612f01565b610c7657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c6d919061285d565b60405180910390fd5b5b610c828484846119a3565b5b50505050565b610c91611cc5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cd7573d6000803e3d6000fd5b50565b60126020528060005260406000206000915090505481565b600f5481565b600a60009054906101000a900460ff16610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90612f7a565b60405180910390fd5b601154811115610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390612fe6565b60405180910390fd5b60105481610d98610b02565b610da29190613035565b1115610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906130b5565b60405180910390fd5b600d5481610df191906130d5565b341015610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a9061317b565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e829190613035565b92505081905550610e933382611d43565b50565b610e9e611cc5565b610ea83382611d43565b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ffb573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f2f57610f2a848484611d61565b611007565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610f78929190612ec3565b602060405180830381865afa158015610f95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb99190612f01565b610ffa57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ff1919061285d565b60405180910390fd5b5b611006848484611d61565b5b50505050565b611015611cc5565b80600b9081611024919061333d565b5050565b600061103382611d81565b9050919050565b600b805461104790612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461107390612e92565b80156110c05780601f10611095576101008083540402835291602001916110c0565b820191906000526020600020905b8154815290600101906020018083116110a357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361112f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611188611cc5565b6111926000611e4d565b565b61119c611cc5565b8060118190555050565b6111ae611cc5565b60005b82829050811015611217576112068383838181106111d2576111d161340f565b5b90506020020160208101906111e791906128e4565b8686848181106111fa576111f961340f565b5b90506020020135611d43565b806112109061343e565b90506111b1565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611250611cc5565b80600d8190555050565b60606003805461126990612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461129590612e92565b80156112e25780601f106112b7576101008083540402835291602001916112e2565b820191906000526020600020905b8154815290600101906020018083116112c557829003601f168201915b5050505050905090565b600d5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113ed576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161136a929190612ec3565b602060405180830381865afa158015611387573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ab9190612f01565b6113ec57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113e3919061285d565b60405180910390fd5b5b6113f78383611f13565b505050565b600a60009054906101000a900460ff1681565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561154e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114825761147d8585858561201e565b61155b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016114cb929190612ec3565b602060405180830381865afa1580156114e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150c9190612f01565b61154d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611544919061285d565b60405180910390fd5b5b61155a8585858561201e565b5b5050505050565b600c805461156f90612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461159b90612e92565b80156115e85780601f106115bd576101008083540402835291602001916115e8565b820191906000526020600020905b8154815290600101906020018083116115cb57829003601f168201915b505050505081565b60606115fb826117f7565b611631576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061163b612091565b9050600081510361165b5760405180602001604052806000815250611686565b8061166584612123565b6040516020016116769291906134c2565b6040516020818303038152906040525b915050919050565b60115481565b61169c611cc5565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61176a611cc5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613558565b60405180910390fd5b6117e281611e4d565b50565b6117ed611cc5565b80600f8190555050565b60008161180261199a565b11158015611811575060005482105b801561184f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061186182611028565b90508073ffffffffffffffffffffffffffffffffffffffff16611882612173565b73ffffffffffffffffffffffffffffffffffffffff16146118e5576118ae816118a9612173565b6116ce565b6118e4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006119ae82611d81565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a15576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a218461217b565b91509150611a378187611a32612173565b6121a2565b611a8357611a4c86611a47612173565b6116ce565b611a82576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611ae9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611af686868660016121e6565b8015611b0157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611bcf85611bab8888876121ec565b7c020000000000000000000000000000000000000000000000000000000017612214565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611c555760006001850190506000600460008381526020019081526020016000205403611c53576000548114611c52578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cbd868686600161223f565b505050505050565b611ccd612245565b73ffffffffffffffffffffffffffffffffffffffff16611ceb61121e565b73ffffffffffffffffffffffffffffffffffffffff1614611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d38906135c4565b60405180910390fd5b565b611d5d82826040518060200160405280600081525061224d565b5050565b611d7c8383836040518060200160405280600081525061140f565b505050565b60008082905080611d9061199a565b11611e1657600054811015611e155760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e13575b60008103611e09576004600083600190039350838152602001908152602001600020549050611ddf565b8092505050611e48565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611f20612173565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fcd612173565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161201291906126c2565b60405180910390a35050565b612029848484610b39565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461208b57612054848484846122ea565b61208a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b80546120a090612e92565b80601f01602080910402602001604051908101604052809291908181526020018280546120cc90612e92565b80156121195780601f106120ee57610100808354040283529160200191612119565b820191906000526020600020905b8154815290600101906020018083116120fc57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561215e57600184039350600a81066030018453600a810490508061213c575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861220386868461243a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6122578383612443565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122e557600080549050600083820390505b61229760008683806001019450866122ea565b6122cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122845781600054146122e257600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612310612173565b8786866040518563ffffffff1660e01b81526004016123329493929190613639565b6020604051808303816000875af192505050801561236e57506040513d601f19601f8201168201806040525081019061236b919061369a565b60015b6123e7573d806000811461239e576040519150601f19603f3d011682016040523d82523d6000602084013e6123a3565b606091505b5060008151036123df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612483576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61249060008483856121e6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612507836124f860008660006121ec565b612501856125fe565b17612214565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125a857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061256d565b50600082036125e3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125f9600084838561223f565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61265781612622565b811461266257600080fd5b50565b6000813590506126748161264e565b92915050565b6000602082840312156126905761268f612618565b5b600061269e84828501612665565b91505092915050565b60008115159050919050565b6126bc816126a7565b82525050565b60006020820190506126d760008301846126b3565b92915050565b6000819050919050565b6126f0816126dd565b82525050565b600060208201905061270b60008301846126e7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561274b578082015181840152602081019050612730565b60008484015250505050565b6000601f19601f8301169050919050565b600061277382612711565b61277d818561271c565b935061278d81856020860161272d565b61279681612757565b840191505092915050565b600060208201905081810360008301526127bb8184612768565b905092915050565b6127cc816126dd565b81146127d757600080fd5b50565b6000813590506127e9816127c3565b92915050565b60006020828403121561280557612804612618565b5b6000612813848285016127da565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128478261281c565b9050919050565b6128578161283c565b82525050565b6000602082019050612872600083018461284e565b92915050565b6128818161283c565b811461288c57600080fd5b50565b60008135905061289e81612878565b92915050565b600080604083850312156128bb576128ba612618565b5b60006128c98582860161288f565b92505060206128da858286016127da565b9150509250929050565b6000602082840312156128fa576128f9612618565b5b60006129088482850161288f565b91505092915050565b60008060006060848603121561292a57612929612618565b5b60006129388682870161288f565b93505060206129498682870161288f565b925050604061295a868287016127da565b9150509250925092565b6000819050919050565b600061298961298461297f8461281c565b612964565b61281c565b9050919050565b600061299b8261296e565b9050919050565b60006129ad82612990565b9050919050565b6129bd816129a2565b82525050565b60006020820190506129d860008301846129b4565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a2082612757565b810181811067ffffffffffffffff82111715612a3f57612a3e6129e8565b5b80604052505050565b6000612a5261260e565b9050612a5e8282612a17565b919050565b600067ffffffffffffffff821115612a7e57612a7d6129e8565b5b612a8782612757565b9050602081019050919050565b82818337600083830152505050565b6000612ab6612ab184612a63565b612a48565b905082815260208101848484011115612ad257612ad16129e3565b5b612add848285612a94565b509392505050565b600082601f830112612afa57612af96129de565b5b8135612b0a848260208601612aa3565b91505092915050565b600060208284031215612b2957612b28612618565b5b600082013567ffffffffffffffff811115612b4757612b4661261d565b5b612b5384828501612ae5565b91505092915050565b600080fd5b600080fd5b60008083601f840112612b7c57612b7b6129de565b5b8235905067ffffffffffffffff811115612b9957612b98612b5c565b5b602083019150836020820283011115612bb557612bb4612b61565b5b9250929050565b60008083601f840112612bd257612bd16129de565b5b8235905067ffffffffffffffff811115612bef57612bee612b5c565b5b602083019150836020820283011115612c0b57612c0a612b61565b5b9250929050565b60008060008060408587031215612c2c57612c2b612618565b5b600085013567ffffffffffffffff811115612c4a57612c4961261d565b5b612c5687828801612b66565b9450945050602085013567ffffffffffffffff811115612c7957612c7861261d565b5b612c8587828801612bbc565b925092505092959194509250565b612c9c816126a7565b8114612ca757600080fd5b50565b600081359050612cb981612c93565b92915050565b60008060408385031215612cd657612cd5612618565b5b6000612ce48582860161288f565b9250506020612cf585828601612caa565b9150509250929050565b600067ffffffffffffffff821115612d1a57612d196129e8565b5b612d2382612757565b9050602081019050919050565b6000612d43612d3e84612cff565b612a48565b905082815260208101848484011115612d5f57612d5e6129e3565b5b612d6a848285612a94565b509392505050565b600082601f830112612d8757612d866129de565b5b8135612d97848260208601612d30565b91505092915050565b60008060008060808587031215612dba57612db9612618565b5b6000612dc88782880161288f565b9450506020612dd98782880161288f565b9350506040612dea878288016127da565b925050606085013567ffffffffffffffff811115612e0b57612e0a61261d565b5b612e1787828801612d72565b91505092959194509250565b60008060408385031215612e3a57612e39612618565b5b6000612e488582860161288f565b9250506020612e598582860161288f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eaa57607f821691505b602082108103612ebd57612ebc612e63565b5b50919050565b6000604082019050612ed8600083018561284e565b612ee5602083018461284e565b9392505050565b600081519050612efb81612c93565b92915050565b600060208284031215612f1757612f16612618565b5b6000612f2584828501612eec565b91505092915050565b7f536f6f6e2042616c6c6f6f6e2100000000000000000000000000000000000000600082015250565b6000612f64600d8361271c565b9150612f6f82612f2e565b602082019050919050565b60006020820190508181036000830152612f9381612f57565b9050919050565b7f4d656f772c206c696d6974210000000000000000000000000000000000000000600082015250565b6000612fd0600c8361271c565b9150612fdb82612f9a565b602082019050919050565b60006020820190508181036000830152612fff81612fc3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613040826126dd565b915061304b836126dd565b925082820190508082111561306357613062613006565b5b92915050565b7f4d656f772c20736f6c64206f7574210000000000000000000000000000000000600082015250565b600061309f600f8361271c565b91506130aa82613069565b602082019050919050565b600060208201905081810360008301526130ce81613092565b9050919050565b60006130e0826126dd565b91506130eb836126dd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561312457613123613006565b5b828202905092915050565b7f4e6f204554482100000000000000000000000000000000000000000000000000600082015250565b600061316560078361271c565b91506131708261312f565b602082019050919050565b6000602082019050818103600083015261319481613158565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131fd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131c0565b61320786836131c0565b95508019841693508086168417925050509392505050565b600061323a613235613230846126dd565b612964565b6126dd565b9050919050565b6000819050919050565b6132548361321f565b61326861326082613241565b8484546131cd565b825550505050565b600090565b61327d613270565b61328881848461324b565b505050565b5b818110156132ac576132a1600082613275565b60018101905061328e565b5050565b601f8211156132f1576132c28161319b565b6132cb846131b0565b810160208510156132da578190505b6132ee6132e6856131b0565b83018261328d565b50505b505050565b600082821c905092915050565b6000613314600019846008026132f6565b1980831691505092915050565b600061332d8383613303565b9150826002028217905092915050565b61334682612711565b67ffffffffffffffff81111561335f5761335e6129e8565b5b6133698254612e92565b6133748282856132b0565b600060209050601f8311600181146133a75760008415613395578287015190505b61339f8582613321565b865550613407565b601f1984166133b58661319b565b60005b828110156133dd578489015182556001820191506020850194506020810190506133b8565b868310156133fa57848901516133f6601f891682613303565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613449826126dd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361347b5761347a613006565b5b600182019050919050565b600081905092915050565b600061349c82612711565b6134a68185613486565b93506134b681856020860161272d565b80840191505092915050565b60006134ce8285613491565b91506134da8284613491565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061354260268361271c565b915061354d826134e6565b604082019050919050565b6000602082019050818103600083015261357181613535565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135ae60208361271c565b91506135b982613578565b602082019050919050565b600060208201905081810360008301526135dd816135a1565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061360b826135e4565b61361581856135ef565b935061362581856020860161272d565b61362e81612757565b840191505092915050565b600060808201905061364e600083018761284e565b61365b602083018661284e565b61366860408301856126e7565b818103606083015261367a8184613600565b905095945050505050565b6000815190506136948161264e565b92915050565b6000602082840312156136b0576136af612618565b5b60006136be84828501613685565b9150509291505056fea2646970667358221220339882ef814d5ddc5cd280a6825ca28b5085a46858640f98531f7e1dc603d28064736f6c63430008100033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063aa1152ab116100ab578063d3dd5fe01161006f578063d3dd5fe01461077e578063d5abeb0114610795578063e985e9c5146107c0578063f2fde38b146107fd578063f8f103dd146108265761021a565b8063aa1152ab146106a4578063b88d4fde146106cf578063c6682862146106eb578063c87b56dd14610716578063cce132d1146107535761021a565b80638da5cb5b116100f25780638da5cb5b146105d157806391b7f5ed146105fc57806395d89b4114610625578063a035b1fe14610650578063a22cb4651461067b5761021a565b806370a082311461052b578063715018a61461056857806379c9cb7b1461057f57806379ff6fee146105a85761021a565b80632be905ba116101a657806341f434341161017557806341f434341461045357806342842e0e1461047e57806355f804b31461049a5780636352211e146104c35780636c0360eb146105005761021a565b80632be905ba146103a65780632cfac6ec146103e35780632db115441461040e5780632fbba1151461042a5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806318160ddd1461030b57806322ae7f7b1461033657806323b872dd1461037357806324600fc31461038f5761021a565b806301ffc9a71461021f578063045b7dca1461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061267a565b61084f565b60405161025391906126c2565b60405180910390f35b34801561026857600080fd5b506102716108e1565b60405161027e91906126f6565b60405180910390f35b34801561029357600080fd5b5061029c6108e7565b6040516102a991906127a1565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906127ef565b610979565b6040516102e6919061285d565b60405180910390f35b610309600480360381019061030491906128a4565b6109f8565b005b34801561031757600080fd5b50610320610b02565b60405161032d91906126f6565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906128e4565b610b19565b60405161036a91906126c2565b60405180910390f35b61038d60048036038101906103889190612911565b610b39565b005b34801561039b57600080fd5b506103a4610c89565b005b3480156103b257600080fd5b506103cd60048036038101906103c891906128e4565b610cda565b6040516103da91906126f6565b60405180910390f35b3480156103ef57600080fd5b506103f8610cf2565b60405161040591906126f6565b60405180910390f35b610428600480360381019061042391906127ef565b610cf8565b005b34801561043657600080fd5b50610451600480360381019061044c91906127ef565b610e96565b005b34801561045f57600080fd5b50610468610eab565b60405161047591906129c3565b60405180910390f35b61049860048036038101906104939190612911565b610ebd565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190612b13565b61100d565b005b3480156104cf57600080fd5b506104ea60048036038101906104e591906127ef565b611028565b6040516104f7919061285d565b60405180910390f35b34801561050c57600080fd5b5061051561103a565b60405161052291906127a1565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d91906128e4565b6110c8565b60405161055f91906126f6565b60405180910390f35b34801561057457600080fd5b5061057d611180565b005b34801561058b57600080fd5b506105a660048036038101906105a191906127ef565b611194565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190612c12565b6111a6565b005b3480156105dd57600080fd5b506105e661121e565b6040516105f3919061285d565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e91906127ef565b611248565b005b34801561063157600080fd5b5061063a61125a565b60405161064791906127a1565b60405180910390f35b34801561065c57600080fd5b506106656112ec565b60405161067291906126f6565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190612cbf565b6112f2565b005b3480156106b057600080fd5b506106b96113fc565b6040516106c691906126c2565b60405180910390f35b6106e960048036038101906106e49190612da0565b61140f565b005b3480156106f757600080fd5b50610700611562565b60405161070d91906127a1565b60405180910390f35b34801561072257600080fd5b5061073d600480360381019061073891906127ef565b6115f0565b60405161074a91906127a1565b60405180910390f35b34801561075f57600080fd5b5061076861168e565b60405161077591906126f6565b60405180910390f35b34801561078a57600080fd5b50610793611694565b005b3480156107a157600080fd5b506107aa6116c8565b6040516107b791906126f6565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e29190612e23565b6116ce565b6040516107f491906126c2565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f91906128e4565b611762565b005b34801561083257600080fd5b5061084d600480360381019061084891906127ef565b6117e5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108aa57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108da5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60105481565b6060600280546108f690612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461092290612e92565b801561096f5780601f106109445761010080835404028352916020019161096f565b820191906000526020600020905b81548152906001019060200180831161095257829003601f168201915b5050505050905090565b6000610984826117f7565b6109ba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610af3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610a70929190612ec3565b602060405180830381865afa158015610a8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab19190612f01565b610af257806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ae9919061285d565b60405180910390fd5b5b610afd8383611856565b505050565b6000610b0c61199a565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c77573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bab57610ba68484846119a3565b610c83565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bf4929190612ec3565b602060405180830381865afa158015610c11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c359190612f01565b610c7657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c6d919061285d565b60405180910390fd5b5b610c828484846119a3565b5b50505050565b610c91611cc5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cd7573d6000803e3d6000fd5b50565b60126020528060005260406000206000915090505481565b600f5481565b600a60009054906101000a900460ff16610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90612f7a565b60405180910390fd5b601154811115610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390612fe6565b60405180910390fd5b60105481610d98610b02565b610da29190613035565b1115610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906130b5565b60405180910390fd5b600d5481610df191906130d5565b341015610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a9061317b565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e829190613035565b92505081905550610e933382611d43565b50565b610e9e611cc5565b610ea83382611d43565b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ffb573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f2f57610f2a848484611d61565b611007565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610f78929190612ec3565b602060405180830381865afa158015610f95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb99190612f01565b610ffa57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ff1919061285d565b60405180910390fd5b5b611006848484611d61565b5b50505050565b611015611cc5565b80600b9081611024919061333d565b5050565b600061103382611d81565b9050919050565b600b805461104790612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461107390612e92565b80156110c05780601f10611095576101008083540402835291602001916110c0565b820191906000526020600020905b8154815290600101906020018083116110a357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361112f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611188611cc5565b6111926000611e4d565b565b61119c611cc5565b8060118190555050565b6111ae611cc5565b60005b82829050811015611217576112068383838181106111d2576111d161340f565b5b90506020020160208101906111e791906128e4565b8686848181106111fa576111f961340f565b5b90506020020135611d43565b806112109061343e565b90506111b1565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611250611cc5565b80600d8190555050565b60606003805461126990612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461129590612e92565b80156112e25780601f106112b7576101008083540402835291602001916112e2565b820191906000526020600020905b8154815290600101906020018083116112c557829003601f168201915b5050505050905090565b600d5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113ed576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161136a929190612ec3565b602060405180830381865afa158015611387573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ab9190612f01565b6113ec57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113e3919061285d565b60405180910390fd5b5b6113f78383611f13565b505050565b600a60009054906101000a900460ff1681565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561154e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114825761147d8585858561201e565b61155b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016114cb929190612ec3565b602060405180830381865afa1580156114e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150c9190612f01565b61154d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611544919061285d565b60405180910390fd5b5b61155a8585858561201e565b5b5050505050565b600c805461156f90612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461159b90612e92565b80156115e85780601f106115bd576101008083540402835291602001916115e8565b820191906000526020600020905b8154815290600101906020018083116115cb57829003601f168201915b505050505081565b60606115fb826117f7565b611631576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061163b612091565b9050600081510361165b5760405180602001604052806000815250611686565b8061166584612123565b6040516020016116769291906134c2565b6040516020818303038152906040525b915050919050565b60115481565b61169c611cc5565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61176a611cc5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613558565b60405180910390fd5b6117e281611e4d565b50565b6117ed611cc5565b80600f8190555050565b60008161180261199a565b11158015611811575060005482105b801561184f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061186182611028565b90508073ffffffffffffffffffffffffffffffffffffffff16611882612173565b73ffffffffffffffffffffffffffffffffffffffff16146118e5576118ae816118a9612173565b6116ce565b6118e4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006119ae82611d81565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a15576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a218461217b565b91509150611a378187611a32612173565b6121a2565b611a8357611a4c86611a47612173565b6116ce565b611a82576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611ae9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611af686868660016121e6565b8015611b0157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611bcf85611bab8888876121ec565b7c020000000000000000000000000000000000000000000000000000000017612214565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611c555760006001850190506000600460008381526020019081526020016000205403611c53576000548114611c52578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cbd868686600161223f565b505050505050565b611ccd612245565b73ffffffffffffffffffffffffffffffffffffffff16611ceb61121e565b73ffffffffffffffffffffffffffffffffffffffff1614611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d38906135c4565b60405180910390fd5b565b611d5d82826040518060200160405280600081525061224d565b5050565b611d7c8383836040518060200160405280600081525061140f565b505050565b60008082905080611d9061199a565b11611e1657600054811015611e155760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e13575b60008103611e09576004600083600190039350838152602001908152602001600020549050611ddf565b8092505050611e48565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611f20612173565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fcd612173565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161201291906126c2565b60405180910390a35050565b612029848484610b39565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461208b57612054848484846122ea565b61208a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b80546120a090612e92565b80601f01602080910402602001604051908101604052809291908181526020018280546120cc90612e92565b80156121195780601f106120ee57610100808354040283529160200191612119565b820191906000526020600020905b8154815290600101906020018083116120fc57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561215e57600184039350600a81066030018453600a810490508061213c575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861220386868461243a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6122578383612443565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122e557600080549050600083820390505b61229760008683806001019450866122ea565b6122cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122845781600054146122e257600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612310612173565b8786866040518563ffffffff1660e01b81526004016123329493929190613639565b6020604051808303816000875af192505050801561236e57506040513d601f19601f8201168201806040525081019061236b919061369a565b60015b6123e7573d806000811461239e576040519150601f19603f3d011682016040523d82523d6000602084013e6123a3565b606091505b5060008151036123df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612483576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61249060008483856121e6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612507836124f860008660006121ec565b612501856125fe565b17612214565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125a857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061256d565b50600082036125e3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125f9600084838561223f565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61265781612622565b811461266257600080fd5b50565b6000813590506126748161264e565b92915050565b6000602082840312156126905761268f612618565b5b600061269e84828501612665565b91505092915050565b60008115159050919050565b6126bc816126a7565b82525050565b60006020820190506126d760008301846126b3565b92915050565b6000819050919050565b6126f0816126dd565b82525050565b600060208201905061270b60008301846126e7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561274b578082015181840152602081019050612730565b60008484015250505050565b6000601f19601f8301169050919050565b600061277382612711565b61277d818561271c565b935061278d81856020860161272d565b61279681612757565b840191505092915050565b600060208201905081810360008301526127bb8184612768565b905092915050565b6127cc816126dd565b81146127d757600080fd5b50565b6000813590506127e9816127c3565b92915050565b60006020828403121561280557612804612618565b5b6000612813848285016127da565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128478261281c565b9050919050565b6128578161283c565b82525050565b6000602082019050612872600083018461284e565b92915050565b6128818161283c565b811461288c57600080fd5b50565b60008135905061289e81612878565b92915050565b600080604083850312156128bb576128ba612618565b5b60006128c98582860161288f565b92505060206128da858286016127da565b9150509250929050565b6000602082840312156128fa576128f9612618565b5b60006129088482850161288f565b91505092915050565b60008060006060848603121561292a57612929612618565b5b60006129388682870161288f565b93505060206129498682870161288f565b925050604061295a868287016127da565b9150509250925092565b6000819050919050565b600061298961298461297f8461281c565b612964565b61281c565b9050919050565b600061299b8261296e565b9050919050565b60006129ad82612990565b9050919050565b6129bd816129a2565b82525050565b60006020820190506129d860008301846129b4565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a2082612757565b810181811067ffffffffffffffff82111715612a3f57612a3e6129e8565b5b80604052505050565b6000612a5261260e565b9050612a5e8282612a17565b919050565b600067ffffffffffffffff821115612a7e57612a7d6129e8565b5b612a8782612757565b9050602081019050919050565b82818337600083830152505050565b6000612ab6612ab184612a63565b612a48565b905082815260208101848484011115612ad257612ad16129e3565b5b612add848285612a94565b509392505050565b600082601f830112612afa57612af96129de565b5b8135612b0a848260208601612aa3565b91505092915050565b600060208284031215612b2957612b28612618565b5b600082013567ffffffffffffffff811115612b4757612b4661261d565b5b612b5384828501612ae5565b91505092915050565b600080fd5b600080fd5b60008083601f840112612b7c57612b7b6129de565b5b8235905067ffffffffffffffff811115612b9957612b98612b5c565b5b602083019150836020820283011115612bb557612bb4612b61565b5b9250929050565b60008083601f840112612bd257612bd16129de565b5b8235905067ffffffffffffffff811115612bef57612bee612b5c565b5b602083019150836020820283011115612c0b57612c0a612b61565b5b9250929050565b60008060008060408587031215612c2c57612c2b612618565b5b600085013567ffffffffffffffff811115612c4a57612c4961261d565b5b612c5687828801612b66565b9450945050602085013567ffffffffffffffff811115612c7957612c7861261d565b5b612c8587828801612bbc565b925092505092959194509250565b612c9c816126a7565b8114612ca757600080fd5b50565b600081359050612cb981612c93565b92915050565b60008060408385031215612cd657612cd5612618565b5b6000612ce48582860161288f565b9250506020612cf585828601612caa565b9150509250929050565b600067ffffffffffffffff821115612d1a57612d196129e8565b5b612d2382612757565b9050602081019050919050565b6000612d43612d3e84612cff565b612a48565b905082815260208101848484011115612d5f57612d5e6129e3565b5b612d6a848285612a94565b509392505050565b600082601f830112612d8757612d866129de565b5b8135612d97848260208601612d30565b91505092915050565b60008060008060808587031215612dba57612db9612618565b5b6000612dc88782880161288f565b9450506020612dd98782880161288f565b9350506040612dea878288016127da565b925050606085013567ffffffffffffffff811115612e0b57612e0a61261d565b5b612e1787828801612d72565b91505092959194509250565b60008060408385031215612e3a57612e39612618565b5b6000612e488582860161288f565b9250506020612e598582860161288f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eaa57607f821691505b602082108103612ebd57612ebc612e63565b5b50919050565b6000604082019050612ed8600083018561284e565b612ee5602083018461284e565b9392505050565b600081519050612efb81612c93565b92915050565b600060208284031215612f1757612f16612618565b5b6000612f2584828501612eec565b91505092915050565b7f536f6f6e2042616c6c6f6f6e2100000000000000000000000000000000000000600082015250565b6000612f64600d8361271c565b9150612f6f82612f2e565b602082019050919050565b60006020820190508181036000830152612f9381612f57565b9050919050565b7f4d656f772c206c696d6974210000000000000000000000000000000000000000600082015250565b6000612fd0600c8361271c565b9150612fdb82612f9a565b602082019050919050565b60006020820190508181036000830152612fff81612fc3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613040826126dd565b915061304b836126dd565b925082820190508082111561306357613062613006565b5b92915050565b7f4d656f772c20736f6c64206f7574210000000000000000000000000000000000600082015250565b600061309f600f8361271c565b91506130aa82613069565b602082019050919050565b600060208201905081810360008301526130ce81613092565b9050919050565b60006130e0826126dd565b91506130eb836126dd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561312457613123613006565b5b828202905092915050565b7f4e6f204554482100000000000000000000000000000000000000000000000000600082015250565b600061316560078361271c565b91506131708261312f565b602082019050919050565b6000602082019050818103600083015261319481613158565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131fd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131c0565b61320786836131c0565b95508019841693508086168417925050509392505050565b600061323a613235613230846126dd565b612964565b6126dd565b9050919050565b6000819050919050565b6132548361321f565b61326861326082613241565b8484546131cd565b825550505050565b600090565b61327d613270565b61328881848461324b565b505050565b5b818110156132ac576132a1600082613275565b60018101905061328e565b5050565b601f8211156132f1576132c28161319b565b6132cb846131b0565b810160208510156132da578190505b6132ee6132e6856131b0565b83018261328d565b50505b505050565b600082821c905092915050565b6000613314600019846008026132f6565b1980831691505092915050565b600061332d8383613303565b9150826002028217905092915050565b61334682612711565b67ffffffffffffffff81111561335f5761335e6129e8565b5b6133698254612e92565b6133748282856132b0565b600060209050601f8311600181146133a75760008415613395578287015190505b61339f8582613321565b865550613407565b601f1984166133b58661319b565b60005b828110156133dd578489015182556001820191506020850194506020810190506133b8565b868310156133fa57848901516133f6601f891682613303565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613449826126dd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361347b5761347a613006565b5b600182019050919050565b600081905092915050565b600061349c82612711565b6134a68185613486565b93506134b681856020860161272d565b80840191505092915050565b60006134ce8285613491565b91506134da8284613491565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061354260268361271c565b915061354d826134e6565b604082019050919050565b6000602082019050818103600083015261357181613535565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135ae60208361271c565b91506135b982613578565b602082019050919050565b600060208201905081810360008301526135dd816135a1565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061360b826135e4565b61361581856135ef565b935061362581856020860161272d565b61362e81612757565b840191505092915050565b600060808201905061364e600083018761284e565b61365b602083018661284e565b61366860408301856126e7565b818103606083015261367a8184613600565b905095945050505050565b6000815190506136948161264e565b92915050565b6000602082840312156136b0576136af612618565b5b60006136be84828501613685565b9150509291505056fea2646970667358221220339882ef814d5ddc5cd280a6825ca28b5085a46858640f98531f7e1dc603d28064736f6c63430008100033

Deployed Bytecode Sourcemap

64014:3382:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24338:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64351:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25240:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31731:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66609:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20991:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64088:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66782:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65733:113;;;;;;;;;;;;;:::i;:::-;;64425:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64313:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64699:367;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66203:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3120:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66961:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65856:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26633:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64170:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22175:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63091:103;;;;;;;;;;;;;:::i;:::-;;65978:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65074:248;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62443:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65521:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25416:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64244:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66425:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64141:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67148:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64200:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25626:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64390:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65431:82;;;;;;;;;;;;;:::i;:::-;;64275:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32680:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63349:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66083:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24338:639;24423:4;24762:10;24747:25;;:11;:25;;;;:102;;;;24839:10;24824:25;;:11;:25;;;;24747:102;:179;;;;24916:10;24901:25;;:11;:25;;;;24747:179;24727:199;;24338:639;;;:::o;64351:32::-;;;;:::o;25240:100::-;25294:13;25327:5;25320:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25240:100;:::o;31731:218::-;31807:7;31832:16;31840:7;31832;:16::i;:::-;31827:64;;31857:34;;;;;;;;;;;;;;31827:64;31911:15;:24;31927:7;31911:24;;;;;;;;;;;:30;;;;;;;;;;;;31904:37;;31731:218;;;:::o;66609:165::-;66713:8;5162:1;3220:42;5114:45;;;:49;5110:225;;;3220:42;5185;;;5236:4;5243:8;5185:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5180:144;;5299:8;5280:28;;;;;;;;;;;:::i;:::-;;;;;;;;5180:144;5110:225;66734:32:::1;66748:8;66758:7;66734:13;:32::i;:::-;66609:165:::0;;;:::o;20991:323::-;21052:7;21280:15;:13;:15::i;:::-;21265:12;;21249:13;;:28;:46;21242:53;;20991:323;:::o;64088:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;66782:171::-;66891:4;4416:1;3220:42;4368:45;;;:49;4364:539;;;4657:10;4649:18;;:4;:18;;;4645:85;;66908:37:::1;66927:4;66933:2;66937:7;66908:18;:37::i;:::-;4708:7:::0;;4645:85;3220:42;4749;;;4800:4;4807:10;4749:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4744:148;;4865:10;4846:30;;;;;;;;;;;:::i;:::-;;;;;;;;4744:148;4364:539;66908:37:::1;66927:4;66933:2;66937:7;66908:18;:37::i;:::-;66782:171:::0;;;;;:::o;65733:113::-;62329:13;:11;:13::i;:::-;65788:10:::1;65780:28;;:51;65809:21;65780:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65733:113::o:0;64425:48::-;;;;;;;;;;;;;;;;;:::o;64313:29::-;;;;:::o;64699:367::-;64773:10;;;;;;;;;;;64765:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;64828:9;;64821:3;:16;;64813:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;64896:10;;64889:3;64873:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:33;;64865:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;64963:5;;64957:3;:11;;;;:::i;:::-;64944:9;:24;;64936:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;65018:3;64990:12;:24;65003:10;64990:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;65032:26;65042:10;65054:3;65032:9;:26::i;:::-;64699:367;:::o;66203:108::-;62329:13;:11;:13::i;:::-;66269:26:::1;66279:10;66291:3;66269:9;:26::i;:::-;66203:108:::0;:::o;3120:143::-;3220:42;3120:143;:::o;66961:179::-;67074:4;4416:1;3220:42;4368:45;;;:49;4364:539;;;4657:10;4649:18;;:4;:18;;;4645:85;;67091:41:::1;67114:4;67120:2;67124:7;67091:22;:41::i;:::-;4708:7:::0;;4645:85;3220:42;4749;;;4800:4;4807:10;4749:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4744:148;;4865:10;4846:30;;;;;;;;;;;:::i;:::-;;;;;;;;4744:148;4364:539;67091:41:::1;67114:4;67120:2;67124:7;67091:22;:41::i;:::-;66961:179:::0;;;;;:::o;65856:110::-;62329:13;:11;:13::i;:::-;65940:8:::1;65930:7;:18;;;;;;:::i;:::-;;65856:110:::0;:::o;26633:152::-;26705:7;26748:27;26767:7;26748:18;:27::i;:::-;26725:52;;26633:152;;;:::o;64170:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22175:233::-;22247:7;22288:1;22271:19;;:5;:19;;;22267:60;;22299:28;;;;;;;;;;;;;;22267:60;16334:13;22345:18;:25;22364:5;22345:25;;;;;;;;;;;;;;;;:55;22338:62;;22175:233;;;:::o;63091:103::-;62329:13;:11;:13::i;:::-;63156:30:::1;63183:1;63156:18;:30::i;:::-;63091:103::o:0;65978:93::-;62329:13;:11;:13::i;:::-;66055:6:::1;66043:9;:18;;;;65978:93:::0;:::o;65074:248::-;62329:13;:11;:13::i;:::-;65182:9:::1;65178:137;65201:6;;:13;;65197:1;:17;65178:137;;;65248:31;65258:6;;65265:1;65258:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;65269:6;;65276:1;65269:9;;;;;;;:::i;:::-;;;;;;;;65248;:31::i;:::-;65216:3;;;;:::i;:::-;;;65178:137;;;;65074:248:::0;;;;:::o;62443:87::-;62489:7;62516:6;;;;;;;;;;;62509:13;;62443:87;:::o;65521:88::-;62329:13;:11;:13::i;:::-;65593:8:::1;65585:5;:16;;;;65521:88:::0;:::o;25416:104::-;25472:13;25505:7;25498:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25416:104;:::o;64244:24::-;;;;:::o;66425:176::-;66529:8;5162:1;3220:42;5114:45;;;:49;5110:225;;;3220:42;5185;;;5236:4;5243:8;5185:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5180:144;;5299:8;5280:28;;;;;;;;;;;:::i;:::-;;;;;;;;5180:144;5110:225;66550:43:::1;66574:8;66584;66550:23;:43::i;:::-;66425:176:::0;;;:::o;64141:22::-;;;;;;;;;;;;;:::o;67148:245::-;67316:4;4416:1;3220:42;4368:45;;;:49;4364:539;;;4657:10;4649:18;;:4;:18;;;4645:85;;67338:47:::1;67361:4;67367:2;67371:7;67380:4;67338:22;:47::i;:::-;4708:7:::0;;4645:85;3220:42;4749;;;4800:4;4807:10;4749:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4744:148;;4865:10;4846:30;;;;;;;;;;;:::i;:::-;;;;;;;;4744:148;4364:539;67338:47:::1;67361:4;67367:2;67371:7;67380:4;67338:22;:47::i;:::-;67148:245:::0;;;;;;:::o;64200:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25626:318::-;25699:13;25730:16;25738:7;25730;:16::i;:::-;25725:59;;25755:29;;;;;;;;;;;;;;25725:59;25797:21;25821:10;:8;:10::i;:::-;25797:34;;25874:1;25855:7;25849:21;:26;:87;;;;;;;;;;;;;;;;;25902:7;25911:18;25921:7;25911:9;:18::i;:::-;25885:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25849:87;25842:94;;;25626:318;;;:::o;64390:28::-;;;;:::o;65431:82::-;62329:13;:11;:13::i;:::-;65495:10:::1;;;;;;;;;;;65494:11;65481:10;;:24;;;;;;;;;;;;;;;;;;65431:82::o:0;64275:31::-;;;;:::o;32680:164::-;32777:4;32801:18;:25;32820:5;32801:25;;;;;;;;;;;;;;;:35;32827:8;32801:35;;;;;;;;;;;;;;;;;;;;;;;;;32794:42;;32680:164;;;;:::o;63349:201::-;62329:13;:11;:13::i;:::-;63458:1:::1;63438:22;;:8;:22;;::::0;63430:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63514:28;63533:8;63514:18;:28::i;:::-;63349:201:::0;:::o;66083:108::-;62329:13;:11;:13::i;:::-;66167:8:::1;66154:10;:21;;;;66083:108:::0;:::o;33102:282::-;33167:4;33223:7;33204:15;:13;:15::i;:::-;:26;;:66;;;;;33257:13;;33247:7;:23;33204:66;:153;;;;;33356:1;17110:8;33308:17;:26;33326:7;33308:26;;;;;;;;;;;;:44;:49;33204:153;33184:173;;33102:282;;;:::o;31164:408::-;31253:13;31269:16;31277:7;31269;:16::i;:::-;31253:32;;31325:5;31302:28;;:19;:17;:19::i;:::-;:28;;;31298:175;;31350:44;31367:5;31374:19;:17;:19::i;:::-;31350:16;:44::i;:::-;31345:128;;31422:35;;;;;;;;;;;;;;31345:128;31298:175;31518:2;31485:15;:24;31501:7;31485:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31556:7;31552:2;31536:28;;31545:5;31536:28;;;;;;;;;;;;31242:330;31164:408;;:::o;64577:101::-;64642:7;64669:1;64662:8;;64577:101;:::o;35370:2825::-;35512:27;35542;35561:7;35542:18;:27::i;:::-;35512:57;;35627:4;35586:45;;35602:19;35586:45;;;35582:86;;35640:28;;;;;;;;;;;;;;35582:86;35682:27;35711:23;35738:35;35765:7;35738:26;:35::i;:::-;35681:92;;;;35873:68;35898:15;35915:4;35921:19;:17;:19::i;:::-;35873:24;:68::i;:::-;35868:180;;35961:43;35978:4;35984:19;:17;:19::i;:::-;35961:16;:43::i;:::-;35956:92;;36013:35;;;;;;;;;;;;;;35956:92;35868:180;36079:1;36065:16;;:2;:16;;;36061:52;;36090:23;;;;;;;;;;;;;;36061:52;36126:43;36148:4;36154:2;36158:7;36167:1;36126:21;:43::i;:::-;36262:15;36259:160;;;36402:1;36381:19;36374:30;36259:160;36799:18;:24;36818:4;36799:24;;;;;;;;;;;;;;;;36797:26;;;;;;;;;;;;36868:18;:22;36887:2;36868:22;;;;;;;;;;;;;;;;36866:24;;;;;;;;;;;37190:146;37227:2;37276:45;37291:4;37297:2;37301:19;37276:14;:45::i;:::-;17390:8;37248:73;37190:18;:146::i;:::-;37161:17;:26;37179:7;37161:26;;;;;;;;;;;:175;;;;37507:1;17390:8;37456:19;:47;:52;37452:627;;37529:19;37561:1;37551:7;:11;37529:33;;37718:1;37684:17;:30;37702:11;37684:30;;;;;;;;;;;;:35;37680:384;;37822:13;;37807:11;:28;37803:242;;38002:19;37969:17;:30;37987:11;37969:30;;;;;;;;;;;:52;;;;37803:242;37680:384;37510:569;37452:627;38126:7;38122:2;38107:27;;38116:4;38107:27;;;;;;;;;;;;38145:42;38166:4;38172:2;38176:7;38185:1;38145:20;:42::i;:::-;35501:2694;;;35370:2825;;;:::o;62608:132::-;62683:12;:10;:12::i;:::-;62672:23;;:7;:5;:7::i;:::-;:23;;;62664:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62608:132::o;49242:112::-;49319:27;49329:2;49333:8;49319:27;;;;;;;;;;;;:9;:27::i;:::-;49242:112;;:::o;38291:193::-;38437:39;38454:4;38460:2;38464:7;38437:39;;;;;;;;;;;;:16;:39::i;:::-;38291:193;;;:::o;27788:1275::-;27855:7;27875:12;27890:7;27875:22;;27958:4;27939:15;:13;:15::i;:::-;:23;27935:1061;;27992:13;;27985:4;:20;27981:1015;;;28030:14;28047:17;:23;28065:4;28047:23;;;;;;;;;;;;28030:40;;28164:1;17110:8;28136:6;:24;:29;28132:845;;28801:113;28818:1;28808:6;:11;28801:113;;28861:17;:25;28879:6;;;;;;;28861:25;;;;;;;;;;;;28852:34;;28801:113;;;28947:6;28940:13;;;;;;28132:845;28007:989;27981:1015;27935:1061;29024:31;;;;;;;;;;;;;;27788:1275;;;;:::o;63710:191::-;63784:16;63803:6;;;;;;;;;;;63784:25;;63829:8;63820:6;;:17;;;;;;;;;;;;;;;;;;63884:8;63853:40;;63874:8;63853:40;;;;;;;;;;;;63773:128;63710:191;:::o;32289:234::-;32436:8;32384:18;:39;32403:19;:17;:19::i;:::-;32384:39;;;;;;;;;;;;;;;:49;32424:8;32384:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32496:8;32460:55;;32475:19;:17;:19::i;:::-;32460:55;;;32506:8;32460:55;;;;;;:::i;:::-;;;;;;;;32289:234;;:::o;39082:407::-;39257:31;39270:4;39276:2;39280:7;39257:12;:31::i;:::-;39321:1;39303:2;:14;;;:19;39299:183;;39342:56;39373:4;39379:2;39383:7;39392:5;39342:30;:56::i;:::-;39337:145;;39426:40;;;;;;;;;;;;;;39337:145;39299:183;39082:407;;;;:::o;65617:108::-;65677:13;65710:7;65703:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65617:108;:::o;55617:1745::-;55682:17;56116:4;56109;56103:11;56099:22;56208:1;56202:4;56195:15;56283:4;56280:1;56276:12;56269:19;;56365:1;56360:3;56353:14;56469:3;56708:5;56690:428;56716:1;56690:428;;;56756:1;56751:3;56747:11;56740:18;;56927:2;56921:4;56917:13;56913:2;56909:22;56904:3;56896:36;57021:2;57015:4;57011:13;57003:21;;57088:4;56690:428;57078:25;56690:428;56694:21;57157:3;57152;57148:13;57272:4;57267:3;57263:14;57256:21;;57337:6;57332:3;57325:19;55721:1634;;;55617:1745;;;:::o;55410:105::-;55470:7;55497:10;55490:17;;55410:105;:::o;34265:485::-;34367:27;34396:23;34437:38;34478:15;:24;34494:7;34478:24;;;;;;;;;;;34437:65;;34655:18;34632:41;;34712:19;34706:26;34687:45;;34617:126;34265:485;;;:::o;33493:659::-;33642:11;33807:16;33800:5;33796:28;33787:37;;33967:16;33956:9;33952:32;33939:45;;34117:15;34106:9;34103:30;34095:5;34084:9;34081:20;34078:56;34068:66;;33493:659;;;;;:::o;40151:159::-;;;;;:::o;54719:311::-;54854:7;54874:16;17514:3;54900:19;:41;;54874:68;;17514:3;54968:31;54979:4;54985:2;54989:9;54968:10;:31::i;:::-;54960:40;;:62;;54953:69;;;54719:311;;;;;:::o;29611:450::-;29691:14;29859:16;29852:5;29848:28;29839:37;;30036:5;30022:11;29997:23;29993:41;29990:52;29983:5;29980:63;29970:73;;29611:450;;;;:::o;40975:158::-;;;;;:::o;60994:98::-;61047:7;61074:10;61067:17;;60994:98;:::o;48469:689::-;48600:19;48606:2;48610:8;48600:5;:19::i;:::-;48679:1;48661:2;:14;;;:19;48657:483;;48701:11;48715:13;;48701:27;;48747:13;48769:8;48763:3;:14;48747:30;;48796:233;48827:62;48866:1;48870:2;48874:7;;;;;;48883:5;48827:30;:62::i;:::-;48822:167;;48925:40;;;;;;;;;;;;;;48822:167;49024:3;49016:5;:11;48796:233;;49111:3;49094:13;;:20;49090:34;;49116:8;;;49090:34;48682:458;;48657:483;48469:689;;;:::o;41573:716::-;41736:4;41782:2;41757:45;;;41803:19;:17;:19::i;:::-;41824:4;41830:7;41839:5;41757:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41753:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42057:1;42040:6;:13;:18;42036:235;;42086:40;;;;;;;;;;;;;;42036:235;42229:6;42223:13;42214:6;42210:2;42206:15;42199:38;41753:529;41926:54;;;41916:64;;;:6;:64;;;;41909:71;;;41573:716;;;;;;:::o;54420:147::-;54557:6;54420:147;;;;;:::o;42751:2966::-;42824:20;42847:13;;42824:36;;42887:1;42875:8;:13;42871:44;;42897:18;;;;;;;;;;;;;;42871:44;42928:61;42958:1;42962:2;42966:12;42980:8;42928:21;:61::i;:::-;43472:1;16472:2;43442:1;:26;;43441:32;43429:8;:45;43403:18;:22;43422:2;43403:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43751:139;43788:2;43842:33;43865:1;43869:2;43873:1;43842:14;:33::i;:::-;43809:30;43830:8;43809:20;:30::i;:::-;:66;43751:18;:139::i;:::-;43717:17;:31;43735:12;43717:31;;;;;;;;;;;:173;;;;43907:16;43938:11;43967:8;43952:12;:23;43938:37;;44488:16;44484:2;44480:25;44468:37;;44860:12;44820:8;44779:1;44717:25;44658:1;44597;44570:335;45231:1;45217:12;45213:20;45171:346;45272:3;45263:7;45260:16;45171:346;;45490:7;45480:8;45477:1;45450:25;45447:1;45444;45439:59;45325:1;45316:7;45312:15;45301:26;;45171:346;;;45175:77;45562:1;45550:8;:13;45546:45;;45572:19;;;;;;;;;;;;;;45546:45;45624:3;45608:13;:19;;;;43177:2462;;45649:60;45678:1;45682:2;45686:12;45700:8;45649:20;:60::i;:::-;42813:2904;42751:2966;;:::o;30163:324::-;30233:14;30466:1;30456:8;30453:15;30427:24;30423:46;30413:56;;30163: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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:329::-;5301:6;5350:2;5338:9;5329:7;5325:23;5321:32;5318:119;;;5356:79;;:::i;:::-;5318:119;5476:1;5501:53;5546:7;5537:6;5526:9;5522:22;5501:53;:::i;:::-;5491:63;;5447:117;5242:329;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:60::-;6230:3;6251:5;6244:12;;6202:60;;;:::o;6268:142::-;6318:9;6351:53;6369:34;6378:24;6396:5;6378:24;:::i;:::-;6369:34;:::i;:::-;6351:53;:::i;:::-;6338:66;;6268:142;;;:::o;6416:126::-;6466:9;6499:37;6530:5;6499:37;:::i;:::-;6486:50;;6416:126;;;:::o;6548:157::-;6629:9;6662:37;6693:5;6662:37;:::i;:::-;6649:50;;6548:157;;;:::o;6711:193::-;6829:68;6891:5;6829:68;:::i;:::-;6824:3;6817:81;6711:193;;:::o;6910:284::-;7034:4;7072:2;7061:9;7057:18;7049:26;;7085:102;7184:1;7173:9;7169:17;7160:6;7085:102;:::i;:::-;6910:284;;;;:::o;7200:117::-;7309:1;7306;7299:12;7323:117;7432:1;7429;7422:12;7446:180;7494:77;7491:1;7484:88;7591:4;7588:1;7581:15;7615:4;7612:1;7605:15;7632:281;7715:27;7737:4;7715:27;:::i;:::-;7707:6;7703:40;7845:6;7833:10;7830:22;7809:18;7797:10;7794:34;7791:62;7788:88;;;7856:18;;:::i;:::-;7788:88;7896:10;7892:2;7885:22;7675:238;7632:281;;:::o;7919:129::-;7953:6;7980:20;;:::i;:::-;7970:30;;8009:33;8037:4;8029:6;8009:33;:::i;:::-;7919:129;;;:::o;8054:308::-;8116:4;8206:18;8198:6;8195:30;8192:56;;;8228:18;;:::i;:::-;8192:56;8266:29;8288:6;8266:29;:::i;:::-;8258:37;;8350:4;8344;8340:15;8332:23;;8054:308;;;:::o;8368:146::-;8465:6;8460:3;8455;8442:30;8506:1;8497:6;8492:3;8488:16;8481:27;8368:146;;;:::o;8520:425::-;8598:5;8623:66;8639:49;8681:6;8639:49;:::i;:::-;8623:66;:::i;:::-;8614:75;;8712:6;8705:5;8698:21;8750:4;8743:5;8739:16;8788:3;8779:6;8774:3;8770:16;8767:25;8764:112;;;8795:79;;:::i;:::-;8764:112;8885:54;8932:6;8927:3;8922;8885:54;:::i;:::-;8604:341;8520:425;;;;;:::o;8965:340::-;9021:5;9070:3;9063:4;9055:6;9051:17;9047:27;9037:122;;9078:79;;:::i;:::-;9037:122;9195:6;9182:20;9220:79;9295:3;9287:6;9280:4;9272:6;9268:17;9220:79;:::i;:::-;9211:88;;9027:278;8965:340;;;;:::o;9311:509::-;9380:6;9429:2;9417:9;9408:7;9404:23;9400:32;9397:119;;;9435:79;;:::i;:::-;9397:119;9583:1;9572:9;9568:17;9555:31;9613:18;9605:6;9602:30;9599:117;;;9635:79;;:::i;:::-;9599:117;9740:63;9795:7;9786:6;9775:9;9771:22;9740:63;:::i;:::-;9730:73;;9526:287;9311:509;;;;:::o;9826:117::-;9935:1;9932;9925:12;9949:117;10058:1;10055;10048:12;10089:568;10162:8;10172:6;10222:3;10215:4;10207:6;10203:17;10199:27;10189:122;;10230:79;;:::i;:::-;10189:122;10343:6;10330:20;10320:30;;10373:18;10365:6;10362:30;10359:117;;;10395:79;;:::i;:::-;10359:117;10509:4;10501:6;10497:17;10485:29;;10563:3;10555:4;10547:6;10543:17;10533:8;10529:32;10526:41;10523:128;;;10570:79;;:::i;:::-;10523:128;10089:568;;;;;:::o;10680:::-;10753:8;10763:6;10813:3;10806:4;10798:6;10794:17;10790:27;10780:122;;10821:79;;:::i;:::-;10780:122;10934:6;10921:20;10911:30;;10964:18;10956:6;10953:30;10950:117;;;10986:79;;:::i;:::-;10950:117;11100:4;11092:6;11088:17;11076:29;;11154:3;11146:4;11138:6;11134:17;11124:8;11120:32;11117:41;11114:128;;;11161:79;;:::i;:::-;11114:128;10680:568;;;;;:::o;11254:934::-;11376:6;11384;11392;11400;11449:2;11437:9;11428:7;11424:23;11420:32;11417:119;;;11455:79;;:::i;:::-;11417:119;11603:1;11592:9;11588:17;11575:31;11633:18;11625:6;11622:30;11619:117;;;11655:79;;:::i;:::-;11619:117;11768:80;11840:7;11831:6;11820:9;11816:22;11768:80;:::i;:::-;11750:98;;;;11546:312;11925:2;11914:9;11910:18;11897:32;11956:18;11948:6;11945:30;11942:117;;;11978:79;;:::i;:::-;11942:117;12091:80;12163:7;12154:6;12143:9;12139:22;12091:80;:::i;:::-;12073:98;;;;11868:313;11254:934;;;;;;;:::o;12194:116::-;12264:21;12279:5;12264:21;:::i;:::-;12257:5;12254:32;12244:60;;12300:1;12297;12290:12;12244:60;12194:116;:::o;12316:133::-;12359:5;12397:6;12384:20;12375:29;;12413:30;12437:5;12413:30;:::i;:::-;12316:133;;;;:::o;12455:468::-;12520:6;12528;12577:2;12565:9;12556:7;12552:23;12548:32;12545:119;;;12583:79;;:::i;:::-;12545:119;12703:1;12728:53;12773:7;12764:6;12753:9;12749:22;12728:53;:::i;:::-;12718:63;;12674:117;12830:2;12856:50;12898:7;12889:6;12878:9;12874:22;12856:50;:::i;:::-;12846:60;;12801:115;12455:468;;;;;:::o;12929:307::-;12990:4;13080:18;13072:6;13069:30;13066:56;;;13102:18;;:::i;:::-;13066:56;13140:29;13162:6;13140:29;:::i;:::-;13132:37;;13224:4;13218;13214:15;13206:23;;12929:307;;;:::o;13242:423::-;13319:5;13344:65;13360:48;13401:6;13360:48;:::i;:::-;13344:65;:::i;:::-;13335:74;;13432:6;13425:5;13418:21;13470:4;13463:5;13459:16;13508:3;13499:6;13494:3;13490:16;13487:25;13484:112;;;13515:79;;:::i;:::-;13484:112;13605:54;13652:6;13647:3;13642;13605:54;:::i;:::-;13325:340;13242:423;;;;;:::o;13684:338::-;13739:5;13788:3;13781:4;13773:6;13769:17;13765:27;13755:122;;13796:79;;:::i;:::-;13755:122;13913:6;13900:20;13938:78;14012:3;14004:6;13997:4;13989:6;13985:17;13938:78;:::i;:::-;13929:87;;13745:277;13684:338;;;;:::o;14028:943::-;14123:6;14131;14139;14147;14196:3;14184:9;14175:7;14171:23;14167:33;14164:120;;;14203:79;;:::i;:::-;14164:120;14323:1;14348:53;14393:7;14384:6;14373:9;14369:22;14348:53;:::i;:::-;14338:63;;14294:117;14450:2;14476:53;14521:7;14512:6;14501:9;14497:22;14476:53;:::i;:::-;14466:63;;14421:118;14578:2;14604:53;14649:7;14640:6;14629:9;14625:22;14604:53;:::i;:::-;14594:63;;14549:118;14734:2;14723:9;14719:18;14706:32;14765:18;14757:6;14754:30;14751:117;;;14787:79;;:::i;:::-;14751:117;14892:62;14946:7;14937:6;14926:9;14922:22;14892:62;:::i;:::-;14882:72;;14677:287;14028:943;;;;;;;:::o;14977:474::-;15045:6;15053;15102:2;15090:9;15081:7;15077:23;15073:32;15070:119;;;15108:79;;:::i;:::-;15070:119;15228:1;15253:53;15298:7;15289:6;15278:9;15274:22;15253:53;:::i;:::-;15243:63;;15199:117;15355:2;15381:53;15426:7;15417:6;15406:9;15402:22;15381:53;:::i;:::-;15371:63;;15326:118;14977:474;;;;;:::o;15457:180::-;15505:77;15502:1;15495:88;15602:4;15599:1;15592:15;15626:4;15623:1;15616:15;15643:320;15687:6;15724:1;15718:4;15714:12;15704:22;;15771:1;15765:4;15761:12;15792:18;15782:81;;15848:4;15840:6;15836:17;15826:27;;15782:81;15910:2;15902:6;15899:14;15879:18;15876:38;15873:84;;15929:18;;:::i;:::-;15873:84;15694:269;15643:320;;;:::o;15969:332::-;16090:4;16128:2;16117:9;16113:18;16105:26;;16141:71;16209:1;16198:9;16194:17;16185:6;16141:71;:::i;:::-;16222:72;16290:2;16279:9;16275:18;16266:6;16222:72;:::i;:::-;15969:332;;;;;:::o;16307:137::-;16361:5;16392:6;16386:13;16377:22;;16408:30;16432:5;16408:30;:::i;:::-;16307:137;;;;:::o;16450:345::-;16517:6;16566:2;16554:9;16545:7;16541:23;16537:32;16534:119;;;16572:79;;:::i;:::-;16534:119;16692:1;16717:61;16770:7;16761:6;16750:9;16746:22;16717:61;:::i;:::-;16707:71;;16663:125;16450:345;;;;:::o;16801:163::-;16941:15;16937:1;16929:6;16925:14;16918:39;16801:163;:::o;16970:366::-;17112:3;17133:67;17197:2;17192:3;17133:67;:::i;:::-;17126:74;;17209:93;17298:3;17209:93;:::i;:::-;17327:2;17322:3;17318:12;17311:19;;16970:366;;;:::o;17342:419::-;17508:4;17546:2;17535:9;17531:18;17523:26;;17595:9;17589:4;17585:20;17581:1;17570:9;17566:17;17559:47;17623:131;17749:4;17623:131;:::i;:::-;17615:139;;17342:419;;;:::o;17767:162::-;17907:14;17903:1;17895:6;17891:14;17884:38;17767:162;:::o;17935:366::-;18077:3;18098:67;18162:2;18157:3;18098:67;:::i;:::-;18091:74;;18174:93;18263:3;18174:93;:::i;:::-;18292:2;18287:3;18283:12;18276:19;;17935:366;;;:::o;18307:419::-;18473:4;18511:2;18500:9;18496:18;18488:26;;18560:9;18554:4;18550:20;18546:1;18535:9;18531:17;18524:47;18588:131;18714:4;18588:131;:::i;:::-;18580:139;;18307:419;;;:::o;18732:180::-;18780:77;18777:1;18770:88;18877:4;18874:1;18867:15;18901:4;18898:1;18891:15;18918:191;18958:3;18977:20;18995:1;18977:20;:::i;:::-;18972:25;;19011:20;19029:1;19011:20;:::i;:::-;19006:25;;19054:1;19051;19047:9;19040:16;;19075:3;19072:1;19069:10;19066:36;;;19082:18;;:::i;:::-;19066:36;18918:191;;;;:::o;19115:165::-;19255:17;19251:1;19243:6;19239:14;19232:41;19115:165;:::o;19286:366::-;19428:3;19449:67;19513:2;19508:3;19449:67;:::i;:::-;19442:74;;19525:93;19614:3;19525:93;:::i;:::-;19643:2;19638:3;19634:12;19627:19;;19286:366;;;:::o;19658:419::-;19824:4;19862:2;19851:9;19847:18;19839:26;;19911:9;19905:4;19901:20;19897:1;19886:9;19882:17;19875:47;19939:131;20065:4;19939:131;:::i;:::-;19931:139;;19658:419;;;:::o;20083:348::-;20123:7;20146:20;20164:1;20146:20;:::i;:::-;20141:25;;20180:20;20198:1;20180:20;:::i;:::-;20175:25;;20368:1;20300:66;20296:74;20293:1;20290:81;20285:1;20278:9;20271:17;20267:105;20264:131;;;20375:18;;:::i;:::-;20264:131;20423:1;20420;20416:9;20405:20;;20083:348;;;;:::o;20437:157::-;20577:9;20573:1;20565:6;20561:14;20554:33;20437:157;:::o;20600:365::-;20742:3;20763:66;20827:1;20822:3;20763:66;:::i;:::-;20756:73;;20838:93;20927:3;20838:93;:::i;:::-;20956:2;20951:3;20947:12;20940:19;;20600:365;;;:::o;20971:419::-;21137:4;21175:2;21164:9;21160:18;21152:26;;21224:9;21218:4;21214:20;21210:1;21199:9;21195:17;21188:47;21252:131;21378:4;21252:131;:::i;:::-;21244:139;;20971:419;;;:::o;21396:141::-;21445:4;21468:3;21460:11;;21491:3;21488:1;21481:14;21525:4;21522:1;21512:18;21504:26;;21396:141;;;:::o;21543:93::-;21580:6;21627:2;21622;21615:5;21611:14;21607:23;21597:33;;21543:93;;;:::o;21642:107::-;21686:8;21736:5;21730:4;21726:16;21705:37;;21642:107;;;;:::o;21755:393::-;21824:6;21874:1;21862:10;21858:18;21897:97;21927:66;21916:9;21897:97;:::i;:::-;22015:39;22045:8;22034:9;22015:39;:::i;:::-;22003:51;;22087:4;22083:9;22076:5;22072:21;22063:30;;22136:4;22126:8;22122:19;22115:5;22112:30;22102:40;;21831:317;;21755:393;;;;;:::o;22154:142::-;22204:9;22237:53;22255:34;22264:24;22282:5;22264:24;:::i;:::-;22255:34;:::i;:::-;22237:53;:::i;:::-;22224:66;;22154:142;;;:::o;22302:75::-;22345:3;22366:5;22359:12;;22302:75;;;:::o;22383:269::-;22493:39;22524:7;22493:39;:::i;:::-;22554:91;22603:41;22627:16;22603:41;:::i;:::-;22595:6;22588:4;22582:11;22554:91;:::i;:::-;22548:4;22541:105;22459:193;22383:269;;;:::o;22658:73::-;22703:3;22658:73;:::o;22737:189::-;22814:32;;:::i;:::-;22855:65;22913:6;22905;22899:4;22855:65;:::i;:::-;22790:136;22737:189;;:::o;22932:186::-;22992:120;23009:3;23002:5;22999:14;22992:120;;;23063:39;23100:1;23093:5;23063:39;:::i;:::-;23036:1;23029:5;23025:13;23016:22;;22992:120;;;22932:186;;:::o;23124:543::-;23225:2;23220:3;23217:11;23214:446;;;23259:38;23291:5;23259:38;:::i;:::-;23343:29;23361:10;23343:29;:::i;:::-;23333:8;23329:44;23526:2;23514:10;23511:18;23508:49;;;23547:8;23532:23;;23508:49;23570:80;23626:22;23644:3;23626:22;:::i;:::-;23616:8;23612:37;23599:11;23570:80;:::i;:::-;23229:431;;23214:446;23124:543;;;:::o;23673:117::-;23727:8;23777:5;23771:4;23767:16;23746:37;;23673:117;;;;:::o;23796:169::-;23840:6;23873:51;23921:1;23917:6;23909:5;23906:1;23902:13;23873:51;:::i;:::-;23869:56;23954:4;23948;23944:15;23934:25;;23847:118;23796:169;;;;:::o;23970:295::-;24046:4;24192:29;24217:3;24211:4;24192:29;:::i;:::-;24184:37;;24254:3;24251:1;24247:11;24241:4;24238:21;24230:29;;23970:295;;;;:::o;24270:1395::-;24387:37;24420:3;24387:37;:::i;:::-;24489:18;24481:6;24478:30;24475:56;;;24511:18;;:::i;:::-;24475:56;24555:38;24587:4;24581:11;24555:38;:::i;:::-;24640:67;24700:6;24692;24686:4;24640:67;:::i;:::-;24734:1;24758:4;24745:17;;24790:2;24782:6;24779:14;24807:1;24802:618;;;;25464:1;25481:6;25478:77;;;25530:9;25525:3;25521:19;25515:26;25506:35;;25478:77;25581:67;25641:6;25634:5;25581:67;:::i;:::-;25575:4;25568:81;25437:222;24772:887;;24802:618;24854:4;24850:9;24842:6;24838:22;24888:37;24920:4;24888:37;:::i;:::-;24947:1;24961:208;24975:7;24972:1;24969:14;24961:208;;;25054:9;25049:3;25045:19;25039:26;25031:6;25024:42;25105:1;25097:6;25093:14;25083:24;;25152:2;25141:9;25137:18;25124:31;;24998:4;24995:1;24991:12;24986:17;;24961:208;;;25197:6;25188:7;25185:19;25182:179;;;25255:9;25250:3;25246:19;25240:26;25298:48;25340:4;25332:6;25328:17;25317:9;25298:48;:::i;:::-;25290:6;25283:64;25205:156;25182:179;25407:1;25403;25395:6;25391:14;25387:22;25381:4;25374:36;24809:611;;;24772:887;;24362:1303;;;24270:1395;;:::o;25671:180::-;25719:77;25716:1;25709:88;25816:4;25813:1;25806:15;25840:4;25837:1;25830:15;25857:233;25896:3;25919:24;25937:5;25919:24;:::i;:::-;25910:33;;25965:66;25958:5;25955:77;25952:103;;26035:18;;:::i;:::-;25952:103;26082:1;26075:5;26071:13;26064:20;;25857:233;;;:::o;26096:148::-;26198:11;26235:3;26220:18;;26096:148;;;;:::o;26250:390::-;26356:3;26384:39;26417:5;26384:39;:::i;:::-;26439:89;26521:6;26516:3;26439:89;:::i;:::-;26432:96;;26537:65;26595:6;26590:3;26583:4;26576:5;26572:16;26537:65;:::i;:::-;26627:6;26622:3;26618:16;26611:23;;26360:280;26250:390;;;;:::o;26646:435::-;26826:3;26848:95;26939:3;26930:6;26848:95;:::i;:::-;26841:102;;26960:95;27051:3;27042:6;26960:95;:::i;:::-;26953:102;;27072:3;27065:10;;26646:435;;;;;:::o;27087:225::-;27227:34;27223:1;27215:6;27211:14;27204:58;27296:8;27291:2;27283:6;27279:15;27272:33;27087:225;:::o;27318:366::-;27460:3;27481:67;27545:2;27540:3;27481:67;:::i;:::-;27474:74;;27557:93;27646:3;27557:93;:::i;:::-;27675:2;27670:3;27666:12;27659:19;;27318:366;;;:::o;27690:419::-;27856:4;27894:2;27883:9;27879:18;27871:26;;27943:9;27937:4;27933:20;27929:1;27918:9;27914:17;27907:47;27971:131;28097:4;27971:131;:::i;:::-;27963:139;;27690:419;;;:::o;28115:182::-;28255:34;28251:1;28243:6;28239:14;28232:58;28115:182;:::o;28303:366::-;28445:3;28466:67;28530:2;28525:3;28466:67;:::i;:::-;28459:74;;28542:93;28631:3;28542:93;:::i;:::-;28660:2;28655:3;28651:12;28644:19;;28303:366;;;:::o;28675:419::-;28841:4;28879:2;28868:9;28864:18;28856:26;;28928:9;28922:4;28918:20;28914:1;28903:9;28899:17;28892:47;28956:131;29082:4;28956:131;:::i;:::-;28948:139;;28675:419;;;:::o;29100:98::-;29151:6;29185:5;29179:12;29169:22;;29100:98;;;:::o;29204:168::-;29287:11;29321:6;29316:3;29309:19;29361:4;29356:3;29352:14;29337:29;;29204:168;;;;:::o;29378:373::-;29464:3;29492:38;29524:5;29492:38;:::i;:::-;29546:70;29609:6;29604:3;29546:70;:::i;:::-;29539:77;;29625:65;29683:6;29678:3;29671:4;29664:5;29660:16;29625:65;:::i;:::-;29715:29;29737:6;29715:29;:::i;:::-;29710:3;29706:39;29699:46;;29468:283;29378:373;;;;:::o;29757:640::-;29952:4;29990:3;29979:9;29975:19;29967:27;;30004:71;30072:1;30061:9;30057:17;30048:6;30004:71;:::i;:::-;30085:72;30153:2;30142:9;30138:18;30129:6;30085:72;:::i;:::-;30167;30235:2;30224:9;30220:18;30211:6;30167:72;:::i;:::-;30286:9;30280:4;30276:20;30271:2;30260:9;30256:18;30249:48;30314:76;30385:4;30376:6;30314:76;:::i;:::-;30306:84;;29757:640;;;;;;;:::o;30403:141::-;30459:5;30490:6;30484:13;30475:22;;30506:32;30532:5;30506:32;:::i;:::-;30403:141;;;;:::o;30550:349::-;30619:6;30668:2;30656:9;30647:7;30643:23;30639:32;30636:119;;;30674:79;;:::i;:::-;30636:119;30794:1;30819:63;30874:7;30865:6;30854:9;30850:22;30819:63;:::i;:::-;30809:73;;30765:127;30550:349;;;;:::o

Swarm Source

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