ETH Price: $3,277.83 (-4.04%)
Gas: 6 Gwei

Token

TESTINGGGG (TB)
 

Overview

Max Total Supply

5,569 TB

Holders

2,908

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
batboi.eth
Balance
1 TB
0xb6197d103d3e0663f28cbabe47535b5b7a9ecab3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Kuma Boss is an exclusive collection of 5,555 NFT that enhanced the Alpha Boss sleeping in your soul

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KumaBoss

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-13
*/

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of 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 through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

    // ==============================
    //            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`.
     *
     * 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 calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token 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;

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

    /**
     * @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 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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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 '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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 {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/hello.sol



pragma solidity >=0.8.14;





contract KumaBoss is ERC721A, Ownable {
      /******Supply******/
      uint256 public maxNFTSupply = 5555;

      /******Trx******/
      uint256 public maxMintPerTransaction = 1;
      uint256 public maxMintPerAccount = 1;

      /******Mint_Prices******/
      uint256 public publicMintPrice = 0 ether;
      uint256 public whitelistMintPrice = 0 ether;

      /******Time******/
      uint64 public publicMintTime;
      uint64 public whitelistMintTime;

      /******Others******/
      bytes32 public whitelistMerkleRoot;
      string public ext = ".json";
      bool public publicSwitch = true;
      bool public whitelistSwitch = true;
      string private _baseTokenURI;
      using Strings for uint256;

    constructor() ERC721A("TESTINGGGG", "TB") {}

    function publicMint(uint256 qty) external payable {
        require(publicMintTime !=0 &&  block.timestamp >= publicMintTime,"its not time for Public Mint");
        require(publicSwitch == true,"Public mint is paused");
        require(qty > 0, "Mint qty should be over 0");
        require(qty <= maxMintPerTransaction, "Max mint per transaction exceeded");
        require(_numberMinted(msg.sender) + qty <= maxMintPerAccount,"you are unable to mint anymore");
        require(totalSupply() + qty <= maxNFTSupply, "Reached max supply");
        require(msg.value >= publicMintPrice * qty, "Insufficient Funds");

      _safeMint(msg.sender, qty);
    }

    function whitelistMint(bytes32[] calldata _merkleProof, uint256 qty) external payable {
        require(whitelistSwitch == true,"Whitelist mint have been Paused");
        require(qty > 0, "Mint amount should be over 0");
        require(_numberMinted(msg.sender) + qty <= maxMintPerAccount,"you are unable to mint anymore");
        require(whitelistMintTime !=0 &&  block.timestamp >= whitelistMintTime,"its not time for whitelist");
        require(qty <= maxMintPerTransaction, "Max mint per transaction exceeded");
        require(whitelistValidity(_merkleProof), "Invalid proof");
        require(msg.value >= whitelistMintPrice * qty, "Insufficient Funds");

      _safeMint(msg.sender, qty);
    }

    /*****Setters*****/
    function setMaxNFTSupply(uint256 _maxNFTSupply) public onlyOwner{
      maxNFTSupply = _maxNFTSupply;
    }

    function setMaxMintPerTrx(uint256 _maxMintPerTrx) public onlyOwner{
      maxMintPerTransaction = _maxMintPerTrx;
    }

    function setMaxMintPerAcc(uint256 _maxMintPerAcc) public onlyOwner{
      maxMintPerAccount = _maxMintPerAcc;
    }

    function setPublicMintPrice(uint256 _publicMintPrice) public onlyOwner{
      publicMintPrice = _publicMintPrice;
    }

    function setWhitelistMintPrice(uint256 _whitelistMintPrice) public onlyOwner{
      whitelistMintPrice = _whitelistMintPrice;
    }

    function pausePublicMint() public onlyOwner {
      publicSwitch = !publicSwitch; 
    }

    function pauseWhitelistMint() public onlyOwner {
      whitelistSwitch = !whitelistSwitch; 
    }

    function setPublicMintTime(uint32 _publicMintTime) external onlyOwner {
      publicMintTime = _publicMintTime;
    }

    function setWhitelistMintTIme(uint32 _whitelistMinttime) external onlyOwner {
      whitelistMintTime = _whitelistMinttime;
    }

    function bossMint( uint256 quantity) payable public onlyOwner {
        require(totalSupply() + quantity <= maxNFTSupply);
        _safeMint(msg.sender, quantity);
    }

    function bossAirdrop( address to, uint256 airdropNum) payable public onlyOwner {
      require(totalSupply() + airdropNum <= maxNFTSupply);
        _safeMint(to, airdropNum);
    }

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

    function _baseURI() internal view virtual override returns (string memory) {
      return _baseTokenURI;
    }
    
    function setBaseURI(string calldata baseURI) public onlyOwner {
      _baseTokenURI = baseURI;
    }

    /*****Checkers*****/
    function tokenURI(uint256 tokenId)
      public
      view
      virtual
      override
      returns (string memory)
    {
      require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
      string memory currentBaseURI = _baseURI();
      return bytes(currentBaseURI).length > 0
          ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ext))
          : "";
    }

    function whitelistValidity(bytes32[] calldata _merkleProof) public view returns (bool){
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "Incorrect proof");
        return true; 
    }

    function amountMinted() public view returns(uint256){
      return _numberMinted(msg.sender);
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"airdropNum","type":"uint256"}],"name":"bossAirdrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"bossMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ext","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNFTSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintTime","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSwitch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerAcc","type":"uint256"}],"name":"setMaxMintPerAcc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerTrx","type":"uint256"}],"name":"setMaxMintPerTrx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxNFTSupply","type":"uint256"}],"name":"setMaxNFTSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMintPrice","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_publicMintTime","type":"uint32"}],"name":"setPublicMintTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistMintPrice","type":"uint256"}],"name":"setWhitelistMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_whitelistMinttime","type":"uint32"}],"name":"setWhitelistMintTIme","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintTime","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSwitch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistValidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526115b36009556001600a556001600b556000600c556000600d556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601090805190602001906200006b9291906200025f565b506001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff021916908315150217905550348015620000af57600080fd5b506040518060400160405280600a81526020017f54455354494e47474747000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f54420000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001349291906200025f565b5080600390805190602001906200014d9291906200025f565b506200015e6200018c60201b60201c565b6000819055505050620001866200017a6200019160201b60201c565b6200019960201b60201c565b62000373565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026d906200033e565b90600052602060002090601f016020900481019282620002915760008555620002dd565b82601f10620002ac57805160ff1916838001178555620002dd565b82800160010185558215620002dd579182015b82811115620002dc578251825591602001919060010190620002bf565b5b509050620002ec9190620002f0565b5090565b5b808211156200030b576000816000905550600101620002f1565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035757607f821691505b6020821081036200036d576200036c6200030f565b5b50919050565b613e2980620003836000396000f3fe6080604052600436106102885760003560e01c80636352211e1161015a578063aa98e0c6116100c1578063cf9f23b51161007a578063cf9f23b514610943578063d63bdf671461096e578063dc53fd9214610999578063e985e9c5146109c4578063ebc07fe214610a01578063f2fde38b14610a1d57610288565b8063aa98e0c614610835578063b88d4fde14610860578063bcd25ee514610889578063bd32fb66146108b4578063c0f1ecd1146108dd578063c87b56dd1461090657610288565b80639dadfdb3116101135780639dadfdb314610748578063a21b694614610764578063a22cb4651461078d578063a2309ff8146107b6578063a611708e146107e1578063a8f72e121461080a57610288565b80636352211e1461063657806370a0823114610673578063715018a6146106b05780637af284d5146106c75780638da5cb5b146106f257806395d89b411461071d57610288565b80632db11544116101fe57806342842e0e116101b757806342842e0e1461053e5780635103f6b61461056757806355f804b3146105905780635d82cf6e146105b95780635dd2eaab146105e25780635e4034721461060b57610288565b80632db115441461046157806330a1aa231461047d57806335ac3bcc146104ba57806335c6aaf8146104d15780633a1c5834146104fc5780633ccfd60b1461052757610288565b8063081812fc11610250578063081812fc14610360578063095ea7b31461039d57806318160ddd146103c657806323b872dd146103f157806324c979a31461041a5780632904e6d91461044557610288565b806301f569971461028d57806301ffc9a7146102b857806304c4492a146102f5578063056f8a3d1461031e57806306fdde0314610335575b600080fd5b34801561029957600080fd5b506102a2610a46565b6040516102af91906129dd565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612a64565b610a4c565b6040516102ec9190612aac565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190612b03565b610ade565b005b34801561032a57600080fd5b50610333610b18565b005b34801561034157600080fd5b5061034a610b4c565b6040516103579190612bc9565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612c17565b610bde565b6040516103949190612c85565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190612ccc565b610c5a565b005b3480156103d257600080fd5b506103db610d9b565b6040516103e891906129dd565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190612d0c565b610db2565b005b34801561042657600080fd5b5061042f6110d4565b60405161043c91906129dd565b60405180910390f35b61045f600480360381019061045a9190612dc4565b6110da565b005b61047b60048036038101906104769190612c17565b611348565b005b34801561048957600080fd5b506104a4600480360381019061049f9190612e24565b6115c2565b6040516104b19190612aac565b60405180910390f35b3480156104c657600080fd5b506104cf611686565b005b3480156104dd57600080fd5b506104e66116ba565b6040516104f391906129dd565b60405180910390f35b34801561050857600080fd5b506105116116c0565b60405161051e91906129dd565b60405180910390f35b34801561053357600080fd5b5061053c6116c6565b005b34801561054a57600080fd5b5061056560048036038101906105609190612d0c565b61172e565b005b34801561057357600080fd5b5061058e60048036038101906105899190612c17565b61174e565b005b34801561059c57600080fd5b506105b760048036038101906105b29190612ec7565b611760565b005b3480156105c557600080fd5b506105e060048036038101906105db9190612c17565b61177e565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612c17565b611790565b005b34801561061757600080fd5b506106206117a2565b60405161062d9190612f37565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612c17565b6117bc565b60405161066a9190612c85565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612f52565b6117ce565b6040516106a791906129dd565b60405180910390f35b3480156106bc57600080fd5b506106c5611886565b005b3480156106d357600080fd5b506106dc61189a565b6040516106e991906129dd565b60405180910390f35b3480156106fe57600080fd5b506107076118aa565b6040516107149190612c85565b60405180910390f35b34801561072957600080fd5b506107326118d4565b60405161073f9190612bc9565b60405180910390f35b610762600480360381019061075d9190612c17565b611966565b005b34801561077057600080fd5b5061078b60048036038101906107869190612c17565b61199c565b005b34801561079957600080fd5b506107b460048036038101906107af9190612fab565b6119ae565b005b3480156107c257600080fd5b506107cb611b25565b6040516107d891906129dd565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190612c17565b611b34565b005b34801561081657600080fd5b5061081f611b46565b60405161082c9190612f37565b60405180910390f35b34801561084157600080fd5b5061084a611b60565b6040516108579190613004565b60405180910390f35b34801561086c57600080fd5b506108876004803603810190610882919061314f565b611b66565b005b34801561089557600080fd5b5061089e611bd9565b6040516108ab9190612aac565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d691906131fe565b611bec565b005b3480156108e957600080fd5b5061090460048036038101906108ff9190612b03565b611bfe565b005b34801561091257600080fd5b5061092d60048036038101906109289190612c17565b611c38565b60405161093a9190612bc9565b60405180910390f35b34801561094f57600080fd5b50610958611ce2565b6040516109659190612bc9565b60405180910390f35b34801561097a57600080fd5b50610983611d70565b6040516109909190612aac565b60405180910390f35b3480156109a557600080fd5b506109ae611d83565b6040516109bb91906129dd565b60405180910390f35b3480156109d057600080fd5b506109eb60048036038101906109e6919061322b565b611d89565b6040516109f89190612aac565b60405180910390f35b610a1b6004803603810190610a169190612ccc565b611e1d565b005b348015610a2957600080fd5b50610a446004803603810190610a3f9190612f52565b611e54565b005b600a5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610ae6611ed7565b8063ffffffff16600e60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b610b20611ed7565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b606060028054610b5b9061329a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b879061329a565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b6000610be982611f55565b610c1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c65826117bc565b90508073ffffffffffffffffffffffffffffffffffffffff16610c86611fb4565b73ffffffffffffffffffffffffffffffffffffffff1614610ce957610cb281610cad611fb4565b611d89565b610ce8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610da5611fbc565b6001546000540303905090565b6000610dbd82611fc1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e24576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e308461208d565b91509150610e468187610e41611fb4565b6120af565b610e9257610e5b86610e56611fb4565b611d89565b610e91576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ef8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f0586868660016120f3565b8015610f1057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fde85610fba8888876120f9565b7c020000000000000000000000000000000000000000000000000000000017612121565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036110645760006001850190506000600460008381526020019081526020016000205403611062576000548114611061578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110cc868686600161214c565b505050505050565b60095481565b60011515601160019054906101000a900460ff16151514611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613317565b60405180910390fd5b60008111611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90613383565b60405180910390fd5b600b548161118033612152565b61118a91906133d2565b11156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613474565b60405180910390fd5b6000600e60089054906101000a900467ffffffffffffffff1667ffffffffffffffff161415801561121c5750600e60089054906101000a900467ffffffffffffffff1667ffffffffffffffff164210155b61125b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611252906134e0565b60405180910390fd5b600a548111156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790613572565b60405180910390fd5b6112aa83836115c2565b6112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e0906135de565b60405180910390fd5b80600d546112f791906135fe565b341015611339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611330906136a4565b60405180910390fd5b61134333826121a9565b505050565b6000600e60009054906101000a900467ffffffffffffffff1667ffffffffffffffff16141580156113995750600e60009054906101000a900467ffffffffffffffff1667ffffffffffffffff164210155b6113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90613710565b60405180910390fd5b60011515601160009054906101000a900460ff1615151461142e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114259061377c565b60405180910390fd5b60008111611471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611468906137e8565b60405180910390fd5b600a548111156114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613572565b60405180910390fd5b600b54816114c333612152565b6114cd91906133d2565b111561150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590613474565b60405180910390fd5b6009548161151a610d9b565b61152491906133d2565b1115611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90613854565b60405180910390fd5b80600c5461157391906135fe565b3410156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac906136a4565b60405180910390fd5b6115bf33826121a9565b50565b600080336040516020016115d691906138bc565b60405160208183030381529060405280519060200120905061163c848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f54836121c7565b61167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290613923565b60405180910390fd5b600191505092915050565b61168e611ed7565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b600d5481565b600b5481565b6116ce611ed7565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f1935050505015801561172b573d6000803e3d6000fd5b50565b61174983838360405180602001604052806000815250611b66565b505050565b611756611ed7565b80600a8190555050565b611768611ed7565b818160129190611779929190612921565b505050565b611786611ed7565b80600c8190555050565b611798611ed7565b80600b8190555050565b600e60009054906101000a900467ffffffffffffffff1681565b60006117c782611fc1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611835576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61188e611ed7565b61189860006121de565b565b60006118a533612152565b905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118e39061329a565b80601f016020809104026020016040519081016040528092919081815260200182805461190f9061329a565b801561195c5780601f106119315761010080835404028352916020019161195c565b820191906000526020600020905b81548152906001019060200180831161193f57829003601f168201915b5050505050905090565b61196e611ed7565b6009548161197a610d9b565b61198491906133d2565b111561198f57600080fd5b61199933826121a9565b50565b6119a4611ed7565b8060098190555050565b6119b6611fb4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a27611fb4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ad4611fb4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b199190612aac565b60405180910390a35050565b6000611b2f6122a4565b905090565b611b3c611ed7565b80600d8190555050565b600e60089054906101000a900467ffffffffffffffff1681565b600f5481565b611b71848484610db2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bd357611b9c848484846122b7565b611bd2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601160019054906101000a900460ff1681565b611bf4611ed7565b80600f8190555050565b611c06611ed7565b8063ffffffff16600e60086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b6060611c4382611f55565b611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c79906139b5565b60405180910390fd5b6000611c8c612407565b90506000815111611cac5760405180602001604052806000815250611cda565b80611cb684612499565b6010604051602001611cca93929190613aa5565b6040516020818303038152906040525b915050919050565b60108054611cef9061329a565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1b9061329a565b8015611d685780601f10611d3d57610100808354040283529160200191611d68565b820191906000526020600020905b815481529060010190602001808311611d4b57829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e25611ed7565b60095481611e31610d9b565b611e3b91906133d2565b1115611e4657600080fd5b611e5082826121a9565b5050565b611e5c611ed7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec290613b48565b60405180910390fd5b611ed4816121de565b50565b611edf6125f9565b73ffffffffffffffffffffffffffffffffffffffff16611efd6118aa565b73ffffffffffffffffffffffffffffffffffffffff1614611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a90613bb4565b60405180910390fd5b565b600081611f60611fbc565b11158015611f6f575060005482105b8015611fad575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611fd0611fbc565b11612056576000548110156120555760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612053575b6000810361204957600460008360019003935083815260200190815260200160002054905061201f565b8092505050612088565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612110868684612601565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6121c382826040518060200160405280600081525061260a565b5050565b6000826121d485846126a7565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006122ae611fbc565b60005403905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122dd611fb4565b8786866040518563ffffffff1660e01b81526004016122ff9493929190613c29565b6020604051808303816000875af192505050801561233b57506040513d601f19601f820116820180604052508101906123389190613c8a565b60015b6123b4573d806000811461236b576040519150601f19603f3d011682016040523d82523d6000602084013e612370565b606091505b5060008151036123ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546124169061329a565b80601f01602080910402602001604051908101604052809291908181526020018280546124429061329a565b801561248f5780601f106124645761010080835404028352916020019161248f565b820191906000526020600020905b81548152906001019060200180831161247257829003601f168201915b5050505050905090565b6060600082036124e0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125f4565b600082905060005b600082146125125780806124fb90613cb7565b915050600a8261250b9190613d2e565b91506124e8565b60008167ffffffffffffffff81111561252e5761252d613024565b5b6040519080825280601f01601f1916602001820160405280156125605781602001600182028036833780820191505090505b5090505b600085146125ed576001826125799190613d5f565b9150600a856125889190613d93565b603061259491906133d2565b60f81b8183815181106125aa576125a9613dc4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125e69190613d2e565b9450612564565b8093505050505b919050565b600033905090565b60009392505050565b61261483836126fd565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126a257600080549050600083820390505b61265460008683806001019450866122b7565b61268a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061264157816000541461269f57600080fd5b50505b505050565b60008082905060005b84518110156126f2576126dd828683815181106126d0576126cf613dc4565b5b60200260200101516128cf565b915080806126ea90613cb7565b9150506126b0565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612769576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036127a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127b060008483856120f3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128278361281860008660006120f9565b612821856128fa565b17612121565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061284b578060008190555050506128ca600084838561214c565b505050565b60008183106128e7576128e2828461290a565b6128f2565b6128f1838361290a565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b82805461292d9061329a565b90600052602060002090601f01602090048101928261294f5760008555612996565b82601f1061296857803560ff1916838001178555612996565b82800160010185558215612996579182015b8281111561299557823582559160200191906001019061297a565b5b5090506129a391906129a7565b5090565b5b808211156129c05760008160009055506001016129a8565b5090565b6000819050919050565b6129d7816129c4565b82525050565b60006020820190506129f260008301846129ce565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a4181612a0c565b8114612a4c57600080fd5b50565b600081359050612a5e81612a38565b92915050565b600060208284031215612a7a57612a79612a02565b5b6000612a8884828501612a4f565b91505092915050565b60008115159050919050565b612aa681612a91565b82525050565b6000602082019050612ac16000830184612a9d565b92915050565b600063ffffffff82169050919050565b612ae081612ac7565b8114612aeb57600080fd5b50565b600081359050612afd81612ad7565b92915050565b600060208284031215612b1957612b18612a02565b5b6000612b2784828501612aee565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b6a578082015181840152602081019050612b4f565b83811115612b79576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b9b82612b30565b612ba58185612b3b565b9350612bb5818560208601612b4c565b612bbe81612b7f565b840191505092915050565b60006020820190508181036000830152612be38184612b90565b905092915050565b612bf4816129c4565b8114612bff57600080fd5b50565b600081359050612c1181612beb565b92915050565b600060208284031215612c2d57612c2c612a02565b5b6000612c3b84828501612c02565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c6f82612c44565b9050919050565b612c7f81612c64565b82525050565b6000602082019050612c9a6000830184612c76565b92915050565b612ca981612c64565b8114612cb457600080fd5b50565b600081359050612cc681612ca0565b92915050565b60008060408385031215612ce357612ce2612a02565b5b6000612cf185828601612cb7565b9250506020612d0285828601612c02565b9150509250929050565b600080600060608486031215612d2557612d24612a02565b5b6000612d3386828701612cb7565b9350506020612d4486828701612cb7565b9250506040612d5586828701612c02565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612d8457612d83612d5f565b5b8235905067ffffffffffffffff811115612da157612da0612d64565b5b602083019150836020820283011115612dbd57612dbc612d69565b5b9250929050565b600080600060408486031215612ddd57612ddc612a02565b5b600084013567ffffffffffffffff811115612dfb57612dfa612a07565b5b612e0786828701612d6e565b93509350506020612e1a86828701612c02565b9150509250925092565b60008060208385031215612e3b57612e3a612a02565b5b600083013567ffffffffffffffff811115612e5957612e58612a07565b5b612e6585828601612d6e565b92509250509250929050565b60008083601f840112612e8757612e86612d5f565b5b8235905067ffffffffffffffff811115612ea457612ea3612d64565b5b602083019150836001820283011115612ec057612ebf612d69565b5b9250929050565b60008060208385031215612ede57612edd612a02565b5b600083013567ffffffffffffffff811115612efc57612efb612a07565b5b612f0885828601612e71565b92509250509250929050565b600067ffffffffffffffff82169050919050565b612f3181612f14565b82525050565b6000602082019050612f4c6000830184612f28565b92915050565b600060208284031215612f6857612f67612a02565b5b6000612f7684828501612cb7565b91505092915050565b612f8881612a91565b8114612f9357600080fd5b50565b600081359050612fa581612f7f565b92915050565b60008060408385031215612fc257612fc1612a02565b5b6000612fd085828601612cb7565b9250506020612fe185828601612f96565b9150509250929050565b6000819050919050565b612ffe81612feb565b82525050565b60006020820190506130196000830184612ff5565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61305c82612b7f565b810181811067ffffffffffffffff8211171561307b5761307a613024565b5b80604052505050565b600061308e6129f8565b905061309a8282613053565b919050565b600067ffffffffffffffff8211156130ba576130b9613024565b5b6130c382612b7f565b9050602081019050919050565b82818337600083830152505050565b60006130f26130ed8461309f565b613084565b90508281526020810184848401111561310e5761310d61301f565b5b6131198482856130d0565b509392505050565b600082601f83011261313657613135612d5f565b5b81356131468482602086016130df565b91505092915050565b6000806000806080858703121561316957613168612a02565b5b600061317787828801612cb7565b945050602061318887828801612cb7565b935050604061319987828801612c02565b925050606085013567ffffffffffffffff8111156131ba576131b9612a07565b5b6131c687828801613121565b91505092959194509250565b6131db81612feb565b81146131e657600080fd5b50565b6000813590506131f8816131d2565b92915050565b60006020828403121561321457613213612a02565b5b6000613222848285016131e9565b91505092915050565b6000806040838503121561324257613241612a02565b5b600061325085828601612cb7565b925050602061326185828601612cb7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132b257607f821691505b6020821081036132c5576132c461326b565b5b50919050565b7f57686974656c697374206d696e742068617665206265656e2050617573656400600082015250565b6000613301601f83612b3b565b915061330c826132cb565b602082019050919050565b60006020820190508181036000830152613330816132f4565b9050919050565b7f4d696e7420616d6f756e742073686f756c64206265206f766572203000000000600082015250565b600061336d601c83612b3b565b915061337882613337565b602082019050919050565b6000602082019050818103600083015261339c81613360565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133dd826129c4565b91506133e8836129c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561341d5761341c6133a3565b5b828201905092915050565b7f796f752061726520756e61626c6520746f206d696e7420616e796d6f72650000600082015250565b600061345e601e83612b3b565b915061346982613428565b602082019050919050565b6000602082019050818103600083015261348d81613451565b9050919050565b7f697473206e6f742074696d6520666f722077686974656c697374000000000000600082015250565b60006134ca601a83612b3b565b91506134d582613494565b602082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b7f4d6178206d696e7420706572207472616e73616374696f6e206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b600061355c602183612b3b565b915061356782613500565b604082019050919050565b6000602082019050818103600083015261358b8161354f565b9050919050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b60006135c8600d83612b3b565b91506135d382613592565b602082019050919050565b600060208201905081810360008301526135f7816135bb565b9050919050565b6000613609826129c4565b9150613614836129c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561364d5761364c6133a3565b5b828202905092915050565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b600061368e601283612b3b565b915061369982613658565b602082019050919050565b600060208201905081810360008301526136bd81613681565b9050919050565b7f697473206e6f742074696d6520666f72205075626c6963204d696e7400000000600082015250565b60006136fa601c83612b3b565b9150613705826136c4565b602082019050919050565b60006020820190508181036000830152613729816136ed565b9050919050565b7f5075626c6963206d696e74206973207061757365640000000000000000000000600082015250565b6000613766601583612b3b565b915061377182613730565b602082019050919050565b6000602082019050818103600083015261379581613759565b9050919050565b7f4d696e74207174792073686f756c64206265206f766572203000000000000000600082015250565b60006137d2601983612b3b565b91506137dd8261379c565b602082019050919050565b60006020820190508181036000830152613801816137c5565b9050919050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b600061383e601283612b3b565b915061384982613808565b602082019050919050565b6000602082019050818103600083015261386d81613831565b9050919050565b60008160601b9050919050565b600061388c82613874565b9050919050565b600061389e82613881565b9050919050565b6138b66138b182612c64565b613893565b82525050565b60006138c882846138a5565b60148201915081905092915050565b7f496e636f72726563742070726f6f660000000000000000000000000000000000600082015250565b600061390d600f83612b3b565b9150613918826138d7565b602082019050919050565b6000602082019050818103600083015261393c81613900565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061399f602f83612b3b565b91506139aa82613943565b604082019050919050565b600060208201905081810360008301526139ce81613992565b9050919050565b600081905092915050565b60006139eb82612b30565b6139f581856139d5565b9350613a05818560208601612b4c565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613a338161329a565b613a3d81866139d5565b94506001821660008114613a585760018114613a6957613a9c565b60ff19831686528186019350613a9c565b613a7285613a11565b60005b83811015613a9457815481890152600182019150602081019050613a75565b838801955050505b50505092915050565b6000613ab182866139e0565b9150613abd82856139e0565b9150613ac98284613a26565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b32602683612b3b565b9150613b3d82613ad6565b604082019050919050565b60006020820190508181036000830152613b6181613b25565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b9e602083612b3b565b9150613ba982613b68565b602082019050919050565b60006020820190508181036000830152613bcd81613b91565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613bfb82613bd4565b613c058185613bdf565b9350613c15818560208601612b4c565b613c1e81612b7f565b840191505092915050565b6000608082019050613c3e6000830187612c76565b613c4b6020830186612c76565b613c5860408301856129ce565b8181036060830152613c6a8184613bf0565b905095945050505050565b600081519050613c8481612a38565b92915050565b600060208284031215613ca057613c9f612a02565b5b6000613cae84828501613c75565b91505092915050565b6000613cc2826129c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613cf457613cf36133a3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d39826129c4565b9150613d44836129c4565b925082613d5457613d53613cff565b5b828204905092915050565b6000613d6a826129c4565b9150613d75836129c4565b925082821015613d8857613d876133a3565b5b828203905092915050565b6000613d9e826129c4565b9150613da9836129c4565b925082613db957613db8613cff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220faa2acbe29fdf017c886deec285df79eed371968f16d8bfb070d09d7792682a064736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106102885760003560e01c80636352211e1161015a578063aa98e0c6116100c1578063cf9f23b51161007a578063cf9f23b514610943578063d63bdf671461096e578063dc53fd9214610999578063e985e9c5146109c4578063ebc07fe214610a01578063f2fde38b14610a1d57610288565b8063aa98e0c614610835578063b88d4fde14610860578063bcd25ee514610889578063bd32fb66146108b4578063c0f1ecd1146108dd578063c87b56dd1461090657610288565b80639dadfdb3116101135780639dadfdb314610748578063a21b694614610764578063a22cb4651461078d578063a2309ff8146107b6578063a611708e146107e1578063a8f72e121461080a57610288565b80636352211e1461063657806370a0823114610673578063715018a6146106b05780637af284d5146106c75780638da5cb5b146106f257806395d89b411461071d57610288565b80632db11544116101fe57806342842e0e116101b757806342842e0e1461053e5780635103f6b61461056757806355f804b3146105905780635d82cf6e146105b95780635dd2eaab146105e25780635e4034721461060b57610288565b80632db115441461046157806330a1aa231461047d57806335ac3bcc146104ba57806335c6aaf8146104d15780633a1c5834146104fc5780633ccfd60b1461052757610288565b8063081812fc11610250578063081812fc14610360578063095ea7b31461039d57806318160ddd146103c657806323b872dd146103f157806324c979a31461041a5780632904e6d91461044557610288565b806301f569971461028d57806301ffc9a7146102b857806304c4492a146102f5578063056f8a3d1461031e57806306fdde0314610335575b600080fd5b34801561029957600080fd5b506102a2610a46565b6040516102af91906129dd565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612a64565b610a4c565b6040516102ec9190612aac565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190612b03565b610ade565b005b34801561032a57600080fd5b50610333610b18565b005b34801561034157600080fd5b5061034a610b4c565b6040516103579190612bc9565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612c17565b610bde565b6040516103949190612c85565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190612ccc565b610c5a565b005b3480156103d257600080fd5b506103db610d9b565b6040516103e891906129dd565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190612d0c565b610db2565b005b34801561042657600080fd5b5061042f6110d4565b60405161043c91906129dd565b60405180910390f35b61045f600480360381019061045a9190612dc4565b6110da565b005b61047b60048036038101906104769190612c17565b611348565b005b34801561048957600080fd5b506104a4600480360381019061049f9190612e24565b6115c2565b6040516104b19190612aac565b60405180910390f35b3480156104c657600080fd5b506104cf611686565b005b3480156104dd57600080fd5b506104e66116ba565b6040516104f391906129dd565b60405180910390f35b34801561050857600080fd5b506105116116c0565b60405161051e91906129dd565b60405180910390f35b34801561053357600080fd5b5061053c6116c6565b005b34801561054a57600080fd5b5061056560048036038101906105609190612d0c565b61172e565b005b34801561057357600080fd5b5061058e60048036038101906105899190612c17565b61174e565b005b34801561059c57600080fd5b506105b760048036038101906105b29190612ec7565b611760565b005b3480156105c557600080fd5b506105e060048036038101906105db9190612c17565b61177e565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612c17565b611790565b005b34801561061757600080fd5b506106206117a2565b60405161062d9190612f37565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612c17565b6117bc565b60405161066a9190612c85565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612f52565b6117ce565b6040516106a791906129dd565b60405180910390f35b3480156106bc57600080fd5b506106c5611886565b005b3480156106d357600080fd5b506106dc61189a565b6040516106e991906129dd565b60405180910390f35b3480156106fe57600080fd5b506107076118aa565b6040516107149190612c85565b60405180910390f35b34801561072957600080fd5b506107326118d4565b60405161073f9190612bc9565b60405180910390f35b610762600480360381019061075d9190612c17565b611966565b005b34801561077057600080fd5b5061078b60048036038101906107869190612c17565b61199c565b005b34801561079957600080fd5b506107b460048036038101906107af9190612fab565b6119ae565b005b3480156107c257600080fd5b506107cb611b25565b6040516107d891906129dd565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190612c17565b611b34565b005b34801561081657600080fd5b5061081f611b46565b60405161082c9190612f37565b60405180910390f35b34801561084157600080fd5b5061084a611b60565b6040516108579190613004565b60405180910390f35b34801561086c57600080fd5b506108876004803603810190610882919061314f565b611b66565b005b34801561089557600080fd5b5061089e611bd9565b6040516108ab9190612aac565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d691906131fe565b611bec565b005b3480156108e957600080fd5b5061090460048036038101906108ff9190612b03565b611bfe565b005b34801561091257600080fd5b5061092d60048036038101906109289190612c17565b611c38565b60405161093a9190612bc9565b60405180910390f35b34801561094f57600080fd5b50610958611ce2565b6040516109659190612bc9565b60405180910390f35b34801561097a57600080fd5b50610983611d70565b6040516109909190612aac565b60405180910390f35b3480156109a557600080fd5b506109ae611d83565b6040516109bb91906129dd565b60405180910390f35b3480156109d057600080fd5b506109eb60048036038101906109e6919061322b565b611d89565b6040516109f89190612aac565b60405180910390f35b610a1b6004803603810190610a169190612ccc565b611e1d565b005b348015610a2957600080fd5b50610a446004803603810190610a3f9190612f52565b611e54565b005b600a5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610ae6611ed7565b8063ffffffff16600e60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b610b20611ed7565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b606060028054610b5b9061329a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b879061329a565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b6000610be982611f55565b610c1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c65826117bc565b90508073ffffffffffffffffffffffffffffffffffffffff16610c86611fb4565b73ffffffffffffffffffffffffffffffffffffffff1614610ce957610cb281610cad611fb4565b611d89565b610ce8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610da5611fbc565b6001546000540303905090565b6000610dbd82611fc1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e24576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e308461208d565b91509150610e468187610e41611fb4565b6120af565b610e9257610e5b86610e56611fb4565b611d89565b610e91576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ef8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f0586868660016120f3565b8015610f1057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fde85610fba8888876120f9565b7c020000000000000000000000000000000000000000000000000000000017612121565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036110645760006001850190506000600460008381526020019081526020016000205403611062576000548114611061578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110cc868686600161214c565b505050505050565b60095481565b60011515601160019054906101000a900460ff16151514611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613317565b60405180910390fd5b60008111611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90613383565b60405180910390fd5b600b548161118033612152565b61118a91906133d2565b11156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613474565b60405180910390fd5b6000600e60089054906101000a900467ffffffffffffffff1667ffffffffffffffff161415801561121c5750600e60089054906101000a900467ffffffffffffffff1667ffffffffffffffff164210155b61125b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611252906134e0565b60405180910390fd5b600a548111156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790613572565b60405180910390fd5b6112aa83836115c2565b6112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e0906135de565b60405180910390fd5b80600d546112f791906135fe565b341015611339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611330906136a4565b60405180910390fd5b61134333826121a9565b505050565b6000600e60009054906101000a900467ffffffffffffffff1667ffffffffffffffff16141580156113995750600e60009054906101000a900467ffffffffffffffff1667ffffffffffffffff164210155b6113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90613710565b60405180910390fd5b60011515601160009054906101000a900460ff1615151461142e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114259061377c565b60405180910390fd5b60008111611471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611468906137e8565b60405180910390fd5b600a548111156114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613572565b60405180910390fd5b600b54816114c333612152565b6114cd91906133d2565b111561150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590613474565b60405180910390fd5b6009548161151a610d9b565b61152491906133d2565b1115611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90613854565b60405180910390fd5b80600c5461157391906135fe565b3410156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac906136a4565b60405180910390fd5b6115bf33826121a9565b50565b600080336040516020016115d691906138bc565b60405160208183030381529060405280519060200120905061163c848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f54836121c7565b61167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290613923565b60405180910390fd5b600191505092915050565b61168e611ed7565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b600d5481565b600b5481565b6116ce611ed7565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f1935050505015801561172b573d6000803e3d6000fd5b50565b61174983838360405180602001604052806000815250611b66565b505050565b611756611ed7565b80600a8190555050565b611768611ed7565b818160129190611779929190612921565b505050565b611786611ed7565b80600c8190555050565b611798611ed7565b80600b8190555050565b600e60009054906101000a900467ffffffffffffffff1681565b60006117c782611fc1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611835576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61188e611ed7565b61189860006121de565b565b60006118a533612152565b905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118e39061329a565b80601f016020809104026020016040519081016040528092919081815260200182805461190f9061329a565b801561195c5780601f106119315761010080835404028352916020019161195c565b820191906000526020600020905b81548152906001019060200180831161193f57829003601f168201915b5050505050905090565b61196e611ed7565b6009548161197a610d9b565b61198491906133d2565b111561198f57600080fd5b61199933826121a9565b50565b6119a4611ed7565b8060098190555050565b6119b6611fb4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a27611fb4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ad4611fb4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b199190612aac565b60405180910390a35050565b6000611b2f6122a4565b905090565b611b3c611ed7565b80600d8190555050565b600e60089054906101000a900467ffffffffffffffff1681565b600f5481565b611b71848484610db2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bd357611b9c848484846122b7565b611bd2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601160019054906101000a900460ff1681565b611bf4611ed7565b80600f8190555050565b611c06611ed7565b8063ffffffff16600e60086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b6060611c4382611f55565b611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c79906139b5565b60405180910390fd5b6000611c8c612407565b90506000815111611cac5760405180602001604052806000815250611cda565b80611cb684612499565b6010604051602001611cca93929190613aa5565b6040516020818303038152906040525b915050919050565b60108054611cef9061329a565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1b9061329a565b8015611d685780601f10611d3d57610100808354040283529160200191611d68565b820191906000526020600020905b815481529060010190602001808311611d4b57829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e25611ed7565b60095481611e31610d9b565b611e3b91906133d2565b1115611e4657600080fd5b611e5082826121a9565b5050565b611e5c611ed7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec290613b48565b60405180910390fd5b611ed4816121de565b50565b611edf6125f9565b73ffffffffffffffffffffffffffffffffffffffff16611efd6118aa565b73ffffffffffffffffffffffffffffffffffffffff1614611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a90613bb4565b60405180910390fd5b565b600081611f60611fbc565b11158015611f6f575060005482105b8015611fad575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611fd0611fbc565b11612056576000548110156120555760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612053575b6000810361204957600460008360019003935083815260200190815260200160002054905061201f565b8092505050612088565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612110868684612601565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6121c382826040518060200160405280600081525061260a565b5050565b6000826121d485846126a7565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006122ae611fbc565b60005403905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122dd611fb4565b8786866040518563ffffffff1660e01b81526004016122ff9493929190613c29565b6020604051808303816000875af192505050801561233b57506040513d601f19601f820116820180604052508101906123389190613c8a565b60015b6123b4573d806000811461236b576040519150601f19603f3d011682016040523d82523d6000602084013e612370565b606091505b5060008151036123ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546124169061329a565b80601f01602080910402602001604051908101604052809291908181526020018280546124429061329a565b801561248f5780601f106124645761010080835404028352916020019161248f565b820191906000526020600020905b81548152906001019060200180831161247257829003601f168201915b5050505050905090565b6060600082036124e0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125f4565b600082905060005b600082146125125780806124fb90613cb7565b915050600a8261250b9190613d2e565b91506124e8565b60008167ffffffffffffffff81111561252e5761252d613024565b5b6040519080825280601f01601f1916602001820160405280156125605781602001600182028036833780820191505090505b5090505b600085146125ed576001826125799190613d5f565b9150600a856125889190613d93565b603061259491906133d2565b60f81b8183815181106125aa576125a9613dc4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125e69190613d2e565b9450612564565b8093505050505b919050565b600033905090565b60009392505050565b61261483836126fd565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126a257600080549050600083820390505b61265460008683806001019450866122b7565b61268a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061264157816000541461269f57600080fd5b50505b505050565b60008082905060005b84518110156126f2576126dd828683815181106126d0576126cf613dc4565b5b60200260200101516128cf565b915080806126ea90613cb7565b9150506126b0565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612769576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036127a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127b060008483856120f3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128278361281860008660006120f9565b612821856128fa565b17612121565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061284b578060008190555050506128ca600084838561214c565b505050565b60008183106128e7576128e2828461290a565b6128f2565b6128f1838361290a565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b82805461292d9061329a565b90600052602060002090601f01602090048101928261294f5760008555612996565b82601f1061296857803560ff1916838001178555612996565b82800160010185558215612996579182015b8281111561299557823582559160200191906001019061297a565b5b5090506129a391906129a7565b5090565b5b808211156129c05760008160009055506001016129a8565b5090565b6000819050919050565b6129d7816129c4565b82525050565b60006020820190506129f260008301846129ce565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a4181612a0c565b8114612a4c57600080fd5b50565b600081359050612a5e81612a38565b92915050565b600060208284031215612a7a57612a79612a02565b5b6000612a8884828501612a4f565b91505092915050565b60008115159050919050565b612aa681612a91565b82525050565b6000602082019050612ac16000830184612a9d565b92915050565b600063ffffffff82169050919050565b612ae081612ac7565b8114612aeb57600080fd5b50565b600081359050612afd81612ad7565b92915050565b600060208284031215612b1957612b18612a02565b5b6000612b2784828501612aee565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b6a578082015181840152602081019050612b4f565b83811115612b79576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b9b82612b30565b612ba58185612b3b565b9350612bb5818560208601612b4c565b612bbe81612b7f565b840191505092915050565b60006020820190508181036000830152612be38184612b90565b905092915050565b612bf4816129c4565b8114612bff57600080fd5b50565b600081359050612c1181612beb565b92915050565b600060208284031215612c2d57612c2c612a02565b5b6000612c3b84828501612c02565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c6f82612c44565b9050919050565b612c7f81612c64565b82525050565b6000602082019050612c9a6000830184612c76565b92915050565b612ca981612c64565b8114612cb457600080fd5b50565b600081359050612cc681612ca0565b92915050565b60008060408385031215612ce357612ce2612a02565b5b6000612cf185828601612cb7565b9250506020612d0285828601612c02565b9150509250929050565b600080600060608486031215612d2557612d24612a02565b5b6000612d3386828701612cb7565b9350506020612d4486828701612cb7565b9250506040612d5586828701612c02565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612d8457612d83612d5f565b5b8235905067ffffffffffffffff811115612da157612da0612d64565b5b602083019150836020820283011115612dbd57612dbc612d69565b5b9250929050565b600080600060408486031215612ddd57612ddc612a02565b5b600084013567ffffffffffffffff811115612dfb57612dfa612a07565b5b612e0786828701612d6e565b93509350506020612e1a86828701612c02565b9150509250925092565b60008060208385031215612e3b57612e3a612a02565b5b600083013567ffffffffffffffff811115612e5957612e58612a07565b5b612e6585828601612d6e565b92509250509250929050565b60008083601f840112612e8757612e86612d5f565b5b8235905067ffffffffffffffff811115612ea457612ea3612d64565b5b602083019150836001820283011115612ec057612ebf612d69565b5b9250929050565b60008060208385031215612ede57612edd612a02565b5b600083013567ffffffffffffffff811115612efc57612efb612a07565b5b612f0885828601612e71565b92509250509250929050565b600067ffffffffffffffff82169050919050565b612f3181612f14565b82525050565b6000602082019050612f4c6000830184612f28565b92915050565b600060208284031215612f6857612f67612a02565b5b6000612f7684828501612cb7565b91505092915050565b612f8881612a91565b8114612f9357600080fd5b50565b600081359050612fa581612f7f565b92915050565b60008060408385031215612fc257612fc1612a02565b5b6000612fd085828601612cb7565b9250506020612fe185828601612f96565b9150509250929050565b6000819050919050565b612ffe81612feb565b82525050565b60006020820190506130196000830184612ff5565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61305c82612b7f565b810181811067ffffffffffffffff8211171561307b5761307a613024565b5b80604052505050565b600061308e6129f8565b905061309a8282613053565b919050565b600067ffffffffffffffff8211156130ba576130b9613024565b5b6130c382612b7f565b9050602081019050919050565b82818337600083830152505050565b60006130f26130ed8461309f565b613084565b90508281526020810184848401111561310e5761310d61301f565b5b6131198482856130d0565b509392505050565b600082601f83011261313657613135612d5f565b5b81356131468482602086016130df565b91505092915050565b6000806000806080858703121561316957613168612a02565b5b600061317787828801612cb7565b945050602061318887828801612cb7565b935050604061319987828801612c02565b925050606085013567ffffffffffffffff8111156131ba576131b9612a07565b5b6131c687828801613121565b91505092959194509250565b6131db81612feb565b81146131e657600080fd5b50565b6000813590506131f8816131d2565b92915050565b60006020828403121561321457613213612a02565b5b6000613222848285016131e9565b91505092915050565b6000806040838503121561324257613241612a02565b5b600061325085828601612cb7565b925050602061326185828601612cb7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132b257607f821691505b6020821081036132c5576132c461326b565b5b50919050565b7f57686974656c697374206d696e742068617665206265656e2050617573656400600082015250565b6000613301601f83612b3b565b915061330c826132cb565b602082019050919050565b60006020820190508181036000830152613330816132f4565b9050919050565b7f4d696e7420616d6f756e742073686f756c64206265206f766572203000000000600082015250565b600061336d601c83612b3b565b915061337882613337565b602082019050919050565b6000602082019050818103600083015261339c81613360565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133dd826129c4565b91506133e8836129c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561341d5761341c6133a3565b5b828201905092915050565b7f796f752061726520756e61626c6520746f206d696e7420616e796d6f72650000600082015250565b600061345e601e83612b3b565b915061346982613428565b602082019050919050565b6000602082019050818103600083015261348d81613451565b9050919050565b7f697473206e6f742074696d6520666f722077686974656c697374000000000000600082015250565b60006134ca601a83612b3b565b91506134d582613494565b602082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b7f4d6178206d696e7420706572207472616e73616374696f6e206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b600061355c602183612b3b565b915061356782613500565b604082019050919050565b6000602082019050818103600083015261358b8161354f565b9050919050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b60006135c8600d83612b3b565b91506135d382613592565b602082019050919050565b600060208201905081810360008301526135f7816135bb565b9050919050565b6000613609826129c4565b9150613614836129c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561364d5761364c6133a3565b5b828202905092915050565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b600061368e601283612b3b565b915061369982613658565b602082019050919050565b600060208201905081810360008301526136bd81613681565b9050919050565b7f697473206e6f742074696d6520666f72205075626c6963204d696e7400000000600082015250565b60006136fa601c83612b3b565b9150613705826136c4565b602082019050919050565b60006020820190508181036000830152613729816136ed565b9050919050565b7f5075626c6963206d696e74206973207061757365640000000000000000000000600082015250565b6000613766601583612b3b565b915061377182613730565b602082019050919050565b6000602082019050818103600083015261379581613759565b9050919050565b7f4d696e74207174792073686f756c64206265206f766572203000000000000000600082015250565b60006137d2601983612b3b565b91506137dd8261379c565b602082019050919050565b60006020820190508181036000830152613801816137c5565b9050919050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b600061383e601283612b3b565b915061384982613808565b602082019050919050565b6000602082019050818103600083015261386d81613831565b9050919050565b60008160601b9050919050565b600061388c82613874565b9050919050565b600061389e82613881565b9050919050565b6138b66138b182612c64565b613893565b82525050565b60006138c882846138a5565b60148201915081905092915050565b7f496e636f72726563742070726f6f660000000000000000000000000000000000600082015250565b600061390d600f83612b3b565b9150613918826138d7565b602082019050919050565b6000602082019050818103600083015261393c81613900565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061399f602f83612b3b565b91506139aa82613943565b604082019050919050565b600060208201905081810360008301526139ce81613992565b9050919050565b600081905092915050565b60006139eb82612b30565b6139f581856139d5565b9350613a05818560208601612b4c565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613a338161329a565b613a3d81866139d5565b94506001821660008114613a585760018114613a6957613a9c565b60ff19831686528186019350613a9c565b613a7285613a11565b60005b83811015613a9457815481890152600182019150602081019050613a75565b838801955050505b50505092915050565b6000613ab182866139e0565b9150613abd82856139e0565b9150613ac98284613a26565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b32602683612b3b565b9150613b3d82613ad6565b604082019050919050565b60006020820190508181036000830152613b6181613b25565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b9e602083612b3b565b9150613ba982613b68565b602082019050919050565b60006020820190508181036000830152613bcd81613b91565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613bfb82613bd4565b613c058185613bdf565b9350613c15818560208601612b4c565b613c1e81612b7f565b840191505092915050565b6000608082019050613c3e6000830187612c76565b613c4b6020830186612c76565b613c5860408301856129ce565b8181036060830152613c6a8184613bf0565b905095945050505050565b600081519050613c8481612a38565b92915050565b600060208284031215613ca057613c9f612a02565b5b6000613cae84828501613c75565b91505092915050565b6000613cc2826129c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613cf457613cf36133a3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d39826129c4565b9150613d44836129c4565b925082613d5457613d53613cff565b5b828204905092915050565b6000613d6a826129c4565b9150613d75836129c4565b925082821015613d8857613d876133a3565b5b828203905092915050565b6000613d9e826129c4565b9150613da9836129c4565b925082613db957613db8613cff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220faa2acbe29fdf017c886deec285df79eed371968f16d8bfb070d09d7792682a064736f6c634300080e0033

Deployed Bytecode Sourcemap

59612:5144:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59757:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14592:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62674:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62469:90;;;;;;;;;;;;;:::i;:::-;;20239:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22185:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21733:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13646:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31450:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59687:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61080:715;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60407:665;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64142:280;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62567:99;;;;;;;;;;;;;:::i;:::-;;59935:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59806:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64636:117;;;;;;;;;;;;;:::i;:::-;;23075:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61945:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63585:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62199:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62074:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60015:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20028:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15271:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47500:103;;;;;;;;;;;;;:::i;:::-;;64430:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46852:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20408:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62940:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61828:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22461:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64539:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62328:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60052:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60122:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23331:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60241:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63311:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62801:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63721:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60165:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60201:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59886:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22840:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63120:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47758:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59757:40;;;;:::o;14592:615::-;14677:4;14992:10;14977:25;;:11;:25;;;;:102;;;;15069:10;15054:25;;:11;:25;;;;14977:102;:179;;;;15146:10;15131:25;;:11;:25;;;;14977:179;14957:199;;14592:615;;;:::o;62674:119::-;46738:13;:11;:13::i;:::-;62770:15:::1;62753:32;;:14;;:32;;;;;;;;;;;;;;;;;;62674:119:::0;:::o;62469:90::-;46738:13;:11;:13::i;:::-;62538:12:::1;;;;;;;;;;;62537:13;62522:12;;:28;;;;;;;;;;;;;;;;;;62469:90::o:0;20239:100::-;20293:13;20326:5;20319:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20239:100;:::o;22185:204::-;22253:7;22278:16;22286:7;22278;:16::i;:::-;22273:64;;22303:34;;;;;;;;;;;;;;22273:64;22357:15;:24;22373:7;22357:24;;;;;;;;;;;;;;;;;;;;;22350:31;;22185:204;;;:::o;21733:386::-;21806:13;21822:16;21830:7;21822;:16::i;:::-;21806:32;;21878:5;21855:28;;:19;:17;:19::i;:::-;:28;;;21851:175;;21903:44;21920:5;21927:19;:17;:19::i;:::-;21903:16;:44::i;:::-;21898:128;;21975:35;;;;;;;;;;;;;;21898:128;21851:175;22065:2;22038:15;:24;22054:7;22038:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22103:7;22099:2;22083:28;;22092:5;22083:28;;;;;;;;;;;;21795:324;21733:386;;:::o;13646:315::-;13699:7;13927:15;:13;:15::i;:::-;13912:12;;13896:13;;:28;:46;13889:53;;13646:315;:::o;31450:2800::-;31584:27;31614;31633:7;31614:18;:27::i;:::-;31584:57;;31699:4;31658:45;;31674:19;31658:45;;;31654:86;;31712:28;;;;;;;;;;;;;;31654:86;31754:27;31783:23;31810:28;31830:7;31810:19;:28::i;:::-;31753:85;;;;31938:62;31957:15;31974:4;31980:19;:17;:19::i;:::-;31938:18;:62::i;:::-;31933:174;;32020:43;32037:4;32043:19;:17;:19::i;:::-;32020:16;:43::i;:::-;32015:92;;32072:35;;;;;;;;;;;;;;32015:92;31933:174;32138:1;32124:16;;:2;:16;;;32120:52;;32149:23;;;;;;;;;;;;;;32120:52;32185:43;32207:4;32213:2;32217:7;32226:1;32185:21;:43::i;:::-;32321:15;32318:160;;;32461:1;32440:19;32433:30;32318:160;32856:18;:24;32875:4;32856:24;;;;;;;;;;;;;;;;32854:26;;;;;;;;;;;;32925:18;:22;32944:2;32925:22;;;;;;;;;;;;;;;;32923:24;;;;;;;;;;;33247:145;33284:2;33332:45;33347:4;33353:2;33357:19;33332:14;:45::i;:::-;10874:8;33305:72;33247:18;:145::i;:::-;33218:17;:26;33236:7;33218:26;;;;;;;;;;;:174;;;;33562:1;10874:8;33512:19;:46;:51;33508:626;;33584:19;33616:1;33606:7;:11;33584:33;;33773:1;33739:17;:30;33757:11;33739:30;;;;;;;;;;;;:35;33735:384;;33877:13;;33862:11;:28;33858:242;;34057:19;34024:17;:30;34042:11;34024:30;;;;;;;;;;;:52;;;;33858:242;33735:384;33565:569;33508:626;34181:7;34177:2;34162:27;;34171:4;34162:27;;;;;;;;;;;;34200:42;34221:4;34227:2;34231:7;34240:1;34200:20;:42::i;:::-;31573:2677;;;31450:2800;;;:::o;59687:34::-;;;;:::o;61080:715::-;61204:4;61185:23;;:15;;;;;;;;;;;:23;;;61177:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;61268:1;61262:3;:7;61254:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;61356:17;;61349:3;61321:25;61335:10;61321:13;:25::i;:::-;:31;;;;:::i;:::-;:52;;61313:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;61446:1;61426:17;;;;;;;;;;;:21;;;;:62;;;;;61471:17;;;;;;;;;;;61452:36;;:15;:36;;61426:62;61418:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;61544:21;;61537:3;:28;;61529:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;61622:31;61640:12;;61622:17;:31::i;:::-;61614:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;61724:3;61703:18;;:24;;;;:::i;:::-;61690:9;:37;;61682:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61761:26;61771:10;61783:3;61761:9;:26::i;:::-;61080:715;;;:::o;60407:665::-;60493:1;60476:14;;;;;;;;;;;:18;;;;:56;;;;;60518:14;;;;;;;;;;;60499:33;;:15;:33;;60476:56;60468:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;60599:4;60583:20;;:12;;;;;;;;;;;:20;;;60575:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;60653:1;60647:3;:7;60639:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;60710:21;;60703:3;:28;;60695:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;60823:17;;60816:3;60788:25;60802:10;60788:13;:25::i;:::-;:31;;;;:::i;:::-;:52;;60780:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;60916:12;;60909:3;60893:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;;60885:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;61001:3;60983:15;;:21;;;;:::i;:::-;60970:9;:34;;60962:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61038:26;61048:10;61060:3;61038:9;:26::i;:::-;60407:665;:::o;64142:280::-;64223:4;64239:12;64281:10;64264:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;64254:39;;;;;;64239:54;;64312:59;64331:12;;64312:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64345:19;;64366:4;64312:18;:59::i;:::-;64304:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;64409:4;64402:11;;;64142:280;;;;:::o;62567:99::-;46738:13;:11;:13::i;:::-;62642:15:::1;;;;;;;;;;;62641:16;62623:15;;:34;;;;;;;;;;;;;;;;;;62567:99::o:0;59935:43::-;;;;:::o;59806:36::-;;;;:::o;64636:117::-;46738:13;:11;:13::i;:::-;64690:10:::1;64682:28;;:60;64727:4;64711:30;;;64682:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;64636:117::o:0;23075:185::-;23213:39;23230:4;23236:2;23240:7;23213:39;;;;;;;;;;;;:16;:39::i;:::-;23075:185;;;:::o;61945:121::-;46738:13;:11;:13::i;:::-;62044:14:::1;62020:21;:38;;;;61945:121:::0;:::o;63585:102::-;46738:13;:11;:13::i;:::-;63672:7:::1;;63656:13;:23;;;;;;;:::i;:::-;;63585:102:::0;;:::o;62199:121::-;46738:13;:11;:13::i;:::-;62296:16:::1;62278:15;:34;;;;62199:121:::0;:::o;62074:117::-;46738:13;:11;:13::i;:::-;62169:14:::1;62149:17;:34;;;;62074:117:::0;:::o;60015:28::-;;;;;;;;;;;;;:::o;20028:144::-;20092:7;20135:27;20154:7;20135:18;:27::i;:::-;20112:52;;20028:144;;;:::o;15271:224::-;15335:7;15376:1;15359:19;;:5;:19;;;15355:60;;15387:28;;;;;;;;;;;;;;15355:60;9826:13;15433:18;:25;15452:5;15433:25;;;;;;;;;;;;;;;;:54;15426:61;;15271:224;;;:::o;47500:103::-;46738:13;:11;:13::i;:::-;47565:30:::1;47592:1;47565:18;:30::i;:::-;47500:103::o:0;64430:101::-;64474:7;64498:25;64512:10;64498:13;:25::i;:::-;64491:32;;64430:101;:::o;46852:87::-;46898:7;46925:6;;;;;;;;;;;46918:13;;46852:87;:::o;20408:104::-;20464:13;20497:7;20490:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20408:104;:::o;62940:172::-;46738:13;:11;:13::i;:::-;63049:12:::1;;63037:8;63021:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;63013:49;;;::::0;::::1;;63073:31;63083:10;63095:8;63073:9;:31::i;:::-;62940:172:::0;:::o;61828:109::-;46738:13;:11;:13::i;:::-;61916::::1;61901:12;:28;;;;61828:109:::0;:::o;22461:308::-;22572:19;:17;:19::i;:::-;22560:31;;:8;:31;;;22556:61;;22600:17;;;;;;;;;;;;;;22556:61;22682:8;22630:18;:39;22649:19;:17;:19::i;:::-;22630:39;;;;;;;;;;;;;;;:49;22670:8;22630:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;22742:8;22706:55;;22721:19;:17;:19::i;:::-;22706:55;;;22752:8;22706:55;;;;;;:::i;:::-;;;;;;;;22461:308;;:::o;64539:89::-;64582:7;64606:14;:12;:14::i;:::-;64599:21;;64539:89;:::o;62328:133::-;46738:13;:11;:13::i;:::-;62434:19:::1;62413:18;:40;;;;62328:133:::0;:::o;60052:31::-;;;;;;;;;;;;;:::o;60122:34::-;;;;:::o;23331:399::-;23498:31;23511:4;23517:2;23521:7;23498:12;:31::i;:::-;23562:1;23544:2;:14;;;:19;23540:183;;23583:56;23614:4;23620:2;23624:7;23633:5;23583:30;:56::i;:::-;23578:145;;23667:40;;;;;;;;;;;;;;23578:145;23540:183;23331:399;;;;:::o;60241:34::-;;;;;;;;;;;;;:::o;63311:142::-;46738:13;:11;:13::i;:::-;63425:20:::1;63403:19;:42;;;;63311:142:::0;:::o;62801:131::-;46738:13;:11;:13::i;:::-;62906:18:::1;62886:38;;:17;;:38;;;;;;;;;;;;;;;;;;62801:131:::0;:::o;63721:413::-;63829:13;63866:16;63874:7;63866;:16::i;:::-;63858:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;63942:28;63973:10;:8;:10::i;:::-;63942:41;;64030:1;64005:14;63999:28;:32;:127;;;;;;;;;;;;;;;;;64069:14;64085:18;:7;:16;:18::i;:::-;64105:3;64052:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63999:127;63992:134;;;63721:413;;;:::o;60165:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60201:31::-;;;;;;;;;;;;;:::o;59886:40::-;;;;:::o;22840:164::-;22937:4;22961:18;:25;22980:5;22961:25;;;;;;;;;;;;;;;:35;22987:8;22961:35;;;;;;;;;;;;;;;;;;;;;;;;;22954:42;;22840:164;;;;:::o;63120:183::-;46738:13;:11;:13::i;:::-;63246:12:::1;;63232:10;63216:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:42;;63208:51;;;::::0;::::1;;63270:25;63280:2;63284:10;63270:9;:25::i;:::-;63120:183:::0;;:::o;47758:201::-;46738:13;:11;:13::i;:::-;47867:1:::1;47847:22;;:8;:22;;::::0;47839:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47923:28;47942:8;47923:18;:28::i;:::-;47758:201:::0;:::o;47017:132::-;47092:12;:10;:12::i;:::-;47081:23;;:7;:5;:7::i;:::-;:23;;;47073:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47017:132::o;23985:273::-;24042:4;24098:7;24079:15;:13;:15::i;:::-;:26;;:66;;;;;24132:13;;24122:7;:23;24079:66;:152;;;;;24230:1;10596:8;24183:17;:26;24201:7;24183:26;;;;;;;;;;;;:43;:48;24079:152;24059:172;;23985:273;;;:::o;42546:105::-;42606:7;42633:10;42626:17;;42546:105;:::o;13170:92::-;13226:7;13170:92;:::o;16945:1129::-;17012:7;17032:12;17047:7;17032:22;;17115:4;17096:15;:13;:15::i;:::-;:23;17092:915;;17149:13;;17142:4;:20;17138:869;;;17187:14;17204:17;:23;17222:4;17204:23;;;;;;;;;;;;17187:40;;17320:1;10596:8;17293:6;:23;:28;17289:699;;17812:113;17829:1;17819:6;:11;17812:113;;17872:17;:25;17890:6;;;;;;;17872:25;;;;;;;;;;;;17863:34;;17812:113;;;17958:6;17951:13;;;;;;17289:699;17164:843;17138:869;17092:915;18035:31;;;;;;;;;;;;;;16945:1129;;;;:::o;29786:652::-;29881:27;29910:23;29951:53;30007:15;29951:71;;30193:7;30187:4;30180:21;30228:22;30222:4;30215:36;30304:4;30298;30288:21;30265:44;;30400:19;30394:26;30375:45;;30131:300;29786:652;;;:::o;30551:645::-;30693:11;30855:15;30849:4;30845:26;30837:34;;31014:15;31003:9;30999:31;30986:44;;31161:15;31150:9;31147:30;31140:4;31129:9;31126:19;31123:55;31113:65;;30551:645;;;;;:::o;41379:159::-;;;;;:::o;39691:309::-;39826:7;39846:16;10997:3;39872:19;:40;;39846:67;;10997:3;39939:31;39950:4;39956:2;39960:9;39939:10;:31::i;:::-;39931:40;;:61;;39924:68;;;39691:309;;;;;:::o;19519:447::-;19599:14;19767:15;19760:5;19756:27;19747:36;;19941:5;19927:11;19903:22;19899:40;19896:51;19889:5;19886:62;19876:72;;19519:447;;;;:::o;42197:158::-;;;;;:::o;15577:176::-;15638:7;9826:13;9963:2;15666:18;:25;15685:5;15666:25;;;;;;;;;;;;;;;;:49;;15665:80;15658:87;;15577:176;;;:::o;24342:104::-;24411:27;24421:2;24425:8;24411:27;;;;;;;;;;;;:9;:27::i;:::-;24342:104;;:::o;52033:190::-;52158:4;52211;52182:25;52195:5;52202:4;52182:12;:25::i;:::-;:33;52175:40;;52033:190;;;;;:::o;48119:191::-;48193:16;48212:6;;;;;;;;;;;48193:25;;48238:8;48229:6;;:17;;;;;;;;;;;;;;;;;;48293:8;48262:40;;48283:8;48262:40;;;;;;;;;;;;48182:128;48119:191;:::o;14059:285::-;14106:7;14310:15;:13;:15::i;:::-;14294:13;;:31;14287:38;;14059:285;:::o;38201:716::-;38364:4;38410:2;38385:45;;;38431:19;:17;:19::i;:::-;38452:4;38458:7;38467:5;38385:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38381:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38685:1;38668:6;:13;:18;38664:235;;38714:40;;;;;;;;;;;;;;38664:235;38857:6;38851:13;38842:6;38838:2;38834:15;38827:38;38381:529;38554:54;;;38544:64;;;:6;:64;;;;38537:71;;;38201:716;;;;;;:::o;63461:112::-;63521:13;63552;63545:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63461:112;:::o;48747:723::-;48803:13;49033:1;49024:5;:10;49020:53;;49051:10;;;;;;;;;;;;;;;;;;;;;49020:53;49083:12;49098:5;49083:20;;49114:14;49139:78;49154:1;49146:4;:9;49139:78;;49172:8;;;;;:::i;:::-;;;;49203:2;49195:10;;;;;:::i;:::-;;;49139:78;;;49227:19;49259:6;49249:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49227:39;;49277:154;49293:1;49284:5;:10;49277:154;;49321:1;49311:11;;;;;:::i;:::-;;;49388:2;49380:5;:10;;;;:::i;:::-;49367:2;:24;;;;:::i;:::-;49354:39;;49337:6;49344;49337:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;49417:2;49408:11;;;;;:::i;:::-;;;49277:154;;;49455:6;49441:21;;;;;48747:723;;;;:::o;45403:98::-;45456:7;45483:10;45476:17;;45403:98;:::o;40576:147::-;40713:6;40576:147;;;;;:::o;24862:681::-;24985:19;24991:2;24995:8;24985:5;:19::i;:::-;25064:1;25046:2;:14;;;:19;25042:483;;25086:11;25100:13;;25086:27;;25132:13;25154:8;25148:3;:14;25132:30;;25181:233;25212:62;25251:1;25255:2;25259:7;;;;;;25268:5;25212:30;:62::i;:::-;25207:167;;25310:40;;;;;;;;;;;;;;25207:167;25409:3;25401:5;:11;25181:233;;25496:3;25479:13;;:20;25475:34;;25501:8;;;25475:34;25067:458;;25042:483;24862:681;;;:::o;52900:296::-;52983:7;53003:20;53026:4;53003:27;;53046:9;53041:118;53065:5;:12;53061:1;:16;53041:118;;;53114:33;53124:12;53138:5;53144:1;53138:8;;;;;;;;:::i;:::-;;;;;;;;53114:9;:33::i;:::-;53099:48;;53079:3;;;;;:::i;:::-;;;;53041:118;;;;53176:12;53169:19;;;52900:296;;;;:::o;25816:1529::-;25881:20;25904:13;;25881:36;;25946:1;25932:16;;:2;:16;;;25928:48;;25957:19;;;;;;;;;;;;;;25928:48;26003:1;25991:8;:13;25987:44;;26013:18;;;;;;;;;;;;;;25987:44;26044:61;26074:1;26078:2;26082:12;26096:8;26044:21;:61::i;:::-;26587:1;9963:2;26558:1;:25;;26557:31;26545:8;:44;26519:18;:22;26538:2;26519:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;26866:139;26903:2;26957:33;26980:1;26984:2;26988:1;26957:14;:33::i;:::-;26924:30;26945:8;26924:20;:30::i;:::-;:66;26866:18;:139::i;:::-;26832:17;:31;26850:12;26832:31;;;;;;;;;;;:173;;;;27022:15;27040:12;27022:30;;27067:11;27096:8;27081:12;:23;27067:37;;27119:101;27171:9;;;;;;27167:2;27146:35;;27163:1;27146:35;;;;;;;;;;;;27215:3;27205:7;:13;27119:101;;27252:3;27236:13;:19;;;;26293:974;;27277:60;27306:1;27310:2;27314:12;27328:8;27277:20;:60::i;:::-;25870:1475;25816:1529;;:::o;59107:149::-;59170:7;59201:1;59197;:5;:51;;59228:20;59243:1;59246;59228:14;:20::i;:::-;59197:51;;;59205:20;59220:1;59223;59205:14;:20::i;:::-;59197:51;59190:58;;59107:149;;;;:::o;21349:322::-;21419:14;21650:1;21640:8;21637:15;21612:23;21608:45;21598:55;;21349:322;;;:::o;59264:268::-;59332:13;59439:1;59433:4;59426:15;59468:1;59462:4;59455:15;59509:4;59503;59493:21;59484:30;;59264:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:149;805:7;845:66;838:5;834:78;823:89;;769:149;;;:::o;924:120::-;996:23;1013:5;996:23;:::i;:::-;989:5;986:34;976:62;;1034:1;1031;1024:12;976:62;924:120;:::o;1050:137::-;1095:5;1133:6;1120:20;1111:29;;1149:32;1175:5;1149:32;:::i;:::-;1050:137;;;;:::o;1193:327::-;1251:6;1300:2;1288:9;1279:7;1275:23;1271:32;1268:119;;;1306:79;;:::i;:::-;1268:119;1426:1;1451:52;1495:7;1486:6;1475:9;1471:22;1451:52;:::i;:::-;1441:62;;1397:116;1193:327;;;;:::o;1526:90::-;1560:7;1603:5;1596:13;1589:21;1578:32;;1526:90;;;:::o;1622:109::-;1703:21;1718:5;1703:21;:::i;:::-;1698:3;1691:34;1622:109;;:::o;1737:210::-;1824:4;1862:2;1851:9;1847:18;1839:26;;1875:65;1937:1;1926:9;1922:17;1913:6;1875:65;:::i;:::-;1737:210;;;;:::o;1953:93::-;1989:7;2029:10;2022:5;2018:22;2007:33;;1953:93;;;:::o;2052:120::-;2124:23;2141:5;2124:23;:::i;:::-;2117:5;2114:34;2104:62;;2162:1;2159;2152:12;2104:62;2052:120;:::o;2178:137::-;2223:5;2261:6;2248:20;2239:29;;2277:32;2303:5;2277:32;:::i;:::-;2178:137;;;;:::o;2321:327::-;2379:6;2428:2;2416:9;2407:7;2403:23;2399:32;2396:119;;;2434:79;;:::i;:::-;2396:119;2554:1;2579:52;2623:7;2614:6;2603:9;2599:22;2579:52;:::i;:::-;2569:62;;2525:116;2321:327;;;;:::o;2654:99::-;2706:6;2740:5;2734:12;2724:22;;2654:99;;;:::o;2759:169::-;2843:11;2877:6;2872:3;2865:19;2917:4;2912:3;2908:14;2893:29;;2759:169;;;;:::o;2934:307::-;3002:1;3012:113;3026:6;3023:1;3020:13;3012:113;;;3111:1;3106:3;3102:11;3096:18;3092:1;3087:3;3083:11;3076:39;3048:2;3045:1;3041:10;3036:15;;3012:113;;;3143:6;3140:1;3137:13;3134:101;;;3223:1;3214:6;3209:3;3205:16;3198:27;3134:101;2983:258;2934:307;;;:::o;3247:102::-;3288:6;3339:2;3335:7;3330:2;3323:5;3319:14;3315:28;3305:38;;3247:102;;;:::o;3355:364::-;3443:3;3471:39;3504:5;3471:39;:::i;:::-;3526:71;3590:6;3585:3;3526:71;:::i;:::-;3519:78;;3606:52;3651:6;3646:3;3639:4;3632:5;3628:16;3606:52;:::i;:::-;3683:29;3705:6;3683:29;:::i;:::-;3678:3;3674:39;3667:46;;3447:272;3355:364;;;;:::o;3725:313::-;3838:4;3876:2;3865:9;3861:18;3853:26;;3925:9;3919:4;3915:20;3911:1;3900:9;3896:17;3889:47;3953:78;4026:4;4017:6;3953:78;:::i;:::-;3945:86;;3725:313;;;;:::o;4044:122::-;4117:24;4135:5;4117:24;:::i;:::-;4110:5;4107:35;4097:63;;4156:1;4153;4146:12;4097:63;4044:122;:::o;4172:139::-;4218:5;4256:6;4243:20;4234:29;;4272:33;4299:5;4272:33;:::i;:::-;4172:139;;;;:::o;4317:329::-;4376:6;4425:2;4413:9;4404:7;4400:23;4396:32;4393:119;;;4431:79;;:::i;:::-;4393:119;4551:1;4576:53;4621:7;4612:6;4601:9;4597:22;4576:53;:::i;:::-;4566:63;;4522:117;4317:329;;;;:::o;4652:126::-;4689:7;4729:42;4722:5;4718:54;4707:65;;4652:126;;;:::o;4784:96::-;4821:7;4850:24;4868:5;4850:24;:::i;:::-;4839:35;;4784:96;;;:::o;4886:118::-;4973:24;4991:5;4973:24;:::i;:::-;4968:3;4961:37;4886:118;;:::o;5010:222::-;5103:4;5141:2;5130:9;5126:18;5118:26;;5154:71;5222:1;5211:9;5207:17;5198:6;5154:71;:::i;:::-;5010:222;;;;:::o;5238:122::-;5311:24;5329:5;5311:24;:::i;:::-;5304:5;5301:35;5291:63;;5350:1;5347;5340:12;5291:63;5238:122;:::o;5366:139::-;5412:5;5450:6;5437:20;5428:29;;5466:33;5493:5;5466:33;:::i;:::-;5366:139;;;;:::o;5511:474::-;5579:6;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;5511:474;;;;;:::o;5991:619::-;6068:6;6076;6084;6133:2;6121:9;6112:7;6108:23;6104:32;6101:119;;;6139:79;;:::i;:::-;6101:119;6259:1;6284:53;6329:7;6320:6;6309:9;6305:22;6284:53;:::i;:::-;6274:63;;6230:117;6386:2;6412:53;6457:7;6448:6;6437:9;6433:22;6412:53;:::i;:::-;6402:63;;6357:118;6514:2;6540:53;6585:7;6576:6;6565:9;6561:22;6540:53;:::i;:::-;6530:63;;6485:118;5991:619;;;;;:::o;6616:117::-;6725:1;6722;6715:12;6739:117;6848:1;6845;6838:12;6862:117;6971:1;6968;6961:12;7002:568;7075:8;7085:6;7135:3;7128:4;7120:6;7116:17;7112:27;7102:122;;7143:79;;:::i;:::-;7102:122;7256:6;7243:20;7233:30;;7286:18;7278:6;7275:30;7272:117;;;7308:79;;:::i;:::-;7272:117;7422:4;7414:6;7410:17;7398:29;;7476:3;7468:4;7460:6;7456:17;7446:8;7442:32;7439:41;7436:128;;;7483:79;;:::i;:::-;7436:128;7002:568;;;;;:::o;7576:704::-;7671:6;7679;7687;7736:2;7724:9;7715:7;7711:23;7707:32;7704:119;;;7742:79;;:::i;:::-;7704:119;7890:1;7879:9;7875:17;7862:31;7920:18;7912:6;7909:30;7906:117;;;7942:79;;:::i;:::-;7906:117;8055:80;8127:7;8118:6;8107:9;8103:22;8055:80;:::i;:::-;8037:98;;;;7833:312;8184:2;8210:53;8255:7;8246:6;8235:9;8231:22;8210:53;:::i;:::-;8200:63;;8155:118;7576:704;;;;;:::o;8286:559::-;8372:6;8380;8429:2;8417:9;8408:7;8404:23;8400:32;8397:119;;;8435:79;;:::i;:::-;8397:119;8583:1;8572:9;8568:17;8555:31;8613:18;8605:6;8602:30;8599:117;;;8635:79;;:::i;:::-;8599:117;8748:80;8820:7;8811:6;8800:9;8796:22;8748:80;:::i;:::-;8730:98;;;;8526:312;8286:559;;;;;:::o;8865:553::-;8923:8;8933:6;8983:3;8976:4;8968:6;8964:17;8960:27;8950:122;;8991:79;;:::i;:::-;8950:122;9104:6;9091:20;9081:30;;9134:18;9126:6;9123:30;9120:117;;;9156:79;;:::i;:::-;9120:117;9270:4;9262:6;9258:17;9246:29;;9324:3;9316:4;9308:6;9304:17;9294:8;9290:32;9287:41;9284:128;;;9331:79;;:::i;:::-;9284:128;8865:553;;;;;:::o;9424:529::-;9495:6;9503;9552:2;9540:9;9531:7;9527:23;9523:32;9520:119;;;9558:79;;:::i;:::-;9520:119;9706:1;9695:9;9691:17;9678:31;9736:18;9728:6;9725:30;9722:117;;;9758:79;;:::i;:::-;9722:117;9871:65;9928:7;9919:6;9908:9;9904:22;9871:65;:::i;:::-;9853:83;;;;9649:297;9424:529;;;;;:::o;9959:101::-;9995:7;10035:18;10028:5;10024:30;10013:41;;9959:101;;;:::o;10066:115::-;10151:23;10168:5;10151:23;:::i;:::-;10146:3;10139:36;10066:115;;:::o;10187:218::-;10278:4;10316:2;10305:9;10301:18;10293:26;;10329:69;10395:1;10384:9;10380:17;10371:6;10329:69;:::i;:::-;10187:218;;;;:::o;10411:329::-;10470:6;10519:2;10507:9;10498:7;10494:23;10490:32;10487:119;;;10525:79;;:::i;:::-;10487:119;10645:1;10670:53;10715:7;10706:6;10695:9;10691:22;10670:53;:::i;:::-;10660:63;;10616:117;10411:329;;;;:::o;10746:116::-;10816:21;10831:5;10816:21;:::i;:::-;10809:5;10806:32;10796:60;;10852:1;10849;10842:12;10796:60;10746:116;:::o;10868:133::-;10911:5;10949:6;10936:20;10927:29;;10965:30;10989:5;10965:30;:::i;:::-;10868:133;;;;:::o;11007:468::-;11072:6;11080;11129:2;11117:9;11108:7;11104:23;11100:32;11097:119;;;11135:79;;:::i;:::-;11097:119;11255:1;11280:53;11325:7;11316:6;11305:9;11301:22;11280:53;:::i;:::-;11270:63;;11226:117;11382:2;11408:50;11450:7;11441:6;11430:9;11426:22;11408:50;:::i;:::-;11398:60;;11353:115;11007:468;;;;;:::o;11481:77::-;11518:7;11547:5;11536:16;;11481:77;;;:::o;11564:118::-;11651:24;11669:5;11651:24;:::i;:::-;11646:3;11639:37;11564:118;;:::o;11688:222::-;11781:4;11819:2;11808:9;11804:18;11796:26;;11832:71;11900:1;11889:9;11885:17;11876:6;11832:71;:::i;:::-;11688:222;;;;:::o;11916:117::-;12025:1;12022;12015:12;12039:180;12087:77;12084:1;12077:88;12184:4;12181:1;12174:15;12208:4;12205:1;12198:15;12225:281;12308:27;12330:4;12308:27;:::i;:::-;12300:6;12296:40;12438:6;12426:10;12423:22;12402:18;12390:10;12387:34;12384:62;12381:88;;;12449:18;;:::i;:::-;12381:88;12489:10;12485:2;12478:22;12268:238;12225:281;;:::o;12512:129::-;12546:6;12573:20;;:::i;:::-;12563:30;;12602:33;12630:4;12622:6;12602:33;:::i;:::-;12512:129;;;:::o;12647:307::-;12708:4;12798:18;12790:6;12787:30;12784:56;;;12820:18;;:::i;:::-;12784:56;12858:29;12880:6;12858:29;:::i;:::-;12850:37;;12942:4;12936;12932:15;12924:23;;12647:307;;;:::o;12960:154::-;13044:6;13039:3;13034;13021:30;13106:1;13097:6;13092:3;13088:16;13081:27;12960:154;;;:::o;13120:410::-;13197:5;13222:65;13238:48;13279:6;13238:48;:::i;:::-;13222:65;:::i;:::-;13213:74;;13310:6;13303:5;13296:21;13348:4;13341:5;13337:16;13386:3;13377:6;13372:3;13368:16;13365:25;13362:112;;;13393:79;;:::i;:::-;13362:112;13483:41;13517:6;13512:3;13507;13483:41;:::i;:::-;13203:327;13120:410;;;;;:::o;13549:338::-;13604:5;13653:3;13646:4;13638:6;13634:17;13630:27;13620:122;;13661:79;;:::i;:::-;13620:122;13778:6;13765:20;13803:78;13877:3;13869:6;13862:4;13854:6;13850:17;13803:78;:::i;:::-;13794:87;;13610:277;13549:338;;;;:::o;13893:943::-;13988:6;13996;14004;14012;14061:3;14049:9;14040:7;14036:23;14032:33;14029:120;;;14068:79;;:::i;:::-;14029:120;14188:1;14213:53;14258:7;14249:6;14238:9;14234:22;14213:53;:::i;:::-;14203:63;;14159:117;14315:2;14341:53;14386:7;14377:6;14366:9;14362:22;14341:53;:::i;:::-;14331:63;;14286:118;14443:2;14469:53;14514:7;14505:6;14494:9;14490:22;14469:53;:::i;:::-;14459:63;;14414:118;14599:2;14588:9;14584:18;14571:32;14630:18;14622:6;14619:30;14616:117;;;14652:79;;:::i;:::-;14616:117;14757:62;14811:7;14802:6;14791:9;14787:22;14757:62;:::i;:::-;14747:72;;14542:287;13893:943;;;;;;;:::o;14842:122::-;14915:24;14933:5;14915:24;:::i;:::-;14908:5;14905:35;14895:63;;14954:1;14951;14944:12;14895:63;14842:122;:::o;14970:139::-;15016:5;15054:6;15041:20;15032:29;;15070:33;15097:5;15070:33;:::i;:::-;14970:139;;;;:::o;15115:329::-;15174:6;15223:2;15211:9;15202:7;15198:23;15194:32;15191:119;;;15229:79;;:::i;:::-;15191:119;15349:1;15374:53;15419:7;15410:6;15399:9;15395:22;15374:53;:::i;:::-;15364:63;;15320:117;15115:329;;;;:::o;15450:474::-;15518:6;15526;15575:2;15563:9;15554:7;15550:23;15546:32;15543:119;;;15581:79;;:::i;:::-;15543:119;15701:1;15726:53;15771:7;15762:6;15751:9;15747:22;15726:53;:::i;:::-;15716:63;;15672:117;15828:2;15854:53;15899:7;15890:6;15879:9;15875:22;15854:53;:::i;:::-;15844:63;;15799:118;15450:474;;;;;:::o;15930:180::-;15978:77;15975:1;15968:88;16075:4;16072:1;16065:15;16099:4;16096:1;16089:15;16116:320;16160:6;16197:1;16191:4;16187:12;16177:22;;16244:1;16238:4;16234:12;16265:18;16255:81;;16321:4;16313:6;16309:17;16299:27;;16255:81;16383:2;16375:6;16372:14;16352:18;16349:38;16346:84;;16402:18;;:::i;:::-;16346:84;16167:269;16116:320;;;:::o;16442:181::-;16582:33;16578:1;16570:6;16566:14;16559:57;16442:181;:::o;16629:366::-;16771:3;16792:67;16856:2;16851:3;16792:67;:::i;:::-;16785:74;;16868:93;16957:3;16868:93;:::i;:::-;16986:2;16981:3;16977:12;16970:19;;16629:366;;;:::o;17001:419::-;17167:4;17205:2;17194:9;17190:18;17182:26;;17254:9;17248:4;17244:20;17240:1;17229:9;17225:17;17218:47;17282:131;17408:4;17282:131;:::i;:::-;17274:139;;17001:419;;;:::o;17426:178::-;17566:30;17562:1;17554:6;17550:14;17543:54;17426:178;:::o;17610:366::-;17752:3;17773:67;17837:2;17832:3;17773:67;:::i;:::-;17766:74;;17849:93;17938:3;17849:93;:::i;:::-;17967:2;17962:3;17958:12;17951:19;;17610:366;;;:::o;17982:419::-;18148:4;18186:2;18175:9;18171:18;18163:26;;18235:9;18229:4;18225:20;18221:1;18210:9;18206:17;18199:47;18263:131;18389:4;18263:131;:::i;:::-;18255:139;;17982:419;;;:::o;18407:180::-;18455:77;18452:1;18445:88;18552:4;18549:1;18542:15;18576:4;18573:1;18566:15;18593:305;18633:3;18652:20;18670:1;18652:20;:::i;:::-;18647:25;;18686:20;18704:1;18686:20;:::i;:::-;18681:25;;18840:1;18772:66;18768:74;18765:1;18762:81;18759:107;;;18846:18;;:::i;:::-;18759:107;18890:1;18887;18883:9;18876:16;;18593:305;;;;:::o;18904:180::-;19044:32;19040:1;19032:6;19028:14;19021:56;18904:180;:::o;19090:366::-;19232:3;19253:67;19317:2;19312:3;19253:67;:::i;:::-;19246:74;;19329:93;19418:3;19329:93;:::i;:::-;19447:2;19442:3;19438:12;19431:19;;19090:366;;;:::o;19462:419::-;19628:4;19666:2;19655:9;19651:18;19643:26;;19715:9;19709:4;19705:20;19701:1;19690:9;19686:17;19679:47;19743:131;19869:4;19743:131;:::i;:::-;19735:139;;19462:419;;;:::o;19887:176::-;20027:28;20023:1;20015:6;20011:14;20004:52;19887:176;:::o;20069:366::-;20211:3;20232:67;20296:2;20291:3;20232:67;:::i;:::-;20225:74;;20308:93;20397:3;20308:93;:::i;:::-;20426:2;20421:3;20417:12;20410:19;;20069:366;;;:::o;20441:419::-;20607:4;20645:2;20634:9;20630:18;20622:26;;20694:9;20688:4;20684:20;20680:1;20669:9;20665:17;20658:47;20722:131;20848:4;20722:131;:::i;:::-;20714:139;;20441:419;;;:::o;20866:220::-;21006:34;21002:1;20994:6;20990:14;20983:58;21075:3;21070:2;21062:6;21058:15;21051:28;20866:220;:::o;21092:366::-;21234:3;21255:67;21319:2;21314:3;21255:67;:::i;:::-;21248:74;;21331:93;21420:3;21331:93;:::i;:::-;21449:2;21444:3;21440:12;21433:19;;21092:366;;;:::o;21464:419::-;21630:4;21668:2;21657:9;21653:18;21645:26;;21717:9;21711:4;21707:20;21703:1;21692:9;21688:17;21681:47;21745:131;21871:4;21745:131;:::i;:::-;21737:139;;21464:419;;;:::o;21889:163::-;22029:15;22025:1;22017:6;22013:14;22006:39;21889:163;:::o;22058:366::-;22200:3;22221:67;22285:2;22280:3;22221:67;:::i;:::-;22214:74;;22297:93;22386:3;22297:93;:::i;:::-;22415:2;22410:3;22406:12;22399:19;;22058:366;;;:::o;22430:419::-;22596:4;22634:2;22623:9;22619:18;22611:26;;22683:9;22677:4;22673:20;22669:1;22658:9;22654:17;22647:47;22711:131;22837:4;22711:131;:::i;:::-;22703:139;;22430:419;;;:::o;22855:348::-;22895:7;22918:20;22936:1;22918:20;:::i;:::-;22913:25;;22952:20;22970:1;22952:20;:::i;:::-;22947:25;;23140:1;23072:66;23068:74;23065:1;23062:81;23057:1;23050:9;23043:17;23039:105;23036:131;;;23147:18;;:::i;:::-;23036:131;23195:1;23192;23188:9;23177:20;;22855:348;;;;:::o;23209:168::-;23349:20;23345:1;23337:6;23333:14;23326:44;23209:168;:::o;23383:366::-;23525:3;23546:67;23610:2;23605:3;23546:67;:::i;:::-;23539:74;;23622:93;23711:3;23622:93;:::i;:::-;23740:2;23735:3;23731:12;23724:19;;23383:366;;;:::o;23755:419::-;23921:4;23959:2;23948:9;23944:18;23936:26;;24008:9;24002:4;23998:20;23994:1;23983:9;23979:17;23972:47;24036:131;24162:4;24036:131;:::i;:::-;24028:139;;23755:419;;;:::o;24180:178::-;24320:30;24316:1;24308:6;24304:14;24297:54;24180:178;:::o;24364:366::-;24506:3;24527:67;24591:2;24586:3;24527:67;:::i;:::-;24520:74;;24603:93;24692:3;24603:93;:::i;:::-;24721:2;24716:3;24712:12;24705:19;;24364:366;;;:::o;24736:419::-;24902:4;24940:2;24929:9;24925:18;24917:26;;24989:9;24983:4;24979:20;24975:1;24964:9;24960:17;24953:47;25017:131;25143:4;25017:131;:::i;:::-;25009:139;;24736:419;;;:::o;25161:171::-;25301:23;25297:1;25289:6;25285:14;25278:47;25161:171;:::o;25338:366::-;25480:3;25501:67;25565:2;25560:3;25501:67;:::i;:::-;25494:74;;25577:93;25666:3;25577:93;:::i;:::-;25695:2;25690:3;25686:12;25679:19;;25338:366;;;:::o;25710:419::-;25876:4;25914:2;25903:9;25899:18;25891:26;;25963:9;25957:4;25953:20;25949:1;25938:9;25934:17;25927:47;25991:131;26117:4;25991:131;:::i;:::-;25983:139;;25710:419;;;:::o;26135:175::-;26275:27;26271:1;26263:6;26259:14;26252:51;26135:175;:::o;26316:366::-;26458:3;26479:67;26543:2;26538:3;26479:67;:::i;:::-;26472:74;;26555:93;26644:3;26555:93;:::i;:::-;26673:2;26668:3;26664:12;26657:19;;26316:366;;;:::o;26688:419::-;26854:4;26892:2;26881:9;26877:18;26869:26;;26941:9;26935:4;26931:20;26927:1;26916:9;26912:17;26905:47;26969:131;27095:4;26969:131;:::i;:::-;26961:139;;26688:419;;;:::o;27113:168::-;27253:20;27249:1;27241:6;27237:14;27230:44;27113:168;:::o;27287:366::-;27429:3;27450:67;27514:2;27509:3;27450:67;:::i;:::-;27443:74;;27526:93;27615:3;27526:93;:::i;:::-;27644:2;27639:3;27635:12;27628:19;;27287:366;;;:::o;27659:419::-;27825:4;27863:2;27852:9;27848:18;27840:26;;27912:9;27906:4;27902:20;27898:1;27887:9;27883:17;27876:47;27940:131;28066:4;27940:131;:::i;:::-;27932:139;;27659:419;;;:::o;28084:94::-;28117:8;28165:5;28161:2;28157:14;28136:35;;28084:94;;;:::o;28184:::-;28223:7;28252:20;28266:5;28252:20;:::i;:::-;28241:31;;28184:94;;;:::o;28284:100::-;28323:7;28352:26;28372:5;28352:26;:::i;:::-;28341:37;;28284:100;;;:::o;28390:157::-;28495:45;28515:24;28533:5;28515:24;:::i;:::-;28495:45;:::i;:::-;28490:3;28483:58;28390:157;;:::o;28553:256::-;28665:3;28680:75;28751:3;28742:6;28680:75;:::i;:::-;28780:2;28775:3;28771:12;28764:19;;28800:3;28793:10;;28553:256;;;;:::o;28815:165::-;28955:17;28951:1;28943:6;28939:14;28932:41;28815:165;:::o;28986:366::-;29128:3;29149:67;29213:2;29208:3;29149:67;:::i;:::-;29142:74;;29225:93;29314:3;29225:93;:::i;:::-;29343:2;29338:3;29334:12;29327:19;;28986:366;;;:::o;29358:419::-;29524:4;29562:2;29551:9;29547:18;29539:26;;29611:9;29605:4;29601:20;29597:1;29586:9;29582:17;29575:47;29639:131;29765:4;29639:131;:::i;:::-;29631:139;;29358:419;;;:::o;29783:234::-;29923:34;29919:1;29911:6;29907:14;29900:58;29992:17;29987:2;29979:6;29975:15;29968:42;29783:234;:::o;30023:366::-;30165:3;30186:67;30250:2;30245:3;30186:67;:::i;:::-;30179:74;;30262:93;30351:3;30262:93;:::i;:::-;30380:2;30375:3;30371:12;30364:19;;30023:366;;;:::o;30395:419::-;30561:4;30599:2;30588:9;30584:18;30576:26;;30648:9;30642:4;30638:20;30634:1;30623:9;30619:17;30612:47;30676:131;30802:4;30676:131;:::i;:::-;30668:139;;30395:419;;;:::o;30820:148::-;30922:11;30959:3;30944:18;;30820:148;;;;:::o;30974:377::-;31080:3;31108:39;31141:5;31108:39;:::i;:::-;31163:89;31245:6;31240:3;31163:89;:::i;:::-;31156:96;;31261:52;31306:6;31301:3;31294:4;31287:5;31283:16;31261:52;:::i;:::-;31338:6;31333:3;31329:16;31322:23;;31084:267;30974:377;;;;:::o;31357:141::-;31406:4;31429:3;31421:11;;31452:3;31449:1;31442:14;31486:4;31483:1;31473:18;31465:26;;31357:141;;;:::o;31528:845::-;31631:3;31668:5;31662:12;31697:36;31723:9;31697:36;:::i;:::-;31749:89;31831:6;31826:3;31749:89;:::i;:::-;31742:96;;31869:1;31858:9;31854:17;31885:1;31880:137;;;;32031:1;32026:341;;;;31847:520;;31880:137;31964:4;31960:9;31949;31945:25;31940:3;31933:38;32000:6;31995:3;31991:16;31984:23;;31880:137;;32026:341;32093:38;32125:5;32093:38;:::i;:::-;32153:1;32167:154;32181:6;32178:1;32175:13;32167:154;;;32255:7;32249:14;32245:1;32240:3;32236:11;32229:35;32305:1;32296:7;32292:15;32281:26;;32203:4;32200:1;32196:12;32191:17;;32167:154;;;32350:6;32345:3;32341:16;32334:23;;32033:334;;31847:520;;31635:738;;31528:845;;;;:::o;32379:589::-;32604:3;32626:95;32717:3;32708:6;32626:95;:::i;:::-;32619:102;;32738:95;32829:3;32820:6;32738:95;:::i;:::-;32731:102;;32850:92;32938:3;32929:6;32850:92;:::i;:::-;32843:99;;32959:3;32952:10;;32379:589;;;;;;:::o;32974:225::-;33114:34;33110:1;33102:6;33098:14;33091:58;33183:8;33178:2;33170:6;33166:15;33159:33;32974:225;:::o;33205:366::-;33347:3;33368:67;33432:2;33427:3;33368:67;:::i;:::-;33361:74;;33444:93;33533:3;33444:93;:::i;:::-;33562:2;33557:3;33553:12;33546:19;;33205:366;;;:::o;33577:419::-;33743:4;33781:2;33770:9;33766:18;33758:26;;33830:9;33824:4;33820:20;33816:1;33805:9;33801:17;33794:47;33858:131;33984:4;33858:131;:::i;:::-;33850:139;;33577:419;;;:::o;34002:182::-;34142:34;34138:1;34130:6;34126:14;34119:58;34002:182;:::o;34190:366::-;34332:3;34353:67;34417:2;34412:3;34353:67;:::i;:::-;34346:74;;34429:93;34518:3;34429:93;:::i;:::-;34547:2;34542:3;34538:12;34531:19;;34190:366;;;:::o;34562:419::-;34728:4;34766:2;34755:9;34751:18;34743:26;;34815:9;34809:4;34805:20;34801:1;34790:9;34786:17;34779:47;34843:131;34969:4;34843:131;:::i;:::-;34835:139;;34562:419;;;:::o;34987:98::-;35038:6;35072:5;35066:12;35056:22;;34987:98;;;:::o;35091:168::-;35174:11;35208:6;35203:3;35196:19;35248:4;35243:3;35239:14;35224:29;;35091:168;;;;:::o;35265:360::-;35351:3;35379:38;35411:5;35379:38;:::i;:::-;35433:70;35496:6;35491:3;35433:70;:::i;:::-;35426:77;;35512:52;35557:6;35552:3;35545:4;35538:5;35534:16;35512:52;:::i;:::-;35589:29;35611:6;35589:29;:::i;:::-;35584:3;35580:39;35573:46;;35355:270;35265:360;;;;:::o;35631:640::-;35826:4;35864:3;35853:9;35849:19;35841:27;;35878:71;35946:1;35935:9;35931:17;35922:6;35878:71;:::i;:::-;35959:72;36027:2;36016:9;36012:18;36003:6;35959:72;:::i;:::-;36041;36109:2;36098:9;36094:18;36085:6;36041:72;:::i;:::-;36160:9;36154:4;36150:20;36145:2;36134:9;36130:18;36123:48;36188:76;36259:4;36250:6;36188:76;:::i;:::-;36180:84;;35631:640;;;;;;;:::o;36277:141::-;36333:5;36364:6;36358:13;36349:22;;36380:32;36406:5;36380:32;:::i;:::-;36277:141;;;;:::o;36424:349::-;36493:6;36542:2;36530:9;36521:7;36517:23;36513:32;36510:119;;;36548:79;;:::i;:::-;36510:119;36668:1;36693:63;36748:7;36739:6;36728:9;36724:22;36693:63;:::i;:::-;36683:73;;36639:127;36424:349;;;;:::o;36779:233::-;36818:3;36841:24;36859:5;36841:24;:::i;:::-;36832:33;;36887:66;36880:5;36877:77;36874:103;;36957:18;;:::i;:::-;36874:103;37004:1;36997:5;36993:13;36986:20;;36779:233;;;:::o;37018:180::-;37066:77;37063:1;37056:88;37163:4;37160:1;37153:15;37187:4;37184:1;37177:15;37204:185;37244:1;37261:20;37279:1;37261:20;:::i;:::-;37256:25;;37295:20;37313:1;37295:20;:::i;:::-;37290:25;;37334:1;37324:35;;37339:18;;:::i;:::-;37324:35;37381:1;37378;37374:9;37369:14;;37204:185;;;;:::o;37395:191::-;37435:4;37455:20;37473:1;37455:20;:::i;:::-;37450:25;;37489:20;37507:1;37489:20;:::i;:::-;37484:25;;37528:1;37525;37522:8;37519:34;;;37533:18;;:::i;:::-;37519:34;37578:1;37575;37571:9;37563:17;;37395:191;;;;:::o;37592:176::-;37624:1;37641:20;37659:1;37641:20;:::i;:::-;37636:25;;37675:20;37693:1;37675:20;:::i;:::-;37670:25;;37714:1;37704:35;;37719:18;;:::i;:::-;37704:35;37760:1;37757;37753:9;37748:14;;37592:176;;;;:::o;37774:180::-;37822:77;37819:1;37812:88;37919:4;37916:1;37909:15;37943:4;37940:1;37933:15

Swarm Source

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