ETH Price: $2,683.09 (+10.24%)
Gas: 2 Gwei

Token

AcidBurn (AcidBurn)
 

Overview

Max Total Supply

871 AcidBurn

Holders

439

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AcidBurn
0x08b5bfeb412443cfc54e38656ae88f6bdde4920f
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:
AcidBurn

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-14
*/

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721ABurnable.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

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


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

pragma solidity ^0.8.4;



/**
 * @title ERC721ABurnable.
 *
 * @dev ERC721A token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

// File: filterer/IOperatorFilterRegistry.sol


pragma solidity ^0.8.17;

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: filterer/OperatorFilterer.sol


pragma solidity ^0.8.17;


/**
 * @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 {
        // 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) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view 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: filterer/DefaultOperatorFilterer.sol


pragma solidity ^0.8.17;


/**
 * @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: @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: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

// File: AcidBurn.sol


pragma solidity 0.8.17;

/// @author Viv_0002

contract AcidBurn is ERC721ABurnable, ERC2981, Ownable, DefaultOperatorFilterer{

    enum MintState {
        PAUSED,
        FREECLAIM,
        ALLOWLIST,
        PUBLIC,
        ENDED
    }
    
    MintState public state = MintState.PAUSED;

    uint256 public mintcost = 0.25 ether;
    uint256 public maxSupply = 2800;
    uint256 public publicMax = 3;
    bytes32 public whitelistMerkleRoot;
    string public tokenUriBase = "http://metadata.mintfud.com:3333/acidburn/";
    bool public burnEnabled = false;
    address public payee;

    constructor() ERC721A("AcidBurn", "AcidBurn") {
             _setDefaultRoyalty(owner(), 500);
             payee = owner();
    }

    // OVERRIDES
    function _startTokenId() internal view virtual override returns (uint256) {
        return 0;
    }

    // MODIFIERS
    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0,"Invalid mint amount");
        
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply exceeded"
        );
        _;
    }

    // MERKLE TREE
    function _verify(bytes32 leaf, bytes32[] memory proof)
        internal
        view
        returns (bool)
    {
        return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
    }

    function _leaf(address account, uint256 maxMint)
        internal
        pure
        returns (bytes32)
    {
        return keccak256(bytes.concat(keccak256(abi.encode(account, maxMint))));
    }

    // MINTING FUNCTIONS

    function freeclaim(
        uint256 amount,
        uint256 maxMint,
        bytes32[] calldata proof
        ) public mintCompliance(amount) {
            require(state == MintState.FREECLAIM, "Free Claim period not open");
            require(_verify(_leaf(msg.sender, maxMint), proof), "Invalid proof");
            require(numberMinted(msg.sender) + amount <= maxMint,"Exceeds allowed number of mints");

            _safeMint(msg.sender, amount);
        }

    function ALMint(
        uint256 amount,
        uint256 maxMint,
        bytes32[] calldata proof
        ) public payable mintCompliance(amount) {
  
            require(state == MintState.ALLOWLIST , "AllowList mint is not available right now");
            require(_verify(_leaf(msg.sender, maxMint), proof), "Invalid proof");
            require(msg.value >= mintcost * amount, "Insufficient funds");
            require(numberMinted(msg.sender) + amount <= maxMint,"Exceeds allowed number of mints");

            _safeMint(msg.sender, amount);
    }

    function mint(uint256 amount) public payable mintCompliance(amount) {
        require(state == MintState.PUBLIC, "Public mint is not available yet");
        require (amount <= publicMax, "Too many mints per transaction requested");
        require(msg.value >= mintcost * amount, "Insufficient funds");

        _safeMint(msg.sender, amount);
    }

    function mintForAddress(uint256 amount, address _receiver)
        public
        onlyOwner
    {
        require(totalSupply() + amount <= maxSupply, "Max supply exceeded");
        _safeMint(_receiver, amount);
    }

    // GETTERS
    function numberMinted(address _minter) public view returns (uint256) {
        return _numberMinted(_minter);
    }

    function numberBurned(address _minter) public view returns (uint256) {
        return _numberBurned(_minter);
    }

    function tokenURI(
        uint256 tokenId
    ) public view override(ERC721A, IERC721A) returns (string memory) {
        return string(abi.encodePacked(tokenUriBase, _toString(tokenId), ".json"));
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownerTokens = new uint256[](ownerTokenCount);
        uint256 ownerTokenIdx = 0;
        for (
            uint256 tokenIdx = _startTokenId();
            tokenIdx < _totalMinted();
            tokenIdx++
        ) {
            if (_exists(tokenIdx)){
            if (ownerOf(tokenIdx) == _owner) {
                ownerTokens[ownerTokenIdx] = tokenIdx;
                ownerTokenIdx++;
            }}
        }
        return ownerTokens;
    }

    function getBurnCounter() public view returns (uint256) {
        return _totalBurned();
    }

    function getTotalMinted() public view returns (uint256) {
        return _totalMinted();
    }

    // SETTERS

    function setState(MintState _state) public onlyOwner {
        state = _state;
    }

    function setCost(uint256 _newcost) public onlyOwner {
        mintcost = _newcost;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot)
        external
        onlyOwner
    {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    function setTokenURI(string memory newUriBase) external onlyOwner {
        tokenUriBase = newUriBase;
    }

    function setPublicMax(uint256 _newmax) public onlyOwner {
        publicMax = _newmax;
    }

    function enableBurn(bool _burn) public onlyOwner {
        burnEnabled = _burn;
    }
    
    function setPayee(address _payee) public onlyOwner {
        payee = _payee;
    }
    
    // 2981

    function setDefaultRoyalty(address receiver, uint96 feeNumerator)
    external
    onlyOwner
    {
        _setDefaultRoyalty(receiver, feeNumerator);
    }

   function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC721A, ERC2981, IERC721A)
    returns (bool)
     {
        return super.supportsInterface(interfaceId);
    }   


   // OS

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

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

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

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

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

    // WITHDRAW

    function withdraw() public onlyOwner {
        uint256 contractBalance = address(this).balance;
        bool success = true;

        (success, ) = payable(payee).call{
            value: contractBalance}("");
        require(success, "Transfer failed");
    }

    // BURN

    function burn(uint256 tokenId) public virtual override {
        require(burnEnabled!=false, "Burn is not enabled");
        _burn(tokenId, true);
    }

    function bulkburn(uint256[] calldata tokenIDs) public virtual {
        require(burnEnabled!=false, "Burn is not enabled");
        for (uint i = 0; i < tokenIDs.length; i++) {
            burn(tokenIDs[i]);
        }
    }

}

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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"ALMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIDs","type":"uint256[]"}],"name":"bulkburn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_burn","type":"bool"}],"name":"enableBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeclaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"numberBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"uint256","name":"_newcost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_payee","type":"address"}],"name":"setPayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmax","type":"uint256"}],"name":"setPublicMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum AcidBurn.MintState","name":"_state","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUriBase","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"enum AcidBurn.MintState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenUriBase","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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60146101000a81548160ff021916908360048111156200002d576200002c62000696565b5b02179055506703782dace9d90000600b55610af0600c556003600d556040518060600160405280602a8152602001620059a4602a9139600f90816200007391906200093f565b506000601060006101000a81548160ff0219169083151502179055503480156200009c57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f416369644275726e0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f416369644275726e00000000000000000000000000000000000000000000000081525081600290816200013191906200093f565b5080600390816200014391906200093f565b5062000154620003ec60201b60201c565b60008190555050506200017c62000170620003f160201b60201c565b620003f960201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200037157801562000237576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001fd92919062000a6b565b600060405180830381600087803b1580156200021857600080fd5b505af11580156200022d573d6000803e3d6000fd5b5050505062000370565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002f1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002b792919062000a6b565b600060405180830381600087803b158015620002d257600080fd5b505af1158015620002e7573d6000803e3d6000fd5b505050506200036f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200033a919062000a98565b600060405180830381600087803b1580156200035557600080fd5b505af11580156200036a573d6000803e3d6000fd5b505050505b5b5b50506200039662000387620004bf60201b60201c565b6101f4620004e960201b60201c565b620003a6620004bf60201b60201c565b601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000bd0565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004f96200068c60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200055a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005519062000b3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c39062000bae565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200074757607f821691505b6020821081036200075d576200075c620006ff565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000788565b620007d3868362000788565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008206200081a6200081484620007eb565b620007f5565b620007eb565b9050919050565b6000819050919050565b6200083c83620007ff565b620008546200084b8262000827565b84845462000795565b825550505050565b600090565b6200086b6200085c565b6200087881848462000831565b505050565b5b81811015620008a0576200089460008262000861565b6001810190506200087e565b5050565b601f821115620008ef57620008b98162000763565b620008c48462000778565b81016020851015620008d4578190505b620008ec620008e38562000778565b8301826200087d565b50505b505050565b600082821c905092915050565b60006200091460001984600802620008f4565b1980831691505092915050565b60006200092f838362000901565b9150826002028217905092915050565b6200094a82620006c5565b67ffffffffffffffff811115620009665762000965620006d0565b5b6200097282546200072e565b6200097f828285620008a4565b600060209050601f831160018114620009b75760008415620009a2578287015190505b620009ae858262000921565b86555062000a1e565b601f198416620009c78662000763565b60005b82811015620009f157848901518255600182019150602085019450602081019050620009ca565b8683101562000a11578489015162000a0d601f89168262000901565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a538262000a26565b9050919050565b62000a658162000a46565b82525050565b600060408201905062000a82600083018562000a5a565b62000a91602083018462000a5a565b9392505050565b600060208201905062000aaf600083018462000a5a565b92915050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000b24602a8362000ab5565b915062000b318262000ac6565b604082019050919050565b6000602082019050818103600083015262000b578162000b15565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000b9660198362000ab5565b915062000ba38262000b5e565b602082019050919050565b6000602082019050818103600083015262000bc98162000b87565b9050919050565b614dc48062000be06000396000f3fe6080604052600436106102935760003560e01c8063665660461161015a578063b88d4fde116100c1578063e0df5b6f1161007a578063e0df5b6f146109b1578063e527c6dd146109da578063e985e9c514610a05578063efbd73f414610a42578063f229abbd14610a6b578063f2fde38b14610a9457610293565b8063b88d4fde1461089c578063bd32fb66146108b8578063c19d93fb146108e1578063c87b56dd1461090c578063d5abeb0114610949578063dc33e6811461097457610293565b806394c3cbf41161011357806394c3cbf4146107ab57806395d89b41146107d6578063a0712d6814610801578063a22cb4651461081d578063aa98e0c614610846578063ae90b2131461087157610293565b806366566046146106af5780636f8b44b0146106d857806370a0823114610701578063715018a61461073e5780637a344ba9146107555780638da5cb5b1461078057610293565b80632b37a4b9116101fe578063438b6300116101b7578063438b63001461058d57806344a0d68a146105ca578063540c2a97146105f357806356de96db1461061e5780635dc96d16146106475780636352211e1461067257610293565b80632b37a4b9146104b45780633ccfd60b146104dd578063410459ad146104f457806341f434341461051d57806342842e0e1461054857806342966c681461056457610293565b80630ca1c5c9116102505780630ca1c5c9146103ab57806318160ddd146103d6578063183bed901461040157806323b872dd1461041d5780632478d639146104395780632a55205a1461047657610293565b806301ffc9a71461029857806304634d8d146102d557806306fdde03146102fe578063081812fc14610329578063095ea7b3146103665780630aa3bee514610382575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613374565b610abd565b6040516102cc91906133bc565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613479565b610acf565b005b34801561030a57600080fd5b50610313610ae5565b6040516103209190613549565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b91906135a1565b610b77565b60405161035d91906135dd565b60405180910390f35b610380600480360381019061037b91906135f8565b610bf6565b005b34801561038e57600080fd5b506103a960048036038101906103a4919061369d565b610c0f565b005b3480156103b757600080fd5b506103c0610e1a565b6040516103cd9190613720565b60405180910390f35b3480156103e257600080fd5b506103eb610e29565b6040516103f89190613720565b60405180910390f35b61041b6004803603810190610416919061369d565b610e40565b005b6104376004803603810190610432919061373b565b61109b565b005b34801561044557600080fd5b50610460600480360381019061045b919061378e565b6110ea565b60405161046d9190613720565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906137bb565b6110fc565b6040516104ab9291906137fb565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d6919061387a565b6112e6565b005b3480156104e957600080fd5b506104f2611384565b005b34801561050057600080fd5b5061051b6004803603810190610516919061378e565b611469565b005b34801561052957600080fd5b506105326114b5565b60405161053f9190613926565b60405180910390f35b610562600480360381019061055d919061373b565b6114c7565b005b34801561057057600080fd5b5061058b600480360381019061058691906135a1565b611516565b005b34801561059957600080fd5b506105b460048036038101906105af919061378e565b61157a565b6040516105c191906139ff565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec91906135a1565b61168b565b005b3480156105ff57600080fd5b5061060861169d565b6040516106159190613549565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190613a46565b61172b565b005b34801561065357600080fd5b5061065c611760565b60405161066991906133bc565b60405180910390f35b34801561067e57600080fd5b50610699600480360381019061069491906135a1565b611773565b6040516106a691906135dd565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906135a1565b611785565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906135a1565b611797565b005b34801561070d57600080fd5b506107286004803603810190610723919061378e565b6117a9565b6040516107359190613720565b60405180910390f35b34801561074a57600080fd5b50610753611861565b005b34801561076157600080fd5b5061076a611875565b6040516107779190613720565b60405180910390f35b34801561078c57600080fd5b50610795611884565b6040516107a291906135dd565b60405180910390f35b3480156107b757600080fd5b506107c06118ae565b6040516107cd9190613720565b60405180910390f35b3480156107e257600080fd5b506107eb6118b4565b6040516107f89190613549565b60405180910390f35b61081b600480360381019061081691906135a1565b611946565b005b34801561082957600080fd5b50610844600480360381019061083f9190613a9f565b611afa565b005b34801561085257600080fd5b5061085b611b13565b6040516108689190613af8565b60405180910390f35b34801561087d57600080fd5b50610886611b19565b60405161089391906135dd565b60405180910390f35b6108b660048036038101906108b19190613c43565b611b3f565b005b3480156108c457600080fd5b506108df60048036038101906108da9190613cf2565b611b90565b005b3480156108ed57600080fd5b506108f6611ba2565b6040516109039190613d96565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e91906135a1565b611bb5565b6040516109409190613549565b60405180910390f35b34801561095557600080fd5b5061095e611be9565b60405161096b9190613720565b60405180910390f35b34801561098057600080fd5b5061099b6004803603810190610996919061378e565b611bef565b6040516109a89190613720565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d39190613e52565b611c01565b005b3480156109e657600080fd5b506109ef611c1c565b6040516109fc9190613720565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613e9b565b611c22565b604051610a3991906133bc565b60405180910390f35b348015610a4e57600080fd5b50610a696004803603810190610a649190613edb565b611cb6565b005b348015610a7757600080fd5b50610a926004803603810190610a8d9190613f1b565b611d23565b005b348015610aa057600080fd5b50610abb6004803603810190610ab6919061378e565b611d48565b005b6000610ac882611dcb565b9050919050565b610ad7611e45565b610ae18282611ec3565b5050565b606060028054610af490613f77565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2090613f77565b8015610b6d5780601f10610b4257610100808354040283529160200191610b6d565b820191906000526020600020905b815481529060010190602001808311610b5057829003601f168201915b5050505050905090565b6000610b8282612058565b610bb8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c00816120b7565b610c0a83836121b4565b505050565b8360008111610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90613ff4565b60405180910390fd5b600c5481610c5f610e29565b610c699190614043565b1115610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca1906140c3565b60405180910390fd5b60016004811115610cbe57610cbd613d1f565b5b600a60149054906101000a900460ff166004811115610ce057610cdf613d1f565b5b14610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d179061412f565b60405180910390fd5b610d74610d2d33866122f8565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612351565b610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa9061419b565b60405180910390fd5b8385610dbe33611bef565b610dc89190614043565b1115610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090614207565b60405180910390fd5b610e133386612368565b5050505050565b6000610e24612386565b905090565b6000610e33612399565b6001546000540303905090565b8360008111610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90613ff4565b60405180910390fd5b600c5481610e90610e29565b610e9a9190614043565b1115610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed2906140c3565b60405180910390fd5b60026004811115610eef57610eee613d1f565b5b600a60149054906101000a900460ff166004811115610f1157610f10613d1f565b5b14610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890614299565b60405180910390fd5b610fa5610f5e33866122f8565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612351565b610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb9061419b565b60405180910390fd5b84600b54610ff291906142b9565b341015611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90614347565b60405180910390fd5b838561103f33611bef565b6110499190614043565b111561108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190614207565b60405180910390fd5b6110943386612368565b5050505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110d9576110d8336120b7565b5b6110e484848461239e565b50505050565b60006110f5826126c0565b9050919050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036112915760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061129b612717565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866112c791906142b9565b6112d19190614396565b90508160000151819350935050509250929050565b60001515601060009054906101000a900460ff1615150361133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390614413565b60405180910390fd5b60005b8282905081101561137f5761136c8383838181106113605761135f614433565b5b90506020020135611516565b808061137790614462565b91505061133f565b505050565b61138c611e45565b6000479050600060019050601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516113dd906144db565b60006040518083038185875af1925050503d806000811461141a576040519150601f19603f3d011682016040523d82523d6000602084013e61141f565b606091505b50508091505080611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c9061453c565b60405180910390fd5b5050565b611471611e45565b80601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461150557611504336120b7565b5b611510848484612721565b50505050565b60001515601060009054906101000a900460ff1615150361156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390614413565b60405180910390fd5b611577816001612741565b50565b60606000611587836117a9565b905060008167ffffffffffffffff8111156115a5576115a4613b18565b5b6040519080825280602002602001820160405280156115d35781602001602082028036833780820191505090505b5090506000806115e1612399565b90505b6115ec612386565b81101561167f576115fc81612058565b1561166c578573ffffffffffffffffffffffffffffffffffffffff1661162182611773565b73ffffffffffffffffffffffffffffffffffffffff160361166b57808383815181106116505761164f614433565b5b602002602001018181525050818061166790614462565b9250505b5b808061167790614462565b9150506115e4565b50819350505050919050565b611693611e45565b80600b8190555050565b600f80546116aa90613f77565b80601f01602080910402602001604051908101604052809291908181526020018280546116d690613f77565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b505050505081565b611733611e45565b80600a60146101000a81548160ff0219169083600481111561175857611757613d1f565b5b021790555050565b601060009054906101000a900460ff1681565b600061177e82612993565b9050919050565b61178d611e45565b80600d8190555050565b61179f611e45565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611810576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611869611e45565b6118736000612a5f565b565b600061187f612b25565b905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6060600380546118c390613f77565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90613f77565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b5050505050905090565b806000811161198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613ff4565b60405180910390fd5b600c5481611996610e29565b6119a09190614043565b11156119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d8906140c3565b60405180910390fd5b600360048111156119f5576119f4613d1f565b5b600a60149054906101000a900460ff166004811115611a1757611a16613d1f565b5b14611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e906145a8565b60405180910390fd5b600d54821115611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a939061463a565b60405180910390fd5b81600b54611aaa91906142b9565b341015611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390614347565b60405180910390fd5b611af63383612368565b5050565b81611b04816120b7565b611b0e8383612b2f565b505050565b600e5481565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b7d57611b7c336120b7565b5b611b8985858585612c3a565b5050505050565b611b98611e45565b80600e8190555050565b600a60149054906101000a900460ff1681565b6060600f611bc283612cad565b604051602001611bd392919061477a565b6040516020818303038152906040529050919050565b600c5481565b6000611bfa82612cfd565b9050919050565b611c09611e45565b80600f9081611c189190614936565b5050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cbe611e45565b600c5482611cca610e29565b611cd49190614043565b1115611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c906140c3565b60405180910390fd5b611d1f8183612368565b5050565b611d2b611e45565b80601060006101000a81548160ff02191690831515021790555050565b611d50611e45565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690614a7a565b60405180910390fd5b611dc881612a5f565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e3e5750611e3d82612d54565b5b9050919050565b611e4d612dbe565b73ffffffffffffffffffffffffffffffffffffffff16611e6b611884565b73ffffffffffffffffffffffffffffffffffffffff1614611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb890614ae6565b60405180910390fd5b565b611ecb612717565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090614b78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f90614be4565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612063612399565b11158015612072575060005482105b80156120b0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156121b1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161212e929190614c04565b602060405180830381865afa15801561214b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216f9190614c42565b6121b057806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016121a791906135dd565b60405180910390fd5b5b50565b60006121bf82611773565b90508073ffffffffffffffffffffffffffffffffffffffff166121e0612dc6565b73ffffffffffffffffffffffffffffffffffffffff16146122435761220c81612207612dc6565b611c22565b612242576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000828260405160200161230d9291906137fb565b604051602081830303815290604052805190602001206040516020016123339190614c90565b60405160208183030381529060405280519060200120905092915050565b600061236082600e5485612dce565b905092915050565b612382828260405180602001604052806000815250612de5565b5050565b6000612390612399565b60005403905090565b600090565b60006123a982612993565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612410576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061241c84612e82565b91509150612432818761242d612dc6565b612ea9565b61247e5761244786612442612dc6565b611c22565b61247d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036124e4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124f18686866001612eed565b80156124fc57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506125ca856125a6888887612ef3565b7c020000000000000000000000000000000000000000000000000000000017612f1b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612650576000600185019050600060046000838152602001908152602001600020540361264e57600054811461264d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126b88686866001612f46565b505050505050565b600067ffffffffffffffff6080600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000612710905090565b61273c83838360405180602001604052806000815250611b3f565b505050565b600061274c83612993565b9050600081905060008061275f86612e82565b9150915084156127c85761277b8184612776612dc6565b612ea9565b6127c7576127908361278b612dc6565b611c22565b6127c6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6127d6836000886001612eed565b80156127e157600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128898361284685600088612ef3565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612f1b565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085160361290f576000600187019050600060046000838152602001908152602001600020540361290d57600054811461290c578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612979836000886001612f46565b600160008154809291906001019190505550505050505050565b600080829050806129a2612399565b11612a2857600054811015612a275760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612a25575b60008103612a1b5760046000836001900393508381526020019081526020016000205490506129f1565b8092505050612a5a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600154905090565b8060076000612b3c612dc6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612be9612dc6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c2e91906133bc565b60405180910390a35050565b612c4584848461109b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612ca757612c7084848484612f4c565b612ca6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115612ce857600184039350600a81066030018453600a8104905080612cc6575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b600082612ddb858461309c565b1490509392505050565b612def83836130f2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e7d57600080549050600083820390505b612e2f6000868380600101945086612f4c565b612e65576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612e1c578160005414612e7a57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612f0a8686846132ad565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f72612dc6565b8786866040518563ffffffff1660e01b8152600401612f949493929190614d00565b6020604051808303816000875af1925050508015612fd057506040513d601f19601f82011682018060405250810190612fcd9190614d61565b60015b613049573d8060008114613000576040519150601f19603f3d011682016040523d82523d6000602084013e613005565b606091505b506000815103613041576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008082905060005b84518110156130e7576130d2828683815181106130c5576130c4614433565b5b60200260200101516132b6565b915080806130df90614462565b9150506130a5565b508091505092915050565b60008054905060008203613132576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61313f6000848385612eed565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506131b6836131a76000866000612ef3565b6131b0856132e1565b17612f1b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461325757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061321c565b5060008203613292576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506132a86000848385612f46565b505050565b60009392505050565b60008183106132ce576132c982846132f1565b6132d9565b6132d883836132f1565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133518161331c565b811461335c57600080fd5b50565b60008135905061336e81613348565b92915050565b60006020828403121561338a57613389613312565b5b60006133988482850161335f565b91505092915050565b60008115159050919050565b6133b6816133a1565b82525050565b60006020820190506133d160008301846133ad565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613402826133d7565b9050919050565b613412816133f7565b811461341d57600080fd5b50565b60008135905061342f81613409565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61345681613435565b811461346157600080fd5b50565b6000813590506134738161344d565b92915050565b600080604083850312156134905761348f613312565b5b600061349e85828601613420565b92505060206134af85828601613464565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134f35780820151818401526020810190506134d8565b60008484015250505050565b6000601f19601f8301169050919050565b600061351b826134b9565b61352581856134c4565b93506135358185602086016134d5565b61353e816134ff565b840191505092915050565b600060208201905081810360008301526135638184613510565b905092915050565b6000819050919050565b61357e8161356b565b811461358957600080fd5b50565b60008135905061359b81613575565b92915050565b6000602082840312156135b7576135b6613312565b5b60006135c58482850161358c565b91505092915050565b6135d7816133f7565b82525050565b60006020820190506135f260008301846135ce565b92915050565b6000806040838503121561360f5761360e613312565b5b600061361d85828601613420565b925050602061362e8582860161358c565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261365d5761365c613638565b5b8235905067ffffffffffffffff81111561367a5761367961363d565b5b60208301915083602082028301111561369657613695613642565b5b9250929050565b600080600080606085870312156136b7576136b6613312565b5b60006136c58782880161358c565b94505060206136d68782880161358c565b935050604085013567ffffffffffffffff8111156136f7576136f6613317565b5b61370387828801613647565b925092505092959194509250565b61371a8161356b565b82525050565b60006020820190506137356000830184613711565b92915050565b60008060006060848603121561375457613753613312565b5b600061376286828701613420565b935050602061377386828701613420565b92505060406137848682870161358c565b9150509250925092565b6000602082840312156137a4576137a3613312565b5b60006137b284828501613420565b91505092915050565b600080604083850312156137d2576137d1613312565b5b60006137e08582860161358c565b92505060206137f18582860161358c565b9150509250929050565b600060408201905061381060008301856135ce565b61381d6020830184613711565b9392505050565b60008083601f84011261383a57613839613638565b5b8235905067ffffffffffffffff8111156138575761385661363d565b5b60208301915083602082028301111561387357613872613642565b5b9250929050565b6000806020838503121561389157613890613312565b5b600083013567ffffffffffffffff8111156138af576138ae613317565b5b6138bb85828601613824565b92509250509250929050565b6000819050919050565b60006138ec6138e76138e2846133d7565b6138c7565b6133d7565b9050919050565b60006138fe826138d1565b9050919050565b6000613910826138f3565b9050919050565b61392081613905565b82525050565b600060208201905061393b6000830184613917565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139768161356b565b82525050565b6000613988838361396d565b60208301905092915050565b6000602082019050919050565b60006139ac82613941565b6139b6818561394c565b93506139c18361395d565b8060005b838110156139f25781516139d9888261397c565b97506139e483613994565b9250506001810190506139c5565b5085935050505092915050565b60006020820190508181036000830152613a1981846139a1565b905092915050565b60058110613a2e57600080fd5b50565b600081359050613a4081613a21565b92915050565b600060208284031215613a5c57613a5b613312565b5b6000613a6a84828501613a31565b91505092915050565b613a7c816133a1565b8114613a8757600080fd5b50565b600081359050613a9981613a73565b92915050565b60008060408385031215613ab657613ab5613312565b5b6000613ac485828601613420565b9250506020613ad585828601613a8a565b9150509250929050565b6000819050919050565b613af281613adf565b82525050565b6000602082019050613b0d6000830184613ae9565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b50826134ff565b810181811067ffffffffffffffff82111715613b6f57613b6e613b18565b5b80604052505050565b6000613b82613308565b9050613b8e8282613b47565b919050565b600067ffffffffffffffff821115613bae57613bad613b18565b5b613bb7826134ff565b9050602081019050919050565b82818337600083830152505050565b6000613be6613be184613b93565b613b78565b905082815260208101848484011115613c0257613c01613b13565b5b613c0d848285613bc4565b509392505050565b600082601f830112613c2a57613c29613638565b5b8135613c3a848260208601613bd3565b91505092915050565b60008060008060808587031215613c5d57613c5c613312565b5b6000613c6b87828801613420565b9450506020613c7c87828801613420565b9350506040613c8d8782880161358c565b925050606085013567ffffffffffffffff811115613cae57613cad613317565b5b613cba87828801613c15565b91505092959194509250565b613ccf81613adf565b8114613cda57600080fd5b50565b600081359050613cec81613cc6565b92915050565b600060208284031215613d0857613d07613312565b5b6000613d1684828501613cdd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110613d5f57613d5e613d1f565b5b50565b6000819050613d7082613d4e565b919050565b6000613d8082613d62565b9050919050565b613d9081613d75565b82525050565b6000602082019050613dab6000830184613d87565b92915050565b600067ffffffffffffffff821115613dcc57613dcb613b18565b5b613dd5826134ff565b9050602081019050919050565b6000613df5613df084613db1565b613b78565b905082815260208101848484011115613e1157613e10613b13565b5b613e1c848285613bc4565b509392505050565b600082601f830112613e3957613e38613638565b5b8135613e49848260208601613de2565b91505092915050565b600060208284031215613e6857613e67613312565b5b600082013567ffffffffffffffff811115613e8657613e85613317565b5b613e9284828501613e24565b91505092915050565b60008060408385031215613eb257613eb1613312565b5b6000613ec085828601613420565b9250506020613ed185828601613420565b9150509250929050565b60008060408385031215613ef257613ef1613312565b5b6000613f008582860161358c565b9250506020613f1185828601613420565b9150509250929050565b600060208284031215613f3157613f30613312565b5b6000613f3f84828501613a8a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f8f57607f821691505b602082108103613fa257613fa1613f48565b5b50919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613fde6013836134c4565b9150613fe982613fa8565b602082019050919050565b6000602082019050818103600083015261400d81613fd1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061404e8261356b565b91506140598361356b565b925082820190508082111561407157614070614014565b5b92915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006140ad6013836134c4565b91506140b882614077565b602082019050919050565b600060208201905081810360008301526140dc816140a0565b9050919050565b7f4672656520436c61696d20706572696f64206e6f74206f70656e000000000000600082015250565b6000614119601a836134c4565b9150614124826140e3565b602082019050919050565b600060208201905081810360008301526141488161410c565b9050919050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000614185600d836134c4565b91506141908261414f565b602082019050919050565b600060208201905081810360008301526141b481614178565b9050919050565b7f4578636565647320616c6c6f776564206e756d626572206f66206d696e747300600082015250565b60006141f1601f836134c4565b91506141fc826141bb565b602082019050919050565b60006020820190508181036000830152614220816141e4565b9050919050565b7f416c6c6f774c697374206d696e74206973206e6f7420617661696c61626c652060008201527f7269676874206e6f770000000000000000000000000000000000000000000000602082015250565b60006142836029836134c4565b915061428e82614227565b604082019050919050565b600060208201905081810360008301526142b281614276565b9050919050565b60006142c48261356b565b91506142cf8361356b565b92508282026142dd8161356b565b915082820484148315176142f4576142f3614014565b5b5092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006143316012836134c4565b915061433c826142fb565b602082019050919050565b6000602082019050818103600083015261436081614324565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143a18261356b565b91506143ac8361356b565b9250826143bc576143bb614367565b5b828204905092915050565b7f4275726e206973206e6f7420656e61626c656400000000000000000000000000600082015250565b60006143fd6013836134c4565b9150614408826143c7565b602082019050919050565b6000602082019050818103600083015261442c816143f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061446d8261356b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361449f5761449e614014565b5b600182019050919050565b600081905092915050565b50565b60006144c56000836144aa565b91506144d0826144b5565b600082019050919050565b60006144e6826144b8565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000614526600f836134c4565b9150614531826144f0565b602082019050919050565b6000602082019050818103600083015261455581614519565b9050919050565b7f5075626c6963206d696e74206973206e6f7420617661696c61626c6520796574600082015250565b60006145926020836134c4565b915061459d8261455c565b602082019050919050565b600060208201905081810360008301526145c181614585565b9050919050565b7f546f6f206d616e79206d696e747320706572207472616e73616374696f6e207260008201527f6571756573746564000000000000000000000000000000000000000000000000602082015250565b60006146246028836134c4565b915061462f826145c8565b604082019050919050565b6000602082019050818103600083015261465381614617565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461468781613f77565b614691818661465a565b945060018216600081146146ac57600181146146c1576146f4565b60ff19831686528115158202860193506146f4565b6146ca85614665565b60005b838110156146ec578154818901526001820191506020810190506146cd565b838801955050505b50505092915050565b6000614708826134b9565b614712818561465a565b93506147228185602086016134d5565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061476460058361465a565b915061476f8261472e565b600582019050919050565b6000614786828561467a565b915061479282846146fd565b915061479d82614757565b91508190509392505050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147f67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826147b9565b61480086836147b9565b95508019841693508086168417925050509392505050565b600061483361482e6148298461356b565b6138c7565b61356b565b9050919050565b6000819050919050565b61484d83614818565b6148616148598261483a565b8484546147c6565b825550505050565b600090565b614876614869565b614881818484614844565b505050565b5b818110156148a55761489a60008261486e565b600181019050614887565b5050565b601f8211156148ea576148bb81614665565b6148c4846147a9565b810160208510156148d3578190505b6148e76148df856147a9565b830182614886565b50505b505050565b600082821c905092915050565b600061490d600019846008026148ef565b1980831691505092915050565b600061492683836148fc565b9150826002028217905092915050565b61493f826134b9565b67ffffffffffffffff81111561495857614957613b18565b5b6149628254613f77565b61496d8282856148a9565b600060209050601f8311600181146149a0576000841561498e578287015190505b614998858261491a565b865550614a00565b601f1984166149ae86614665565b60005b828110156149d6578489015182556001820191506020850194506020810190506149b1565b868310156149f357848901516149ef601f8916826148fc565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a646026836134c4565b9150614a6f82614a08565b604082019050919050565b60006020820190508181036000830152614a9381614a57565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ad06020836134c4565b9150614adb82614a9a565b602082019050919050565b60006020820190508181036000830152614aff81614ac3565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614b62602a836134c4565b9150614b6d82614b06565b604082019050919050565b60006020820190508181036000830152614b9181614b55565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614bce6019836134c4565b9150614bd982614b98565b602082019050919050565b60006020820190508181036000830152614bfd81614bc1565b9050919050565b6000604082019050614c1960008301856135ce565b614c2660208301846135ce565b9392505050565b600081519050614c3c81613a73565b92915050565b600060208284031215614c5857614c57613312565b5b6000614c6684828501614c2d565b91505092915050565b6000819050919050565b614c8a614c8582613adf565b614c6f565b82525050565b6000614c9c8284614c79565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000614cd282614cab565b614cdc8185614cb6565b9350614cec8185602086016134d5565b614cf5816134ff565b840191505092915050565b6000608082019050614d1560008301876135ce565b614d2260208301866135ce565b614d2f6040830185613711565b8181036060830152614d418184614cc7565b905095945050505050565b600081519050614d5b81613348565b92915050565b600060208284031215614d7757614d76613312565b5b6000614d8584828501614d4c565b9150509291505056fea2646970667358221220a27780c687a36b9d9d849dcc2b233c54fac460ab010c61fa08f155fb3a1ce36a64736f6c63430008110033687474703a2f2f6d657461646174612e6d696e746675642e636f6d3a333333332f616369646275726e2f

Deployed Bytecode

0x6080604052600436106102935760003560e01c8063665660461161015a578063b88d4fde116100c1578063e0df5b6f1161007a578063e0df5b6f146109b1578063e527c6dd146109da578063e985e9c514610a05578063efbd73f414610a42578063f229abbd14610a6b578063f2fde38b14610a9457610293565b8063b88d4fde1461089c578063bd32fb66146108b8578063c19d93fb146108e1578063c87b56dd1461090c578063d5abeb0114610949578063dc33e6811461097457610293565b806394c3cbf41161011357806394c3cbf4146107ab57806395d89b41146107d6578063a0712d6814610801578063a22cb4651461081d578063aa98e0c614610846578063ae90b2131461087157610293565b806366566046146106af5780636f8b44b0146106d857806370a0823114610701578063715018a61461073e5780637a344ba9146107555780638da5cb5b1461078057610293565b80632b37a4b9116101fe578063438b6300116101b7578063438b63001461058d57806344a0d68a146105ca578063540c2a97146105f357806356de96db1461061e5780635dc96d16146106475780636352211e1461067257610293565b80632b37a4b9146104b45780633ccfd60b146104dd578063410459ad146104f457806341f434341461051d57806342842e0e1461054857806342966c681461056457610293565b80630ca1c5c9116102505780630ca1c5c9146103ab57806318160ddd146103d6578063183bed901461040157806323b872dd1461041d5780632478d639146104395780632a55205a1461047657610293565b806301ffc9a71461029857806304634d8d146102d557806306fdde03146102fe578063081812fc14610329578063095ea7b3146103665780630aa3bee514610382575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613374565b610abd565b6040516102cc91906133bc565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613479565b610acf565b005b34801561030a57600080fd5b50610313610ae5565b6040516103209190613549565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b91906135a1565b610b77565b60405161035d91906135dd565b60405180910390f35b610380600480360381019061037b91906135f8565b610bf6565b005b34801561038e57600080fd5b506103a960048036038101906103a4919061369d565b610c0f565b005b3480156103b757600080fd5b506103c0610e1a565b6040516103cd9190613720565b60405180910390f35b3480156103e257600080fd5b506103eb610e29565b6040516103f89190613720565b60405180910390f35b61041b6004803603810190610416919061369d565b610e40565b005b6104376004803603810190610432919061373b565b61109b565b005b34801561044557600080fd5b50610460600480360381019061045b919061378e565b6110ea565b60405161046d9190613720565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906137bb565b6110fc565b6040516104ab9291906137fb565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d6919061387a565b6112e6565b005b3480156104e957600080fd5b506104f2611384565b005b34801561050057600080fd5b5061051b6004803603810190610516919061378e565b611469565b005b34801561052957600080fd5b506105326114b5565b60405161053f9190613926565b60405180910390f35b610562600480360381019061055d919061373b565b6114c7565b005b34801561057057600080fd5b5061058b600480360381019061058691906135a1565b611516565b005b34801561059957600080fd5b506105b460048036038101906105af919061378e565b61157a565b6040516105c191906139ff565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec91906135a1565b61168b565b005b3480156105ff57600080fd5b5061060861169d565b6040516106159190613549565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190613a46565b61172b565b005b34801561065357600080fd5b5061065c611760565b60405161066991906133bc565b60405180910390f35b34801561067e57600080fd5b50610699600480360381019061069491906135a1565b611773565b6040516106a691906135dd565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906135a1565b611785565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906135a1565b611797565b005b34801561070d57600080fd5b506107286004803603810190610723919061378e565b6117a9565b6040516107359190613720565b60405180910390f35b34801561074a57600080fd5b50610753611861565b005b34801561076157600080fd5b5061076a611875565b6040516107779190613720565b60405180910390f35b34801561078c57600080fd5b50610795611884565b6040516107a291906135dd565b60405180910390f35b3480156107b757600080fd5b506107c06118ae565b6040516107cd9190613720565b60405180910390f35b3480156107e257600080fd5b506107eb6118b4565b6040516107f89190613549565b60405180910390f35b61081b600480360381019061081691906135a1565b611946565b005b34801561082957600080fd5b50610844600480360381019061083f9190613a9f565b611afa565b005b34801561085257600080fd5b5061085b611b13565b6040516108689190613af8565b60405180910390f35b34801561087d57600080fd5b50610886611b19565b60405161089391906135dd565b60405180910390f35b6108b660048036038101906108b19190613c43565b611b3f565b005b3480156108c457600080fd5b506108df60048036038101906108da9190613cf2565b611b90565b005b3480156108ed57600080fd5b506108f6611ba2565b6040516109039190613d96565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e91906135a1565b611bb5565b6040516109409190613549565b60405180910390f35b34801561095557600080fd5b5061095e611be9565b60405161096b9190613720565b60405180910390f35b34801561098057600080fd5b5061099b6004803603810190610996919061378e565b611bef565b6040516109a89190613720565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d39190613e52565b611c01565b005b3480156109e657600080fd5b506109ef611c1c565b6040516109fc9190613720565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613e9b565b611c22565b604051610a3991906133bc565b60405180910390f35b348015610a4e57600080fd5b50610a696004803603810190610a649190613edb565b611cb6565b005b348015610a7757600080fd5b50610a926004803603810190610a8d9190613f1b565b611d23565b005b348015610aa057600080fd5b50610abb6004803603810190610ab6919061378e565b611d48565b005b6000610ac882611dcb565b9050919050565b610ad7611e45565b610ae18282611ec3565b5050565b606060028054610af490613f77565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2090613f77565b8015610b6d5780601f10610b4257610100808354040283529160200191610b6d565b820191906000526020600020905b815481529060010190602001808311610b5057829003601f168201915b5050505050905090565b6000610b8282612058565b610bb8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c00816120b7565b610c0a83836121b4565b505050565b8360008111610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90613ff4565b60405180910390fd5b600c5481610c5f610e29565b610c699190614043565b1115610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca1906140c3565b60405180910390fd5b60016004811115610cbe57610cbd613d1f565b5b600a60149054906101000a900460ff166004811115610ce057610cdf613d1f565b5b14610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d179061412f565b60405180910390fd5b610d74610d2d33866122f8565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612351565b610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa9061419b565b60405180910390fd5b8385610dbe33611bef565b610dc89190614043565b1115610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090614207565b60405180910390fd5b610e133386612368565b5050505050565b6000610e24612386565b905090565b6000610e33612399565b6001546000540303905090565b8360008111610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90613ff4565b60405180910390fd5b600c5481610e90610e29565b610e9a9190614043565b1115610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed2906140c3565b60405180910390fd5b60026004811115610eef57610eee613d1f565b5b600a60149054906101000a900460ff166004811115610f1157610f10613d1f565b5b14610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890614299565b60405180910390fd5b610fa5610f5e33866122f8565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612351565b610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb9061419b565b60405180910390fd5b84600b54610ff291906142b9565b341015611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90614347565b60405180910390fd5b838561103f33611bef565b6110499190614043565b111561108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190614207565b60405180910390fd5b6110943386612368565b5050505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110d9576110d8336120b7565b5b6110e484848461239e565b50505050565b60006110f5826126c0565b9050919050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036112915760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061129b612717565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866112c791906142b9565b6112d19190614396565b90508160000151819350935050509250929050565b60001515601060009054906101000a900460ff1615150361133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390614413565b60405180910390fd5b60005b8282905081101561137f5761136c8383838181106113605761135f614433565b5b90506020020135611516565b808061137790614462565b91505061133f565b505050565b61138c611e45565b6000479050600060019050601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516113dd906144db565b60006040518083038185875af1925050503d806000811461141a576040519150601f19603f3d011682016040523d82523d6000602084013e61141f565b606091505b50508091505080611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c9061453c565b60405180910390fd5b5050565b611471611e45565b80601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461150557611504336120b7565b5b611510848484612721565b50505050565b60001515601060009054906101000a900460ff1615150361156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390614413565b60405180910390fd5b611577816001612741565b50565b60606000611587836117a9565b905060008167ffffffffffffffff8111156115a5576115a4613b18565b5b6040519080825280602002602001820160405280156115d35781602001602082028036833780820191505090505b5090506000806115e1612399565b90505b6115ec612386565b81101561167f576115fc81612058565b1561166c578573ffffffffffffffffffffffffffffffffffffffff1661162182611773565b73ffffffffffffffffffffffffffffffffffffffff160361166b57808383815181106116505761164f614433565b5b602002602001018181525050818061166790614462565b9250505b5b808061167790614462565b9150506115e4565b50819350505050919050565b611693611e45565b80600b8190555050565b600f80546116aa90613f77565b80601f01602080910402602001604051908101604052809291908181526020018280546116d690613f77565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b505050505081565b611733611e45565b80600a60146101000a81548160ff0219169083600481111561175857611757613d1f565b5b021790555050565b601060009054906101000a900460ff1681565b600061177e82612993565b9050919050565b61178d611e45565b80600d8190555050565b61179f611e45565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611810576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611869611e45565b6118736000612a5f565b565b600061187f612b25565b905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6060600380546118c390613f77565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90613f77565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b5050505050905090565b806000811161198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613ff4565b60405180910390fd5b600c5481611996610e29565b6119a09190614043565b11156119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d8906140c3565b60405180910390fd5b600360048111156119f5576119f4613d1f565b5b600a60149054906101000a900460ff166004811115611a1757611a16613d1f565b5b14611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e906145a8565b60405180910390fd5b600d54821115611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a939061463a565b60405180910390fd5b81600b54611aaa91906142b9565b341015611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390614347565b60405180910390fd5b611af63383612368565b5050565b81611b04816120b7565b611b0e8383612b2f565b505050565b600e5481565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b7d57611b7c336120b7565b5b611b8985858585612c3a565b5050505050565b611b98611e45565b80600e8190555050565b600a60149054906101000a900460ff1681565b6060600f611bc283612cad565b604051602001611bd392919061477a565b6040516020818303038152906040529050919050565b600c5481565b6000611bfa82612cfd565b9050919050565b611c09611e45565b80600f9081611c189190614936565b5050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cbe611e45565b600c5482611cca610e29565b611cd49190614043565b1115611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c906140c3565b60405180910390fd5b611d1f8183612368565b5050565b611d2b611e45565b80601060006101000a81548160ff02191690831515021790555050565b611d50611e45565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690614a7a565b60405180910390fd5b611dc881612a5f565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e3e5750611e3d82612d54565b5b9050919050565b611e4d612dbe565b73ffffffffffffffffffffffffffffffffffffffff16611e6b611884565b73ffffffffffffffffffffffffffffffffffffffff1614611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb890614ae6565b60405180910390fd5b565b611ecb612717565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090614b78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f90614be4565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612063612399565b11158015612072575060005482105b80156120b0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156121b1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161212e929190614c04565b602060405180830381865afa15801561214b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216f9190614c42565b6121b057806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016121a791906135dd565b60405180910390fd5b5b50565b60006121bf82611773565b90508073ffffffffffffffffffffffffffffffffffffffff166121e0612dc6565b73ffffffffffffffffffffffffffffffffffffffff16146122435761220c81612207612dc6565b611c22565b612242576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000828260405160200161230d9291906137fb565b604051602081830303815290604052805190602001206040516020016123339190614c90565b60405160208183030381529060405280519060200120905092915050565b600061236082600e5485612dce565b905092915050565b612382828260405180602001604052806000815250612de5565b5050565b6000612390612399565b60005403905090565b600090565b60006123a982612993565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612410576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061241c84612e82565b91509150612432818761242d612dc6565b612ea9565b61247e5761244786612442612dc6565b611c22565b61247d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036124e4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124f18686866001612eed565b80156124fc57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506125ca856125a6888887612ef3565b7c020000000000000000000000000000000000000000000000000000000017612f1b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612650576000600185019050600060046000838152602001908152602001600020540361264e57600054811461264d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126b88686866001612f46565b505050505050565b600067ffffffffffffffff6080600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000612710905090565b61273c83838360405180602001604052806000815250611b3f565b505050565b600061274c83612993565b9050600081905060008061275f86612e82565b9150915084156127c85761277b8184612776612dc6565b612ea9565b6127c7576127908361278b612dc6565b611c22565b6127c6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6127d6836000886001612eed565b80156127e157600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128898361284685600088612ef3565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612f1b565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085160361290f576000600187019050600060046000838152602001908152602001600020540361290d57600054811461290c578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612979836000886001612f46565b600160008154809291906001019190505550505050505050565b600080829050806129a2612399565b11612a2857600054811015612a275760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612a25575b60008103612a1b5760046000836001900393508381526020019081526020016000205490506129f1565b8092505050612a5a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600154905090565b8060076000612b3c612dc6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612be9612dc6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c2e91906133bc565b60405180910390a35050565b612c4584848461109b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612ca757612c7084848484612f4c565b612ca6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115612ce857600184039350600a81066030018453600a8104905080612cc6575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b600082612ddb858461309c565b1490509392505050565b612def83836130f2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e7d57600080549050600083820390505b612e2f6000868380600101945086612f4c565b612e65576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612e1c578160005414612e7a57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612f0a8686846132ad565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f72612dc6565b8786866040518563ffffffff1660e01b8152600401612f949493929190614d00565b6020604051808303816000875af1925050508015612fd057506040513d601f19601f82011682018060405250810190612fcd9190614d61565b60015b613049573d8060008114613000576040519150601f19603f3d011682016040523d82523d6000602084013e613005565b606091505b506000815103613041576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008082905060005b84518110156130e7576130d2828683815181106130c5576130c4614433565b5b60200260200101516132b6565b915080806130df90614462565b9150506130a5565b508091505092915050565b60008054905060008203613132576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61313f6000848385612eed565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506131b6836131a76000866000612ef3565b6131b0856132e1565b17612f1b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461325757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061321c565b5060008203613292576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506132a86000848385612f46565b505050565b60009392505050565b60008183106132ce576132c982846132f1565b6132d9565b6132d883836132f1565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133518161331c565b811461335c57600080fd5b50565b60008135905061336e81613348565b92915050565b60006020828403121561338a57613389613312565b5b60006133988482850161335f565b91505092915050565b60008115159050919050565b6133b6816133a1565b82525050565b60006020820190506133d160008301846133ad565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613402826133d7565b9050919050565b613412816133f7565b811461341d57600080fd5b50565b60008135905061342f81613409565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61345681613435565b811461346157600080fd5b50565b6000813590506134738161344d565b92915050565b600080604083850312156134905761348f613312565b5b600061349e85828601613420565b92505060206134af85828601613464565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134f35780820151818401526020810190506134d8565b60008484015250505050565b6000601f19601f8301169050919050565b600061351b826134b9565b61352581856134c4565b93506135358185602086016134d5565b61353e816134ff565b840191505092915050565b600060208201905081810360008301526135638184613510565b905092915050565b6000819050919050565b61357e8161356b565b811461358957600080fd5b50565b60008135905061359b81613575565b92915050565b6000602082840312156135b7576135b6613312565b5b60006135c58482850161358c565b91505092915050565b6135d7816133f7565b82525050565b60006020820190506135f260008301846135ce565b92915050565b6000806040838503121561360f5761360e613312565b5b600061361d85828601613420565b925050602061362e8582860161358c565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261365d5761365c613638565b5b8235905067ffffffffffffffff81111561367a5761367961363d565b5b60208301915083602082028301111561369657613695613642565b5b9250929050565b600080600080606085870312156136b7576136b6613312565b5b60006136c58782880161358c565b94505060206136d68782880161358c565b935050604085013567ffffffffffffffff8111156136f7576136f6613317565b5b61370387828801613647565b925092505092959194509250565b61371a8161356b565b82525050565b60006020820190506137356000830184613711565b92915050565b60008060006060848603121561375457613753613312565b5b600061376286828701613420565b935050602061377386828701613420565b92505060406137848682870161358c565b9150509250925092565b6000602082840312156137a4576137a3613312565b5b60006137b284828501613420565b91505092915050565b600080604083850312156137d2576137d1613312565b5b60006137e08582860161358c565b92505060206137f18582860161358c565b9150509250929050565b600060408201905061381060008301856135ce565b61381d6020830184613711565b9392505050565b60008083601f84011261383a57613839613638565b5b8235905067ffffffffffffffff8111156138575761385661363d565b5b60208301915083602082028301111561387357613872613642565b5b9250929050565b6000806020838503121561389157613890613312565b5b600083013567ffffffffffffffff8111156138af576138ae613317565b5b6138bb85828601613824565b92509250509250929050565b6000819050919050565b60006138ec6138e76138e2846133d7565b6138c7565b6133d7565b9050919050565b60006138fe826138d1565b9050919050565b6000613910826138f3565b9050919050565b61392081613905565b82525050565b600060208201905061393b6000830184613917565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139768161356b565b82525050565b6000613988838361396d565b60208301905092915050565b6000602082019050919050565b60006139ac82613941565b6139b6818561394c565b93506139c18361395d565b8060005b838110156139f25781516139d9888261397c565b97506139e483613994565b9250506001810190506139c5565b5085935050505092915050565b60006020820190508181036000830152613a1981846139a1565b905092915050565b60058110613a2e57600080fd5b50565b600081359050613a4081613a21565b92915050565b600060208284031215613a5c57613a5b613312565b5b6000613a6a84828501613a31565b91505092915050565b613a7c816133a1565b8114613a8757600080fd5b50565b600081359050613a9981613a73565b92915050565b60008060408385031215613ab657613ab5613312565b5b6000613ac485828601613420565b9250506020613ad585828601613a8a565b9150509250929050565b6000819050919050565b613af281613adf565b82525050565b6000602082019050613b0d6000830184613ae9565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b50826134ff565b810181811067ffffffffffffffff82111715613b6f57613b6e613b18565b5b80604052505050565b6000613b82613308565b9050613b8e8282613b47565b919050565b600067ffffffffffffffff821115613bae57613bad613b18565b5b613bb7826134ff565b9050602081019050919050565b82818337600083830152505050565b6000613be6613be184613b93565b613b78565b905082815260208101848484011115613c0257613c01613b13565b5b613c0d848285613bc4565b509392505050565b600082601f830112613c2a57613c29613638565b5b8135613c3a848260208601613bd3565b91505092915050565b60008060008060808587031215613c5d57613c5c613312565b5b6000613c6b87828801613420565b9450506020613c7c87828801613420565b9350506040613c8d8782880161358c565b925050606085013567ffffffffffffffff811115613cae57613cad613317565b5b613cba87828801613c15565b91505092959194509250565b613ccf81613adf565b8114613cda57600080fd5b50565b600081359050613cec81613cc6565b92915050565b600060208284031215613d0857613d07613312565b5b6000613d1684828501613cdd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110613d5f57613d5e613d1f565b5b50565b6000819050613d7082613d4e565b919050565b6000613d8082613d62565b9050919050565b613d9081613d75565b82525050565b6000602082019050613dab6000830184613d87565b92915050565b600067ffffffffffffffff821115613dcc57613dcb613b18565b5b613dd5826134ff565b9050602081019050919050565b6000613df5613df084613db1565b613b78565b905082815260208101848484011115613e1157613e10613b13565b5b613e1c848285613bc4565b509392505050565b600082601f830112613e3957613e38613638565b5b8135613e49848260208601613de2565b91505092915050565b600060208284031215613e6857613e67613312565b5b600082013567ffffffffffffffff811115613e8657613e85613317565b5b613e9284828501613e24565b91505092915050565b60008060408385031215613eb257613eb1613312565b5b6000613ec085828601613420565b9250506020613ed185828601613420565b9150509250929050565b60008060408385031215613ef257613ef1613312565b5b6000613f008582860161358c565b9250506020613f1185828601613420565b9150509250929050565b600060208284031215613f3157613f30613312565b5b6000613f3f84828501613a8a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f8f57607f821691505b602082108103613fa257613fa1613f48565b5b50919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613fde6013836134c4565b9150613fe982613fa8565b602082019050919050565b6000602082019050818103600083015261400d81613fd1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061404e8261356b565b91506140598361356b565b925082820190508082111561407157614070614014565b5b92915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006140ad6013836134c4565b91506140b882614077565b602082019050919050565b600060208201905081810360008301526140dc816140a0565b9050919050565b7f4672656520436c61696d20706572696f64206e6f74206f70656e000000000000600082015250565b6000614119601a836134c4565b9150614124826140e3565b602082019050919050565b600060208201905081810360008301526141488161410c565b9050919050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000614185600d836134c4565b91506141908261414f565b602082019050919050565b600060208201905081810360008301526141b481614178565b9050919050565b7f4578636565647320616c6c6f776564206e756d626572206f66206d696e747300600082015250565b60006141f1601f836134c4565b91506141fc826141bb565b602082019050919050565b60006020820190508181036000830152614220816141e4565b9050919050565b7f416c6c6f774c697374206d696e74206973206e6f7420617661696c61626c652060008201527f7269676874206e6f770000000000000000000000000000000000000000000000602082015250565b60006142836029836134c4565b915061428e82614227565b604082019050919050565b600060208201905081810360008301526142b281614276565b9050919050565b60006142c48261356b565b91506142cf8361356b565b92508282026142dd8161356b565b915082820484148315176142f4576142f3614014565b5b5092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006143316012836134c4565b915061433c826142fb565b602082019050919050565b6000602082019050818103600083015261436081614324565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143a18261356b565b91506143ac8361356b565b9250826143bc576143bb614367565b5b828204905092915050565b7f4275726e206973206e6f7420656e61626c656400000000000000000000000000600082015250565b60006143fd6013836134c4565b9150614408826143c7565b602082019050919050565b6000602082019050818103600083015261442c816143f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061446d8261356b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361449f5761449e614014565b5b600182019050919050565b600081905092915050565b50565b60006144c56000836144aa565b91506144d0826144b5565b600082019050919050565b60006144e6826144b8565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000614526600f836134c4565b9150614531826144f0565b602082019050919050565b6000602082019050818103600083015261455581614519565b9050919050565b7f5075626c6963206d696e74206973206e6f7420617661696c61626c6520796574600082015250565b60006145926020836134c4565b915061459d8261455c565b602082019050919050565b600060208201905081810360008301526145c181614585565b9050919050565b7f546f6f206d616e79206d696e747320706572207472616e73616374696f6e207260008201527f6571756573746564000000000000000000000000000000000000000000000000602082015250565b60006146246028836134c4565b915061462f826145c8565b604082019050919050565b6000602082019050818103600083015261465381614617565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461468781613f77565b614691818661465a565b945060018216600081146146ac57600181146146c1576146f4565b60ff19831686528115158202860193506146f4565b6146ca85614665565b60005b838110156146ec578154818901526001820191506020810190506146cd565b838801955050505b50505092915050565b6000614708826134b9565b614712818561465a565b93506147228185602086016134d5565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061476460058361465a565b915061476f8261472e565b600582019050919050565b6000614786828561467a565b915061479282846146fd565b915061479d82614757565b91508190509392505050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147f67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826147b9565b61480086836147b9565b95508019841693508086168417925050509392505050565b600061483361482e6148298461356b565b6138c7565b61356b565b9050919050565b6000819050919050565b61484d83614818565b6148616148598261483a565b8484546147c6565b825550505050565b600090565b614876614869565b614881818484614844565b505050565b5b818110156148a55761489a60008261486e565b600181019050614887565b5050565b601f8211156148ea576148bb81614665565b6148c4846147a9565b810160208510156148d3578190505b6148e76148df856147a9565b830182614886565b50505b505050565b600082821c905092915050565b600061490d600019846008026148ef565b1980831691505092915050565b600061492683836148fc565b9150826002028217905092915050565b61493f826134b9565b67ffffffffffffffff81111561495857614957613b18565b5b6149628254613f77565b61496d8282856148a9565b600060209050601f8311600181146149a0576000841561498e578287015190505b614998858261491a565b865550614a00565b601f1984166149ae86614665565b60005b828110156149d6578489015182556001820191506020850194506020810190506149b1565b868310156149f357848901516149ef601f8916826148fc565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a646026836134c4565b9150614a6f82614a08565b604082019050919050565b60006020820190508181036000830152614a9381614a57565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ad06020836134c4565b9150614adb82614a9a565b602082019050919050565b60006020820190508181036000830152614aff81614ac3565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614b62602a836134c4565b9150614b6d82614b06565b604082019050919050565b60006020820190508181036000830152614b9181614b55565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614bce6019836134c4565b9150614bd982614b98565b602082019050919050565b60006020820190508181036000830152614bfd81614bc1565b9050919050565b6000604082019050614c1960008301856135ce565b614c2660208301846135ce565b9392505050565b600081519050614c3c81613a73565b92915050565b600060208284031215614c5857614c57613312565b5b6000614c6684828501614c2d565b91505092915050565b6000819050919050565b614c8a614c8582613adf565b614c6f565b82525050565b6000614c9c8284614c79565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000614cd282614cab565b614cdc8185614cb6565b9350614cec8185602086016134d5565b614cf5816134ff565b840191505092915050565b6000608082019050614d1560008301876135ce565b614d2260208301866135ce565b614d2f6040830185613711565b8181036060830152614d418184614cc7565b905095945050505050565b600081519050614d5b81613348565b92915050565b600060208284031215614d7757614d76613312565b5b6000614d8584828501614d4c565b9150509291505056fea2646970667358221220a27780c687a36b9d9d849dcc2b233c54fac460ab010c61fa08f155fb3a1ce36a64736f6c63430008110033

Deployed Bytecode Sourcemap

78099:7675:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83775:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83607:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25797:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84201:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79686:471;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82582:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15057:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80165:568;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84393:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81477:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65963:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;85541:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85088:267;;;;;;;;;;;;;:::i;:::-;;83496:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55392:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84591:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85378:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81818:652;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82798:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78518:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82704:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78598:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20699:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83295:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82896:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16241:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60644:103;;;;;;;;;;;;;:::i;:::-;;82478:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59996:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78361:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19482:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80741:355;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83998:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78477:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78636:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84797:264;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83004:165;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78311:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81602:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78404:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81352:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83177:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78442:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26746:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81104:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83397:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60902:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83775:199;83900:4;83930:36;83954:11;83930:23;:36::i;:::-;83923:43;;83775:199;;;:::o;83607:161::-;59882:13;:11;:13::i;:::-;83718:42:::1;83737:8;83747:12;83718:18;:42::i;:::-;83607:161:::0;;:::o;19306:100::-;19360:13;19393:5;19386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19306:100;:::o;25797:218::-;25873:7;25898:16;25906:7;25898;:16::i;:::-;25893:64;;25923:34;;;;;;;;;;;;;;25893:64;25977:15;:24;25993:7;25977:24;;;;;;;;;;;:30;;;;;;;;;;;;25970:37;;25797:218;;;:::o;84201:184::-;84324:8;56913:30;56934:8;56913:20;:30::i;:::-;84345:32:::1;84359:8;84369:7;84345:13;:32::i;:::-;84201:184:::0;;;:::o;79686:471::-;79824:6;79043:1;79029:11;:15;79007:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;79141:9;;79126:11;79110:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;79088:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;79864:19:::1;79855:28;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:28;;;;;;;;:::i;:::-;;;79847:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79937:42;79945:26;79951:10;79963:7;79945:5;:26::i;:::-;79973:5;;79937:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:42::i;:::-;79929:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80057:7;80047:6;80020:24;80033:10;80020:12;:24::i;:::-;:33;;;;:::i;:::-;:44;;80012:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;80116:29;80126:10;80138:6;80116:9;:29::i;:::-;79686:471:::0;;;;;:::o;82582:96::-;82629:7;82656:14;:12;:14::i;:::-;82649:21;;82582:96;:::o;15057:323::-;15118:7;15346:15;:13;:15::i;:::-;15331:12;;15315:13;;:28;:46;15308:53;;15057:323;:::o;80165:568::-;80308:6;79043:1;79029:11;:15;79007:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;79141:9;;79126:11;79110:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;79088:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;80352:19:::1;80343:28;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:28;;;;;;;;:::i;:::-;;;80335:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;80441:42;80449:26;80455:10;80467:7;80449:5;:26::i;:::-;80477:5;;80441:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:42::i;:::-;80433:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80548:6;80537:8;;:17;;;;:::i;:::-;80524:9;:30;;80516:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;80637:7;80627:6;80600:24;80613:10;80600:12;:24::i;:::-;:33;;;;:::i;:::-;:44;;80592:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;80696:29;80706:10;80718:6;80696:9;:29::i;:::-;80165:568:::0;;;;;:::o;84393:190::-;84521:4;56741:10;56733:18;;:4;:18;;;56729:83;;56768:32;56789:10;56768:20;:32::i;:::-;56729:83;84538:37:::1;84557:4;84563:2;84567:7;84538:18;:37::i;:::-;84393:190:::0;;;;:::o;81477:117::-;81537:7;81564:22;81578:7;81564:13;:22::i;:::-;81557:29;;81477:117;;;:::o;65963:442::-;66060:7;66069;66089:26;66118:17;:27;66136:8;66118:27;;;;;;;;;;;66089:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66190:1;66162:30;;:7;:16;;;:30;;;66158:92;;66219:19;66209:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66158:92;66262:21;66327:17;:15;:17::i;:::-;66286:58;;66300:7;:23;;;66287:36;;:10;:36;;;;:::i;:::-;66286:58;;;;:::i;:::-;66262:82;;66365:7;:16;;;66383:13;66357:40;;;;;;65963:442;;;;;:::o;85541:228::-;85635:5;85622:18;;:11;;;;;;;;;;;:18;;;85614:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;85680:6;85675:87;85696:8;;:15;;85692:1;:19;85675:87;;;85733:17;85738:8;;85747:1;85738:11;;;;;;;:::i;:::-;;;;;;;;85733:4;:17::i;:::-;85713:3;;;;;:::i;:::-;;;;85675:87;;;;85541:228;;:::o;85088:267::-;59882:13;:11;:13::i;:::-;85136:23:::1;85162:21;85136:47;;85194:12;85209:4;85194:19;;85248:5;;;;;;;;;;;85240:19;;85281:15;85240:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85226:75;;;;;85320:7;85312:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;85125:230;;85088:267::o:0;83496:84::-;59882:13;:11;:13::i;:::-;83566:6:::1;83558:5;;:14;;;;;;;;;;;;;;;;;;83496:84:::0;:::o;55392:143::-;55492:42;55392:143;:::o;84591:198::-;84723:4;56741:10;56733:18;;:4;:18;;;56729:83;;56768:32;56789:10;56768:20;:32::i;:::-;56729:83;84740:41:::1;84763:4;84769:2;84773:7;84740:22;:41::i;:::-;84591:198:::0;;;;:::o;85378:155::-;85465:5;85452:18;;:11;;;;;;;;;;;:18;;;85444:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;85505:20;85511:7;85520:4;85505:5;:20::i;:::-;85378:155;:::o;81818:652::-;81905:16;81939:23;81965:17;81975:6;81965:9;:17::i;:::-;81939:43;;81993:28;82038:15;82024:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81993:61;;82065:21;82120:16;82139:15;:13;:15::i;:::-;82120:34;;82101:333;82180:14;:12;:14::i;:::-;82169:8;:25;82101:333;;;82250:17;82258:8;82250:7;:17::i;:::-;82246:177;;;82308:6;82287:27;;:17;82295:8;82287:7;:17::i;:::-;:27;;;82283:139;;82364:8;82335:11;82347:13;82335:26;;;;;;;;:::i;:::-;;;;;;;:37;;;;;82391:15;;;;;:::i;:::-;;;;82283:139;82246:177;82209:10;;;;;:::i;:::-;;;;82101:333;;;;82451:11;82444:18;;;;;81818:652;;;:::o;82798:90::-;59882:13;:11;:13::i;:::-;82872:8:::1;82861;:19;;;;82798:90:::0;:::o;78518:73::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;82704:86::-;59882:13;:11;:13::i;:::-;82776:6:::1;82768:5;;:14;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;82704:86:::0;:::o;78598:31::-;;;;;;;;;;;;;:::o;20699:152::-;20771:7;20814:27;20833:7;20814:18;:27::i;:::-;20791:52;;20699:152;;;:::o;83295:94::-;59882:13;:11;:13::i;:::-;83374:7:::1;83362:9;:19;;;;83295:94:::0;:::o;82896:100::-;59882:13;:11;:13::i;:::-;82978:10:::1;82966:9;:22;;;;82896:100:::0;:::o;16241:233::-;16313:7;16354:1;16337:19;;:5;:19;;;16333:60;;16365:28;;;;;;;;;;;;;;16333:60;10400:13;16411:18;:25;16430:5;16411:25;;;;;;;;;;;;;;;;:55;16404:62;;16241:233;;;:::o;60644:103::-;59882:13;:11;:13::i;:::-;60709:30:::1;60736:1;60709:18;:30::i;:::-;60644:103::o:0;82478:96::-;82525:7;82552:14;:12;:14::i;:::-;82545:21;;82478:96;:::o;59996:87::-;60042:7;60069:6;;;;;;;;;;;60062:13;;59996:87;:::o;78361:36::-;;;;:::o;19482:104::-;19538:13;19571:7;19564:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19482:104;:::o;80741:355::-;80801:6;79043:1;79029:11;:15;79007:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;79141:9;;79126:11;79110:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;79088:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;80837:16:::1;80828:25;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:25;;;;;;;;:::i;:::-;;;80820:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;80920:9;;80910:6;:19;;80901:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;81017:6;81006:8;;:17;;;;:::i;:::-;80993:9;:30;;80985:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;81059:29;81069:10;81081:6;81059:9;:29::i;:::-;80741:355:::0;;:::o;83998:195::-;84121:8;56913:30;56934:8;56913:20;:30::i;:::-;84142:43:::1;84166:8;84176;84142:23;:43::i;:::-;83998:195:::0;;;:::o;78477:34::-;;;;:::o;78636:20::-;;;;;;;;;;;;;:::o;84797:264::-;84984:4;56741:10;56733:18;;:4;:18;;;56729:83;;56768:32;56789:10;56768:20;:32::i;:::-;56729:83;85006:47:::1;85029:4;85035:2;85039:7;85048:4;85006:22;:47::i;:::-;84797:264:::0;;;;;:::o;83004:165::-;59882:13;:11;:13::i;:::-;83141:20:::1;83119:19;:42;;;;83004:165:::0;:::o;78311:41::-;;;;;;;;;;;;;:::o;81602:208::-;81702:13;81759:12;81773:18;81783:7;81773:9;:18::i;:::-;81742:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81728:74;;81602:208;;;:::o;78404:31::-;;;;:::o;81352:117::-;81412:7;81439:22;81453:7;81439:13;:22::i;:::-;81432:29;;81352:117;;;:::o;83177:110::-;59882:13;:11;:13::i;:::-;83269:10:::1;83254:12;:25;;;;;;:::i;:::-;;83177:110:::0;:::o;78442:28::-;;;;:::o;26746:164::-;26843:4;26867:18;:25;26886:5;26867:25;;;;;;;;;;;;;;;:35;26893:8;26867:35;;;;;;;;;;;;;;;;;;;;;;;;;26860:42;;26746:164;;;;:::o;81104:224::-;59882:13;:11;:13::i;:::-;81248:9:::1;;81238:6;81222:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;81214:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;81292:28;81302:9;81313:6;81292:9;:28::i;:::-;81104:224:::0;;:::o;83397:87::-;59882:13;:11;:13::i;:::-;83471:5:::1;83457:11;;:19;;;;;;;;;;;;;;;;;;83397:87:::0;:::o;60902:201::-;59882:13;:11;:13::i;:::-;61011:1:::1;60991:22;;:8;:22;;::::0;60983:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;61067:28;61086:8;61067:18;:28::i;:::-;60902:201:::0;:::o;65693:215::-;65795:4;65834:26;65819:41;;;:11;:41;;;;:81;;;;65864:36;65888:11;65864:23;:36::i;:::-;65819:81;65812:88;;65693:215;;;:::o;60161:132::-;60236:12;:10;:12::i;:::-;60225:23;;:7;:5;:7::i;:::-;:23;;;60217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60161:132::o;67055:332::-;67174:17;:15;:17::i;:::-;67158:33;;:12;:33;;;;67150:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;67277:1;67257:22;;:8;:22;;;67249:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;67344:35;;;;;;;;67356:8;67344:35;;;;;;67366:12;67344:35;;;;;67322:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67055:332;;:::o;27168:282::-;27233:4;27289:7;27270:15;:13;:15::i;:::-;:26;;:66;;;;;27323:13;;27313:7;:23;27270:66;:153;;;;;27422:1;11176:8;27374:17;:26;27392:7;27374:26;;;;;;;;;;;;:44;:49;27270:153;27250:173;;27168:282;;;:::o;56971:419::-;57210:1;55492:42;57162:45;;;:49;57158:225;;;55492:42;57233;;;57284:4;57291:8;57233:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57228:144;;57347:8;57328:28;;;;;;;;;;;:::i;:::-;;;;;;;;57228:144;57158:225;56971:419;:::o;25230:408::-;25319:13;25335:16;25343:7;25335;:16::i;:::-;25319:32;;25391:5;25368:28;;:19;:17;:19::i;:::-;:28;;;25364:175;;25416:44;25433:5;25440:19;:17;:19::i;:::-;25416:16;:44::i;:::-;25411:128;;25488:35;;;;;;;;;;;;;;25411:128;25364:175;25584:2;25551:15;:24;25567:7;25551:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25622:7;25618:2;25602:28;;25611:5;25602:28;;;;;;;;;;;;25308:330;25230:408;;:::o;79447:203::-;79546:7;79622;79631;79611:28;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79601:39;;;;;;79588:53;;;;;;;;:::i;:::-;;;;;;;;;;;;;79578:64;;;;;;79571:71;;79447:203;;;;:::o;79245:194::-;79350:4;79379:52;79398:5;79405:19;;79426:4;79379:18;:52::i;:::-;79372:59;;79245:194;;;;:::o;43308:112::-;43385:27;43395:2;43399:8;43385:27;;;;;;;;;;;;:9;:27::i;:::-;43308:112;;:::o;15478:296::-;15533:7;15740:15;:13;:15::i;:::-;15724:13;;:31;15717:38;;15478:296;:::o;78824:101::-;78889:7;78824:101;:::o;29436:2825::-;29578:27;29608;29627:7;29608:18;:27::i;:::-;29578:57;;29693:4;29652:45;;29668:19;29652:45;;;29648:86;;29706:28;;;;;;;;;;;;;;29648:86;29748:27;29777:23;29804:35;29831:7;29804:26;:35::i;:::-;29747:92;;;;29939:68;29964:15;29981:4;29987:19;:17;:19::i;:::-;29939:24;:68::i;:::-;29934:180;;30027:43;30044:4;30050:19;:17;:19::i;:::-;30027:16;:43::i;:::-;30022:92;;30079:35;;;;;;;;;;;;;;30022:92;29934:180;30145:1;30131:16;;:2;:16;;;30127:52;;30156:23;;;;;;;;;;;;;;30127:52;30192:43;30214:4;30220:2;30224:7;30233:1;30192:21;:43::i;:::-;30328:15;30325:160;;;30468:1;30447:19;30440:30;30325:160;30865:18;:24;30884:4;30865:24;;;;;;;;;;;;;;;;30863:26;;;;;;;;;;;;30934:18;:22;30953:2;30934:22;;;;;;;;;;;;;;;;30932:24;;;;;;;;;;;31256:146;31293:2;31342:45;31357:4;31363:2;31367:19;31342:14;:45::i;:::-;11456:8;31314:73;31256:18;:146::i;:::-;31227:17;:26;31245:7;31227:26;;;;;;;;;;;:175;;;;31573:1;11456:8;31522:19;:47;:52;31518:627;;31595:19;31627:1;31617:7;:11;31595:33;;31784:1;31750:17;:30;31768:11;31750:30;;;;;;;;;;;;:35;31746:384;;31888:13;;31873:11;:28;31869:242;;32068:19;32035:17;:30;32053:11;32035:30;;;;;;;;;;;:52;;;;31869:242;31746:384;31576:569;31518:627;32192:7;32188:2;32173:27;;32182:4;32173:27;;;;;;;;;;;;32211:42;32232:4;32238:2;32242:7;32251:1;32211:20;:42::i;:::-;29567:2694;;;29436:2825;;;:::o;16832:178::-;16893:7;10400:13;10665:3;16921:18;:25;16940:5;16921:25;;;;;;;;;;;;;;;;:50;;16920:82;16913:89;;16832:178;;;:::o;66687:97::-;66745:6;66771:5;66764:12;;66687:97;:::o;32357:193::-;32503:39;32520:4;32526:2;32530:7;32503:39;;;;;;;;;;;;:16;:39::i;:::-;32357:193;;;:::o;44005:3081::-;44085:27;44115;44134:7;44115:18;:27::i;:::-;44085:57;;44155:12;44186:19;44155:52;;44221:27;44250:23;44277:35;44304:7;44277:26;:35::i;:::-;44220:92;;;;44329:13;44325:316;;;44450:68;44475:15;44492:4;44498:19;:17;:19::i;:::-;44450:24;:68::i;:::-;44445:184;;44542:43;44559:4;44565:19;:17;:19::i;:::-;44542:16;:43::i;:::-;44537:92;;44594:35;;;;;;;;;;;;;;44537:92;44445:184;44325:316;44653:51;44675:4;44689:1;44693:7;44702:1;44653:21;:51::i;:::-;44797:15;44794:160;;;44937:1;44916:19;44909:30;44794:160;45615:1;10665:3;45585:1;:26;;45584:32;45556:18;:24;45575:4;45556:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;45883:176;45920:4;45991:53;46006:4;46020:1;46024:19;45991:14;:53::i;:::-;11456:8;11176;45944:43;45943:101;45883:18;:176::i;:::-;45854:17;:26;45872:7;45854:26;;;;;;;;;;;:205;;;;46230:1;11456:8;46179:19;:47;:52;46175:627;;46252:19;46284:1;46274:7;:11;46252:33;;46441:1;46407:17;:30;46425:11;46407:30;;;;;;;;;;;;:35;46403:384;;46545:13;;46530:11;:28;46526:242;;46725:19;46692:17;:30;46710:11;46692:30;;;;;;;;;;;:52;;;;46526:242;46403:384;46233:569;46175:627;46857:7;46853:1;46830:35;;46839:4;46830:35;;;;;;;;;;;;46876:50;46897:4;46911:1;46915:7;46924:1;46876:20;:50::i;:::-;47053:12;;:14;;;;;;;;;;;;;44074:3012;;;;44005:3081;;:::o;21854:1275::-;21921:7;21941:12;21956:7;21941:22;;22024:4;22005:15;:13;:15::i;:::-;:23;22001:1061;;22058:13;;22051:4;:20;22047:1015;;;22096:14;22113:17;:23;22131:4;22113:23;;;;;;;;;;;;22096:40;;22230:1;11176:8;22202:6;:24;:29;22198:845;;22867:113;22884:1;22874:6;:11;22867:113;;22927:17;:25;22945:6;;;;;;;22927:25;;;;;;;;;;;;22918:34;;22867:113;;;23013:6;23006:13;;;;;;22198:845;22073:989;22047:1015;22001:1061;23090:31;;;;;;;;;;;;;;21854:1275;;;;:::o;61263:191::-;61337:16;61356:6;;;;;;;;;;;61337:25;;61382:8;61373:6;;:17;;;;;;;;;;;;;;;;;;61437:8;61406:40;;61427:8;61406:40;;;;;;;;;;;;61326:128;61263:191;:::o;15856:102::-;15911:7;15938:12;;15931:19;;15856:102;:::o;26355:234::-;26502:8;26450:18;:39;26469:19;:17;:19::i;:::-;26450:39;;;;;;;;;;;;;;;:49;26490:8;26450:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26562:8;26526:55;;26541:19;:17;:19::i;:::-;26526:55;;;26572:8;26526:55;;;;;;:::i;:::-;;;;;;;;26355:234;;:::o;33148:407::-;33323:31;33336:4;33342:2;33346:7;33323:12;:31::i;:::-;33387:1;33369:2;:14;;;:19;33365:183;;33408:56;33439:4;33445:2;33449:7;33458:5;33408:30;:56::i;:::-;33403:145;;33492:40;;;;;;;;;;;;;;33403:145;33365:183;33148:407;;;;:::o;49683:1745::-;49748:17;50182:4;50175;50169:11;50165:22;50274:1;50268:4;50261:15;50349:4;50346:1;50342:12;50335:19;;50431:1;50426:3;50419:14;50535:3;50774:5;50756:428;50782:1;50756:428;;;50822:1;50817:3;50813:11;50806:18;;50993:2;50987:4;50983:13;50979:2;50975:22;50970:3;50962:36;51087:2;51081:4;51077:13;51069:21;;51154:4;50756:428;51144:25;50756:428;50760:21;51223:3;51218;51214:13;51338:4;51333:3;51329:14;51322:21;;51403:6;51398:3;51391:19;49787:1634;;;49683:1745;;;:::o;16556:178::-;16617:7;10400:13;10538:2;16645:18;:25;16664:5;16645:25;;;;;;;;;;;;;;;;:50;;16644:82;16637:89;;16556:178;;;:::o;63245:157::-;63330:4;63369:25;63354:40;;;:11;:40;;;;63347:47;;63245:157;;;:::o;58547:98::-;58600:7;58627:10;58620:17;;58547:98;:::o;49476:105::-;49536:7;49563:10;49556:17;;49476:105;:::o;69682:190::-;69807:4;69860;69831:25;69844:5;69851:4;69831:12;:25::i;:::-;:33;69824:40;;69682:190;;;;;:::o;42535:689::-;42666:19;42672:2;42676:8;42666:5;:19::i;:::-;42745:1;42727:2;:14;;;:19;42723:483;;42767:11;42781:13;;42767:27;;42813:13;42835:8;42829:3;:14;42813:30;;42862:233;42893:62;42932:1;42936:2;42940:7;;;;;;42949:5;42893:30;:62::i;:::-;42888:167;;42991:40;;;;;;;;;;;;;;42888:167;43090:3;43082:5;:11;42862:233;;43177:3;43160:13;;:20;43156:34;;43182:8;;;43156:34;42748:458;;42723:483;42535:689;;;:::o;28331:485::-;28433:27;28462:23;28503:38;28544:15;:24;28560:7;28544:24;;;;;;;;;;;28503:65;;28721:18;28698:41;;28778:19;28772:26;28753:45;;28683:126;28331:485;;;:::o;27559:659::-;27708:11;27873:16;27866:5;27862:28;27853:37;;28033:16;28022:9;28018:32;28005:45;;28183:15;28172:9;28169:30;28161:5;28150:9;28147:20;28144:56;28134:66;;27559:659;;;;;:::o;34217:159::-;;;;;:::o;48785:311::-;48920:7;48940:16;11580:3;48966:19;:41;;48940:68;;11580:3;49034:31;49045:4;49051:2;49055:9;49034:10;:31::i;:::-;49026:40;;:62;;49019:69;;;48785:311;;;;;:::o;23677:450::-;23757:14;23925:16;23918:5;23914:28;23905:37;;24102:5;24088:11;24063:23;24059:41;24056:52;24049:5;24046:63;24036:73;;23677:450;;;;:::o;35041:158::-;;;;;:::o;35639:716::-;35802:4;35848:2;35823:45;;;35869:19;:17;:19::i;:::-;35890:4;35896:7;35905:5;35823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36123:1;36106:6;:13;:18;36102:235;;36152:40;;;;;;;;;;;;;;36102:235;36295:6;36289:13;36280:6;36276:2;36272:15;36265:38;35819:529;35992:54;;;35982:64;;;:6;:64;;;;35975:71;;;35639:716;;;;;;:::o;70549:296::-;70632:7;70652:20;70675:4;70652:27;;70695:9;70690:118;70714:5;:12;70710:1;:16;70690:118;;;70763:33;70773:12;70787:5;70793:1;70787:8;;;;;;;;:::i;:::-;;;;;;;;70763:9;:33::i;:::-;70748:48;;70728:3;;;;;:::i;:::-;;;;70690:118;;;;70825:12;70818:19;;;70549:296;;;;:::o;36817:2966::-;36890:20;36913:13;;36890:36;;36953:1;36941:8;:13;36937:44;;36963:18;;;;;;;;;;;;;;36937:44;36994:61;37024:1;37028:2;37032:12;37046:8;36994:21;:61::i;:::-;37538:1;10538:2;37508:1;:26;;37507:32;37495:8;:45;37469:18;:22;37488:2;37469:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37817:139;37854:2;37908:33;37931:1;37935:2;37939:1;37908:14;:33::i;:::-;37875:30;37896:8;37875:20;:30::i;:::-;:66;37817:18;:139::i;:::-;37783:17;:31;37801:12;37783:31;;;;;;;;;;;:173;;;;37973:16;38004:11;38033:8;38018:12;:23;38004:37;;38554:16;38550:2;38546:25;38534:37;;38926:12;38886:8;38845:1;38783:25;38724:1;38663;38636:335;39297:1;39283:12;39279:20;39237:346;39338:3;39329:7;39326:16;39237:346;;39556:7;39546:8;39543:1;39516:25;39513:1;39510;39505:59;39391:1;39382:7;39378:15;39367:26;;39237:346;;;39241:77;39628:1;39616:8;:13;39612:45;;39638:19;;;;;;;;;;;;;;39612:45;39690:3;39674:13;:19;;;;37243:2462;;39715:60;39744:1;39748:2;39752:12;39766:8;39715:20;:60::i;:::-;36879:2904;36817:2966;;:::o;48486:147::-;48623:6;48486:147;;;;;:::o;77589:149::-;77652:7;77683:1;77679;:5;:51;;77710:20;77725:1;77728;77710:14;:20::i;:::-;77679:51;;;77687:20;77702:1;77705;77687:14;:20::i;:::-;77679:51;77672:58;;77589:149;;;;:::o;24229:324::-;24299:14;24532:1;24522:8;24519:15;24493:24;24489:46;24479:56;;24229:324;;;:::o;77746:268::-;77814:13;77921:1;77915:4;77908:15;77950:1;77944:4;77937:15;77991:4;77985;77975:21;77966:30;;77746:268;;;;:::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:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:246::-;3248:1;3258:113;3272:6;3269:1;3266:13;3258:113;;;3357:1;3352:3;3348:11;3342:18;3338:1;3333:3;3329:11;3322:39;3294:2;3291:1;3287:10;3282:15;;3258:113;;;3405:1;3396:6;3391:3;3387:16;3380:27;3229:184;3167:246;;;:::o;3419:102::-;3460:6;3511:2;3507:7;3502:2;3495:5;3491:14;3487:28;3477:38;;3419:102;;;:::o;3527:377::-;3615:3;3643:39;3676:5;3643:39;:::i;:::-;3698:71;3762:6;3757:3;3698:71;:::i;:::-;3691:78;;3778:65;3836:6;3831:3;3824:4;3817:5;3813:16;3778:65;:::i;:::-;3868:29;3890:6;3868:29;:::i;:::-;3863:3;3859:39;3852:46;;3619:285;3527:377;;;;:::o;3910:313::-;4023:4;4061:2;4050:9;4046:18;4038:26;;4110:9;4104:4;4100:20;4096:1;4085:9;4081:17;4074:47;4138:78;4211:4;4202:6;4138:78;:::i;:::-;4130:86;;3910:313;;;;:::o;4229:77::-;4266:7;4295:5;4284:16;;4229:77;;;:::o;4312:122::-;4385:24;4403:5;4385:24;:::i;:::-;4378:5;4375:35;4365:63;;4424:1;4421;4414:12;4365:63;4312:122;:::o;4440:139::-;4486:5;4524:6;4511:20;4502:29;;4540:33;4567:5;4540:33;:::i;:::-;4440:139;;;;:::o;4585:329::-;4644:6;4693:2;4681:9;4672:7;4668:23;4664:32;4661:119;;;4699:79;;:::i;:::-;4661:119;4819:1;4844:53;4889:7;4880:6;4869:9;4865:22;4844:53;:::i;:::-;4834:63;;4790:117;4585:329;;;;:::o;4920:118::-;5007:24;5025:5;5007:24;:::i;:::-;5002:3;4995:37;4920:118;;:::o;5044:222::-;5137:4;5175:2;5164:9;5160:18;5152:26;;5188:71;5256:1;5245:9;5241:17;5232:6;5188:71;:::i;:::-;5044:222;;;;:::o;5272:474::-;5340:6;5348;5397:2;5385:9;5376:7;5372:23;5368:32;5365:119;;;5403:79;;:::i;:::-;5365:119;5523:1;5548:53;5593:7;5584:6;5573:9;5569:22;5548:53;:::i;:::-;5538:63;;5494:117;5650:2;5676:53;5721:7;5712:6;5701:9;5697:22;5676:53;:::i;:::-;5666:63;;5621:118;5272:474;;;;;:::o;5752:117::-;5861:1;5858;5851:12;5875:117;5984:1;5981;5974:12;5998:117;6107:1;6104;6097:12;6138:568;6211:8;6221:6;6271:3;6264:4;6256:6;6252:17;6248:27;6238:122;;6279:79;;:::i;:::-;6238:122;6392:6;6379:20;6369:30;;6422:18;6414:6;6411:30;6408:117;;;6444:79;;:::i;:::-;6408:117;6558:4;6550:6;6546:17;6534:29;;6612:3;6604:4;6596:6;6592:17;6582:8;6578:32;6575:41;6572:128;;;6619:79;;:::i;:::-;6572:128;6138:568;;;;;:::o;6712:849::-;6816:6;6824;6832;6840;6889:2;6877:9;6868:7;6864:23;6860:32;6857:119;;;6895:79;;:::i;:::-;6857:119;7015:1;7040:53;7085:7;7076:6;7065:9;7061:22;7040:53;:::i;:::-;7030:63;;6986:117;7142:2;7168:53;7213:7;7204:6;7193:9;7189:22;7168:53;:::i;:::-;7158:63;;7113:118;7298:2;7287:9;7283:18;7270:32;7329:18;7321:6;7318:30;7315:117;;;7351:79;;:::i;:::-;7315:117;7464:80;7536:7;7527:6;7516:9;7512:22;7464:80;:::i;:::-;7446:98;;;;7241:313;6712:849;;;;;;;:::o;7567:118::-;7654:24;7672:5;7654:24;:::i;:::-;7649:3;7642:37;7567:118;;:::o;7691:222::-;7784:4;7822:2;7811:9;7807:18;7799:26;;7835:71;7903:1;7892:9;7888:17;7879:6;7835:71;:::i;:::-;7691:222;;;;:::o;7919:619::-;7996:6;8004;8012;8061:2;8049:9;8040:7;8036:23;8032:32;8029:119;;;8067:79;;:::i;:::-;8029:119;8187:1;8212:53;8257:7;8248:6;8237:9;8233:22;8212:53;:::i;:::-;8202:63;;8158:117;8314:2;8340:53;8385:7;8376:6;8365:9;8361:22;8340:53;:::i;:::-;8330:63;;8285:118;8442:2;8468:53;8513:7;8504:6;8493:9;8489:22;8468:53;:::i;:::-;8458:63;;8413:118;7919:619;;;;;:::o;8544:329::-;8603:6;8652:2;8640:9;8631:7;8627:23;8623:32;8620:119;;;8658:79;;:::i;:::-;8620:119;8778:1;8803:53;8848:7;8839:6;8828:9;8824:22;8803:53;:::i;:::-;8793:63;;8749:117;8544:329;;;;:::o;8879:474::-;8947:6;8955;9004:2;8992:9;8983:7;8979:23;8975:32;8972:119;;;9010:79;;:::i;:::-;8972:119;9130:1;9155:53;9200:7;9191:6;9180:9;9176:22;9155:53;:::i;:::-;9145:63;;9101:117;9257:2;9283:53;9328:7;9319:6;9308:9;9304:22;9283:53;:::i;:::-;9273:63;;9228:118;8879:474;;;;;:::o;9359:332::-;9480:4;9518:2;9507:9;9503:18;9495:26;;9531:71;9599:1;9588:9;9584:17;9575:6;9531:71;:::i;:::-;9612:72;9680:2;9669:9;9665:18;9656:6;9612:72;:::i;:::-;9359:332;;;;;:::o;9714:568::-;9787:8;9797:6;9847:3;9840:4;9832:6;9828:17;9824:27;9814:122;;9855:79;;:::i;:::-;9814:122;9968:6;9955:20;9945:30;;9998:18;9990:6;9987:30;9984:117;;;10020:79;;:::i;:::-;9984:117;10134:4;10126:6;10122:17;10110:29;;10188:3;10180:4;10172:6;10168:17;10158:8;10154:32;10151:41;10148:128;;;10195:79;;:::i;:::-;10148:128;9714:568;;;;;:::o;10288:559::-;10374:6;10382;10431:2;10419:9;10410:7;10406:23;10402:32;10399:119;;;10437:79;;:::i;:::-;10399:119;10585:1;10574:9;10570:17;10557:31;10615:18;10607:6;10604:30;10601:117;;;10637:79;;:::i;:::-;10601:117;10750:80;10822:7;10813:6;10802:9;10798:22;10750:80;:::i;:::-;10732:98;;;;10528:312;10288:559;;;;;:::o;10853:60::-;10881:3;10902:5;10895:12;;10853:60;;;:::o;10919:142::-;10969:9;11002:53;11020:34;11029:24;11047:5;11029:24;:::i;:::-;11020:34;:::i;:::-;11002:53;:::i;:::-;10989:66;;10919:142;;;:::o;11067:126::-;11117:9;11150:37;11181:5;11150:37;:::i;:::-;11137:50;;11067:126;;;:::o;11199:158::-;11281:9;11314:37;11345:5;11314:37;:::i;:::-;11301:50;;11199:158;;;:::o;11363:195::-;11482:69;11545:5;11482:69;:::i;:::-;11477:3;11470:82;11363:195;;:::o;11564:286::-;11689:4;11727:2;11716:9;11712:18;11704:26;;11740:103;11840:1;11829:9;11825:17;11816:6;11740:103;:::i;:::-;11564:286;;;;:::o;11856:114::-;11923:6;11957:5;11951:12;11941:22;;11856:114;;;:::o;11976:184::-;12075:11;12109:6;12104:3;12097:19;12149:4;12144:3;12140:14;12125:29;;11976:184;;;;:::o;12166:132::-;12233:4;12256:3;12248:11;;12286:4;12281:3;12277:14;12269:22;;12166:132;;;:::o;12304:108::-;12381:24;12399:5;12381:24;:::i;:::-;12376:3;12369:37;12304:108;;:::o;12418:179::-;12487:10;12508:46;12550:3;12542:6;12508:46;:::i;:::-;12586:4;12581:3;12577:14;12563:28;;12418:179;;;;:::o;12603:113::-;12673:4;12705;12700:3;12696:14;12688:22;;12603:113;;;:::o;12752:732::-;12871:3;12900:54;12948:5;12900:54;:::i;:::-;12970:86;13049:6;13044:3;12970:86;:::i;:::-;12963:93;;13080:56;13130:5;13080:56;:::i;:::-;13159:7;13190:1;13175:284;13200:6;13197:1;13194:13;13175:284;;;13276:6;13270:13;13303:63;13362:3;13347:13;13303:63;:::i;:::-;13296:70;;13389:60;13442:6;13389:60;:::i;:::-;13379:70;;13235:224;13222:1;13219;13215:9;13210:14;;13175:284;;;13179:14;13475:3;13468:10;;12876:608;;;12752:732;;;;:::o;13490:373::-;13633:4;13671:2;13660:9;13656:18;13648:26;;13720:9;13714:4;13710:20;13706:1;13695:9;13691:17;13684:47;13748:108;13851:4;13842:6;13748:108;:::i;:::-;13740:116;;13490:373;;;;:::o;13869:113::-;13956:1;13949:5;13946:12;13936:40;;13972:1;13969;13962:12;13936:40;13869:113;:::o;13988:167::-;14048:5;14086:6;14073:20;14064:29;;14102:47;14143:5;14102:47;:::i;:::-;13988:167;;;;:::o;14161:357::-;14234:6;14283:2;14271:9;14262:7;14258:23;14254:32;14251:119;;;14289:79;;:::i;:::-;14251:119;14409:1;14434:67;14493:7;14484:6;14473:9;14469:22;14434:67;:::i;:::-;14424:77;;14380:131;14161:357;;;;:::o;14524:116::-;14594:21;14609:5;14594:21;:::i;:::-;14587:5;14584:32;14574:60;;14630:1;14627;14620:12;14574:60;14524:116;:::o;14646:133::-;14689:5;14727:6;14714:20;14705:29;;14743:30;14767:5;14743:30;:::i;:::-;14646:133;;;;:::o;14785:468::-;14850:6;14858;14907:2;14895:9;14886:7;14882:23;14878:32;14875:119;;;14913:79;;:::i;:::-;14875:119;15033:1;15058:53;15103:7;15094:6;15083:9;15079:22;15058:53;:::i;:::-;15048:63;;15004:117;15160:2;15186:50;15228:7;15219:6;15208:9;15204:22;15186:50;:::i;:::-;15176:60;;15131:115;14785:468;;;;;:::o;15259:77::-;15296:7;15325:5;15314:16;;15259:77;;;:::o;15342:118::-;15429:24;15447:5;15429:24;:::i;:::-;15424:3;15417:37;15342:118;;:::o;15466:222::-;15559:4;15597:2;15586:9;15582:18;15574:26;;15610:71;15678:1;15667:9;15663:17;15654:6;15610:71;:::i;:::-;15466:222;;;;:::o;15694:117::-;15803:1;15800;15793:12;15817:180;15865:77;15862:1;15855:88;15962:4;15959:1;15952:15;15986:4;15983:1;15976:15;16003:281;16086:27;16108:4;16086:27;:::i;:::-;16078:6;16074:40;16216:6;16204:10;16201:22;16180:18;16168:10;16165:34;16162:62;16159:88;;;16227:18;;:::i;:::-;16159:88;16267:10;16263:2;16256:22;16046:238;16003:281;;:::o;16290:129::-;16324:6;16351:20;;:::i;:::-;16341:30;;16380:33;16408:4;16400:6;16380:33;:::i;:::-;16290:129;;;:::o;16425:307::-;16486:4;16576:18;16568:6;16565:30;16562:56;;;16598:18;;:::i;:::-;16562:56;16636:29;16658:6;16636:29;:::i;:::-;16628:37;;16720:4;16714;16710:15;16702:23;;16425:307;;;:::o;16738:146::-;16835:6;16830:3;16825;16812:30;16876:1;16867:6;16862:3;16858:16;16851:27;16738:146;;;:::o;16890:423::-;16967:5;16992:65;17008:48;17049:6;17008:48;:::i;:::-;16992:65;:::i;:::-;16983:74;;17080:6;17073:5;17066:21;17118:4;17111:5;17107:16;17156:3;17147:6;17142:3;17138:16;17135:25;17132:112;;;17163:79;;:::i;:::-;17132:112;17253:54;17300:6;17295:3;17290;17253:54;:::i;:::-;16973:340;16890:423;;;;;:::o;17332:338::-;17387:5;17436:3;17429:4;17421:6;17417:17;17413:27;17403:122;;17444:79;;:::i;:::-;17403:122;17561:6;17548:20;17586:78;17660:3;17652:6;17645:4;17637:6;17633:17;17586:78;:::i;:::-;17577:87;;17393:277;17332:338;;;;:::o;17676:943::-;17771:6;17779;17787;17795;17844:3;17832:9;17823:7;17819:23;17815:33;17812:120;;;17851:79;;:::i;:::-;17812:120;17971:1;17996:53;18041:7;18032:6;18021:9;18017:22;17996:53;:::i;:::-;17986:63;;17942:117;18098:2;18124:53;18169:7;18160:6;18149:9;18145:22;18124:53;:::i;:::-;18114:63;;18069:118;18226:2;18252:53;18297:7;18288:6;18277:9;18273:22;18252:53;:::i;:::-;18242:63;;18197:118;18382:2;18371:9;18367:18;18354:32;18413:18;18405:6;18402:30;18399:117;;;18435:79;;:::i;:::-;18399:117;18540:62;18594:7;18585:6;18574:9;18570:22;18540:62;:::i;:::-;18530:72;;18325:287;17676:943;;;;;;;:::o;18625:122::-;18698:24;18716:5;18698:24;:::i;:::-;18691:5;18688:35;18678:63;;18737:1;18734;18727:12;18678:63;18625:122;:::o;18753:139::-;18799:5;18837:6;18824:20;18815:29;;18853:33;18880:5;18853:33;:::i;:::-;18753:139;;;;:::o;18898:329::-;18957:6;19006:2;18994:9;18985:7;18981:23;18977:32;18974:119;;;19012:79;;:::i;:::-;18974:119;19132:1;19157:53;19202:7;19193:6;19182:9;19178:22;19157:53;:::i;:::-;19147:63;;19103:117;18898:329;;;;:::o;19233:180::-;19281:77;19278:1;19271:88;19378:4;19375:1;19368:15;19402:4;19399:1;19392:15;19419:119;19506:1;19499:5;19496:12;19486:46;;19512:18;;:::i;:::-;19486:46;19419:119;:::o;19544:139::-;19595:7;19624:5;19613:16;;19630:47;19671:5;19630:47;:::i;:::-;19544:139;;;:::o;19689:::-;19751:9;19784:38;19816:5;19784:38;:::i;:::-;19771:51;;19689:139;;;:::o;19834:155::-;19933:49;19976:5;19933:49;:::i;:::-;19928:3;19921:62;19834:155;;:::o;19995:246::-;20100:4;20138:2;20127:9;20123:18;20115:26;;20151:83;20231:1;20220:9;20216:17;20207:6;20151:83;:::i;:::-;19995:246;;;;:::o;20247:308::-;20309:4;20399:18;20391:6;20388:30;20385:56;;;20421:18;;:::i;:::-;20385:56;20459:29;20481:6;20459:29;:::i;:::-;20451:37;;20543:4;20537;20533:15;20525:23;;20247:308;;;:::o;20561:425::-;20639:5;20664:66;20680:49;20722:6;20680:49;:::i;:::-;20664:66;:::i;:::-;20655:75;;20753:6;20746:5;20739:21;20791:4;20784:5;20780:16;20829:3;20820:6;20815:3;20811:16;20808:25;20805:112;;;20836:79;;:::i;:::-;20805:112;20926:54;20973:6;20968:3;20963;20926:54;:::i;:::-;20645:341;20561:425;;;;;:::o;21006:340::-;21062:5;21111:3;21104:4;21096:6;21092:17;21088:27;21078:122;;21119:79;;:::i;:::-;21078:122;21236:6;21223:20;21261:79;21336:3;21328:6;21321:4;21313:6;21309:17;21261:79;:::i;:::-;21252:88;;21068:278;21006:340;;;;:::o;21352:509::-;21421:6;21470:2;21458:9;21449:7;21445:23;21441:32;21438:119;;;21476:79;;:::i;:::-;21438:119;21624:1;21613:9;21609:17;21596:31;21654:18;21646:6;21643:30;21640:117;;;21676:79;;:::i;:::-;21640:117;21781:63;21836:7;21827:6;21816:9;21812:22;21781:63;:::i;:::-;21771:73;;21567:287;21352:509;;;;:::o;21867:474::-;21935:6;21943;21992:2;21980:9;21971:7;21967:23;21963:32;21960:119;;;21998:79;;:::i;:::-;21960:119;22118:1;22143:53;22188:7;22179:6;22168:9;22164:22;22143:53;:::i;:::-;22133:63;;22089:117;22245:2;22271:53;22316:7;22307:6;22296:9;22292:22;22271:53;:::i;:::-;22261:63;;22216:118;21867:474;;;;;:::o;22347:::-;22415:6;22423;22472:2;22460:9;22451:7;22447:23;22443:32;22440:119;;;22478:79;;:::i;:::-;22440:119;22598:1;22623:53;22668:7;22659:6;22648:9;22644:22;22623:53;:::i;:::-;22613:63;;22569:117;22725:2;22751:53;22796:7;22787:6;22776:9;22772:22;22751:53;:::i;:::-;22741:63;;22696:118;22347:474;;;;;:::o;22827:323::-;22883:6;22932:2;22920:9;22911:7;22907:23;22903:32;22900:119;;;22938:79;;:::i;:::-;22900:119;23058:1;23083:50;23125:7;23116:6;23105:9;23101:22;23083:50;:::i;:::-;23073:60;;23029:114;22827:323;;;;:::o;23156:180::-;23204:77;23201:1;23194:88;23301:4;23298:1;23291:15;23325:4;23322:1;23315:15;23342:320;23386:6;23423:1;23417:4;23413:12;23403:22;;23470:1;23464:4;23460:12;23491:18;23481:81;;23547:4;23539:6;23535:17;23525:27;;23481:81;23609:2;23601:6;23598:14;23578:18;23575:38;23572:84;;23628:18;;:::i;:::-;23572:84;23393:269;23342:320;;;:::o;23668:169::-;23808:21;23804:1;23796:6;23792:14;23785:45;23668:169;:::o;23843:366::-;23985:3;24006:67;24070:2;24065:3;24006:67;:::i;:::-;23999:74;;24082:93;24171:3;24082:93;:::i;:::-;24200:2;24195:3;24191:12;24184:19;;23843:366;;;:::o;24215:419::-;24381:4;24419:2;24408:9;24404:18;24396:26;;24468:9;24462:4;24458:20;24454:1;24443:9;24439:17;24432:47;24496:131;24622:4;24496:131;:::i;:::-;24488:139;;24215:419;;;:::o;24640:180::-;24688:77;24685:1;24678:88;24785:4;24782:1;24775:15;24809:4;24806:1;24799:15;24826:191;24866:3;24885:20;24903:1;24885:20;:::i;:::-;24880:25;;24919:20;24937:1;24919:20;:::i;:::-;24914:25;;24962:1;24959;24955:9;24948:16;;24983:3;24980:1;24977:10;24974:36;;;24990:18;;:::i;:::-;24974:36;24826:191;;;;:::o;25023:169::-;25163:21;25159:1;25151:6;25147:14;25140:45;25023:169;:::o;25198:366::-;25340:3;25361:67;25425:2;25420:3;25361:67;:::i;:::-;25354:74;;25437:93;25526:3;25437:93;:::i;:::-;25555:2;25550:3;25546:12;25539:19;;25198:366;;;:::o;25570:419::-;25736:4;25774:2;25763:9;25759:18;25751:26;;25823:9;25817:4;25813:20;25809:1;25798:9;25794:17;25787:47;25851:131;25977:4;25851:131;:::i;:::-;25843:139;;25570:419;;;:::o;25995:176::-;26135:28;26131:1;26123:6;26119:14;26112:52;25995:176;:::o;26177:366::-;26319:3;26340:67;26404:2;26399:3;26340:67;:::i;:::-;26333:74;;26416:93;26505:3;26416:93;:::i;:::-;26534:2;26529:3;26525:12;26518:19;;26177:366;;;:::o;26549:419::-;26715:4;26753:2;26742:9;26738:18;26730:26;;26802:9;26796:4;26792:20;26788:1;26777:9;26773:17;26766:47;26830:131;26956:4;26830:131;:::i;:::-;26822:139;;26549:419;;;:::o;26974:163::-;27114:15;27110:1;27102:6;27098:14;27091:39;26974:163;:::o;27143:366::-;27285:3;27306:67;27370:2;27365:3;27306:67;:::i;:::-;27299:74;;27382:93;27471:3;27382:93;:::i;:::-;27500:2;27495:3;27491:12;27484:19;;27143:366;;;:::o;27515:419::-;27681:4;27719:2;27708:9;27704:18;27696:26;;27768:9;27762:4;27758:20;27754:1;27743:9;27739:17;27732:47;27796:131;27922:4;27796:131;:::i;:::-;27788:139;;27515:419;;;:::o;27940:181::-;28080:33;28076:1;28068:6;28064:14;28057:57;27940:181;:::o;28127:366::-;28269:3;28290:67;28354:2;28349:3;28290:67;:::i;:::-;28283:74;;28366:93;28455:3;28366:93;:::i;:::-;28484:2;28479:3;28475:12;28468:19;;28127:366;;;:::o;28499:419::-;28665:4;28703:2;28692:9;28688:18;28680:26;;28752:9;28746:4;28742:20;28738:1;28727:9;28723:17;28716:47;28780:131;28906:4;28780:131;:::i;:::-;28772:139;;28499:419;;;:::o;28924:228::-;29064:34;29060:1;29052:6;29048:14;29041:58;29133:11;29128:2;29120:6;29116:15;29109:36;28924:228;:::o;29158:366::-;29300:3;29321:67;29385:2;29380:3;29321:67;:::i;:::-;29314:74;;29397:93;29486:3;29397:93;:::i;:::-;29515:2;29510:3;29506:12;29499:19;;29158:366;;;:::o;29530:419::-;29696:4;29734:2;29723:9;29719:18;29711:26;;29783:9;29777:4;29773:20;29769:1;29758:9;29754:17;29747:47;29811:131;29937:4;29811:131;:::i;:::-;29803:139;;29530:419;;;:::o;29955:410::-;29995:7;30018:20;30036:1;30018:20;:::i;:::-;30013:25;;30052:20;30070:1;30052:20;:::i;:::-;30047:25;;30107:1;30104;30100:9;30129:30;30147:11;30129:30;:::i;:::-;30118:41;;30308:1;30299:7;30295:15;30292:1;30289:22;30269:1;30262:9;30242:83;30219:139;;30338:18;;:::i;:::-;30219:139;30003:362;29955:410;;;;:::o;30371:168::-;30511:20;30507:1;30499:6;30495:14;30488:44;30371:168;:::o;30545:366::-;30687:3;30708:67;30772:2;30767:3;30708:67;:::i;:::-;30701:74;;30784:93;30873:3;30784:93;:::i;:::-;30902:2;30897:3;30893:12;30886:19;;30545:366;;;:::o;30917:419::-;31083:4;31121:2;31110:9;31106:18;31098:26;;31170:9;31164:4;31160:20;31156:1;31145:9;31141:17;31134:47;31198:131;31324:4;31198:131;:::i;:::-;31190:139;;30917:419;;;:::o;31342:180::-;31390:77;31387:1;31380:88;31487:4;31484:1;31477:15;31511:4;31508:1;31501:15;31528:185;31568:1;31585:20;31603:1;31585:20;:::i;:::-;31580:25;;31619:20;31637:1;31619:20;:::i;:::-;31614:25;;31658:1;31648:35;;31663:18;;:::i;:::-;31648:35;31705:1;31702;31698:9;31693:14;;31528:185;;;;:::o;31719:169::-;31859:21;31855:1;31847:6;31843:14;31836:45;31719:169;:::o;31894:366::-;32036:3;32057:67;32121:2;32116:3;32057:67;:::i;:::-;32050:74;;32133:93;32222:3;32133:93;:::i;:::-;32251:2;32246:3;32242:12;32235:19;;31894:366;;;:::o;32266:419::-;32432:4;32470:2;32459:9;32455:18;32447:26;;32519:9;32513:4;32509:20;32505:1;32494:9;32490:17;32483:47;32547:131;32673:4;32547:131;:::i;:::-;32539:139;;32266:419;;;:::o;32691:180::-;32739:77;32736:1;32729:88;32836:4;32833:1;32826:15;32860:4;32857:1;32850:15;32877:233;32916:3;32939:24;32957:5;32939:24;:::i;:::-;32930:33;;32985:66;32978:5;32975:77;32972:103;;33055:18;;:::i;:::-;32972:103;33102:1;33095:5;33091:13;33084:20;;32877:233;;;:::o;33116:147::-;33217:11;33254:3;33239:18;;33116:147;;;;:::o;33269:114::-;;:::o;33389:398::-;33548:3;33569:83;33650:1;33645:3;33569:83;:::i;:::-;33562:90;;33661:93;33750:3;33661:93;:::i;:::-;33779:1;33774:3;33770:11;33763:18;;33389:398;;;:::o;33793:379::-;33977:3;33999:147;34142:3;33999:147;:::i;:::-;33992:154;;34163:3;34156:10;;33793:379;;;:::o;34178:165::-;34318:17;34314:1;34306:6;34302:14;34295:41;34178:165;:::o;34349:366::-;34491:3;34512:67;34576:2;34571:3;34512:67;:::i;:::-;34505:74;;34588:93;34677:3;34588:93;:::i;:::-;34706:2;34701:3;34697:12;34690:19;;34349:366;;;:::o;34721:419::-;34887:4;34925:2;34914:9;34910:18;34902:26;;34974:9;34968:4;34964:20;34960:1;34949:9;34945:17;34938:47;35002:131;35128:4;35002:131;:::i;:::-;34994:139;;34721:419;;;:::o;35146:182::-;35286:34;35282:1;35274:6;35270:14;35263:58;35146:182;:::o;35334:366::-;35476:3;35497:67;35561:2;35556:3;35497:67;:::i;:::-;35490:74;;35573:93;35662:3;35573:93;:::i;:::-;35691:2;35686:3;35682:12;35675:19;;35334:366;;;:::o;35706:419::-;35872:4;35910:2;35899:9;35895:18;35887:26;;35959:9;35953:4;35949:20;35945:1;35934:9;35930:17;35923:47;35987:131;36113:4;35987:131;:::i;:::-;35979:139;;35706:419;;;:::o;36131:227::-;36271:34;36267:1;36259:6;36255:14;36248:58;36340:10;36335:2;36327:6;36323:15;36316:35;36131:227;:::o;36364:366::-;36506:3;36527:67;36591:2;36586:3;36527:67;:::i;:::-;36520:74;;36603:93;36692:3;36603:93;:::i;:::-;36721:2;36716:3;36712:12;36705:19;;36364:366;;;:::o;36736:419::-;36902:4;36940:2;36929:9;36925:18;36917:26;;36989:9;36983:4;36979:20;36975:1;36964:9;36960:17;36953:47;37017:131;37143:4;37017:131;:::i;:::-;37009:139;;36736:419;;;:::o;37161:148::-;37263:11;37300:3;37285:18;;37161:148;;;;:::o;37315:141::-;37364:4;37387:3;37379:11;;37410:3;37407:1;37400:14;37444:4;37441:1;37431:18;37423:26;;37315:141;;;:::o;37486:874::-;37589:3;37626:5;37620:12;37655:36;37681:9;37655:36;:::i;:::-;37707:89;37789:6;37784:3;37707:89;:::i;:::-;37700:96;;37827:1;37816:9;37812:17;37843:1;37838:166;;;;38018:1;38013:341;;;;37805:549;;37838:166;37922:4;37918:9;37907;37903:25;37898:3;37891:38;37984:6;37977:14;37970:22;37962:6;37958:35;37953:3;37949:45;37942:52;;37838:166;;38013:341;38080:38;38112:5;38080:38;:::i;:::-;38140:1;38154:154;38168:6;38165:1;38162:13;38154:154;;;38242:7;38236:14;38232:1;38227:3;38223:11;38216:35;38292:1;38283:7;38279:15;38268:26;;38190:4;38187:1;38183:12;38178:17;;38154:154;;;38337:6;38332:3;38328:16;38321:23;;38020:334;;37805:549;;37593:767;;37486:874;;;;:::o;38366:390::-;38472:3;38500:39;38533:5;38500:39;:::i;:::-;38555:89;38637:6;38632:3;38555:89;:::i;:::-;38548:96;;38653:65;38711:6;38706:3;38699:4;38692:5;38688:16;38653:65;:::i;:::-;38743:6;38738:3;38734:16;38727:23;;38476:280;38366:390;;;;:::o;38762:155::-;38902:7;38898:1;38890:6;38886:14;38879:31;38762:155;:::o;38923:400::-;39083:3;39104:84;39186:1;39181:3;39104:84;:::i;:::-;39097:91;;39197:93;39286:3;39197:93;:::i;:::-;39315:1;39310:3;39306:11;39299:18;;38923:400;;;:::o;39329:695::-;39607:3;39629:92;39717:3;39708:6;39629:92;:::i;:::-;39622:99;;39738:95;39829:3;39820:6;39738:95;:::i;:::-;39731:102;;39850:148;39994:3;39850:148;:::i;:::-;39843:155;;40015:3;40008:10;;39329:695;;;;;:::o;40030:93::-;40067:6;40114:2;40109;40102:5;40098:14;40094:23;40084:33;;40030:93;;;:::o;40129:107::-;40173:8;40223:5;40217:4;40213:16;40192:37;;40129:107;;;;:::o;40242:393::-;40311:6;40361:1;40349:10;40345:18;40384:97;40414:66;40403:9;40384:97;:::i;:::-;40502:39;40532:8;40521:9;40502:39;:::i;:::-;40490:51;;40574:4;40570:9;40563:5;40559:21;40550:30;;40623:4;40613:8;40609:19;40602:5;40599:30;40589:40;;40318:317;;40242:393;;;;;:::o;40641:142::-;40691:9;40724:53;40742:34;40751:24;40769:5;40751:24;:::i;:::-;40742:34;:::i;:::-;40724:53;:::i;:::-;40711:66;;40641:142;;;:::o;40789:75::-;40832:3;40853:5;40846:12;;40789:75;;;:::o;40870:269::-;40980:39;41011:7;40980:39;:::i;:::-;41041:91;41090:41;41114:16;41090:41;:::i;:::-;41082:6;41075:4;41069:11;41041:91;:::i;:::-;41035:4;41028:105;40946:193;40870:269;;;:::o;41145:73::-;41190:3;41145:73;:::o;41224:189::-;41301:32;;:::i;:::-;41342:65;41400:6;41392;41386:4;41342:65;:::i;:::-;41277:136;41224:189;;:::o;41419:186::-;41479:120;41496:3;41489:5;41486:14;41479:120;;;41550:39;41587:1;41580:5;41550:39;:::i;:::-;41523:1;41516:5;41512:13;41503:22;;41479:120;;;41419:186;;:::o;41611:543::-;41712:2;41707:3;41704:11;41701:446;;;41746:38;41778:5;41746:38;:::i;:::-;41830:29;41848:10;41830:29;:::i;:::-;41820:8;41816:44;42013:2;42001:10;41998:18;41995:49;;;42034:8;42019:23;;41995:49;42057:80;42113:22;42131:3;42113:22;:::i;:::-;42103:8;42099:37;42086:11;42057:80;:::i;:::-;41716:431;;41701:446;41611:543;;;:::o;42160:117::-;42214:8;42264:5;42258:4;42254:16;42233:37;;42160:117;;;;:::o;42283:169::-;42327:6;42360:51;42408:1;42404:6;42396:5;42393:1;42389:13;42360:51;:::i;:::-;42356:56;42441:4;42435;42431:15;42421:25;;42334:118;42283:169;;;;:::o;42457:295::-;42533:4;42679:29;42704:3;42698:4;42679:29;:::i;:::-;42671:37;;42741:3;42738:1;42734:11;42728:4;42725:21;42717:29;;42457:295;;;;:::o;42757:1395::-;42874:37;42907:3;42874:37;:::i;:::-;42976:18;42968:6;42965:30;42962:56;;;42998:18;;:::i;:::-;42962:56;43042:38;43074:4;43068:11;43042:38;:::i;:::-;43127:67;43187:6;43179;43173:4;43127:67;:::i;:::-;43221:1;43245:4;43232:17;;43277:2;43269:6;43266:14;43294:1;43289:618;;;;43951:1;43968:6;43965:77;;;44017:9;44012:3;44008:19;44002:26;43993:35;;43965:77;44068:67;44128:6;44121:5;44068:67;:::i;:::-;44062:4;44055:81;43924:222;43259:887;;43289:618;43341:4;43337:9;43329:6;43325:22;43375:37;43407:4;43375:37;:::i;:::-;43434:1;43448:208;43462:7;43459:1;43456:14;43448:208;;;43541:9;43536:3;43532:19;43526:26;43518:6;43511:42;43592:1;43584:6;43580:14;43570:24;;43639:2;43628:9;43624:18;43611:31;;43485:4;43482:1;43478:12;43473:17;;43448:208;;;43684:6;43675:7;43672:19;43669:179;;;43742:9;43737:3;43733:19;43727:26;43785:48;43827:4;43819:6;43815:17;43804:9;43785:48;:::i;:::-;43777:6;43770:64;43692:156;43669:179;43894:1;43890;43882:6;43878:14;43874:22;43868:4;43861:36;43296:611;;;43259:887;;42849:1303;;;42757:1395;;:::o;44158:225::-;44298:34;44294:1;44286:6;44282:14;44275:58;44367:8;44362:2;44354:6;44350:15;44343:33;44158:225;:::o;44389:366::-;44531:3;44552:67;44616:2;44611:3;44552:67;:::i;:::-;44545:74;;44628:93;44717:3;44628:93;:::i;:::-;44746:2;44741:3;44737:12;44730:19;;44389:366;;;:::o;44761:419::-;44927:4;44965:2;44954:9;44950:18;44942:26;;45014:9;45008:4;45004:20;45000:1;44989:9;44985:17;44978:47;45042:131;45168:4;45042:131;:::i;:::-;45034:139;;44761:419;;;:::o;45186:182::-;45326:34;45322:1;45314:6;45310:14;45303:58;45186:182;:::o;45374:366::-;45516:3;45537:67;45601:2;45596:3;45537:67;:::i;:::-;45530:74;;45613:93;45702:3;45613:93;:::i;:::-;45731:2;45726:3;45722:12;45715:19;;45374:366;;;:::o;45746:419::-;45912:4;45950:2;45939:9;45935:18;45927:26;;45999:9;45993:4;45989:20;45985:1;45974:9;45970:17;45963:47;46027:131;46153:4;46027:131;:::i;:::-;46019:139;;45746:419;;;:::o;46171:229::-;46311:34;46307:1;46299:6;46295:14;46288:58;46380:12;46375:2;46367:6;46363:15;46356:37;46171:229;:::o;46406:366::-;46548:3;46569:67;46633:2;46628:3;46569:67;:::i;:::-;46562:74;;46645:93;46734:3;46645:93;:::i;:::-;46763:2;46758:3;46754:12;46747:19;;46406:366;;;:::o;46778:419::-;46944:4;46982:2;46971:9;46967:18;46959:26;;47031:9;47025:4;47021:20;47017:1;47006:9;47002:17;46995:47;47059:131;47185:4;47059:131;:::i;:::-;47051:139;;46778:419;;;:::o;47203:175::-;47343:27;47339:1;47331:6;47327:14;47320:51;47203:175;:::o;47384:366::-;47526:3;47547:67;47611:2;47606:3;47547:67;:::i;:::-;47540:74;;47623:93;47712:3;47623:93;:::i;:::-;47741:2;47736:3;47732:12;47725:19;;47384:366;;;:::o;47756:419::-;47922:4;47960:2;47949:9;47945:18;47937:26;;48009:9;48003:4;47999:20;47995:1;47984:9;47980:17;47973:47;48037:131;48163:4;48037:131;:::i;:::-;48029:139;;47756:419;;;:::o;48181:332::-;48302:4;48340:2;48329:9;48325:18;48317:26;;48353:71;48421:1;48410:9;48406:17;48397:6;48353:71;:::i;:::-;48434:72;48502:2;48491:9;48487:18;48478:6;48434:72;:::i;:::-;48181:332;;;;;:::o;48519:137::-;48573:5;48604:6;48598:13;48589:22;;48620:30;48644:5;48620:30;:::i;:::-;48519:137;;;;:::o;48662:345::-;48729:6;48778:2;48766:9;48757:7;48753:23;48749:32;48746:119;;;48784:79;;:::i;:::-;48746:119;48904:1;48929:61;48982:7;48973:6;48962:9;48958:22;48929:61;:::i;:::-;48919:71;;48875:125;48662:345;;;;:::o;49013:79::-;49052:7;49081:5;49070:16;;49013:79;;;:::o;49098:157::-;49203:45;49223:24;49241:5;49223:24;:::i;:::-;49203:45;:::i;:::-;49198:3;49191:58;49098:157;;:::o;49261:256::-;49373:3;49388:75;49459:3;49450:6;49388:75;:::i;:::-;49488:2;49483:3;49479:12;49472:19;;49508:3;49501:10;;49261:256;;;;:::o;49523:98::-;49574:6;49608:5;49602:12;49592:22;;49523:98;;;:::o;49627:168::-;49710:11;49744:6;49739:3;49732:19;49784:4;49779:3;49775:14;49760:29;;49627:168;;;;:::o;49801:373::-;49887:3;49915:38;49947:5;49915:38;:::i;:::-;49969:70;50032:6;50027:3;49969:70;:::i;:::-;49962:77;;50048:65;50106:6;50101:3;50094:4;50087:5;50083:16;50048:65;:::i;:::-;50138:29;50160:6;50138:29;:::i;:::-;50133:3;50129:39;50122:46;;49891:283;49801:373;;;;:::o;50180:640::-;50375:4;50413:3;50402:9;50398:19;50390:27;;50427:71;50495:1;50484:9;50480:17;50471:6;50427:71;:::i;:::-;50508:72;50576:2;50565:9;50561:18;50552:6;50508:72;:::i;:::-;50590;50658:2;50647:9;50643:18;50634:6;50590:72;:::i;:::-;50709:9;50703:4;50699:20;50694:2;50683:9;50679:18;50672:48;50737:76;50808:4;50799:6;50737:76;:::i;:::-;50729:84;;50180:640;;;;;;;:::o;50826:141::-;50882:5;50913:6;50907:13;50898:22;;50929:32;50955:5;50929:32;:::i;:::-;50826:141;;;;:::o;50973:349::-;51042:6;51091:2;51079:9;51070:7;51066:23;51062:32;51059:119;;;51097:79;;:::i;:::-;51059:119;51217:1;51242:63;51297:7;51288:6;51277:9;51273:22;51242:63;:::i;:::-;51232:73;;51188:127;50973:349;;;;:::o

Swarm Source

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