ETH Price: $3,512.18 (+0.36%)
Gas: 6 Gwei

Token

Angels vs Devils Yacht Club (AVSDYC)
 

Overview

Max Total Supply

4,042 AVSDYC

Holders

278

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
18 AVSDYC
0x6a2c76a3115bd04249f9fd35b2c334f46116d25c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AVSDYC

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/AVSDYC.sol



pragma solidity ^0.8.0;




    
contract AVSDYC is ERC721A, Ownable, ReentrancyGuard {
    bytes32 public merkleRoot =0xceb83600b12d1e6c5a43ed069544f8df503408a301e0d7b331a25dbaf3933447;
    bool public isMintingStart  = false;
    uint256 public pricePublic = 5000000000000000;
    uint256 public pricespiritlist = 3000000000000000;
    string public baseURI;  
    uint256 public maxPerTransaction = 20;  
    uint256 public maxSupply = 6666;
    uint256 public teamSupply = 0;  
    uint256 public mintSupply = 6666;
    uint256 public freespiritlist = 0;
    mapping (address => uint256) public walletPublic;
    mapping (address => uint256) public walletspiritlist ;
    constructor() ERC721A("Angels vs Devils Yacht Club", "AVSDYC"){}

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

    function publicMint(uint256 qty) external payable
    {
        require(isMintingStart , "AVSDYC isMintingStart Not Open Yet !");
        require(qty <= maxPerTransaction, "AVSDYC Max Per Max Per Transaction !");
        require(totalSupply() + qty <= mintSupply,"AVSDYC Soldout !");
        require(msg.value >= qty * pricePublic,"AVSDYC Insufficient Funds !");
        walletPublic[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }

    function spiritlistMint(uint256 qty, bytes32[] calldata _merkleProof) external payable
    { 
        require(isMintingStart, "AVSDYC isMintingStart Not Open Yet !");
        if(walletspiritlist[msg.sender] < freespiritlist) 
        {
           uint256 claimFree = qty - freespiritlist;
           require(msg.value >= claimFree * pricespiritlist,"AVSDYC Insufficient Eth");
        }
        else
        {
           require(msg.value >= qty * pricespiritlist,"AVSDYC Insufficient Eth");
        }
        require(qty <= maxPerTransaction, "AVSDYC Max Per Max Per Transaction !");
        require(totalSupply() + qty <= maxSupply,"AVSDYC Soldout !");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "AVSDYC Not spiritlist");
        walletspiritlist[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

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

    function airdrop(address[] memory listedAirdrop ,uint256[] memory qty) external onlyOwner {
        for (uint256 i = 0; i < listedAirdrop.length; i++) {
           _safeMint(listedAirdrop[i], qty[i]);
        }
    }

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

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

    function setPricePublic(uint256 price_) external onlyOwner {
        pricePublic = price_;
    }

    function setPricespiritlist(uint256 pricespiritlist_) external onlyOwner {
        pricespiritlist = pricespiritlist_;
    }

    function setmaxPerTransaction(uint256 maxPerTransaction_) external onlyOwner {
        maxPerTransaction = maxPerTransaction_;
    }

    function setMintSupply(uint256 mintSupply_) external onlyOwner {
        mintSupply = mintSupply_;
    }

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

    function setfreespiritlist(uint256 freespiritlist_) external onlyOwner {
        freespiritlist = freespiritlist_;
    }

    function setWalletMint(address addr_) external onlyOwner {
        walletPublic[addr_] = 0;
        walletspiritlist[addr_] = 0;
    }

    function setMerkleRoot(bytes32 root) external onlyOwner {
        merkleRoot = root;
    }

    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":"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":[{"internalType":"address[]","name":"listedAirdrop","type":"address[]"},{"internalType":"uint256[]","name":"qty","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freespiritlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintingStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricespiritlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintSupply_","type":"uint256"}],"name":"setMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pricespiritlist_","type":"uint256"}],"name":"setPricespiritlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicisMintingStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTeam_","type":"uint256"}],"name":"setTeamSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"}],"name":"setWalletMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freespiritlist_","type":"uint256"}],"name":"setfreespiritlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTransaction_","type":"uint256"}],"name":"setmaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"spiritlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletspiritlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527fceb83600b12d1e6c5a43ed069544f8df503408a301e0d7b331a25dbaf393344760001b600a556000600b60006101000a81548160ff0219169083151502179055506611c37937e08000600c55660aa87bee538000600d556014600f55611a0a6010556000601155611a0a60125560006013553480156200008457600080fd5b506040518060400160405280601b81526020017f416e67656c7320767320446576696c7320596163687420436c756200000000008152506040518060400160405280600681526020017f41565344594300000000000000000000000000000000000000000000000000008152508160029081620001029190620004ac565b508060039081620001149190620004ac565b50620001256200015b60201b60201c565b60008190555050506200014d620001416200016460201b60201c565b6200016c60201b60201c565b600160098190555062000593565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002b457607f821691505b602082108103620002ca57620002c96200026c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002f5565b620003408683620002f5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200038d62000387620003818462000358565b62000362565b62000358565b9050919050565b6000819050919050565b620003a9836200036c565b620003c1620003b88262000394565b84845462000302565b825550505050565b600090565b620003d8620003c9565b620003e58184846200039e565b505050565b5b818110156200040d5762000401600082620003ce565b600181019050620003eb565b5050565b601f8211156200045c576200042681620002d0565b6200043184620002e5565b8101602085101562000441578190505b620004596200045085620002e5565b830182620003ea565b50505b505050565b600082821c905092915050565b6000620004816000198460080262000461565b1980831691505092915050565b60006200049c83836200046e565b9150826002028217905092915050565b620004b78262000232565b67ffffffffffffffff811115620004d357620004d26200023d565b5b620004df82546200029b565b620004ec82828562000411565b600060209050601f8311600181146200052457600084156200050f578287015190505b6200051b85826200048e565b8655506200058b565b601f1984166200053486620002d0565b60005b828110156200055e5784890151825560018201915060208501945060208101905062000537565b868310156200057e57848901516200057a601f8916826200046e565b8355505b6001600288020188555050505b505050505050565b6139ee80620005a36000396000f3fe6080604052600436106102725760003560e01c80635ff0c75b1161014f5780638f5dd154116100c1578063d5abeb011161007a578063d5abeb01146108c4578063d7758a52146108ef578063dc33e6811461092c578063e985e9c514610969578063f2fde38b146109a6578063f8f103dd146109cf57610272565b80638f5dd154146107c557806395d89b41146107ee578063a22cb46514610819578063ac568e8414610842578063b88d4fde1461086b578063c87b56dd1461088757610272565b806370a082311161011357806370a08231146106db578063715018a61461071857806376cc322d1461072f5780637cb6475914610746578063864573c91461076f5780638da5cb5b1461079a57610272565b80635ff0c75b146105f45780636352211e1461061f578063672434821461065c57806367ce63c4146106855780636c0360eb146106b057610272565b80632be905ba116101e85780633ccfd60b116101ac5780633ccfd60b1461051b57806342842e0e146105325780634530a8321461054e5780634b980d671461057757806355f804b3146105a25780635f5a4c85146105cb57610272565b80632be905ba146104435780632cfac6ec146104805780632db11544146104ab5780632eb4a7ab146104c75780632fbba115146104f257610272565b8063095ea7b31161023a578063095ea7b3146103705780630fc387c21461038c578063102e766d146103a8578063108bfbfa146103d357806318160ddd146103fc57806323b872dd1461042757610272565b806301ffc9a714610277578063045b7dca146102b457806306f9ae43146102df57806306fdde0314610308578063081812fc14610333575b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061268f565b6109f8565b6040516102ab91906126d7565b60405180910390f35b3480156102c057600080fd5b506102c9610a8a565b6040516102d6919061270b565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612784565b610a90565b005b34801561031457600080fd5b5061031d610b25565b60405161032a9190612841565b60405180910390f35b34801561033f57600080fd5b5061035a6004803603810190610355919061288f565b610bb7565b60405161036791906128cb565b60405180910390f35b61038a600480360381019061038591906128e6565b610c36565b005b6103a660048036038101906103a1919061298b565b610d7a565b005b3480156103b457600080fd5b506103bd611085565b6040516103ca919061270b565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f5919061288f565b61108b565b005b34801561040857600080fd5b5061041161109d565b60405161041e919061270b565b60405180910390f35b610441600480360381019061043c91906129eb565b6110b4565b005b34801561044f57600080fd5b5061046a60048036038101906104659190612784565b6113d6565b604051610477919061270b565b60405180910390f35b34801561048c57600080fd5b506104956113ee565b6040516104a2919061270b565b60405180910390f35b6104c560048036038101906104c0919061288f565b6113f4565b005b3480156104d357600080fd5b506104dc611592565b6040516104e99190612a57565b60405180910390f35b3480156104fe57600080fd5b506105196004803603810190610514919061288f565b611598565b005b34801561052757600080fd5b506105306115ad565b005b61054c600480360381019061054791906129eb565b611615565b005b34801561055a57600080fd5b506105756004803603810190610570919061288f565b611635565b005b34801561058357600080fd5b5061058c611647565b604051610599919061270b565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190612ba2565b61164d565b005b3480156105d757600080fd5b506105f260048036038101906105ed919061288f565b611668565b005b34801561060057600080fd5b5061060961167a565b60405161061691906126d7565b60405180910390f35b34801561062b57600080fd5b506106466004803603810190610641919061288f565b61168d565b60405161065391906128cb565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190612d71565b61169f565b005b34801561069157600080fd5b5061069a611709565b6040516106a7919061270b565b60405180910390f35b3480156106bc57600080fd5b506106c561170f565b6040516106d29190612841565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190612784565b61179d565b60405161070f919061270b565b60405180910390f35b34801561072457600080fd5b5061072d611855565b005b34801561073b57600080fd5b50610744611869565b005b34801561075257600080fd5b5061076d60048036038101906107689190612e15565b61189d565b005b34801561077b57600080fd5b506107846118af565b604051610791919061270b565b60405180910390f35b3480156107a657600080fd5b506107af6118b5565b6040516107bc91906128cb565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e7919061288f565b6118df565b005b3480156107fa57600080fd5b506108036118f1565b6040516108109190612841565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190612e6e565b611983565b005b34801561084e57600080fd5b506108696004803603810190610864919061288f565b611a8e565b005b61088560048036038101906108809190612f4f565b611aa0565b005b34801561089357600080fd5b506108ae60048036038101906108a9919061288f565b611b13565b6040516108bb9190612841565b60405180910390f35b3480156108d057600080fd5b506108d9611bb1565b6040516108e6919061270b565b60405180910390f35b3480156108fb57600080fd5b5061091660048036038101906109119190612784565b611bb7565b604051610923919061270b565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190612784565b611bcf565b604051610960919061270b565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190612fd2565b611be1565b60405161099d91906126d7565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190612784565b611c75565b005b3480156109db57600080fd5b506109f660048036038101906109f1919061288f565b611cf8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a835750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60125481565b610a98611d0a565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b606060028054610b3490613041565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6090613041565b8015610bad5780601f10610b8257610100808354040283529160200191610bad565b820191906000526020600020905b815481529060010190602001808311610b9057829003601f168201915b5050505050905090565b6000610bc282611d88565b610bf8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c418261168d565b90508073ffffffffffffffffffffffffffffffffffffffff16610c62611de7565b73ffffffffffffffffffffffffffffffffffffffff1614610cc557610c8e81610c89611de7565b611be1565b610cc4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b60009054906101000a900460ff16610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc0906130e4565b60405180910390fd5b601354601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610e7a57600060135484610e229190613133565b9050600d5481610e329190613167565b341015610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b906131f5565b60405180910390fd5b50610ecb565b600d5483610e889190613167565b341015610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec1906131f5565b60405180910390fd5b5b600f54831115610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790613287565b60405180910390fd5b60105483610f1c61109d565b610f2691906132a7565b1115610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e90613327565b60405180910390fd5b600033604051602001610f7a919061338f565b604051602081830303815290604052805190602001209050610fe0838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483611def565b61101f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611016906133f6565b60405180910390fd5b83601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461106e91906132a7565b9250508190555061107f3385611e06565b50505050565b600c5481565b611093611d0a565b80600f8190555050565b60006110a7611e24565b6001546000540303905090565b60006110bf82611e2d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611126576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061113284611ef9565b915091506111488187611143611de7565b611f20565b6111945761115d86611158611de7565b611be1565b611193576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036111fa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112078686866001611f64565b801561121257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112e0856112bc888887611f6a565b7c020000000000000000000000000000000000000000000000000000000017611f92565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036113665760006001850190506000600460008381526020019081526020016000205403611364576000548114611363578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113ce8686866001611fbd565b505050505050565b60146020528060005260406000206000915090505481565b60115481565b600b60009054906101000a900460ff16611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a906130e4565b60405180910390fd5b600f54811115611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90613287565b60405180910390fd5b6012548161149461109d565b61149e91906132a7565b11156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690613327565b60405180910390fd5b600c54816114ed9190613167565b34101561152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613462565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461157e91906132a7565b9250508190555061158f3382611e06565b50565b600a5481565b6115a0611d0a565b6115aa3382611e06565b50565b6115b5611d0a565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611612573d6000803e3d6000fd5b50565b61163083838360405180602001604052806000815250611aa0565b505050565b61163d611d0a565b80600c8190555050565b600f5481565b611655611d0a565b80600e9081611664919061362e565b5050565b611670611d0a565b8060138190555050565b600b60009054906101000a900460ff1681565b600061169882611e2d565b9050919050565b6116a7611d0a565b60005b8251811015611704576116f18382815181106116c9576116c8613700565b5b60200260200101518383815181106116e4576116e3613700565b5b6020026020010151611e06565b80806116fc9061372f565b9150506116aa565b505050565b60135481565b600e805461171c90613041565b80601f016020809104026020016040519081016040528092919081815260200182805461174890613041565b80156117955780601f1061176a57610100808354040283529160200191611795565b820191906000526020600020905b81548152906001019060200180831161177857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611804576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61185d611d0a565b6118676000611fc3565b565b611871611d0a565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6118a5611d0a565b80600a8190555050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118e7611d0a565b80600d8190555050565b60606003805461190090613041565b80601f016020809104026020016040519081016040528092919081815260200182805461192c90613041565b80156119795780601f1061194e57610100808354040283529160200191611979565b820191906000526020600020905b81548152906001019060200180831161195c57829003601f168201915b5050505050905090565b8060076000611990611de7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a3d611de7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a8291906126d7565b60405180910390a35050565b611a96611d0a565b8060128190555050565b611aab8484846110b4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b0d57611ad684848484612089565b611b0c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b1e82611d88565b611b54576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b5e6121d9565b90506000815103611b7e5760405180602001604052806000815250611ba9565b80611b888461226b565b604051602001611b999291906137b3565b6040516020818303038152906040525b915050919050565b60105481565b60156020528060005260406000206000915090505481565b6000611bda826122bb565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c7d611d0a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce390613849565b60405180910390fd5b611cf581611fc3565b50565b611d00611d0a565b8060118190555050565b611d12612312565b73ffffffffffffffffffffffffffffffffffffffff16611d306118b5565b73ffffffffffffffffffffffffffffffffffffffff1614611d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7d906138b5565b60405180910390fd5b565b600081611d93611e24565b11158015611da2575060005482105b8015611de0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600082611dfc858461231a565b1490509392505050565b611e20828260405180602001604052806000815250612370565b5050565b60006001905090565b60008082905080611e3c611e24565b11611ec257600054811015611ec15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ebf575b60008103611eb5576004600083600190039350838152602001908152602001600020549050611e8b565b8092505050611ef4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f8186868461240d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120af611de7565b8786866040518563ffffffff1660e01b81526004016120d1949392919061392a565b6020604051808303816000875af192505050801561210d57506040513d601f19601f8201168201806040525081019061210a919061398b565b60015b612186573d806000811461213d576040519150601f19603f3d011682016040523d82523d6000602084013e612142565b606091505b50600081510361217e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546121e890613041565b80601f016020809104026020016040519081016040528092919081815260200182805461221490613041565b80156122615780601f1061223657610100808354040283529160200191612261565b820191906000526020600020905b81548152906001019060200180831161224457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156122a657600184039350600a81066030018453600a8104905080612284575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008082905060005b8451811015612365576123508286838151811061234357612342613700565b5b6020026020010151612416565b9150808061235d9061372f565b915050612323565b508091505092915050565b61237a8383612441565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461240857600080549050600083820390505b6123ba6000868380600101945086612089565b6123f0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123a757816000541461240557600080fd5b50505b505050565b60009392505050565b600081831061242e5761242982846125fc565b612439565b61243883836125fc565b5b905092915050565b60008054905060008203612481576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61248e6000848385611f64565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612505836124f66000866000611f6a565b6124ff85612613565b17611f92565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125a657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061256b565b50600082036125e1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125f76000848385611fbd565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61266c81612637565b811461267757600080fd5b50565b60008135905061268981612663565b92915050565b6000602082840312156126a5576126a461262d565b5b60006126b38482850161267a565b91505092915050565b60008115159050919050565b6126d1816126bc565b82525050565b60006020820190506126ec60008301846126c8565b92915050565b6000819050919050565b612705816126f2565b82525050565b600060208201905061272060008301846126fc565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061275182612726565b9050919050565b61276181612746565b811461276c57600080fd5b50565b60008135905061277e81612758565b92915050565b60006020828403121561279a5761279961262d565b5b60006127a88482850161276f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127eb5780820151818401526020810190506127d0565b60008484015250505050565b6000601f19601f8301169050919050565b6000612813826127b1565b61281d81856127bc565b935061282d8185602086016127cd565b612836816127f7565b840191505092915050565b6000602082019050818103600083015261285b8184612808565b905092915050565b61286c816126f2565b811461287757600080fd5b50565b60008135905061288981612863565b92915050565b6000602082840312156128a5576128a461262d565b5b60006128b38482850161287a565b91505092915050565b6128c581612746565b82525050565b60006020820190506128e060008301846128bc565b92915050565b600080604083850312156128fd576128fc61262d565b5b600061290b8582860161276f565b925050602061291c8582860161287a565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261294b5761294a612926565b5b8235905067ffffffffffffffff8111156129685761296761292b565b5b60208301915083602082028301111561298457612983612930565b5b9250929050565b6000806000604084860312156129a4576129a361262d565b5b60006129b28682870161287a565b935050602084013567ffffffffffffffff8111156129d3576129d2612632565b5b6129df86828701612935565b92509250509250925092565b600080600060608486031215612a0457612a0361262d565b5b6000612a128682870161276f565b9350506020612a238682870161276f565b9250506040612a348682870161287a565b9150509250925092565b6000819050919050565b612a5181612a3e565b82525050565b6000602082019050612a6c6000830184612a48565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612aaf826127f7565b810181811067ffffffffffffffff82111715612ace57612acd612a77565b5b80604052505050565b6000612ae1612623565b9050612aed8282612aa6565b919050565b600067ffffffffffffffff821115612b0d57612b0c612a77565b5b612b16826127f7565b9050602081019050919050565b82818337600083830152505050565b6000612b45612b4084612af2565b612ad7565b905082815260208101848484011115612b6157612b60612a72565b5b612b6c848285612b23565b509392505050565b600082601f830112612b8957612b88612926565b5b8135612b99848260208601612b32565b91505092915050565b600060208284031215612bb857612bb761262d565b5b600082013567ffffffffffffffff811115612bd657612bd5612632565b5b612be284828501612b74565b91505092915050565b600067ffffffffffffffff821115612c0657612c05612a77565b5b602082029050602081019050919050565b6000612c2a612c2584612beb565b612ad7565b90508083825260208201905060208402830185811115612c4d57612c4c612930565b5b835b81811015612c765780612c62888261276f565b845260208401935050602081019050612c4f565b5050509392505050565b600082601f830112612c9557612c94612926565b5b8135612ca5848260208601612c17565b91505092915050565b600067ffffffffffffffff821115612cc957612cc8612a77565b5b602082029050602081019050919050565b6000612ced612ce884612cae565b612ad7565b90508083825260208201905060208402830185811115612d1057612d0f612930565b5b835b81811015612d395780612d25888261287a565b845260208401935050602081019050612d12565b5050509392505050565b600082601f830112612d5857612d57612926565b5b8135612d68848260208601612cda565b91505092915050565b60008060408385031215612d8857612d8761262d565b5b600083013567ffffffffffffffff811115612da657612da5612632565b5b612db285828601612c80565b925050602083013567ffffffffffffffff811115612dd357612dd2612632565b5b612ddf85828601612d43565b9150509250929050565b612df281612a3e565b8114612dfd57600080fd5b50565b600081359050612e0f81612de9565b92915050565b600060208284031215612e2b57612e2a61262d565b5b6000612e3984828501612e00565b91505092915050565b612e4b816126bc565b8114612e5657600080fd5b50565b600081359050612e6881612e42565b92915050565b60008060408385031215612e8557612e8461262d565b5b6000612e938582860161276f565b9250506020612ea485828601612e59565b9150509250929050565b600067ffffffffffffffff821115612ec957612ec8612a77565b5b612ed2826127f7565b9050602081019050919050565b6000612ef2612eed84612eae565b612ad7565b905082815260208101848484011115612f0e57612f0d612a72565b5b612f19848285612b23565b509392505050565b600082601f830112612f3657612f35612926565b5b8135612f46848260208601612edf565b91505092915050565b60008060008060808587031215612f6957612f6861262d565b5b6000612f778782880161276f565b9450506020612f888782880161276f565b9350506040612f998782880161287a565b925050606085013567ffffffffffffffff811115612fba57612fb9612632565b5b612fc687828801612f21565b91505092959194509250565b60008060408385031215612fe957612fe861262d565b5b6000612ff78582860161276f565b92505060206130088582860161276f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305957607f821691505b60208210810361306c5761306b613012565b5b50919050565b7f4156534459432069734d696e74696e675374617274204e6f74204f70656e205960008201527f6574202100000000000000000000000000000000000000000000000000000000602082015250565b60006130ce6024836127bc565b91506130d982613072565b604082019050919050565b600060208201905081810360008301526130fd816130c1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061313e826126f2565b9150613149836126f2565b925082820390508181111561316157613160613104565b5b92915050565b6000613172826126f2565b915061317d836126f2565b925082820261318b816126f2565b915082820484148315176131a2576131a1613104565b5b5092915050565b7f41565344594320496e73756666696369656e7420457468000000000000000000600082015250565b60006131df6017836127bc565b91506131ea826131a9565b602082019050919050565b6000602082019050818103600083015261320e816131d2565b9050919050565b7f415653445943204d617820506572204d617820506572205472616e736163746960008201527f6f6e202100000000000000000000000000000000000000000000000000000000602082015250565b60006132716024836127bc565b915061327c82613215565b604082019050919050565b600060208201905081810360008301526132a081613264565b9050919050565b60006132b2826126f2565b91506132bd836126f2565b92508282019050808211156132d5576132d4613104565b5b92915050565b7f41565344594320536f6c646f7574202100000000000000000000000000000000600082015250565b60006133116010836127bc565b915061331c826132db565b602082019050919050565b6000602082019050818103600083015261334081613304565b9050919050565b60008160601b9050919050565b600061335f82613347565b9050919050565b600061337182613354565b9050919050565b61338961338482612746565b613366565b82525050565b600061339b8284613378565b60148201915081905092915050565b7f415653445943204e6f74207370697269746c6973740000000000000000000000600082015250565b60006133e06015836127bc565b91506133eb826133aa565b602082019050919050565b6000602082019050818103600083015261340f816133d3565b9050919050565b7f41565344594320496e73756666696369656e742046756e647320210000000000600082015250565b600061344c601b836127bc565b915061345782613416565b602082019050919050565b6000602082019050818103600083015261347b8161343f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134a7565b6134ee86836134a7565b95508019841693508086168417925050509392505050565b6000819050919050565b600061352b613526613521846126f2565b613506565b6126f2565b9050919050565b6000819050919050565b61354583613510565b61355961355182613532565b8484546134b4565b825550505050565b600090565b61356e613561565b61357981848461353c565b505050565b5b8181101561359d57613592600082613566565b60018101905061357f565b5050565b601f8211156135e2576135b381613482565b6135bc84613497565b810160208510156135cb578190505b6135df6135d785613497565b83018261357e565b50505b505050565b600082821c905092915050565b6000613605600019846008026135e7565b1980831691505092915050565b600061361e83836135f4565b9150826002028217905092915050565b613637826127b1565b67ffffffffffffffff8111156136505761364f612a77565b5b61365a8254613041565b6136658282856135a1565b600060209050601f8311600181146136985760008415613686578287015190505b6136908582613612565b8655506136f8565b601f1984166136a686613482565b60005b828110156136ce578489015182556001820191506020850194506020810190506136a9565b868310156136eb57848901516136e7601f8916826135f4565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061373a826126f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361376c5761376b613104565b5b600182019050919050565b600081905092915050565b600061378d826127b1565b6137978185613777565b93506137a78185602086016127cd565b80840191505092915050565b60006137bf8285613782565b91506137cb8284613782565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138336026836127bc565b915061383e826137d7565b604082019050919050565b6000602082019050818103600083015261386281613826565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061389f6020836127bc565b91506138aa82613869565b602082019050919050565b600060208201905081810360008301526138ce81613892565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006138fc826138d5565b61390681856138e0565b93506139168185602086016127cd565b61391f816127f7565b840191505092915050565b600060808201905061393f60008301876128bc565b61394c60208301866128bc565b61395960408301856126fc565b818103606083015261396b81846138f1565b905095945050505050565b60008151905061398581612663565b92915050565b6000602082840312156139a1576139a061262d565b5b60006139af84828501613976565b9150509291505056fea2646970667358221220b368bc7db74c0f5457ee75ade55973d13492a196b1236caacc854b52f4a42f1564736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102725760003560e01c80635ff0c75b1161014f5780638f5dd154116100c1578063d5abeb011161007a578063d5abeb01146108c4578063d7758a52146108ef578063dc33e6811461092c578063e985e9c514610969578063f2fde38b146109a6578063f8f103dd146109cf57610272565b80638f5dd154146107c557806395d89b41146107ee578063a22cb46514610819578063ac568e8414610842578063b88d4fde1461086b578063c87b56dd1461088757610272565b806370a082311161011357806370a08231146106db578063715018a61461071857806376cc322d1461072f5780637cb6475914610746578063864573c91461076f5780638da5cb5b1461079a57610272565b80635ff0c75b146105f45780636352211e1461061f578063672434821461065c57806367ce63c4146106855780636c0360eb146106b057610272565b80632be905ba116101e85780633ccfd60b116101ac5780633ccfd60b1461051b57806342842e0e146105325780634530a8321461054e5780634b980d671461057757806355f804b3146105a25780635f5a4c85146105cb57610272565b80632be905ba146104435780632cfac6ec146104805780632db11544146104ab5780632eb4a7ab146104c75780632fbba115146104f257610272565b8063095ea7b31161023a578063095ea7b3146103705780630fc387c21461038c578063102e766d146103a8578063108bfbfa146103d357806318160ddd146103fc57806323b872dd1461042757610272565b806301ffc9a714610277578063045b7dca146102b457806306f9ae43146102df57806306fdde0314610308578063081812fc14610333575b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061268f565b6109f8565b6040516102ab91906126d7565b60405180910390f35b3480156102c057600080fd5b506102c9610a8a565b6040516102d6919061270b565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612784565b610a90565b005b34801561031457600080fd5b5061031d610b25565b60405161032a9190612841565b60405180910390f35b34801561033f57600080fd5b5061035a6004803603810190610355919061288f565b610bb7565b60405161036791906128cb565b60405180910390f35b61038a600480360381019061038591906128e6565b610c36565b005b6103a660048036038101906103a1919061298b565b610d7a565b005b3480156103b457600080fd5b506103bd611085565b6040516103ca919061270b565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f5919061288f565b61108b565b005b34801561040857600080fd5b5061041161109d565b60405161041e919061270b565b60405180910390f35b610441600480360381019061043c91906129eb565b6110b4565b005b34801561044f57600080fd5b5061046a60048036038101906104659190612784565b6113d6565b604051610477919061270b565b60405180910390f35b34801561048c57600080fd5b506104956113ee565b6040516104a2919061270b565b60405180910390f35b6104c560048036038101906104c0919061288f565b6113f4565b005b3480156104d357600080fd5b506104dc611592565b6040516104e99190612a57565b60405180910390f35b3480156104fe57600080fd5b506105196004803603810190610514919061288f565b611598565b005b34801561052757600080fd5b506105306115ad565b005b61054c600480360381019061054791906129eb565b611615565b005b34801561055a57600080fd5b506105756004803603810190610570919061288f565b611635565b005b34801561058357600080fd5b5061058c611647565b604051610599919061270b565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190612ba2565b61164d565b005b3480156105d757600080fd5b506105f260048036038101906105ed919061288f565b611668565b005b34801561060057600080fd5b5061060961167a565b60405161061691906126d7565b60405180910390f35b34801561062b57600080fd5b506106466004803603810190610641919061288f565b61168d565b60405161065391906128cb565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190612d71565b61169f565b005b34801561069157600080fd5b5061069a611709565b6040516106a7919061270b565b60405180910390f35b3480156106bc57600080fd5b506106c561170f565b6040516106d29190612841565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190612784565b61179d565b60405161070f919061270b565b60405180910390f35b34801561072457600080fd5b5061072d611855565b005b34801561073b57600080fd5b50610744611869565b005b34801561075257600080fd5b5061076d60048036038101906107689190612e15565b61189d565b005b34801561077b57600080fd5b506107846118af565b604051610791919061270b565b60405180910390f35b3480156107a657600080fd5b506107af6118b5565b6040516107bc91906128cb565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e7919061288f565b6118df565b005b3480156107fa57600080fd5b506108036118f1565b6040516108109190612841565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190612e6e565b611983565b005b34801561084e57600080fd5b506108696004803603810190610864919061288f565b611a8e565b005b61088560048036038101906108809190612f4f565b611aa0565b005b34801561089357600080fd5b506108ae60048036038101906108a9919061288f565b611b13565b6040516108bb9190612841565b60405180910390f35b3480156108d057600080fd5b506108d9611bb1565b6040516108e6919061270b565b60405180910390f35b3480156108fb57600080fd5b5061091660048036038101906109119190612784565b611bb7565b604051610923919061270b565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190612784565b611bcf565b604051610960919061270b565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190612fd2565b611be1565b60405161099d91906126d7565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190612784565b611c75565b005b3480156109db57600080fd5b506109f660048036038101906109f1919061288f565b611cf8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a835750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60125481565b610a98611d0a565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b606060028054610b3490613041565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6090613041565b8015610bad5780601f10610b8257610100808354040283529160200191610bad565b820191906000526020600020905b815481529060010190602001808311610b9057829003601f168201915b5050505050905090565b6000610bc282611d88565b610bf8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c418261168d565b90508073ffffffffffffffffffffffffffffffffffffffff16610c62611de7565b73ffffffffffffffffffffffffffffffffffffffff1614610cc557610c8e81610c89611de7565b611be1565b610cc4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b60009054906101000a900460ff16610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc0906130e4565b60405180910390fd5b601354601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610e7a57600060135484610e229190613133565b9050600d5481610e329190613167565b341015610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b906131f5565b60405180910390fd5b50610ecb565b600d5483610e889190613167565b341015610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec1906131f5565b60405180910390fd5b5b600f54831115610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790613287565b60405180910390fd5b60105483610f1c61109d565b610f2691906132a7565b1115610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e90613327565b60405180910390fd5b600033604051602001610f7a919061338f565b604051602081830303815290604052805190602001209050610fe0838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483611def565b61101f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611016906133f6565b60405180910390fd5b83601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461106e91906132a7565b9250508190555061107f3385611e06565b50505050565b600c5481565b611093611d0a565b80600f8190555050565b60006110a7611e24565b6001546000540303905090565b60006110bf82611e2d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611126576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061113284611ef9565b915091506111488187611143611de7565b611f20565b6111945761115d86611158611de7565b611be1565b611193576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036111fa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112078686866001611f64565b801561121257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112e0856112bc888887611f6a565b7c020000000000000000000000000000000000000000000000000000000017611f92565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036113665760006001850190506000600460008381526020019081526020016000205403611364576000548114611363578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113ce8686866001611fbd565b505050505050565b60146020528060005260406000206000915090505481565b60115481565b600b60009054906101000a900460ff16611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a906130e4565b60405180910390fd5b600f54811115611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90613287565b60405180910390fd5b6012548161149461109d565b61149e91906132a7565b11156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690613327565b60405180910390fd5b600c54816114ed9190613167565b34101561152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613462565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461157e91906132a7565b9250508190555061158f3382611e06565b50565b600a5481565b6115a0611d0a565b6115aa3382611e06565b50565b6115b5611d0a565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611612573d6000803e3d6000fd5b50565b61163083838360405180602001604052806000815250611aa0565b505050565b61163d611d0a565b80600c8190555050565b600f5481565b611655611d0a565b80600e9081611664919061362e565b5050565b611670611d0a565b8060138190555050565b600b60009054906101000a900460ff1681565b600061169882611e2d565b9050919050565b6116a7611d0a565b60005b8251811015611704576116f18382815181106116c9576116c8613700565b5b60200260200101518383815181106116e4576116e3613700565b5b6020026020010151611e06565b80806116fc9061372f565b9150506116aa565b505050565b60135481565b600e805461171c90613041565b80601f016020809104026020016040519081016040528092919081815260200182805461174890613041565b80156117955780601f1061176a57610100808354040283529160200191611795565b820191906000526020600020905b81548152906001019060200180831161177857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611804576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61185d611d0a565b6118676000611fc3565b565b611871611d0a565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6118a5611d0a565b80600a8190555050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118e7611d0a565b80600d8190555050565b60606003805461190090613041565b80601f016020809104026020016040519081016040528092919081815260200182805461192c90613041565b80156119795780601f1061194e57610100808354040283529160200191611979565b820191906000526020600020905b81548152906001019060200180831161195c57829003601f168201915b5050505050905090565b8060076000611990611de7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a3d611de7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a8291906126d7565b60405180910390a35050565b611a96611d0a565b8060128190555050565b611aab8484846110b4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b0d57611ad684848484612089565b611b0c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b1e82611d88565b611b54576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b5e6121d9565b90506000815103611b7e5760405180602001604052806000815250611ba9565b80611b888461226b565b604051602001611b999291906137b3565b6040516020818303038152906040525b915050919050565b60105481565b60156020528060005260406000206000915090505481565b6000611bda826122bb565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c7d611d0a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce390613849565b60405180910390fd5b611cf581611fc3565b50565b611d00611d0a565b8060118190555050565b611d12612312565b73ffffffffffffffffffffffffffffffffffffffff16611d306118b5565b73ffffffffffffffffffffffffffffffffffffffff1614611d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7d906138b5565b60405180910390fd5b565b600081611d93611e24565b11158015611da2575060005482105b8015611de0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600082611dfc858461231a565b1490509392505050565b611e20828260405180602001604052806000815250612370565b5050565b60006001905090565b60008082905080611e3c611e24565b11611ec257600054811015611ec15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ebf575b60008103611eb5576004600083600190039350838152602001908152602001600020549050611e8b565b8092505050611ef4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f8186868461240d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120af611de7565b8786866040518563ffffffff1660e01b81526004016120d1949392919061392a565b6020604051808303816000875af192505050801561210d57506040513d601f19601f8201168201806040525081019061210a919061398b565b60015b612186573d806000811461213d576040519150601f19603f3d011682016040523d82523d6000602084013e612142565b606091505b50600081510361217e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546121e890613041565b80601f016020809104026020016040519081016040528092919081815260200182805461221490613041565b80156122615780601f1061223657610100808354040283529160200191612261565b820191906000526020600020905b81548152906001019060200180831161224457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156122a657600184039350600a81066030018453600a8104905080612284575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008082905060005b8451811015612365576123508286838151811061234357612342613700565b5b6020026020010151612416565b9150808061235d9061372f565b915050612323565b508091505092915050565b61237a8383612441565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461240857600080549050600083820390505b6123ba6000868380600101945086612089565b6123f0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123a757816000541461240557600080fd5b50505b505050565b60009392505050565b600081831061242e5761242982846125fc565b612439565b61243883836125fc565b5b905092915050565b60008054905060008203612481576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61248e6000848385611f64565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612505836124f66000866000611f6a565b6124ff85612613565b17611f92565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125a657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061256b565b50600082036125e1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125f76000848385611fbd565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61266c81612637565b811461267757600080fd5b50565b60008135905061268981612663565b92915050565b6000602082840312156126a5576126a461262d565b5b60006126b38482850161267a565b91505092915050565b60008115159050919050565b6126d1816126bc565b82525050565b60006020820190506126ec60008301846126c8565b92915050565b6000819050919050565b612705816126f2565b82525050565b600060208201905061272060008301846126fc565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061275182612726565b9050919050565b61276181612746565b811461276c57600080fd5b50565b60008135905061277e81612758565b92915050565b60006020828403121561279a5761279961262d565b5b60006127a88482850161276f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127eb5780820151818401526020810190506127d0565b60008484015250505050565b6000601f19601f8301169050919050565b6000612813826127b1565b61281d81856127bc565b935061282d8185602086016127cd565b612836816127f7565b840191505092915050565b6000602082019050818103600083015261285b8184612808565b905092915050565b61286c816126f2565b811461287757600080fd5b50565b60008135905061288981612863565b92915050565b6000602082840312156128a5576128a461262d565b5b60006128b38482850161287a565b91505092915050565b6128c581612746565b82525050565b60006020820190506128e060008301846128bc565b92915050565b600080604083850312156128fd576128fc61262d565b5b600061290b8582860161276f565b925050602061291c8582860161287a565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261294b5761294a612926565b5b8235905067ffffffffffffffff8111156129685761296761292b565b5b60208301915083602082028301111561298457612983612930565b5b9250929050565b6000806000604084860312156129a4576129a361262d565b5b60006129b28682870161287a565b935050602084013567ffffffffffffffff8111156129d3576129d2612632565b5b6129df86828701612935565b92509250509250925092565b600080600060608486031215612a0457612a0361262d565b5b6000612a128682870161276f565b9350506020612a238682870161276f565b9250506040612a348682870161287a565b9150509250925092565b6000819050919050565b612a5181612a3e565b82525050565b6000602082019050612a6c6000830184612a48565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612aaf826127f7565b810181811067ffffffffffffffff82111715612ace57612acd612a77565b5b80604052505050565b6000612ae1612623565b9050612aed8282612aa6565b919050565b600067ffffffffffffffff821115612b0d57612b0c612a77565b5b612b16826127f7565b9050602081019050919050565b82818337600083830152505050565b6000612b45612b4084612af2565b612ad7565b905082815260208101848484011115612b6157612b60612a72565b5b612b6c848285612b23565b509392505050565b600082601f830112612b8957612b88612926565b5b8135612b99848260208601612b32565b91505092915050565b600060208284031215612bb857612bb761262d565b5b600082013567ffffffffffffffff811115612bd657612bd5612632565b5b612be284828501612b74565b91505092915050565b600067ffffffffffffffff821115612c0657612c05612a77565b5b602082029050602081019050919050565b6000612c2a612c2584612beb565b612ad7565b90508083825260208201905060208402830185811115612c4d57612c4c612930565b5b835b81811015612c765780612c62888261276f565b845260208401935050602081019050612c4f565b5050509392505050565b600082601f830112612c9557612c94612926565b5b8135612ca5848260208601612c17565b91505092915050565b600067ffffffffffffffff821115612cc957612cc8612a77565b5b602082029050602081019050919050565b6000612ced612ce884612cae565b612ad7565b90508083825260208201905060208402830185811115612d1057612d0f612930565b5b835b81811015612d395780612d25888261287a565b845260208401935050602081019050612d12565b5050509392505050565b600082601f830112612d5857612d57612926565b5b8135612d68848260208601612cda565b91505092915050565b60008060408385031215612d8857612d8761262d565b5b600083013567ffffffffffffffff811115612da657612da5612632565b5b612db285828601612c80565b925050602083013567ffffffffffffffff811115612dd357612dd2612632565b5b612ddf85828601612d43565b9150509250929050565b612df281612a3e565b8114612dfd57600080fd5b50565b600081359050612e0f81612de9565b92915050565b600060208284031215612e2b57612e2a61262d565b5b6000612e3984828501612e00565b91505092915050565b612e4b816126bc565b8114612e5657600080fd5b50565b600081359050612e6881612e42565b92915050565b60008060408385031215612e8557612e8461262d565b5b6000612e938582860161276f565b9250506020612ea485828601612e59565b9150509250929050565b600067ffffffffffffffff821115612ec957612ec8612a77565b5b612ed2826127f7565b9050602081019050919050565b6000612ef2612eed84612eae565b612ad7565b905082815260208101848484011115612f0e57612f0d612a72565b5b612f19848285612b23565b509392505050565b600082601f830112612f3657612f35612926565b5b8135612f46848260208601612edf565b91505092915050565b60008060008060808587031215612f6957612f6861262d565b5b6000612f778782880161276f565b9450506020612f888782880161276f565b9350506040612f998782880161287a565b925050606085013567ffffffffffffffff811115612fba57612fb9612632565b5b612fc687828801612f21565b91505092959194509250565b60008060408385031215612fe957612fe861262d565b5b6000612ff78582860161276f565b92505060206130088582860161276f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305957607f821691505b60208210810361306c5761306b613012565b5b50919050565b7f4156534459432069734d696e74696e675374617274204e6f74204f70656e205960008201527f6574202100000000000000000000000000000000000000000000000000000000602082015250565b60006130ce6024836127bc565b91506130d982613072565b604082019050919050565b600060208201905081810360008301526130fd816130c1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061313e826126f2565b9150613149836126f2565b925082820390508181111561316157613160613104565b5b92915050565b6000613172826126f2565b915061317d836126f2565b925082820261318b816126f2565b915082820484148315176131a2576131a1613104565b5b5092915050565b7f41565344594320496e73756666696369656e7420457468000000000000000000600082015250565b60006131df6017836127bc565b91506131ea826131a9565b602082019050919050565b6000602082019050818103600083015261320e816131d2565b9050919050565b7f415653445943204d617820506572204d617820506572205472616e736163746960008201527f6f6e202100000000000000000000000000000000000000000000000000000000602082015250565b60006132716024836127bc565b915061327c82613215565b604082019050919050565b600060208201905081810360008301526132a081613264565b9050919050565b60006132b2826126f2565b91506132bd836126f2565b92508282019050808211156132d5576132d4613104565b5b92915050565b7f41565344594320536f6c646f7574202100000000000000000000000000000000600082015250565b60006133116010836127bc565b915061331c826132db565b602082019050919050565b6000602082019050818103600083015261334081613304565b9050919050565b60008160601b9050919050565b600061335f82613347565b9050919050565b600061337182613354565b9050919050565b61338961338482612746565b613366565b82525050565b600061339b8284613378565b60148201915081905092915050565b7f415653445943204e6f74207370697269746c6973740000000000000000000000600082015250565b60006133e06015836127bc565b91506133eb826133aa565b602082019050919050565b6000602082019050818103600083015261340f816133d3565b9050919050565b7f41565344594320496e73756666696369656e742046756e647320210000000000600082015250565b600061344c601b836127bc565b915061345782613416565b602082019050919050565b6000602082019050818103600083015261347b8161343f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134a7565b6134ee86836134a7565b95508019841693508086168417925050509392505050565b6000819050919050565b600061352b613526613521846126f2565b613506565b6126f2565b9050919050565b6000819050919050565b61354583613510565b61355961355182613532565b8484546134b4565b825550505050565b600090565b61356e613561565b61357981848461353c565b505050565b5b8181101561359d57613592600082613566565b60018101905061357f565b5050565b601f8211156135e2576135b381613482565b6135bc84613497565b810160208510156135cb578190505b6135df6135d785613497565b83018261357e565b50505b505050565b600082821c905092915050565b6000613605600019846008026135e7565b1980831691505092915050565b600061361e83836135f4565b9150826002028217905092915050565b613637826127b1565b67ffffffffffffffff8111156136505761364f612a77565b5b61365a8254613041565b6136658282856135a1565b600060209050601f8311600181146136985760008415613686578287015190505b6136908582613612565b8655506136f8565b601f1984166136a686613482565b60005b828110156136ce578489015182556001820191506020850194506020810190506136a9565b868310156136eb57848901516136e7601f8916826135f4565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061373a826126f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361376c5761376b613104565b5b600182019050919050565b600081905092915050565b600061378d826127b1565b6137978185613777565b93506137a78185602086016127cd565b80840191505092915050565b60006137bf8285613782565b91506137cb8284613782565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138336026836127bc565b915061383e826137d7565b604082019050919050565b6000602082019050818103600083015261386281613826565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061389f6020836127bc565b91506138aa82613869565b602082019050919050565b600060208201905081810360008301526138ce81613892565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006138fc826138d5565b61390681856138e0565b93506139168185602086016127cd565b61391f816127f7565b840191505092915050565b600060808201905061393f60008301876128bc565b61394c60208301866128bc565b61395960408301856126fc565b818103606083015261396b81846138f1565b905095945050505050565b60008151905061398581612663565b92915050565b6000602082840312156139a1576139a061262d565b5b60006139af84828501613976565b9150509291505056fea2646970667358221220b368bc7db74c0f5457ee75ade55973d13492a196b1236caacc854b52f4a42f1564736f6c63430008110033

Deployed Bytecode Sourcemap

67644:4121:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18437:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68106:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71401:137;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19339:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25830:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25263:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68942:917;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67846:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70907:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15090:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29469:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68185:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68068:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68481:453;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67704:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70332:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71646:116;;;;;;;;;;;;;:::i;:::-;;32390:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70667:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67984:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70559:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71271:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67804:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20732:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70104:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68145:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67954:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16274:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57190:103;;;;;;;;;;;;;:::i;:::-;;70440:107;;;;;;;;;;;;;:::i;:::-;;71546:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67898:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56542:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70773:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19515:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26388:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71049:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33181:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19725:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68030:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68240:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69867:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26779:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57448:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71163:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18437:639;18522:4;18861:10;18846:25;;:11;:25;;;;:102;;;;18938:10;18923:25;;:11;:25;;;;18846:102;:179;;;;19015:10;19000:25;;:11;:25;;;;18846:179;18826:199;;18437:639;;;:::o;68106:32::-;;;;:::o;71401:137::-;56428:13;:11;:13::i;:::-;71491:1:::1;71469:12;:19;71482:5;71469:19;;;;;;;;;;;;;;;:23;;;;71529:1;71503:16;:23;71520:5;71503:23;;;;;;;;;;;;;;;:27;;;;71401:137:::0;:::o;19339:100::-;19393:13;19426:5;19419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19339:100;:::o;25830:218::-;25906:7;25931:16;25939:7;25931;:16::i;:::-;25926:64;;25956:34;;;;;;;;;;;;;;25926:64;26010:15;:24;26026:7;26010:24;;;;;;;;;;;:30;;;;;;;;;;;;26003:37;;25830:218;;;:::o;25263:408::-;25352:13;25368:16;25376:7;25368;:16::i;:::-;25352:32;;25424:5;25401:28;;:19;:17;:19::i;:::-;:28;;;25397:175;;25449:44;25466:5;25473:19;:17;:19::i;:::-;25449:16;:44::i;:::-;25444:128;;25521:35;;;;;;;;;;;;;;25444:128;25397:175;25617:2;25584:15;:24;25600:7;25584:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25655:7;25651:2;25635:28;;25644:5;25635:28;;;;;;;;;;;;25341:330;25263:408;;:::o;68942:917::-;69054:14;;;;;;;;;;;69046:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;69154:14;;69123:16;:28;69140:10;69123:28;;;;;;;;;;;;;;;;:45;69120:334;;;69194:17;69220:14;;69214:3;:20;;;;:::i;:::-;69194:40;;69281:15;;69269:9;:27;;;;:::i;:::-;69256:9;:40;;69248:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;69180:155;69120:334;;;69400:15;;69394:3;:21;;;;:::i;:::-;69381:9;:34;;69373:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;69120:334;69479:17;;69472:3;:24;;69464:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;69579:9;;69572:3;69556:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;69548:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;69619:12;69661:10;69644:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;69634:39;;;;;;69619:54;;69692:50;69711:12;;69692:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69725:10;;69737:4;69692:18;:50::i;:::-;69684:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;69811:3;69779:16;:28;69796:10;69779:28;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;69825:26;69835:10;69847:3;69825:9;:26::i;:::-;69034:825;68942:917;;;:::o;67846:45::-;;;;:::o;70907:134::-;56428:13;:11;:13::i;:::-;71015:18:::1;70995:17;:38;;;;70907:134:::0;:::o;15090:323::-;15151:7;15379:15;:13;:15::i;:::-;15364:12;;15348:13;;:28;:46;15341:53;;15090:323;:::o;29469:2825::-;29611:27;29641;29660:7;29641:18;:27::i;:::-;29611:57;;29726:4;29685:45;;29701:19;29685:45;;;29681:86;;29739:28;;;;;;;;;;;;;;29681:86;29781:27;29810:23;29837:35;29864:7;29837:26;:35::i;:::-;29780:92;;;;29972:68;29997:15;30014:4;30020:19;:17;:19::i;:::-;29972:24;:68::i;:::-;29967:180;;30060:43;30077:4;30083:19;:17;:19::i;:::-;30060:16;:43::i;:::-;30055:92;;30112:35;;;;;;;;;;;;;;30055:92;29967:180;30178:1;30164:16;;:2;:16;;;30160:52;;30189:23;;;;;;;;;;;;;;30160:52;30225:43;30247:4;30253:2;30257:7;30266:1;30225:21;:43::i;:::-;30361:15;30358:160;;;30501:1;30480:19;30473:30;30358:160;30898:18;:24;30917:4;30898:24;;;;;;;;;;;;;;;;30896:26;;;;;;;;;;;;30967:18;:22;30986:2;30967:22;;;;;;;;;;;;;;;;30965:24;;;;;;;;;;;31289:146;31326:2;31375:45;31390:4;31396:2;31400:19;31375:14;:45::i;:::-;11489:8;31347:73;31289:18;:146::i;:::-;31260:17;:26;31278:7;31260:26;;;;;;;;;;;:175;;;;31606:1;11489:8;31555:19;:47;:52;31551:627;;31628:19;31660:1;31650:7;:11;31628:33;;31817:1;31783:17;:30;31801:11;31783:30;;;;;;;;;;;;:35;31779:384;;31921:13;;31906:11;:28;31902:242;;32101:19;32068:17;:30;32086:11;32068:30;;;;;;;;;;;:52;;;;31902:242;31779:384;31609:569;31551:627;32225:7;32221:2;32206:27;;32215:4;32206:27;;;;;;;;;;;;32244:42;32265:4;32271:2;32275:7;32284:1;32244:20;:42::i;:::-;29600:2694;;;29469:2825;;;:::o;68185:48::-;;;;;;;;;;;;;;;;;:::o;68068:29::-;;;;:::o;68481:453::-;68555:14;;;;;;;;;;;68547:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;68637:17;;68630:3;:24;;68622:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;68737:10;;68730:3;68714:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:33;;68706:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;68805:11;;68799:3;:17;;;;:::i;:::-;68786:9;:30;;68778:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;68886:3;68858:12;:24;68871:10;68858:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;68900:26;68910:10;68922:3;68900:9;:26::i;:::-;68481:453;:::o;67704:93::-;;;;:::o;70332:100::-;56428:13;:11;:13::i;:::-;70398:26:::1;70408:10;70420:3;70398:9;:26::i;:::-;70332:100:::0;:::o;71646:116::-;56428:13;:11;:13::i;:::-;71702:10:::1;71694:28;;:60;71739:4;71723:30;;;71694:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71646:116::o:0;32390:193::-;32536:39;32553:4;32559:2;32563:7;32536:39;;;;;;;;;;;;:16;:39::i;:::-;32390:193;;;:::o;70667:98::-;56428:13;:11;:13::i;:::-;70751:6:::1;70737:11;:20;;;;70667:98:::0;:::o;67984:37::-;;;;:::o;70559:100::-;56428:13;:11;:13::i;:::-;70643:8:::1;70633:7;:18;;;;;;:::i;:::-;;70559:100:::0;:::o;71271:122::-;56428:13;:11;:13::i;:::-;71370:15:::1;71353:14;:32;;;;71271:122:::0;:::o;67804:35::-;;;;;;;;;;;;;:::o;20732:152::-;20804:7;20847:27;20866:7;20847:18;:27::i;:::-;20824:52;;20732:152;;;:::o;70104:220::-;56428:13;:11;:13::i;:::-;70210:9:::1;70205:112;70229:13;:20;70225:1;:24;70205:112;;;70270:35;70280:13;70294:1;70280:16;;;;;;;;:::i;:::-;;;;;;;;70298:3;70302:1;70298:6;;;;;;;;:::i;:::-;;;;;;;;70270:9;:35::i;:::-;70251:3;;;;;:::i;:::-;;;;70205:112;;;;70104:220:::0;;:::o;68145:33::-;;;;:::o;67954:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16274:233::-;16346:7;16387:1;16370:19;;:5;:19;;;16366:60;;16398:28;;;;;;;;;;;;;;16366:60;10433:13;16444:18;:25;16463:5;16444:25;;;;;;;;;;;;;;;;:55;16437:62;;16274:233;;;:::o;57190:103::-;56428:13;:11;:13::i;:::-;57255:30:::1;57282:1;57255:18;:30::i;:::-;57190:103::o:0;70440:107::-;56428:13;:11;:13::i;:::-;70524:14:::1;;;;;;;;;;;70523:15;70505:14;;:33;;;;;;;;;;;;;;;;;;70440:107::o:0;71546:92::-;56428:13;:11;:13::i;:::-;71626:4:::1;71613:10;:17;;;;71546:92:::0;:::o;67898:49::-;;;;:::o;56542:87::-;56588:7;56615:6;;;;;;;;;;;56608:13;;56542:87;:::o;70773:126::-;56428:13;:11;:13::i;:::-;70875:16:::1;70857:15;:34;;;;70773:126:::0;:::o;19515:104::-;19571:13;19604:7;19597:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19515:104;:::o;26388:234::-;26535:8;26483:18;:39;26502:19;:17;:19::i;:::-;26483:39;;;;;;;;;;;;;;;:49;26523:8;26483:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26595:8;26559:55;;26574:19;:17;:19::i;:::-;26559:55;;;26605:8;26559:55;;;;;;:::i;:::-;;;;;;;;26388:234;;:::o;71049:106::-;56428:13;:11;:13::i;:::-;71136:11:::1;71123:10;:24;;;;71049:106:::0;:::o;33181:407::-;33356:31;33369:4;33375:2;33379:7;33356:12;:31::i;:::-;33420:1;33402:2;:14;;;:19;33398:183;;33441:56;33472:4;33478:2;33482:7;33491:5;33441:30;:56::i;:::-;33436:145;;33525:40;;;;;;;;;;;;;;33436:145;33398:183;33181:407;;;;:::o;19725:318::-;19798:13;19829:16;19837:7;19829;:16::i;:::-;19824:59;;19854:29;;;;;;;;;;;;;;19824:59;19896:21;19920:10;:8;:10::i;:::-;19896:34;;19973:1;19954:7;19948:21;:26;:87;;;;;;;;;;;;;;;;;20001:7;20010:18;20020:7;20010:9;:18::i;:::-;19984:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19948:87;19941:94;;;19725:318;;;:::o;68030:31::-;;;;:::o;68240:52::-;;;;;;;;;;;;;;;;;:::o;69867:113::-;69925:7;69952:20;69966:5;69952:13;:20::i;:::-;69945:27;;69867:113;;;:::o;26779:164::-;26876:4;26900:18;:25;26919:5;26900:25;;;;;;;;;;;;;;;:35;26926:8;26900:35;;;;;;;;;;;;;;;;;;;;;;;;;26893:42;;26779:164;;;;:::o;57448:201::-;56428:13;:11;:13::i;:::-;57557:1:::1;57537:22;;:8;:22;;::::0;57529:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;57613:28;57632:8;57613:18;:28::i;:::-;57448:201:::0;:::o;71163:100::-;56428:13;:11;:13::i;:::-;71247:8:::1;71234:10;:21;;;;71163:100:::0;:::o;56707:132::-;56782:12;:10;:12::i;:::-;56771:23;;:7;:5;:7::i;:::-;:23;;;56763:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56707:132::o;27201:282::-;27266:4;27322:7;27303:15;:13;:15::i;:::-;:26;;:66;;;;;27356:13;;27346:7;:23;27303:66;:153;;;;;27455:1;11209:8;27407:17;:26;27425:7;27407:26;;;;;;;;;;;;:44;:49;27303:153;27283:173;;27201:282;;;:::o;49509:105::-;49569:7;49596:10;49589:17;;49509:105;:::o;59229:190::-;59354:4;59407;59378:25;59391:5;59398:4;59378:12;:25::i;:::-;:33;59371:40;;59229:190;;;;;:::o;43341:112::-;43418:27;43428:2;43432:8;43418:27;;;;;;;;;;;;:9;:27::i;:::-;43341:112;;:::o;68372:101::-;68437:7;68464:1;68457:8;;68372:101;:::o;21887:1275::-;21954:7;21974:12;21989:7;21974:22;;22057:4;22038:15;:13;:15::i;:::-;:23;22034:1061;;22091:13;;22084:4;:20;22080:1015;;;22129:14;22146:17;:23;22164:4;22146:23;;;;;;;;;;;;22129:40;;22263:1;11209:8;22235:6;:24;:29;22231:845;;22900:113;22917:1;22907:6;:11;22900:113;;22960:17;:25;22978:6;;;;;;;22960:25;;;;;;;;;;;;22951:34;;22900:113;;;23046:6;23039:13;;;;;;22231:845;22106:989;22080:1015;22034:1061;23123:31;;;;;;;;;;;;;;21887:1275;;;;:::o;28364:485::-;28466:27;28495:23;28536:38;28577:15;:24;28593:7;28577:24;;;;;;;;;;;28536:65;;28754:18;28731:41;;28811:19;28805:26;28786:45;;28716:126;28364:485;;;:::o;27592:659::-;27741:11;27906:16;27899:5;27895:28;27886:37;;28066:16;28055:9;28051:32;28038:45;;28216:15;28205:9;28202:30;28194:5;28183:9;28180:20;28177:56;28167:66;;27592:659;;;;;:::o;34250:159::-;;;;;:::o;48818:311::-;48953:7;48973:16;11613:3;48999:19;:41;;48973:68;;11613:3;49067:31;49078:4;49084:2;49088:9;49067:10;:31::i;:::-;49059:40;;:62;;49052:69;;;48818:311;;;;;:::o;23710:450::-;23790:14;23958:16;23951:5;23947:28;23938:37;;24135:5;24121:11;24096:23;24092:41;24089:52;24082:5;24079:63;24069:73;;23710:450;;;;:::o;35074:158::-;;;;;:::o;57809:191::-;57883:16;57902:6;;;;;;;;;;;57883:25;;57928:8;57919:6;;:17;;;;;;;;;;;;;;;;;;57983:8;57952:40;;57973:8;57952:40;;;;;;;;;;;;57872:128;57809:191;:::o;35672:716::-;35835:4;35881:2;35856:45;;;35902:19;:17;:19::i;:::-;35923:4;35929:7;35938:5;35856:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35852:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36156:1;36139:6;:13;:18;36135:235;;36185:40;;;;;;;;;;;;;;36135:235;36328:6;36322:13;36313:6;36309:2;36305:15;36298:38;35852:529;36025:54;;;36015:64;;;:6;:64;;;;36008:71;;;35672:716;;;;;;:::o;69988:108::-;70048:13;70081:7;70074:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69988:108;:::o;49716:1745::-;49781:17;50215:4;50208;50202:11;50198:22;50307:1;50301:4;50294:15;50382:4;50379:1;50375:12;50368:19;;50464:1;50459:3;50452:14;50568:3;50807:5;50789:428;50815:1;50789:428;;;50855:1;50850:3;50846:11;50839:18;;51026:2;51020:4;51016:13;51012:2;51008:22;51003:3;50995:36;51120:2;51114:4;51110:13;51102:21;;51187:4;50789:428;51177:25;50789:428;50793:21;51256:3;51251;51247:13;51371:4;51366:3;51362:14;51355:21;;51436:6;51431:3;51424:19;49820:1634;;;49716:1745;;;:::o;16589:178::-;16650:7;10433:13;10571:2;16678:18;:25;16697:5;16678:25;;;;;;;;;;;;;;;;:50;;16677:82;16670:89;;16589:178;;;:::o;55093:98::-;55146:7;55173:10;55166:17;;55093:98;:::o;60096:296::-;60179:7;60199:20;60222:4;60199:27;;60242:9;60237:118;60261:5;:12;60257:1;:16;60237:118;;;60310:33;60320:12;60334:5;60340:1;60334:8;;;;;;;;:::i;:::-;;;;;;;;60310:9;:33::i;:::-;60295:48;;60275:3;;;;;:::i;:::-;;;;60237:118;;;;60372:12;60365:19;;;60096:296;;;;:::o;42568:689::-;42699:19;42705:2;42709:8;42699:5;:19::i;:::-;42778:1;42760:2;:14;;;:19;42756:483;;42800:11;42814:13;;42800:27;;42846:13;42868:8;42862:3;:14;42846:30;;42895:233;42926:62;42965:1;42969:2;42973:7;;;;;;42982:5;42926:30;:62::i;:::-;42921:167;;43024:40;;;;;;;;;;;;;;42921:167;43123:3;43115:5;:11;42895:233;;43210:3;43193:13;;:20;43189:34;;43215:8;;;43189:34;42781:458;;42756:483;42568:689;;;:::o;48519:147::-;48656:6;48519:147;;;;;:::o;67136:149::-;67199:7;67230:1;67226;:5;:51;;67257:20;67272:1;67275;67257:14;:20::i;:::-;67226:51;;;67234:20;67249:1;67252;67234:14;:20::i;:::-;67226:51;67219:58;;67136:149;;;;:::o;36850:2966::-;36923:20;36946:13;;36923:36;;36986:1;36974:8;:13;36970:44;;36996:18;;;;;;;;;;;;;;36970:44;37027:61;37057:1;37061:2;37065:12;37079:8;37027:21;:61::i;:::-;37571:1;10571:2;37541:1;:26;;37540:32;37528:8;:45;37502:18;:22;37521:2;37502:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37850:139;37887:2;37941:33;37964:1;37968:2;37972:1;37941:14;:33::i;:::-;37908:30;37929:8;37908:20;:30::i;:::-;:66;37850:18;:139::i;:::-;37816:17;:31;37834:12;37816:31;;;;;;;;;;;:173;;;;38006:16;38037:11;38066:8;38051:12;:23;38037:37;;38587:16;38583:2;38579:25;38567:37;;38959:12;38919:8;38878:1;38816:25;38757:1;38696;38669:335;39330:1;39316:12;39312:20;39270:346;39371:3;39362:7;39359:16;39270:346;;39589:7;39579:8;39576:1;39549:25;39546:1;39543;39538:59;39424:1;39415:7;39411:15;39400:26;;39270:346;;;39274:77;39661:1;39649:8;:13;39645:45;;39671:19;;;;;;;;;;;;;;39645:45;39723:3;39707:13;:19;;;;37276:2462;;39748:60;39777:1;39781:2;39785:12;39799:8;39748:20;:60::i;:::-;36912:2904;36850:2966;;:::o;67293:268::-;67361:13;67468:1;67462:4;67455:15;67497:1;67491:4;67484:15;67538:4;67532;67522:21;67513:30;;67293:268;;;;:::o;24262:324::-;24332:14;24565:1;24555:8;24552:15;24526:24;24522:46;24512:56;;24262:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:126::-;1990:7;2030:42;2023:5;2019:54;2008:65;;1953:126;;;:::o;2085:96::-;2122:7;2151:24;2169:5;2151:24;:::i;:::-;2140:35;;2085:96;;;:::o;2187:122::-;2260:24;2278:5;2260:24;:::i;:::-;2253:5;2250:35;2240:63;;2299:1;2296;2289:12;2240:63;2187:122;:::o;2315:139::-;2361:5;2399:6;2386:20;2377:29;;2415:33;2442:5;2415:33;:::i;:::-;2315:139;;;;:::o;2460:329::-;2519:6;2568:2;2556:9;2547:7;2543:23;2539:32;2536:119;;;2574:79;;:::i;:::-;2536:119;2694:1;2719:53;2764:7;2755:6;2744:9;2740:22;2719:53;:::i;:::-;2709:63;;2665:117;2460:329;;;;:::o;2795:99::-;2847:6;2881:5;2875:12;2865:22;;2795:99;;;:::o;2900:169::-;2984:11;3018:6;3013:3;3006:19;3058:4;3053:3;3049:14;3034:29;;2900:169;;;;:::o;3075:246::-;3156:1;3166:113;3180:6;3177:1;3174:13;3166:113;;;3265:1;3260:3;3256:11;3250:18;3246:1;3241:3;3237:11;3230:39;3202:2;3199:1;3195:10;3190:15;;3166:113;;;3313:1;3304:6;3299:3;3295:16;3288:27;3137:184;3075:246;;;:::o;3327:102::-;3368:6;3419:2;3415:7;3410:2;3403:5;3399:14;3395:28;3385:38;;3327:102;;;:::o;3435:377::-;3523:3;3551:39;3584:5;3551:39;:::i;:::-;3606:71;3670:6;3665:3;3606:71;:::i;:::-;3599:78;;3686:65;3744:6;3739:3;3732:4;3725:5;3721:16;3686:65;:::i;:::-;3776:29;3798:6;3776:29;:::i;:::-;3771:3;3767:39;3760:46;;3527:285;3435:377;;;;:::o;3818:313::-;3931:4;3969:2;3958:9;3954:18;3946:26;;4018:9;4012:4;4008:20;4004:1;3993:9;3989:17;3982:47;4046:78;4119:4;4110:6;4046:78;:::i;:::-;4038:86;;3818:313;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:329::-;4469:6;4518:2;4506:9;4497:7;4493:23;4489:32;4486:119;;;4524:79;;:::i;:::-;4486:119;4644:1;4669:53;4714:7;4705:6;4694:9;4690:22;4669:53;:::i;:::-;4659:63;;4615:117;4410:329;;;;:::o;4745:118::-;4832:24;4850:5;4832:24;:::i;:::-;4827:3;4820:37;4745:118;;:::o;4869:222::-;4962:4;5000:2;4989:9;4985:18;4977:26;;5013:71;5081:1;5070:9;5066:17;5057:6;5013:71;:::i;:::-;4869:222;;;;:::o;5097:474::-;5165:6;5173;5222:2;5210:9;5201:7;5197:23;5193:32;5190:119;;;5228:79;;:::i;:::-;5190:119;5348:1;5373:53;5418:7;5409:6;5398:9;5394:22;5373:53;:::i;:::-;5363:63;;5319:117;5475:2;5501:53;5546:7;5537:6;5526:9;5522:22;5501:53;:::i;:::-;5491:63;;5446:118;5097:474;;;;;:::o;5577:117::-;5686:1;5683;5676:12;5700:117;5809:1;5806;5799:12;5823:117;5932:1;5929;5922:12;5963:568;6036:8;6046:6;6096:3;6089:4;6081:6;6077:17;6073:27;6063:122;;6104:79;;:::i;:::-;6063:122;6217:6;6204:20;6194:30;;6247:18;6239:6;6236:30;6233:117;;;6269:79;;:::i;:::-;6233:117;6383:4;6375:6;6371:17;6359:29;;6437:3;6429:4;6421:6;6417:17;6407:8;6403:32;6400:41;6397:128;;;6444:79;;:::i;:::-;6397:128;5963:568;;;;;:::o;6537:704::-;6632:6;6640;6648;6697:2;6685:9;6676:7;6672:23;6668:32;6665:119;;;6703:79;;:::i;:::-;6665:119;6823:1;6848:53;6893:7;6884:6;6873:9;6869:22;6848:53;:::i;:::-;6838:63;;6794:117;6978:2;6967:9;6963:18;6950:32;7009:18;7001:6;6998:30;6995:117;;;7031:79;;:::i;:::-;6995:117;7144:80;7216:7;7207:6;7196:9;7192:22;7144:80;:::i;:::-;7126:98;;;;6921:313;6537:704;;;;;:::o;7247:619::-;7324:6;7332;7340;7389:2;7377:9;7368:7;7364:23;7360:32;7357:119;;;7395:79;;:::i;:::-;7357:119;7515:1;7540:53;7585:7;7576:6;7565:9;7561:22;7540:53;:::i;:::-;7530:63;;7486:117;7642:2;7668:53;7713:7;7704:6;7693:9;7689:22;7668:53;:::i;:::-;7658:63;;7613:118;7770:2;7796:53;7841:7;7832:6;7821:9;7817:22;7796:53;:::i;:::-;7786:63;;7741:118;7247:619;;;;;:::o;7872:77::-;7909:7;7938:5;7927:16;;7872:77;;;:::o;7955:118::-;8042:24;8060:5;8042:24;:::i;:::-;8037:3;8030:37;7955:118;;:::o;8079:222::-;8172:4;8210:2;8199:9;8195:18;8187:26;;8223:71;8291:1;8280:9;8276:17;8267:6;8223:71;:::i;:::-;8079:222;;;;:::o;8307:117::-;8416:1;8413;8406:12;8430:180;8478:77;8475:1;8468:88;8575:4;8572:1;8565:15;8599:4;8596:1;8589:15;8616:281;8699:27;8721:4;8699:27;:::i;:::-;8691:6;8687:40;8829:6;8817:10;8814:22;8793:18;8781:10;8778:34;8775:62;8772:88;;;8840:18;;:::i;:::-;8772:88;8880:10;8876:2;8869:22;8659:238;8616:281;;:::o;8903:129::-;8937:6;8964:20;;:::i;:::-;8954:30;;8993:33;9021:4;9013:6;8993:33;:::i;:::-;8903:129;;;:::o;9038:308::-;9100:4;9190:18;9182:6;9179:30;9176:56;;;9212:18;;:::i;:::-;9176:56;9250:29;9272:6;9250:29;:::i;:::-;9242:37;;9334:4;9328;9324:15;9316:23;;9038:308;;;:::o;9352:146::-;9449:6;9444:3;9439;9426:30;9490:1;9481:6;9476:3;9472:16;9465:27;9352:146;;;:::o;9504:425::-;9582:5;9607:66;9623:49;9665:6;9623:49;:::i;:::-;9607:66;:::i;:::-;9598:75;;9696:6;9689:5;9682:21;9734:4;9727:5;9723:16;9772:3;9763:6;9758:3;9754:16;9751:25;9748:112;;;9779:79;;:::i;:::-;9748:112;9869:54;9916:6;9911:3;9906;9869:54;:::i;:::-;9588:341;9504:425;;;;;:::o;9949:340::-;10005:5;10054:3;10047:4;10039:6;10035:17;10031:27;10021:122;;10062:79;;:::i;:::-;10021:122;10179:6;10166:20;10204:79;10279:3;10271:6;10264:4;10256:6;10252:17;10204:79;:::i;:::-;10195:88;;10011:278;9949:340;;;;:::o;10295:509::-;10364:6;10413:2;10401:9;10392:7;10388:23;10384:32;10381:119;;;10419:79;;:::i;:::-;10381:119;10567:1;10556:9;10552:17;10539:31;10597:18;10589:6;10586:30;10583:117;;;10619:79;;:::i;:::-;10583:117;10724:63;10779:7;10770:6;10759:9;10755:22;10724:63;:::i;:::-;10714:73;;10510:287;10295:509;;;;:::o;10810:311::-;10887:4;10977:18;10969:6;10966:30;10963:56;;;10999:18;;:::i;:::-;10963:56;11049:4;11041:6;11037:17;11029:25;;11109:4;11103;11099:15;11091:23;;10810:311;;;:::o;11144:710::-;11240:5;11265:81;11281:64;11338:6;11281:64;:::i;:::-;11265:81;:::i;:::-;11256:90;;11366:5;11395:6;11388:5;11381:21;11429:4;11422:5;11418:16;11411:23;;11482:4;11474:6;11470:17;11462:6;11458:30;11511:3;11503:6;11500:15;11497:122;;;11530:79;;:::i;:::-;11497:122;11645:6;11628:220;11662:6;11657:3;11654:15;11628:220;;;11737:3;11766:37;11799:3;11787:10;11766:37;:::i;:::-;11761:3;11754:50;11833:4;11828:3;11824:14;11817:21;;11704:144;11688:4;11683:3;11679:14;11672:21;;11628:220;;;11632:21;11246:608;;11144:710;;;;;:::o;11877:370::-;11948:5;11997:3;11990:4;11982:6;11978:17;11974:27;11964:122;;12005:79;;:::i;:::-;11964:122;12122:6;12109:20;12147:94;12237:3;12229:6;12222:4;12214:6;12210:17;12147:94;:::i;:::-;12138:103;;11954:293;11877:370;;;;:::o;12253:311::-;12330:4;12420:18;12412:6;12409:30;12406:56;;;12442:18;;:::i;:::-;12406:56;12492:4;12484:6;12480:17;12472:25;;12552:4;12546;12542:15;12534:23;;12253:311;;;:::o;12587:710::-;12683:5;12708:81;12724:64;12781:6;12724:64;:::i;:::-;12708:81;:::i;:::-;12699:90;;12809:5;12838:6;12831:5;12824:21;12872:4;12865:5;12861:16;12854:23;;12925:4;12917:6;12913:17;12905:6;12901:30;12954:3;12946:6;12943:15;12940:122;;;12973:79;;:::i;:::-;12940:122;13088:6;13071:220;13105:6;13100:3;13097:15;13071:220;;;13180:3;13209:37;13242:3;13230:10;13209:37;:::i;:::-;13204:3;13197:50;13276:4;13271:3;13267:14;13260:21;;13147:144;13131:4;13126:3;13122:14;13115:21;;13071:220;;;13075:21;12689:608;;12587:710;;;;;:::o;13320:370::-;13391:5;13440:3;13433:4;13425:6;13421:17;13417:27;13407:122;;13448:79;;:::i;:::-;13407:122;13565:6;13552:20;13590:94;13680:3;13672:6;13665:4;13657:6;13653:17;13590:94;:::i;:::-;13581:103;;13397:293;13320:370;;;;:::o;13696:894::-;13814:6;13822;13871:2;13859:9;13850:7;13846:23;13842:32;13839:119;;;13877:79;;:::i;:::-;13839:119;14025:1;14014:9;14010:17;13997:31;14055:18;14047:6;14044:30;14041:117;;;14077:79;;:::i;:::-;14041:117;14182:78;14252:7;14243:6;14232:9;14228:22;14182:78;:::i;:::-;14172:88;;13968:302;14337:2;14326:9;14322:18;14309:32;14368:18;14360:6;14357:30;14354:117;;;14390:79;;:::i;:::-;14354:117;14495:78;14565:7;14556:6;14545:9;14541:22;14495:78;:::i;:::-;14485:88;;14280:303;13696:894;;;;;:::o;14596:122::-;14669:24;14687:5;14669:24;:::i;:::-;14662:5;14659:35;14649:63;;14708:1;14705;14698:12;14649:63;14596:122;:::o;14724:139::-;14770:5;14808:6;14795:20;14786:29;;14824:33;14851:5;14824:33;:::i;:::-;14724:139;;;;:::o;14869:329::-;14928:6;14977:2;14965:9;14956:7;14952:23;14948:32;14945:119;;;14983:79;;:::i;:::-;14945:119;15103:1;15128:53;15173:7;15164:6;15153:9;15149:22;15128:53;:::i;:::-;15118:63;;15074:117;14869:329;;;;:::o;15204:116::-;15274:21;15289:5;15274:21;:::i;:::-;15267:5;15264:32;15254:60;;15310:1;15307;15300:12;15254:60;15204:116;:::o;15326:133::-;15369:5;15407:6;15394:20;15385:29;;15423:30;15447:5;15423:30;:::i;:::-;15326:133;;;;:::o;15465:468::-;15530:6;15538;15587:2;15575:9;15566:7;15562:23;15558:32;15555:119;;;15593:79;;:::i;:::-;15555:119;15713:1;15738:53;15783:7;15774:6;15763:9;15759:22;15738:53;:::i;:::-;15728:63;;15684:117;15840:2;15866:50;15908:7;15899:6;15888:9;15884:22;15866:50;:::i;:::-;15856:60;;15811:115;15465:468;;;;;:::o;15939:307::-;16000:4;16090:18;16082:6;16079:30;16076:56;;;16112:18;;:::i;:::-;16076:56;16150:29;16172:6;16150:29;:::i;:::-;16142:37;;16234:4;16228;16224:15;16216:23;;15939:307;;;:::o;16252:423::-;16329:5;16354:65;16370:48;16411:6;16370:48;:::i;:::-;16354:65;:::i;:::-;16345:74;;16442:6;16435:5;16428:21;16480:4;16473:5;16469:16;16518:3;16509:6;16504:3;16500:16;16497:25;16494:112;;;16525:79;;:::i;:::-;16494:112;16615:54;16662:6;16657:3;16652;16615:54;:::i;:::-;16335:340;16252:423;;;;;:::o;16694:338::-;16749:5;16798:3;16791:4;16783:6;16779:17;16775:27;16765:122;;16806:79;;:::i;:::-;16765:122;16923:6;16910:20;16948:78;17022:3;17014:6;17007:4;16999:6;16995:17;16948:78;:::i;:::-;16939:87;;16755:277;16694:338;;;;:::o;17038:943::-;17133:6;17141;17149;17157;17206:3;17194:9;17185:7;17181:23;17177:33;17174:120;;;17213:79;;:::i;:::-;17174:120;17333:1;17358:53;17403:7;17394:6;17383:9;17379:22;17358:53;:::i;:::-;17348:63;;17304:117;17460:2;17486:53;17531:7;17522:6;17511:9;17507:22;17486:53;:::i;:::-;17476:63;;17431:118;17588:2;17614:53;17659:7;17650:6;17639:9;17635:22;17614:53;:::i;:::-;17604:63;;17559:118;17744:2;17733:9;17729:18;17716:32;17775:18;17767:6;17764:30;17761:117;;;17797:79;;:::i;:::-;17761:117;17902:62;17956:7;17947:6;17936:9;17932:22;17902:62;:::i;:::-;17892:72;;17687:287;17038:943;;;;;;;:::o;17987:474::-;18055:6;18063;18112:2;18100:9;18091:7;18087:23;18083:32;18080:119;;;18118:79;;:::i;:::-;18080:119;18238:1;18263:53;18308:7;18299:6;18288:9;18284:22;18263:53;:::i;:::-;18253:63;;18209:117;18365:2;18391:53;18436:7;18427:6;18416:9;18412:22;18391:53;:::i;:::-;18381:63;;18336:118;17987:474;;;;;:::o;18467:180::-;18515:77;18512:1;18505:88;18612:4;18609:1;18602:15;18636:4;18633:1;18626:15;18653:320;18697:6;18734:1;18728:4;18724:12;18714:22;;18781:1;18775:4;18771:12;18802:18;18792:81;;18858:4;18850:6;18846:17;18836:27;;18792:81;18920:2;18912:6;18909:14;18889:18;18886:38;18883:84;;18939:18;;:::i;:::-;18883:84;18704:269;18653:320;;;:::o;18979:223::-;19119:34;19115:1;19107:6;19103:14;19096:58;19188:6;19183:2;19175:6;19171:15;19164:31;18979:223;:::o;19208:366::-;19350:3;19371:67;19435:2;19430:3;19371:67;:::i;:::-;19364:74;;19447:93;19536:3;19447:93;:::i;:::-;19565:2;19560:3;19556:12;19549:19;;19208:366;;;:::o;19580:419::-;19746:4;19784:2;19773:9;19769:18;19761:26;;19833:9;19827:4;19823:20;19819:1;19808:9;19804:17;19797:47;19861:131;19987:4;19861:131;:::i;:::-;19853:139;;19580:419;;;:::o;20005:180::-;20053:77;20050:1;20043:88;20150:4;20147:1;20140:15;20174:4;20171:1;20164:15;20191:194;20231:4;20251:20;20269:1;20251:20;:::i;:::-;20246:25;;20285:20;20303:1;20285:20;:::i;:::-;20280:25;;20329:1;20326;20322:9;20314:17;;20353:1;20347:4;20344:11;20341:37;;;20358:18;;:::i;:::-;20341:37;20191:194;;;;:::o;20391:410::-;20431:7;20454:20;20472:1;20454:20;:::i;:::-;20449:25;;20488:20;20506:1;20488:20;:::i;:::-;20483:25;;20543:1;20540;20536:9;20565:30;20583:11;20565:30;:::i;:::-;20554:41;;20744:1;20735:7;20731:15;20728:1;20725:22;20705:1;20698:9;20678:83;20655:139;;20774:18;;:::i;:::-;20655:139;20439:362;20391:410;;;;:::o;20807:173::-;20947:25;20943:1;20935:6;20931:14;20924:49;20807:173;:::o;20986:366::-;21128:3;21149:67;21213:2;21208:3;21149:67;:::i;:::-;21142:74;;21225:93;21314:3;21225:93;:::i;:::-;21343:2;21338:3;21334:12;21327:19;;20986:366;;;:::o;21358:419::-;21524:4;21562:2;21551:9;21547:18;21539:26;;21611:9;21605:4;21601:20;21597:1;21586:9;21582:17;21575:47;21639:131;21765:4;21639:131;:::i;:::-;21631:139;;21358:419;;;:::o;21783:223::-;21923:34;21919:1;21911:6;21907:14;21900:58;21992:6;21987:2;21979:6;21975:15;21968:31;21783:223;:::o;22012:366::-;22154:3;22175:67;22239:2;22234:3;22175:67;:::i;:::-;22168:74;;22251:93;22340:3;22251:93;:::i;:::-;22369:2;22364:3;22360:12;22353:19;;22012:366;;;:::o;22384:419::-;22550:4;22588:2;22577:9;22573:18;22565:26;;22637:9;22631:4;22627:20;22623:1;22612:9;22608:17;22601:47;22665:131;22791:4;22665:131;:::i;:::-;22657:139;;22384:419;;;:::o;22809:191::-;22849:3;22868:20;22886:1;22868:20;:::i;:::-;22863:25;;22902:20;22920:1;22902:20;:::i;:::-;22897:25;;22945:1;22942;22938:9;22931:16;;22966:3;22963:1;22960:10;22957:36;;;22973:18;;:::i;:::-;22957:36;22809:191;;;;:::o;23006:166::-;23146:18;23142:1;23134:6;23130:14;23123:42;23006:166;:::o;23178:366::-;23320:3;23341:67;23405:2;23400:3;23341:67;:::i;:::-;23334:74;;23417:93;23506:3;23417:93;:::i;:::-;23535:2;23530:3;23526:12;23519:19;;23178:366;;;:::o;23550:419::-;23716:4;23754:2;23743:9;23739:18;23731:26;;23803:9;23797:4;23793:20;23789:1;23778:9;23774:17;23767:47;23831:131;23957:4;23831:131;:::i;:::-;23823:139;;23550:419;;;:::o;23975:94::-;24008:8;24056:5;24052:2;24048:14;24027:35;;23975:94;;;:::o;24075:::-;24114:7;24143:20;24157:5;24143:20;:::i;:::-;24132:31;;24075:94;;;:::o;24175:100::-;24214:7;24243:26;24263:5;24243:26;:::i;:::-;24232:37;;24175:100;;;:::o;24281:157::-;24386:45;24406:24;24424:5;24406:24;:::i;:::-;24386:45;:::i;:::-;24381:3;24374:58;24281:157;;:::o;24444:256::-;24556:3;24571:75;24642:3;24633:6;24571:75;:::i;:::-;24671:2;24666:3;24662:12;24655:19;;24691:3;24684:10;;24444:256;;;;:::o;24706:171::-;24846:23;24842:1;24834:6;24830:14;24823:47;24706:171;:::o;24883:366::-;25025:3;25046:67;25110:2;25105:3;25046:67;:::i;:::-;25039:74;;25122:93;25211:3;25122:93;:::i;:::-;25240:2;25235:3;25231:12;25224:19;;24883:366;;;:::o;25255:419::-;25421:4;25459:2;25448:9;25444:18;25436:26;;25508:9;25502:4;25498:20;25494:1;25483:9;25479:17;25472:47;25536:131;25662:4;25536:131;:::i;:::-;25528:139;;25255:419;;;:::o;25680:177::-;25820:29;25816:1;25808:6;25804:14;25797:53;25680:177;:::o;25863:366::-;26005:3;26026:67;26090:2;26085:3;26026:67;:::i;:::-;26019:74;;26102:93;26191:3;26102:93;:::i;:::-;26220:2;26215:3;26211:12;26204:19;;25863:366;;;:::o;26235:419::-;26401:4;26439:2;26428:9;26424:18;26416:26;;26488:9;26482:4;26478:20;26474:1;26463:9;26459:17;26452:47;26516:131;26642:4;26516:131;:::i;:::-;26508:139;;26235:419;;;:::o;26660:141::-;26709:4;26732:3;26724:11;;26755:3;26752:1;26745:14;26789:4;26786:1;26776:18;26768:26;;26660:141;;;:::o;26807:93::-;26844:6;26891:2;26886;26879:5;26875:14;26871:23;26861:33;;26807:93;;;:::o;26906:107::-;26950:8;27000:5;26994:4;26990:16;26969:37;;26906:107;;;;:::o;27019:393::-;27088:6;27138:1;27126:10;27122:18;27161:97;27191:66;27180:9;27161:97;:::i;:::-;27279:39;27309:8;27298:9;27279:39;:::i;:::-;27267:51;;27351:4;27347:9;27340:5;27336:21;27327:30;;27400:4;27390:8;27386:19;27379:5;27376:30;27366:40;;27095:317;;27019:393;;;;;:::o;27418:60::-;27446:3;27467:5;27460:12;;27418:60;;;:::o;27484:142::-;27534:9;27567:53;27585:34;27594:24;27612:5;27594:24;:::i;:::-;27585:34;:::i;:::-;27567:53;:::i;:::-;27554:66;;27484:142;;;:::o;27632:75::-;27675:3;27696:5;27689:12;;27632:75;;;:::o;27713:269::-;27823:39;27854:7;27823:39;:::i;:::-;27884:91;27933:41;27957:16;27933:41;:::i;:::-;27925:6;27918:4;27912:11;27884:91;:::i;:::-;27878:4;27871:105;27789:193;27713:269;;;:::o;27988:73::-;28033:3;27988:73;:::o;28067:189::-;28144:32;;:::i;:::-;28185:65;28243:6;28235;28229:4;28185:65;:::i;:::-;28120:136;28067:189;;:::o;28262:186::-;28322:120;28339:3;28332:5;28329:14;28322:120;;;28393:39;28430:1;28423:5;28393:39;:::i;:::-;28366:1;28359:5;28355:13;28346:22;;28322:120;;;28262:186;;:::o;28454:543::-;28555:2;28550:3;28547:11;28544:446;;;28589:38;28621:5;28589:38;:::i;:::-;28673:29;28691:10;28673:29;:::i;:::-;28663:8;28659:44;28856:2;28844:10;28841:18;28838:49;;;28877:8;28862:23;;28838:49;28900:80;28956:22;28974:3;28956:22;:::i;:::-;28946:8;28942:37;28929:11;28900:80;:::i;:::-;28559:431;;28544:446;28454:543;;;:::o;29003:117::-;29057:8;29107:5;29101:4;29097:16;29076:37;;29003:117;;;;:::o;29126:169::-;29170:6;29203:51;29251:1;29247:6;29239:5;29236:1;29232:13;29203:51;:::i;:::-;29199:56;29284:4;29278;29274:15;29264:25;;29177:118;29126:169;;;;:::o;29300:295::-;29376:4;29522:29;29547:3;29541:4;29522:29;:::i;:::-;29514:37;;29584:3;29581:1;29577:11;29571:4;29568:21;29560:29;;29300:295;;;;:::o;29600:1395::-;29717:37;29750:3;29717:37;:::i;:::-;29819:18;29811:6;29808:30;29805:56;;;29841:18;;:::i;:::-;29805:56;29885:38;29917:4;29911:11;29885:38;:::i;:::-;29970:67;30030:6;30022;30016:4;29970:67;:::i;:::-;30064:1;30088:4;30075:17;;30120:2;30112:6;30109:14;30137:1;30132:618;;;;30794:1;30811:6;30808:77;;;30860:9;30855:3;30851:19;30845:26;30836:35;;30808:77;30911:67;30971:6;30964:5;30911:67;:::i;:::-;30905:4;30898:81;30767:222;30102:887;;30132:618;30184:4;30180:9;30172:6;30168:22;30218:37;30250:4;30218:37;:::i;:::-;30277:1;30291:208;30305:7;30302:1;30299:14;30291:208;;;30384:9;30379:3;30375:19;30369:26;30361:6;30354:42;30435:1;30427:6;30423:14;30413:24;;30482:2;30471:9;30467:18;30454:31;;30328:4;30325:1;30321:12;30316:17;;30291:208;;;30527:6;30518:7;30515:19;30512:179;;;30585:9;30580:3;30576:19;30570:26;30628:48;30670:4;30662:6;30658:17;30647:9;30628:48;:::i;:::-;30620:6;30613:64;30535:156;30512:179;30737:1;30733;30725:6;30721:14;30717:22;30711:4;30704:36;30139:611;;;30102:887;;29692:1303;;;29600:1395;;:::o;31001:180::-;31049:77;31046:1;31039:88;31146:4;31143:1;31136:15;31170:4;31167:1;31160:15;31187:233;31226:3;31249:24;31267:5;31249:24;:::i;:::-;31240:33;;31295:66;31288:5;31285:77;31282:103;;31365:18;;:::i;:::-;31282:103;31412:1;31405:5;31401:13;31394:20;;31187:233;;;:::o;31426:148::-;31528:11;31565:3;31550:18;;31426:148;;;;:::o;31580:390::-;31686:3;31714:39;31747:5;31714:39;:::i;:::-;31769:89;31851:6;31846:3;31769:89;:::i;:::-;31762:96;;31867:65;31925:6;31920:3;31913:4;31906:5;31902:16;31867:65;:::i;:::-;31957:6;31952:3;31948:16;31941:23;;31690:280;31580:390;;;;:::o;31976:435::-;32156:3;32178:95;32269:3;32260:6;32178:95;:::i;:::-;32171:102;;32290:95;32381:3;32372:6;32290:95;:::i;:::-;32283:102;;32402:3;32395:10;;31976:435;;;;;:::o;32417:225::-;32557:34;32553:1;32545:6;32541:14;32534:58;32626:8;32621:2;32613:6;32609:15;32602:33;32417:225;:::o;32648:366::-;32790:3;32811:67;32875:2;32870:3;32811:67;:::i;:::-;32804:74;;32887:93;32976:3;32887:93;:::i;:::-;33005:2;33000:3;32996:12;32989:19;;32648:366;;;:::o;33020:419::-;33186:4;33224:2;33213:9;33209:18;33201:26;;33273:9;33267:4;33263:20;33259:1;33248:9;33244:17;33237:47;33301:131;33427:4;33301:131;:::i;:::-;33293:139;;33020:419;;;:::o;33445:182::-;33585:34;33581:1;33573:6;33569:14;33562:58;33445:182;:::o;33633:366::-;33775:3;33796:67;33860:2;33855:3;33796:67;:::i;:::-;33789:74;;33872:93;33961:3;33872:93;:::i;:::-;33990:2;33985:3;33981:12;33974:19;;33633:366;;;:::o;34005:419::-;34171:4;34209:2;34198:9;34194:18;34186:26;;34258:9;34252:4;34248:20;34244:1;34233:9;34229:17;34222:47;34286:131;34412:4;34286:131;:::i;:::-;34278:139;;34005:419;;;:::o;34430:98::-;34481:6;34515:5;34509:12;34499:22;;34430:98;;;:::o;34534:168::-;34617:11;34651:6;34646:3;34639:19;34691:4;34686:3;34682:14;34667:29;;34534:168;;;;:::o;34708:373::-;34794:3;34822:38;34854:5;34822:38;:::i;:::-;34876:70;34939:6;34934:3;34876:70;:::i;:::-;34869:77;;34955:65;35013:6;35008:3;35001:4;34994:5;34990:16;34955:65;:::i;:::-;35045:29;35067:6;35045:29;:::i;:::-;35040:3;35036:39;35029:46;;34798:283;34708:373;;;;:::o;35087:640::-;35282:4;35320:3;35309:9;35305:19;35297:27;;35334:71;35402:1;35391:9;35387:17;35378:6;35334:71;:::i;:::-;35415:72;35483:2;35472:9;35468:18;35459:6;35415:72;:::i;:::-;35497;35565:2;35554:9;35550:18;35541:6;35497:72;:::i;:::-;35616:9;35610:4;35606:20;35601:2;35590:9;35586:18;35579:48;35644:76;35715:4;35706:6;35644:76;:::i;:::-;35636:84;;35087:640;;;;;;;:::o;35733:141::-;35789:5;35820:6;35814:13;35805:22;;35836:32;35862:5;35836:32;:::i;:::-;35733:141;;;;:::o;35880:349::-;35949:6;35998:2;35986:9;35977:7;35973:23;35969:32;35966:119;;;36004:79;;:::i;:::-;35966:119;36124:1;36149:63;36204:7;36195:6;36184:9;36180:22;36149:63;:::i;:::-;36139:73;;36095:127;35880:349;;;;:::o

Swarm Source

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