ETH Price: $2,974.75 (+3.96%)
Gas: 1 Gwei

Token

627EEA (627EEA)
 

Overview

Max Total Supply

4,000 627EEA

Holders

994

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
0xgeedorah.eth
Balance
1 627EEA
0x0f9be6c42301cc9329fac7ea08f42449dcc2f00f
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:
SomethingIsComing

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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: @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: lib/Constants.sol


pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    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));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    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);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    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) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

// File: HereIsPurple.sol


pragma solidity ^0.8.18;






contract SomethingIsComing is 
    ERC721A, 
    DefaultOperatorFilterer, 
    Ownable,
    ReentrancyGuard
    {
    uint256 MAX_SUPPLY = 10000;
    //Declaring contants for purplelist and public sale
    uint256 public PURPLELIST_MAX_MINTS = 2;
    uint256 public PUBLIC_MAX_MINTS = 20;
    //Prices for sales
    uint256 public purplelistPrice = 0.01 ether;
    uint256 public publicSalePrice = 0.05 ether;
    //bool for sale states
    bool public isPurplelistActive;
    bool public isPublicActive;
    string public saleState = "Not Active";

    //base URI
    string public baseURI;

    //stores the merkleroot to verify if msgSender is on the list
    bytes32 private purplelistMerkleRoot;

    //mappings for if caller has already claimed purplelist. Keeping track of amount caller has minted.
    mapping(address => uint) public purplelistClaimed;
    mapping(address => uint) public amountMinted;


    //In case of burn event
    struct BurnRecord {
        address user;
        uint256 amountBurned;
    }

    BurnRecord[] public burnRecords;
    mapping(address => uint) public amountBurned;
    bytes32 private burnMerkleroot;
    bool public isBurnEvent = false;
    bool private isBurnRootNeeded = false;

    address private devAddress;

    constructor(string memory _baseUri, bytes32 _purplelistRoot) ERC721A("627EEA", "627EEA") 
    {
        baseURI = _baseUri; 
        purplelistMerkleRoot = _purplelistRoot;
        devAddress = msg.sender; //replace with actual address

    }




    function purplelistMint(bytes32[] calldata _PurpleProof, uint256 quantity) external payable nonReentrant{
        require(isPurplelistActive, "Purplelist sale is not active"); //checking sale state
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); 
        require(CheckAddressPurplelisted(_PurpleProof, leaf), "Address not on purplelist");
        require(purplelistClaimed[msg.sender] + quantity <= PURPLELIST_MAX_MINTS, "Address already claimed purplelist mint(s) or too many mints"); //check if address has already claimed
        require(msg.value >= purplelistPrice * quantity, "Not enough ether sent"); //check eth sent is sufficient
         //uses merkletree to verify using address and calldata
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        purplelistClaimed[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
        
    }


    function mint(uint256 quantity) external payable nonReentrant{
        require(isPublicActive, "Public sale is not active");//checking sale state
        //Not exceeding supply
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        //MAX MINTS
        require(quantity <= PUBLIC_MAX_MINTS, "Exceeded max amount of mints per tx");
        require(msg.value >= publicSalePrice * quantity, "Not enough ether sent");
        amountMinted[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
        
       
       
    }

    function CheckAddressPurplelisted(bytes32[] calldata _proof, bytes32 leaf) internal view returns(bool){
        return MerkleProof.verify(_proof, purplelistMerkleRoot, leaf);

    }

    function CheckBurnAddress(bytes32[] calldata _proof, bytes32 leaf) internal view returns(bool){
            return MerkleProof.verify(_proof, burnMerkleroot, leaf);

    }

    function TeamMintPurple(uint256 quantity) external payable onlyOwner {
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        _safeMint(msg.sender, quantity);
    }
    function togglePublic() external onlyOwnerOrDev{
        isPublicActive = !isPublicActive;
    }
    function togglePurplelist() external onlyOwnerOrDev{
        isPurplelistActive = !isPurplelistActive;
    }

    function getSaleState() external view returns (string memory){
        if(isPurplelistActive && !isPublicActive){
            return("PurplelistOnly");
        }
        else if(isPurplelistActive && isPublicActive){
            return("PurplelistAndPublic");
        }
        else if(!isPurplelistActive && isPublicActive){
            return("PublicOnly");
        }else{
            return("Not Active");
        }
    }

    function getIfPurplelistClaimed(address _addr) external view returns (bool){
        if(purplelistClaimed[_addr] >= PURPLELIST_MAX_MINTS){
            return true;
        }else{
            return false;
        }
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    //if burnProof is not needed, can just pass a random byte array
    function Burn(uint256[] calldata tokenIds, bytes32[] calldata _burnProof) external {
        uint256 totalBurned = 0;

        require(isBurnEvent, "Burn event is not currently active");
        if(isBurnRootNeeded){
            bytes32 burnLeaf = keccak256(abi.encodePacked(msg.sender)); 
            require(CheckBurnAddress(_burnProof, burnLeaf), "Not ellibible to burn");
        }

        for (uint256 i = 0; i < tokenIds.length; ++i) {
            uint256 tokenId = tokenIds[i];
            require(_exists(tokenId), "Token does not exist");
            require(_isApprovedOrOwner(msg.sender, tokenId), "Not approved or owner");
            _burn(tokenId);
            totalBurned += 1;
            amountBurned[msg.sender] += 1;
        }

        burnRecords.push(BurnRecord(msg.sender, totalBurned));

        
    }


    function Withdraw() external payable onlyOwner {


        address Team = 0xD8b53519656ba3fBA69B548c417f70C2F212a404; 
        address dev = devAddress; //replace with dev address
        payable(Team).transfer((address(this).balance * 90 / 100)); //90% of funds

        payable(dev).transfer(address(this).balance); //remaining 10% to dev


    }


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


  
    function updatePurplelist(bytes32 _root) external onlyOwnerOrDev {
        purplelistMerkleRoot = _root;
    }

    function StartToBurn() external onlyOwnerOrDev {
        isBurnEvent = !isBurnEvent;
    }

    function updateBurnRoot(bytes32 _root) external onlyOwnerOrDev {
        burnMerkleroot = _root;
        isBurnRootNeeded = !isBurnRootNeeded;
    }
    //in case eth does weird things with price
    function setPrice(uint256 _publicPrice) external onlyOwnerOrDev {
        publicSalePrice = _publicPrice;
    }

    function setPurplelistPrice(uint256 _purplePrice) external onlyOwnerOrDev {
        purplelistPrice = _purplePrice;
    }

    function setMaxMintPerPurplelist(uint amount) external onlyOwnerOrDev{
        PURPLELIST_MAX_MINTS = amount;
    }

    function setMaxMintPerPublic(uint amount) external onlyOwnerOrDev{
        PUBLIC_MAX_MINTS = amount;
    }

    function setBaseURI(string calldata _base) public onlyOwnerOrDev {
        baseURI = _base;
    }

    modifier onlyOwnerOrDev() {
        require(msg.sender == owner() || msg.sender == devAddress, "Only owner or dev can call this function");
    _;
}



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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"bytes32","name":"_purplelistRoot","type":"bytes32"}],"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":"tokenIds","type":"uint256[]"},{"internalType":"bytes32[]","name":"_burnProof","type":"bytes32[]"}],"name":"Burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURPLELIST_MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"StartToBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"TeamMintPurple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"burnRecords","outputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amountBurned","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getIfPurplelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleState","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isBurnEvent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPurplelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"purplelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_PurpleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"purplelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"purplelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxMintPerPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxMintPerPurplelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_purplePrice","type":"uint256"}],"name":"setPurplelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePurplelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"updateBurnRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"updatePurplelist","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600a556002600b556014600c55662386f26fc10000600d5566b1a2bc2ec50000600e556040518060400160405280600a81526020017f4e6f7420416374697665000000000000000000000000000000000000000000008152506010908162000070919062000767565b506000601860006101000a81548160ff0219169083151502179055506000601860016101000a81548160ff021916908315150217905550348015620000b457600080fd5b5060405162005b4838038062005b488339818101604052810190620000da9190620009ed565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600681526020017f36323745454100000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f363237454541000000000000000000000000000000000000000000000000000081525081600290816200016e919062000767565b50806003908162000180919062000767565b50620001916200041a60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200038e57801562000254576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200021a92919062000a98565b600060405180830381600087803b1580156200023557600080fd5b505af11580156200024a573d6000803e3d6000fd5b505050506200038d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200030e576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002d492919062000a98565b600060405180830381600087803b158015620002ef57600080fd5b505af115801562000304573d6000803e3d6000fd5b505050506200038c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000357919062000ac5565b600060405180830381600087803b1580156200037257600080fd5b505af115801562000387573d6000803e3d6000fd5b505050505b5b5b5050620003b0620003a46200041f60201b60201c565b6200042760201b60201c565b60016009819055508160119081620003c9919062000767565b508060128190555033601860026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000ae2565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056f57607f821691505b60208210810362000585576200058462000527565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ef7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005b0565b620005fb8683620005b0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000648620006426200063c8462000613565b6200061d565b62000613565b9050919050565b6000819050919050565b620006648362000627565b6200067c62000673826200064f565b848454620005bd565b825550505050565b600090565b6200069362000684565b620006a081848462000659565b505050565b5b81811015620006c857620006bc60008262000689565b600181019050620006a6565b5050565b601f8211156200071757620006e1816200058b565b620006ec84620005a0565b81016020851015620006fc578190505b620007146200070b85620005a0565b830182620006a5565b50505b505050565b600082821c905092915050565b60006200073c600019846008026200071c565b1980831691505092915050565b600062000757838362000729565b9150826002028217905092915050565b6200077282620004ed565b67ffffffffffffffff8111156200078e576200078d620004f8565b5b6200079a825462000556565b620007a7828285620006cc565b600060209050601f831160018114620007df5760008415620007ca578287015190505b620007d6858262000749565b86555062000846565b601f198416620007ef866200058b565b60005b828110156200081957848901518255600182019150602085019450602081019050620007f2565b8683101562000839578489015162000835601f89168262000729565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000888826200086c565b810181811067ffffffffffffffff82111715620008aa57620008a9620004f8565b5b80604052505050565b6000620008bf6200084e565b9050620008cd82826200087d565b919050565b600067ffffffffffffffff821115620008f057620008ef620004f8565b5b620008fb826200086c565b9050602081019050919050565b60005b83811015620009285780820151818401526020810190506200090b565b60008484015250505050565b60006200094b6200094584620008d2565b620008b3565b9050828152602081018484840111156200096a576200096962000867565b5b6200097784828562000908565b509392505050565b600082601f83011262000997576200099662000862565b5b8151620009a984826020860162000934565b91505092915050565b6000819050919050565b620009c781620009b2565b8114620009d357600080fd5b50565b600081519050620009e781620009bc565b92915050565b6000806040838503121562000a075762000a0662000858565b5b600083015167ffffffffffffffff81111562000a285762000a276200085d565b5b62000a36858286016200097f565b925050602062000a4985828601620009d6565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a808262000a53565b9050919050565b62000a928162000a73565b82525050565b600060408201905062000aaf600083018562000a87565b62000abe602083018462000a87565b9392505050565b600060208201905062000adc600083018462000a87565b92915050565b6150568062000af26000396000f3fe6080604052600436106102935760003560e01c8063715018a61161015a578063a22cb465116100c1578063c23c73091161007a578063c23c73091461094d578063c51c2d2614610976578063c87b56dd146109a1578063e985e9c5146109de578063f2fde38b14610a1b578063fa6b9ded14610a4457610293565b8063a22cb4651461085a578063a3330d2514610883578063b38723f8146108ae578063b88d4fde146108ec578063b999878414610908578063baf176621461093157610293565b806395d89b411161011357806395d89b4114610769578063981d8771146107945780639b6860c8146107ab5780639f6373b9146107d65780639fcd13fc14610801578063a0712d681461083e57610293565b8063715018a61461067f57806377cf0a62146106965780638da5cb5b146106bf5780638e3fb190146106ea57806391b7f5ed1461071557806394a9d6921461073e57610293565b806340f0b08e116101fe57806357ea89b6116101b757806357ea89b61461057c578063603f4d52146105865780636352211e146105b157806369a8ed40146105ee5780636c0360eb1461061757806370a082311461064257610293565b806340f0b08e1461047b57806341f43434146104a657806342842e0e146104d1578063438a67e7146104ed57806349e949e71461052a57806355f804b31461055357610293565b806318160ddd1161025057806318160ddd146103875780631d8ccda7146103b257806323b872dd146103db57806325bdb2a8146103f757806337187028146104225780633d16e2bc1461045f57610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d57806313d8a5401461035957806314cf7cdb14610370575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613a16565b610a81565b6040516102cc9190613a5e565b60405180910390f35b3480156102e157600080fd5b506102ea610b13565b6040516102f79190613b09565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613b61565b610ba5565b6040516103349190613bcf565b60405180910390f35b61035760048036038101906103529190613c16565b610c24565b005b34801561036557600080fd5b5061036e610c3d565b005b34801561037c57600080fd5b50610385610d36565b005b34801561039357600080fd5b5061039c610e2f565b6040516103a99190613c65565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d49190613b61565b610e46565b005b6103f560048036038101906103f09190613c80565b610f1d565b005b34801561040357600080fd5b5061040c610f6c565b6040516104199190613b09565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613cd3565b6110ea565b6040516104569190613c65565b60405180910390f35b61047960048036038101906104749190613d65565b611102565b005b34801561048757600080fd5b50610490611372565b60405161049d9190613c65565b60405180910390f35b3480156104b257600080fd5b506104bb611378565b6040516104c89190613e24565b60405180910390f35b6104eb60048036038101906104e69190613c80565b61138a565b005b3480156104f957600080fd5b50610514600480360381019061050f9190613cd3565b6113d9565b6040516105219190613c65565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c9190613b61565b6113f1565b005b34801561055f57600080fd5b5061057a60048036038101906105759190613e95565b6114c8565b005b6105846115ab565b005b34801561059257600080fd5b5061059b61169d565b6040516105a89190613b09565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190613b61565b61172b565b6040516105e59190613bcf565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190613f18565b61173d565b005b34801561062357600080fd5b5061062c61183e565b6040516106399190613b09565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190613cd3565b6118cc565b6040516106769190613c65565b60405180910390f35b34801561068b57600080fd5b50610694611984565b005b3480156106a257600080fd5b506106bd60048036038101906106b89190613f18565b611998565b005b3480156106cb57600080fd5b506106d4611a6f565b6040516106e19190613bcf565b60405180910390f35b3480156106f657600080fd5b506106ff611a99565b60405161070c9190613a5e565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190613b61565b611aac565b005b34801561074a57600080fd5b50610753611b83565b6040516107609190613a5e565b60405180910390f35b34801561077557600080fd5b5061077e611b96565b60405161078b9190613b09565b60405180910390f35b3480156107a057600080fd5b506107a9611c28565b005b3480156107b757600080fd5b506107c0611d21565b6040516107cd9190613c65565b60405180910390f35b3480156107e257600080fd5b506107eb611d27565b6040516107f89190613c65565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190613cd3565b611d2d565b6040516108359190613a5e565b60405180910390f35b61085860048036038101906108539190613b61565b611d8a565b005b34801561086657600080fd5b50610881600480360381019061087c9190613f71565b611f38565b005b34801561088f57600080fd5b50610898611f51565b6040516108a59190613a5e565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613b61565b611f64565b6040516108e3929190613fb1565b60405180910390f35b6109066004803603810190610901919061410a565b611fb8565b005b34801561091457600080fd5b5061092f600480360381019061092a91906141e3565b612009565b005b61094b60048036038101906109469190613b61565b6122d5565b005b34801561095957600080fd5b50610974600480360381019061096f9190613b61565b612341565b005b34801561098257600080fd5b5061098b612418565b6040516109989190613c65565b60405180910390f35b3480156109ad57600080fd5b506109c860048036038101906109c39190613b61565b61241e565b6040516109d59190613b09565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a009190614264565b6124bc565b604051610a129190613a5e565b60405180910390f35b348015610a2757600080fd5b50610a426004803603810190610a3d9190613cd3565b612550565b005b348015610a5057600080fd5b50610a6b6004803603810190610a669190613cd3565b6125d3565b604051610a789190613c65565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610adc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b0c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b22906142d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4e906142d3565b8015610b9b5780601f10610b7057610100808354040283529160200191610b9b565b820191906000526020600020905b815481529060010190602001808311610b7e57829003601f168201915b5050505050905090565b6000610bb0826125eb565b610be6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c2e8161264a565b610c388383612747565b505050565b610c45611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ccb5750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190614376565b60405180910390fd5b601860009054906101000a900460ff1615601860006101000a81548160ff021916908315150217905550565b610d3e611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610dc45750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90614376565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000610e3961288b565b6001546000540303905090565b610e4e611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ed45750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90614376565b60405180910390fd5b80600b8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f5b57610f5a3361264a565b5b610f66848484612890565b50505050565b6060600f60009054906101000a900460ff168015610f975750600f60019054906101000a900460ff16155b15610fd9576040518060400160405280600e81526020017f507572706c656c6973744f6e6c7900000000000000000000000000000000000081525090506110e7565b600f60009054906101000a900460ff1680156110015750600f60019054906101000a900460ff165b15611043576040518060400160405280601381526020017f507572706c656c697374416e645075626c69630000000000000000000000000081525090506110e7565b600f60009054906101000a900460ff1615801561106c5750600f60019054906101000a900460ff165b156110ae576040518060400160405280600a81526020017f5075626c69634f6e6c790000000000000000000000000000000000000000000081525090506110e7565b6040518060400160405280600a81526020017f4e6f74204163746976650000000000000000000000000000000000000000000081525090505b90565b60136020528060005260406000206000915090505481565b61110a612bb2565b600f60009054906101000a900460ff16611159576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611150906143e2565b60405180910390fd5b60003360405160200161116c919061444a565b60405160208183030381529060405280519060200120905061118f848483612c01565b6111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c5906144b1565b60405180910390fd5b600b5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461121c9190614500565b111561125d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611254906145a6565b60405180910390fd5b81600d5461126b91906145c6565b3410156112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490614654565b60405180910390fd5b600a54826112b9610e2f565b6112c39190614500565b1115611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906146c0565b60405180910390fd5b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113539190614500565b925050819055506113643383612c5a565b5061136d612c78565b505050565b600b5481565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113c8576113c73361264a565b5b6113d3848484612c82565b50505050565b60146020528060005260406000206000915090505481565b6113f9611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061147f5750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614376565b60405180910390fd5b80600c8190555050565b6114d0611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806115565750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90614376565b60405180910390fd5b8181601191826115a692919061488d565b505050565b6115b3612ca2565b600073d8b53519656ba3fba69b548c417f70c2f212a40490506000601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508173ffffffffffffffffffffffffffffffffffffffff166108fc6064605a4761161c91906145c6565b611626919061498c565b9081150290604051600060405180830381858888f19350505050158015611651573d6000803e3d6000fd5b508073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611698573d6000803e3d6000fd5b505050565b601080546116aa906142d3565b80601f01602080910402602001604051908101604052809291908181526020018280546116d6906142d3565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b505050505081565b600061173682612d20565b9050919050565b611745611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117cb5750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190614376565b60405180910390fd5b80601781905550601860019054906101000a900460ff1615601860016101000a81548160ff02191690831515021790555050565b6011805461184b906142d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611877906142d3565b80156118c45780601f10611899576101008083540402835291602001916118c4565b820191906000526020600020905b8154815290600101906020018083116118a757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611933576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61198c612ca2565b6119966000612dec565b565b6119a0611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611a265750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90614376565b60405180910390fd5b8060128190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60009054906101000a900460ff1681565b611ab4611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611b3a5750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7090614376565b60405180910390fd5b80600e8190555050565b601860009054906101000a900460ff1681565b606060038054611ba5906142d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd1906142d3565b8015611c1e5780601f10611bf357610100808354040283529160200191611c1e565b820191906000526020600020905b815481529060010190602001808311611c0157829003601f168201915b5050505050905090565b611c30611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611cb65750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90614376565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b600e5481565b600d5481565b6000600b54601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d805760019050611d85565b600090505b919050565b611d92612bb2565b600f60019054906101000a900460ff16611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd890614a09565b60405180910390fd5b600a5481611ded610e2f565b611df79190614500565b1115611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f906146c0565b60405180910390fd5b600c54811115611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490614a9b565b60405180910390fd5b80600e54611e8b91906145c6565b341015611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490614654565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f1c9190614500565b92505081905550611f2d3382612c5a565b611f35612c78565b50565b81611f428161264a565b611f4c8383612eb2565b505050565b600f60019054906101000a900460ff1681565b60158181548110611f7457600080fd5b90600052602060002090600202016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ff657611ff53361264a565b5b61200285858585612fbd565b5050505050565b6000601860009054906101000a900460ff1661205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190614b2d565b60405180910390fd5b601860019054906101000a900460ff16156120e657600033604051602001612082919061444a565b6040516020818303038152906040528051906020012090506120a5848483613030565b6120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90614b99565b60405180910390fd5b505b60005b8585905081101561222457600086868381811061210957612108614bb9565b5b90506020020135905061211b816125eb565b61215a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215190614c34565b60405180910390fd5b6121643382613089565b6121a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219a90614ca0565b60405180910390fd5b6121ac8161311e565b6001836121b99190614500565b92506001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461220b9190614500565b92505081905550508061221d90614cc0565b90506120e9565b50601560405180604001604052803373ffffffffffffffffffffffffffffffffffffffff16815260200183815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015550505050505050565b6122dd612ca2565b600a54816122e9610e2f565b6122f39190614500565b1115612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b906146c0565b60405180910390fd5b61233e3382612c5a565b50565b612349611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806123cf5750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61240e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240590614376565b60405180910390fd5b80600d8190555050565b600c5481565b6060612429826125eb565b61245f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061246961312c565b9050600081510361248957604051806020016040528060008152506124b4565b80612493846131be565b6040516020016124a4929190614d44565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612558612ca2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be90614dda565b60405180910390fd5b6125d081612dec565b50565b60166020528060005260406000206000915090505481565b6000816125f661288b565b11158015612605575060005482105b8015612643575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612744576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016126c1929190614dfa565b602060405180830381865afa1580156126de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127029190614e38565b61274357806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161273a9190613bcf565b60405180910390fd5b5b50565b60006127528261172b565b90508073ffffffffffffffffffffffffffffffffffffffff1661277361320e565b73ffffffffffffffffffffffffffffffffffffffff16146127d65761279f8161279a61320e565b6124bc565b6127d5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061289b82612d20565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612902576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061290e84613216565b91509150612924818761291f61320e565b61323d565b612970576129398661293461320e565b6124bc565b61296f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036129d6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129e38686866001613281565b80156129ee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612abc85612a98888887613287565b7c0200000000000000000000000000000000000000000000000000000000176132af565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612b425760006001850190506000600460008381526020019081526020016000205403612b40576000548114612b3f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612baa86868660016132da565b505050505050565b600260095403612bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bee90614eb1565b60405180910390fd5b6002600981905550565b6000612c51848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601254846132e0565b90509392505050565b612c748282604051806020016040528060008152506132f7565b5050565b6001600981905550565b612c9d83838360405180602001604052806000815250611fb8565b505050565b612caa613394565b73ffffffffffffffffffffffffffffffffffffffff16612cc8611a6f565b73ffffffffffffffffffffffffffffffffffffffff1614612d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1590614f1d565b60405180910390fd5b565b60008082905080612d2f61288b565b11612db557600054811015612db45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612db2575b60008103612da8576004600083600190039350838152602001908152602001600020549050612d7e565b8092505050612de7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612ebf61320e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612f6c61320e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fb19190613a5e565b60405180910390a35050565b612fc8848484610f1d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461302a57612ff38484848461339c565b613029576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000613080848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601754846132e0565b90509392505050565b6000806130958361172b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061310457508373ffffffffffffffffffffffffffffffffffffffff166130ec84610ba5565b73ffffffffffffffffffffffffffffffffffffffff16145b80613115575061311481856124bc565b5b91505092915050565b6131298160006134ec565b50565b60606011805461313b906142d3565b80601f0160208091040260200160405190810160405280929190818152602001828054613167906142d3565b80156131b45780601f10613189576101008083540402835291602001916131b4565b820191906000526020600020905b81548152906001019060200180831161319757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156131f957600184039350600a81066030018453600a81049050806131d7575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861329e86868461373e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000826132ed8584613747565b1490509392505050565b613301838361379d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461338f57600080549050600083820390505b613341600086838060010194508661339c565b613377576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061332e57816000541461338c57600080fd5b50505b505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133c261320e565b8786866040518563ffffffff1660e01b81526004016133e49493929190614f92565b6020604051808303816000875af192505050801561342057506040513d601f19601f8201168201806040525081019061341d9190614ff3565b60015b613499573d8060008114613450576040519150601f19603f3d011682016040523d82523d6000602084013e613455565b606091505b506000815103613491576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60006134f783612d20565b9050600081905060008061350a86613216565b91509150841561357357613526818461352161320e565b61323d565b6135725761353b8361353661320e565b6124bc565b613571576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b613581836000886001613281565b801561358c57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613634836135f185600088613287565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176132af565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036136ba57600060018701905060006004600083815260200190815260200160002054036136b85760005481146136b7578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137248360008860016132da565b600160008154809291906001019190505550505050505050565b60009392505050565b60008082905060005b84518110156137925761377d828683815181106137705761376f614bb9565b5b6020026020010151613958565b9150808061378a90614cc0565b915050613750565b508091505092915050565b600080549050600082036137dd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137ea6000848385613281565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613861836138526000866000613287565b61385b85613983565b176132af565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461390257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506138c7565b506000820361393d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061395360008483856132da565b505050565b60008183106139705761396b8284613993565b61397b565b61397a8383613993565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139f3816139be565b81146139fe57600080fd5b50565b600081359050613a10816139ea565b92915050565b600060208284031215613a2c57613a2b6139b4565b5b6000613a3a84828501613a01565b91505092915050565b60008115159050919050565b613a5881613a43565b82525050565b6000602082019050613a736000830184613a4f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ab3578082015181840152602081019050613a98565b60008484015250505050565b6000601f19601f8301169050919050565b6000613adb82613a79565b613ae58185613a84565b9350613af5818560208601613a95565b613afe81613abf565b840191505092915050565b60006020820190508181036000830152613b238184613ad0565b905092915050565b6000819050919050565b613b3e81613b2b565b8114613b4957600080fd5b50565b600081359050613b5b81613b35565b92915050565b600060208284031215613b7757613b766139b4565b5b6000613b8584828501613b4c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bb982613b8e565b9050919050565b613bc981613bae565b82525050565b6000602082019050613be46000830184613bc0565b92915050565b613bf381613bae565b8114613bfe57600080fd5b50565b600081359050613c1081613bea565b92915050565b60008060408385031215613c2d57613c2c6139b4565b5b6000613c3b85828601613c01565b9250506020613c4c85828601613b4c565b9150509250929050565b613c5f81613b2b565b82525050565b6000602082019050613c7a6000830184613c56565b92915050565b600080600060608486031215613c9957613c986139b4565b5b6000613ca786828701613c01565b9350506020613cb886828701613c01565b9250506040613cc986828701613b4c565b9150509250925092565b600060208284031215613ce957613ce86139b4565b5b6000613cf784828501613c01565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613d2557613d24613d00565b5b8235905067ffffffffffffffff811115613d4257613d41613d05565b5b602083019150836020820283011115613d5e57613d5d613d0a565b5b9250929050565b600080600060408486031215613d7e57613d7d6139b4565b5b600084013567ffffffffffffffff811115613d9c57613d9b6139b9565b5b613da886828701613d0f565b93509350506020613dbb86828701613b4c565b9150509250925092565b6000819050919050565b6000613dea613de5613de084613b8e565b613dc5565b613b8e565b9050919050565b6000613dfc82613dcf565b9050919050565b6000613e0e82613df1565b9050919050565b613e1e81613e03565b82525050565b6000602082019050613e396000830184613e15565b92915050565b60008083601f840112613e5557613e54613d00565b5b8235905067ffffffffffffffff811115613e7257613e71613d05565b5b602083019150836001820283011115613e8e57613e8d613d0a565b5b9250929050565b60008060208385031215613eac57613eab6139b4565b5b600083013567ffffffffffffffff811115613eca57613ec96139b9565b5b613ed685828601613e3f565b92509250509250929050565b6000819050919050565b613ef581613ee2565b8114613f0057600080fd5b50565b600081359050613f1281613eec565b92915050565b600060208284031215613f2e57613f2d6139b4565b5b6000613f3c84828501613f03565b91505092915050565b613f4e81613a43565b8114613f5957600080fd5b50565b600081359050613f6b81613f45565b92915050565b60008060408385031215613f8857613f876139b4565b5b6000613f9685828601613c01565b9250506020613fa785828601613f5c565b9150509250929050565b6000604082019050613fc66000830185613bc0565b613fd36020830184613c56565b9392505050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61401782613abf565b810181811067ffffffffffffffff8211171561403657614035613fdf565b5b80604052505050565b60006140496139aa565b9050614055828261400e565b919050565b600067ffffffffffffffff82111561407557614074613fdf565b5b61407e82613abf565b9050602081019050919050565b82818337600083830152505050565b60006140ad6140a88461405a565b61403f565b9050828152602081018484840111156140c9576140c8613fda565b5b6140d484828561408b565b509392505050565b600082601f8301126140f1576140f0613d00565b5b813561410184826020860161409a565b91505092915050565b60008060008060808587031215614124576141236139b4565b5b600061413287828801613c01565b945050602061414387828801613c01565b935050604061415487828801613b4c565b925050606085013567ffffffffffffffff811115614175576141746139b9565b5b614181878288016140dc565b91505092959194509250565b60008083601f8401126141a3576141a2613d00565b5b8235905067ffffffffffffffff8111156141c0576141bf613d05565b5b6020830191508360208202830111156141dc576141db613d0a565b5b9250929050565b600080600080604085870312156141fd576141fc6139b4565b5b600085013567ffffffffffffffff81111561421b5761421a6139b9565b5b6142278782880161418d565b9450945050602085013567ffffffffffffffff81111561424a576142496139b9565b5b61425687828801613d0f565b925092505092959194509250565b6000806040838503121561427b5761427a6139b4565b5b600061428985828601613c01565b925050602061429a85828601613c01565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142eb57607f821691505b6020821081036142fe576142fd6142a4565b5b50919050565b7f4f6e6c79206f776e6572206f72206465762063616e2063616c6c20746869732060008201527f66756e6374696f6e000000000000000000000000000000000000000000000000602082015250565b6000614360602883613a84565b915061436b82614304565b604082019050919050565b6000602082019050818103600083015261438f81614353565b9050919050565b7f507572706c656c6973742073616c65206973206e6f7420616374697665000000600082015250565b60006143cc601d83613a84565b91506143d782614396565b602082019050919050565b600060208201905081810360008301526143fb816143bf565b9050919050565b60008160601b9050919050565b600061441a82614402565b9050919050565b600061442c8261440f565b9050919050565b61444461443f82613bae565b614421565b82525050565b60006144568284614433565b60148201915081905092915050565b7f41646472657373206e6f74206f6e20707572706c656c69737400000000000000600082015250565b600061449b601983613a84565b91506144a682614465565b602082019050919050565b600060208201905081810360008301526144ca8161448e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061450b82613b2b565b915061451683613b2b565b925082820190508082111561452e5761452d6144d1565b5b92915050565b7f4164647265737320616c726561647920636c61696d656420707572706c656c6960008201527f7374206d696e74287329206f7220746f6f206d616e79206d696e747300000000602082015250565b6000614590603c83613a84565b915061459b82614534565b604082019050919050565b600060208201905081810360008301526145bf81614583565b9050919050565b60006145d182613b2b565b91506145dc83613b2b565b92508282026145ea81613b2b565b91508282048414831517614601576146006144d1565b5b5092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b600061463e601583613a84565b915061464982614608565b602082019050919050565b6000602082019050818103600083015261466d81614631565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b60006146aa601683613a84565b91506146b582614674565b602082019050919050565b600060208201905081810360008301526146d98161469d565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261474d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614710565b6147578683614710565b95508019841693508086168417925050509392505050565b600061478a61478561478084613b2b565b613dc5565b613b2b565b9050919050565b6000819050919050565b6147a48361476f565b6147b86147b082614791565b84845461471d565b825550505050565b600090565b6147cd6147c0565b6147d881848461479b565b505050565b5b818110156147fc576147f16000826147c5565b6001810190506147de565b5050565b601f82111561484157614812816146eb565b61481b84614700565b8101602085101561482a578190505b61483e61483685614700565b8301826147dd565b50505b505050565b600082821c905092915050565b600061486460001984600802614846565b1980831691505092915050565b600061487d8383614853565b9150826002028217905092915050565b61489783836146e0565b67ffffffffffffffff8111156148b0576148af613fdf565b5b6148ba82546142d3565b6148c5828285614800565b6000601f8311600181146148f457600084156148e2578287013590505b6148ec8582614871565b865550614954565b601f198416614902866146eb565b60005b8281101561492a57848901358255600182019150602085019450602081019050614905565b868310156149475784890135614943601f891682614853565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061499782613b2b565b91506149a283613b2b565b9250826149b2576149b161495d565b5b828204905092915050565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b60006149f3601983613a84565b91506149fe826149bd565b602082019050919050565b60006020820190508181036000830152614a22816149e6565b9050919050565b7f4578636565646564206d617820616d6f756e74206f66206d696e74732070657260008201527f2074780000000000000000000000000000000000000000000000000000000000602082015250565b6000614a85602383613a84565b9150614a9082614a29565b604082019050919050565b60006020820190508181036000830152614ab481614a78565b9050919050565b7f4275726e206576656e74206973206e6f742063757272656e746c79206163746960008201527f7665000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b17602283613a84565b9150614b2282614abb565b604082019050919050565b60006020820190508181036000830152614b4681614b0a565b9050919050565b7f4e6f7420656c6c696269626c6520746f206275726e0000000000000000000000600082015250565b6000614b83601583613a84565b9150614b8e82614b4d565b602082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000614c1e601483613a84565b9150614c2982614be8565b602082019050919050565b60006020820190508181036000830152614c4d81614c11565b9050919050565b7f4e6f7420617070726f766564206f72206f776e65720000000000000000000000600082015250565b6000614c8a601583613a84565b9150614c9582614c54565b602082019050919050565b60006020820190508181036000830152614cb981614c7d565b9050919050565b6000614ccb82613b2b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614cfd57614cfc6144d1565b5b600182019050919050565b600081905092915050565b6000614d1e82613a79565b614d288185614d08565b9350614d38818560208601613a95565b80840191505092915050565b6000614d508285614d13565b9150614d5c8284614d13565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614dc4602683613a84565b9150614dcf82614d68565b604082019050919050565b60006020820190508181036000830152614df381614db7565b9050919050565b6000604082019050614e0f6000830185613bc0565b614e1c6020830184613bc0565b9392505050565b600081519050614e3281613f45565b92915050565b600060208284031215614e4e57614e4d6139b4565b5b6000614e5c84828501614e23565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614e9b601f83613a84565b9150614ea682614e65565b602082019050919050565b60006020820190508181036000830152614eca81614e8e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614f07602083613a84565b9150614f1282614ed1565b602082019050919050565b60006020820190508181036000830152614f3681614efa565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614f6482614f3d565b614f6e8185614f48565b9350614f7e818560208601613a95565b614f8781613abf565b840191505092915050565b6000608082019050614fa76000830187613bc0565b614fb46020830186613bc0565b614fc16040830185613c56565b8181036060830152614fd38184614f59565b905095945050505050565b600081519050614fed816139ea565b92915050565b600060208284031215615009576150086139b4565b5b600061501784828501614fde565b9150509291505056fea2646970667358221220656cdd959c471f2feb96765facd01f4407974a7621453ed6ece6d1e244c9af0064736f6c634300081200330000000000000000000000000000000000000000000000000000000000000040e16cfd5b8e7da846d309596765566ba2581d625e1c718f7243fe77314eb7582e0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e5a39474a52633347726e376d623250676d4439564861597a7a555253384b66354461717a6431643369674c2f00000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c8063715018a61161015a578063a22cb465116100c1578063c23c73091161007a578063c23c73091461094d578063c51c2d2614610976578063c87b56dd146109a1578063e985e9c5146109de578063f2fde38b14610a1b578063fa6b9ded14610a4457610293565b8063a22cb4651461085a578063a3330d2514610883578063b38723f8146108ae578063b88d4fde146108ec578063b999878414610908578063baf176621461093157610293565b806395d89b411161011357806395d89b4114610769578063981d8771146107945780639b6860c8146107ab5780639f6373b9146107d65780639fcd13fc14610801578063a0712d681461083e57610293565b8063715018a61461067f57806377cf0a62146106965780638da5cb5b146106bf5780638e3fb190146106ea57806391b7f5ed1461071557806394a9d6921461073e57610293565b806340f0b08e116101fe57806357ea89b6116101b757806357ea89b61461057c578063603f4d52146105865780636352211e146105b157806369a8ed40146105ee5780636c0360eb1461061757806370a082311461064257610293565b806340f0b08e1461047b57806341f43434146104a657806342842e0e146104d1578063438a67e7146104ed57806349e949e71461052a57806355f804b31461055357610293565b806318160ddd1161025057806318160ddd146103875780631d8ccda7146103b257806323b872dd146103db57806325bdb2a8146103f757806337187028146104225780633d16e2bc1461045f57610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d57806313d8a5401461035957806314cf7cdb14610370575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613a16565b610a81565b6040516102cc9190613a5e565b60405180910390f35b3480156102e157600080fd5b506102ea610b13565b6040516102f79190613b09565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613b61565b610ba5565b6040516103349190613bcf565b60405180910390f35b61035760048036038101906103529190613c16565b610c24565b005b34801561036557600080fd5b5061036e610c3d565b005b34801561037c57600080fd5b50610385610d36565b005b34801561039357600080fd5b5061039c610e2f565b6040516103a99190613c65565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d49190613b61565b610e46565b005b6103f560048036038101906103f09190613c80565b610f1d565b005b34801561040357600080fd5b5061040c610f6c565b6040516104199190613b09565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613cd3565b6110ea565b6040516104569190613c65565b60405180910390f35b61047960048036038101906104749190613d65565b611102565b005b34801561048757600080fd5b50610490611372565b60405161049d9190613c65565b60405180910390f35b3480156104b257600080fd5b506104bb611378565b6040516104c89190613e24565b60405180910390f35b6104eb60048036038101906104e69190613c80565b61138a565b005b3480156104f957600080fd5b50610514600480360381019061050f9190613cd3565b6113d9565b6040516105219190613c65565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c9190613b61565b6113f1565b005b34801561055f57600080fd5b5061057a60048036038101906105759190613e95565b6114c8565b005b6105846115ab565b005b34801561059257600080fd5b5061059b61169d565b6040516105a89190613b09565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190613b61565b61172b565b6040516105e59190613bcf565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190613f18565b61173d565b005b34801561062357600080fd5b5061062c61183e565b6040516106399190613b09565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190613cd3565b6118cc565b6040516106769190613c65565b60405180910390f35b34801561068b57600080fd5b50610694611984565b005b3480156106a257600080fd5b506106bd60048036038101906106b89190613f18565b611998565b005b3480156106cb57600080fd5b506106d4611a6f565b6040516106e19190613bcf565b60405180910390f35b3480156106f657600080fd5b506106ff611a99565b60405161070c9190613a5e565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190613b61565b611aac565b005b34801561074a57600080fd5b50610753611b83565b6040516107609190613a5e565b60405180910390f35b34801561077557600080fd5b5061077e611b96565b60405161078b9190613b09565b60405180910390f35b3480156107a057600080fd5b506107a9611c28565b005b3480156107b757600080fd5b506107c0611d21565b6040516107cd9190613c65565b60405180910390f35b3480156107e257600080fd5b506107eb611d27565b6040516107f89190613c65565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190613cd3565b611d2d565b6040516108359190613a5e565b60405180910390f35b61085860048036038101906108539190613b61565b611d8a565b005b34801561086657600080fd5b50610881600480360381019061087c9190613f71565b611f38565b005b34801561088f57600080fd5b50610898611f51565b6040516108a59190613a5e565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613b61565b611f64565b6040516108e3929190613fb1565b60405180910390f35b6109066004803603810190610901919061410a565b611fb8565b005b34801561091457600080fd5b5061092f600480360381019061092a91906141e3565b612009565b005b61094b60048036038101906109469190613b61565b6122d5565b005b34801561095957600080fd5b50610974600480360381019061096f9190613b61565b612341565b005b34801561098257600080fd5b5061098b612418565b6040516109989190613c65565b60405180910390f35b3480156109ad57600080fd5b506109c860048036038101906109c39190613b61565b61241e565b6040516109d59190613b09565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a009190614264565b6124bc565b604051610a129190613a5e565b60405180910390f35b348015610a2757600080fd5b50610a426004803603810190610a3d9190613cd3565b612550565b005b348015610a5057600080fd5b50610a6b6004803603810190610a669190613cd3565b6125d3565b604051610a789190613c65565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610adc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b0c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b22906142d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4e906142d3565b8015610b9b5780601f10610b7057610100808354040283529160200191610b9b565b820191906000526020600020905b815481529060010190602001808311610b7e57829003601f168201915b5050505050905090565b6000610bb0826125eb565b610be6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c2e8161264a565b610c388383612747565b505050565b610c45611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ccb5750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190614376565b60405180910390fd5b601860009054906101000a900460ff1615601860006101000a81548160ff021916908315150217905550565b610d3e611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610dc45750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90614376565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000610e3961288b565b6001546000540303905090565b610e4e611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ed45750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90614376565b60405180910390fd5b80600b8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f5b57610f5a3361264a565b5b610f66848484612890565b50505050565b6060600f60009054906101000a900460ff168015610f975750600f60019054906101000a900460ff16155b15610fd9576040518060400160405280600e81526020017f507572706c656c6973744f6e6c7900000000000000000000000000000000000081525090506110e7565b600f60009054906101000a900460ff1680156110015750600f60019054906101000a900460ff165b15611043576040518060400160405280601381526020017f507572706c656c697374416e645075626c69630000000000000000000000000081525090506110e7565b600f60009054906101000a900460ff1615801561106c5750600f60019054906101000a900460ff165b156110ae576040518060400160405280600a81526020017f5075626c69634f6e6c790000000000000000000000000000000000000000000081525090506110e7565b6040518060400160405280600a81526020017f4e6f74204163746976650000000000000000000000000000000000000000000081525090505b90565b60136020528060005260406000206000915090505481565b61110a612bb2565b600f60009054906101000a900460ff16611159576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611150906143e2565b60405180910390fd5b60003360405160200161116c919061444a565b60405160208183030381529060405280519060200120905061118f848483612c01565b6111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c5906144b1565b60405180910390fd5b600b5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461121c9190614500565b111561125d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611254906145a6565b60405180910390fd5b81600d5461126b91906145c6565b3410156112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490614654565b60405180910390fd5b600a54826112b9610e2f565b6112c39190614500565b1115611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906146c0565b60405180910390fd5b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113539190614500565b925050819055506113643383612c5a565b5061136d612c78565b505050565b600b5481565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113c8576113c73361264a565b5b6113d3848484612c82565b50505050565b60146020528060005260406000206000915090505481565b6113f9611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061147f5750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614376565b60405180910390fd5b80600c8190555050565b6114d0611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806115565750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90614376565b60405180910390fd5b8181601191826115a692919061488d565b505050565b6115b3612ca2565b600073d8b53519656ba3fba69b548c417f70c2f212a40490506000601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508173ffffffffffffffffffffffffffffffffffffffff166108fc6064605a4761161c91906145c6565b611626919061498c565b9081150290604051600060405180830381858888f19350505050158015611651573d6000803e3d6000fd5b508073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611698573d6000803e3d6000fd5b505050565b601080546116aa906142d3565b80601f01602080910402602001604051908101604052809291908181526020018280546116d6906142d3565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b505050505081565b600061173682612d20565b9050919050565b611745611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117cb5750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190614376565b60405180910390fd5b80601781905550601860019054906101000a900460ff1615601860016101000a81548160ff02191690831515021790555050565b6011805461184b906142d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611877906142d3565b80156118c45780601f10611899576101008083540402835291602001916118c4565b820191906000526020600020905b8154815290600101906020018083116118a757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611933576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61198c612ca2565b6119966000612dec565b565b6119a0611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611a265750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90614376565b60405180910390fd5b8060128190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60009054906101000a900460ff1681565b611ab4611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611b3a5750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7090614376565b60405180910390fd5b80600e8190555050565b601860009054906101000a900460ff1681565b606060038054611ba5906142d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd1906142d3565b8015611c1e5780601f10611bf357610100808354040283529160200191611c1e565b820191906000526020600020905b815481529060010190602001808311611c0157829003601f168201915b5050505050905090565b611c30611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611cb65750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90614376565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b600e5481565b600d5481565b6000600b54601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d805760019050611d85565b600090505b919050565b611d92612bb2565b600f60019054906101000a900460ff16611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd890614a09565b60405180910390fd5b600a5481611ded610e2f565b611df79190614500565b1115611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f906146c0565b60405180910390fd5b600c54811115611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490614a9b565b60405180910390fd5b80600e54611e8b91906145c6565b341015611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490614654565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f1c9190614500565b92505081905550611f2d3382612c5a565b611f35612c78565b50565b81611f428161264a565b611f4c8383612eb2565b505050565b600f60019054906101000a900460ff1681565b60158181548110611f7457600080fd5b90600052602060002090600202016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ff657611ff53361264a565b5b61200285858585612fbd565b5050505050565b6000601860009054906101000a900460ff1661205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190614b2d565b60405180910390fd5b601860019054906101000a900460ff16156120e657600033604051602001612082919061444a565b6040516020818303038152906040528051906020012090506120a5848483613030565b6120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90614b99565b60405180910390fd5b505b60005b8585905081101561222457600086868381811061210957612108614bb9565b5b90506020020135905061211b816125eb565b61215a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215190614c34565b60405180910390fd5b6121643382613089565b6121a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219a90614ca0565b60405180910390fd5b6121ac8161311e565b6001836121b99190614500565b92506001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461220b9190614500565b92505081905550508061221d90614cc0565b90506120e9565b50601560405180604001604052803373ffffffffffffffffffffffffffffffffffffffff16815260200183815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015550505050505050565b6122dd612ca2565b600a54816122e9610e2f565b6122f39190614500565b1115612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b906146c0565b60405180910390fd5b61233e3382612c5a565b50565b612349611a6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806123cf5750601860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61240e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240590614376565b60405180910390fd5b80600d8190555050565b600c5481565b6060612429826125eb565b61245f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061246961312c565b9050600081510361248957604051806020016040528060008152506124b4565b80612493846131be565b6040516020016124a4929190614d44565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612558612ca2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be90614dda565b60405180910390fd5b6125d081612dec565b50565b60166020528060005260406000206000915090505481565b6000816125f661288b565b11158015612605575060005482105b8015612643575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612744576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016126c1929190614dfa565b602060405180830381865afa1580156126de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127029190614e38565b61274357806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161273a9190613bcf565b60405180910390fd5b5b50565b60006127528261172b565b90508073ffffffffffffffffffffffffffffffffffffffff1661277361320e565b73ffffffffffffffffffffffffffffffffffffffff16146127d65761279f8161279a61320e565b6124bc565b6127d5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061289b82612d20565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612902576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061290e84613216565b91509150612924818761291f61320e565b61323d565b612970576129398661293461320e565b6124bc565b61296f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036129d6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129e38686866001613281565b80156129ee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612abc85612a98888887613287565b7c0200000000000000000000000000000000000000000000000000000000176132af565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612b425760006001850190506000600460008381526020019081526020016000205403612b40576000548114612b3f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612baa86868660016132da565b505050505050565b600260095403612bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bee90614eb1565b60405180910390fd5b6002600981905550565b6000612c51848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601254846132e0565b90509392505050565b612c748282604051806020016040528060008152506132f7565b5050565b6001600981905550565b612c9d83838360405180602001604052806000815250611fb8565b505050565b612caa613394565b73ffffffffffffffffffffffffffffffffffffffff16612cc8611a6f565b73ffffffffffffffffffffffffffffffffffffffff1614612d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1590614f1d565b60405180910390fd5b565b60008082905080612d2f61288b565b11612db557600054811015612db45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612db2575b60008103612da8576004600083600190039350838152602001908152602001600020549050612d7e565b8092505050612de7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612ebf61320e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612f6c61320e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fb19190613a5e565b60405180910390a35050565b612fc8848484610f1d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461302a57612ff38484848461339c565b613029576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000613080848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601754846132e0565b90509392505050565b6000806130958361172b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061310457508373ffffffffffffffffffffffffffffffffffffffff166130ec84610ba5565b73ffffffffffffffffffffffffffffffffffffffff16145b80613115575061311481856124bc565b5b91505092915050565b6131298160006134ec565b50565b60606011805461313b906142d3565b80601f0160208091040260200160405190810160405280929190818152602001828054613167906142d3565b80156131b45780601f10613189576101008083540402835291602001916131b4565b820191906000526020600020905b81548152906001019060200180831161319757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156131f957600184039350600a81066030018453600a81049050806131d7575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861329e86868461373e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000826132ed8584613747565b1490509392505050565b613301838361379d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461338f57600080549050600083820390505b613341600086838060010194508661339c565b613377576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061332e57816000541461338c57600080fd5b50505b505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133c261320e565b8786866040518563ffffffff1660e01b81526004016133e49493929190614f92565b6020604051808303816000875af192505050801561342057506040513d601f19601f8201168201806040525081019061341d9190614ff3565b60015b613499573d8060008114613450576040519150601f19603f3d011682016040523d82523d6000602084013e613455565b606091505b506000815103613491576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60006134f783612d20565b9050600081905060008061350a86613216565b91509150841561357357613526818461352161320e565b61323d565b6135725761353b8361353661320e565b6124bc565b613571576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b613581836000886001613281565b801561358c57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613634836135f185600088613287565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176132af565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036136ba57600060018701905060006004600083815260200190815260200160002054036136b85760005481146136b7578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137248360008860016132da565b600160008154809291906001019190505550505050505050565b60009392505050565b60008082905060005b84518110156137925761377d828683815181106137705761376f614bb9565b5b6020026020010151613958565b9150808061378a90614cc0565b915050613750565b508091505092915050565b600080549050600082036137dd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137ea6000848385613281565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613861836138526000866000613287565b61385b85613983565b176132af565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461390257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506138c7565b506000820361393d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061395360008483856132da565b505050565b60008183106139705761396b8284613993565b61397b565b61397a8383613993565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139f3816139be565b81146139fe57600080fd5b50565b600081359050613a10816139ea565b92915050565b600060208284031215613a2c57613a2b6139b4565b5b6000613a3a84828501613a01565b91505092915050565b60008115159050919050565b613a5881613a43565b82525050565b6000602082019050613a736000830184613a4f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ab3578082015181840152602081019050613a98565b60008484015250505050565b6000601f19601f8301169050919050565b6000613adb82613a79565b613ae58185613a84565b9350613af5818560208601613a95565b613afe81613abf565b840191505092915050565b60006020820190508181036000830152613b238184613ad0565b905092915050565b6000819050919050565b613b3e81613b2b565b8114613b4957600080fd5b50565b600081359050613b5b81613b35565b92915050565b600060208284031215613b7757613b766139b4565b5b6000613b8584828501613b4c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bb982613b8e565b9050919050565b613bc981613bae565b82525050565b6000602082019050613be46000830184613bc0565b92915050565b613bf381613bae565b8114613bfe57600080fd5b50565b600081359050613c1081613bea565b92915050565b60008060408385031215613c2d57613c2c6139b4565b5b6000613c3b85828601613c01565b9250506020613c4c85828601613b4c565b9150509250929050565b613c5f81613b2b565b82525050565b6000602082019050613c7a6000830184613c56565b92915050565b600080600060608486031215613c9957613c986139b4565b5b6000613ca786828701613c01565b9350506020613cb886828701613c01565b9250506040613cc986828701613b4c565b9150509250925092565b600060208284031215613ce957613ce86139b4565b5b6000613cf784828501613c01565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613d2557613d24613d00565b5b8235905067ffffffffffffffff811115613d4257613d41613d05565b5b602083019150836020820283011115613d5e57613d5d613d0a565b5b9250929050565b600080600060408486031215613d7e57613d7d6139b4565b5b600084013567ffffffffffffffff811115613d9c57613d9b6139b9565b5b613da886828701613d0f565b93509350506020613dbb86828701613b4c565b9150509250925092565b6000819050919050565b6000613dea613de5613de084613b8e565b613dc5565b613b8e565b9050919050565b6000613dfc82613dcf565b9050919050565b6000613e0e82613df1565b9050919050565b613e1e81613e03565b82525050565b6000602082019050613e396000830184613e15565b92915050565b60008083601f840112613e5557613e54613d00565b5b8235905067ffffffffffffffff811115613e7257613e71613d05565b5b602083019150836001820283011115613e8e57613e8d613d0a565b5b9250929050565b60008060208385031215613eac57613eab6139b4565b5b600083013567ffffffffffffffff811115613eca57613ec96139b9565b5b613ed685828601613e3f565b92509250509250929050565b6000819050919050565b613ef581613ee2565b8114613f0057600080fd5b50565b600081359050613f1281613eec565b92915050565b600060208284031215613f2e57613f2d6139b4565b5b6000613f3c84828501613f03565b91505092915050565b613f4e81613a43565b8114613f5957600080fd5b50565b600081359050613f6b81613f45565b92915050565b60008060408385031215613f8857613f876139b4565b5b6000613f9685828601613c01565b9250506020613fa785828601613f5c565b9150509250929050565b6000604082019050613fc66000830185613bc0565b613fd36020830184613c56565b9392505050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61401782613abf565b810181811067ffffffffffffffff8211171561403657614035613fdf565b5b80604052505050565b60006140496139aa565b9050614055828261400e565b919050565b600067ffffffffffffffff82111561407557614074613fdf565b5b61407e82613abf565b9050602081019050919050565b82818337600083830152505050565b60006140ad6140a88461405a565b61403f565b9050828152602081018484840111156140c9576140c8613fda565b5b6140d484828561408b565b509392505050565b600082601f8301126140f1576140f0613d00565b5b813561410184826020860161409a565b91505092915050565b60008060008060808587031215614124576141236139b4565b5b600061413287828801613c01565b945050602061414387828801613c01565b935050604061415487828801613b4c565b925050606085013567ffffffffffffffff811115614175576141746139b9565b5b614181878288016140dc565b91505092959194509250565b60008083601f8401126141a3576141a2613d00565b5b8235905067ffffffffffffffff8111156141c0576141bf613d05565b5b6020830191508360208202830111156141dc576141db613d0a565b5b9250929050565b600080600080604085870312156141fd576141fc6139b4565b5b600085013567ffffffffffffffff81111561421b5761421a6139b9565b5b6142278782880161418d565b9450945050602085013567ffffffffffffffff81111561424a576142496139b9565b5b61425687828801613d0f565b925092505092959194509250565b6000806040838503121561427b5761427a6139b4565b5b600061428985828601613c01565b925050602061429a85828601613c01565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142eb57607f821691505b6020821081036142fe576142fd6142a4565b5b50919050565b7f4f6e6c79206f776e6572206f72206465762063616e2063616c6c20746869732060008201527f66756e6374696f6e000000000000000000000000000000000000000000000000602082015250565b6000614360602883613a84565b915061436b82614304565b604082019050919050565b6000602082019050818103600083015261438f81614353565b9050919050565b7f507572706c656c6973742073616c65206973206e6f7420616374697665000000600082015250565b60006143cc601d83613a84565b91506143d782614396565b602082019050919050565b600060208201905081810360008301526143fb816143bf565b9050919050565b60008160601b9050919050565b600061441a82614402565b9050919050565b600061442c8261440f565b9050919050565b61444461443f82613bae565b614421565b82525050565b60006144568284614433565b60148201915081905092915050565b7f41646472657373206e6f74206f6e20707572706c656c69737400000000000000600082015250565b600061449b601983613a84565b91506144a682614465565b602082019050919050565b600060208201905081810360008301526144ca8161448e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061450b82613b2b565b915061451683613b2b565b925082820190508082111561452e5761452d6144d1565b5b92915050565b7f4164647265737320616c726561647920636c61696d656420707572706c656c6960008201527f7374206d696e74287329206f7220746f6f206d616e79206d696e747300000000602082015250565b6000614590603c83613a84565b915061459b82614534565b604082019050919050565b600060208201905081810360008301526145bf81614583565b9050919050565b60006145d182613b2b565b91506145dc83613b2b565b92508282026145ea81613b2b565b91508282048414831517614601576146006144d1565b5b5092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b600061463e601583613a84565b915061464982614608565b602082019050919050565b6000602082019050818103600083015261466d81614631565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b60006146aa601683613a84565b91506146b582614674565b602082019050919050565b600060208201905081810360008301526146d98161469d565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261474d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614710565b6147578683614710565b95508019841693508086168417925050509392505050565b600061478a61478561478084613b2b565b613dc5565b613b2b565b9050919050565b6000819050919050565b6147a48361476f565b6147b86147b082614791565b84845461471d565b825550505050565b600090565b6147cd6147c0565b6147d881848461479b565b505050565b5b818110156147fc576147f16000826147c5565b6001810190506147de565b5050565b601f82111561484157614812816146eb565b61481b84614700565b8101602085101561482a578190505b61483e61483685614700565b8301826147dd565b50505b505050565b600082821c905092915050565b600061486460001984600802614846565b1980831691505092915050565b600061487d8383614853565b9150826002028217905092915050565b61489783836146e0565b67ffffffffffffffff8111156148b0576148af613fdf565b5b6148ba82546142d3565b6148c5828285614800565b6000601f8311600181146148f457600084156148e2578287013590505b6148ec8582614871565b865550614954565b601f198416614902866146eb565b60005b8281101561492a57848901358255600182019150602085019450602081019050614905565b868310156149475784890135614943601f891682614853565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061499782613b2b565b91506149a283613b2b565b9250826149b2576149b161495d565b5b828204905092915050565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b60006149f3601983613a84565b91506149fe826149bd565b602082019050919050565b60006020820190508181036000830152614a22816149e6565b9050919050565b7f4578636565646564206d617820616d6f756e74206f66206d696e74732070657260008201527f2074780000000000000000000000000000000000000000000000000000000000602082015250565b6000614a85602383613a84565b9150614a9082614a29565b604082019050919050565b60006020820190508181036000830152614ab481614a78565b9050919050565b7f4275726e206576656e74206973206e6f742063757272656e746c79206163746960008201527f7665000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b17602283613a84565b9150614b2282614abb565b604082019050919050565b60006020820190508181036000830152614b4681614b0a565b9050919050565b7f4e6f7420656c6c696269626c6520746f206275726e0000000000000000000000600082015250565b6000614b83601583613a84565b9150614b8e82614b4d565b602082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000614c1e601483613a84565b9150614c2982614be8565b602082019050919050565b60006020820190508181036000830152614c4d81614c11565b9050919050565b7f4e6f7420617070726f766564206f72206f776e65720000000000000000000000600082015250565b6000614c8a601583613a84565b9150614c9582614c54565b602082019050919050565b60006020820190508181036000830152614cb981614c7d565b9050919050565b6000614ccb82613b2b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614cfd57614cfc6144d1565b5b600182019050919050565b600081905092915050565b6000614d1e82613a79565b614d288185614d08565b9350614d38818560208601613a95565b80840191505092915050565b6000614d508285614d13565b9150614d5c8284614d13565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614dc4602683613a84565b9150614dcf82614d68565b604082019050919050565b60006020820190508181036000830152614df381614db7565b9050919050565b6000604082019050614e0f6000830185613bc0565b614e1c6020830184613bc0565b9392505050565b600081519050614e3281613f45565b92915050565b600060208284031215614e4e57614e4d6139b4565b5b6000614e5c84828501614e23565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614e9b601f83613a84565b9150614ea682614e65565b602082019050919050565b60006020820190508181036000830152614eca81614e8e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614f07602083613a84565b9150614f1282614ed1565b602082019050919050565b60006020820190508181036000830152614f3681614efa565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614f6482614f3d565b614f6e8185614f48565b9350614f7e818560208601613a95565b614f8781613abf565b840191505092915050565b6000608082019050614fa76000830187613bc0565b614fb46020830186613bc0565b614fc16040830185613c56565b8181036060830152614fd38184614f59565b905095945050505050565b600081519050614fed816139ea565b92915050565b600060208284031215615009576150086139b4565b5b600061501784828501614fde565b9150509291505056fea2646970667358221220656cdd959c471f2feb96765facd01f4407974a7621453ed6ece6d1e244c9af0064736f6c63430008120033

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

0000000000000000000000000000000000000000000000000000000000000040e16cfd5b8e7da846d309596765566ba2581d625e1c718f7243fe77314eb7582e0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e5a39474a52633347726e376d623250676d4439564861597a7a555253384b66354461717a6431643369674c2f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseUri (string): ipfs://QmNZ9GJRc3Grn7mb2PgmD9VHaYzzURS8Kf5Daqzd1d3igL/
Arg [1] : _purplelistRoot (bytes32): 0xe16cfd5b8e7da846d309596765566ba2581d625e1c718f7243fe77314eb7582e

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : e16cfd5b8e7da846d309596765566ba2581d625e1c718f7243fe77314eb7582e
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d4e5a39474a52633347726e376d623250676d4439564861
Arg [4] : 597a7a555253384b66354461717a6431643369674c2f00000000000000000000


Deployed Bytecode Sourcemap

78903:8498:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21677:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22579:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29070:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86614:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85256:92;;;;;;;;;;;;;:::i;:::-;;82675:110;;;;;;;;;;;;;:::i;:::-;;18330:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85813:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86787:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82793:436;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79738:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80473:919;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79117:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75510:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86966:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79794:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85938:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86055:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84654:358;;;:::i;:::-;;79428:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23972:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85356:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79491:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19514:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67045:103;;;;;;;;;;;;;:::i;:::-;;85136:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66397:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79358:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85561:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80092:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22755:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82571:98;;;;;;;;;;;;;:::i;:::-;;79280:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79230;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83237:226;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81402:578;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86430:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79395:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79966:31;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;87153:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83797:847;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82362:203;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85682:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79163:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22965:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30019:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67303:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80004:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21677:639;21762:4;22101:10;22086:25;;:11;:25;;;;:102;;;;22178:10;22163:25;;:11;:25;;;;22086:102;:179;;;;22255:10;22240:25;;:11;:25;;;;22086:179;22066:199;;21677:639;;;:::o;22579:100::-;22633:13;22666:5;22659:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22579:100;:::o;29070:218::-;29146:7;29171:16;29179:7;29171;:16::i;:::-;29166:64;;29196:34;;;;;;;;;;;;;;29166:64;29250:15;:24;29266:7;29250:24;;;;;;;;;;;:30;;;;;;;;;;;;29243:37;;29070:218;;;:::o;86614:165::-;86718:8;77292:30;77313:8;77292:20;:30::i;:::-;86739:32:::1;86753:8;86763:7;86739:13;:32::i;:::-;86614:165:::0;;;:::o;85256:92::-;86221:7;:5;:7::i;:::-;86207:21;;:10;:21;;;:49;;;;86246:10;;;;;;;;;;;86232:24;;:10;:24;;;86207:49;86199:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;85329:11:::1;;;;;;;;;;;85328:12;85314:11;;:26;;;;;;;;;;;;;;;;;;85256:92::o:0;82675:110::-;86221:7;:5;:7::i;:::-;86207:21;;:10;:21;;;:49;;;;86246:10;;;;;;;;;;;86232:24;;:10;:24;;;86207:49;86199:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;82759:18:::1;;;;;;;;;;;82758:19;82737:18;;:40;;;;;;;;;;;;;;;;;;82675:110::o:0;18330:323::-;18391:7;18619:15;:13;:15::i;:::-;18604:12;;18588:13;;:28;:46;18581:53;;18330:323;:::o;85813:117::-;86221:7;:5;:7::i;:::-;86207:21;;:10;:21;;;:49;;;;86246:10;;;;;;;;;;;86232:24;;:10;:24;;;86207:49;86199:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;85916:6:::1;85893:20;:29;;;;85813:117:::0;:::o;86787:171::-;86896:4;77026:10;77018:18;;:4;:18;;;77014:83;;77053:32;77074:10;77053:20;:32::i;:::-;77014:83;86913:37:::1;86932:4;86938:2;86942:7;86913:18;:37::i;:::-;86787:171:::0;;;;:::o;82793:436::-;82840:13;82868:18;;;;;;;;;;;:37;;;;;82891:14;;;;;;;;;;;82890:15;82868:37;82865:357;;;82921:24;;;;;;;;;;;;;;;;;;;;;82865:357;82975:18;;;;;;;;;;;:36;;;;;82997:14;;;;;;;;;;;82975:36;82972:250;;;83027:29;;;;;;;;;;;;;;;;;;;;;82972:250;83087:18;;;;;;;;;;;83086:19;:37;;;;;83109:14;;;;;;;;;;;83086:37;83083:139;;;83139:20;;;;;;;;;;;;;;;;;;;;;83083:139;83190:20;;;;;;;;;;;;;;;;;;;82793:436;;:::o;79738:49::-;;;;;;;;;;;;;;;;;:::o;80473:919::-;2378:21;:19;:21::i;:::-;80596:18:::1;;;;;;;;;;;80588:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;80681:12;80723:10;80706:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;80696:39;;;;;;80681:54;;80755:44;80780:12;;80794:4;80755:24;:44::i;:::-;80747:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;80892:20;;80880:8;80848:17;:29;80866:10;80848:29;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:64;;80840:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;81066:8;81048:15;;:26;;;;:::i;:::-;81035:9;:39;;81027:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;81243:10;;81231:8;81215:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;81207:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;81324:8;81291:17;:29;81309:10;81291:29;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;81343:31;81353:10;81365:8;81343:9;:31::i;:::-;80577:815;2422:20:::0;:18;:20::i;:::-;80473:919;;;:::o;79117:39::-;;;;:::o;75510:143::-;67984:42;75510:143;:::o;86966:179::-;87079:4;77026:10;77018:18;;:4;:18;;;77014:83;;77053:32;77074:10;77053:20;:32::i;:::-;77014:83;87096:41:::1;87119:4;87125:2;87129:7;87096:22;:41::i;:::-;86966:179:::0;;;;:::o;79794:44::-;;;;;;;;;;;;;;;;;:::o;85938:109::-;86221:7;:5;:7::i;:::-;86207:21;;:10;:21;;;:49;;;;86246:10;;;;;;;;;;;86232:24;;:10;:24;;;86207:49;86199:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;86033:6:::1;86014:16;:25;;;;85938:109:::0;:::o;86055:99::-;86221:7;:5;:7::i;:::-;86207:21;;:10;:21;;;:49;;;;86246:10;;;;;;;;;;;86232:24;;:10;:24;;;86207:49;86199:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;86141:5:::1;;86131:7;:15;;;;;;;:::i;:::-;;86055:99:::0;;:::o;84654:358::-;66283:13;:11;:13::i;:::-;84716:12:::1;84731:42;84716:57;;84785:11;84799:10;;;;;;;;;;;84785:24;;84855:4;84847:22;;:58;84900:3;84895:2;84871:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;84847:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;84941:3;84933:21;;:44;84955:21;84933:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;84701:311;;84654:358::o:0;79428:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23972:152::-;24044:7;24087:27;24106:7;24087:18;:27::i;:::-;24064:52;;23972:152;;;:::o;85356:151::-;86221:7;:5;:7::i;:::-;86207:21;;:10;:21;;;:49;;;;86246:10;;;;;;;;;;;86232:24;;:10;:24;;;86207:49;86199:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;85447:5:::1;85430:14;:22;;;;85483:16;;;;;;;;;;;85482:17;85463:16;;:36;;;;;;;;;;;;;;;;;;85356:151:::0;:::o;79491:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19514:233::-;19586:7;19627:1;19610:19;;:5;:19;;;19606:60;;19638:28;;;;;;;;;;;;;;19606:60;13673:13;19684:18;:25;19703:5;19684:25;;;;;;;;;;;;;;;;:55;19677:62;;19514:233;;;:::o;67045:103::-;66283:13;:11;:13::i;:::-;67110:30:::1;67137:1;67110:18;:30::i;:::-;67045:103::o:0;85136:112::-;86221:7;:5;:7::i;:::-;86207:21;;:10;:21;;;:49;;;;86246:10;;;;;;;;;;;86232:24;;:10;:24;;;86207:49;86199:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;85235:5:::1;85212:20;:28;;;;85136:112:::0;:::o;66397:87::-;66443:7;66470:6;;;;;;;;;;;66463:13;;66397:87;:::o;79358:30::-;;;;;;;;;;;;;:::o;85561:113::-;86221:7;:5;:7::i;:::-;86207:21;;:10;:21;;;:49;;;;86246:10;;;;;;;;;;;86232:24;;:10;:24;;;86207:49;86199:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;85654:12:::1;85636:15;:30;;;;85561:113:::0;:::o;80092:31::-;;;;;;;;;;;;;:::o;22755:104::-;22811:13;22844:7;22837:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22755:104;:::o;82571:98::-;86221:7;:5;:7::i;:::-;86207:21;;:10;:21;;;:49;;;;86246:10;;;;;;;;;;;86232:24;;:10;:24;;;86207:49;86199:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;82647:14:::1;;;;;;;;;;;82646:15;82629:14;;:32;;;;;;;;;;;;;;;;;;82571:98::o:0;79280:43::-;;;;:::o;79230:::-;;;;:::o;83237:226::-;83307:4;83354:20;;83326:17;:24;83344:5;83326:24;;;;;;;;;;;;;;;;:48;83323:133;;83397:4;83390:11;;;;83323:133;83439:5;83432:12;;83237:226;;;;:::o;81402:578::-;2378:21;:19;:21::i;:::-;81482:14:::1;;;;;;;;;;;81474:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;81626:10;;81614:8;81598:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;81590:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;81715:16;;81703:8;:28;;81695:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;81821:8;81803:15;;:26;;;;:::i;:::-;81790:9;:39;;81782:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;81894:8;81866:12;:24;81879:10;81866:24;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;81913:31;81923:10;81935:8;81913:9;:31::i;:::-;2422:20:::0;:18;:20::i;:::-;81402:578;:::o;86430:176::-;86534:8;77292:30;77313:8;77292:20;:30::i;:::-;86555:43:::1;86579:8;86589;86555:23;:43::i;:::-;86430:176:::0;;;:::o;79395:26::-;;;;;;;;;;;;;:::o;79966:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;87153:245::-;87321:4;77026:10;77018:18;;:4;:18;;;77014:83;;77053:32;77074:10;77053:20;:32::i;:::-;77014:83;87343:47:::1;87366:4;87372:2;87376:7;87385:4;87343:22;:47::i;:::-;87153:245:::0;;;;;:::o;83797:847::-;83891:19;83935:11;;;;;;;;;;;83927:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;83999:16;;;;;;;;;;;83996:193;;;84031:16;84077:10;84060:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;84050:39;;;;;;84031:58;;84113:38;84130:10;;84142:8;84113:16;:38::i;:::-;84105:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;84016:173;83996:193;84206:9;84201:358;84225:8;;:15;;84221:1;:19;84201:358;;;84262:15;84280:8;;84289:1;84280:11;;;;;;;:::i;:::-;;;;;;;;84262:29;;84314:16;84322:7;84314;:16::i;:::-;84306:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;84378:39;84397:10;84409:7;84378:18;:39::i;:::-;84370:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;84458:14;84464:7;84458:5;:14::i;:::-;84502:1;84487:16;;;;;:::i;:::-;;;84546:1;84518:12;:24;84531:10;84518:24;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;84247:312;84242:3;;;;:::i;:::-;;;84201:358;;;;84571:11;84588:35;;;;;;;;84599:10;84588:35;;;;;;84611:11;84588:35;;;84571:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83880:764;83797:847;;;;:::o;82362:203::-;66283:13;:11;:13::i;:::-;82478:10:::1;;82466:8;82450:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;82442:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;82526:31;82536:10;82548:8;82526:9;:31::i;:::-;82362:203:::0;:::o;85682:123::-;86221:7;:5;:7::i;:::-;86207:21;;:10;:21;;;:49;;;;86246:10;;;;;;;;;;;86232:24;;:10;:24;;;86207:49;86199:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;85785:12:::1;85767:15;:30;;;;85682:123:::0;:::o;79163:36::-;;;;:::o;22965:318::-;23038:13;23069:16;23077:7;23069;:16::i;:::-;23064:59;;23094:29;;;;;;;;;;;;;;23064:59;23136:21;23160:10;:8;:10::i;:::-;23136:34;;23213:1;23194:7;23188:21;:26;:87;;;;;;;;;;;;;;;;;23241:7;23250:18;23260:7;23250:9;:18::i;:::-;23224:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23188:87;23181:94;;;22965:318;;;:::o;30019:164::-;30116:4;30140:18;:25;30159:5;30140:25;;;;;;;;;;;;;;;:35;30166:8;30140:35;;;;;;;;;;;;;;;;;;;;;;;;;30133:42;;30019:164;;;;:::o;67303:201::-;66283:13;:11;:13::i;:::-;67412:1:::1;67392:22;;:8;:22;;::::0;67384:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;67468:28;67487:8;67468:18;:28::i;:::-;67303:201:::0;:::o;80004:44::-;;;;;;;;;;;;;;;;;:::o;30441:282::-;30506:4;30562:7;30543:15;:13;:15::i;:::-;:26;;:66;;;;;30596:13;;30586:7;:23;30543:66;:153;;;;;30695:1;14449:8;30647:17;:26;30665:7;30647:26;;;;;;;;;;;;:44;:49;30543:153;30523:173;;30441:282;;;:::o;77435:647::-;77674:1;67984:42;77626:45;;;:49;77622:453;;;67984:42;77925;;;77976:4;77983:8;77925:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;77920:144;;78039:8;78020:28;;;;;;;;;;;:::i;:::-;;;;;;;;77920:144;77622:453;77435:647;:::o;28503:408::-;28592:13;28608:16;28616:7;28608;:16::i;:::-;28592:32;;28664:5;28641:28;;:19;:17;:19::i;:::-;:28;;;28637:175;;28689:44;28706:5;28713:19;:17;:19::i;:::-;28689:16;:44::i;:::-;28684:128;;28761:35;;;;;;;;;;;;;;28684:128;28637:175;28857:2;28824:15;:24;28840:7;28824:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28895:7;28891:2;28875:28;;28884:5;28875:28;;;;;;;;;;;;28581:330;28503:408;;:::o;17846:92::-;17902:7;17846:92;:::o;32709:2825::-;32851:27;32881;32900:7;32881:18;:27::i;:::-;32851:57;;32966:4;32925:45;;32941:19;32925:45;;;32921:86;;32979:28;;;;;;;;;;;;;;32921:86;33021:27;33050:23;33077:35;33104:7;33077:26;:35::i;:::-;33020:92;;;;33212:68;33237:15;33254:4;33260:19;:17;:19::i;:::-;33212:24;:68::i;:::-;33207:180;;33300:43;33317:4;33323:19;:17;:19::i;:::-;33300:16;:43::i;:::-;33295:92;;33352:35;;;;;;;;;;;;;;33295:92;33207:180;33418:1;33404:16;;:2;:16;;;33400:52;;33429:23;;;;;;;;;;;;;;33400:52;33465:43;33487:4;33493:2;33497:7;33506:1;33465:21;:43::i;:::-;33601:15;33598:160;;;33741:1;33720:19;33713:30;33598:160;34138:18;:24;34157:4;34138:24;;;;;;;;;;;;;;;;34136:26;;;;;;;;;;;;34207:18;:22;34226:2;34207:22;;;;;;;;;;;;;;;;34205:24;;;;;;;;;;;34529:146;34566:2;34615:45;34630:4;34636:2;34640:19;34615:14;:45::i;:::-;14729:8;34587:73;34529:18;:146::i;:::-;34500:17;:26;34518:7;34500:26;;;;;;;;;;;:175;;;;34846:1;14729:8;34795:19;:47;:52;34791:627;;34868:19;34900:1;34890:7;:11;34868:33;;35057:1;35023:17;:30;35041:11;35023:30;;;;;;;;;;;;:35;35019:384;;35161:13;;35146:11;:28;35142:242;;35341:19;35308:17;:30;35326:11;35308:30;;;;;;;;;;;:52;;;;35142:242;35019:384;34849:569;34791:627;35465:7;35461:2;35446:27;;35455:4;35446:27;;;;;;;;;;;;35484:42;35505:4;35511:2;35515:7;35524:1;35484:20;:42::i;:::-;32840:2694;;;32709:2825;;;:::o;2458:293::-;1860:1;2592:7;;:19;2584:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1860:1;2725:7;:18;;;;2458:293::o;81988:184::-;82085:4;82108:54;82127:6;;82108:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82135:20;;82157:4;82108:18;:54::i;:::-;82101:61;;81988:184;;;;;:::o;46581:112::-;46658:27;46668:2;46672:8;46658:27;;;;;;;;;;;;:9;:27::i;:::-;46581:112;;:::o;2759:213::-;1816:1;2942:7;:22;;;;2759:213::o;35630:193::-;35776:39;35793:4;35799:2;35803:7;35776:39;;;;;;;;;;;;:16;:39::i;:::-;35630:193;;;:::o;66562:132::-;66637:12;:10;:12::i;:::-;66626:23;;:7;:5;:7::i;:::-;:23;;;66618:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66562:132::o;25127:1275::-;25194:7;25214:12;25229:7;25214:22;;25297:4;25278:15;:13;:15::i;:::-;:23;25274:1061;;25331:13;;25324:4;:20;25320:1015;;;25369:14;25386:17;:23;25404:4;25386:23;;;;;;;;;;;;25369:40;;25503:1;14449:8;25475:6;:24;:29;25471:845;;26140:113;26157:1;26147:6;:11;26140:113;;26200:17;:25;26218:6;;;;;;;26200:25;;;;;;;;;;;;26191:34;;26140:113;;;26286:6;26279:13;;;;;;25471:845;25346:989;25320:1015;25274:1061;26363:31;;;;;;;;;;;;;;25127:1275;;;;:::o;67664:191::-;67738:16;67757:6;;;;;;;;;;;67738:25;;67783:8;67774:6;;:17;;;;;;;;;;;;;;;;;;67838:8;67807:40;;67828:8;67807:40;;;;;;;;;;;;67727:128;67664:191;:::o;29628:234::-;29775:8;29723:18;:39;29742:19;:17;:19::i;:::-;29723:39;;;;;;;;;;;;;;;:49;29763:8;29723:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29835:8;29799:55;;29814:19;:17;:19::i;:::-;29799:55;;;29845:8;29799:55;;;;;;:::i;:::-;;;;;;;;29628:234;;:::o;36421:407::-;36596:31;36609:4;36615:2;36619:7;36596:12;:31::i;:::-;36660:1;36642:2;:14;;;:19;36638:183;;36681:56;36712:4;36718:2;36722:7;36731:5;36681:30;:56::i;:::-;36676:145;;36765:40;;;;;;;;;;;;;;36676:145;36638:183;36421:407;;;;:::o;82180:174::-;82269:4;82296:48;82315:6;;82296:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82323:14;;82339:4;82296:18;:48::i;:::-;82289:55;;82180:174;;;;;:::o;83471:249::-;83556:4;83573:13;83589:16;83597:7;83589;:16::i;:::-;83573:32;;83635:5;83624:16;;:7;:16;;;:51;;;;83668:7;83644:31;;:20;83656:7;83644:11;:20::i;:::-;:31;;;83624:51;:87;;;;83679:32;83696:5;83703:7;83679:16;:32::i;:::-;83624:87;83616:96;;;83471:249;;;;:::o;46960:89::-;47020:21;47026:7;47035:5;47020;:21::i;:::-;46960:89;:::o;85022:100::-;85074:13;85107:7;85100:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85022:100;:::o;52956:1745::-;53021:17;53455:4;53448;53442:11;53438:22;53547:1;53541:4;53534:15;53622:4;53619:1;53615:12;53608:19;;53704:1;53699:3;53692:14;53808:3;54047:5;54029:428;54055:1;54029:428;;;54095:1;54090:3;54086:11;54079:18;;54266:2;54260:4;54256:13;54252:2;54248:22;54243:3;54235:36;54360:2;54354:4;54350:13;54342:21;;54427:4;54029:428;54417:25;54029:428;54033:21;54496:3;54491;54487:13;54611:4;54606:3;54602:14;54595:21;;54676:6;54671:3;54664:19;53060:1634;;;52956:1745;;;:::o;52749:105::-;52809:7;52836:10;52829:17;;52749:105;:::o;31604:485::-;31706:27;31735:23;31776:38;31817:15;:24;31833:7;31817:24;;;;;;;;;;;31776:65;;31994:18;31971:41;;32051:19;32045:26;32026:45;;31956:126;31604:485;;;:::o;30832:659::-;30981:11;31146:16;31139:5;31135:28;31126:37;;31306:16;31295:9;31291:32;31278:45;;31456:15;31445:9;31442:30;31434:5;31423:9;31420:20;31417:56;31407:66;;30832:659;;;;;:::o;37490:159::-;;;;;:::o;52058:311::-;52193:7;52213:16;14853:3;52239:19;:41;;52213:68;;14853:3;52307:31;52318:4;52324:2;52328:9;52307:10;:31::i;:::-;52299:40;;:62;;52292:69;;;52058:311;;;;;:::o;26950:450::-;27030:14;27198:16;27191:5;27187:28;27178:37;;27375:5;27361:11;27336:23;27332:41;27329:52;27322:5;27319:63;27309:73;;26950:450;;;;:::o;38314:158::-;;;;;:::o;55930:190::-;56055:4;56108;56079:25;56092:5;56099:4;56079:12;:25::i;:::-;:33;56072:40;;55930:190;;;;;:::o;45808:689::-;45939:19;45945:2;45949:8;45939:5;:19::i;:::-;46018:1;46000:2;:14;;;:19;45996:483;;46040:11;46054:13;;46040:27;;46086:13;46108:8;46102:3;:14;46086:30;;46135:233;46166:62;46205:1;46209:2;46213:7;;;;;;46222:5;46166:30;:62::i;:::-;46161:167;;46264:40;;;;;;;;;;;;;;46161:167;46363:3;46355:5;:11;46135:233;;46450:3;46433:13;;:20;46429:34;;46455:8;;;46429:34;46021:458;;45996:483;45808:689;;;:::o;64948:98::-;65001:7;65028:10;65021:17;;64948:98;:::o;38912:716::-;39075:4;39121:2;39096:45;;;39142:19;:17;:19::i;:::-;39163:4;39169:7;39178:5;39096:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39092:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39396:1;39379:6;:13;:18;39375:235;;39425:40;;;;;;;;;;;;;;39375:235;39568:6;39562:13;39553:6;39549:2;39545:15;39538:38;39092:529;39265:54;;;39255:64;;;:6;:64;;;;39248:71;;;38912:716;;;;;;:::o;47278:3081::-;47358:27;47388;47407:7;47388:18;:27::i;:::-;47358:57;;47428:12;47459:19;47428:52;;47494:27;47523:23;47550:35;47577:7;47550:26;:35::i;:::-;47493:92;;;;47602:13;47598:316;;;47723:68;47748:15;47765:4;47771:19;:17;:19::i;:::-;47723:24;:68::i;:::-;47718:184;;47815:43;47832:4;47838:19;:17;:19::i;:::-;47815:16;:43::i;:::-;47810:92;;47867:35;;;;;;;;;;;;;;47810:92;47718:184;47598:316;47926:51;47948:4;47962:1;47966:7;47975:1;47926:21;:51::i;:::-;48070:15;48067:160;;;48210:1;48189:19;48182:30;48067:160;48888:1;13938:3;48858:1;:26;;48857:32;48829:18;:24;48848:4;48829:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;49156:176;49193:4;49264:53;49279:4;49293:1;49297:19;49264:14;:53::i;:::-;14729:8;14449;49217:43;49216:101;49156:18;:176::i;:::-;49127:17;:26;49145:7;49127:26;;;;;;;;;;;:205;;;;49503:1;14729:8;49452:19;:47;:52;49448:627;;49525:19;49557:1;49547:7;:11;49525:33;;49714:1;49680:17;:30;49698:11;49680:30;;;;;;;;;;;;:35;49676:384;;49818:13;;49803:11;:28;49799:242;;49998:19;49965:17;:30;49983:11;49965:30;;;;;;;;;;;:52;;;;49799:242;49676:384;49506:569;49448:627;50130:7;50126:1;50103:35;;50112:4;50103:35;;;;;;;;;;;;50149:50;50170:4;50184:1;50188:7;50197:1;50149:20;:50::i;:::-;50326:12;;:14;;;;;;;;;;;;;47347:3012;;;;47278:3081;;:::o;51759:147::-;51896:6;51759:147;;;;;:::o;56797:296::-;56880:7;56900:20;56923:4;56900:27;;56943:9;56938:118;56962:5;:12;56958:1;:16;56938:118;;;57011:33;57021:12;57035:5;57041:1;57035:8;;;;;;;;:::i;:::-;;;;;;;;57011:9;:33::i;:::-;56996:48;;56976:3;;;;;:::i;:::-;;;;56938:118;;;;57073:12;57066:19;;;56797:296;;;;:::o;40090:2966::-;40163:20;40186:13;;40163:36;;40226:1;40214:8;:13;40210:44;;40236:18;;;;;;;;;;;;;;40210:44;40267:61;40297:1;40301:2;40305:12;40319:8;40267:21;:61::i;:::-;40811:1;13811:2;40781:1;:26;;40780:32;40768:8;:45;40742:18;:22;40761:2;40742:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41090:139;41127:2;41181:33;41204:1;41208:2;41212:1;41181:14;:33::i;:::-;41148:30;41169:8;41148:20;:30::i;:::-;:66;41090:18;:139::i;:::-;41056:17;:31;41074:12;41056:31;;;;;;;;;;;:173;;;;41246:16;41277:11;41306:8;41291:12;:23;41277:37;;41827:16;41823:2;41819:25;41807:37;;42199:12;42159:8;42118:1;42056:25;41997:1;41936;41909:335;42570:1;42556:12;42552:20;42510:346;42611:3;42602:7;42599:16;42510:346;;42829:7;42819:8;42816:1;42789:25;42786:1;42783;42778:59;42664:1;42655:7;42651:15;42640:26;;42510:346;;;42514:77;42901:1;42889:8;:13;42885:45;;42911:19;;;;;;;;;;;;;;42885:45;42963:3;42947:13;:19;;;;40516:2462;;42988:60;43017:1;43021:2;43025:12;43039:8;42988:20;:60::i;:::-;40152:2904;40090:2966;;:::o;63837:149::-;63900:7;63931:1;63927;:5;:51;;63958:20;63973:1;63976;63958:14;:20::i;:::-;63927:51;;;63935:20;63950:1;63953;63935:14;:20::i;:::-;63927:51;63920:58;;63837:149;;;;:::o;27502:324::-;27572:14;27805:1;27795:8;27792:15;27766:24;27762:46;27752:56;;27502:324;;;:::o;63994:268::-;64062:13;64169:1;64163:4;64156:15;64198:1;64192:4;64185:15;64239:4;64233;64223:21;64214:30;;63994: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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:117;6557:1;6554;6547:12;6588:568;6661:8;6671:6;6721:3;6714:4;6706:6;6702:17;6698:27;6688:122;;6729:79;;:::i;:::-;6688:122;6842:6;6829:20;6819:30;;6872:18;6864:6;6861:30;6858:117;;;6894:79;;:::i;:::-;6858:117;7008:4;7000:6;6996:17;6984:29;;7062:3;7054:4;7046:6;7042:17;7032:8;7028:32;7025:41;7022:128;;;7069:79;;:::i;:::-;7022:128;6588:568;;;;;:::o;7162:704::-;7257:6;7265;7273;7322:2;7310:9;7301:7;7297:23;7293:32;7290:119;;;7328:79;;:::i;:::-;7290:119;7476:1;7465:9;7461:17;7448:31;7506:18;7498:6;7495:30;7492:117;;;7528:79;;:::i;:::-;7492:117;7641:80;7713:7;7704:6;7693:9;7689:22;7641:80;:::i;:::-;7623:98;;;;7419:312;7770:2;7796:53;7841:7;7832:6;7821:9;7817:22;7796:53;:::i;:::-;7786:63;;7741:118;7162:704;;;;;:::o;7872:60::-;7900:3;7921:5;7914:12;;7872:60;;;:::o;7938:142::-;7988:9;8021:53;8039:34;8048:24;8066:5;8048:24;:::i;:::-;8039:34;:::i;:::-;8021:53;:::i;:::-;8008:66;;7938:142;;;:::o;8086:126::-;8136:9;8169:37;8200:5;8169:37;:::i;:::-;8156:50;;8086:126;;;:::o;8218:158::-;8300:9;8333:37;8364:5;8333:37;:::i;:::-;8320:50;;8218:158;;;:::o;8382:195::-;8501:69;8564:5;8501:69;:::i;:::-;8496:3;8489:82;8382:195;;:::o;8583:286::-;8708:4;8746:2;8735:9;8731:18;8723:26;;8759:103;8859:1;8848:9;8844:17;8835:6;8759:103;:::i;:::-;8583:286;;;;:::o;8889:553::-;8947:8;8957:6;9007:3;9000:4;8992:6;8988:17;8984:27;8974:122;;9015:79;;:::i;:::-;8974:122;9128:6;9115:20;9105:30;;9158:18;9150:6;9147:30;9144:117;;;9180:79;;:::i;:::-;9144:117;9294:4;9286:6;9282:17;9270:29;;9348:3;9340:4;9332:6;9328:17;9318:8;9314:32;9311:41;9308:128;;;9355:79;;:::i;:::-;9308:128;8889:553;;;;;:::o;9448:529::-;9519:6;9527;9576:2;9564:9;9555:7;9551:23;9547:32;9544:119;;;9582:79;;:::i;:::-;9544:119;9730:1;9719:9;9715:17;9702:31;9760:18;9752:6;9749:30;9746:117;;;9782:79;;:::i;:::-;9746:117;9895:65;9952:7;9943:6;9932:9;9928:22;9895:65;:::i;:::-;9877:83;;;;9673:297;9448:529;;;;;:::o;9983:77::-;10020:7;10049:5;10038:16;;9983:77;;;:::o;10066:122::-;10139:24;10157:5;10139:24;:::i;:::-;10132:5;10129:35;10119:63;;10178:1;10175;10168:12;10119:63;10066:122;:::o;10194:139::-;10240:5;10278:6;10265:20;10256:29;;10294:33;10321:5;10294:33;:::i;:::-;10194:139;;;;:::o;10339:329::-;10398:6;10447:2;10435:9;10426:7;10422:23;10418:32;10415:119;;;10453:79;;:::i;:::-;10415:119;10573:1;10598:53;10643:7;10634:6;10623:9;10619:22;10598:53;:::i;:::-;10588:63;;10544:117;10339:329;;;;:::o;10674:116::-;10744:21;10759:5;10744:21;:::i;:::-;10737:5;10734:32;10724:60;;10780:1;10777;10770:12;10724:60;10674:116;:::o;10796:133::-;10839:5;10877:6;10864:20;10855:29;;10893:30;10917:5;10893:30;:::i;:::-;10796:133;;;;:::o;10935:468::-;11000:6;11008;11057:2;11045:9;11036:7;11032:23;11028:32;11025:119;;;11063:79;;:::i;:::-;11025:119;11183:1;11208:53;11253:7;11244:6;11233:9;11229:22;11208:53;:::i;:::-;11198:63;;11154:117;11310:2;11336:50;11378:7;11369:6;11358:9;11354:22;11336:50;:::i;:::-;11326:60;;11281:115;10935:468;;;;;:::o;11409:332::-;11530:4;11568:2;11557:9;11553:18;11545:26;;11581:71;11649:1;11638:9;11634:17;11625:6;11581:71;:::i;:::-;11662:72;11730:2;11719:9;11715:18;11706:6;11662:72;:::i;:::-;11409:332;;;;;:::o;11747:117::-;11856:1;11853;11846:12;11870:180;11918:77;11915:1;11908:88;12015:4;12012:1;12005:15;12039:4;12036:1;12029:15;12056:281;12139:27;12161:4;12139:27;:::i;:::-;12131:6;12127:40;12269:6;12257:10;12254:22;12233:18;12221:10;12218:34;12215:62;12212:88;;;12280:18;;:::i;:::-;12212:88;12320:10;12316:2;12309:22;12099:238;12056:281;;:::o;12343:129::-;12377:6;12404:20;;:::i;:::-;12394:30;;12433:33;12461:4;12453:6;12433:33;:::i;:::-;12343:129;;;:::o;12478:307::-;12539:4;12629:18;12621:6;12618:30;12615:56;;;12651:18;;:::i;:::-;12615:56;12689:29;12711:6;12689:29;:::i;:::-;12681:37;;12773:4;12767;12763:15;12755:23;;12478:307;;;:::o;12791:146::-;12888:6;12883:3;12878;12865:30;12929:1;12920:6;12915:3;12911:16;12904:27;12791:146;;;:::o;12943:423::-;13020:5;13045:65;13061:48;13102:6;13061:48;:::i;:::-;13045:65;:::i;:::-;13036:74;;13133:6;13126:5;13119:21;13171:4;13164:5;13160:16;13209:3;13200:6;13195:3;13191:16;13188:25;13185:112;;;13216:79;;:::i;:::-;13185:112;13306:54;13353:6;13348:3;13343;13306:54;:::i;:::-;13026:340;12943:423;;;;;:::o;13385:338::-;13440:5;13489:3;13482:4;13474:6;13470:17;13466:27;13456:122;;13497:79;;:::i;:::-;13456:122;13614:6;13601:20;13639:78;13713:3;13705:6;13698:4;13690:6;13686:17;13639:78;:::i;:::-;13630:87;;13446:277;13385:338;;;;:::o;13729:943::-;13824:6;13832;13840;13848;13897:3;13885:9;13876:7;13872:23;13868:33;13865:120;;;13904:79;;:::i;:::-;13865:120;14024:1;14049:53;14094:7;14085:6;14074:9;14070:22;14049:53;:::i;:::-;14039:63;;13995:117;14151:2;14177:53;14222:7;14213:6;14202:9;14198:22;14177:53;:::i;:::-;14167:63;;14122:118;14279:2;14305:53;14350:7;14341:6;14330:9;14326:22;14305:53;:::i;:::-;14295:63;;14250:118;14435:2;14424:9;14420:18;14407:32;14466:18;14458:6;14455:30;14452:117;;;14488:79;;:::i;:::-;14452:117;14593:62;14647:7;14638:6;14627:9;14623:22;14593:62;:::i;:::-;14583:72;;14378:287;13729:943;;;;;;;:::o;14695:568::-;14768:8;14778:6;14828:3;14821:4;14813:6;14809:17;14805:27;14795:122;;14836:79;;:::i;:::-;14795:122;14949:6;14936:20;14926:30;;14979:18;14971:6;14968:30;14965:117;;;15001:79;;:::i;:::-;14965:117;15115:4;15107:6;15103:17;15091:29;;15169:3;15161:4;15153:6;15149:17;15139:8;15135:32;15132:41;15129:128;;;15176:79;;:::i;:::-;15129:128;14695:568;;;;;:::o;15269:934::-;15391:6;15399;15407;15415;15464:2;15452:9;15443:7;15439:23;15435:32;15432:119;;;15470:79;;:::i;:::-;15432:119;15618:1;15607:9;15603:17;15590:31;15648:18;15640:6;15637:30;15634:117;;;15670:79;;:::i;:::-;15634:117;15783:80;15855:7;15846:6;15835:9;15831:22;15783:80;:::i;:::-;15765:98;;;;15561:312;15940:2;15929:9;15925:18;15912:32;15971:18;15963:6;15960:30;15957:117;;;15993:79;;:::i;:::-;15957:117;16106:80;16178:7;16169:6;16158:9;16154:22;16106:80;:::i;:::-;16088:98;;;;15883:313;15269:934;;;;;;;:::o;16209:474::-;16277:6;16285;16334:2;16322:9;16313:7;16309:23;16305:32;16302:119;;;16340:79;;:::i;:::-;16302:119;16460:1;16485:53;16530:7;16521:6;16510:9;16506:22;16485:53;:::i;:::-;16475:63;;16431:117;16587:2;16613:53;16658:7;16649:6;16638:9;16634:22;16613:53;:::i;:::-;16603:63;;16558:118;16209:474;;;;;:::o;16689:180::-;16737:77;16734:1;16727:88;16834:4;16831:1;16824:15;16858:4;16855:1;16848:15;16875:320;16919:6;16956:1;16950:4;16946:12;16936:22;;17003:1;16997:4;16993:12;17024:18;17014:81;;17080:4;17072:6;17068:17;17058:27;;17014:81;17142:2;17134:6;17131:14;17111:18;17108:38;17105:84;;17161:18;;:::i;:::-;17105:84;16926:269;16875:320;;;:::o;17201:227::-;17341:34;17337:1;17329:6;17325:14;17318:58;17410:10;17405:2;17397:6;17393:15;17386:35;17201:227;:::o;17434:366::-;17576:3;17597:67;17661:2;17656:3;17597:67;:::i;:::-;17590:74;;17673:93;17762:3;17673:93;:::i;:::-;17791:2;17786:3;17782:12;17775:19;;17434:366;;;:::o;17806:419::-;17972:4;18010:2;17999:9;17995:18;17987:26;;18059:9;18053:4;18049:20;18045:1;18034:9;18030:17;18023:47;18087:131;18213:4;18087:131;:::i;:::-;18079:139;;17806:419;;;:::o;18231:179::-;18371:31;18367:1;18359:6;18355:14;18348:55;18231:179;:::o;18416:366::-;18558:3;18579:67;18643:2;18638:3;18579:67;:::i;:::-;18572:74;;18655:93;18744:3;18655:93;:::i;:::-;18773:2;18768:3;18764:12;18757:19;;18416:366;;;:::o;18788:419::-;18954:4;18992:2;18981:9;18977:18;18969:26;;19041:9;19035:4;19031:20;19027:1;19016:9;19012:17;19005:47;19069:131;19195:4;19069:131;:::i;:::-;19061:139;;18788:419;;;:::o;19213:94::-;19246:8;19294:5;19290:2;19286:14;19265:35;;19213:94;;;:::o;19313:::-;19352:7;19381:20;19395:5;19381:20;:::i;:::-;19370:31;;19313:94;;;:::o;19413:100::-;19452:7;19481:26;19501:5;19481:26;:::i;:::-;19470:37;;19413:100;;;:::o;19519:157::-;19624:45;19644:24;19662:5;19644:24;:::i;:::-;19624:45;:::i;:::-;19619:3;19612:58;19519:157;;:::o;19682:256::-;19794:3;19809:75;19880:3;19871:6;19809:75;:::i;:::-;19909:2;19904:3;19900:12;19893:19;;19929:3;19922:10;;19682:256;;;;:::o;19944:175::-;20084:27;20080:1;20072:6;20068:14;20061:51;19944:175;:::o;20125:366::-;20267:3;20288:67;20352:2;20347:3;20288:67;:::i;:::-;20281:74;;20364:93;20453:3;20364:93;:::i;:::-;20482:2;20477:3;20473:12;20466:19;;20125:366;;;:::o;20497:419::-;20663:4;20701:2;20690:9;20686:18;20678:26;;20750:9;20744:4;20740:20;20736:1;20725:9;20721:17;20714:47;20778:131;20904:4;20778:131;:::i;:::-;20770:139;;20497:419;;;:::o;20922:180::-;20970:77;20967:1;20960:88;21067:4;21064:1;21057:15;21091:4;21088:1;21081:15;21108:191;21148:3;21167:20;21185:1;21167:20;:::i;:::-;21162:25;;21201:20;21219:1;21201:20;:::i;:::-;21196:25;;21244:1;21241;21237:9;21230:16;;21265:3;21262:1;21259:10;21256:36;;;21272:18;;:::i;:::-;21256:36;21108:191;;;;:::o;21305:247::-;21445:34;21441:1;21433:6;21429:14;21422:58;21514:30;21509:2;21501:6;21497:15;21490:55;21305:247;:::o;21558:366::-;21700:3;21721:67;21785:2;21780:3;21721:67;:::i;:::-;21714:74;;21797:93;21886:3;21797:93;:::i;:::-;21915:2;21910:3;21906:12;21899:19;;21558:366;;;:::o;21930:419::-;22096:4;22134:2;22123:9;22119:18;22111:26;;22183:9;22177:4;22173:20;22169:1;22158:9;22154:17;22147:47;22211:131;22337:4;22211:131;:::i;:::-;22203:139;;21930:419;;;:::o;22355:410::-;22395:7;22418:20;22436:1;22418:20;:::i;:::-;22413:25;;22452:20;22470:1;22452:20;:::i;:::-;22447:25;;22507:1;22504;22500:9;22529:30;22547:11;22529:30;:::i;:::-;22518:41;;22708:1;22699:7;22695:15;22692:1;22689:22;22669:1;22662:9;22642:83;22619:139;;22738:18;;:::i;:::-;22619:139;22403:362;22355:410;;;;:::o;22771:171::-;22911:23;22907:1;22899:6;22895:14;22888:47;22771:171;:::o;22948:366::-;23090:3;23111:67;23175:2;23170:3;23111:67;:::i;:::-;23104:74;;23187:93;23276:3;23187:93;:::i;:::-;23305:2;23300:3;23296:12;23289:19;;22948:366;;;:::o;23320:419::-;23486:4;23524:2;23513:9;23509:18;23501:26;;23573:9;23567:4;23563:20;23559:1;23548:9;23544:17;23537:47;23601:131;23727:4;23601:131;:::i;:::-;23593:139;;23320:419;;;:::o;23745:172::-;23885:24;23881:1;23873:6;23869:14;23862:48;23745:172;:::o;23923:366::-;24065:3;24086:67;24150:2;24145:3;24086:67;:::i;:::-;24079:74;;24162:93;24251:3;24162:93;:::i;:::-;24280:2;24275:3;24271:12;24264:19;;23923:366;;;:::o;24295:419::-;24461:4;24499:2;24488:9;24484:18;24476:26;;24548:9;24542:4;24538:20;24534:1;24523:9;24519:17;24512:47;24576:131;24702:4;24576:131;:::i;:::-;24568:139;;24295:419;;;:::o;24720:97::-;24779:6;24807:3;24797:13;;24720:97;;;;:::o;24823:141::-;24872:4;24895:3;24887:11;;24918:3;24915:1;24908:14;24952:4;24949:1;24939:18;24931:26;;24823:141;;;:::o;24970:93::-;25007:6;25054:2;25049;25042:5;25038:14;25034:23;25024:33;;24970:93;;;:::o;25069:107::-;25113:8;25163:5;25157:4;25153:16;25132:37;;25069:107;;;;:::o;25182:393::-;25251:6;25301:1;25289:10;25285:18;25324:97;25354:66;25343:9;25324:97;:::i;:::-;25442:39;25472:8;25461:9;25442:39;:::i;:::-;25430:51;;25514:4;25510:9;25503:5;25499:21;25490:30;;25563:4;25553:8;25549:19;25542:5;25539:30;25529:40;;25258:317;;25182:393;;;;;:::o;25581:142::-;25631:9;25664:53;25682:34;25691:24;25709:5;25691:24;:::i;:::-;25682:34;:::i;:::-;25664:53;:::i;:::-;25651:66;;25581:142;;;:::o;25729:75::-;25772:3;25793:5;25786:12;;25729:75;;;:::o;25810:269::-;25920:39;25951:7;25920:39;:::i;:::-;25981:91;26030:41;26054:16;26030:41;:::i;:::-;26022:6;26015:4;26009:11;25981:91;:::i;:::-;25975:4;25968:105;25886:193;25810:269;;;:::o;26085:73::-;26130:3;26085:73;:::o;26164:189::-;26241:32;;:::i;:::-;26282:65;26340:6;26332;26326:4;26282:65;:::i;:::-;26217:136;26164:189;;:::o;26359:186::-;26419:120;26436:3;26429:5;26426:14;26419:120;;;26490:39;26527:1;26520:5;26490:39;:::i;:::-;26463:1;26456:5;26452:13;26443:22;;26419:120;;;26359:186;;:::o;26551:543::-;26652:2;26647:3;26644:11;26641:446;;;26686:38;26718:5;26686:38;:::i;:::-;26770:29;26788:10;26770:29;:::i;:::-;26760:8;26756:44;26953:2;26941:10;26938:18;26935:49;;;26974:8;26959:23;;26935:49;26997:80;27053:22;27071:3;27053:22;:::i;:::-;27043:8;27039:37;27026:11;26997:80;:::i;:::-;26656:431;;26641:446;26551:543;;;:::o;27100:117::-;27154:8;27204:5;27198:4;27194:16;27173:37;;27100:117;;;;:::o;27223:169::-;27267:6;27300:51;27348:1;27344:6;27336:5;27333:1;27329:13;27300:51;:::i;:::-;27296:56;27381:4;27375;27371:15;27361:25;;27274:118;27223:169;;;;:::o;27397:295::-;27473:4;27619:29;27644:3;27638:4;27619:29;:::i;:::-;27611:37;;27681:3;27678:1;27674:11;27668:4;27665:21;27657:29;;27397:295;;;;:::o;27697:1403::-;27821:44;27861:3;27856;27821:44;:::i;:::-;27930:18;27922:6;27919:30;27916:56;;;27952:18;;:::i;:::-;27916:56;27996:38;28028:4;28022:11;27996:38;:::i;:::-;28081:67;28141:6;28133;28127:4;28081:67;:::i;:::-;28175:1;28204:2;28196:6;28193:14;28221:1;28216:632;;;;28892:1;28909:6;28906:84;;;28965:9;28960:3;28956:19;28943:33;28934:42;;28906:84;29016:67;29076:6;29069:5;29016:67;:::i;:::-;29010:4;29003:81;28865:229;28186:908;;28216:632;28268:4;28264:9;28256:6;28252:22;28302:37;28334:4;28302:37;:::i;:::-;28361:1;28375:215;28389:7;28386:1;28383:14;28375:215;;;28475:9;28470:3;28466:19;28453:33;28445:6;28438:49;28526:1;28518:6;28514:14;28504:24;;28573:2;28562:9;28558:18;28545:31;;28412:4;28409:1;28405:12;28400:17;;28375:215;;;28618:6;28609:7;28606:19;28603:186;;;28683:9;28678:3;28674:19;28661:33;28726:48;28768:4;28760:6;28756:17;28745:9;28726:48;:::i;:::-;28718:6;28711:64;28626:163;28603:186;28835:1;28831;28823:6;28819:14;28815:22;28809:4;28802:36;28223:625;;;28186:908;;27796:1304;;;27697:1403;;;:::o;29106:180::-;29154:77;29151:1;29144:88;29251:4;29248:1;29241:15;29275:4;29272:1;29265:15;29292:185;29332:1;29349:20;29367:1;29349:20;:::i;:::-;29344:25;;29383:20;29401:1;29383:20;:::i;:::-;29378:25;;29422:1;29412:35;;29427:18;;:::i;:::-;29412:35;29469:1;29466;29462:9;29457:14;;29292:185;;;;:::o;29483:175::-;29623:27;29619:1;29611:6;29607:14;29600:51;29483:175;:::o;29664:366::-;29806:3;29827:67;29891:2;29886:3;29827:67;:::i;:::-;29820:74;;29903:93;29992:3;29903:93;:::i;:::-;30021:2;30016:3;30012:12;30005:19;;29664:366;;;:::o;30036:419::-;30202:4;30240:2;30229:9;30225:18;30217:26;;30289:9;30283:4;30279:20;30275:1;30264:9;30260:17;30253:47;30317:131;30443:4;30317:131;:::i;:::-;30309:139;;30036:419;;;:::o;30461:222::-;30601:34;30597:1;30589:6;30585:14;30578:58;30670:5;30665:2;30657:6;30653:15;30646:30;30461:222;:::o;30689:366::-;30831:3;30852:67;30916:2;30911:3;30852:67;:::i;:::-;30845:74;;30928:93;31017:3;30928:93;:::i;:::-;31046:2;31041:3;31037:12;31030:19;;30689:366;;;:::o;31061:419::-;31227:4;31265:2;31254:9;31250:18;31242:26;;31314:9;31308:4;31304:20;31300:1;31289:9;31285:17;31278:47;31342:131;31468:4;31342:131;:::i;:::-;31334:139;;31061:419;;;:::o;31486:221::-;31626:34;31622:1;31614:6;31610:14;31603:58;31695:4;31690:2;31682:6;31678:15;31671:29;31486:221;:::o;31713:366::-;31855:3;31876:67;31940:2;31935:3;31876:67;:::i;:::-;31869:74;;31952:93;32041:3;31952:93;:::i;:::-;32070:2;32065:3;32061:12;32054:19;;31713:366;;;:::o;32085:419::-;32251:4;32289:2;32278:9;32274:18;32266:26;;32338:9;32332:4;32328:20;32324:1;32313:9;32309:17;32302:47;32366:131;32492:4;32366:131;:::i;:::-;32358:139;;32085:419;;;:::o;32510:171::-;32650:23;32646:1;32638:6;32634:14;32627:47;32510:171;:::o;32687:366::-;32829:3;32850:67;32914:2;32909:3;32850:67;:::i;:::-;32843:74;;32926:93;33015:3;32926:93;:::i;:::-;33044:2;33039:3;33035:12;33028:19;;32687:366;;;:::o;33059:419::-;33225:4;33263:2;33252:9;33248:18;33240:26;;33312:9;33306:4;33302:20;33298:1;33287:9;33283:17;33276:47;33340:131;33466:4;33340:131;:::i;:::-;33332:139;;33059:419;;;:::o;33484:180::-;33532:77;33529:1;33522:88;33629:4;33626:1;33619:15;33653:4;33650:1;33643:15;33670:170;33810:22;33806:1;33798:6;33794:14;33787:46;33670:170;:::o;33846:366::-;33988:3;34009:67;34073:2;34068:3;34009:67;:::i;:::-;34002:74;;34085:93;34174:3;34085:93;:::i;:::-;34203:2;34198:3;34194:12;34187:19;;33846:366;;;:::o;34218:419::-;34384:4;34422:2;34411:9;34407:18;34399:26;;34471:9;34465:4;34461:20;34457:1;34446:9;34442:17;34435:47;34499:131;34625:4;34499:131;:::i;:::-;34491:139;;34218:419;;;:::o;34643:171::-;34783:23;34779:1;34771:6;34767:14;34760:47;34643:171;:::o;34820:366::-;34962:3;34983:67;35047:2;35042:3;34983:67;:::i;:::-;34976:74;;35059:93;35148:3;35059:93;:::i;:::-;35177:2;35172:3;35168:12;35161:19;;34820:366;;;:::o;35192:419::-;35358:4;35396:2;35385:9;35381:18;35373:26;;35445:9;35439:4;35435:20;35431:1;35420:9;35416:17;35409:47;35473:131;35599:4;35473:131;:::i;:::-;35465:139;;35192:419;;;:::o;35617:233::-;35656:3;35679:24;35697:5;35679:24;:::i;:::-;35670:33;;35725:66;35718:5;35715:77;35712:103;;35795:18;;:::i;:::-;35712:103;35842:1;35835:5;35831:13;35824:20;;35617:233;;;:::o;35856:148::-;35958:11;35995:3;35980:18;;35856:148;;;;:::o;36010:390::-;36116:3;36144:39;36177:5;36144:39;:::i;:::-;36199:89;36281:6;36276:3;36199:89;:::i;:::-;36192:96;;36297:65;36355:6;36350:3;36343:4;36336:5;36332:16;36297:65;:::i;:::-;36387:6;36382:3;36378:16;36371:23;;36120:280;36010:390;;;;:::o;36406:435::-;36586:3;36608:95;36699:3;36690:6;36608:95;:::i;:::-;36601:102;;36720:95;36811:3;36802:6;36720:95;:::i;:::-;36713:102;;36832:3;36825:10;;36406:435;;;;;:::o;36847:225::-;36987:34;36983:1;36975:6;36971:14;36964:58;37056:8;37051:2;37043:6;37039:15;37032:33;36847:225;:::o;37078:366::-;37220:3;37241:67;37305:2;37300:3;37241:67;:::i;:::-;37234:74;;37317:93;37406:3;37317:93;:::i;:::-;37435:2;37430:3;37426:12;37419:19;;37078:366;;;:::o;37450:419::-;37616:4;37654:2;37643:9;37639:18;37631:26;;37703:9;37697:4;37693:20;37689:1;37678:9;37674:17;37667:47;37731:131;37857:4;37731:131;:::i;:::-;37723:139;;37450:419;;;:::o;37875:332::-;37996:4;38034:2;38023:9;38019:18;38011:26;;38047:71;38115:1;38104:9;38100:17;38091:6;38047:71;:::i;:::-;38128:72;38196:2;38185:9;38181:18;38172:6;38128:72;:::i;:::-;37875:332;;;;;:::o;38213:137::-;38267:5;38298:6;38292:13;38283:22;;38314:30;38338:5;38314:30;:::i;:::-;38213:137;;;;:::o;38356:345::-;38423:6;38472:2;38460:9;38451:7;38447:23;38443:32;38440:119;;;38478:79;;:::i;:::-;38440:119;38598:1;38623:61;38676:7;38667:6;38656:9;38652:22;38623:61;:::i;:::-;38613:71;;38569:125;38356:345;;;;:::o;38707:181::-;38847:33;38843:1;38835:6;38831:14;38824:57;38707:181;:::o;38894:366::-;39036:3;39057:67;39121:2;39116:3;39057:67;:::i;:::-;39050:74;;39133:93;39222:3;39133:93;:::i;:::-;39251:2;39246:3;39242:12;39235:19;;38894:366;;;:::o;39266:419::-;39432:4;39470:2;39459:9;39455:18;39447:26;;39519:9;39513:4;39509:20;39505:1;39494:9;39490:17;39483:47;39547:131;39673:4;39547:131;:::i;:::-;39539:139;;39266:419;;;:::o;39691:182::-;39831:34;39827:1;39819:6;39815:14;39808:58;39691:182;:::o;39879:366::-;40021:3;40042:67;40106:2;40101:3;40042:67;:::i;:::-;40035:74;;40118:93;40207:3;40118:93;:::i;:::-;40236:2;40231:3;40227:12;40220:19;;39879:366;;;:::o;40251:419::-;40417:4;40455:2;40444:9;40440:18;40432:26;;40504:9;40498:4;40494:20;40490:1;40479:9;40475:17;40468:47;40532:131;40658:4;40532:131;:::i;:::-;40524:139;;40251:419;;;:::o;40676:98::-;40727:6;40761:5;40755:12;40745:22;;40676:98;;;:::o;40780:168::-;40863:11;40897:6;40892:3;40885:19;40937:4;40932:3;40928:14;40913:29;;40780:168;;;;:::o;40954:373::-;41040:3;41068:38;41100:5;41068:38;:::i;:::-;41122:70;41185:6;41180:3;41122:70;:::i;:::-;41115:77;;41201:65;41259:6;41254:3;41247:4;41240:5;41236:16;41201:65;:::i;:::-;41291:29;41313:6;41291:29;:::i;:::-;41286:3;41282:39;41275:46;;41044:283;40954:373;;;;:::o;41333:640::-;41528:4;41566:3;41555:9;41551:19;41543:27;;41580:71;41648:1;41637:9;41633:17;41624:6;41580:71;:::i;:::-;41661:72;41729:2;41718:9;41714:18;41705:6;41661:72;:::i;:::-;41743;41811:2;41800:9;41796:18;41787:6;41743:72;:::i;:::-;41862:9;41856:4;41852:20;41847:2;41836:9;41832:18;41825:48;41890:76;41961:4;41952:6;41890:76;:::i;:::-;41882:84;;41333:640;;;;;;;:::o;41979:141::-;42035:5;42066:6;42060:13;42051:22;;42082:32;42108:5;42082:32;:::i;:::-;41979:141;;;;:::o;42126:349::-;42195:6;42244:2;42232:9;42223:7;42219:23;42215:32;42212:119;;;42250:79;;:::i;:::-;42212:119;42370:1;42395:63;42450:7;42441:6;42430:9;42426:22;42395:63;:::i;:::-;42385:73;;42341:127;42126:349;;;;:::o

Swarm Source

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