ETH Price: $2,600.52 (+0.26%)
Gas: 2 Gwei

Token

BoredLions (BL)
 

Overview

Max Total Supply

611 BL

Holders

58

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BL
0xb17e4e5df5c5ae7b06689a112bdf0f125d8355d4
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:
BoredLions

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-21
*/

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// 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/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/Deployer.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;





contract BoredLions is ERC721A, Ownable, Pausable {
    using SafeMath for uint256;

    event PermanentURI(string _value, uint256 indexed _id);

    uint256 public maxSupply = 5555;
    uint256 public PRICE = 0 ether;
    uint256 public MAX_PER_MINT = 50;
    uint public constant MAX_RESERVE_SUPPLY = 200;
    string public baseExtension = ".json";

    string public _contractBaseURI;

    constructor(string memory baseURI) ERC721A("BoredLions", "BL") {
        _contractBaseURI = baseURI;
        _pause();
        _mint(msg.sender, 100);
    }

    // reserve MAX_RESERVE_SUPPLY for promotional purposes
    function reserveNFTs(address to, uint256 quantity) external onlyOwner {
        require(quantity > 0, "Quantity cannot be zero");
        uint totalMinted = totalSupply();
        require(totalMinted.add(quantity) <= MAX_RESERVE_SUPPLY, "No more promo NFTs left");
        _safeMint(to, quantity);
        lockMetadata(quantity);
    }

    function mint(uint256 quantity) external payable whenNotPaused {
        require(quantity > 0, "Quantity cannot be zero");
        uint totalMinted = totalSupply();
        require(quantity <= MAX_PER_MINT, "Cannot mint that many at once");
        require(totalMinted.add(quantity) < maxSupply, "Not enough NFTs left to mint");
        require(PRICE * quantity <= msg.value, "Insufficient funds sent");

        _safeMint(msg.sender, quantity);
        lockMetadata(quantity);
    }

    function lockMetadata(uint256 quantity) internal {
        for (uint256 i = quantity; i > 0; i--) {
            uint256 tid = totalSupply() - i;
            emit PermanentURI(tokenURI(tid), tid);
        }
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }

    // OpenSea metadata initialization
    function contractURI() public pure returns (string memory) {
        return "";
    }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        _contractBaseURI = _newBaseURI;
    }

        //only owner
    function setPRICE(uint256 _newPRICE) public onlyOwner {
        PRICE = _newPRICE;
    }

            //only owner
    function setmaxSupply(uint256 _newmaxSupply) public onlyOwner {
        maxSupply = _newmaxSupply;
    }

        function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        MAX_PER_MINT = _newmaxMintAmount;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPRICE","type":"uint256"}],"name":"setPRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526115b36009556000600a556032600b556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90816200005a919062000842565b503480156200006857600080fd5b5060405162003d8b38038062003d8b83398181016040528101906200008e919062000a8d565b6040518060400160405280600a81526020017f426f7265644c696f6e73000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f424c00000000000000000000000000000000000000000000000000000000000081525081600290816200010b919062000842565b5080600390816200011d919062000842565b506200012e620001ad60201b60201c565b6000819055505050620001566200014a620001b260201b60201c565b620001ba60201b60201c565b6000600860146101000a81548160ff02191690831515021790555080600d908162000182919062000842565b50620001936200028060201b60201c565b620001a6336064620002f560201b60201c565b5062000bc3565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000290620004dc60201b60201c565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002dc620001b260201b60201c565b604051620002eb919062000b23565b60405180910390a1565b6000805490506000820362000336576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200034b60008483856200053160201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003da83620003bc60008660006200053760201b60201c565b620003cd856200056760201b60201c565b176200057760201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200047d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000440565b5060008203620004b9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004d76000848385620005a260201b60201c565b505050565b620004ec620005a860201b60201c565b156200052f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005269062000ba1565b60405180910390fd5b565b50505050565b60008060e883901c905060e862000556868684620005bf60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860149054906101000a900460ff16905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200064a57607f821691505b60208210810362000660576200065f62000602565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006ca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200068b565b620006d686836200068b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007236200071d6200071784620006ee565b620006f8565b620006ee565b9050919050565b6000819050919050565b6200073f8362000702565b620007576200074e826200072a565b84845462000698565b825550505050565b600090565b6200076e6200075f565b6200077b81848462000734565b505050565b5b81811015620007a3576200079760008262000764565b60018101905062000781565b5050565b601f821115620007f257620007bc8162000666565b620007c7846200067b565b81016020851015620007d7578190505b620007ef620007e6856200067b565b83018262000780565b50505b505050565b600082821c905092915050565b60006200081760001984600802620007f7565b1980831691505092915050565b600062000832838362000804565b9150826002028217905092915050565b6200084d82620005c8565b67ffffffffffffffff811115620008695762000868620005d3565b5b62000875825462000631565b62000882828285620007a7565b600060209050601f831160018114620008ba5760008415620008a5578287015190505b620008b1858262000824565b86555062000921565b601f198416620008ca8662000666565b60005b82811015620008f457848901518255600182019150602085019450602081019050620008cd565b8683101562000914578489015162000910601f89168262000804565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620009638262000947565b810181811067ffffffffffffffff82111715620009855762000984620005d3565b5b80604052505050565b60006200099a62000929565b9050620009a8828262000958565b919050565b600067ffffffffffffffff821115620009cb57620009ca620005d3565b5b620009d68262000947565b9050602081019050919050565b60005b8381101562000a03578082015181840152602081019050620009e6565b60008484015250505050565b600062000a2662000a2084620009ad565b6200098e565b90508281526020810184848401111562000a455762000a4462000942565b5b62000a52848285620009e3565b509392505050565b600082601f83011262000a725762000a716200093d565b5b815162000a8484826020860162000a0f565b91505092915050565b60006020828403121562000aa65762000aa562000933565b5b600082015167ffffffffffffffff81111562000ac75762000ac662000938565b5b62000ad58482850162000a5a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b0b8262000ade565b9050919050565b62000b1d8162000afe565b82525050565b600060208201905062000b3a600083018462000b12565b92915050565b600082825260208201905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000b8960108362000b40565b915062000b968262000b51565b602082019050919050565b6000602082019050818103600083015262000bbc8162000b7a565b9050919050565b6131b88062000bd36000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063da3ef23f1161006f578063da3ef23f146106fc578063e8a3d48514610725578063e985e9c514610750578063eea52d381461078d578063f2fde38b146107b657610204565b8063b88d4fde14610640578063c668286214610669578063c87b56dd14610694578063d5abeb01146106d157610204565b80638da5cb5b116100e75780638da5cb5b1461057a57806395d89b41146105a5578063a0712d68146105d0578063a22cb465146105ec578063a4a5e7631461061557610204565b8063715018a6146104f85780637f00c7a61461050f5780638456cb59146105385780638d859f3e1461054f57610204565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146103ff5780636352211e1461042a57806370a082311461046757806370a8de86146104a45780637101ebca146104cd57610204565b80633ccfd60b1461037f5780633f4ba83a1461039657806342842e0e146103ad57806355f804b3146103d657610204565b806309d42b30116101d757806309d42b30146102d757806318160ddd14610302578063228025e81461032d57806323b872dd1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061221d565b6107df565b60405161023d9190612265565b60405180910390f35b34801561025257600080fd5b5061025b610871565b6040516102689190612310565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612368565b610903565b6040516102a591906123d6565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061241d565b610982565b005b3480156102e357600080fd5b506102ec610ac6565b6040516102f9919061246c565b60405180910390f35b34801561030e57600080fd5b50610317610acc565b604051610324919061246c565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612368565b610ae3565b005b34801561036257600080fd5b5061037d60048036038101906103789190612487565b610af5565b005b34801561038b57600080fd5b50610394610e17565b005b3480156103a257600080fd5b506103ab610e6e565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612487565b610e80565b005b3480156103e257600080fd5b506103fd60048036038101906103f8919061260f565b610ea0565b005b34801561040b57600080fd5b50610414610ebb565b6040516104219190612265565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612368565b610ed2565b60405161045e91906123d6565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190612658565b610ee4565b60405161049b919061246c565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c6919061241d565b610f9c565b005b3480156104d957600080fd5b506104e2611061565b6040516104ef9190612310565b60405180910390f35b34801561050457600080fd5b5061050d6110ef565b005b34801561051b57600080fd5b5061053660048036038101906105319190612368565b611103565b005b34801561054457600080fd5b5061054d611115565b005b34801561055b57600080fd5b50610564611127565b604051610571919061246c565b60405180910390f35b34801561058657600080fd5b5061058f61112d565b60405161059c91906123d6565b60405180910390f35b3480156105b157600080fd5b506105ba611157565b6040516105c79190612310565b60405180910390f35b6105ea60048036038101906105e59190612368565b6111e9565b005b3480156105f857600080fd5b50610613600480360381019061060e91906126b1565b611342565b005b34801561062157600080fd5b5061062a6114b9565b604051610637919061246c565b60405180910390f35b34801561064c57600080fd5b5061066760048036038101906106629190612792565b6114be565b005b34801561067557600080fd5b5061067e611531565b60405161068b9190612310565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190612368565b6115bf565b6040516106c89190612310565b60405180910390f35b3480156106dd57600080fd5b506106e661165d565b6040516106f3919061246c565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e919061260f565b611663565b005b34801561073157600080fd5b5061073a61167e565b6040516107479190612310565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190612815565b611695565b6040516107849190612265565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190612368565b611729565b005b3480156107c257600080fd5b506107dd60048036038101906107d89190612658565b61173b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088090612884565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac90612884565b80156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b600061090e826117be565b610944576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098d82610ed2565b90508073ffffffffffffffffffffffffffffffffffffffff166109ae61181d565b73ffffffffffffffffffffffffffffffffffffffff1614610a11576109da816109d561181d565b611695565b610a10576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610ad6611825565b6001546000540303905090565b610aeb61182a565b8060098190555050565b6000610b00826118a8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b67576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b7384611974565b91509150610b898187610b8461181d565b61199b565b610bd557610b9e86610b9961181d565b611695565b610bd4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4886868660016119df565b8015610c5357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d2185610cfd8888876119e5565b7c020000000000000000000000000000000000000000000000000000000017611a0d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610da75760006001850190506000600460008381526020019081526020016000205403610da5576000548114610da4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e0f8686866001611a38565b505050505050565b610e1f61182a565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e6a573d6000803e3d6000fd5b5050565b610e7661182a565b610e7e611a3e565b565b610e9b838383604051806020016040528060008152506114be565b505050565b610ea861182a565b80600d9081610eb79190612a61565b5050565b6000600860149054906101000a900460ff16905090565b6000610edd826118a8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f4b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fa461182a565b60008111610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90612b7f565b60405180910390fd5b6000610ff1610acc565b905060c86110088383611aa190919063ffffffff16565b1115611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090612beb565b60405180910390fd5b6110538383611ab7565b61105c82611ad5565b505050565b600d805461106e90612884565b80601f016020809104026020016040519081016040528092919081815260200182805461109a90612884565b80156110e75780601f106110bc576101008083540402835291602001916110e7565b820191906000526020600020905b8154815290600101906020018083116110ca57829003601f168201915b505050505081565b6110f761182a565b6111016000611b53565b565b61110b61182a565b80600b8190555050565b61111d61182a565b611125611c19565b565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461116690612884565b80601f016020809104026020016040519081016040528092919081815260200182805461119290612884565b80156111df5780601f106111b4576101008083540402835291602001916111df565b820191906000526020600020905b8154815290600101906020018083116111c257829003601f168201915b5050505050905090565b6111f1611c7c565b60008111611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90612b7f565b60405180910390fd5b600061123e610acc565b9050600b54821115611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90612c57565b60405180910390fd5b60095461129b8383611aa190919063ffffffff16565b106112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290612cc3565b60405180910390fd5b3482600a546112ea9190612d12565b111561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290612db8565b60405180910390fd5b6113353383611ab7565b61133e82611ad5565b5050565b61134a61181d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ae576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113bb61181d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661146861181d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114ad9190612265565b60405180910390a35050565b60c881565b6114c9848484610af5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461152b576114f484848484611cc6565b61152a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c805461153e90612884565b80601f016020809104026020016040519081016040528092919081815260200182805461156a90612884565b80156115b75780601f1061158c576101008083540402835291602001916115b7565b820191906000526020600020905b81548152906001019060200180831161159a57829003601f168201915b505050505081565b60606115ca826117be565b611600576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061160a611e16565b9050600081510361162a5760405180602001604052806000815250611655565b8061163484611ea8565b604051602001611645929190612e14565b6040516020818303038152906040525b915050919050565b60095481565b61166b61182a565b80600c908161167a9190612a61565b5050565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61173161182a565b80600a8190555050565b61174361182a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a990612eaa565b60405180910390fd5b6117bb81611b53565b50565b6000816117c9611825565b111580156117d8575060005482105b8015611816575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b611832611eef565b73ffffffffffffffffffffffffffffffffffffffff1661185061112d565b73ffffffffffffffffffffffffffffffffffffffff16146118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d90612f16565b60405180910390fd5b565b600080829050806118b7611825565b1161193d5760005481101561193c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361193a575b60008103611930576004600083600190039350838152602001908152602001600020549050611906565b809250505061196f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119fc868684611ef7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a46611f00565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a8a611eef565b604051611a9791906123d6565b60405180910390a1565b60008183611aaf9190612f36565b905092915050565b611ad1828260405180602001604052806000815250611f49565b5050565b60008190505b6000811115611b4f57600081611aef610acc565b611af99190612f6a565b9050807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207611b26836115bf565b604051611b339190612310565b60405180910390a2508080611b4790612f9e565b915050611adb565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c21611c7c565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c65611eef565b604051611c7291906123d6565b60405180910390a1565b611c84610ebb565b15611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90613013565b60405180910390fd5b565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cec61181d565b8786866040518563ffffffff1660e01b8152600401611d0e9493929190613088565b6020604051808303816000875af1925050508015611d4a57506040513d601f19601f82011682018060405250810190611d4791906130e9565b60015b611dc3573d8060008114611d7a576040519150601f19603f3d011682016040523d82523d6000602084013e611d7f565b606091505b506000815103611dbb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611e2590612884565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5190612884565b8015611e9e5780601f10611e7357610100808354040283529160200191611e9e565b820191906000526020600020905b815481529060010190602001808311611e8157829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611edb57600183039250600a81066030018353600a8104905080611eb9575b508181036020830392508083525050919050565b600033905090565b60009392505050565b611f08610ebb565b611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e90613162565b60405180910390fd5b565b611f538383611fe6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fe157600080549050600083820390505b611f936000868380600101945086611cc6565b611fc9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f80578160005414611fde57600080fd5b50505b505050565b60008054905060008203612026576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61203360008483856119df565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120aa8361209b60008660006119e5565b6120a4856121a1565b17611a0d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461214b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612110565b5060008203612186576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061219c6000848385611a38565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121fa816121c5565b811461220557600080fd5b50565b600081359050612217816121f1565b92915050565b600060208284031215612233576122326121bb565b5b600061224184828501612208565b91505092915050565b60008115159050919050565b61225f8161224a565b82525050565b600060208201905061227a6000830184612256565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122ba57808201518184015260208101905061229f565b60008484015250505050565b6000601f19601f8301169050919050565b60006122e282612280565b6122ec818561228b565b93506122fc81856020860161229c565b612305816122c6565b840191505092915050565b6000602082019050818103600083015261232a81846122d7565b905092915050565b6000819050919050565b61234581612332565b811461235057600080fd5b50565b6000813590506123628161233c565b92915050565b60006020828403121561237e5761237d6121bb565b5b600061238c84828501612353565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123c082612395565b9050919050565b6123d0816123b5565b82525050565b60006020820190506123eb60008301846123c7565b92915050565b6123fa816123b5565b811461240557600080fd5b50565b600081359050612417816123f1565b92915050565b60008060408385031215612434576124336121bb565b5b600061244285828601612408565b925050602061245385828601612353565b9150509250929050565b61246681612332565b82525050565b6000602082019050612481600083018461245d565b92915050565b6000806000606084860312156124a05761249f6121bb565b5b60006124ae86828701612408565b93505060206124bf86828701612408565b92505060406124d086828701612353565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61251c826122c6565b810181811067ffffffffffffffff8211171561253b5761253a6124e4565b5b80604052505050565b600061254e6121b1565b905061255a8282612513565b919050565b600067ffffffffffffffff82111561257a576125796124e4565b5b612583826122c6565b9050602081019050919050565b82818337600083830152505050565b60006125b26125ad8461255f565b612544565b9050828152602081018484840111156125ce576125cd6124df565b5b6125d9848285612590565b509392505050565b600082601f8301126125f6576125f56124da565b5b813561260684826020860161259f565b91505092915050565b600060208284031215612625576126246121bb565b5b600082013567ffffffffffffffff811115612643576126426121c0565b5b61264f848285016125e1565b91505092915050565b60006020828403121561266e5761266d6121bb565b5b600061267c84828501612408565b91505092915050565b61268e8161224a565b811461269957600080fd5b50565b6000813590506126ab81612685565b92915050565b600080604083850312156126c8576126c76121bb565b5b60006126d685828601612408565b92505060206126e78582860161269c565b9150509250929050565b600067ffffffffffffffff82111561270c5761270b6124e4565b5b612715826122c6565b9050602081019050919050565b6000612735612730846126f1565b612544565b905082815260208101848484011115612751576127506124df565b5b61275c848285612590565b509392505050565b600082601f830112612779576127786124da565b5b8135612789848260208601612722565b91505092915050565b600080600080608085870312156127ac576127ab6121bb565b5b60006127ba87828801612408565b94505060206127cb87828801612408565b93505060406127dc87828801612353565b925050606085013567ffffffffffffffff8111156127fd576127fc6121c0565b5b61280987828801612764565b91505092959194509250565b6000806040838503121561282c5761282b6121bb565b5b600061283a85828601612408565b925050602061284b85828601612408565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061289c57607f821691505b6020821081036128af576128ae612855565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826128da565b61292186836128da565b95508019841693508086168417925050509392505050565b6000819050919050565b600061295e61295961295484612332565b612939565b612332565b9050919050565b6000819050919050565b61297883612943565b61298c61298482612965565b8484546128e7565b825550505050565b600090565b6129a1612994565b6129ac81848461296f565b505050565b5b818110156129d0576129c5600082612999565b6001810190506129b2565b5050565b601f821115612a15576129e6816128b5565b6129ef846128ca565b810160208510156129fe578190505b612a12612a0a856128ca565b8301826129b1565b50505b505050565b600082821c905092915050565b6000612a3860001984600802612a1a565b1980831691505092915050565b6000612a518383612a27565b9150826002028217905092915050565b612a6a82612280565b67ffffffffffffffff811115612a8357612a826124e4565b5b612a8d8254612884565b612a988282856129d4565b600060209050601f831160018114612acb5760008415612ab9578287015190505b612ac38582612a45565b865550612b2b565b601f198416612ad9866128b5565b60005b82811015612b0157848901518255600182019150602085019450602081019050612adc565b86831015612b1e5784890151612b1a601f891682612a27565b8355505b6001600288020188555050505b505050505050565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b6000612b6960178361228b565b9150612b7482612b33565b602082019050919050565b60006020820190508181036000830152612b9881612b5c565b9050919050565b7f4e6f206d6f72652070726f6d6f204e465473206c656674000000000000000000600082015250565b6000612bd560178361228b565b9150612be082612b9f565b602082019050919050565b60006020820190508181036000830152612c0481612bc8565b9050919050565b7f43616e6e6f74206d696e742074686174206d616e79206174206f6e6365000000600082015250565b6000612c41601d8361228b565b9150612c4c82612c0b565b602082019050919050565b60006020820190508181036000830152612c7081612c34565b9050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e7400000000600082015250565b6000612cad601c8361228b565b9150612cb882612c77565b602082019050919050565b60006020820190508181036000830152612cdc81612ca0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d1d82612332565b9150612d2883612332565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d6157612d60612ce3565b5b828202905092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b6000612da260178361228b565b9150612dad82612d6c565b602082019050919050565b60006020820190508181036000830152612dd181612d95565b9050919050565b600081905092915050565b6000612dee82612280565b612df88185612dd8565b9350612e0881856020860161229c565b80840191505092915050565b6000612e208285612de3565b9150612e2c8284612de3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e9460268361228b565b9150612e9f82612e38565b604082019050919050565b60006020820190508181036000830152612ec381612e87565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f0060208361228b565b9150612f0b82612eca565b602082019050919050565b60006020820190508181036000830152612f2f81612ef3565b9050919050565b6000612f4182612332565b9150612f4c83612332565b9250828201905080821115612f6457612f63612ce3565b5b92915050565b6000612f7582612332565b9150612f8083612332565b9250828203905081811115612f9857612f97612ce3565b5b92915050565b6000612fa982612332565b915060008203612fbc57612fbb612ce3565b5b600182039050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612ffd60108361228b565b915061300882612fc7565b602082019050919050565b6000602082019050818103600083015261302c81612ff0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061305a82613033565b613064818561303e565b935061307481856020860161229c565b61307d816122c6565b840191505092915050565b600060808201905061309d60008301876123c7565b6130aa60208301866123c7565b6130b7604083018561245d565b81810360608301526130c9818461304f565b905095945050505050565b6000815190506130e3816121f1565b92915050565b6000602082840312156130ff576130fe6121bb565b5b600061310d848285016130d4565b91505092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061314c60148361228b565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b905091905056fea26469706673582212206ae5de0ca5638151857cce9595d7ab25cd59f403e548d52a8ffdccfd6634de0764736f6c6343000810003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e7048466d6b3447624a78446f6e327232736f5970776d724b617a3173365166474d6e424a746a41324553642f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063da3ef23f1161006f578063da3ef23f146106fc578063e8a3d48514610725578063e985e9c514610750578063eea52d381461078d578063f2fde38b146107b657610204565b8063b88d4fde14610640578063c668286214610669578063c87b56dd14610694578063d5abeb01146106d157610204565b80638da5cb5b116100e75780638da5cb5b1461057a57806395d89b41146105a5578063a0712d68146105d0578063a22cb465146105ec578063a4a5e7631461061557610204565b8063715018a6146104f85780637f00c7a61461050f5780638456cb59146105385780638d859f3e1461054f57610204565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146103ff5780636352211e1461042a57806370a082311461046757806370a8de86146104a45780637101ebca146104cd57610204565b80633ccfd60b1461037f5780633f4ba83a1461039657806342842e0e146103ad57806355f804b3146103d657610204565b806309d42b30116101d757806309d42b30146102d757806318160ddd14610302578063228025e81461032d57806323b872dd1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061221d565b6107df565b60405161023d9190612265565b60405180910390f35b34801561025257600080fd5b5061025b610871565b6040516102689190612310565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612368565b610903565b6040516102a591906123d6565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061241d565b610982565b005b3480156102e357600080fd5b506102ec610ac6565b6040516102f9919061246c565b60405180910390f35b34801561030e57600080fd5b50610317610acc565b604051610324919061246c565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612368565b610ae3565b005b34801561036257600080fd5b5061037d60048036038101906103789190612487565b610af5565b005b34801561038b57600080fd5b50610394610e17565b005b3480156103a257600080fd5b506103ab610e6e565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612487565b610e80565b005b3480156103e257600080fd5b506103fd60048036038101906103f8919061260f565b610ea0565b005b34801561040b57600080fd5b50610414610ebb565b6040516104219190612265565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612368565b610ed2565b60405161045e91906123d6565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190612658565b610ee4565b60405161049b919061246c565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c6919061241d565b610f9c565b005b3480156104d957600080fd5b506104e2611061565b6040516104ef9190612310565b60405180910390f35b34801561050457600080fd5b5061050d6110ef565b005b34801561051b57600080fd5b5061053660048036038101906105319190612368565b611103565b005b34801561054457600080fd5b5061054d611115565b005b34801561055b57600080fd5b50610564611127565b604051610571919061246c565b60405180910390f35b34801561058657600080fd5b5061058f61112d565b60405161059c91906123d6565b60405180910390f35b3480156105b157600080fd5b506105ba611157565b6040516105c79190612310565b60405180910390f35b6105ea60048036038101906105e59190612368565b6111e9565b005b3480156105f857600080fd5b50610613600480360381019061060e91906126b1565b611342565b005b34801561062157600080fd5b5061062a6114b9565b604051610637919061246c565b60405180910390f35b34801561064c57600080fd5b5061066760048036038101906106629190612792565b6114be565b005b34801561067557600080fd5b5061067e611531565b60405161068b9190612310565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190612368565b6115bf565b6040516106c89190612310565b60405180910390f35b3480156106dd57600080fd5b506106e661165d565b6040516106f3919061246c565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e919061260f565b611663565b005b34801561073157600080fd5b5061073a61167e565b6040516107479190612310565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190612815565b611695565b6040516107849190612265565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190612368565b611729565b005b3480156107c257600080fd5b506107dd60048036038101906107d89190612658565b61173b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088090612884565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac90612884565b80156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b600061090e826117be565b610944576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098d82610ed2565b90508073ffffffffffffffffffffffffffffffffffffffff166109ae61181d565b73ffffffffffffffffffffffffffffffffffffffff1614610a11576109da816109d561181d565b611695565b610a10576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610ad6611825565b6001546000540303905090565b610aeb61182a565b8060098190555050565b6000610b00826118a8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b67576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b7384611974565b91509150610b898187610b8461181d565b61199b565b610bd557610b9e86610b9961181d565b611695565b610bd4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4886868660016119df565b8015610c5357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d2185610cfd8888876119e5565b7c020000000000000000000000000000000000000000000000000000000017611a0d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610da75760006001850190506000600460008381526020019081526020016000205403610da5576000548114610da4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e0f8686866001611a38565b505050505050565b610e1f61182a565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e6a573d6000803e3d6000fd5b5050565b610e7661182a565b610e7e611a3e565b565b610e9b838383604051806020016040528060008152506114be565b505050565b610ea861182a565b80600d9081610eb79190612a61565b5050565b6000600860149054906101000a900460ff16905090565b6000610edd826118a8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f4b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fa461182a565b60008111610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90612b7f565b60405180910390fd5b6000610ff1610acc565b905060c86110088383611aa190919063ffffffff16565b1115611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090612beb565b60405180910390fd5b6110538383611ab7565b61105c82611ad5565b505050565b600d805461106e90612884565b80601f016020809104026020016040519081016040528092919081815260200182805461109a90612884565b80156110e75780601f106110bc576101008083540402835291602001916110e7565b820191906000526020600020905b8154815290600101906020018083116110ca57829003601f168201915b505050505081565b6110f761182a565b6111016000611b53565b565b61110b61182a565b80600b8190555050565b61111d61182a565b611125611c19565b565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461116690612884565b80601f016020809104026020016040519081016040528092919081815260200182805461119290612884565b80156111df5780601f106111b4576101008083540402835291602001916111df565b820191906000526020600020905b8154815290600101906020018083116111c257829003601f168201915b5050505050905090565b6111f1611c7c565b60008111611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90612b7f565b60405180910390fd5b600061123e610acc565b9050600b54821115611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90612c57565b60405180910390fd5b60095461129b8383611aa190919063ffffffff16565b106112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290612cc3565b60405180910390fd5b3482600a546112ea9190612d12565b111561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290612db8565b60405180910390fd5b6113353383611ab7565b61133e82611ad5565b5050565b61134a61181d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ae576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113bb61181d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661146861181d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114ad9190612265565b60405180910390a35050565b60c881565b6114c9848484610af5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461152b576114f484848484611cc6565b61152a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c805461153e90612884565b80601f016020809104026020016040519081016040528092919081815260200182805461156a90612884565b80156115b75780601f1061158c576101008083540402835291602001916115b7565b820191906000526020600020905b81548152906001019060200180831161159a57829003601f168201915b505050505081565b60606115ca826117be565b611600576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061160a611e16565b9050600081510361162a5760405180602001604052806000815250611655565b8061163484611ea8565b604051602001611645929190612e14565b6040516020818303038152906040525b915050919050565b60095481565b61166b61182a565b80600c908161167a9190612a61565b5050565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61173161182a565b80600a8190555050565b61174361182a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a990612eaa565b60405180910390fd5b6117bb81611b53565b50565b6000816117c9611825565b111580156117d8575060005482105b8015611816575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b611832611eef565b73ffffffffffffffffffffffffffffffffffffffff1661185061112d565b73ffffffffffffffffffffffffffffffffffffffff16146118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d90612f16565b60405180910390fd5b565b600080829050806118b7611825565b1161193d5760005481101561193c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361193a575b60008103611930576004600083600190039350838152602001908152602001600020549050611906565b809250505061196f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119fc868684611ef7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a46611f00565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a8a611eef565b604051611a9791906123d6565b60405180910390a1565b60008183611aaf9190612f36565b905092915050565b611ad1828260405180602001604052806000815250611f49565b5050565b60008190505b6000811115611b4f57600081611aef610acc565b611af99190612f6a565b9050807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207611b26836115bf565b604051611b339190612310565b60405180910390a2508080611b4790612f9e565b915050611adb565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c21611c7c565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c65611eef565b604051611c7291906123d6565b60405180910390a1565b611c84610ebb565b15611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90613013565b60405180910390fd5b565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cec61181d565b8786866040518563ffffffff1660e01b8152600401611d0e9493929190613088565b6020604051808303816000875af1925050508015611d4a57506040513d601f19601f82011682018060405250810190611d4791906130e9565b60015b611dc3573d8060008114611d7a576040519150601f19603f3d011682016040523d82523d6000602084013e611d7f565b606091505b506000815103611dbb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611e2590612884565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5190612884565b8015611e9e5780601f10611e7357610100808354040283529160200191611e9e565b820191906000526020600020905b815481529060010190602001808311611e8157829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611edb57600183039250600a81066030018353600a8104905080611eb9575b508181036020830392508083525050919050565b600033905090565b60009392505050565b611f08610ebb565b611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e90613162565b60405180910390fd5b565b611f538383611fe6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fe157600080549050600083820390505b611f936000868380600101945086611cc6565b611fc9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f80578160005414611fde57600080fd5b50505b505050565b60008054905060008203612026576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61203360008483856119df565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120aa8361209b60008660006119e5565b6120a4856121a1565b17611a0d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461214b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612110565b5060008203612186576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061219c6000848385611a38565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121fa816121c5565b811461220557600080fd5b50565b600081359050612217816121f1565b92915050565b600060208284031215612233576122326121bb565b5b600061224184828501612208565b91505092915050565b60008115159050919050565b61225f8161224a565b82525050565b600060208201905061227a6000830184612256565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122ba57808201518184015260208101905061229f565b60008484015250505050565b6000601f19601f8301169050919050565b60006122e282612280565b6122ec818561228b565b93506122fc81856020860161229c565b612305816122c6565b840191505092915050565b6000602082019050818103600083015261232a81846122d7565b905092915050565b6000819050919050565b61234581612332565b811461235057600080fd5b50565b6000813590506123628161233c565b92915050565b60006020828403121561237e5761237d6121bb565b5b600061238c84828501612353565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123c082612395565b9050919050565b6123d0816123b5565b82525050565b60006020820190506123eb60008301846123c7565b92915050565b6123fa816123b5565b811461240557600080fd5b50565b600081359050612417816123f1565b92915050565b60008060408385031215612434576124336121bb565b5b600061244285828601612408565b925050602061245385828601612353565b9150509250929050565b61246681612332565b82525050565b6000602082019050612481600083018461245d565b92915050565b6000806000606084860312156124a05761249f6121bb565b5b60006124ae86828701612408565b93505060206124bf86828701612408565b92505060406124d086828701612353565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61251c826122c6565b810181811067ffffffffffffffff8211171561253b5761253a6124e4565b5b80604052505050565b600061254e6121b1565b905061255a8282612513565b919050565b600067ffffffffffffffff82111561257a576125796124e4565b5b612583826122c6565b9050602081019050919050565b82818337600083830152505050565b60006125b26125ad8461255f565b612544565b9050828152602081018484840111156125ce576125cd6124df565b5b6125d9848285612590565b509392505050565b600082601f8301126125f6576125f56124da565b5b813561260684826020860161259f565b91505092915050565b600060208284031215612625576126246121bb565b5b600082013567ffffffffffffffff811115612643576126426121c0565b5b61264f848285016125e1565b91505092915050565b60006020828403121561266e5761266d6121bb565b5b600061267c84828501612408565b91505092915050565b61268e8161224a565b811461269957600080fd5b50565b6000813590506126ab81612685565b92915050565b600080604083850312156126c8576126c76121bb565b5b60006126d685828601612408565b92505060206126e78582860161269c565b9150509250929050565b600067ffffffffffffffff82111561270c5761270b6124e4565b5b612715826122c6565b9050602081019050919050565b6000612735612730846126f1565b612544565b905082815260208101848484011115612751576127506124df565b5b61275c848285612590565b509392505050565b600082601f830112612779576127786124da565b5b8135612789848260208601612722565b91505092915050565b600080600080608085870312156127ac576127ab6121bb565b5b60006127ba87828801612408565b94505060206127cb87828801612408565b93505060406127dc87828801612353565b925050606085013567ffffffffffffffff8111156127fd576127fc6121c0565b5b61280987828801612764565b91505092959194509250565b6000806040838503121561282c5761282b6121bb565b5b600061283a85828601612408565b925050602061284b85828601612408565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061289c57607f821691505b6020821081036128af576128ae612855565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826128da565b61292186836128da565b95508019841693508086168417925050509392505050565b6000819050919050565b600061295e61295961295484612332565b612939565b612332565b9050919050565b6000819050919050565b61297883612943565b61298c61298482612965565b8484546128e7565b825550505050565b600090565b6129a1612994565b6129ac81848461296f565b505050565b5b818110156129d0576129c5600082612999565b6001810190506129b2565b5050565b601f821115612a15576129e6816128b5565b6129ef846128ca565b810160208510156129fe578190505b612a12612a0a856128ca565b8301826129b1565b50505b505050565b600082821c905092915050565b6000612a3860001984600802612a1a565b1980831691505092915050565b6000612a518383612a27565b9150826002028217905092915050565b612a6a82612280565b67ffffffffffffffff811115612a8357612a826124e4565b5b612a8d8254612884565b612a988282856129d4565b600060209050601f831160018114612acb5760008415612ab9578287015190505b612ac38582612a45565b865550612b2b565b601f198416612ad9866128b5565b60005b82811015612b0157848901518255600182019150602085019450602081019050612adc565b86831015612b1e5784890151612b1a601f891682612a27565b8355505b6001600288020188555050505b505050505050565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b6000612b6960178361228b565b9150612b7482612b33565b602082019050919050565b60006020820190508181036000830152612b9881612b5c565b9050919050565b7f4e6f206d6f72652070726f6d6f204e465473206c656674000000000000000000600082015250565b6000612bd560178361228b565b9150612be082612b9f565b602082019050919050565b60006020820190508181036000830152612c0481612bc8565b9050919050565b7f43616e6e6f74206d696e742074686174206d616e79206174206f6e6365000000600082015250565b6000612c41601d8361228b565b9150612c4c82612c0b565b602082019050919050565b60006020820190508181036000830152612c7081612c34565b9050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e7400000000600082015250565b6000612cad601c8361228b565b9150612cb882612c77565b602082019050919050565b60006020820190508181036000830152612cdc81612ca0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d1d82612332565b9150612d2883612332565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d6157612d60612ce3565b5b828202905092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b6000612da260178361228b565b9150612dad82612d6c565b602082019050919050565b60006020820190508181036000830152612dd181612d95565b9050919050565b600081905092915050565b6000612dee82612280565b612df88185612dd8565b9350612e0881856020860161229c565b80840191505092915050565b6000612e208285612de3565b9150612e2c8284612de3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e9460268361228b565b9150612e9f82612e38565b604082019050919050565b60006020820190508181036000830152612ec381612e87565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f0060208361228b565b9150612f0b82612eca565b602082019050919050565b60006020820190508181036000830152612f2f81612ef3565b9050919050565b6000612f4182612332565b9150612f4c83612332565b9250828201905080821115612f6457612f63612ce3565b5b92915050565b6000612f7582612332565b9150612f8083612332565b9250828203905081811115612f9857612f97612ce3565b5b92915050565b6000612fa982612332565b915060008203612fbc57612fbb612ce3565b5b600182039050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612ffd60108361228b565b915061300882612fc7565b602082019050919050565b6000602082019050818103600083015261302c81612ff0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061305a82613033565b613064818561303e565b935061307481856020860161229c565b61307d816122c6565b840191505092915050565b600060808201905061309d60008301876123c7565b6130aa60208301866123c7565b6130b7604083018561245d565b81810360608301526130c9818461304f565b905095945050505050565b6000815190506130e3816121f1565b92915050565b6000602082840312156130ff576130fe6121bb565b5b600061310d848285016130d4565b91505092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061314c60148361228b565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b905091905056fea26469706673582212206ae5de0ca5638151857cce9595d7ab25cd59f403e548d52a8ffdccfd6634de0764736f6c63430008100033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e7048466d6b3447624a78446f6e327232736f5970776d724b617a3173365166474d6e424a746a41324553642f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmNpHFmk4GbJxDon2r2soYpwmrKaz1s6QfGMnBJtjA2ESd/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d4e7048466d6b3447624a78446f6e327232736f5970776d
Arg [3] : 724b617a3173365166474d6e424a746a41324553642f00000000000000000000


Deployed Bytecode Sourcemap

64204:2919:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18435:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19337:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25820:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25261:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64434:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15088:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66881:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29527:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66053:142;;;;;;;;;;;;;:::i;:::-;;65980:65;;;;;;;;;;;;;:::i;:::-;;32440:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66614:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60419:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20730:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16272:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64838:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64571:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63284:103;;;;;;;;;;;;;:::i;:::-;;66999:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65911:61;;;;;;;;;;;;;:::i;:::-;;64397:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62636:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19513:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65187:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26378:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64473:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33223:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64525:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19723:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64359:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66455:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66243:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26843:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66757:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63542:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18435:639;18520:4;18859:10;18844:25;;:11;:25;;;;:102;;;;18936:10;18921:25;;:11;:25;;;;18844:102;:179;;;;19013:10;18998:25;;:11;:25;;;;18844:179;18824:199;;18435:639;;;:::o;19337:100::-;19391:13;19424:5;19417:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19337:100;:::o;25820:218::-;25896:7;25921:16;25929:7;25921;:16::i;:::-;25916:64;;25946:34;;;;;;;;;;;;;;25916:64;26000:15;:24;26016:7;26000:24;;;;;;;;;;;:30;;;;;;;;;;;;25993:37;;25820:218;;;:::o;25261:400::-;25342:13;25358:16;25366:7;25358;:16::i;:::-;25342:32;;25414:5;25391:28;;:19;:17;:19::i;:::-;:28;;;25387:175;;25439:44;25456:5;25463:19;:17;:19::i;:::-;25439:16;:44::i;:::-;25434:128;;25511:35;;;;;;;;;;;;;;25434:128;25387:175;25607:2;25574:15;:24;25590:7;25574:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25645:7;25641:2;25625:28;;25634:5;25625:28;;;;;;;;;;;;25331:330;25261:400;;:::o;64434:32::-;;;;:::o;15088:323::-;15149:7;15377:15;:13;:15::i;:::-;15362:12;;15346:13;;:28;:46;15339:53;;15088:323;:::o;66881:106::-;62522:13;:11;:13::i;:::-;66966::::1;66954:9;:25;;;;66881:106:::0;:::o;29527:2817::-;29661:27;29691;29710:7;29691:18;:27::i;:::-;29661:57;;29776:4;29735:45;;29751:19;29735:45;;;29731:86;;29789:28;;;;;;;;;;;;;;29731:86;29831:27;29860:23;29887:35;29914:7;29887:26;:35::i;:::-;29830:92;;;;30022:68;30047:15;30064:4;30070:19;:17;:19::i;:::-;30022:24;:68::i;:::-;30017:180;;30110:43;30127:4;30133:19;:17;:19::i;:::-;30110:16;:43::i;:::-;30105:92;;30162:35;;;;;;;;;;;;;;30105:92;30017:180;30228:1;30214:16;;:2;:16;;;30210:52;;30239:23;;;;;;;;;;;;;;30210:52;30275:43;30297:4;30303:2;30307:7;30316:1;30275:21;:43::i;:::-;30411:15;30408:160;;;30551:1;30530:19;30523:30;30408:160;30948:18;:24;30967:4;30948:24;;;;;;;;;;;;;;;;30946:26;;;;;;;;;;;;31017:18;:22;31036:2;31017:22;;;;;;;;;;;;;;;;31015:24;;;;;;;;;;;31339:146;31376:2;31425:45;31440:4;31446:2;31450:19;31425:14;:45::i;:::-;11487:8;31397:73;31339:18;:146::i;:::-;31310:17;:26;31328:7;31310:26;;;;;;;;;;;:175;;;;31656:1;11487:8;31605:19;:47;:52;31601:627;;31678:19;31710:1;31700:7;:11;31678:33;;31867:1;31833:17;:30;31851:11;31833:30;;;;;;;;;;;;:35;31829:384;;31971:13;;31956:11;:28;31952:242;;32151:19;32118:17;:30;32136:11;32118:30;;;;;;;;;;;:52;;;;31952:242;31829:384;31659:569;31601:627;32275:7;32271:2;32256:27;;32265:4;32256:27;;;;;;;;;;;;32294:42;32315:4;32321:2;32325:7;32334:1;32294:20;:42::i;:::-;29650:2694;;;29527:2817;;;:::o;66053:142::-;62522:13;:11;:13::i;:::-;66101:12:::1;66116:21;66101:36;;66158:10;66150:28;;:37;66179:7;66150:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66090:105;66053:142::o:0;65980:65::-;62522:13;:11;:13::i;:::-;66027:10:::1;:8;:10::i;:::-;65980:65::o:0;32440:185::-;32578:39;32595:4;32601:2;32605:7;32578:39;;;;;;;;;;;;:16;:39::i;:::-;32440:185;;;:::o;66614:113::-;62522:13;:11;:13::i;:::-;66708:11:::1;66689:16;:30;;;;;;:::i;:::-;;66614:113:::0;:::o;60419:86::-;60466:4;60490:7;;;;;;;;;;;60483:14;;60419:86;:::o;20730:152::-;20802:7;20845:27;20864:7;20845:18;:27::i;:::-;20822:52;;20730:152;;;:::o;16272:233::-;16344:7;16385:1;16368:19;;:5;:19;;;16364:60;;16396:28;;;;;;;;;;;;;;16364:60;10431:13;16442:18;:25;16461:5;16442:25;;;;;;;;;;;;;;;;:55;16435:62;;16272:233;;;:::o;64838:341::-;62522:13;:11;:13::i;:::-;64938:1:::1;64927:8;:12;64919:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;64978:16;64997:13;:11;:13::i;:::-;64978:32;;64515:3;65029:25;65045:8;65029:11;:15;;:25;;;;:::i;:::-;:47;;65021:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;65115:23;65125:2;65129:8;65115:9;:23::i;:::-;65149:22;65162:8;65149:12;:22::i;:::-;64908:271;64838:341:::0;;:::o;64571:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63284:103::-;62522:13;:11;:13::i;:::-;63349:30:::1;63376:1;63349:18;:30::i;:::-;63284:103::o:0;66999:121::-;62522:13;:11;:13::i;:::-;67095:17:::1;67080:12;:32;;;;66999:121:::0;:::o;65911:61::-;62522:13;:11;:13::i;:::-;65956:8:::1;:6;:8::i;:::-;65911:61::o:0;64397:30::-;;;;:::o;62636:87::-;62682:7;62709:6;;;;;;;;;;;62702:13;;62636:87;:::o;19513:104::-;19569:13;19602:7;19595:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19513:104;:::o;65187:492::-;60024:19;:17;:19::i;:::-;65280:1:::1;65269:8;:12;65261:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;65320:16;65339:13;:11;:13::i;:::-;65320:32;;65383:12;;65371:8;:24;;65363:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;65476:9;;65448:25;65464:8;65448:11;:15;;:25;;;;:::i;:::-;:37;65440:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;65557:9;65545:8;65537:5;;:16;;;;:::i;:::-;:29;;65529:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;65607:31;65617:10;65629:8;65607:9;:31::i;:::-;65649:22;65662:8;65649:12;:22::i;:::-;65250:429;65187:492:::0;:::o;26378:308::-;26489:19;:17;:19::i;:::-;26477:31;;:8;:31;;;26473:61;;26517:17;;;;;;;;;;;;;;26473:61;26599:8;26547:18;:39;26566:19;:17;:19::i;:::-;26547:39;;;;;;;;;;;;;;;:49;26587:8;26547:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26659:8;26623:55;;26638:19;:17;:19::i;:::-;26623:55;;;26669:8;26623:55;;;;;;:::i;:::-;;;;;;;;26378:308;;:::o;64473:45::-;64515:3;64473:45;:::o;33223:399::-;33390:31;33403:4;33409:2;33413:7;33390:12;:31::i;:::-;33454:1;33436:2;:14;;;:19;33432:183;;33475:56;33506:4;33512:2;33516:7;33525:5;33475:30;:56::i;:::-;33470:145;;33559:40;;;;;;;;;;;;;;33470:145;33432:183;33223:399;;;;:::o;64525:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19723:318::-;19796:13;19827:16;19835:7;19827;:16::i;:::-;19822:59;;19852:29;;;;;;;;;;;;;;19822:59;19894:21;19918:10;:8;:10::i;:::-;19894:34;;19971:1;19952:7;19946:21;:26;:87;;;;;;;;;;;;;;;;;19999:7;20008:18;20018:7;20008:9;:18::i;:::-;19982:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19946:87;19939:94;;;19723:318;;;:::o;64359:31::-;;;;:::o;66455:151::-;62522:13;:11;:13::i;:::-;66581:17:::1;66565:13;:33;;;;;;:::i;:::-;;66455:151:::0;:::o;66243:87::-;66287:13;66313:9;;;;;;;;;;;;;;66243:87;:::o;26843:164::-;26940:4;26964:18;:25;26983:5;26964:25;;;;;;;;;;;;;;;:35;26990:8;26964:35;;;;;;;;;;;;;;;;;;;;;;;;;26957:42;;26843:164;;;;:::o;66757:90::-;62522:13;:11;:13::i;:::-;66830:9:::1;66822:5;:17;;;;66757:90:::0;:::o;63542:201::-;62522:13;:11;:13::i;:::-;63651:1:::1;63631:22;;:8;:22;;::::0;63623:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63707:28;63726:8;63707:18;:28::i;:::-;63542:201:::0;:::o;27265:282::-;27330:4;27386:7;27367:15;:13;:15::i;:::-;:26;;:66;;;;;27420:13;;27410:7;:23;27367:66;:153;;;;;27519:1;11207:8;27471:17;:26;27489:7;27471:26;;;;;;;;;;;;:44;:49;27367:153;27347:173;;27265:282;;;:::o;49031:105::-;49091:7;49118:10;49111:17;;49031:105;:::o;14604:92::-;14660:7;14604:92;:::o;62801:132::-;62876:12;:10;:12::i;:::-;62865:23;;:7;:5;:7::i;:::-;:23;;;62857:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62801:132::o;21885:1275::-;21952:7;21972:12;21987:7;21972:22;;22055:4;22036:15;:13;:15::i;:::-;:23;22032:1061;;22089:13;;22082:4;:20;22078:1015;;;22127:14;22144:17;:23;22162:4;22144:23;;;;;;;;;;;;22127:40;;22261:1;11207:8;22233:6;:24;:29;22229:845;;22898:113;22915:1;22905:6;:11;22898:113;;22958:17;:25;22976:6;;;;;;;22958:25;;;;;;;;;;;;22949:34;;22898:113;;;23044:6;23037:13;;;;;;22229:845;22104:989;22078:1015;22032:1061;23121:31;;;;;;;;;;;;;;21885:1275;;;;:::o;28428:479::-;28530:27;28559:23;28600:38;28641:15;:24;28657:7;28641:24;;;;;;;;;;;28600:65;;28812:18;28789:41;;28869:19;28863:26;28844:45;;28774:126;28428:479;;;:::o;27656:659::-;27805:11;27970:16;27963:5;27959:28;27950:37;;28130:16;28119:9;28115:32;28102:45;;28280:15;28269:9;28266:30;28258:5;28247:9;28244:20;28241:56;28231:66;;27656:659;;;;;:::o;34284:159::-;;;;;:::o;48340:311::-;48475:7;48495:16;11611:3;48521:19;:41;;48495:68;;11611:3;48589:31;48600:4;48606:2;48610:9;48589:10;:31::i;:::-;48581:40;;:62;;48574:69;;;48340:311;;;;;:::o;23708:450::-;23788:14;23956:16;23949:5;23945:28;23936:37;;24133:5;24119:11;24094:23;24090:41;24087:52;24080:5;24077:63;24067:73;;23708:450;;;;:::o;35108:158::-;;;;;:::o;61274:120::-;60283:16;:14;:16::i;:::-;61343:5:::1;61333:7;;:15;;;;;;;;;;;;;;;;;;61364:22;61373:12;:10;:12::i;:::-;61364:22;;;;;;:::i;:::-;;;;;;;;61274:120::o:0;53688:98::-;53746:7;53777:1;53773;:5;;;;:::i;:::-;53766:12;;53688:98;;;;:::o;42863:112::-;42940:27;42950:2;42954:8;42940:27;;;;;;;;;;;;:9;:27::i;:::-;42863:112;;:::o;65687:216::-;65752:9;65764:8;65752:20;;65747:149;65778:1;65774;:5;65747:149;;;65801:11;65831:1;65815:13;:11;:13::i;:::-;:17;;;;:::i;:::-;65801:31;;65880:3;65852:32;65865:13;65874:3;65865:8;:13::i;:::-;65852:32;;;;;;:::i;:::-;;;;;;;;65786:110;65781:3;;;;;:::i;:::-;;;;65747:149;;;;65687:216;:::o;63903:191::-;63977:16;63996:6;;;;;;;;;;;63977:25;;64022:8;64013:6;;:17;;;;;;;;;;;;;;;;;;64077:8;64046:40;;64067:8;64046:40;;;;;;;;;;;;63966:128;63903:191;:::o;61015:118::-;60024:19;:17;:19::i;:::-;61085:4:::1;61075:7;;:14;;;;;;;;;;;;;;;;;;61105:20;61112:12;:10;:12::i;:::-;61105:20;;;;;;:::i;:::-;;;;;;;;61015:118::o:0;60578:108::-;60649:8;:6;:8::i;:::-;60648:9;60640:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;60578:108::o;35706:716::-;35869:4;35915:2;35890:45;;;35936:19;:17;:19::i;:::-;35957:4;35963:7;35972:5;35890:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35886:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36190:1;36173:6;:13;:18;36169:235;;36219:40;;;;;;;;;;;;;;36169:235;36362:6;36356:13;36347:6;36343:2;36339:15;36332:38;35886:529;36059:54;;;36049:64;;;:6;:64;;;;36042:71;;;35706:716;;;;;;:::o;66338:109::-;66390:13;66423:16;66416:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66338:109;:::o;49238:1581::-;49303:17;49728:4;49721;49715:11;49711:22;49704:29;;49820:3;49814:4;49807:17;49926:3;50165:5;50147:428;50173:1;50147:428;;;50213:1;50208:3;50204:11;50197:18;;50384:2;50378:4;50374:13;50370:2;50366:22;50361:3;50353:36;50478:2;50472:4;50468:13;50460:21;;50545:4;50147:428;50535:25;50147:428;50151:21;50614:3;50609;50605:13;50729:4;50724:3;50720:14;50713:21;;50794:6;50789:3;50782:19;49342:1470;;49238:1581;;;:::o;58532:98::-;58585:7;58612:10;58605:17;;58532:98;:::o;48041:147::-;48178:6;48041:147;;;;;:::o;60763:108::-;60830:8;:6;:8::i;:::-;60822:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;60763:108::o;42090:689::-;42221:19;42227:2;42231:8;42221:5;:19::i;:::-;42300:1;42282:2;:14;;;:19;42278:483;;42322:11;42336:13;;42322:27;;42368:13;42390:8;42384:3;:14;42368:30;;42417:233;42448:62;42487:1;42491:2;42495:7;;;;;;42504:5;42448:30;:62::i;:::-;42443:167;;42546:40;;;;;;;;;;;;;;42443:167;42645:3;42637:5;:11;42417:233;;42732:3;42715:13;;:20;42711:34;;42737:8;;;42711:34;42303:458;;42278:483;42090:689;;;:::o;36884:2454::-;36957:20;36980:13;;36957:36;;37020:1;37008:8;:13;37004:44;;37030:18;;;;;;;;;;;;;;37004:44;37061:61;37091:1;37095:2;37099:12;37113:8;37061:21;:61::i;:::-;37605:1;10569:2;37575:1;:26;;37574:32;37562:8;:45;37536:18;:22;37555:2;37536:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37884:139;37921:2;37975:33;37998:1;38002:2;38006:1;37975:14;:33::i;:::-;37942:30;37963:8;37942:20;:30::i;:::-;:66;37884:18;:139::i;:::-;37850:17;:31;37868:12;37850:31;;;;;;;;;;;:173;;;;38040:16;38071:11;38100:8;38085:12;:23;38071:37;;38355:16;38351:2;38347:25;38335:37;;38727:12;38687:8;38646:1;38584:25;38525:1;38464;38437:335;38852:1;38838:12;38834:20;38792:346;38893:3;38884:7;38881:16;38792:346;;39111:7;39101:8;39098:1;39071:25;39068:1;39065;39060:59;38946:1;38937:7;38933:15;38922:26;;38792:346;;;38796:77;39183:1;39171:8;:13;39167:45;;39193:19;;;;;;;;;;;;;;39167:45;39245:3;39229:13;:19;;;;37310:1950;;39270:60;39299:1;39303:2;39307:12;39321:8;39270:20;:60::i;:::-;36946:2392;36884:2454;;:::o;24260:324::-;24330:14;24563:1;24553:8;24550:15;24524:24;24520:46;24510:56;;24260:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:141::-;12652:4;12675:3;12667:11;;12698:3;12695:1;12688:14;12732:4;12729:1;12719:18;12711:26;;12603:141;;;:::o;12750:93::-;12787:6;12834:2;12829;12822:5;12818:14;12814:23;12804:33;;12750:93;;;:::o;12849:107::-;12893:8;12943:5;12937:4;12933:16;12912:37;;12849:107;;;;:::o;12962:393::-;13031:6;13081:1;13069:10;13065:18;13104:97;13134:66;13123:9;13104:97;:::i;:::-;13222:39;13252:8;13241:9;13222:39;:::i;:::-;13210:51;;13294:4;13290:9;13283:5;13279:21;13270:30;;13343:4;13333:8;13329:19;13322:5;13319:30;13309:40;;13038:317;;12962:393;;;;;:::o;13361:60::-;13389:3;13410:5;13403:12;;13361:60;;;:::o;13427:142::-;13477:9;13510:53;13528:34;13537:24;13555:5;13537:24;:::i;:::-;13528:34;:::i;:::-;13510:53;:::i;:::-;13497:66;;13427:142;;;:::o;13575:75::-;13618:3;13639:5;13632:12;;13575:75;;;:::o;13656:269::-;13766:39;13797:7;13766:39;:::i;:::-;13827:91;13876:41;13900:16;13876:41;:::i;:::-;13868:6;13861:4;13855:11;13827:91;:::i;:::-;13821:4;13814:105;13732:193;13656:269;;;:::o;13931:73::-;13976:3;13931:73;:::o;14010:189::-;14087:32;;:::i;:::-;14128:65;14186:6;14178;14172:4;14128:65;:::i;:::-;14063:136;14010:189;;:::o;14205:186::-;14265:120;14282:3;14275:5;14272:14;14265:120;;;14336:39;14373:1;14366:5;14336:39;:::i;:::-;14309:1;14302:5;14298:13;14289:22;;14265:120;;;14205:186;;:::o;14397:543::-;14498:2;14493:3;14490:11;14487:446;;;14532:38;14564:5;14532:38;:::i;:::-;14616:29;14634:10;14616:29;:::i;:::-;14606:8;14602:44;14799:2;14787:10;14784:18;14781:49;;;14820:8;14805:23;;14781:49;14843:80;14899:22;14917:3;14899:22;:::i;:::-;14889:8;14885:37;14872:11;14843:80;:::i;:::-;14502:431;;14487:446;14397:543;;;:::o;14946:117::-;15000:8;15050:5;15044:4;15040:16;15019:37;;14946:117;;;;:::o;15069:169::-;15113:6;15146:51;15194:1;15190:6;15182:5;15179:1;15175:13;15146:51;:::i;:::-;15142:56;15227:4;15221;15217:15;15207:25;;15120:118;15069:169;;;;:::o;15243:295::-;15319:4;15465:29;15490:3;15484:4;15465:29;:::i;:::-;15457:37;;15527:3;15524:1;15520:11;15514:4;15511:21;15503:29;;15243:295;;;;:::o;15543:1395::-;15660:37;15693:3;15660:37;:::i;:::-;15762:18;15754:6;15751:30;15748:56;;;15784:18;;:::i;:::-;15748:56;15828:38;15860:4;15854:11;15828:38;:::i;:::-;15913:67;15973:6;15965;15959:4;15913:67;:::i;:::-;16007:1;16031:4;16018:17;;16063:2;16055:6;16052:14;16080:1;16075:618;;;;16737:1;16754:6;16751:77;;;16803:9;16798:3;16794:19;16788:26;16779:35;;16751:77;16854:67;16914:6;16907:5;16854:67;:::i;:::-;16848:4;16841:81;16710:222;16045:887;;16075:618;16127:4;16123:9;16115:6;16111:22;16161:37;16193:4;16161:37;:::i;:::-;16220:1;16234:208;16248:7;16245:1;16242:14;16234:208;;;16327:9;16322:3;16318:19;16312:26;16304:6;16297:42;16378:1;16370:6;16366:14;16356:24;;16425:2;16414:9;16410:18;16397:31;;16271:4;16268:1;16264:12;16259:17;;16234:208;;;16470:6;16461:7;16458:19;16455:179;;;16528:9;16523:3;16519:19;16513:26;16571:48;16613:4;16605:6;16601:17;16590:9;16571:48;:::i;:::-;16563:6;16556:64;16478:156;16455:179;16680:1;16676;16668:6;16664:14;16660:22;16654:4;16647:36;16082:611;;;16045:887;;15635:1303;;;15543:1395;;:::o;16944:173::-;17084:25;17080:1;17072:6;17068:14;17061:49;16944:173;:::o;17123:366::-;17265:3;17286:67;17350:2;17345:3;17286:67;:::i;:::-;17279:74;;17362:93;17451:3;17362:93;:::i;:::-;17480:2;17475:3;17471:12;17464:19;;17123:366;;;:::o;17495:419::-;17661:4;17699:2;17688:9;17684:18;17676:26;;17748:9;17742:4;17738:20;17734:1;17723:9;17719:17;17712:47;17776:131;17902:4;17776:131;:::i;:::-;17768:139;;17495:419;;;:::o;17920:173::-;18060:25;18056:1;18048:6;18044:14;18037:49;17920:173;:::o;18099:366::-;18241:3;18262:67;18326:2;18321:3;18262:67;:::i;:::-;18255:74;;18338:93;18427:3;18338:93;:::i;:::-;18456:2;18451:3;18447:12;18440:19;;18099:366;;;:::o;18471:419::-;18637:4;18675:2;18664:9;18660:18;18652:26;;18724:9;18718:4;18714:20;18710:1;18699:9;18695:17;18688:47;18752:131;18878:4;18752:131;:::i;:::-;18744:139;;18471:419;;;:::o;18896:179::-;19036:31;19032:1;19024:6;19020:14;19013:55;18896:179;:::o;19081:366::-;19223:3;19244:67;19308:2;19303:3;19244:67;:::i;:::-;19237:74;;19320:93;19409:3;19320:93;:::i;:::-;19438:2;19433:3;19429:12;19422:19;;19081:366;;;:::o;19453:419::-;19619:4;19657:2;19646:9;19642:18;19634:26;;19706:9;19700:4;19696:20;19692:1;19681:9;19677:17;19670:47;19734:131;19860:4;19734:131;:::i;:::-;19726:139;;19453:419;;;:::o;19878:178::-;20018:30;20014:1;20006:6;20002:14;19995:54;19878:178;:::o;20062:366::-;20204:3;20225:67;20289:2;20284:3;20225:67;:::i;:::-;20218:74;;20301:93;20390:3;20301:93;:::i;:::-;20419:2;20414:3;20410:12;20403:19;;20062:366;;;:::o;20434:419::-;20600:4;20638:2;20627:9;20623:18;20615:26;;20687:9;20681:4;20677:20;20673:1;20662:9;20658:17;20651:47;20715:131;20841:4;20715:131;:::i;:::-;20707:139;;20434:419;;;:::o;20859:180::-;20907:77;20904:1;20897:88;21004:4;21001:1;20994:15;21028:4;21025:1;21018:15;21045:348;21085:7;21108:20;21126:1;21108:20;:::i;:::-;21103:25;;21142:20;21160:1;21142:20;:::i;:::-;21137:25;;21330:1;21262:66;21258:74;21255:1;21252:81;21247:1;21240:9;21233:17;21229:105;21226:131;;;21337:18;;:::i;:::-;21226:131;21385:1;21382;21378:9;21367:20;;21045:348;;;;:::o;21399:173::-;21539:25;21535:1;21527:6;21523:14;21516:49;21399:173;:::o;21578:366::-;21720:3;21741:67;21805:2;21800:3;21741:67;:::i;:::-;21734:74;;21817:93;21906:3;21817:93;:::i;:::-;21935:2;21930:3;21926:12;21919:19;;21578:366;;;:::o;21950:419::-;22116:4;22154:2;22143:9;22139:18;22131:26;;22203:9;22197:4;22193:20;22189:1;22178:9;22174:17;22167:47;22231:131;22357:4;22231:131;:::i;:::-;22223:139;;21950:419;;;:::o;22375:148::-;22477:11;22514:3;22499:18;;22375:148;;;;:::o;22529:390::-;22635:3;22663:39;22696:5;22663:39;:::i;:::-;22718:89;22800:6;22795:3;22718:89;:::i;:::-;22711:96;;22816:65;22874:6;22869:3;22862:4;22855:5;22851:16;22816:65;:::i;:::-;22906:6;22901:3;22897:16;22890:23;;22639:280;22529:390;;;;:::o;22925:435::-;23105:3;23127:95;23218:3;23209:6;23127:95;:::i;:::-;23120:102;;23239:95;23330:3;23321:6;23239:95;:::i;:::-;23232:102;;23351:3;23344:10;;22925:435;;;;;:::o;23366:225::-;23506:34;23502:1;23494:6;23490:14;23483:58;23575:8;23570:2;23562:6;23558:15;23551:33;23366:225;:::o;23597:366::-;23739:3;23760:67;23824:2;23819:3;23760:67;:::i;:::-;23753:74;;23836:93;23925:3;23836:93;:::i;:::-;23954:2;23949:3;23945:12;23938:19;;23597:366;;;:::o;23969:419::-;24135:4;24173:2;24162:9;24158:18;24150:26;;24222:9;24216:4;24212:20;24208:1;24197:9;24193:17;24186:47;24250:131;24376:4;24250:131;:::i;:::-;24242:139;;23969:419;;;:::o;24394:182::-;24534:34;24530:1;24522:6;24518:14;24511:58;24394:182;:::o;24582:366::-;24724:3;24745:67;24809:2;24804:3;24745:67;:::i;:::-;24738:74;;24821:93;24910:3;24821:93;:::i;:::-;24939:2;24934:3;24930:12;24923:19;;24582:366;;;:::o;24954:419::-;25120:4;25158:2;25147:9;25143:18;25135:26;;25207:9;25201:4;25197:20;25193:1;25182:9;25178:17;25171:47;25235:131;25361:4;25235:131;:::i;:::-;25227:139;;24954:419;;;:::o;25379:191::-;25419:3;25438:20;25456:1;25438:20;:::i;:::-;25433:25;;25472:20;25490:1;25472:20;:::i;:::-;25467:25;;25515:1;25512;25508:9;25501:16;;25536:3;25533:1;25530:10;25527:36;;;25543:18;;:::i;:::-;25527:36;25379:191;;;;:::o;25576:194::-;25616:4;25636:20;25654:1;25636:20;:::i;:::-;25631:25;;25670:20;25688:1;25670:20;:::i;:::-;25665:25;;25714:1;25711;25707:9;25699:17;;25738:1;25732:4;25729:11;25726:37;;;25743:18;;:::i;:::-;25726:37;25576:194;;;;:::o;25776:171::-;25815:3;25838:24;25856:5;25838:24;:::i;:::-;25829:33;;25884:4;25877:5;25874:15;25871:41;;25892:18;;:::i;:::-;25871:41;25939:1;25932:5;25928:13;25921:20;;25776:171;;;:::o;25953:166::-;26093:18;26089:1;26081:6;26077:14;26070:42;25953:166;:::o;26125:366::-;26267:3;26288:67;26352:2;26347:3;26288:67;:::i;:::-;26281:74;;26364:93;26453:3;26364:93;:::i;:::-;26482:2;26477:3;26473:12;26466:19;;26125:366;;;:::o;26497:419::-;26663:4;26701:2;26690:9;26686:18;26678:26;;26750:9;26744:4;26740:20;26736:1;26725:9;26721:17;26714:47;26778:131;26904:4;26778:131;:::i;:::-;26770:139;;26497:419;;;:::o;26922:98::-;26973:6;27007:5;27001:12;26991:22;;26922:98;;;:::o;27026:168::-;27109:11;27143:6;27138:3;27131:19;27183:4;27178:3;27174:14;27159:29;;27026:168;;;;:::o;27200:373::-;27286:3;27314:38;27346:5;27314:38;:::i;:::-;27368:70;27431:6;27426:3;27368:70;:::i;:::-;27361:77;;27447:65;27505:6;27500:3;27493:4;27486:5;27482:16;27447:65;:::i;:::-;27537:29;27559:6;27537:29;:::i;:::-;27532:3;27528:39;27521:46;;27290:283;27200:373;;;;:::o;27579:640::-;27774:4;27812:3;27801:9;27797:19;27789:27;;27826:71;27894:1;27883:9;27879:17;27870:6;27826:71;:::i;:::-;27907:72;27975:2;27964:9;27960:18;27951:6;27907:72;:::i;:::-;27989;28057:2;28046:9;28042:18;28033:6;27989:72;:::i;:::-;28108:9;28102:4;28098:20;28093:2;28082:9;28078:18;28071:48;28136:76;28207:4;28198:6;28136:76;:::i;:::-;28128:84;;27579:640;;;;;;;:::o;28225:141::-;28281:5;28312:6;28306:13;28297:22;;28328:32;28354:5;28328:32;:::i;:::-;28225:141;;;;:::o;28372:349::-;28441:6;28490:2;28478:9;28469:7;28465:23;28461:32;28458:119;;;28496:79;;:::i;:::-;28458:119;28616:1;28641:63;28696:7;28687:6;28676:9;28672:22;28641:63;:::i;:::-;28631:73;;28587:127;28372:349;;;;:::o;28727:170::-;28867:22;28863:1;28855:6;28851:14;28844:46;28727:170;:::o;28903:366::-;29045:3;29066:67;29130:2;29125:3;29066:67;:::i;:::-;29059:74;;29142:93;29231:3;29142:93;:::i;:::-;29260:2;29255:3;29251:12;29244:19;;28903:366;;;:::o;29275:419::-;29441:4;29479:2;29468:9;29464:18;29456:26;;29528:9;29522:4;29518:20;29514:1;29503:9;29499:17;29492:47;29556:131;29682:4;29556:131;:::i;:::-;29548:139;;29275:419;;;:::o

Swarm Source

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