ETH Price: $3,096.14 (-0.49%)
Gas: 2 Gwei

Token

MYYC (MYYC)
 

Overview

Max Total Supply

6,564 MYYC

Holders

2,147

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 MYYC
0xaE9bCA0728BAA3532A5c05C0c9c87F1F2319f2A7
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:
MYYC

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-09
*/

// 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: @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: 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: contracts/ERC721A (3).sol



//Developer : MYYC CLAN @MYYC



pragma solidity >=0.7.0 <0.9.0;





contract MYYC is ERC721A, Ownable, ReentrancyGuard {


  string public baseURI;
  string public notRevealedUri;
  uint256 public cost = 0.0031 ether;
  uint256 public maxSupply = 6666;
  uint256 public MaxperWallet = 50;
  uint256 public FreeLimit = 1;
  bool public paused = false;
  bool public revealed = false;
  uint256 public FreeMinted;
  mapping (address => uint256) public AddressFreeMinted;

  constructor(
    
  ) ERC721A("MYYC", "MYYC") {
    setBaseURI("ipfs://QmRvfcBqc2EqMqfQGkr4CHk4r7RUGPVgRqzdqdcy5Krd8Y/");
    setNotRevealedURI("ipfs://QmRvfcBqc2EqMqfQGkr4CHk4r7RUGPVgRqzdqdcy5Krd8Y");
  }

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

  // public
  /// @dev Public mint 
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "oops contract is paused");
    require(tokens <= MaxperWallet, "max mint amount per tx exceeded");
    require(totalSupply() + tokens <= maxSupply, "We Soldout");

    if(AddressFreeMinted[_msgSenderERC721A()] >= FreeLimit) {
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "insufficient funds");
    } else {
            require(msg.value >= cost * (tokens - (FreeLimit - AddressFreeMinted[_msgSenderERC721A()])), "insufficient funds");
            AddressFreeMinted[_msgSenderERC721A()] = FreeLimit;
    }
    FreeMinted += FreeLimit;
      _safeMint(_msgSenderERC721A(), tokens);
  }

  /// @dev use it for giveaway and team mint
     function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
  }

/// @notice returns metadata link of tokenid
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _toString(tokenId), ".json"))
        : "";
  }

     /// @notice return the number minted by an address
    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    /// @notice return the tokens owned by an address
      function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

  /// @dev change the public max per wallet
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

  /// @dev change the whitelist max per wallet
    function setFreeLimit(uint256 _limit) public onlyOwner {
    FreeLimit = _limit;
  }

   /// @dev change the public price(amount need to be in wei)
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  /// @dev cut the supply if we dont sold out
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }


 /// @dev set your baseuri
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

   /// @dev set hidden uri
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

 /// @dev to pause and unpause your contract(use booleans true or false)
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  /// @dev withdraw funds from contract
  function withdraw() public payable onlyOwner nonReentrant {
      uint256 balance = address(this).balance;
      payable(_msgSenderERC721A()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AddressFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052660b036efecdc000600c55611a0a600d556032600e556001600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040518060400160405280600481526020017f4d595943000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d595943000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e792919062000385565b5080600390805190602001906200010092919062000385565b50620001116200019b60201b60201c565b6000819055505050620001396200012d620001a460201b60201c565b620001ac60201b60201c565b60016009819055506200016b60405180606001604052806036815260200162003d6f603691396200027260201b60201c565b6200019560405180606001604052806035815260200162003da5603591396200029e60201b60201c565b6200051d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000282620002ca60201b60201c565b80600a90805190602001906200029a92919062000385565b5050565b620002ae620002ca60201b60201c565b80600b9080519060200190620002c692919062000385565b5050565b620002da620001a460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003006200035b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000350906200045c565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000393906200048f565b90600052602060002090601f016020900481019282620003b7576000855562000403565b82601f10620003d257805160ff191683800117855562000403565b8280016001018555821562000403579182015b8281111562000402578251825591602001919060010190620003e5565b5b50905062000412919062000416565b5090565b5b808211156200043157600081600090555060010162000417565b5090565b6000620004446020836200047e565b91506200045182620004f4565b602082019050919050565b60006020820190508181036000830152620004778162000435565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004a857607f821691505b60208210811415620004bf57620004be620004c5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613842806200052d6000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063bc63f02e116100ab578063e268e4d31161006f578063e268e4d314610857578063e985e9c514610880578063f2c4ce1e146108bd578063f2fde38b146108e6578063f8604f111461090f5761023b565b8063bc63f02e1461075e578063bd7a199814610787578063c87b56dd146107b2578063d5abeb01146107ef578063dc33e6811461081a5761023b565b8063940cd05b116100f2578063940cd05b1461069c57806395d89b41146106c5578063a0712d68146106f0578063a22cb4651461070c578063b88d4fde146107355761023b565b806370a08231146105b5578063715018a6146105f25780638462151c146106095780638da5cb5b14610646578063904c24dd146106715761023b565b806323b872dd116101bc578063518302271161018057806351830227146104ce57806355f804b3146104f95780635c975abb146105225780636352211e1461054d5780636c0360eb1461058a5761023b565b806323b872dd1461041e5780633ccfd60b1461044757806342842e0e146104515780634404f8521461047a57806344a0d68a146104a55761023b565b8063095ea7b311610203578063095ea7b314610339578063123d1d8b1461036257806313faede61461039f578063149835a0146103ca57806318160ddd146103f35761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063081c8c441461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612b8a565b610938565b6040516102749190613028565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190612b5d565b6109ca565b005b3480156102b257600080fd5b506102bb6109ef565b6040516102c89190613043565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190612c2d565b610a81565b6040516103059190612f9f565b60405180910390f35b34801561031a57600080fd5b50610323610b00565b6040516103309190613043565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612b1d565b610b8e565b005b34801561036e57600080fd5b506103896004803603810190610384919061299a565b610cd2565b60405161039691906131a5565b60405180910390f35b3480156103ab57600080fd5b506103b4610cea565b6040516103c191906131a5565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612c2d565b610cf0565b005b3480156103ff57600080fd5b50610408610d02565b60405161041591906131a5565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190612a07565b610d19565b005b61044f61103e565b005b34801561045d57600080fd5b5061047860048036038101906104739190612a07565b6110f2565b005b34801561048657600080fd5b5061048f611112565b60405161049c91906131a5565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190612c2d565b611118565b005b3480156104da57600080fd5b506104e361112a565b6040516104f09190613028565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612be4565b61113d565b005b34801561052e57600080fd5b5061053761115f565b6040516105449190613028565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612c2d565b611172565b6040516105819190612f9f565b60405180910390f35b34801561059657600080fd5b5061059f611184565b6040516105ac9190613043565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d7919061299a565b611212565b6040516105e991906131a5565b60405180910390f35b3480156105fe57600080fd5b506106076112cb565b005b34801561061557600080fd5b50610630600480360381019061062b919061299a565b6112df565b60405161063d9190613006565b60405180910390f35b34801561065257600080fd5b5061065b611429565b6040516106689190612f9f565b60405180910390f35b34801561067d57600080fd5b50610686611453565b60405161069391906131a5565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190612b5d565b611459565b005b3480156106d157600080fd5b506106da61147e565b6040516106e79190613043565b60405180910390f35b61070a60048036038101906107059190612c2d565b611510565b005b34801561071857600080fd5b50610733600480360381019061072e9190612add565b611880565b005b34801561074157600080fd5b5061075c60048036038101906107579190612a5a565b6119f8565b005b34801561076a57600080fd5b5061078560048036038101906107809190612c5a565b611a6b565b005b34801561079357600080fd5b5061079c611b2e565b6040516107a991906131a5565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d49190612c2d565b611b34565b6040516107e69190613043565b60405180910390f35b3480156107fb57600080fd5b50610804611c8a565b60405161081191906131a5565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061299a565b611c90565b60405161084e91906131a5565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190612c2d565b611ca2565b005b34801561088c57600080fd5b506108a760048036038101906108a291906129c7565b611cb4565b6040516108b49190613028565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df9190612be4565b611d48565b005b3480156108f257600080fd5b5061090d6004803603810190610908919061299a565b611d6a565b005b34801561091b57600080fd5b5061093660048036038101906109319190612c2d565b611dee565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6109d2611e00565b80601060006101000a81548160ff02191690831515021790555050565b6060600280546109fe9061345d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2a9061345d565b8015610a775780601f10610a4c57610100808354040283529160200191610a77565b820191906000526020600020905b815481529060010190602001808311610a5a57829003601f168201915b5050505050905090565b6000610a8c82611e7e565b610ac2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610b0d9061345d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b399061345d565b8015610b865780601f10610b5b57610100808354040283529160200191610b86565b820191906000526020600020905b815481529060010190602001808311610b6957829003601f168201915b505050505081565b6000610b9982611172565b90508073ffffffffffffffffffffffffffffffffffffffff16610bba611edd565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d57610be681610be1611edd565b611cb4565b610c1c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60126020528060005260406000206000915090505481565b600c5481565b610cf8611e00565b80600d8190555050565b6000610d0c611ee5565b6001546000540303905090565b6000610d2482611eee565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d8b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d9784611fbc565b91509150610dad8187610da8611edd565b611fe3565b610df957610dc286610dbd611edd565b611cb4565b610df8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e60576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e6d8686866001612027565b8015610e7857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f4685610f2288888761202d565b7c020000000000000000000000000000000000000000000000000000000017612055565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fce576000600185019050600060046000838152602001908152602001600020541415610fcc576000548114610fcb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110368686866001612080565b505050505050565b611046611e00565b6002600954141561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390613165565b60405180910390fd5b600260098190555060004790506110a1611edd565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110e6573d6000803e3d6000fd5b50506001600981905550565b61110d838383604051806020016040528060008152506119f8565b505050565b600f5481565b611120611e00565b80600c8190555050565b601060019054906101000a900460ff1681565b611145611e00565b80600a908051906020019061115b92919061275f565b5050565b601060009054906101000a900460ff1681565b600061117d82611eee565b9050919050565b600a80546111919061345d565b80601f01602080910402602001604051908101604052809291908181526020018280546111bd9061345d565b801561120a5780601f106111df5761010080835404028352916020019161120a565b820191906000526020600020905b8154815290600101906020018083116111ed57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112d3611e00565b6112dd6000612086565b565b606060008060006112ef85611212565b905060008167ffffffffffffffff81111561130d5761130c61354d565b5b60405190808252806020026020018201604052801561133b5781602001602082028036833780820191505090505b5090506113466127e5565b6000611350611ee5565b90505b83861461141b576113638161214c565b915081604001511561137457611410565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146113b457816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561140f57808387806001019850815181106114025761140161351e565b5b6020026020010181815250505b5b806001019050611353565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b611461611e00565b80601060016101000a81548160ff02191690831515021790555050565b60606003805461148d9061345d565b80601f01602080910402602001604051908101604052809291908181526020018280546114b99061345d565b80156115065780601f106114db57610100808354040283529160200191611506565b820191906000526020600020905b8154815290600101906020018083116114e957829003601f168201915b5050505050905090565b60026009541415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613165565b60405180910390fd5b6002600981905550601060009054906101000a900460ff16156115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a5906130c5565b60405180910390fd5b600e548111156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90613185565b60405180910390fd5b600d54816115ff610d02565b61160991906132c3565b111561164a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611641906130a5565b60405180910390fd5b600f5460126000611659611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061174d57600e54816116ad6116a8611edd565b612177565b6116b791906132c3565b11156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90613145565b60405180910390fd5b80600c546117069190613319565b341015611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90613125565b60405180910390fd5b611849565b60126000611759611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f546117a19190613373565b816117ac9190613373565b600c546117b99190613319565b3410156117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f290613125565b60405180910390fd5b600f546012600061180a611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600f546011600082825461185d91906132c3565b9250508190555061187561186f611edd565b826121ce565b600160098190555050565b611888611edd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ed576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118fa611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119a7611edd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ec9190613028565b60405180910390a35050565b611a03848484610d19565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a6557611a2e848484846121ec565b611a64576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a73611e00565b60026009541415611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090613165565b60405180910390fd5b6002600981905550600d5482611acd610d02565b611ad791906132c3565b1115611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f906130e5565b60405180910390fd5b611b2281836121ce565b60016009819055505050565b600e5481565b6060611b3f82611e7e565b611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7590613065565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611c2c57600b8054611ba79061345d565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd39061345d565b8015611c205780601f10611bf557610100808354040283529160200191611c20565b820191906000526020600020905b815481529060010190602001808311611c0357829003601f168201915b50505050509050611c85565b6000611c3661234c565b90506000815111611c565760405180602001604052806000815250611c81565b80611c60846123de565b604051602001611c71929190612f70565b6040516020818303038152906040525b9150505b919050565b600d5481565b6000611c9b82612177565b9050919050565b611caa611e00565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d50611e00565b80600b9080519060200190611d6692919061275f565b5050565b611d72611e00565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990613085565b60405180910390fd5b611deb81612086565b50565b611df6611e00565b80600f8190555050565b611e0861242e565b73ffffffffffffffffffffffffffffffffffffffff16611e26611429565b73ffffffffffffffffffffffffffffffffffffffff1614611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7390613105565b60405180910390fd5b565b600081611e89611ee5565b11158015611e98575060005482105b8015611ed6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611efd611ee5565b11611f8557600054811015611f845760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f82575b6000811415611f78576004600083600190039350838152602001908152602001600020549050611f4d565b8092505050611fb7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612044868684612436565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121546127e5565b612170600460008481526020019081526020016000205461243f565b9050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6121e88282604051806020016040528060008152506124f5565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612212611edd565b8786866040518563ffffffff1660e01b81526004016122349493929190612fba565b602060405180830381600087803b15801561224e57600080fd5b505af192505050801561227f57506040513d601f19601f8201168201806040525081019061227c9190612bb7565b60015b6122f9573d80600081146122af576040519150601f19603f3d011682016040523d82523d6000602084013e6122b4565b606091505b506000815114156122f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461235b9061345d565b80601f01602080910402602001604051908101604052809291908181526020018280546123879061345d565b80156123d45780601f106123a9576101008083540402835291602001916123d4565b820191906000526020600020905b8154815290600101906020018083116123b757829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561241a57600183039250600a81066030018353600a81049050806124155761241a565b6123ef565b508181036020830392508083525050919050565b600033905090565b60009392505050565b6124476127e5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6124ff8383612592565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461258d57600080549050600083820390505b61253f60008683806001019450866121ec565b612575576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061252c57816000541461258a57600080fd5b50505b505050565b60008054905060008214156125d3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125e06000848385612027565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061265783612648600086600061202d565b6126518561274f565b17612055565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126f857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126bd565b506000821415612734576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061274a6000848385612080565b505050565b60006001821460e11b9050919050565b82805461276b9061345d565b90600052602060002090601f01602090048101928261278d57600085556127d4565b82601f106127a657805160ff19168380011785556127d4565b828001600101855582156127d4579182015b828111156127d35782518255916020019190600101906127b8565b5b5090506127e19190612834565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561284d576000816000905550600101612835565b5090565b600061286461285f846131e5565b6131c0565b9050828152602081018484840111156128805761287f613581565b5b61288b84828561341b565b509392505050565b60006128a66128a184613216565b6131c0565b9050828152602081018484840111156128c2576128c1613581565b5b6128cd84828561341b565b509392505050565b6000813590506128e4816137b0565b92915050565b6000813590506128f9816137c7565b92915050565b60008135905061290e816137de565b92915050565b600081519050612923816137de565b92915050565b600082601f83011261293e5761293d61357c565b5b813561294e848260208601612851565b91505092915050565b600082601f83011261296c5761296b61357c565b5b813561297c848260208601612893565b91505092915050565b600081359050612994816137f5565b92915050565b6000602082840312156129b0576129af61358b565b5b60006129be848285016128d5565b91505092915050565b600080604083850312156129de576129dd61358b565b5b60006129ec858286016128d5565b92505060206129fd858286016128d5565b9150509250929050565b600080600060608486031215612a2057612a1f61358b565b5b6000612a2e868287016128d5565b9350506020612a3f868287016128d5565b9250506040612a5086828701612985565b9150509250925092565b60008060008060808587031215612a7457612a7361358b565b5b6000612a82878288016128d5565b9450506020612a93878288016128d5565b9350506040612aa487828801612985565b925050606085013567ffffffffffffffff811115612ac557612ac4613586565b5b612ad187828801612929565b91505092959194509250565b60008060408385031215612af457612af361358b565b5b6000612b02858286016128d5565b9250506020612b13858286016128ea565b9150509250929050565b60008060408385031215612b3457612b3361358b565b5b6000612b42858286016128d5565b9250506020612b5385828601612985565b9150509250929050565b600060208284031215612b7357612b7261358b565b5b6000612b81848285016128ea565b91505092915050565b600060208284031215612ba057612b9f61358b565b5b6000612bae848285016128ff565b91505092915050565b600060208284031215612bcd57612bcc61358b565b5b6000612bdb84828501612914565b91505092915050565b600060208284031215612bfa57612bf961358b565b5b600082013567ffffffffffffffff811115612c1857612c17613586565b5b612c2484828501612957565b91505092915050565b600060208284031215612c4357612c4261358b565b5b6000612c5184828501612985565b91505092915050565b60008060408385031215612c7157612c7061358b565b5b6000612c7f85828601612985565b9250506020612c90858286016128d5565b9150509250929050565b6000612ca68383612f52565b60208301905092915050565b612cbb816133a7565b82525050565b6000612ccc82613257565b612cd68185613285565b9350612ce183613247565b8060005b83811015612d12578151612cf98882612c9a565b9750612d0483613278565b925050600181019050612ce5565b5085935050505092915050565b612d28816133b9565b82525050565b6000612d3982613262565b612d438185613296565b9350612d5381856020860161342a565b612d5c81613590565b840191505092915050565b6000612d728261326d565b612d7c81856132a7565b9350612d8c81856020860161342a565b612d9581613590565b840191505092915050565b6000612dab8261326d565b612db581856132b8565b9350612dc581856020860161342a565b80840191505092915050565b6000612dde6030836132a7565b9150612de9826135a1565b604082019050919050565b6000612e016026836132a7565b9150612e0c826135f0565b604082019050919050565b6000612e24600a836132a7565b9150612e2f8261363f565b602082019050919050565b6000612e476017836132a7565b9150612e5282613668565b602082019050919050565b6000612e6a6016836132a7565b9150612e7582613691565b602082019050919050565b6000612e8d6005836132b8565b9150612e98826136ba565b600582019050919050565b6000612eb06020836132a7565b9150612ebb826136e3565b602082019050919050565b6000612ed36012836132a7565b9150612ede8261370c565b602082019050919050565b6000612ef6601b836132a7565b9150612f0182613735565b602082019050919050565b6000612f19601f836132a7565b9150612f248261375e565b602082019050919050565b6000612f3c601f836132a7565b9150612f4782613787565b602082019050919050565b612f5b81613411565b82525050565b612f6a81613411565b82525050565b6000612f7c8285612da0565b9150612f888284612da0565b9150612f9382612e80565b91508190509392505050565b6000602082019050612fb46000830184612cb2565b92915050565b6000608082019050612fcf6000830187612cb2565b612fdc6020830186612cb2565b612fe96040830185612f61565b8181036060830152612ffb8184612d2e565b905095945050505050565b600060208201905081810360008301526130208184612cc1565b905092915050565b600060208201905061303d6000830184612d1f565b92915050565b6000602082019050818103600083015261305d8184612d67565b905092915050565b6000602082019050818103600083015261307e81612dd1565b9050919050565b6000602082019050818103600083015261309e81612df4565b9050919050565b600060208201905081810360008301526130be81612e17565b9050919050565b600060208201905081810360008301526130de81612e3a565b9050919050565b600060208201905081810360008301526130fe81612e5d565b9050919050565b6000602082019050818103600083015261311e81612ea3565b9050919050565b6000602082019050818103600083015261313e81612ec6565b9050919050565b6000602082019050818103600083015261315e81612ee9565b9050919050565b6000602082019050818103600083015261317e81612f0c565b9050919050565b6000602082019050818103600083015261319e81612f2f565b9050919050565b60006020820190506131ba6000830184612f61565b92915050565b60006131ca6131db565b90506131d6828261348f565b919050565b6000604051905090565b600067ffffffffffffffff821115613200576131ff61354d565b5b61320982613590565b9050602081019050919050565b600067ffffffffffffffff8211156132315761323061354d565b5b61323a82613590565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006132ce82613411565b91506132d983613411565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330e5761330d6134c0565b5b828201905092915050565b600061332482613411565b915061332f83613411565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613368576133676134c0565b5b828202905092915050565b600061337e82613411565b915061338983613411565b92508282101561339c5761339b6134c0565b5b828203905092915050565b60006133b2826133f1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561344857808201518184015260208101905061342d565b83811115613457576000848401525b50505050565b6000600282049050600182168061347557607f821691505b60208210811415613489576134886134ef565b5b50919050565b61349882613590565b810181811067ffffffffffffffff821117156134b7576134b661354d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b6137b9816133a7565b81146137c457600080fd5b50565b6137d0816133b9565b81146137db57600080fd5b50565b6137e7816133c5565b81146137f257600080fd5b50565b6137fe81613411565b811461380957600080fd5b5056fea2646970667358221220be80c3469af9c4336865dc736cc87a6664fe386c5d154227eb66448149364c6e64736f6c63430008070033697066733a2f2f516d527666634271633245714d716651476b723443486b34723752554750566752717a6471646379354b726438592f697066733a2f2f516d527666634271633245714d716651476b723443486b34723752554750566752717a6471646379354b72643859

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063bc63f02e116100ab578063e268e4d31161006f578063e268e4d314610857578063e985e9c514610880578063f2c4ce1e146108bd578063f2fde38b146108e6578063f8604f111461090f5761023b565b8063bc63f02e1461075e578063bd7a199814610787578063c87b56dd146107b2578063d5abeb01146107ef578063dc33e6811461081a5761023b565b8063940cd05b116100f2578063940cd05b1461069c57806395d89b41146106c5578063a0712d68146106f0578063a22cb4651461070c578063b88d4fde146107355761023b565b806370a08231146105b5578063715018a6146105f25780638462151c146106095780638da5cb5b14610646578063904c24dd146106715761023b565b806323b872dd116101bc578063518302271161018057806351830227146104ce57806355f804b3146104f95780635c975abb146105225780636352211e1461054d5780636c0360eb1461058a5761023b565b806323b872dd1461041e5780633ccfd60b1461044757806342842e0e146104515780634404f8521461047a57806344a0d68a146104a55761023b565b8063095ea7b311610203578063095ea7b314610339578063123d1d8b1461036257806313faede61461039f578063149835a0146103ca57806318160ddd146103f35761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063081c8c441461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612b8a565b610938565b6040516102749190613028565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190612b5d565b6109ca565b005b3480156102b257600080fd5b506102bb6109ef565b6040516102c89190613043565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190612c2d565b610a81565b6040516103059190612f9f565b60405180910390f35b34801561031a57600080fd5b50610323610b00565b6040516103309190613043565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612b1d565b610b8e565b005b34801561036e57600080fd5b506103896004803603810190610384919061299a565b610cd2565b60405161039691906131a5565b60405180910390f35b3480156103ab57600080fd5b506103b4610cea565b6040516103c191906131a5565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612c2d565b610cf0565b005b3480156103ff57600080fd5b50610408610d02565b60405161041591906131a5565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190612a07565b610d19565b005b61044f61103e565b005b34801561045d57600080fd5b5061047860048036038101906104739190612a07565b6110f2565b005b34801561048657600080fd5b5061048f611112565b60405161049c91906131a5565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190612c2d565b611118565b005b3480156104da57600080fd5b506104e361112a565b6040516104f09190613028565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612be4565b61113d565b005b34801561052e57600080fd5b5061053761115f565b6040516105449190613028565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612c2d565b611172565b6040516105819190612f9f565b60405180910390f35b34801561059657600080fd5b5061059f611184565b6040516105ac9190613043565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d7919061299a565b611212565b6040516105e991906131a5565b60405180910390f35b3480156105fe57600080fd5b506106076112cb565b005b34801561061557600080fd5b50610630600480360381019061062b919061299a565b6112df565b60405161063d9190613006565b60405180910390f35b34801561065257600080fd5b5061065b611429565b6040516106689190612f9f565b60405180910390f35b34801561067d57600080fd5b50610686611453565b60405161069391906131a5565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190612b5d565b611459565b005b3480156106d157600080fd5b506106da61147e565b6040516106e79190613043565b60405180910390f35b61070a60048036038101906107059190612c2d565b611510565b005b34801561071857600080fd5b50610733600480360381019061072e9190612add565b611880565b005b34801561074157600080fd5b5061075c60048036038101906107579190612a5a565b6119f8565b005b34801561076a57600080fd5b5061078560048036038101906107809190612c5a565b611a6b565b005b34801561079357600080fd5b5061079c611b2e565b6040516107a991906131a5565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d49190612c2d565b611b34565b6040516107e69190613043565b60405180910390f35b3480156107fb57600080fd5b50610804611c8a565b60405161081191906131a5565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061299a565b611c90565b60405161084e91906131a5565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190612c2d565b611ca2565b005b34801561088c57600080fd5b506108a760048036038101906108a291906129c7565b611cb4565b6040516108b49190613028565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df9190612be4565b611d48565b005b3480156108f257600080fd5b5061090d6004803603810190610908919061299a565b611d6a565b005b34801561091b57600080fd5b5061093660048036038101906109319190612c2d565b611dee565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6109d2611e00565b80601060006101000a81548160ff02191690831515021790555050565b6060600280546109fe9061345d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2a9061345d565b8015610a775780601f10610a4c57610100808354040283529160200191610a77565b820191906000526020600020905b815481529060010190602001808311610a5a57829003601f168201915b5050505050905090565b6000610a8c82611e7e565b610ac2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610b0d9061345d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b399061345d565b8015610b865780601f10610b5b57610100808354040283529160200191610b86565b820191906000526020600020905b815481529060010190602001808311610b6957829003601f168201915b505050505081565b6000610b9982611172565b90508073ffffffffffffffffffffffffffffffffffffffff16610bba611edd565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d57610be681610be1611edd565b611cb4565b610c1c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60126020528060005260406000206000915090505481565b600c5481565b610cf8611e00565b80600d8190555050565b6000610d0c611ee5565b6001546000540303905090565b6000610d2482611eee565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d8b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d9784611fbc565b91509150610dad8187610da8611edd565b611fe3565b610df957610dc286610dbd611edd565b611cb4565b610df8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e60576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e6d8686866001612027565b8015610e7857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f4685610f2288888761202d565b7c020000000000000000000000000000000000000000000000000000000017612055565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fce576000600185019050600060046000838152602001908152602001600020541415610fcc576000548114610fcb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110368686866001612080565b505050505050565b611046611e00565b6002600954141561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390613165565b60405180910390fd5b600260098190555060004790506110a1611edd565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110e6573d6000803e3d6000fd5b50506001600981905550565b61110d838383604051806020016040528060008152506119f8565b505050565b600f5481565b611120611e00565b80600c8190555050565b601060019054906101000a900460ff1681565b611145611e00565b80600a908051906020019061115b92919061275f565b5050565b601060009054906101000a900460ff1681565b600061117d82611eee565b9050919050565b600a80546111919061345d565b80601f01602080910402602001604051908101604052809291908181526020018280546111bd9061345d565b801561120a5780601f106111df5761010080835404028352916020019161120a565b820191906000526020600020905b8154815290600101906020018083116111ed57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112d3611e00565b6112dd6000612086565b565b606060008060006112ef85611212565b905060008167ffffffffffffffff81111561130d5761130c61354d565b5b60405190808252806020026020018201604052801561133b5781602001602082028036833780820191505090505b5090506113466127e5565b6000611350611ee5565b90505b83861461141b576113638161214c565b915081604001511561137457611410565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146113b457816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561140f57808387806001019850815181106114025761140161351e565b5b6020026020010181815250505b5b806001019050611353565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b611461611e00565b80601060016101000a81548160ff02191690831515021790555050565b60606003805461148d9061345d565b80601f01602080910402602001604051908101604052809291908181526020018280546114b99061345d565b80156115065780601f106114db57610100808354040283529160200191611506565b820191906000526020600020905b8154815290600101906020018083116114e957829003601f168201915b5050505050905090565b60026009541415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613165565b60405180910390fd5b6002600981905550601060009054906101000a900460ff16156115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a5906130c5565b60405180910390fd5b600e548111156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90613185565b60405180910390fd5b600d54816115ff610d02565b61160991906132c3565b111561164a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611641906130a5565b60405180910390fd5b600f5460126000611659611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061174d57600e54816116ad6116a8611edd565b612177565b6116b791906132c3565b11156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90613145565b60405180910390fd5b80600c546117069190613319565b341015611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90613125565b60405180910390fd5b611849565b60126000611759611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f546117a19190613373565b816117ac9190613373565b600c546117b99190613319565b3410156117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f290613125565b60405180910390fd5b600f546012600061180a611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600f546011600082825461185d91906132c3565b9250508190555061187561186f611edd565b826121ce565b600160098190555050565b611888611edd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ed576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118fa611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119a7611edd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ec9190613028565b60405180910390a35050565b611a03848484610d19565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a6557611a2e848484846121ec565b611a64576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a73611e00565b60026009541415611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090613165565b60405180910390fd5b6002600981905550600d5482611acd610d02565b611ad791906132c3565b1115611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f906130e5565b60405180910390fd5b611b2281836121ce565b60016009819055505050565b600e5481565b6060611b3f82611e7e565b611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7590613065565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611c2c57600b8054611ba79061345d565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd39061345d565b8015611c205780601f10611bf557610100808354040283529160200191611c20565b820191906000526020600020905b815481529060010190602001808311611c0357829003601f168201915b50505050509050611c85565b6000611c3661234c565b90506000815111611c565760405180602001604052806000815250611c81565b80611c60846123de565b604051602001611c71929190612f70565b6040516020818303038152906040525b9150505b919050565b600d5481565b6000611c9b82612177565b9050919050565b611caa611e00565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d50611e00565b80600b9080519060200190611d6692919061275f565b5050565b611d72611e00565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990613085565b60405180910390fd5b611deb81612086565b50565b611df6611e00565b80600f8190555050565b611e0861242e565b73ffffffffffffffffffffffffffffffffffffffff16611e26611429565b73ffffffffffffffffffffffffffffffffffffffff1614611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7390613105565b60405180910390fd5b565b600081611e89611ee5565b11158015611e98575060005482105b8015611ed6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611efd611ee5565b11611f8557600054811015611f845760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f82575b6000811415611f78576004600083600190039350838152602001908152602001600020549050611f4d565b8092505050611fb7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612044868684612436565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121546127e5565b612170600460008481526020019081526020016000205461243f565b9050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6121e88282604051806020016040528060008152506124f5565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612212611edd565b8786866040518563ffffffff1660e01b81526004016122349493929190612fba565b602060405180830381600087803b15801561224e57600080fd5b505af192505050801561227f57506040513d601f19601f8201168201806040525081019061227c9190612bb7565b60015b6122f9573d80600081146122af576040519150601f19603f3d011682016040523d82523d6000602084013e6122b4565b606091505b506000815114156122f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461235b9061345d565b80601f01602080910402602001604051908101604052809291908181526020018280546123879061345d565b80156123d45780601f106123a9576101008083540402835291602001916123d4565b820191906000526020600020905b8154815290600101906020018083116123b757829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561241a57600183039250600a81066030018353600a81049050806124155761241a565b6123ef565b508181036020830392508083525050919050565b600033905090565b60009392505050565b6124476127e5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6124ff8383612592565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461258d57600080549050600083820390505b61253f60008683806001019450866121ec565b612575576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061252c57816000541461258a57600080fd5b50505b505050565b60008054905060008214156125d3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125e06000848385612027565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061265783612648600086600061202d565b6126518561274f565b17612055565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126f857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126bd565b506000821415612734576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061274a6000848385612080565b505050565b60006001821460e11b9050919050565b82805461276b9061345d565b90600052602060002090601f01602090048101928261278d57600085556127d4565b82601f106127a657805160ff19168380011785556127d4565b828001600101855582156127d4579182015b828111156127d35782518255916020019190600101906127b8565b5b5090506127e19190612834565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561284d576000816000905550600101612835565b5090565b600061286461285f846131e5565b6131c0565b9050828152602081018484840111156128805761287f613581565b5b61288b84828561341b565b509392505050565b60006128a66128a184613216565b6131c0565b9050828152602081018484840111156128c2576128c1613581565b5b6128cd84828561341b565b509392505050565b6000813590506128e4816137b0565b92915050565b6000813590506128f9816137c7565b92915050565b60008135905061290e816137de565b92915050565b600081519050612923816137de565b92915050565b600082601f83011261293e5761293d61357c565b5b813561294e848260208601612851565b91505092915050565b600082601f83011261296c5761296b61357c565b5b813561297c848260208601612893565b91505092915050565b600081359050612994816137f5565b92915050565b6000602082840312156129b0576129af61358b565b5b60006129be848285016128d5565b91505092915050565b600080604083850312156129de576129dd61358b565b5b60006129ec858286016128d5565b92505060206129fd858286016128d5565b9150509250929050565b600080600060608486031215612a2057612a1f61358b565b5b6000612a2e868287016128d5565b9350506020612a3f868287016128d5565b9250506040612a5086828701612985565b9150509250925092565b60008060008060808587031215612a7457612a7361358b565b5b6000612a82878288016128d5565b9450506020612a93878288016128d5565b9350506040612aa487828801612985565b925050606085013567ffffffffffffffff811115612ac557612ac4613586565b5b612ad187828801612929565b91505092959194509250565b60008060408385031215612af457612af361358b565b5b6000612b02858286016128d5565b9250506020612b13858286016128ea565b9150509250929050565b60008060408385031215612b3457612b3361358b565b5b6000612b42858286016128d5565b9250506020612b5385828601612985565b9150509250929050565b600060208284031215612b7357612b7261358b565b5b6000612b81848285016128ea565b91505092915050565b600060208284031215612ba057612b9f61358b565b5b6000612bae848285016128ff565b91505092915050565b600060208284031215612bcd57612bcc61358b565b5b6000612bdb84828501612914565b91505092915050565b600060208284031215612bfa57612bf961358b565b5b600082013567ffffffffffffffff811115612c1857612c17613586565b5b612c2484828501612957565b91505092915050565b600060208284031215612c4357612c4261358b565b5b6000612c5184828501612985565b91505092915050565b60008060408385031215612c7157612c7061358b565b5b6000612c7f85828601612985565b9250506020612c90858286016128d5565b9150509250929050565b6000612ca68383612f52565b60208301905092915050565b612cbb816133a7565b82525050565b6000612ccc82613257565b612cd68185613285565b9350612ce183613247565b8060005b83811015612d12578151612cf98882612c9a565b9750612d0483613278565b925050600181019050612ce5565b5085935050505092915050565b612d28816133b9565b82525050565b6000612d3982613262565b612d438185613296565b9350612d5381856020860161342a565b612d5c81613590565b840191505092915050565b6000612d728261326d565b612d7c81856132a7565b9350612d8c81856020860161342a565b612d9581613590565b840191505092915050565b6000612dab8261326d565b612db581856132b8565b9350612dc581856020860161342a565b80840191505092915050565b6000612dde6030836132a7565b9150612de9826135a1565b604082019050919050565b6000612e016026836132a7565b9150612e0c826135f0565b604082019050919050565b6000612e24600a836132a7565b9150612e2f8261363f565b602082019050919050565b6000612e476017836132a7565b9150612e5282613668565b602082019050919050565b6000612e6a6016836132a7565b9150612e7582613691565b602082019050919050565b6000612e8d6005836132b8565b9150612e98826136ba565b600582019050919050565b6000612eb06020836132a7565b9150612ebb826136e3565b602082019050919050565b6000612ed36012836132a7565b9150612ede8261370c565b602082019050919050565b6000612ef6601b836132a7565b9150612f0182613735565b602082019050919050565b6000612f19601f836132a7565b9150612f248261375e565b602082019050919050565b6000612f3c601f836132a7565b9150612f4782613787565b602082019050919050565b612f5b81613411565b82525050565b612f6a81613411565b82525050565b6000612f7c8285612da0565b9150612f888284612da0565b9150612f9382612e80565b91508190509392505050565b6000602082019050612fb46000830184612cb2565b92915050565b6000608082019050612fcf6000830187612cb2565b612fdc6020830186612cb2565b612fe96040830185612f61565b8181036060830152612ffb8184612d2e565b905095945050505050565b600060208201905081810360008301526130208184612cc1565b905092915050565b600060208201905061303d6000830184612d1f565b92915050565b6000602082019050818103600083015261305d8184612d67565b905092915050565b6000602082019050818103600083015261307e81612dd1565b9050919050565b6000602082019050818103600083015261309e81612df4565b9050919050565b600060208201905081810360008301526130be81612e17565b9050919050565b600060208201905081810360008301526130de81612e3a565b9050919050565b600060208201905081810360008301526130fe81612e5d565b9050919050565b6000602082019050818103600083015261311e81612ea3565b9050919050565b6000602082019050818103600083015261313e81612ec6565b9050919050565b6000602082019050818103600083015261315e81612ee9565b9050919050565b6000602082019050818103600083015261317e81612f0c565b9050919050565b6000602082019050818103600083015261319e81612f2f565b9050919050565b60006020820190506131ba6000830184612f61565b92915050565b60006131ca6131db565b90506131d6828261348f565b919050565b6000604051905090565b600067ffffffffffffffff821115613200576131ff61354d565b5b61320982613590565b9050602081019050919050565b600067ffffffffffffffff8211156132315761323061354d565b5b61323a82613590565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006132ce82613411565b91506132d983613411565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330e5761330d6134c0565b5b828201905092915050565b600061332482613411565b915061332f83613411565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613368576133676134c0565b5b828202905092915050565b600061337e82613411565b915061338983613411565b92508282101561339c5761339b6134c0565b5b828203905092915050565b60006133b2826133f1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561344857808201518184015260208101905061342d565b83811115613457576000848401525b50505050565b6000600282049050600182168061347557607f821691505b60208210811415613489576134886134ef565b5b50919050565b61349882613590565b810181811067ffffffffffffffff821117156134b7576134b661354d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b6137b9816133a7565b81146137c457600080fd5b50565b6137d0816133b9565b81146137db57600080fd5b50565b6137e7816133c5565b81146137f257600080fd5b50565b6137fe81613411565b811461380957600080fd5b5056fea2646970667358221220be80c3469af9c4336865dc736cc87a6664fe386c5d154227eb66448149364c6e64736f6c63430008070033

Deployed Bytecode Sourcemap

57300:4966:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24787:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61974:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25689:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32172:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57386:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31613:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57658:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57419:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61512:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21440:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35879:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62096:167;;;:::i;:::-;;38792:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57531:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61377:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57595:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61642:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57564:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27082:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57360:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22624:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5535:103;;;;;;;;;;;;;:::i;:::-;;60042:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4887:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57628:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60945:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25865:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58204:779;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32730:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39575:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59038:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57494:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59313:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57458:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59870:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61074:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33195:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61774:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5793:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61222:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24787:639;24872:4;25211:10;25196:25;;:11;:25;;;;:102;;;;25288:10;25273:25;;:11;:25;;;;25196:102;:179;;;;25365:10;25350:25;;:11;:25;;;;25196:179;25176:199;;24787:639;;;:::o;61974:73::-;4773:13;:11;:13::i;:::-;62035:6:::1;62026;;:15;;;;;;;;;;;;;;;;;;61974:73:::0;:::o;25689:100::-;25743:13;25776:5;25769:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25689:100;:::o;32172:218::-;32248:7;32273:16;32281:7;32273;:16::i;:::-;32268:64;;32298:34;;;;;;;;;;;;;;32268:64;32352:15;:24;32368:7;32352:24;;;;;;;;;;;:30;;;;;;;;;;;;32345:37;;32172:218;;;:::o;57386:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31613:400::-;31694:13;31710:16;31718:7;31710;:16::i;:::-;31694:32;;31766:5;31743:28;;:19;:17;:19::i;:::-;:28;;;31739:175;;31791:44;31808:5;31815:19;:17;:19::i;:::-;31791:16;:44::i;:::-;31786:128;;31863:35;;;;;;;;;;;;;;31786:128;31739:175;31959:2;31926:15;:24;31942:7;31926:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31997:7;31993:2;31977:28;;31986:5;31977:28;;;;;;;;;;;;31683:330;31613:400;;:::o;57658:53::-;;;;;;;;;;;;;;;;;:::o;57419:34::-;;;;:::o;61512:94::-;4773:13;:11;:13::i;:::-;61590:10:::1;61578:9;:22;;;;61512:94:::0;:::o;21440:323::-;21501:7;21729:15;:13;:15::i;:::-;21714:12;;21698:13;;:28;:46;21691:53;;21440:323;:::o;35879:2817::-;36013:27;36043;36062:7;36043:18;:27::i;:::-;36013:57;;36128:4;36087:45;;36103:19;36087:45;;;36083:86;;36141:28;;;;;;;;;;;;;;36083:86;36183:27;36212:23;36239:35;36266:7;36239:26;:35::i;:::-;36182:92;;;;36374:68;36399:15;36416:4;36422:19;:17;:19::i;:::-;36374:24;:68::i;:::-;36369:180;;36462:43;36479:4;36485:19;:17;:19::i;:::-;36462:16;:43::i;:::-;36457:92;;36514:35;;;;;;;;;;;;;;36457:92;36369:180;36580:1;36566:16;;:2;:16;;;36562:52;;;36591:23;;;;;;;;;;;;;;36562:52;36627:43;36649:4;36655:2;36659:7;36668:1;36627:21;:43::i;:::-;36763:15;36760:160;;;36903:1;36882:19;36875:30;36760:160;37300:18;:24;37319:4;37300:24;;;;;;;;;;;;;;;;37298:26;;;;;;;;;;;;37369:18;:22;37388:2;37369:22;;;;;;;;;;;;;;;;37367:24;;;;;;;;;;;37691:146;37728:2;37777:45;37792:4;37798:2;37802:19;37777:14;:45::i;:::-;17839:8;37749:73;37691:18;:146::i;:::-;37662:17;:26;37680:7;37662:26;;;;;;;;;;;:175;;;;38008:1;17839:8;37957:19;:47;:52;37953:627;;;38030:19;38062:1;38052:7;:11;38030:33;;38219:1;38185:17;:30;38203:11;38185:30;;;;;;;;;;;;:35;38181:384;;;38323:13;;38308:11;:28;38304:242;;38503:19;38470:17;:30;38488:11;38470:30;;;;;;;;;;;:52;;;;38304:242;38181:384;38011:569;37953:627;38627:7;38623:2;38608:27;;38617:4;38608:27;;;;;;;;;;;;38646:42;38667:4;38673:2;38677:7;38686:1;38646:20;:42::i;:::-;36002:2694;;;35879:2817;;;:::o;62096:167::-;4773:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;62163:15:::2;62181:21;62163:39;;62219:19;:17;:19::i;:::-;62211:37;;:46;62249:7;62211:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;62154:109;1768:1:::1;2722:7;:22;;;;62096:167::o:0;38792:185::-;38930:39;38947:4;38953:2;38957:7;38930:39;;;;;;;;;;;;:16;:39::i;:::-;38792:185;;;:::o;57531:28::-;;;;:::o;61377:80::-;4773:13;:11;:13::i;:::-;61443:8:::1;61436:4;:15;;;;61377:80:::0;:::o;57595:28::-;;;;;;;;;;;;;:::o;61642:98::-;4773:13;:11;:13::i;:::-;61723:11:::1;61713:7;:21;;;;;;;;;;;;:::i;:::-;;61642:98:::0;:::o;57564:26::-;;;;;;;;;;;;;:::o;27082:152::-;27154:7;27197:27;27216:7;27197:18;:27::i;:::-;27174:52;;27082:152;;;:::o;57360:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22624:233::-;22696:7;22737:1;22720:19;;:5;:19;;;22716:60;;;22748:28;;;;;;;;;;;;;;22716:60;16783:13;22794:18;:25;22813:5;22794:25;;;;;;;;;;;;;;;;:55;22787:62;;22624:233;;;:::o;5535:103::-;4773:13;:11;:13::i;:::-;5600:30:::1;5627:1;5600:18;:30::i;:::-;5535:103::o:0;60042:881::-;60101:16;60155:19;60189:25;60229:22;60254:16;60264:5;60254:9;:16::i;:::-;60229:41;;60285:25;60327:14;60313:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60285:57;;60357:31;;:::i;:::-;60408:9;60420:15;:13;:15::i;:::-;60408:27;;60403:472;60452:14;60437:11;:29;60403:472;;60504:15;60517:1;60504:12;:15::i;:::-;60492:27;;60542:9;:16;;;60538:73;;;60583:8;;60538:73;60659:1;60633:28;;:9;:14;;;:28;;;60629:111;;60706:9;:14;;;60686:34;;60629:111;60783:5;60762:26;;:17;:26;;;60758:102;;;60839:1;60813:8;60822:13;;;;;;60813:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;60758:102;60403:472;60468:3;;;;;60403:472;;;;60896:8;60889:15;;;;;;;60042:881;;;:::o;4887:87::-;4933:7;4960:6;;;;;;;;;;;4953:13;;4887:87;:::o;57628:25::-;;;;:::o;60945:78::-;4773:13;:11;:13::i;:::-;61011:6:::1;61000:8;;:17;;;;;;;;;;;;;;;;;;60945:78:::0;:::o;25865:104::-;25921:13;25954:7;25947:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25865:104;:::o;58204:779::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;58278:6:::1;;;;;;;;;;;58277:7;58269:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;58337:12;;58327:6;:22;;58319:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;58426:9;;58416:6;58400:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;58392:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;58504:9;;58462:17;:38;58480:19;:17;:19::i;:::-;58462:38;;;;;;;;;;;;;;;;:51;58459:442;;58577:12;;58567:6;58530:34;58544:19;:17;:19::i;:::-;58530:13;:34::i;:::-;:43;;;;:::i;:::-;:59;;58522:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;58656:6;58649:4;;:13;;;;:::i;:::-;58636:9;:26;;58628:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;58459:442;;;58765:17;:38;58783:19;:17;:19::i;:::-;58765:38;;;;;;;;;;;;;;;;58753:9;;:50;;;;:::i;:::-;58743:6;:61;;;;:::i;:::-;58735:4;;:70;;;;:::i;:::-;58722:9;:83;;58714:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;58884:9;;58843:17;:38;58861:19;:17;:19::i;:::-;58843:38;;;;;;;;;;;;;;;:50;;;;58459:442;58921:9;;58907:10;;:23;;;;;;;:::i;:::-;;;;;;;;58939:38;58949:19;:17;:19::i;:::-;58970:6;58939:9;:38::i;:::-;1768:1:::0;2722:7;:22;;;;58204:779;:::o;32730:308::-;32841:19;:17;:19::i;:::-;32829:31;;:8;:31;;;32825:61;;;32869:17;;;;;;;;;;;;;;32825:61;32951:8;32899:18;:39;32918:19;:17;:19::i;:::-;32899:39;;;;;;;;;;;;;;;:49;32939:8;32899:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33011:8;32975:55;;32990:19;:17;:19::i;:::-;32975:55;;;33021:8;32975:55;;;;;;:::i;:::-;;;;;;;;32730:308;;:::o;39575:399::-;39742:31;39755:4;39761:2;39765:7;39742:12;:31::i;:::-;39806:1;39788:2;:14;;;:19;39784:183;;39827:56;39858:4;39864:2;39868:7;39877:5;39827:30;:56::i;:::-;39822:145;;39911:40;;;;;;;;;;;;;;39822:145;39784:183;39575:399;;;;:::o;59038:223::-;4773:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;59173:9:::2;;59158:11;59142:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;59134:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;59220:35;59230:11;59243;59220:9;:35::i;:::-;1768:1:::1;2722:7;:22;;;;59038:223:::0;;:::o;57494:32::-;;;;:::o;59313:492::-;59411:13;59452:16;59460:7;59452;:16::i;:::-;59436:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;59562:5;59550:17;;:8;;;;;;;;;;;:17;;;59547:62;;;59587:14;59580:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59547:62;59617:28;59648:10;:8;:10::i;:::-;59617:41;;59703:1;59678:14;59672:28;:32;:127;;;;;;;;;;;;;;;;;59740:14;59756:18;59766:7;59756:9;:18::i;:::-;59723:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59672:127;59665:134;;;59313:492;;;;:::o;57458:31::-;;;;:::o;59870:107::-;59928:7;59951:20;59965:5;59951:13;:20::i;:::-;59944:27;;59870:107;;;:::o;61074:92::-;4773:13;:11;:13::i;:::-;61154:6:::1;61139:12;:21;;;;61074:92:::0;:::o;33195:164::-;33292:4;33316:18;:25;33335:5;33316:25;;;;;;;;;;;;;;;:35;33342:8;33316:35;;;;;;;;;;;;;;;;;;;;;;;;;33309:42;;33195:164;;;;:::o;61774:120::-;4773:13;:11;:13::i;:::-;61873:15:::1;61856:14;:32;;;;;;;;;;;;:::i;:::-;;61774:120:::0;:::o;5793:201::-;4773:13;:11;:13::i;:::-;5902:1:::1;5882:22;;:8;:22;;;;5874:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5958:28;5977:8;5958:18;:28::i;:::-;5793:201:::0;:::o;61222:86::-;4773:13;:11;:13::i;:::-;61296:6:::1;61284:9;:18;;;;61222:86:::0;:::o;5052:132::-;5127:12;:10;:12::i;:::-;5116:23;;:7;:5;:7::i;:::-;:23;;;5108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5052:132::o;33617:282::-;33682:4;33738:7;33719:15;:13;:15::i;:::-;:26;;:66;;;;;33772:13;;33762:7;:23;33719:66;:153;;;;;33871:1;17559:8;33823:17;:26;33841:7;33823:26;;;;;;;;;;;;:44;:49;33719:153;33699:173;;33617:282;;;:::o;55383:105::-;55443:7;55470:10;55463:17;;55383:105;:::o;58059:101::-;58124:7;58151:1;58144:8;;58059:101;:::o;28237:1275::-;28304:7;28324:12;28339:7;28324:22;;28407:4;28388:15;:13;:15::i;:::-;:23;28384:1061;;28441:13;;28434:4;:20;28430:1015;;;28479:14;28496:17;:23;28514:4;28496:23;;;;;;;;;;;;28479:40;;28613:1;17559:8;28585:6;:24;:29;28581:845;;;29250:113;29267:1;29257:6;:11;29250:113;;;29310:17;:25;29328:6;;;;;;;29310:25;;;;;;;;;;;;29301:34;;29250:113;;;29396:6;29389:13;;;;;;28581:845;28456:989;28430:1015;28384:1061;29473:31;;;;;;;;;;;;;;28237:1275;;;;:::o;34780:479::-;34882:27;34911:23;34952:38;34993:15;:24;35009:7;34993:24;;;;;;;;;;;34952:65;;35164:18;35141:41;;35221:19;35215:26;35196:45;;35126:126;34780:479;;;:::o;34008:659::-;34157:11;34322:16;34315:5;34311:28;34302:37;;34482:16;34471:9;34467:32;34454:45;;34632:15;34621:9;34618:30;34610:5;34599:9;34596:20;34593:56;34583:66;;34008:659;;;;;:::o;40636:159::-;;;;;:::o;54692:311::-;54827:7;54847:16;17963:3;54873:19;:41;;54847:68;;17963:3;54941:31;54952:4;54958:2;54962:9;54941:10;:31::i;:::-;54933:40;;:62;;54926:69;;;54692:311;;;;;:::o;30060:450::-;30140:14;30308:16;30301:5;30297:28;30288:37;;30485:5;30471:11;30446:23;30442:41;30439:52;30432:5;30429:63;30419:73;;30060:450;;;;:::o;41460:158::-;;;;;:::o;6154:191::-;6228:16;6247:6;;;;;;;;;;;6228:25;;6273:8;6264:6;;:17;;;;;;;;;;;;;;;;;;6328:8;6297:40;;6318:8;6297:40;;;;;;;;;;;;6217:128;6154:191;:::o;27685:161::-;27753:21;;:::i;:::-;27794:44;27813:17;:24;27831:5;27813:24;;;;;;;;;;;;27794:18;:44::i;:::-;27787:51;;27685:161;;;:::o;22939:178::-;23000:7;16783:13;16921:2;23028:18;:25;23047:5;23028:25;;;;;;;;;;;;;;;;:50;;23027:82;23020:89;;22939:178;;;:::o;49215:112::-;49292:27;49302:2;49306:8;49292:27;;;;;;;;;;;;:9;:27::i;:::-;49215:112;;:::o;42058:716::-;42221:4;42267:2;42242:45;;;42288:19;:17;:19::i;:::-;42309:4;42315:7;42324:5;42242:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42238:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42542:1;42525:6;:13;:18;42521:235;;;42571:40;;;;;;;;;;;;;;42521:235;42714:6;42708:13;42699:6;42695:2;42691:15;42684:38;42238:529;42411:54;;;42401:64;;;:6;:64;;;;42394:71;;;42058:716;;;;;;:::o;57949:102::-;58009:13;58038:7;58031:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57949:102;:::o;55590:1581::-;55655:17;56080:4;56073;56067:11;56063:22;56056:29;;56172:3;56166:4;56159:17;56278:3;56517:5;56499:428;56525:1;56499:428;;;56565:1;56560:3;56556:11;56549:18;;56736:2;56730:4;56726:13;56722:2;56718:22;56713:3;56705:36;56830:2;56824:4;56820:13;56812:21;;56897:4;56887:25;;56905:5;;56887:25;56499:428;;;56503:21;56966:3;56961;56957:13;57081:4;57076:3;57072:14;57065:21;;57146:6;57141:3;57134:19;55694:1470;;55590:1581;;;:::o;3438:98::-;3491:7;3518:10;3511:17;;3438:98;:::o;54393:147::-;54530:6;54393:147;;;;;:::o;29611:366::-;29677:31;;:::i;:::-;29754:6;29721:9;:14;;:41;;;;;;;;;;;17442:3;29807:6;:33;;29773:9;:24;;:68;;;;;;;;;;;29899:1;17559:8;29871:6;:24;:29;;29852:9;:16;;:48;;;;;;;;;;;17963:3;29940:6;:28;;29911:9;:19;;:58;;;;;;;;;;;29611:366;;;:::o;48442:689::-;48573:19;48579:2;48583:8;48573:5;:19::i;:::-;48652:1;48634:2;:14;;;:19;48630:483;;48674:11;48688:13;;48674:27;;48720:13;48742:8;48736:3;:14;48720:30;;48769:233;48800:62;48839:1;48843:2;48847:7;;;;;;48856:5;48800:30;:62::i;:::-;48795:167;;48898:40;;;;;;;;;;;;;;48795:167;48997:3;48989:5;:11;48769:233;;49084:3;49067:13;;:20;49063:34;;49089:8;;;49063:34;48655:458;;48630:483;48442:689;;;:::o;43236:2454::-;43309:20;43332:13;;43309:36;;43372:1;43360:8;:13;43356:44;;;43382:18;;;;;;;;;;;;;;43356:44;43413:61;43443:1;43447:2;43451:12;43465:8;43413:21;:61::i;:::-;43957:1;16921:2;43927:1;:26;;43926:32;43914:8;:45;43888:18;:22;43907:2;43888:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44236:139;44273:2;44327:33;44350:1;44354:2;44358:1;44327:14;:33::i;:::-;44294:30;44315:8;44294:20;:30::i;:::-;:66;44236:18;:139::i;:::-;44202:17;:31;44220:12;44202:31;;;;;;;;;;;:173;;;;44392:16;44423:11;44452:8;44437:12;:23;44423:37;;44707:16;44703:2;44699:25;44687:37;;45079:12;45039:8;44998:1;44936:25;44877:1;44816;44789:335;45204:1;45190:12;45186:20;45144:346;45245:3;45236:7;45233:16;45144:346;;45463:7;45453:8;45450:1;45423:25;45420:1;45417;45412:59;45298:1;45289:7;45285:15;45274:26;;45144:346;;;45148:77;45535:1;45523:8;:13;45519:45;;;45545:19;;;;;;;;;;;;;;45519:45;45597:3;45581:13;:19;;;;43662:1950;;45622:60;45651:1;45655:2;45659:12;45673:8;45622:20;:60::i;:::-;43298:2392;43236:2454;;:::o;30612:324::-;30682:14;30915:1;30905:8;30902:15;30876:24;30872:46;30862:56;;30612:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10278:366::-;10420:3;10441:67;10505:2;10500:3;10441:67;:::i;:::-;10434:74;;10517:93;10606:3;10517:93;:::i;:::-;10635:2;10630:3;10626:12;10619:19;;10278:366;;;:::o;10650:::-;10792:3;10813:67;10877:2;10872:3;10813:67;:::i;:::-;10806:74;;10889:93;10978:3;10889:93;:::i;:::-;11007:2;11002:3;10998:12;10991:19;;10650:366;;;:::o;11022:::-;11164:3;11185:67;11249:2;11244:3;11185:67;:::i;:::-;11178:74;;11261:93;11350:3;11261:93;:::i;:::-;11379:2;11374:3;11370:12;11363:19;;11022:366;;;:::o;11394:::-;11536:3;11557:67;11621:2;11616:3;11557:67;:::i;:::-;11550:74;;11633:93;11722:3;11633:93;:::i;:::-;11751:2;11746:3;11742:12;11735:19;;11394:366;;;:::o;11766:::-;11908:3;11929:67;11993:2;11988:3;11929:67;:::i;:::-;11922:74;;12005:93;12094:3;12005:93;:::i;:::-;12123:2;12118:3;12114:12;12107:19;;11766:366;;;:::o;12138:400::-;12298:3;12319:84;12401:1;12396:3;12319:84;:::i;:::-;12312:91;;12412:93;12501:3;12412:93;:::i;:::-;12530:1;12525:3;12521:11;12514:18;;12138:400;;;:::o;12544:366::-;12686:3;12707:67;12771:2;12766:3;12707:67;:::i;:::-;12700:74;;12783:93;12872:3;12783:93;:::i;:::-;12901:2;12896:3;12892:12;12885:19;;12544:366;;;:::o;12916:::-;13058:3;13079:67;13143:2;13138:3;13079:67;:::i;:::-;13072:74;;13155:93;13244:3;13155:93;:::i;:::-;13273:2;13268:3;13264:12;13257:19;;12916:366;;;:::o;13288:::-;13430:3;13451:67;13515:2;13510:3;13451:67;:::i;:::-;13444:74;;13527:93;13616:3;13527:93;:::i;:::-;13645:2;13640:3;13636:12;13629:19;;13288:366;;;:::o;13660:::-;13802:3;13823:67;13887:2;13882:3;13823:67;:::i;:::-;13816:74;;13899:93;13988:3;13899:93;:::i;:::-;14017:2;14012:3;14008:12;14001:19;;13660:366;;;:::o;14032:::-;14174:3;14195:67;14259:2;14254:3;14195:67;:::i;:::-;14188:74;;14271:93;14360:3;14271:93;:::i;:::-;14389:2;14384:3;14380:12;14373:19;;14032:366;;;:::o;14404:108::-;14481:24;14499:5;14481:24;:::i;:::-;14476:3;14469:37;14404:108;;:::o;14518:118::-;14605:24;14623:5;14605:24;:::i;:::-;14600:3;14593:37;14518:118;;:::o;14642:701::-;14923:3;14945:95;15036:3;15027:6;14945:95;:::i;:::-;14938:102;;15057:95;15148:3;15139:6;15057:95;:::i;:::-;15050:102;;15169:148;15313:3;15169:148;:::i;:::-;15162:155;;15334:3;15327:10;;14642:701;;;;;:::o;15349:222::-;15442:4;15480:2;15469:9;15465:18;15457:26;;15493:71;15561:1;15550:9;15546:17;15537:6;15493:71;:::i;:::-;15349:222;;;;:::o;15577:640::-;15772:4;15810:3;15799:9;15795:19;15787:27;;15824:71;15892:1;15881:9;15877:17;15868:6;15824:71;:::i;:::-;15905:72;15973:2;15962:9;15958:18;15949:6;15905:72;:::i;:::-;15987;16055:2;16044:9;16040:18;16031:6;15987:72;:::i;:::-;16106:9;16100:4;16096:20;16091:2;16080:9;16076:18;16069:48;16134:76;16205:4;16196:6;16134:76;:::i;:::-;16126:84;;15577:640;;;;;;;:::o;16223:373::-;16366:4;16404:2;16393:9;16389:18;16381:26;;16453:9;16447:4;16443:20;16439:1;16428:9;16424:17;16417:47;16481:108;16584:4;16575:6;16481:108;:::i;:::-;16473:116;;16223:373;;;;:::o;16602:210::-;16689:4;16727:2;16716:9;16712:18;16704:26;;16740:65;16802:1;16791:9;16787:17;16778:6;16740:65;:::i;:::-;16602:210;;;;:::o;16818:313::-;16931:4;16969:2;16958:9;16954:18;16946:26;;17018:9;17012:4;17008:20;17004:1;16993:9;16989:17;16982:47;17046:78;17119:4;17110:6;17046:78;:::i;:::-;17038:86;;16818:313;;;;:::o;17137:419::-;17303:4;17341:2;17330:9;17326:18;17318:26;;17390:9;17384:4;17380:20;17376:1;17365:9;17361:17;17354:47;17418:131;17544:4;17418:131;:::i;:::-;17410:139;;17137:419;;;:::o;17562:::-;17728:4;17766:2;17755:9;17751:18;17743:26;;17815:9;17809:4;17805:20;17801:1;17790:9;17786:17;17779:47;17843:131;17969:4;17843:131;:::i;:::-;17835:139;;17562:419;;;:::o;17987:::-;18153:4;18191:2;18180:9;18176:18;18168:26;;18240:9;18234:4;18230:20;18226:1;18215:9;18211:17;18204:47;18268:131;18394:4;18268:131;:::i;:::-;18260:139;;17987:419;;;:::o;18412:::-;18578:4;18616:2;18605:9;18601:18;18593:26;;18665:9;18659:4;18655:20;18651:1;18640:9;18636:17;18629:47;18693:131;18819:4;18693:131;:::i;:::-;18685:139;;18412:419;;;:::o;18837:::-;19003:4;19041:2;19030:9;19026:18;19018:26;;19090:9;19084:4;19080:20;19076:1;19065:9;19061:17;19054:47;19118:131;19244:4;19118:131;:::i;:::-;19110:139;;18837:419;;;:::o;19262:::-;19428:4;19466:2;19455:9;19451:18;19443:26;;19515:9;19509:4;19505:20;19501:1;19490:9;19486:17;19479:47;19543:131;19669:4;19543:131;:::i;:::-;19535:139;;19262:419;;;:::o;19687:::-;19853:4;19891:2;19880:9;19876:18;19868:26;;19940:9;19934:4;19930:20;19926:1;19915:9;19911:17;19904:47;19968:131;20094:4;19968:131;:::i;:::-;19960:139;;19687:419;;;:::o;20112:::-;20278:4;20316:2;20305:9;20301:18;20293:26;;20365:9;20359:4;20355:20;20351:1;20340:9;20336:17;20329:47;20393:131;20519:4;20393:131;:::i;:::-;20385:139;;20112:419;;;:::o;20537:::-;20703:4;20741:2;20730:9;20726:18;20718:26;;20790:9;20784:4;20780:20;20776:1;20765:9;20761:17;20754:47;20818:131;20944:4;20818:131;:::i;:::-;20810:139;;20537:419;;;:::o;20962:::-;21128:4;21166:2;21155:9;21151:18;21143:26;;21215:9;21209:4;21205:20;21201:1;21190:9;21186:17;21179:47;21243:131;21369:4;21243:131;:::i;:::-;21235:139;;20962:419;;;:::o;21387:222::-;21480:4;21518:2;21507:9;21503:18;21495:26;;21531:71;21599:1;21588:9;21584:17;21575:6;21531:71;:::i;:::-;21387:222;;;;:::o;21615:129::-;21649:6;21676:20;;:::i;:::-;21666:30;;21705:33;21733:4;21725:6;21705:33;:::i;:::-;21615:129;;;:::o;21750:75::-;21783:6;21816:2;21810:9;21800:19;;21750:75;:::o;21831:307::-;21892:4;21982:18;21974:6;21971:30;21968:56;;;22004:18;;:::i;:::-;21968:56;22042:29;22064:6;22042:29;:::i;:::-;22034:37;;22126:4;22120;22116:15;22108:23;;21831:307;;;:::o;22144:308::-;22206:4;22296:18;22288:6;22285:30;22282:56;;;22318:18;;:::i;:::-;22282:56;22356:29;22378:6;22356:29;:::i;:::-;22348:37;;22440:4;22434;22430:15;22422:23;;22144:308;;;:::o;22458:132::-;22525:4;22548:3;22540:11;;22578:4;22573:3;22569:14;22561:22;;22458:132;;;:::o;22596:114::-;22663:6;22697:5;22691:12;22681:22;;22596:114;;;:::o;22716:98::-;22767:6;22801:5;22795:12;22785:22;;22716:98;;;:::o;22820:99::-;22872:6;22906:5;22900:12;22890:22;;22820:99;;;:::o;22925:113::-;22995:4;23027;23022:3;23018:14;23010:22;;22925:113;;;:::o;23044:184::-;23143:11;23177:6;23172:3;23165:19;23217:4;23212:3;23208:14;23193:29;;23044:184;;;;:::o;23234:168::-;23317:11;23351:6;23346:3;23339:19;23391:4;23386:3;23382:14;23367:29;;23234:168;;;;:::o;23408:169::-;23492:11;23526:6;23521:3;23514:19;23566:4;23561:3;23557:14;23542:29;;23408:169;;;;:::o;23583:148::-;23685:11;23722:3;23707:18;;23583:148;;;;:::o;23737:305::-;23777:3;23796:20;23814:1;23796:20;:::i;:::-;23791:25;;23830:20;23848:1;23830:20;:::i;:::-;23825:25;;23984:1;23916:66;23912:74;23909:1;23906:81;23903:107;;;23990:18;;:::i;:::-;23903:107;24034:1;24031;24027:9;24020:16;;23737:305;;;;:::o;24048:348::-;24088:7;24111:20;24129:1;24111:20;:::i;:::-;24106:25;;24145:20;24163:1;24145:20;:::i;:::-;24140:25;;24333:1;24265:66;24261:74;24258:1;24255:81;24250:1;24243:9;24236:17;24232:105;24229:131;;;24340:18;;:::i;:::-;24229:131;24388:1;24385;24381:9;24370:20;;24048:348;;;;:::o;24402:191::-;24442:4;24462:20;24480:1;24462:20;:::i;:::-;24457:25;;24496:20;24514:1;24496:20;:::i;:::-;24491:25;;24535:1;24532;24529:8;24526:34;;;24540:18;;:::i;:::-;24526:34;24585:1;24582;24578:9;24570:17;;24402:191;;;;:::o;24599:96::-;24636:7;24665:24;24683:5;24665:24;:::i;:::-;24654:35;;24599:96;;;:::o;24701:90::-;24735:7;24778:5;24771:13;24764:21;24753:32;;24701:90;;;:::o;24797:149::-;24833:7;24873:66;24866:5;24862:78;24851:89;;24797:149;;;:::o;24952:126::-;24989:7;25029:42;25022:5;25018:54;25007:65;;24952:126;;;:::o;25084:77::-;25121:7;25150:5;25139:16;;25084:77;;;:::o;25167:154::-;25251:6;25246:3;25241;25228:30;25313:1;25304:6;25299:3;25295:16;25288:27;25167:154;;;:::o;25327:307::-;25395:1;25405:113;25419:6;25416:1;25413:13;25405:113;;;25504:1;25499:3;25495:11;25489:18;25485:1;25480:3;25476:11;25469:39;25441:2;25438:1;25434:10;25429:15;;25405:113;;;25536:6;25533:1;25530:13;25527:101;;;25616:1;25607:6;25602:3;25598:16;25591:27;25527:101;25376:258;25327:307;;;:::o;25640:320::-;25684:6;25721:1;25715:4;25711:12;25701:22;;25768:1;25762:4;25758:12;25789:18;25779:81;;25845:4;25837:6;25833:17;25823:27;;25779:81;25907:2;25899:6;25896:14;25876:18;25873:38;25870:84;;;25926:18;;:::i;:::-;25870:84;25691:269;25640:320;;;:::o;25966:281::-;26049:27;26071:4;26049:27;:::i;:::-;26041:6;26037:40;26179:6;26167:10;26164:22;26143:18;26131:10;26128:34;26125:62;26122:88;;;26190:18;;:::i;:::-;26122:88;26230:10;26226:2;26219:22;26009:238;25966:281;;:::o;26253:180::-;26301:77;26298:1;26291:88;26398:4;26395:1;26388:15;26422:4;26419:1;26412:15;26439:180;26487:77;26484:1;26477:88;26584:4;26581:1;26574:15;26608:4;26605:1;26598:15;26625:180;26673:77;26670:1;26663:88;26770:4;26767:1;26760:15;26794:4;26791:1;26784:15;26811:180;26859:77;26856:1;26849:88;26956:4;26953:1;26946:15;26980:4;26977:1;26970:15;26997:117;27106:1;27103;27096:12;27120:117;27229:1;27226;27219:12;27243:117;27352:1;27349;27342:12;27366:117;27475:1;27472;27465:12;27489:102;27530:6;27581:2;27577:7;27572:2;27565:5;27561:14;27557:28;27547:38;;27489:102;;;:::o;27597:235::-;27737:34;27733:1;27725:6;27721:14;27714:58;27806:18;27801:2;27793:6;27789:15;27782:43;27597:235;:::o;27838:225::-;27978:34;27974:1;27966:6;27962:14;27955:58;28047:8;28042:2;28034:6;28030:15;28023:33;27838:225;:::o;28069:160::-;28209:12;28205:1;28197:6;28193:14;28186:36;28069:160;:::o;28235:173::-;28375:25;28371:1;28363:6;28359:14;28352:49;28235:173;:::o;28414:172::-;28554:24;28550:1;28542:6;28538:14;28531:48;28414:172;:::o;28592:155::-;28732:7;28728:1;28720:6;28716:14;28709:31;28592:155;:::o;28753:182::-;28893:34;28889:1;28881:6;28877:14;28870:58;28753:182;:::o;28941:168::-;29081:20;29077:1;29069:6;29065:14;29058:44;28941:168;:::o;29115:177::-;29255:29;29251:1;29243:6;29239:14;29232:53;29115:177;:::o;29298:181::-;29438:33;29434:1;29426:6;29422:14;29415:57;29298:181;:::o;29485:::-;29625:33;29621:1;29613:6;29609:14;29602:57;29485:181;:::o;29672:122::-;29745:24;29763:5;29745:24;:::i;:::-;29738:5;29735:35;29725:63;;29784:1;29781;29774:12;29725:63;29672:122;:::o;29800:116::-;29870:21;29885:5;29870:21;:::i;:::-;29863:5;29860:32;29850:60;;29906:1;29903;29896:12;29850:60;29800:116;:::o;29922:120::-;29994:23;30011:5;29994:23;:::i;:::-;29987:5;29984:34;29974:62;;30032:1;30029;30022:12;29974:62;29922:120;:::o;30048:122::-;30121:24;30139:5;30121:24;:::i;:::-;30114:5;30111:35;30101:63;;30160:1;30157;30150:12;30101:63;30048:122;:::o

Swarm Source

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