ETH Price: $3,417.21 (-1.13%)
Gas: 10 Gwei

Token

CyberRabbitAC (CBAC)
 

Overview

Max Total Supply

4,350 CBAC

Holders

3,936

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tangtao.eth
Balance
1 CBAC
0x14433a8ed38fd568dee09b138f12937e43dbedae
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:
CyberRabbitAC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-14
*/

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


// OpenZeppelin Contracts v4.4.1 (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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.2
// 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();

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            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;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](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.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/DigiDaigakuMan.sol





library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

pragma solidity ^0.8.4;




contract CyberRabbitAC is ERC721A, Ownable, ReentrancyGuard {
    using Address for address;
    using Strings for uint;
    
    uint256 public MAX_SUPPLY = 5999;
    uint256 public MAX_FREE_SUPPLY = 5999;
    uint256 public MAX_PER_TX = 20;
    string  public baseTokenURI = "ipfs://bafybeiel4gwi57b46h7wwrl6ct5t3xast4inxkweragphjlhmtd2vkgy5m/";
    uint256 public PRICE = 0.003 ether;
    uint256 public MAX_FREE_PER_WALLET = 1;
    bool public mintEnabled = false;

    mapping(address => uint256) public perWalletFreeMinted;

    constructor() ERC721A("CyberRabbitAC", "CBAC") {}


    function devMint(address to, uint amount) external onlyOwner {
		require(
			_totalMinted() + amount <= MAX_SUPPLY,
			'Exceeds max supply'
		);
		_safeMint(to, amount);
	}

    function mint(uint256 amount) external payable
    {
		require(amount <= MAX_PER_TX,"Exceeds NFT per transaction limit");
		require(_totalMinted() + amount <= MAX_SUPPLY,"Exceeds max supply");
        require(mintEnabled, "Minting is not live yet.");
        uint payForCount = amount;
        uint minted = perWalletFreeMinted[msg.sender];
        if(minted < MAX_FREE_PER_WALLET && _totalMinted()<MAX_FREE_SUPPLY) {
            uint remainingFreeMints = MAX_FREE_PER_WALLET - minted;
            if(amount > remainingFreeMints) {
                payForCount = amount - remainingFreeMints;
            }
            else {
                payForCount = 0;
            }
        }
		require(
			msg.value >= payForCount * PRICE,
			'Ether value sent is not sufficient'
		);
    	perWalletFreeMinted[msg.sender] += amount;

        _safeMint(msg.sender, amount);
    }

    function setBaseURI(string memory baseURI) public onlyOwner
    {
        baseTokenURI = baseURI;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    }

    function tokenURI(uint tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : baseTokenURI;
	}

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


    function setMintEnabled(bool _mintEnabled) external onlyOwner
    {
        mintEnabled = _mintEnabled;
    }

    function setPrice(uint256 _price) external onlyOwner
    {
        PRICE = _price;
    }

    function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner
    {
        MAX_PER_TX = _limit;
    }

    function setLimitFreeMintPerWallet(uint256 _limit) external onlyOwner
    {
        MAX_FREE_PER_WALLET = _limit;
    }

    function setMaxFreeAmount(uint256 _amount) external onlyOwner
    {
        MAX_FREE_SUPPLY = _amount;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"perWalletFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setLimitFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintEnabled","type":"bool"}],"name":"setMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261176f600a5561176f600b556014600c556040518060800160405280604381526020016200358460439139600d9080519060200190620000469291906200023b565b50660aa87bee538000600e556001600f556000601060006101000a81548160ff0219169083151502179055503480156200007f57600080fd5b506040518060400160405280600d81526020017f43796265725261626269744143000000000000000000000000000000000000008152506040518060400160405280600481526020017f43424143000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001049291906200023b565b5080600390805190602001906200011d9291906200023b565b506200012e6200016460201b60201c565b6000819055505050620001566200014a6200016d60201b60201c565b6200017560201b60201c565b600160098190555062000350565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024990620002eb565b90600052602060002090601f0160209004810192826200026d5760008555620002b9565b82601f106200028857805160ff1916838001178555620002b9565b82800160010185558215620002b9579182015b82811115620002b85782518255916020019190600101906200029b565b5b509050620002c89190620002cc565b5090565b5b80821115620002e7576000816000905550600101620002cd565b5090565b600060028204905060018216806200030457607f821691505b602082108114156200031b576200031a62000321565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61322480620003606000396000f3fe6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063c87b56dd116100a0578063e19979f51161006f578063e19979f5146106fe578063e985e9c514610727578063f2fde38b14610764578063f43a22dc1461078d578063f46a04eb146107b8576101f9565b8063c87b56dd1461062e578063d0fc579d1461066b578063d1239730146106a8578063d547cfb7146106d3576101f9565b80639e9fcffc116100dc5780639e9fcffc14610597578063a0712d68146105c0578063a22cb465146105dc578063b88d4fde14610605576101f9565b80638da5cb5b146104ed57806391b7f5ed1461051857806395d89b411461054157806398710d1e1461056c576101f9565b806332cb6b0c11610190578063627804af1161015f578063627804af146104085780636352211e1461043157806370a082311461046e578063715018a6146104ab5780638d859f3e146104c2576101f9565b806332cb6b0c146103745780633ccfd60b1461039f57806342842e0e146103b657806355f804b3146103df576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630c23bb3f146102f757806318160ddd1461032057806323b872dd1461034b576101f9565b806301ffc9a7146101fe57806302ddb65b1461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906125f8565b6107e1565b60405161023291906129a1565b60405180910390f35b34801561024757600080fd5b50610250610873565b60405161025d9190612ade565b60405180910390f35b34801561027257600080fd5b5061027b610879565b60405161028891906129bc565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b3919061269b565b61090b565b6040516102c5919061293a565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061258b565b61098a565b005b34801561030357600080fd5b5061031e6004803603810190610319919061269b565b610ace565b005b34801561032c57600080fd5b50610335610ae0565b6040516103429190612ade565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612475565b610af7565b005b34801561038057600080fd5b50610389610e1c565b6040516103969190612ade565b60405180910390f35b3480156103ab57600080fd5b506103b4610e22565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190612475565b610f00565b005b3480156103eb57600080fd5b5061040660048036038101906104019190612652565b610f20565b005b34801561041457600080fd5b5061042f600480360381019061042a919061258b565b610f42565b005b34801561043d57600080fd5b506104586004803603810190610453919061269b565b610faf565b604051610465919061293a565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190612408565b610fc1565b6040516104a29190612ade565b60405180910390f35b3480156104b757600080fd5b506104c061107a565b005b3480156104ce57600080fd5b506104d761108e565b6040516104e49190612ade565b60405180910390f35b3480156104f957600080fd5b50610502611094565b60405161050f919061293a565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a919061269b565b6110be565b005b34801561054d57600080fd5b506105566110d0565b60405161056391906129bc565b60405180910390f35b34801561057857600080fd5b50610581611162565b60405161058e9190612ade565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b9919061269b565b611168565b005b6105da60048036038101906105d5919061269b565b61117a565b005b3480156105e857600080fd5b5061060360048036038101906105fe919061254b565b6113b5565b005b34801561061157600080fd5b5061062c600480360381019061062791906124c8565b61152d565b005b34801561063a57600080fd5b506106556004803603810190610650919061269b565b6115a0565b60405161066291906129bc565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190612408565b6116c3565b60405161069f9190612ade565b60405180910390f35b3480156106b457600080fd5b506106bd6116db565b6040516106ca91906129a1565b60405180910390f35b3480156106df57600080fd5b506106e86116ee565b6040516106f591906129bc565b60405180910390f35b34801561070a57600080fd5b506107256004803603810190610720919061269b565b61177c565b005b34801561073357600080fd5b5061074e60048036038101906107499190612435565b61178e565b60405161075b91906129a1565b60405180910390f35b34801561077057600080fd5b5061078b60048036038101906107869190612408565b611822565b005b34801561079957600080fd5b506107a26118a6565b6040516107af9190612ade565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da91906125cb565b6118ac565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461088890612d99565b80601f01602080910402602001604051908101604052809291908181526020018280546108b490612d99565b80156109015780601f106108d657610100808354040283529160200191610901565b820191906000526020600020905b8154815290600101906020018083116108e457829003601f168201915b5050505050905090565b6000610916826118d1565b61094c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099582610faf565b90508073ffffffffffffffffffffffffffffffffffffffff166109b6611930565b73ffffffffffffffffffffffffffffffffffffffff1614610a19576109e2816109dd611930565b61178e565b610a18576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ad6611938565b80600b8190555050565b6000610aea6119b6565b6001546000540303905090565b6000610b02826119bf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b69576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b7584611a8d565b91509150610b8b8187610b86611930565b611ab4565b610bd757610ba086610b9b611930565b61178e565b610bd6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c3e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4b8686866001611af8565b8015610c5657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d2485610d00888887611afe565b7c020000000000000000000000000000000000000000000000000000000017611b26565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dac576000600185019050600060046000838152602001908152602001600020541415610daa576000548114610da9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e148686866001611b51565b505050505050565b600a5481565b610e2a611938565b60026009541415610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790612abe565b60405180910390fd5b60026009819055506000610e82611094565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ea590612925565b60006040518083038185875af1925050503d8060008114610ee2576040519150601f19603f3d011682016040523d82523d6000602084013e610ee7565b606091505b5050905080610ef557600080fd5b506001600981905550565b610f1b8383836040518060200160405280600081525061152d565b505050565b610f28611938565b80600d9080519060200190610f3e92919061221c565b5050565b610f4a611938565b600a5481610f56611b57565b610f609190612bce565b1115610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890612a1e565b60405180910390fd5b610fab8282611b6a565b5050565b6000610fba826119bf565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611029576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611082611938565b61108c6000611b88565b565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110c6611938565b80600e8190555050565b6060600380546110df90612d99565b80601f016020809104026020016040519081016040528092919081815260200182805461110b90612d99565b80156111585780601f1061112d57610100808354040283529160200191611158565b820191906000526020600020905b81548152906001019060200180831161113b57829003601f168201915b5050505050905090565b600f5481565b611170611938565b80600c8190555050565b600c548111156111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b6906129fe565b60405180910390fd5b600a54816111cb611b57565b6111d59190612bce565b1115611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d90612a1e565b60405180910390fd5b601060009054906101000a900460ff16611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90612a7e565b60405180910390fd5b60008190506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54811080156112c75750600b546112c5611b57565b105b1561130057600081600f546112dc9190612caf565b9050808411156112f95780846112f29190612caf565b92506112fe565b600092505b505b600e548261130e9190612c55565b341015611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790612a3e565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461139f9190612bce565b925050819055506113b03384611b6a565b505050565b6113bd611930565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611422576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061142f611930565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114dc611930565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161152191906129a1565b60405180910390a35050565b611538848484610af7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461159a5761156384848484611c4e565b611599576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115ab826118d1565b6115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190612a9e565b60405180910390fd5b60006115f4611dae565b511161168a57600d805461160790612d99565b80601f016020809104026020016040519081016040528092919081815260200182805461163390612d99565b80156116805780601f1061165557610100808354040283529160200191611680565b820191906000526020600020905b81548152906001019060200180831161166357829003601f168201915b50505050506116bc565b611692611dae565b61169b83611e40565b6040516020016116ac9291906128f6565b6040516020818303038152906040525b9050919050565b60116020528060005260406000206000915090505481565b601060009054906101000a900460ff1681565b600d80546116fb90612d99565b80601f016020809104026020016040519081016040528092919081815260200182805461172790612d99565b80156117745780601f1061174957610100808354040283529160200191611774565b820191906000526020600020905b81548152906001019060200180831161175757829003601f168201915b505050505081565b611784611938565b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61182a611938565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561189a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611891906129de565b60405180910390fd5b6118a381611b88565b50565b600c5481565b6118b4611938565b80601060006101000a81548160ff02191690831515021790555050565b6000816118dc6119b6565b111580156118eb575060005482105b8015611929575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611940611fa1565b73ffffffffffffffffffffffffffffffffffffffff1661195e611094565b73ffffffffffffffffffffffffffffffffffffffff16146119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90612a5e565b60405180910390fd5b565b60006001905090565b600080829050806119ce6119b6565b11611a5657600054811015611a555760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a53575b6000811415611a49576004600083600190039350838152602001908152602001600020549050611a1e565b8092505050611a88565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b15868684611fa9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611b616119b6565b60005403905090565b611b84828260405180602001604052806000815250611fb2565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c74611930565b8786866040518563ffffffff1660e01b8152600401611c969493929190612955565b602060405180830381600087803b158015611cb057600080fd5b505af1925050508015611ce157506040513d601f19601f82011682018060405250810190611cde9190612625565b60015b611d5b573d8060008114611d11576040519150601f19603f3d011682016040523d82523d6000602084013e611d16565b606091505b50600081511415611d53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611dbd90612d99565b80601f0160208091040260200160405190810160405280929190818152602001828054611de990612d99565b8015611e365780601f10611e0b57610100808354040283529160200191611e36565b820191906000526020600020905b815481529060010190602001808311611e1957829003601f168201915b5050505050905090565b60606000821415611e88576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f9c565b600082905060005b60008214611eba578080611ea390612dfc565b915050600a82611eb39190612c24565b9150611e90565b60008167ffffffffffffffff811115611ed657611ed5612f32565b5b6040519080825280601f01601f191660200182016040528015611f085781602001600182028036833780820191505090505b5090505b60008514611f9557600182611f219190612caf565b9150600a85611f309190612e45565b6030611f3c9190612bce565b60f81b818381518110611f5257611f51612f03565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f8e9190612c24565b9450611f0c565b8093505050505b919050565b600033905090565b60009392505050565b611fbc838361204f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461204a57600080549050600083820390505b611ffc6000868380600101945086611c4e565b612032576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fe957816000541461204757600080fd5b50505b505050565b6000805490506000821415612090576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61209d6000848385611af8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612114836121056000866000611afe565b61210e8561220c565b17611b26565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121b557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061217a565b5060008214156121f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122076000848385611b51565b505050565b60006001821460e11b9050919050565b82805461222890612d99565b90600052602060002090601f01602090048101928261224a5760008555612291565b82601f1061226357805160ff1916838001178555612291565b82800160010185558215612291579182015b82811115612290578251825591602001919060010190612275565b5b50905061229e91906122a2565b5090565b5b808211156122bb5760008160009055506001016122a3565b5090565b60006122d26122cd84612b1e565b612af9565b9050828152602081018484840111156122ee576122ed612f66565b5b6122f9848285612d57565b509392505050565b600061231461230f84612b4f565b612af9565b9050828152602081018484840111156123305761232f612f66565b5b61233b848285612d57565b509392505050565b60008135905061235281613192565b92915050565b600081359050612367816131a9565b92915050565b60008135905061237c816131c0565b92915050565b600081519050612391816131c0565b92915050565b600082601f8301126123ac576123ab612f61565b5b81356123bc8482602086016122bf565b91505092915050565b600082601f8301126123da576123d9612f61565b5b81356123ea848260208601612301565b91505092915050565b600081359050612402816131d7565b92915050565b60006020828403121561241e5761241d612f70565b5b600061242c84828501612343565b91505092915050565b6000806040838503121561244c5761244b612f70565b5b600061245a85828601612343565b925050602061246b85828601612343565b9150509250929050565b60008060006060848603121561248e5761248d612f70565b5b600061249c86828701612343565b93505060206124ad86828701612343565b92505060406124be868287016123f3565b9150509250925092565b600080600080608085870312156124e2576124e1612f70565b5b60006124f087828801612343565b945050602061250187828801612343565b9350506040612512878288016123f3565b925050606085013567ffffffffffffffff81111561253357612532612f6b565b5b61253f87828801612397565b91505092959194509250565b6000806040838503121561256257612561612f70565b5b600061257085828601612343565b925050602061258185828601612358565b9150509250929050565b600080604083850312156125a2576125a1612f70565b5b60006125b085828601612343565b92505060206125c1858286016123f3565b9150509250929050565b6000602082840312156125e1576125e0612f70565b5b60006125ef84828501612358565b91505092915050565b60006020828403121561260e5761260d612f70565b5b600061261c8482850161236d565b91505092915050565b60006020828403121561263b5761263a612f70565b5b600061264984828501612382565b91505092915050565b60006020828403121561266857612667612f70565b5b600082013567ffffffffffffffff81111561268657612685612f6b565b5b612692848285016123c5565b91505092915050565b6000602082840312156126b1576126b0612f70565b5b60006126bf848285016123f3565b91505092915050565b6126d181612ce3565b82525050565b6126e081612cf5565b82525050565b60006126f182612b80565b6126fb8185612b96565b935061270b818560208601612d66565b61271481612f75565b840191505092915050565b600061272a82612b8b565b6127348185612bb2565b9350612744818560208601612d66565b61274d81612f75565b840191505092915050565b600061276382612b8b565b61276d8185612bc3565b935061277d818560208601612d66565b80840191505092915050565b6000612796602683612bb2565b91506127a182612f86565b604082019050919050565b60006127b9602183612bb2565b91506127c482612fd5565b604082019050919050565b60006127dc601283612bb2565b91506127e782613024565b602082019050919050565b60006127ff602283612bb2565b915061280a8261304d565b604082019050919050565b6000612822600583612bc3565b915061282d8261309c565b600582019050919050565b6000612845602083612bb2565b9150612850826130c5565b602082019050919050565b6000612868601883612bb2565b9150612873826130ee565b602082019050919050565b600061288b602f83612bb2565b915061289682613117565b604082019050919050565b60006128ae600083612ba7565b91506128b982613166565b600082019050919050565b60006128d1601f83612bb2565b91506128dc82613169565b602082019050919050565b6128f081612d4d565b82525050565b60006129028285612758565b915061290e8284612758565b915061291982612815565b91508190509392505050565b6000612930826128a1565b9150819050919050565b600060208201905061294f60008301846126c8565b92915050565b600060808201905061296a60008301876126c8565b61297760208301866126c8565b61298460408301856128e7565b818103606083015261299681846126e6565b905095945050505050565b60006020820190506129b660008301846126d7565b92915050565b600060208201905081810360008301526129d6818461271f565b905092915050565b600060208201905081810360008301526129f781612789565b9050919050565b60006020820190508181036000830152612a17816127ac565b9050919050565b60006020820190508181036000830152612a37816127cf565b9050919050565b60006020820190508181036000830152612a57816127f2565b9050919050565b60006020820190508181036000830152612a7781612838565b9050919050565b60006020820190508181036000830152612a978161285b565b9050919050565b60006020820190508181036000830152612ab78161287e565b9050919050565b60006020820190508181036000830152612ad7816128c4565b9050919050565b6000602082019050612af360008301846128e7565b92915050565b6000612b03612b14565b9050612b0f8282612dcb565b919050565b6000604051905090565b600067ffffffffffffffff821115612b3957612b38612f32565b5b612b4282612f75565b9050602081019050919050565b600067ffffffffffffffff821115612b6a57612b69612f32565b5b612b7382612f75565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612bd982612d4d565b9150612be483612d4d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c1957612c18612e76565b5b828201905092915050565b6000612c2f82612d4d565b9150612c3a83612d4d565b925082612c4a57612c49612ea5565b5b828204905092915050565b6000612c6082612d4d565b9150612c6b83612d4d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ca457612ca3612e76565b5b828202905092915050565b6000612cba82612d4d565b9150612cc583612d4d565b925082821015612cd857612cd7612e76565b5b828203905092915050565b6000612cee82612d2d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d84578082015181840152602081019050612d69565b83811115612d93576000848401525b50505050565b60006002820490506001821680612db157607f821691505b60208210811415612dc557612dc4612ed4565b5b50919050565b612dd482612f75565b810181811067ffffffffffffffff82111715612df357612df2612f32565b5b80604052505050565b6000612e0782612d4d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e3a57612e39612e76565b5b600182019050919050565b6000612e5082612d4d565b9150612e5b83612d4d565b925082612e6b57612e6a612ea5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473204e465420706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61319b81612ce3565b81146131a657600080fd5b50565b6131b281612cf5565b81146131bd57600080fd5b50565b6131c981612d01565b81146131d457600080fd5b50565b6131e081612d4d565b81146131eb57600080fd5b5056fea264697066735822122089c251bca6aff1ddac5e9661e74961e0d4edecf44cb8e0db965399c746c2cdd564736f6c63430008070033697066733a2f2f62616679626569656c34677769353762343668377777726c3663743574337861737434696e786b776572616770686a6c686d746432766b6779356d2f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063c87b56dd116100a0578063e19979f51161006f578063e19979f5146106fe578063e985e9c514610727578063f2fde38b14610764578063f43a22dc1461078d578063f46a04eb146107b8576101f9565b8063c87b56dd1461062e578063d0fc579d1461066b578063d1239730146106a8578063d547cfb7146106d3576101f9565b80639e9fcffc116100dc5780639e9fcffc14610597578063a0712d68146105c0578063a22cb465146105dc578063b88d4fde14610605576101f9565b80638da5cb5b146104ed57806391b7f5ed1461051857806395d89b411461054157806398710d1e1461056c576101f9565b806332cb6b0c11610190578063627804af1161015f578063627804af146104085780636352211e1461043157806370a082311461046e578063715018a6146104ab5780638d859f3e146104c2576101f9565b806332cb6b0c146103745780633ccfd60b1461039f57806342842e0e146103b657806355f804b3146103df576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630c23bb3f146102f757806318160ddd1461032057806323b872dd1461034b576101f9565b806301ffc9a7146101fe57806302ddb65b1461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906125f8565b6107e1565b60405161023291906129a1565b60405180910390f35b34801561024757600080fd5b50610250610873565b60405161025d9190612ade565b60405180910390f35b34801561027257600080fd5b5061027b610879565b60405161028891906129bc565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b3919061269b565b61090b565b6040516102c5919061293a565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061258b565b61098a565b005b34801561030357600080fd5b5061031e6004803603810190610319919061269b565b610ace565b005b34801561032c57600080fd5b50610335610ae0565b6040516103429190612ade565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612475565b610af7565b005b34801561038057600080fd5b50610389610e1c565b6040516103969190612ade565b60405180910390f35b3480156103ab57600080fd5b506103b4610e22565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190612475565b610f00565b005b3480156103eb57600080fd5b5061040660048036038101906104019190612652565b610f20565b005b34801561041457600080fd5b5061042f600480360381019061042a919061258b565b610f42565b005b34801561043d57600080fd5b506104586004803603810190610453919061269b565b610faf565b604051610465919061293a565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190612408565b610fc1565b6040516104a29190612ade565b60405180910390f35b3480156104b757600080fd5b506104c061107a565b005b3480156104ce57600080fd5b506104d761108e565b6040516104e49190612ade565b60405180910390f35b3480156104f957600080fd5b50610502611094565b60405161050f919061293a565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a919061269b565b6110be565b005b34801561054d57600080fd5b506105566110d0565b60405161056391906129bc565b60405180910390f35b34801561057857600080fd5b50610581611162565b60405161058e9190612ade565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b9919061269b565b611168565b005b6105da60048036038101906105d5919061269b565b61117a565b005b3480156105e857600080fd5b5061060360048036038101906105fe919061254b565b6113b5565b005b34801561061157600080fd5b5061062c600480360381019061062791906124c8565b61152d565b005b34801561063a57600080fd5b506106556004803603810190610650919061269b565b6115a0565b60405161066291906129bc565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190612408565b6116c3565b60405161069f9190612ade565b60405180910390f35b3480156106b457600080fd5b506106bd6116db565b6040516106ca91906129a1565b60405180910390f35b3480156106df57600080fd5b506106e86116ee565b6040516106f591906129bc565b60405180910390f35b34801561070a57600080fd5b506107256004803603810190610720919061269b565b61177c565b005b34801561073357600080fd5b5061074e60048036038101906107499190612435565b61178e565b60405161075b91906129a1565b60405180910390f35b34801561077057600080fd5b5061078b60048036038101906107869190612408565b611822565b005b34801561079957600080fd5b506107a26118a6565b6040516107af9190612ade565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da91906125cb565b6118ac565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461088890612d99565b80601f01602080910402602001604051908101604052809291908181526020018280546108b490612d99565b80156109015780601f106108d657610100808354040283529160200191610901565b820191906000526020600020905b8154815290600101906020018083116108e457829003601f168201915b5050505050905090565b6000610916826118d1565b61094c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099582610faf565b90508073ffffffffffffffffffffffffffffffffffffffff166109b6611930565b73ffffffffffffffffffffffffffffffffffffffff1614610a19576109e2816109dd611930565b61178e565b610a18576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ad6611938565b80600b8190555050565b6000610aea6119b6565b6001546000540303905090565b6000610b02826119bf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b69576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b7584611a8d565b91509150610b8b8187610b86611930565b611ab4565b610bd757610ba086610b9b611930565b61178e565b610bd6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c3e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4b8686866001611af8565b8015610c5657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d2485610d00888887611afe565b7c020000000000000000000000000000000000000000000000000000000017611b26565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dac576000600185019050600060046000838152602001908152602001600020541415610daa576000548114610da9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e148686866001611b51565b505050505050565b600a5481565b610e2a611938565b60026009541415610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790612abe565b60405180910390fd5b60026009819055506000610e82611094565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ea590612925565b60006040518083038185875af1925050503d8060008114610ee2576040519150601f19603f3d011682016040523d82523d6000602084013e610ee7565b606091505b5050905080610ef557600080fd5b506001600981905550565b610f1b8383836040518060200160405280600081525061152d565b505050565b610f28611938565b80600d9080519060200190610f3e92919061221c565b5050565b610f4a611938565b600a5481610f56611b57565b610f609190612bce565b1115610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890612a1e565b60405180910390fd5b610fab8282611b6a565b5050565b6000610fba826119bf565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611029576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611082611938565b61108c6000611b88565b565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110c6611938565b80600e8190555050565b6060600380546110df90612d99565b80601f016020809104026020016040519081016040528092919081815260200182805461110b90612d99565b80156111585780601f1061112d57610100808354040283529160200191611158565b820191906000526020600020905b81548152906001019060200180831161113b57829003601f168201915b5050505050905090565b600f5481565b611170611938565b80600c8190555050565b600c548111156111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b6906129fe565b60405180910390fd5b600a54816111cb611b57565b6111d59190612bce565b1115611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d90612a1e565b60405180910390fd5b601060009054906101000a900460ff16611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90612a7e565b60405180910390fd5b60008190506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54811080156112c75750600b546112c5611b57565b105b1561130057600081600f546112dc9190612caf565b9050808411156112f95780846112f29190612caf565b92506112fe565b600092505b505b600e548261130e9190612c55565b341015611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790612a3e565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461139f9190612bce565b925050819055506113b03384611b6a565b505050565b6113bd611930565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611422576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061142f611930565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114dc611930565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161152191906129a1565b60405180910390a35050565b611538848484610af7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461159a5761156384848484611c4e565b611599576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115ab826118d1565b6115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190612a9e565b60405180910390fd5b60006115f4611dae565b511161168a57600d805461160790612d99565b80601f016020809104026020016040519081016040528092919081815260200182805461163390612d99565b80156116805780601f1061165557610100808354040283529160200191611680565b820191906000526020600020905b81548152906001019060200180831161166357829003601f168201915b50505050506116bc565b611692611dae565b61169b83611e40565b6040516020016116ac9291906128f6565b6040516020818303038152906040525b9050919050565b60116020528060005260406000206000915090505481565b601060009054906101000a900460ff1681565b600d80546116fb90612d99565b80601f016020809104026020016040519081016040528092919081815260200182805461172790612d99565b80156117745780601f1061174957610100808354040283529160200191611774565b820191906000526020600020905b81548152906001019060200180831161175757829003601f168201915b505050505081565b611784611938565b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61182a611938565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561189a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611891906129de565b60405180910390fd5b6118a381611b88565b50565b600c5481565b6118b4611938565b80601060006101000a81548160ff02191690831515021790555050565b6000816118dc6119b6565b111580156118eb575060005482105b8015611929575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611940611fa1565b73ffffffffffffffffffffffffffffffffffffffff1661195e611094565b73ffffffffffffffffffffffffffffffffffffffff16146119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90612a5e565b60405180910390fd5b565b60006001905090565b600080829050806119ce6119b6565b11611a5657600054811015611a555760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a53575b6000811415611a49576004600083600190039350838152602001908152602001600020549050611a1e565b8092505050611a88565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b15868684611fa9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611b616119b6565b60005403905090565b611b84828260405180602001604052806000815250611fb2565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c74611930565b8786866040518563ffffffff1660e01b8152600401611c969493929190612955565b602060405180830381600087803b158015611cb057600080fd5b505af1925050508015611ce157506040513d601f19601f82011682018060405250810190611cde9190612625565b60015b611d5b573d8060008114611d11576040519150601f19603f3d011682016040523d82523d6000602084013e611d16565b606091505b50600081511415611d53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611dbd90612d99565b80601f0160208091040260200160405190810160405280929190818152602001828054611de990612d99565b8015611e365780601f10611e0b57610100808354040283529160200191611e36565b820191906000526020600020905b815481529060010190602001808311611e1957829003601f168201915b5050505050905090565b60606000821415611e88576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f9c565b600082905060005b60008214611eba578080611ea390612dfc565b915050600a82611eb39190612c24565b9150611e90565b60008167ffffffffffffffff811115611ed657611ed5612f32565b5b6040519080825280601f01601f191660200182016040528015611f085781602001600182028036833780820191505090505b5090505b60008514611f9557600182611f219190612caf565b9150600a85611f309190612e45565b6030611f3c9190612bce565b60f81b818381518110611f5257611f51612f03565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f8e9190612c24565b9450611f0c565b8093505050505b919050565b600033905090565b60009392505050565b611fbc838361204f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461204a57600080549050600083820390505b611ffc6000868380600101945086611c4e565b612032576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fe957816000541461204757600080fd5b50505b505050565b6000805490506000821415612090576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61209d6000848385611af8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612114836121056000866000611afe565b61210e8561220c565b17611b26565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121b557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061217a565b5060008214156121f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122076000848385611b51565b505050565b60006001821460e11b9050919050565b82805461222890612d99565b90600052602060002090601f01602090048101928261224a5760008555612291565b82601f1061226357805160ff1916838001178555612291565b82800160010185558215612291579182015b82811115612290578251825591602001919060010190612275565b5b50905061229e91906122a2565b5090565b5b808211156122bb5760008160009055506001016122a3565b5090565b60006122d26122cd84612b1e565b612af9565b9050828152602081018484840111156122ee576122ed612f66565b5b6122f9848285612d57565b509392505050565b600061231461230f84612b4f565b612af9565b9050828152602081018484840111156123305761232f612f66565b5b61233b848285612d57565b509392505050565b60008135905061235281613192565b92915050565b600081359050612367816131a9565b92915050565b60008135905061237c816131c0565b92915050565b600081519050612391816131c0565b92915050565b600082601f8301126123ac576123ab612f61565b5b81356123bc8482602086016122bf565b91505092915050565b600082601f8301126123da576123d9612f61565b5b81356123ea848260208601612301565b91505092915050565b600081359050612402816131d7565b92915050565b60006020828403121561241e5761241d612f70565b5b600061242c84828501612343565b91505092915050565b6000806040838503121561244c5761244b612f70565b5b600061245a85828601612343565b925050602061246b85828601612343565b9150509250929050565b60008060006060848603121561248e5761248d612f70565b5b600061249c86828701612343565b93505060206124ad86828701612343565b92505060406124be868287016123f3565b9150509250925092565b600080600080608085870312156124e2576124e1612f70565b5b60006124f087828801612343565b945050602061250187828801612343565b9350506040612512878288016123f3565b925050606085013567ffffffffffffffff81111561253357612532612f6b565b5b61253f87828801612397565b91505092959194509250565b6000806040838503121561256257612561612f70565b5b600061257085828601612343565b925050602061258185828601612358565b9150509250929050565b600080604083850312156125a2576125a1612f70565b5b60006125b085828601612343565b92505060206125c1858286016123f3565b9150509250929050565b6000602082840312156125e1576125e0612f70565b5b60006125ef84828501612358565b91505092915050565b60006020828403121561260e5761260d612f70565b5b600061261c8482850161236d565b91505092915050565b60006020828403121561263b5761263a612f70565b5b600061264984828501612382565b91505092915050565b60006020828403121561266857612667612f70565b5b600082013567ffffffffffffffff81111561268657612685612f6b565b5b612692848285016123c5565b91505092915050565b6000602082840312156126b1576126b0612f70565b5b60006126bf848285016123f3565b91505092915050565b6126d181612ce3565b82525050565b6126e081612cf5565b82525050565b60006126f182612b80565b6126fb8185612b96565b935061270b818560208601612d66565b61271481612f75565b840191505092915050565b600061272a82612b8b565b6127348185612bb2565b9350612744818560208601612d66565b61274d81612f75565b840191505092915050565b600061276382612b8b565b61276d8185612bc3565b935061277d818560208601612d66565b80840191505092915050565b6000612796602683612bb2565b91506127a182612f86565b604082019050919050565b60006127b9602183612bb2565b91506127c482612fd5565b604082019050919050565b60006127dc601283612bb2565b91506127e782613024565b602082019050919050565b60006127ff602283612bb2565b915061280a8261304d565b604082019050919050565b6000612822600583612bc3565b915061282d8261309c565b600582019050919050565b6000612845602083612bb2565b9150612850826130c5565b602082019050919050565b6000612868601883612bb2565b9150612873826130ee565b602082019050919050565b600061288b602f83612bb2565b915061289682613117565b604082019050919050565b60006128ae600083612ba7565b91506128b982613166565b600082019050919050565b60006128d1601f83612bb2565b91506128dc82613169565b602082019050919050565b6128f081612d4d565b82525050565b60006129028285612758565b915061290e8284612758565b915061291982612815565b91508190509392505050565b6000612930826128a1565b9150819050919050565b600060208201905061294f60008301846126c8565b92915050565b600060808201905061296a60008301876126c8565b61297760208301866126c8565b61298460408301856128e7565b818103606083015261299681846126e6565b905095945050505050565b60006020820190506129b660008301846126d7565b92915050565b600060208201905081810360008301526129d6818461271f565b905092915050565b600060208201905081810360008301526129f781612789565b9050919050565b60006020820190508181036000830152612a17816127ac565b9050919050565b60006020820190508181036000830152612a37816127cf565b9050919050565b60006020820190508181036000830152612a57816127f2565b9050919050565b60006020820190508181036000830152612a7781612838565b9050919050565b60006020820190508181036000830152612a978161285b565b9050919050565b60006020820190508181036000830152612ab78161287e565b9050919050565b60006020820190508181036000830152612ad7816128c4565b9050919050565b6000602082019050612af360008301846128e7565b92915050565b6000612b03612b14565b9050612b0f8282612dcb565b919050565b6000604051905090565b600067ffffffffffffffff821115612b3957612b38612f32565b5b612b4282612f75565b9050602081019050919050565b600067ffffffffffffffff821115612b6a57612b69612f32565b5b612b7382612f75565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612bd982612d4d565b9150612be483612d4d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c1957612c18612e76565b5b828201905092915050565b6000612c2f82612d4d565b9150612c3a83612d4d565b925082612c4a57612c49612ea5565b5b828204905092915050565b6000612c6082612d4d565b9150612c6b83612d4d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ca457612ca3612e76565b5b828202905092915050565b6000612cba82612d4d565b9150612cc583612d4d565b925082821015612cd857612cd7612e76565b5b828203905092915050565b6000612cee82612d2d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d84578082015181840152602081019050612d69565b83811115612d93576000848401525b50505050565b60006002820490506001821680612db157607f821691505b60208210811415612dc557612dc4612ed4565b5b50919050565b612dd482612f75565b810181811067ffffffffffffffff82111715612df357612df2612f32565b5b80604052505050565b6000612e0782612d4d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e3a57612e39612e76565b5b600182019050919050565b6000612e5082612d4d565b9150612e5b83612d4d565b925082612e6b57612e6a612ea5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473204e465420706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61319b81612ce3565b81146131a657600080fd5b50565b6131b281612cf5565b81146131bd57600080fd5b50565b6131c981612d01565b81146131d457600080fd5b50565b6131e081612d4d565b81146131eb57600080fd5b5056fea264697066735822122089c251bca6aff1ddac5e9661e74961e0d4edecf44cb8e0db965399c746c2cdd564736f6c63430008070033

Deployed Bytecode Sourcemap

67924:3144:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21227:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68097:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22129:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28612:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28053:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70952:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17880:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32319:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68058:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69837:160;;;;;;;;;;;;;:::i;:::-;;35232:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69616:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68532:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23522:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19064:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56394:103;;;;;;;;;;;;;:::i;:::-;;68284:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55746:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70602:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22305:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68325:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70701:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68718:890;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29170:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36015:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70005:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68410:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68370:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68178:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70822:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29635:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56652:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68141:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70482:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21227:639;21312:4;21651:10;21636:25;;:11;:25;;;;:102;;;;21728:10;21713:25;;:11;:25;;;;21636:102;:179;;;;21805:10;21790:25;;:11;:25;;;;21636:179;21616:199;;21227:639;;;:::o;68097:37::-;;;;:::o;22129:100::-;22183:13;22216:5;22209:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22129:100;:::o;28612:218::-;28688:7;28713:16;28721:7;28713;:16::i;:::-;28708:64;;28738:34;;;;;;;;;;;;;;28708:64;28792:15;:24;28808:7;28792:24;;;;;;;;;;;:30;;;;;;;;;;;;28785:37;;28612:218;;;:::o;28053:400::-;28134:13;28150:16;28158:7;28150;:16::i;:::-;28134:32;;28206:5;28183:28;;:19;:17;:19::i;:::-;:28;;;28179:175;;28231:44;28248:5;28255:19;:17;:19::i;:::-;28231:16;:44::i;:::-;28226:128;;28303:35;;;;;;;;;;;;;;28226:128;28179:175;28399:2;28366:15;:24;28382:7;28366:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28437:7;28433:2;28417:28;;28426:5;28417:28;;;;;;;;;;;;28123:330;28053:400;;:::o;70952:111::-;55632:13;:11;:13::i;:::-;71048:7:::1;71030:15;:25;;;;70952:111:::0;:::o;17880:323::-;17941:7;18169:15;:13;:15::i;:::-;18154:12;;18138:13;;:28;:46;18131:53;;17880:323;:::o;32319:2817::-;32453:27;32483;32502:7;32483:18;:27::i;:::-;32453:57;;32568:4;32527:45;;32543:19;32527:45;;;32523:86;;32581:28;;;;;;;;;;;;;;32523:86;32623:27;32652:23;32679:35;32706:7;32679:26;:35::i;:::-;32622:92;;;;32814:68;32839:15;32856:4;32862:19;:17;:19::i;:::-;32814:24;:68::i;:::-;32809:180;;32902:43;32919:4;32925:19;:17;:19::i;:::-;32902:16;:43::i;:::-;32897:92;;32954:35;;;;;;;;;;;;;;32897:92;32809:180;33020:1;33006:16;;:2;:16;;;33002:52;;;33031:23;;;;;;;;;;;;;;33002:52;33067:43;33089:4;33095:2;33099:7;33108:1;33067:21;:43::i;:::-;33203:15;33200:160;;;33343:1;33322:19;33315:30;33200:160;33740:18;:24;33759:4;33740:24;;;;;;;;;;;;;;;;33738:26;;;;;;;;;;;;33809:18;:22;33828:2;33809:22;;;;;;;;;;;;;;;;33807:24;;;;;;;;;;;34131:146;34168:2;34217:45;34232:4;34238:2;34242:19;34217:14;:45::i;:::-;14279:8;34189:73;34131:18;:146::i;:::-;34102:17;:26;34120:7;34102:26;;;;;;;;;;;:175;;;;34448:1;14279:8;34397:19;:47;:52;34393:627;;;34470:19;34502:1;34492:7;:11;34470:33;;34659:1;34625:17;:30;34643:11;34625:30;;;;;;;;;;;;:35;34621:384;;;34763:13;;34748:11;:28;34744:242;;34943:19;34910:17;:30;34928:11;34910:30;;;;;;;;;;;:52;;;;34744:242;34621:384;34451:569;34393:627;35067:7;35063:2;35048:27;;35057:4;35048:27;;;;;;;;;;;;35086:42;35107:4;35113:2;35117:7;35126:1;35086:20;:42::i;:::-;32442:2694;;;32319:2817;;;:::o;68058:32::-;;;;:::o;69837:160::-;55632:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;69899:7:::2;69920;:5;:7::i;:::-;69912:21;;69941;69912:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69898:69;;;69986:2;69978:11;;;::::0;::::2;;69887:110;1801:1:::1;2755:7;:22;;;;69837:160::o:0;35232:185::-;35370:39;35387:4;35393:2;35397:7;35370:39;;;;;;;;;;;;:16;:39::i;:::-;35232:185;;;:::o;69616:106::-;55632:13;:11;:13::i;:::-;69707:7:::1;69692:12;:22;;;;;;;;;;;;:::i;:::-;;69616:106:::0;:::o;68532:178::-;55632:13;:11;:13::i;:::-;68638:10:::1;;68628:6;68611:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;68598:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;68684:21;68694:2;68698:6;68684:9;:21::i;:::-;68532:178:::0;;:::o;23522:152::-;23594:7;23637:27;23656:7;23637:18;:27::i;:::-;23614:52;;23522:152;;;:::o;19064:233::-;19136:7;19177:1;19160:19;;:5;:19;;;19156:60;;;19188:28;;;;;;;;;;;;;;19156:60;13223:13;19234:18;:25;19253:5;19234:25;;;;;;;;;;;;;;;;:55;19227:62;;19064:233;;;:::o;56394:103::-;55632:13;:11;:13::i;:::-;56459:30:::1;56486:1;56459:18;:30::i;:::-;56394:103::o:0;68284:34::-;;;;:::o;55746:87::-;55792:7;55819:6;;;;;;;;;;;55812:13;;55746:87;:::o;70602:91::-;55632:13;:11;:13::i;:::-;70679:6:::1;70671:5;:14;;;;70602:91:::0;:::o;22305:104::-;22361:13;22394:7;22387:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22305:104;:::o;68325:38::-;;;;:::o;70701:113::-;55632:13;:11;:13::i;:::-;70800:6:::1;70787:10;:19;;;;70701:113:::0;:::o;68718:890::-;68793:10;;68783:6;:20;;68775:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;68880:10;;68870:6;68853:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;68845:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;68931:11;;;;;;;;;;;68923:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;68982:16;69001:6;68982:25;;69018:11;69032:19;:31;69052:10;69032:31;;;;;;;;;;;;;;;;69018:45;;69086:19;;69077:6;:28;:62;;;;;69124:15;;69109:14;:12;:14::i;:::-;:30;69077:62;69074:339;;;69156:23;69204:6;69182:19;;:28;;;;:::i;:::-;69156:54;;69237:18;69228:6;:27;69225:177;;;69299:18;69290:6;:27;;;;:::i;:::-;69276:41;;69225:177;;;69385:1;69371:15;;69225:177;69141:272;69074:339;69457:5;;69443:11;:19;;;;:::i;:::-;69430:9;:32;;69417:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;69552:6;69517:19;:31;69537:10;69517:31;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;69571:29;69581:10;69593:6;69571:9;:29::i;:::-;68770:838;;68718:890;:::o;29170:308::-;29281:19;:17;:19::i;:::-;29269:31;;:8;:31;;;29265:61;;;29309:17;;;;;;;;;;;;;;29265:61;29391:8;29339:18;:39;29358:19;:17;:19::i;:::-;29339:39;;;;;;;;;;;;;;;:49;29379:8;29339:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29451:8;29415:55;;29430:19;:17;:19::i;:::-;29415:55;;;29461:8;29415:55;;;;;;:::i;:::-;;;;;;;;29170:308;;:::o;36015:399::-;36182:31;36195:4;36201:2;36205:7;36182:12;:31::i;:::-;36246:1;36228:2;:14;;;:19;36224:183;;36267:56;36298:4;36304:2;36308:7;36317:5;36267:30;:56::i;:::-;36262:145;;36351:40;;;;;;;;;;;;;;36262:145;36224:183;36015:399;;;;:::o;70005:341::-;70079:13;70115:16;70123:7;70115;:16::i;:::-;70107:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;70230:1;70209:10;:8;:10::i;:::-;70203:24;:28;:138;;70329:12;70203:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70272:10;:8;:10::i;:::-;70284:18;:7;:16;:18::i;:::-;70255:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70203:138;70196:145;;70005:341;;;:::o;68410:54::-;;;;;;;;;;;;;;;;;:::o;68370:31::-;;;;;;;;;;;;;:::o;68178:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70822:122::-;55632:13;:11;:13::i;:::-;70930:6:::1;70908:19;:28;;;;70822:122:::0;:::o;29635:164::-;29732:4;29756:18;:25;29775:5;29756:25;;;;;;;;;;;;;;;:35;29782:8;29756:35;;;;;;;;;;;;;;;;;;;;;;;;;29749:42;;29635:164;;;;:::o;56652:201::-;55632:13;:11;:13::i;:::-;56761:1:::1;56741:22;;:8;:22;;;;56733:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56817:28;56836:8;56817:18;:28::i;:::-;56652:201:::0;:::o;68141:30::-;;;;:::o;70482:112::-;55632:13;:11;:13::i;:::-;70574:12:::1;70560:11;;:26;;;;;;;;;;;;;;;;;;70482:112:::0;:::o;30057:282::-;30122:4;30178:7;30159:15;:13;:15::i;:::-;:26;;:66;;;;;30212:13;;30202:7;:23;30159:66;:153;;;;;30311:1;13999:8;30263:17;:26;30281:7;30263:26;;;;;;;;;;;;:44;:49;30159:153;30139:173;;30057:282;;;:::o;51823:105::-;51883:7;51910:10;51903:17;;51823:105;:::o;55911:132::-;55986:12;:10;:12::i;:::-;55975:23;;:7;:5;:7::i;:::-;:23;;;55967:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55911:132::o;69730:101::-;69795:7;69822:1;69815:8;;69730:101;:::o;24677:1275::-;24744:7;24764:12;24779:7;24764:22;;24847:4;24828:15;:13;:15::i;:::-;:23;24824:1061;;24881:13;;24874:4;:20;24870:1015;;;24919:14;24936:17;:23;24954:4;24936:23;;;;;;;;;;;;24919:40;;25053:1;13999:8;25025:6;:24;:29;25021:845;;;25690:113;25707:1;25697:6;:11;25690:113;;;25750:17;:25;25768:6;;;;;;;25750:25;;;;;;;;;;;;25741:34;;25690:113;;;25836:6;25829:13;;;;;;25021:845;24896:989;24870:1015;24824:1061;25913:31;;;;;;;;;;;;;;24677:1275;;;;:::o;31220:479::-;31322:27;31351:23;31392:38;31433:15;:24;31449:7;31433:24;;;;;;;;;;;31392:65;;31604:18;31581:41;;31661:19;31655:26;31636:45;;31566:126;31220:479;;;:::o;30448:659::-;30597:11;30762:16;30755:5;30751:28;30742:37;;30922:16;30911:9;30907:32;30894:45;;31072:15;31061:9;31058:30;31050:5;31039:9;31036:20;31033:56;31023:66;;30448:659;;;;;:::o;37076:159::-;;;;;:::o;51132:311::-;51267:7;51287:16;14403:3;51313:19;:41;;51287:68;;14403:3;51381:31;51392:4;51398:2;51402:9;51381:10;:31::i;:::-;51373:40;;:62;;51366:69;;;51132:311;;;;;:::o;26500:450::-;26580:14;26748:16;26741:5;26737:28;26728:37;;26925:5;26911:11;26886:23;26882:41;26879:52;26872:5;26869:63;26859:73;;26500:450;;;;:::o;37900:158::-;;;;;:::o;18301:296::-;18356:7;18563:15;:13;:15::i;:::-;18547:13;;:31;18540:38;;18301:296;:::o;45655:112::-;45732:27;45742:2;45746:8;45732:27;;;;;;;;;;;;:9;:27::i;:::-;45655:112;;:::o;57013:191::-;57087:16;57106:6;;;;;;;;;;;57087:25;;57132:8;57123:6;;:17;;;;;;;;;;;;;;;;;;57187:8;57156:40;;57177:8;57156:40;;;;;;;;;;;;57076:128;57013:191;:::o;38498:716::-;38661:4;38707:2;38682:45;;;38728:19;:17;:19::i;:::-;38749:4;38755:7;38764:5;38682:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38678:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38982:1;38965:6;:13;:18;38961:235;;;39011:40;;;;;;;;;;;;;;38961:235;39154:6;39148:13;39139:6;39135:2;39131:15;39124:38;38678:529;38851:54;;;38841:64;;;:6;:64;;;;38834:71;;;38498:716;;;;;;:::o;70354:118::-;70414:13;70452:12;70445:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70354:118;:::o;57498:723::-;57554:13;57784:1;57775:5;:10;57771:53;;;57802:10;;;;;;;;;;;;;;;;;;;;;57771:53;57834:12;57849:5;57834:20;;57865:14;57890:78;57905:1;57897:4;:9;57890:78;;57923:8;;;;;:::i;:::-;;;;57954:2;57946:10;;;;;:::i;:::-;;;57890:78;;;57978:19;58010:6;58000:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57978:39;;58028:154;58044:1;58035:5;:10;58028:154;;58072:1;58062:11;;;;;:::i;:::-;;;58139:2;58131:5;:10;;;;:::i;:::-;58118:2;:24;;;;:::i;:::-;58105:39;;58088:6;58095;58088:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;58168:2;58159:11;;;;;:::i;:::-;;;58028:154;;;58206:6;58192:21;;;;;57498:723;;;;:::o;54297:98::-;54350:7;54377:10;54370:17;;54297:98;:::o;50833:147::-;50970:6;50833:147;;;;;:::o;44882:689::-;45013:19;45019:2;45023:8;45013:5;:19::i;:::-;45092:1;45074:2;:14;;;:19;45070:483;;45114:11;45128:13;;45114:27;;45160:13;45182:8;45176:3;:14;45160:30;;45209:233;45240:62;45279:1;45283:2;45287:7;;;;;;45296:5;45240:30;:62::i;:::-;45235:167;;45338:40;;;;;;;;;;;;;;45235:167;45437:3;45429:5;:11;45209:233;;45524:3;45507:13;;:20;45503:34;;45529:8;;;45503:34;45095:458;;45070:483;44882:689;;;:::o;39676:2454::-;39749:20;39772:13;;39749:36;;39812:1;39800:8;:13;39796:44;;;39822:18;;;;;;;;;;;;;;39796:44;39853:61;39883:1;39887:2;39891:12;39905:8;39853:21;:61::i;:::-;40397:1;13361:2;40367:1;:26;;40366:32;40354:8;:45;40328:18;:22;40347:2;40328:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;40676:139;40713:2;40767:33;40790:1;40794:2;40798:1;40767:14;:33::i;:::-;40734:30;40755:8;40734:20;:30::i;:::-;:66;40676:18;:139::i;:::-;40642:17;:31;40660:12;40642:31;;;;;;;;;;;:173;;;;40832:16;40863:11;40892:8;40877:12;:23;40863:37;;41147:16;41143:2;41139:25;41127:37;;41519:12;41479:8;41438:1;41376:25;41317:1;41256;41229:335;41644:1;41630:12;41626:20;41584:346;41685:3;41676:7;41673:16;41584:346;;41903:7;41893:8;41890:1;41863:25;41860:1;41857;41852:59;41738:1;41729:7;41725:15;41714:26;;41584:346;;;41588:77;41975:1;41963:8;:13;41959:45;;;41985:19;;;;;;;;;;;;;;41959:45;42037:3;42021:13;:19;;;;40102:1950;;42062:60;42091:1;42095:2;42099:12;42113:8;42062:20;:60::i;:::-;39738:2392;39676:2454;;:::o;27052:324::-;27122:14;27355:1;27345:8;27342:15;27316:24;27312:46;27302:56;;27052:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:400::-;10493:3;10514:84;10596:1;10591:3;10514:84;:::i;:::-;10507:91;;10607:93;10696:3;10607:93;:::i;:::-;10725:1;10720:3;10716:11;10709:18;;10333:400;;;:::o;10739:366::-;10881:3;10902:67;10966:2;10961:3;10902:67;:::i;:::-;10895:74;;10978:93;11067:3;10978:93;:::i;:::-;11096:2;11091:3;11087:12;11080:19;;10739:366;;;:::o;11111:::-;11253:3;11274:67;11338:2;11333:3;11274:67;:::i;:::-;11267:74;;11350:93;11439:3;11350:93;:::i;:::-;11468:2;11463:3;11459:12;11452:19;;11111:366;;;:::o;11483:::-;11625:3;11646:67;11710:2;11705:3;11646:67;:::i;:::-;11639:74;;11722:93;11811:3;11722:93;:::i;:::-;11840:2;11835:3;11831:12;11824:19;;11483:366;;;:::o;11855:398::-;12014:3;12035:83;12116:1;12111:3;12035:83;:::i;:::-;12028:90;;12127:93;12216:3;12127:93;:::i;:::-;12245:1;12240:3;12236:11;12229:18;;11855:398;;;:::o;12259:366::-;12401:3;12422:67;12486:2;12481:3;12422:67;:::i;:::-;12415:74;;12498:93;12587:3;12498:93;:::i;:::-;12616:2;12611:3;12607:12;12600:19;;12259:366;;;:::o;12631:118::-;12718:24;12736:5;12718:24;:::i;:::-;12713:3;12706:37;12631:118;;:::o;12755:701::-;13036:3;13058:95;13149:3;13140:6;13058:95;:::i;:::-;13051:102;;13170:95;13261:3;13252:6;13170:95;:::i;:::-;13163:102;;13282:148;13426:3;13282:148;:::i;:::-;13275:155;;13447:3;13440:10;;12755:701;;;;;:::o;13462:379::-;13646:3;13668:147;13811:3;13668:147;:::i;:::-;13661:154;;13832:3;13825:10;;13462:379;;;:::o;13847:222::-;13940:4;13978:2;13967:9;13963:18;13955:26;;13991:71;14059:1;14048:9;14044:17;14035:6;13991:71;:::i;:::-;13847:222;;;;:::o;14075:640::-;14270:4;14308:3;14297:9;14293:19;14285:27;;14322:71;14390:1;14379:9;14375:17;14366:6;14322:71;:::i;:::-;14403:72;14471:2;14460:9;14456:18;14447:6;14403:72;:::i;:::-;14485;14553:2;14542:9;14538:18;14529:6;14485:72;:::i;:::-;14604:9;14598:4;14594:20;14589:2;14578:9;14574:18;14567:48;14632:76;14703:4;14694:6;14632:76;:::i;:::-;14624:84;;14075:640;;;;;;;:::o;14721:210::-;14808:4;14846:2;14835:9;14831:18;14823:26;;14859:65;14921:1;14910:9;14906:17;14897:6;14859:65;:::i;:::-;14721:210;;;;:::o;14937:313::-;15050:4;15088:2;15077:9;15073:18;15065:26;;15137:9;15131:4;15127:20;15123:1;15112:9;15108:17;15101:47;15165:78;15238:4;15229:6;15165:78;:::i;:::-;15157:86;;14937:313;;;;:::o;15256:419::-;15422:4;15460:2;15449:9;15445:18;15437:26;;15509:9;15503:4;15499:20;15495:1;15484:9;15480:17;15473:47;15537:131;15663:4;15537:131;:::i;:::-;15529:139;;15256:419;;;:::o;15681:::-;15847:4;15885:2;15874:9;15870:18;15862:26;;15934:9;15928:4;15924:20;15920:1;15909:9;15905:17;15898:47;15962:131;16088:4;15962:131;:::i;:::-;15954:139;;15681:419;;;:::o;16106:::-;16272:4;16310:2;16299:9;16295:18;16287:26;;16359:9;16353:4;16349:20;16345:1;16334:9;16330:17;16323:47;16387:131;16513:4;16387:131;:::i;:::-;16379:139;;16106:419;;;:::o;16531:::-;16697:4;16735:2;16724:9;16720:18;16712:26;;16784:9;16778:4;16774:20;16770:1;16759:9;16755:17;16748:47;16812:131;16938:4;16812:131;:::i;:::-;16804:139;;16531:419;;;:::o;16956:::-;17122:4;17160:2;17149:9;17145:18;17137:26;;17209:9;17203:4;17199:20;17195:1;17184:9;17180:17;17173:47;17237:131;17363:4;17237:131;:::i;:::-;17229:139;;16956:419;;;:::o;17381:::-;17547:4;17585:2;17574:9;17570:18;17562:26;;17634:9;17628:4;17624:20;17620:1;17609:9;17605:17;17598:47;17662:131;17788:4;17662:131;:::i;:::-;17654:139;;17381:419;;;:::o;17806:::-;17972:4;18010:2;17999:9;17995:18;17987:26;;18059:9;18053:4;18049:20;18045:1;18034:9;18030:17;18023:47;18087:131;18213:4;18087:131;:::i;:::-;18079:139;;17806:419;;;:::o;18231:::-;18397:4;18435:2;18424:9;18420:18;18412:26;;18484:9;18478:4;18474:20;18470:1;18459:9;18455:17;18448:47;18512:131;18638:4;18512:131;:::i;:::-;18504:139;;18231:419;;;:::o;18656:222::-;18749:4;18787:2;18776:9;18772:18;18764:26;;18800:71;18868:1;18857:9;18853:17;18844:6;18800:71;:::i;:::-;18656:222;;;;:::o;18884:129::-;18918:6;18945:20;;:::i;:::-;18935:30;;18974:33;19002:4;18994:6;18974:33;:::i;:::-;18884:129;;;:::o;19019:75::-;19052:6;19085:2;19079:9;19069:19;;19019:75;:::o;19100:307::-;19161:4;19251:18;19243:6;19240:30;19237:56;;;19273:18;;:::i;:::-;19237:56;19311:29;19333:6;19311:29;:::i;:::-;19303:37;;19395:4;19389;19385:15;19377:23;;19100:307;;;:::o;19413:308::-;19475:4;19565:18;19557:6;19554:30;19551:56;;;19587:18;;:::i;:::-;19551:56;19625:29;19647:6;19625:29;:::i;:::-;19617:37;;19709:4;19703;19699:15;19691:23;;19413:308;;;:::o;19727:98::-;19778:6;19812:5;19806:12;19796:22;;19727:98;;;:::o;19831:99::-;19883:6;19917:5;19911:12;19901:22;;19831:99;;;:::o;19936:168::-;20019:11;20053:6;20048:3;20041:19;20093:4;20088:3;20084:14;20069:29;;19936:168;;;;:::o;20110:147::-;20211:11;20248:3;20233:18;;20110:147;;;;:::o;20263:169::-;20347:11;20381:6;20376:3;20369:19;20421:4;20416:3;20412:14;20397:29;;20263:169;;;;:::o;20438:148::-;20540:11;20577:3;20562:18;;20438:148;;;;:::o;20592:305::-;20632:3;20651:20;20669:1;20651:20;:::i;:::-;20646:25;;20685:20;20703:1;20685:20;:::i;:::-;20680:25;;20839:1;20771:66;20767:74;20764:1;20761:81;20758:107;;;20845:18;;:::i;:::-;20758:107;20889:1;20886;20882:9;20875:16;;20592:305;;;;:::o;20903:185::-;20943:1;20960:20;20978:1;20960:20;:::i;:::-;20955:25;;20994:20;21012:1;20994:20;:::i;:::-;20989:25;;21033:1;21023:35;;21038:18;;:::i;:::-;21023:35;21080:1;21077;21073:9;21068:14;;20903:185;;;;:::o;21094:348::-;21134:7;21157:20;21175:1;21157:20;:::i;:::-;21152:25;;21191:20;21209:1;21191:20;:::i;:::-;21186:25;;21379:1;21311:66;21307:74;21304:1;21301:81;21296:1;21289:9;21282:17;21278:105;21275:131;;;21386:18;;:::i;:::-;21275:131;21434:1;21431;21427:9;21416:20;;21094:348;;;;:::o;21448:191::-;21488:4;21508:20;21526:1;21508:20;:::i;:::-;21503:25;;21542:20;21560:1;21542:20;:::i;:::-;21537:25;;21581:1;21578;21575:8;21572:34;;;21586:18;;:::i;:::-;21572:34;21631:1;21628;21624:9;21616:17;;21448:191;;;;:::o;21645:96::-;21682:7;21711:24;21729:5;21711:24;:::i;:::-;21700:35;;21645:96;;;:::o;21747:90::-;21781:7;21824:5;21817:13;21810:21;21799:32;;21747:90;;;:::o;21843:149::-;21879:7;21919:66;21912:5;21908:78;21897:89;;21843:149;;;:::o;21998:126::-;22035:7;22075:42;22068:5;22064:54;22053:65;;21998:126;;;:::o;22130:77::-;22167:7;22196:5;22185:16;;22130:77;;;:::o;22213:154::-;22297:6;22292:3;22287;22274:30;22359:1;22350:6;22345:3;22341:16;22334:27;22213:154;;;:::o;22373:307::-;22441:1;22451:113;22465:6;22462:1;22459:13;22451:113;;;22550:1;22545:3;22541:11;22535:18;22531:1;22526:3;22522:11;22515:39;22487:2;22484:1;22480:10;22475:15;;22451:113;;;22582:6;22579:1;22576:13;22573:101;;;22662:1;22653:6;22648:3;22644:16;22637:27;22573:101;22422:258;22373:307;;;:::o;22686:320::-;22730:6;22767:1;22761:4;22757:12;22747:22;;22814:1;22808:4;22804:12;22835:18;22825:81;;22891:4;22883:6;22879:17;22869:27;;22825:81;22953:2;22945:6;22942:14;22922:18;22919:38;22916:84;;;22972:18;;:::i;:::-;22916:84;22737:269;22686:320;;;:::o;23012:281::-;23095:27;23117:4;23095:27;:::i;:::-;23087:6;23083:40;23225:6;23213:10;23210:22;23189:18;23177:10;23174:34;23171:62;23168:88;;;23236:18;;:::i;:::-;23168:88;23276:10;23272:2;23265:22;23055:238;23012:281;;:::o;23299:233::-;23338:3;23361:24;23379:5;23361:24;:::i;:::-;23352:33;;23407:66;23400:5;23397:77;23394:103;;;23477:18;;:::i;:::-;23394:103;23524:1;23517:5;23513:13;23506:20;;23299:233;;;:::o;23538:176::-;23570:1;23587:20;23605:1;23587:20;:::i;:::-;23582:25;;23621:20;23639:1;23621:20;:::i;:::-;23616:25;;23660:1;23650:35;;23665:18;;:::i;:::-;23650:35;23706:1;23703;23699:9;23694:14;;23538:176;;;;:::o;23720:180::-;23768:77;23765:1;23758:88;23865:4;23862:1;23855:15;23889:4;23886:1;23879:15;23906:180;23954:77;23951:1;23944:88;24051:4;24048:1;24041:15;24075:4;24072:1;24065:15;24092:180;24140:77;24137:1;24130:88;24237:4;24234:1;24227:15;24261:4;24258:1;24251:15;24278:180;24326:77;24323:1;24316:88;24423:4;24420:1;24413:15;24447:4;24444:1;24437:15;24464:180;24512:77;24509:1;24502:88;24609:4;24606:1;24599:15;24633:4;24630:1;24623:15;24650:117;24759:1;24756;24749:12;24773:117;24882:1;24879;24872:12;24896:117;25005:1;25002;24995:12;25019:117;25128:1;25125;25118:12;25142:102;25183:6;25234:2;25230:7;25225:2;25218:5;25214:14;25210:28;25200:38;;25142:102;;;:::o;25250:225::-;25390:34;25386:1;25378:6;25374:14;25367:58;25459:8;25454:2;25446:6;25442:15;25435:33;25250:225;:::o;25481:220::-;25621:34;25617:1;25609:6;25605:14;25598:58;25690:3;25685:2;25677:6;25673:15;25666:28;25481:220;:::o;25707:168::-;25847:20;25843:1;25835:6;25831:14;25824:44;25707:168;:::o;25881:221::-;26021:34;26017:1;26009:6;26005:14;25998:58;26090:4;26085:2;26077:6;26073:15;26066:29;25881:221;:::o;26108:155::-;26248:7;26244:1;26236:6;26232:14;26225:31;26108:155;:::o;26269:182::-;26409:34;26405:1;26397:6;26393:14;26386:58;26269:182;:::o;26457:174::-;26597:26;26593:1;26585:6;26581:14;26574:50;26457:174;:::o;26637:234::-;26777:34;26773:1;26765:6;26761:14;26754:58;26846:17;26841:2;26833:6;26829:15;26822:42;26637:234;:::o;26877:114::-;;:::o;26997:181::-;27137:33;27133:1;27125:6;27121:14;27114:57;26997:181;:::o;27184:122::-;27257:24;27275:5;27257:24;:::i;:::-;27250:5;27247:35;27237:63;;27296:1;27293;27286:12;27237:63;27184:122;:::o;27312:116::-;27382:21;27397:5;27382:21;:::i;:::-;27375:5;27372:32;27362:60;;27418:1;27415;27408:12;27362:60;27312:116;:::o;27434:120::-;27506:23;27523:5;27506:23;:::i;:::-;27499:5;27496:34;27486:62;;27544:1;27541;27534:12;27486:62;27434:120;:::o;27560:122::-;27633:24;27651:5;27633:24;:::i;:::-;27626:5;27623:35;27613:63;;27672:1;27669;27662:12;27613:63;27560:122;:::o

Swarm Source

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