ETH Price: $3,479.90 (+1.65%)
Gas: 13 Gwei

Token

Dungeonized (DGZD)
 

Overview

Max Total Supply

3,333 DGZD

Holders

1,045

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DGZD
0x2d07cd174a5041bac0735cc55e49124fe86c4bf7
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:
Dungeonized

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/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();

    /**
     * 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: https://github.com/chiru-labs/ERC721A/blob/main/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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/dungeonized.sol

//SPDX-License-Identifier: UNLICENSE
pragma solidity ^0.8.7;





/* 
    "Infinite" mints on founders
    2 maximum mints per wallet (whitelist and public)
    3333 NFTs maximum
*/

contract Dungeonized is ERC721A, Ownable {
    using ECDSA for bytes32;
    using Strings for uint256;

    constructor(address _allowedSignerAddr, string memory baseUri) ERC721A("Dungeonized", "DGZD") {
        BASE_URI = baseUri;
        allowedSignerAddr = _allowedSignerAddr;
    }

    event RegularMint(uint256 _startTokenId, uint32 _mintCount);
    event FoundersMint(uint256 _startTokenId, uint32 _mintCount);

    string public BASE_URI;
    uint256 public RESERVE_AMOUNT = 25;
    uint256 public COLLECTION_CAP = 3333;
    uint256 public MAX_PUBLIC_MINTS_PER_WALLET = 2;

    bool public isReserveClaimed;
    bool public isPublicEnabled;
    bool public isWhitelistEnabled;

    address public allowedSignerAddr;
    mapping(uint32 => bool) usedNonces;

    mapping(address => uint32) publicMints;
    mapping(address => uint32) whitelistMints;

    /* Mint functions */
    function claimFounders(uint32 _nonce, uint32 _mintCount, bytes calldata _signature) external {
        require(_mintCount > 0, "CF1");
        require(!usedNonces[_nonce], "CF2");
        require(totalSupply() + _mintCount <= COLLECTION_CAP, "CF3");

        bytes32 hash = keccak256(abi.encodePacked('0xFF', msg.sender, _nonce, _mintCount));
        require(hash.recover(_signature) == allowedSignerAddr, "CF4");

        emit FoundersMint(_nextTokenId(), _mintCount);
        usedNonces[_nonce] = true;
        _mint(msg.sender, _mintCount);
    }

    function whitelistMint(uint32 _mintCount) external {
        require(isWhitelistEnabled, "CW1");
        require(_mintCount > 0, "CW2");
        require(totalSupply() + _mintCount <= COLLECTION_CAP, "CW3");
        require(whitelistMints[msg.sender] >= _mintCount, "CW4");
        unchecked {
            whitelistMints[msg.sender] -= _mintCount;
        }
        
        emit RegularMint(_nextTokenId(), _mintCount);
        _mint(msg.sender, _mintCount);
    }

    function mint(uint32 _mintCount) external {
        require(isPublicEnabled, "PM1");
        require(_mintCount > 0, "PM2");
        require(totalSupply() + _mintCount <= COLLECTION_CAP, "PM3");
        require(publicMints[msg.sender] + _mintCount <= MAX_PUBLIC_MINTS_PER_WALLET, "PM4");

        emit RegularMint(_nextTokenId(), _mintCount);
        publicMints[msg.sender] += _mintCount;
        _mint(msg.sender, _mintCount);
    }

    function reservesMint() onlyOwner external {
        require(!isReserveClaimed, "RM1");
        require(totalSupply() + RESERVE_AMOUNT <= COLLECTION_CAP, "RM2");

        isReserveClaimed = true;
        _mint(msg.sender, RESERVE_AMOUNT);
    }

    /* Utils */
    function wasNonceUsed(uint32 _nonce) external view returns (bool) {
        return usedNonces[_nonce];
    }

    /* NFT Metadata */
    function tokenURI(uint256 _tokenId) override public view returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(BASE_URI, _tokenId.toString()));
    }

    /* Admin */
    function setBaseURI(string calldata _baseUri) onlyOwner external {
        BASE_URI = _baseUri;
    }

    function setSignerAddress(address _signerAddr) onlyOwner external {
        allowedSignerAddr = _signerAddr;
    }

    function setMintStatus(bool _publicEnabled, bool _whitelistEnabled) onlyOwner external {
        isPublicEnabled = _publicEnabled;
        isWhitelistEnabled = _whitelistEnabled;
    }

    function bulkSetWhitelist(uint32 _amount, address[] calldata _addresses) onlyOwner external {
        for(uint256 i = 0; i < _addresses.length; i++)
            whitelistMints[_addresses[i]] += _amount;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_allowedSignerAddr","type":"address"},{"internalType":"string","name":"baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_startTokenId","type":"uint256"},{"indexed":false,"internalType":"uint32","name":"_mintCount","type":"uint32"}],"name":"FoundersMint","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":"uint256","name":"_startTokenId","type":"uint256"},{"indexed":false,"internalType":"uint32","name":"_mintCount","type":"uint32"}],"name":"RegularMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COLLECTION_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINTS_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowedSignerAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_amount","type":"uint32"},{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"bulkSetWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_nonce","type":"uint32"},{"internalType":"uint32","name":"_mintCount","type":"uint32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"claimFounders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isReserveClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_mintCount","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservesMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicEnabled","type":"bool"},{"internalType":"bool","name":"_whitelistEnabled","type":"bool"}],"name":"setMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerAddr","type":"address"}],"name":"setSignerAddress","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":[{"internalType":"uint32","name":"_nonce","type":"uint32"}],"name":"wasNonceUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_mintCount","type":"uint32"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526019600a55610d05600b556002600c553480156200002157600080fd5b506040516200466e3803806200466e833981810160405281019062000047919062000397565b6040518060400160405280600b81526020017f44756e67656f6e697a65640000000000000000000000000000000000000000008152506040518060400160405280600481526020017f44475a44000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000cb92919062000252565b508060039080519060200190620000e492919062000252565b50620000f56200017f60201b60201c565b60008190555050506200011d620001116200018460201b60201c565b6200018c60201b60201c565b80600990805190602001906200013592919062000252565b5081600d60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620005cf565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026090620004c6565b90600052602060002090601f016020900481019282620002845760008555620002d0565b82601f106200029f57805160ff1916838001178555620002d0565b82800160010185558215620002d0579182015b82811115620002cf578251825591602001919060010190620002b2565b5b509050620002df9190620002e3565b5090565b5b80821115620002fe576000816000905550600101620002e4565b5090565b600062000319620003138462000426565b620003fd565b90508281526020810184848401111562000338576200033762000595565b5b6200034584828562000490565b509392505050565b6000815190506200035e81620005b5565b92915050565b600082601f8301126200037c576200037b62000590565b5b81516200038e84826020860162000302565b91505092915050565b60008060408385031215620003b157620003b06200059f565b5b6000620003c1858286016200034d565b925050602083015167ffffffffffffffff811115620003e557620003e46200059a565b5b620003f38582860162000364565b9150509250929050565b6000620004096200041c565b9050620004178282620004fc565b919050565b6000604051905090565b600067ffffffffffffffff82111562000444576200044362000561565b5b6200044f82620005a4565b9050602081019050919050565b6000620004698262000470565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004b057808201518184015260208101905062000493565b83811115620004c0576000848401525b50505050565b60006002820490506001821680620004df57607f821691505b60208210811415620004f657620004f562000532565b5b50919050565b6200050782620005a4565b810181811067ffffffffffffffff8211171562000529576200052862000561565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005c0816200045c565b8114620005cc57600080fd5b50565b61408f80620005df6000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063568f4c191161011a578063a71bbebe116100ad578063c87b56dd1161007c578063c87b56dd1461058b578063dbddb26a146105bb578063e7198b87146105d9578063e985e9c5146105f7578063f2fde38b1461062757610206565b8063a71bbebe14610517578063af9b192e14610533578063b88d4fde14610551578063c8086c081461056d57610206565b8063715018a6116100e9578063715018a6146104b55780638da5cb5b146104bf57806395d89b41146104dd578063a22cb465146104fb57610206565b8063568f4c1914610407578063598d8785146104255780636352211e1461045557806370a082311461048557610206565b806318160ddd1161019d5780633c3c909f1161016c5780633c3c909f1461037b57806342842e0e146103975780634dc4979b146103b35780634fb03417146103cf57806355f804b3146103eb57610206565b806318160ddd14610305578063184d69ab1461032357806323b872dd1461034157806333173d4b1461035d57610206565b8063081812fc116101d9578063081812fc14610291578063095ea7b3146102c1578063130c842f146102dd57806315aafb7c146102fb57610206565b806301ffc9a71461020b578063046dc1661461023b578063049ef7481461025757806306fdde0314610273575b600080fd5b61022560048036038101906102209190612c18565b610643565b604051610232919061336c565b60405180910390f35b61025560048036038101906102509190612a15565b6106d5565b005b610271600480360381019061026c9190612bd8565b610721565b005b61027b610761565b60405161028891906133cc565b60405180910390f35b6102ab60048036038101906102a69190612cbf565b6107f3565b6040516102b89190613305565b60405180910390f35b6102db60048036038101906102d69190612b98565b610872565b005b6102e56109b6565b6040516102f2919061336c565b60405180910390f35b6103036109c9565b005b61030d610aa3565b60405161031a919061368e565b60405180910390f35b61032b610aba565b604051610338919061336c565b60405180910390f35b61035b60048036038101906103569190612a82565b610acd565b005b610365610df2565b604051610372919061336c565b60405180910390f35b61039560048036038101906103909190612cec565b610e05565b005b6103b160048036038101906103ac9190612a82565b61105e565b005b6103cd60048036038101906103c89190612d79565b61107e565b005b6103e960048036038101906103e49190612d19565b611335565b005b61040560048036038101906104009190612c72565b611407565b005b61040f611425565b60405161041c9190613305565b60405180910390f35b61043f600480360381019061043a9190612cec565b61144b565b60405161044c919061336c565b60405180910390f35b61046f600480360381019061046a9190612cbf565b611481565b60405161047c9190613305565b60405180910390f35b61049f600480360381019061049a9190612a15565b611493565b6040516104ac919061368e565b60405180910390f35b6104bd61154c565b005b6104c7611560565b6040516104d49190613305565b60405180910390f35b6104e561158a565b6040516104f291906133cc565b60405180910390f35b61051560048036038101906105109190612b58565b61161c565b005b610531600480360381019061052c9190612cec565b611727565b005b61053b611990565b604051610548919061368e565b60405180910390f35b61056b60048036038101906105669190612ad5565b611996565b005b610575611a09565b604051610582919061368e565b60405180910390f35b6105a560048036038101906105a09190612cbf565b611a0f565b6040516105b291906133cc565b60405180910390f35b6105c3611a8b565b6040516105d091906133cc565b60405180910390f35b6105e1611b19565b6040516105ee919061368e565b60405180910390f35b610611600480360381019061060c9190612a42565b611b1f565b60405161061e919061336c565b60405180910390f35b610641600480360381019061063c9190612a15565b611bb3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ce5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6106dd611c37565b80600d60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610729611c37565b81600d60016101000a81548160ff02191690831515021790555080600d60026101000a81548160ff0219169083151502179055505050565b60606002805461077090613952565b80601f016020809104026020016040519081016040528092919081815260200182805461079c90613952565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b5050505050905090565b60006107fe82611cb5565b610834576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087d82611481565b90508073ffffffffffffffffffffffffffffffffffffffff1661089e611d14565b73ffffffffffffffffffffffffffffffffffffffff1614610901576108ca816108c5611d14565b611b1f565b610900576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d60009054906101000a900460ff1681565b6109d1611c37565b600d60009054906101000a900460ff1615610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a18906134ae565b60405180910390fd5b600b54600a54610a2f610aa3565b610a399190613780565b1115610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a719061354e565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550610aa133600a54611d1c565b565b6000610aad611ed9565b6001546000540303905090565b600d60029054906101000a900460ff1681565b6000610ad882611ede565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b3f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b4b84611fac565b91509150610b618187610b5c611d14565b611fd3565b610bad57610b7686610b71611d14565b611b1f565b610bac576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c14576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c218686866001612017565b8015610c2c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cfa85610cd688888761201d565b7c020000000000000000000000000000000000000000000000000000000017612045565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d82576000600185019050600060046000838152602001908152602001600020541415610d80576000548114610d7f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dea8686866001612070565b505050505050565b600d60019054906101000a900460ff1681565b600d60029054906101000a900460ff16610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906134ce565b60405180910390fd5b60008163ffffffff1611610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e94906135ce565b60405180910390fd5b600b548163ffffffff16610eaf610aa3565b610eb99190613780565b1115610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef19061366e565b60405180910390fd5b8063ffffffff16601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1663ffffffff161015610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906135ae565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900463ffffffff160392506101000a81548163ffffffff021916908363ffffffff1602179055507f9725027767e921550b1dea21a8c91d724fec64b3b0d720c1cf4a7884c4bac01c611034612076565b826040516110439291906136a9565b60405180910390a161105b338263ffffffff16611d1c565b50565b61107983838360405180602001604052806000815250611996565b505050565b60008363ffffffff16116110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be9061346e565b60405180910390fd5b600e60008563ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900460ff1615611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b9061356e565b60405180910390fd5b600b548363ffffffff16611146610aa3565b6111509190613780565b1115611191576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111889061364e565b60405180910390fd5b60003385856040516020016111a8939291906132bd565b604051602081830303815290604052805190602001209050600d60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661125084848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508361207f90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16146112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d9061348e565b60405180910390fd5b7f40c6a5e8f6b2676972d967b9c50122a3abbc663aa2d4fc667b9915a03df736f86112cf612076565b856040516112de9291906136a9565b60405180910390a16001600e60008763ffffffff1663ffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061132e338563ffffffff16611d1c565b5050505050565b61133d611c37565b60005b8282905081101561140157836010600085858581811061136357611362613b21565b5b90506020020160208101906113789190612a15565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900463ffffffff166113d091906137d6565b92506101000a81548163ffffffff021916908363ffffffff16021790555080806113f9906139b5565b915050611340565b50505050565b61140f611c37565b818160099190611420929190612782565b505050565b600d60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600e60008363ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061148c82611ede565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114fb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611554611c37565b61155e60006120a6565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461159990613952565b80601f01602080910402602001604051908101604052809291908181526020018280546115c590613952565b80156116125780601f106115e757610100808354040283529160200191611612565b820191906000526020600020905b8154815290600101906020018083116115f557829003601f168201915b5050505050905090565b8060076000611629611d14565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116d6611d14565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161171b919061336c565b60405180910390a35050565b600d60019054906101000a900460ff16611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d9061360e565b60405180910390fd5b60008163ffffffff16116117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b69061340e565b60405180910390fd5b600b548163ffffffff166117d1610aa3565b6117db9190613780565b111561181c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118139061362e565b60405180910390fd5b600c5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1661187a91906137d6565b63ffffffff1611156118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b89061350e565b60405180910390fd5b7f9725027767e921550b1dea21a8c91d724fec64b3b0d720c1cf4a7884c4bac01c6118ea612076565b826040516118f99291906136a9565b60405180910390a180600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900463ffffffff1661195f91906137d6565b92506101000a81548163ffffffff021916908363ffffffff16021790555061198d338263ffffffff16611d1c565b50565b600a5481565b6119a1848484610acd565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a03576119cc8484848461216c565b611a02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b6060611a1a82611cb5565b611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906135ee565b60405180910390fd5b6009611a64836122cc565b604051602001611a75929190613299565b6040516020818303038152906040529050919050565b60098054611a9890613952565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac490613952565b8015611b115780601f10611ae657610100808354040283529160200191611b11565b820191906000526020600020905b815481529060010190602001808311611af457829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bbb611c37565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c229061344e565b60405180910390fd5b611c34816120a6565b50565b611c3f61242d565b73ffffffffffffffffffffffffffffffffffffffff16611c5d611560565b73ffffffffffffffffffffffffffffffffffffffff1614611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa9061358e565b60405180910390fd5b565b600081611cc0611ed9565b11158015611ccf575060005482105b8015611d0d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000805490506000821415611d5d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d6a6000848385612017565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611de183611dd2600086600061201d565b611ddb85612435565b17612045565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e8257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e47565b506000821415611ebe576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611ed46000848385612070565b505050565b600090565b60008082905080611eed611ed9565b11611f7557600054811015611f745760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f72575b6000811415611f68576004600083600190039350838152602001908152602001600020549050611f3d565b8092505050611fa7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612034868684612445565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008054905090565b600080600061208e858561244e565b9150915061209b816124a0565b819250505092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612192611d14565b8786866040518563ffffffff1660e01b81526004016121b49493929190613320565b602060405180830381600087803b1580156121ce57600080fd5b505af19250505080156121ff57506040513d601f19601f820116820180604052508101906121fc9190612c45565b60015b612279573d806000811461222f576040519150601f19603f3d011682016040523d82523d6000602084013e612234565b606091505b50600081511415612271576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612314576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612428565b600082905060005b6000821461234657808061232f906139b5565b915050600a8261233f9190613810565b915061231c565b60008167ffffffffffffffff81111561236257612361613b50565b5b6040519080825280601f01601f1916602001820160405280156123945781602001600182028036833780820191505090505b5090505b60008514612421576001826123ad9190613841565b9150600a856123bc9190613a34565b60306123c89190613780565b60f81b8183815181106123de576123dd613b21565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561241a9190613810565b9450612398565b8093505050505b919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b6000806041835114156124905760008060006020860151925060408601519150606086015160001a905061248487828585612675565b94509450505050612499565b60006002915091505b9250929050565b600060048111156124b4576124b3613ac3565b5b8160048111156124c7576124c6613ac3565b5b14156124d257612672565b600160048111156124e6576124e5613ac3565b5b8160048111156124f9576124f8613ac3565b5b141561253a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612531906133ee565b60405180910390fd5b6002600481111561254e5761254d613ac3565b5b81600481111561256157612560613ac3565b5b14156125a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125999061342e565b60405180910390fd5b600360048111156125b6576125b5613ac3565b5b8160048111156125c9576125c8613ac3565b5b141561260a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612601906134ee565b60405180910390fd5b60048081111561261d5761261c613ac3565b5b8160048111156126305761262f613ac3565b5b1415612671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126689061352e565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156126b0576000600391509150612779565b601b8560ff16141580156126c85750601c8560ff1614155b156126da576000600491509150612779565b6000600187878787604051600081526020016040526040516126ff9493929190613387565b6020604051602081039080840390855afa158015612721573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561277057600060019250925050612779565b80600092509250505b94509492505050565b82805461278e90613952565b90600052602060002090601f0160209004810192826127b057600085556127f7565b82601f106127c957803560ff19168380011785556127f7565b828001600101855582156127f7579182015b828111156127f65782358255916020019190600101906127db565b5b5090506128049190612808565b5090565b5b80821115612821576000816000905550600101612809565b5090565b6000612838612833846136f7565b6136d2565b90508281526020810184848401111561285457612853613b8e565b5b61285f848285613910565b509392505050565b60008135905061287681613fe6565b92915050565b60008083601f84011261289257612891613b84565b5b8235905067ffffffffffffffff8111156128af576128ae613b7f565b5b6020830191508360208202830111156128cb576128ca613b89565b5b9250929050565b6000813590506128e181613ffd565b92915050565b6000813590506128f681614014565b92915050565b60008151905061290b81614014565b92915050565b60008083601f84011261292757612926613b84565b5b8235905067ffffffffffffffff81111561294457612943613b7f565b5b6020830191508360018202830111156129605761295f613b89565b5b9250929050565b600082601f83011261297c5761297b613b84565b5b813561298c848260208601612825565b91505092915050565b60008083601f8401126129ab576129aa613b84565b5b8235905067ffffffffffffffff8111156129c8576129c7613b7f565b5b6020830191508360018202830111156129e4576129e3613b89565b5b9250929050565b6000813590506129fa8161402b565b92915050565b600081359050612a0f81614042565b92915050565b600060208284031215612a2b57612a2a613b98565b5b6000612a3984828501612867565b91505092915050565b60008060408385031215612a5957612a58613b98565b5b6000612a6785828601612867565b9250506020612a7885828601612867565b9150509250929050565b600080600060608486031215612a9b57612a9a613b98565b5b6000612aa986828701612867565b9350506020612aba86828701612867565b9250506040612acb868287016129eb565b9150509250925092565b60008060008060808587031215612aef57612aee613b98565b5b6000612afd87828801612867565b9450506020612b0e87828801612867565b9350506040612b1f878288016129eb565b925050606085013567ffffffffffffffff811115612b4057612b3f613b93565b5b612b4c87828801612967565b91505092959194509250565b60008060408385031215612b6f57612b6e613b98565b5b6000612b7d85828601612867565b9250506020612b8e858286016128d2565b9150509250929050565b60008060408385031215612baf57612bae613b98565b5b6000612bbd85828601612867565b9250506020612bce858286016129eb565b9150509250929050565b60008060408385031215612bef57612bee613b98565b5b6000612bfd858286016128d2565b9250506020612c0e858286016128d2565b9150509250929050565b600060208284031215612c2e57612c2d613b98565b5b6000612c3c848285016128e7565b91505092915050565b600060208284031215612c5b57612c5a613b98565b5b6000612c69848285016128fc565b91505092915050565b60008060208385031215612c8957612c88613b98565b5b600083013567ffffffffffffffff811115612ca757612ca6613b93565b5b612cb385828601612995565b92509250509250929050565b600060208284031215612cd557612cd4613b98565b5b6000612ce3848285016129eb565b91505092915050565b600060208284031215612d0257612d01613b98565b5b6000612d1084828501612a00565b91505092915050565b600080600060408486031215612d3257612d31613b98565b5b6000612d4086828701612a00565b935050602084013567ffffffffffffffff811115612d6157612d60613b93565b5b612d6d8682870161287c565b92509250509250925092565b60008060008060608587031215612d9357612d92613b98565b5b6000612da187828801612a00565b9450506020612db287828801612a00565b935050604085013567ffffffffffffffff811115612dd357612dd2613b93565b5b612ddf87828801612911565b925092505092959194509250565b612df681613875565b82525050565b612e0d612e0882613875565b6139fe565b82525050565b612e1c81613887565b82525050565b612e2b81613893565b82525050565b6000612e3c8261373d565b612e468185613753565b9350612e5681856020860161391f565b612e5f81613b9d565b840191505092915050565b6000612e7582613748565b612e7f8185613764565b9350612e8f81856020860161391f565b612e9881613b9d565b840191505092915050565b6000612eae82613748565b612eb88185613775565b9350612ec881856020860161391f565b80840191505092915050565b60008154612ee181613952565b612eeb8186613775565b94506001821660008114612f065760018114612f1757612f4a565b60ff19831686528186019350612f4a565b612f2085613728565b60005b83811015612f4257815481890152600182019150602081019050612f23565b838801955050505b50505092915050565b6000612f60601883613764565b9150612f6b82613bc8565b602082019050919050565b6000612f83600383613764565b9150612f8e82613bf1565b602082019050919050565b6000612fa6601f83613764565b9150612fb182613c1a565b602082019050919050565b6000612fc9600483613775565b9150612fd482613c43565b600482019050919050565b6000612fec602683613764565b9150612ff782613c6c565b604082019050919050565b600061300f600383613764565b915061301a82613cbb565b602082019050919050565b6000613032600383613764565b915061303d82613ce4565b602082019050919050565b6000613055600383613764565b915061306082613d0d565b602082019050919050565b6000613078600383613764565b915061308382613d36565b602082019050919050565b600061309b602283613764565b91506130a682613d5f565b604082019050919050565b60006130be600383613764565b91506130c982613dae565b602082019050919050565b60006130e1602283613764565b91506130ec82613dd7565b604082019050919050565b6000613104600383613764565b915061310f82613e26565b602082019050919050565b6000613127600383613764565b915061313282613e4f565b602082019050919050565b600061314a602083613764565b915061315582613e78565b602082019050919050565b600061316d600383613764565b915061317882613ea1565b602082019050919050565b6000613190600383613764565b915061319b82613eca565b602082019050919050565b60006131b3602f83613764565b91506131be82613ef3565b604082019050919050565b60006131d6600383613764565b91506131e182613f42565b602082019050919050565b60006131f9600383613764565b915061320482613f6b565b602082019050919050565b600061321c600383613764565b915061322782613f94565b602082019050919050565b600061323f600383613764565b915061324a82613fbd565b602082019050919050565b61325e816138e9565b82525050565b61326d816138f3565b82525050565b61328461327f826138f3565b613a22565b82525050565b61329381613903565b82525050565b60006132a58285612ed4565b91506132b18284612ea3565b91508190509392505050565b60006132c882612fbc565b91506132d48286612dfc565b6014820191506132e48285613273565b6004820191506132f48284613273565b600482019150819050949350505050565b600060208201905061331a6000830184612ded565b92915050565b60006080820190506133356000830187612ded565b6133426020830186612ded565b61334f6040830185613255565b81810360608301526133618184612e31565b905095945050505050565b60006020820190506133816000830184612e13565b92915050565b600060808201905061339c6000830187612e22565b6133a9602083018661328a565b6133b66040830185612e22565b6133c36060830184612e22565b95945050505050565b600060208201905081810360008301526133e68184612e6a565b905092915050565b6000602082019050818103600083015261340781612f53565b9050919050565b6000602082019050818103600083015261342781612f76565b9050919050565b6000602082019050818103600083015261344781612f99565b9050919050565b6000602082019050818103600083015261346781612fdf565b9050919050565b6000602082019050818103600083015261348781613002565b9050919050565b600060208201905081810360008301526134a781613025565b9050919050565b600060208201905081810360008301526134c781613048565b9050919050565b600060208201905081810360008301526134e78161306b565b9050919050565b600060208201905081810360008301526135078161308e565b9050919050565b60006020820190508181036000830152613527816130b1565b9050919050565b60006020820190508181036000830152613547816130d4565b9050919050565b60006020820190508181036000830152613567816130f7565b9050919050565b600060208201905081810360008301526135878161311a565b9050919050565b600060208201905081810360008301526135a78161313d565b9050919050565b600060208201905081810360008301526135c781613160565b9050919050565b600060208201905081810360008301526135e781613183565b9050919050565b60006020820190508181036000830152613607816131a6565b9050919050565b60006020820190508181036000830152613627816131c9565b9050919050565b60006020820190508181036000830152613647816131ec565b9050919050565b600060208201905081810360008301526136678161320f565b9050919050565b6000602082019050818103600083015261368781613232565b9050919050565b60006020820190506136a36000830184613255565b92915050565b60006040820190506136be6000830185613255565b6136cb6020830184613264565b9392505050565b60006136dc6136ed565b90506136e88282613984565b919050565b6000604051905090565b600067ffffffffffffffff82111561371257613711613b50565b5b61371b82613b9d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061378b826138e9565b9150613796836138e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137cb576137ca613a65565b5b828201905092915050565b60006137e1826138f3565b91506137ec836138f3565b92508263ffffffff0382111561380557613804613a65565b5b828201905092915050565b600061381b826138e9565b9150613826836138e9565b92508261383657613835613a94565b5b828204905092915050565b600061384c826138e9565b9150613857836138e9565b92508282101561386a57613869613a65565b5b828203905092915050565b6000613880826138c9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561393d578082015181840152602081019050613922565b8381111561394c576000848401525b50505050565b6000600282049050600182168061396a57607f821691505b6020821081141561397e5761397d613af2565b5b50919050565b61398d82613b9d565b810181811067ffffffffffffffff821117156139ac576139ab613b50565b5b80604052505050565b60006139c0826138e9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139f3576139f2613a65565b5b600182019050919050565b6000613a0982613a10565b9050919050565b6000613a1b82613bbb565b9050919050565b6000613a2d82613bae565b9050919050565b6000613a3f826138e9565b9150613a4a836138e9565b925082613a5a57613a59613a94565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01b9050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f504d320000000000000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f3078464600000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4346310000000000000000000000000000000000000000000000000000000000600082015250565b7f4346340000000000000000000000000000000000000000000000000000000000600082015250565b7f524d310000000000000000000000000000000000000000000000000000000000600082015250565b7f4357310000000000000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f504d340000000000000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f524d320000000000000000000000000000000000000000000000000000000000600082015250565b7f4346320000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4357340000000000000000000000000000000000000000000000000000000000600082015250565b7f4357320000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f504d310000000000000000000000000000000000000000000000000000000000600082015250565b7f504d330000000000000000000000000000000000000000000000000000000000600082015250565b7f4346330000000000000000000000000000000000000000000000000000000000600082015250565b7f4357330000000000000000000000000000000000000000000000000000000000600082015250565b613fef81613875565b8114613ffa57600080fd5b50565b61400681613887565b811461401157600080fd5b50565b61401d8161389d565b811461402857600080fd5b50565b614034816138e9565b811461403f57600080fd5b50565b61404b816138f3565b811461405657600080fd5b5056fea2646970667358221220cc0908d94fd87a485fc85571dbd97d7e6aff28642e165ce5597d0689d2ccd14764736f6c6343000807003300000000000000000000000059e9ffec71ff771d2f88e6e7ea244307e7450ce90000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f64756e67656f6e697a65642e636f6d2f6e6674732f000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c8063568f4c191161011a578063a71bbebe116100ad578063c87b56dd1161007c578063c87b56dd1461058b578063dbddb26a146105bb578063e7198b87146105d9578063e985e9c5146105f7578063f2fde38b1461062757610206565b8063a71bbebe14610517578063af9b192e14610533578063b88d4fde14610551578063c8086c081461056d57610206565b8063715018a6116100e9578063715018a6146104b55780638da5cb5b146104bf57806395d89b41146104dd578063a22cb465146104fb57610206565b8063568f4c1914610407578063598d8785146104255780636352211e1461045557806370a082311461048557610206565b806318160ddd1161019d5780633c3c909f1161016c5780633c3c909f1461037b57806342842e0e146103975780634dc4979b146103b35780634fb03417146103cf57806355f804b3146103eb57610206565b806318160ddd14610305578063184d69ab1461032357806323b872dd1461034157806333173d4b1461035d57610206565b8063081812fc116101d9578063081812fc14610291578063095ea7b3146102c1578063130c842f146102dd57806315aafb7c146102fb57610206565b806301ffc9a71461020b578063046dc1661461023b578063049ef7481461025757806306fdde0314610273575b600080fd5b61022560048036038101906102209190612c18565b610643565b604051610232919061336c565b60405180910390f35b61025560048036038101906102509190612a15565b6106d5565b005b610271600480360381019061026c9190612bd8565b610721565b005b61027b610761565b60405161028891906133cc565b60405180910390f35b6102ab60048036038101906102a69190612cbf565b6107f3565b6040516102b89190613305565b60405180910390f35b6102db60048036038101906102d69190612b98565b610872565b005b6102e56109b6565b6040516102f2919061336c565b60405180910390f35b6103036109c9565b005b61030d610aa3565b60405161031a919061368e565b60405180910390f35b61032b610aba565b604051610338919061336c565b60405180910390f35b61035b60048036038101906103569190612a82565b610acd565b005b610365610df2565b604051610372919061336c565b60405180910390f35b61039560048036038101906103909190612cec565b610e05565b005b6103b160048036038101906103ac9190612a82565b61105e565b005b6103cd60048036038101906103c89190612d79565b61107e565b005b6103e960048036038101906103e49190612d19565b611335565b005b61040560048036038101906104009190612c72565b611407565b005b61040f611425565b60405161041c9190613305565b60405180910390f35b61043f600480360381019061043a9190612cec565b61144b565b60405161044c919061336c565b60405180910390f35b61046f600480360381019061046a9190612cbf565b611481565b60405161047c9190613305565b60405180910390f35b61049f600480360381019061049a9190612a15565b611493565b6040516104ac919061368e565b60405180910390f35b6104bd61154c565b005b6104c7611560565b6040516104d49190613305565b60405180910390f35b6104e561158a565b6040516104f291906133cc565b60405180910390f35b61051560048036038101906105109190612b58565b61161c565b005b610531600480360381019061052c9190612cec565b611727565b005b61053b611990565b604051610548919061368e565b60405180910390f35b61056b60048036038101906105669190612ad5565b611996565b005b610575611a09565b604051610582919061368e565b60405180910390f35b6105a560048036038101906105a09190612cbf565b611a0f565b6040516105b291906133cc565b60405180910390f35b6105c3611a8b565b6040516105d091906133cc565b60405180910390f35b6105e1611b19565b6040516105ee919061368e565b60405180910390f35b610611600480360381019061060c9190612a42565b611b1f565b60405161061e919061336c565b60405180910390f35b610641600480360381019061063c9190612a15565b611bb3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ce5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6106dd611c37565b80600d60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610729611c37565b81600d60016101000a81548160ff02191690831515021790555080600d60026101000a81548160ff0219169083151502179055505050565b60606002805461077090613952565b80601f016020809104026020016040519081016040528092919081815260200182805461079c90613952565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b5050505050905090565b60006107fe82611cb5565b610834576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087d82611481565b90508073ffffffffffffffffffffffffffffffffffffffff1661089e611d14565b73ffffffffffffffffffffffffffffffffffffffff1614610901576108ca816108c5611d14565b611b1f565b610900576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d60009054906101000a900460ff1681565b6109d1611c37565b600d60009054906101000a900460ff1615610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a18906134ae565b60405180910390fd5b600b54600a54610a2f610aa3565b610a399190613780565b1115610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a719061354e565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550610aa133600a54611d1c565b565b6000610aad611ed9565b6001546000540303905090565b600d60029054906101000a900460ff1681565b6000610ad882611ede565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b3f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b4b84611fac565b91509150610b618187610b5c611d14565b611fd3565b610bad57610b7686610b71611d14565b611b1f565b610bac576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c14576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c218686866001612017565b8015610c2c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cfa85610cd688888761201d565b7c020000000000000000000000000000000000000000000000000000000017612045565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d82576000600185019050600060046000838152602001908152602001600020541415610d80576000548114610d7f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dea8686866001612070565b505050505050565b600d60019054906101000a900460ff1681565b600d60029054906101000a900460ff16610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906134ce565b60405180910390fd5b60008163ffffffff1611610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e94906135ce565b60405180910390fd5b600b548163ffffffff16610eaf610aa3565b610eb99190613780565b1115610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef19061366e565b60405180910390fd5b8063ffffffff16601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1663ffffffff161015610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906135ae565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900463ffffffff160392506101000a81548163ffffffff021916908363ffffffff1602179055507f9725027767e921550b1dea21a8c91d724fec64b3b0d720c1cf4a7884c4bac01c611034612076565b826040516110439291906136a9565b60405180910390a161105b338263ffffffff16611d1c565b50565b61107983838360405180602001604052806000815250611996565b505050565b60008363ffffffff16116110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be9061346e565b60405180910390fd5b600e60008563ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900460ff1615611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b9061356e565b60405180910390fd5b600b548363ffffffff16611146610aa3565b6111509190613780565b1115611191576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111889061364e565b60405180910390fd5b60003385856040516020016111a8939291906132bd565b604051602081830303815290604052805190602001209050600d60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661125084848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508361207f90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16146112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d9061348e565b60405180910390fd5b7f40c6a5e8f6b2676972d967b9c50122a3abbc663aa2d4fc667b9915a03df736f86112cf612076565b856040516112de9291906136a9565b60405180910390a16001600e60008763ffffffff1663ffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061132e338563ffffffff16611d1c565b5050505050565b61133d611c37565b60005b8282905081101561140157836010600085858581811061136357611362613b21565b5b90506020020160208101906113789190612a15565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900463ffffffff166113d091906137d6565b92506101000a81548163ffffffff021916908363ffffffff16021790555080806113f9906139b5565b915050611340565b50505050565b61140f611c37565b818160099190611420929190612782565b505050565b600d60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600e60008363ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061148c82611ede565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114fb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611554611c37565b61155e60006120a6565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461159990613952565b80601f01602080910402602001604051908101604052809291908181526020018280546115c590613952565b80156116125780601f106115e757610100808354040283529160200191611612565b820191906000526020600020905b8154815290600101906020018083116115f557829003601f168201915b5050505050905090565b8060076000611629611d14565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116d6611d14565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161171b919061336c565b60405180910390a35050565b600d60019054906101000a900460ff16611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d9061360e565b60405180910390fd5b60008163ffffffff16116117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b69061340e565b60405180910390fd5b600b548163ffffffff166117d1610aa3565b6117db9190613780565b111561181c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118139061362e565b60405180910390fd5b600c5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1661187a91906137d6565b63ffffffff1611156118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b89061350e565b60405180910390fd5b7f9725027767e921550b1dea21a8c91d724fec64b3b0d720c1cf4a7884c4bac01c6118ea612076565b826040516118f99291906136a9565b60405180910390a180600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900463ffffffff1661195f91906137d6565b92506101000a81548163ffffffff021916908363ffffffff16021790555061198d338263ffffffff16611d1c565b50565b600a5481565b6119a1848484610acd565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a03576119cc8484848461216c565b611a02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b6060611a1a82611cb5565b611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906135ee565b60405180910390fd5b6009611a64836122cc565b604051602001611a75929190613299565b6040516020818303038152906040529050919050565b60098054611a9890613952565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac490613952565b8015611b115780601f10611ae657610100808354040283529160200191611b11565b820191906000526020600020905b815481529060010190602001808311611af457829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bbb611c37565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c229061344e565b60405180910390fd5b611c34816120a6565b50565b611c3f61242d565b73ffffffffffffffffffffffffffffffffffffffff16611c5d611560565b73ffffffffffffffffffffffffffffffffffffffff1614611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa9061358e565b60405180910390fd5b565b600081611cc0611ed9565b11158015611ccf575060005482105b8015611d0d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000805490506000821415611d5d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d6a6000848385612017565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611de183611dd2600086600061201d565b611ddb85612435565b17612045565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e8257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e47565b506000821415611ebe576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611ed46000848385612070565b505050565b600090565b60008082905080611eed611ed9565b11611f7557600054811015611f745760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f72575b6000811415611f68576004600083600190039350838152602001908152602001600020549050611f3d565b8092505050611fa7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612034868684612445565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008054905090565b600080600061208e858561244e565b9150915061209b816124a0565b819250505092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612192611d14565b8786866040518563ffffffff1660e01b81526004016121b49493929190613320565b602060405180830381600087803b1580156121ce57600080fd5b505af19250505080156121ff57506040513d601f19601f820116820180604052508101906121fc9190612c45565b60015b612279573d806000811461222f576040519150601f19603f3d011682016040523d82523d6000602084013e612234565b606091505b50600081511415612271576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612314576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612428565b600082905060005b6000821461234657808061232f906139b5565b915050600a8261233f9190613810565b915061231c565b60008167ffffffffffffffff81111561236257612361613b50565b5b6040519080825280601f01601f1916602001820160405280156123945781602001600182028036833780820191505090505b5090505b60008514612421576001826123ad9190613841565b9150600a856123bc9190613a34565b60306123c89190613780565b60f81b8183815181106123de576123dd613b21565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561241a9190613810565b9450612398565b8093505050505b919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b6000806041835114156124905760008060006020860151925060408601519150606086015160001a905061248487828585612675565b94509450505050612499565b60006002915091505b9250929050565b600060048111156124b4576124b3613ac3565b5b8160048111156124c7576124c6613ac3565b5b14156124d257612672565b600160048111156124e6576124e5613ac3565b5b8160048111156124f9576124f8613ac3565b5b141561253a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612531906133ee565b60405180910390fd5b6002600481111561254e5761254d613ac3565b5b81600481111561256157612560613ac3565b5b14156125a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125999061342e565b60405180910390fd5b600360048111156125b6576125b5613ac3565b5b8160048111156125c9576125c8613ac3565b5b141561260a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612601906134ee565b60405180910390fd5b60048081111561261d5761261c613ac3565b5b8160048111156126305761262f613ac3565b5b1415612671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126689061352e565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156126b0576000600391509150612779565b601b8560ff16141580156126c85750601c8560ff1614155b156126da576000600491509150612779565b6000600187878787604051600081526020016040526040516126ff9493929190613387565b6020604051602081039080840390855afa158015612721573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561277057600060019250925050612779565b80600092509250505b94509492505050565b82805461278e90613952565b90600052602060002090601f0160209004810192826127b057600085556127f7565b82601f106127c957803560ff19168380011785556127f7565b828001600101855582156127f7579182015b828111156127f65782358255916020019190600101906127db565b5b5090506128049190612808565b5090565b5b80821115612821576000816000905550600101612809565b5090565b6000612838612833846136f7565b6136d2565b90508281526020810184848401111561285457612853613b8e565b5b61285f848285613910565b509392505050565b60008135905061287681613fe6565b92915050565b60008083601f84011261289257612891613b84565b5b8235905067ffffffffffffffff8111156128af576128ae613b7f565b5b6020830191508360208202830111156128cb576128ca613b89565b5b9250929050565b6000813590506128e181613ffd565b92915050565b6000813590506128f681614014565b92915050565b60008151905061290b81614014565b92915050565b60008083601f84011261292757612926613b84565b5b8235905067ffffffffffffffff81111561294457612943613b7f565b5b6020830191508360018202830111156129605761295f613b89565b5b9250929050565b600082601f83011261297c5761297b613b84565b5b813561298c848260208601612825565b91505092915050565b60008083601f8401126129ab576129aa613b84565b5b8235905067ffffffffffffffff8111156129c8576129c7613b7f565b5b6020830191508360018202830111156129e4576129e3613b89565b5b9250929050565b6000813590506129fa8161402b565b92915050565b600081359050612a0f81614042565b92915050565b600060208284031215612a2b57612a2a613b98565b5b6000612a3984828501612867565b91505092915050565b60008060408385031215612a5957612a58613b98565b5b6000612a6785828601612867565b9250506020612a7885828601612867565b9150509250929050565b600080600060608486031215612a9b57612a9a613b98565b5b6000612aa986828701612867565b9350506020612aba86828701612867565b9250506040612acb868287016129eb565b9150509250925092565b60008060008060808587031215612aef57612aee613b98565b5b6000612afd87828801612867565b9450506020612b0e87828801612867565b9350506040612b1f878288016129eb565b925050606085013567ffffffffffffffff811115612b4057612b3f613b93565b5b612b4c87828801612967565b91505092959194509250565b60008060408385031215612b6f57612b6e613b98565b5b6000612b7d85828601612867565b9250506020612b8e858286016128d2565b9150509250929050565b60008060408385031215612baf57612bae613b98565b5b6000612bbd85828601612867565b9250506020612bce858286016129eb565b9150509250929050565b60008060408385031215612bef57612bee613b98565b5b6000612bfd858286016128d2565b9250506020612c0e858286016128d2565b9150509250929050565b600060208284031215612c2e57612c2d613b98565b5b6000612c3c848285016128e7565b91505092915050565b600060208284031215612c5b57612c5a613b98565b5b6000612c69848285016128fc565b91505092915050565b60008060208385031215612c8957612c88613b98565b5b600083013567ffffffffffffffff811115612ca757612ca6613b93565b5b612cb385828601612995565b92509250509250929050565b600060208284031215612cd557612cd4613b98565b5b6000612ce3848285016129eb565b91505092915050565b600060208284031215612d0257612d01613b98565b5b6000612d1084828501612a00565b91505092915050565b600080600060408486031215612d3257612d31613b98565b5b6000612d4086828701612a00565b935050602084013567ffffffffffffffff811115612d6157612d60613b93565b5b612d6d8682870161287c565b92509250509250925092565b60008060008060608587031215612d9357612d92613b98565b5b6000612da187828801612a00565b9450506020612db287828801612a00565b935050604085013567ffffffffffffffff811115612dd357612dd2613b93565b5b612ddf87828801612911565b925092505092959194509250565b612df681613875565b82525050565b612e0d612e0882613875565b6139fe565b82525050565b612e1c81613887565b82525050565b612e2b81613893565b82525050565b6000612e3c8261373d565b612e468185613753565b9350612e5681856020860161391f565b612e5f81613b9d565b840191505092915050565b6000612e7582613748565b612e7f8185613764565b9350612e8f81856020860161391f565b612e9881613b9d565b840191505092915050565b6000612eae82613748565b612eb88185613775565b9350612ec881856020860161391f565b80840191505092915050565b60008154612ee181613952565b612eeb8186613775565b94506001821660008114612f065760018114612f1757612f4a565b60ff19831686528186019350612f4a565b612f2085613728565b60005b83811015612f4257815481890152600182019150602081019050612f23565b838801955050505b50505092915050565b6000612f60601883613764565b9150612f6b82613bc8565b602082019050919050565b6000612f83600383613764565b9150612f8e82613bf1565b602082019050919050565b6000612fa6601f83613764565b9150612fb182613c1a565b602082019050919050565b6000612fc9600483613775565b9150612fd482613c43565b600482019050919050565b6000612fec602683613764565b9150612ff782613c6c565b604082019050919050565b600061300f600383613764565b915061301a82613cbb565b602082019050919050565b6000613032600383613764565b915061303d82613ce4565b602082019050919050565b6000613055600383613764565b915061306082613d0d565b602082019050919050565b6000613078600383613764565b915061308382613d36565b602082019050919050565b600061309b602283613764565b91506130a682613d5f565b604082019050919050565b60006130be600383613764565b91506130c982613dae565b602082019050919050565b60006130e1602283613764565b91506130ec82613dd7565b604082019050919050565b6000613104600383613764565b915061310f82613e26565b602082019050919050565b6000613127600383613764565b915061313282613e4f565b602082019050919050565b600061314a602083613764565b915061315582613e78565b602082019050919050565b600061316d600383613764565b915061317882613ea1565b602082019050919050565b6000613190600383613764565b915061319b82613eca565b602082019050919050565b60006131b3602f83613764565b91506131be82613ef3565b604082019050919050565b60006131d6600383613764565b91506131e182613f42565b602082019050919050565b60006131f9600383613764565b915061320482613f6b565b602082019050919050565b600061321c600383613764565b915061322782613f94565b602082019050919050565b600061323f600383613764565b915061324a82613fbd565b602082019050919050565b61325e816138e9565b82525050565b61326d816138f3565b82525050565b61328461327f826138f3565b613a22565b82525050565b61329381613903565b82525050565b60006132a58285612ed4565b91506132b18284612ea3565b91508190509392505050565b60006132c882612fbc565b91506132d48286612dfc565b6014820191506132e48285613273565b6004820191506132f48284613273565b600482019150819050949350505050565b600060208201905061331a6000830184612ded565b92915050565b60006080820190506133356000830187612ded565b6133426020830186612ded565b61334f6040830185613255565b81810360608301526133618184612e31565b905095945050505050565b60006020820190506133816000830184612e13565b92915050565b600060808201905061339c6000830187612e22565b6133a9602083018661328a565b6133b66040830185612e22565b6133c36060830184612e22565b95945050505050565b600060208201905081810360008301526133e68184612e6a565b905092915050565b6000602082019050818103600083015261340781612f53565b9050919050565b6000602082019050818103600083015261342781612f76565b9050919050565b6000602082019050818103600083015261344781612f99565b9050919050565b6000602082019050818103600083015261346781612fdf565b9050919050565b6000602082019050818103600083015261348781613002565b9050919050565b600060208201905081810360008301526134a781613025565b9050919050565b600060208201905081810360008301526134c781613048565b9050919050565b600060208201905081810360008301526134e78161306b565b9050919050565b600060208201905081810360008301526135078161308e565b9050919050565b60006020820190508181036000830152613527816130b1565b9050919050565b60006020820190508181036000830152613547816130d4565b9050919050565b60006020820190508181036000830152613567816130f7565b9050919050565b600060208201905081810360008301526135878161311a565b9050919050565b600060208201905081810360008301526135a78161313d565b9050919050565b600060208201905081810360008301526135c781613160565b9050919050565b600060208201905081810360008301526135e781613183565b9050919050565b60006020820190508181036000830152613607816131a6565b9050919050565b60006020820190508181036000830152613627816131c9565b9050919050565b60006020820190508181036000830152613647816131ec565b9050919050565b600060208201905081810360008301526136678161320f565b9050919050565b6000602082019050818103600083015261368781613232565b9050919050565b60006020820190506136a36000830184613255565b92915050565b60006040820190506136be6000830185613255565b6136cb6020830184613264565b9392505050565b60006136dc6136ed565b90506136e88282613984565b919050565b6000604051905090565b600067ffffffffffffffff82111561371257613711613b50565b5b61371b82613b9d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061378b826138e9565b9150613796836138e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137cb576137ca613a65565b5b828201905092915050565b60006137e1826138f3565b91506137ec836138f3565b92508263ffffffff0382111561380557613804613a65565b5b828201905092915050565b600061381b826138e9565b9150613826836138e9565b92508261383657613835613a94565b5b828204905092915050565b600061384c826138e9565b9150613857836138e9565b92508282101561386a57613869613a65565b5b828203905092915050565b6000613880826138c9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561393d578082015181840152602081019050613922565b8381111561394c576000848401525b50505050565b6000600282049050600182168061396a57607f821691505b6020821081141561397e5761397d613af2565b5b50919050565b61398d82613b9d565b810181811067ffffffffffffffff821117156139ac576139ab613b50565b5b80604052505050565b60006139c0826138e9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139f3576139f2613a65565b5b600182019050919050565b6000613a0982613a10565b9050919050565b6000613a1b82613bbb565b9050919050565b6000613a2d82613bae565b9050919050565b6000613a3f826138e9565b9150613a4a836138e9565b925082613a5a57613a59613a94565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01b9050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f504d320000000000000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f3078464600000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4346310000000000000000000000000000000000000000000000000000000000600082015250565b7f4346340000000000000000000000000000000000000000000000000000000000600082015250565b7f524d310000000000000000000000000000000000000000000000000000000000600082015250565b7f4357310000000000000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f504d340000000000000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f524d320000000000000000000000000000000000000000000000000000000000600082015250565b7f4346320000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4357340000000000000000000000000000000000000000000000000000000000600082015250565b7f4357320000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f504d310000000000000000000000000000000000000000000000000000000000600082015250565b7f504d330000000000000000000000000000000000000000000000000000000000600082015250565b7f4346330000000000000000000000000000000000000000000000000000000000600082015250565b7f4357330000000000000000000000000000000000000000000000000000000000600082015250565b613fef81613875565b8114613ffa57600080fd5b50565b61400681613887565b811461401157600080fd5b50565b61401d8161389d565b811461402857600080fd5b50565b614034816138e9565b811461403f57600080fd5b50565b61404b816138f3565b811461405657600080fd5b5056fea2646970667358221220cc0908d94fd87a485fc85571dbd97d7e6aff28642e165ce5597d0689d2ccd14764736f6c63430008070033

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

00000000000000000000000059e9ffec71ff771d2f88e6e7ea244307e7450ce90000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f64756e67656f6e697a65642e636f6d2f6e6674732f000000

-----Decoded View---------------
Arg [0] : _allowedSignerAddr (address): 0x59e9fFEC71ff771D2F88E6E7ea244307e7450ce9
Arg [1] : baseUri (string): https://dungeonized.com/nfts/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000059e9ffec71ff771d2f88e6e7ea244307e7450ce9
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [3] : 68747470733a2f2f64756e67656f6e697a65642e636f6d2f6e6674732f000000


Deployed Bytecode Sourcemap

66502:3752:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18452:639;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69721:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69845:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19354:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25837:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25278:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67105:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68918:250;;;:::i;:::-;;15105:323;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67174:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29476:2817;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67140:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67984:475;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32389:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67416:560;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70040:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69610:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67213:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69193:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20747:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16289:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65451:103;;;:::i;:::-;;64803:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19530:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26395:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68467:443;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66966:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33172:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67050:46;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69335:250;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66937:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67007:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26786:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65709:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18452:639;18537:4;18876:10;18861:25;;:11;:25;;;;:102;;;;18953:10;18938:25;;:11;:25;;;;18861:102;:179;;;;19030:10;19015:25;;:11;:25;;;;18861:179;18841:199;;18452:639;;;:::o;69721:116::-;64689:13;:11;:13::i;:::-;69818:11:::1;69798:17;;:31;;;;;;;;;;;;;;;;;;69721:116:::0;:::o;69845:187::-;64689:13;:11;:13::i;:::-;69961:14:::1;69943:15;;:32;;;;;;;;;;;;;;;;;;70007:17;69986:18;;:38;;;;;;;;;;;;;;;;;;69845:187:::0;;:::o;19354:100::-;19408:13;19441:5;19434:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19354:100;:::o;25837:218::-;25913:7;25938:16;25946:7;25938;:16::i;:::-;25933:64;;25963:34;;;;;;;;;;;;;;25933:64;26017:15;:24;26033:7;26017:24;;;;;;;;;;;:30;;;;;;;;;;;;26010:37;;25837:218;;;:::o;25278:400::-;25359:13;25375:16;25383:7;25375;:16::i;:::-;25359:32;;25431:5;25408:28;;:19;:17;:19::i;:::-;:28;;;25404:175;;25456:44;25473:5;25480:19;:17;:19::i;:::-;25456:16;:44::i;:::-;25451:128;;25528:35;;;;;;;;;;;;;;25451:128;25404:175;25624:2;25591:15;:24;25607:7;25591:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25662:7;25658:2;25642:28;;25651:5;25642:28;;;;;;;;;;;;25348:330;25278:400;;:::o;67105:28::-;;;;;;;;;;;;;:::o;68918:250::-;64689:13;:11;:13::i;:::-;68981:16:::1;;;;;;;;;;;68980:17;68972:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;69058:14;;69040;;69024:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:48;;69016:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;69112:4;69093:16;;:23;;;;;;;;;;;;;;;;;;69127:33;69133:10;69145:14;;69127:5;:33::i;:::-;68918:250::o:0;15105:323::-;15166:7;15394:15;:13;:15::i;:::-;15379:12;;15363:13;;:28;:46;15356:53;;15105:323;:::o;67174:30::-;;;;;;;;;;;;;:::o;29476:2817::-;29610:27;29640;29659:7;29640:18;:27::i;:::-;29610:57;;29725:4;29684:45;;29700:19;29684:45;;;29680:86;;29738:28;;;;;;;;;;;;;;29680:86;29780:27;29809:23;29836:35;29863:7;29836:26;:35::i;:::-;29779:92;;;;29971:68;29996:15;30013:4;30019:19;:17;:19::i;:::-;29971:24;:68::i;:::-;29966:180;;30059:43;30076:4;30082:19;:17;:19::i;:::-;30059:16;:43::i;:::-;30054:92;;30111:35;;;;;;;;;;;;;;30054:92;29966:180;30177:1;30163:16;;:2;:16;;;30159:52;;;30188:23;;;;;;;;;;;;;;30159:52;30224:43;30246:4;30252:2;30256:7;30265:1;30224:21;:43::i;:::-;30360:15;30357:160;;;30500:1;30479:19;30472:30;30357:160;30897:18;:24;30916:4;30897:24;;;;;;;;;;;;;;;;30895:26;;;;;;;;;;;;30966:18;:22;30985:2;30966:22;;;;;;;;;;;;;;;;30964:24;;;;;;;;;;;31288:146;31325:2;31374:45;31389:4;31395:2;31399:19;31374:14;:45::i;:::-;11504:8;31346:73;31288:18;:146::i;:::-;31259:17;:26;31277:7;31259:26;;;;;;;;;;;:175;;;;31605:1;11504:8;31554:19;:47;:52;31550:627;;;31627:19;31659:1;31649:7;:11;31627:33;;31816:1;31782:17;:30;31800:11;31782:30;;;;;;;;;;;;:35;31778:384;;;31920:13;;31905:11;:28;31901:242;;32100:19;32067:17;:30;32085:11;32067:30;;;;;;;;;;;:52;;;;31901:242;31778:384;31608:569;31550:627;32224:7;32220:2;32205:27;;32214:4;32205:27;;;;;;;;;;;;32243:42;32264:4;32270:2;32274:7;32283:1;32243:20;:42::i;:::-;29599:2694;;;29476:2817;;;:::o;67140:27::-;;;;;;;;;;;;;:::o;67984:475::-;68054:18;;;;;;;;;;;68046:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;68112:1;68099:10;:14;;;68091:30;;;;;;;;;;;;:::i;:::-;;;;;;;;;68170:14;;68156:10;68140:26;;:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:44;;68132:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;68241:10;68211:40;;:14;:26;68226:10;68211:26;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;;68203:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;68325:10;68295:14;:26;68310:10;68295:26;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68372:39;68384:14;:12;:14::i;:::-;68400:10;68372:39;;;;;;;:::i;:::-;;;;;;;;68422:29;68428:10;68440;68422:29;;:5;:29::i;:::-;67984:475;:::o;32389:185::-;32527:39;32544:4;32550:2;32554:7;32527:39;;;;;;;;;;;;:16;:39::i;:::-;32389:185;;;:::o;67416:560::-;67541:1;67528:10;:14;;;67520:30;;;;;;;;;;;;:::i;:::-;;;;;;;;;67570:10;:18;67581:6;67570:18;;;;;;;;;;;;;;;;;;;;;;;;;67569:19;67561:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;67645:14;;67631:10;67615:26;;:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:44;;67607:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;67680:12;67730:10;67742:6;67750:10;67705:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67695:67;;;;;;67680:82;;67809:17;;;;;;;;;;;67781:45;;:24;67794:10;;67781:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:4;:12;;:24;;;;:::i;:::-;:45;;;67773:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;67852:40;67865:14;:12;:14::i;:::-;67881:10;67852:40;;;;;;;:::i;:::-;;;;;;;;67924:4;67903:10;:18;67914:6;67903:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;67939:29;67945:10;67957;67939:29;;:5;:29::i;:::-;67509:467;67416:560;;;;:::o;70040:211::-;64689:13;:11;:13::i;:::-;70147:9:::1;70143:100;70166:10;;:17;;70162:1;:21;70143:100;;;70236:7;70203:14;:29;70218:10;;70229:1;70218:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;70203:29;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;70185:3;;;;;:::i;:::-;;;;70143:100;;;;70040:211:::0;;;:::o;69610:103::-;64689:13;:11;:13::i;:::-;69697:8:::1;;69686;:19;;;;;;;:::i;:::-;;69610:103:::0;;:::o;67213:32::-;;;;;;;;;;;;;:::o;69193:110::-;69253:4;69277:10;:18;69288:6;69277:18;;;;;;;;;;;;;;;;;;;;;;;;;69270:25;;69193:110;;;:::o;20747:152::-;20819:7;20862:27;20881:7;20862:18;:27::i;:::-;20839:52;;20747:152;;;:::o;16289:233::-;16361:7;16402:1;16385:19;;:5;:19;;;16381:60;;;16413:28;;;;;;;;;;;;;;16381:60;10448:13;16459:18;:25;16478:5;16459:25;;;;;;;;;;;;;;;;:55;16452:62;;16289:233;;;:::o;65451:103::-;64689:13;:11;:13::i;:::-;65516:30:::1;65543:1;65516:18;:30::i;:::-;65451:103::o:0;64803:87::-;64849:7;64876:6;;;;;;;;;;;64869:13;;64803:87;:::o;19530:104::-;19586:13;19619:7;19612:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19530:104;:::o;26395:234::-;26542:8;26490:18;:39;26509:19;:17;:19::i;:::-;26490:39;;;;;;;;;;;;;;;:49;26530:8;26490:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26602:8;26566:55;;26581:19;:17;:19::i;:::-;26566:55;;;26612:8;26566:55;;;;;;:::i;:::-;;;;;;;;26395:234;;:::o;68467:443::-;68528:15;;;;;;;;;;;68520:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;68583:1;68570:10;:14;;;68562:30;;;;;;;;;;;;:::i;:::-;;;;;;;;;68641:14;;68627:10;68611:26;;:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:44;;68603:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;68722:27;;68708:10;68682:11;:23;68694:10;68682:23;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:67;;;;68674:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;68775:39;68787:14;:12;:14::i;:::-;68803:10;68775:39;;;;;;;:::i;:::-;;;;;;;;68852:10;68825:11;:23;68837:10;68825:23;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;68873:29;68879:10;68891;68873:29;;:5;:29::i;:::-;68467:443;:::o;66966:34::-;;;;:::o;33172:399::-;33339:31;33352:4;33358:2;33362:7;33339:12;:31::i;:::-;33403:1;33385:2;:14;;;:19;33381:183;;33424:56;33455:4;33461:2;33465:7;33474:5;33424:30;:56::i;:::-;33419:145;;33508:40;;;;;;;;;;;;;;33419:145;33381:183;33172:399;;;;:::o;67050:46::-;;;;:::o;69335:250::-;69401:13;69435:17;69443:8;69435:7;:17::i;:::-;69427:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;69546:8;69556:19;:8;:17;:19::i;:::-;69529:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69515:62;;69335:250;;;:::o;66937:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67007:36::-;;;;:::o;26786:164::-;26883:4;26907:18;:25;26926:5;26907:25;;;;;;;;;;;;;;;:35;26933:8;26907:35;;;;;;;;;;;;;;;;;;;;;;;;;26900:42;;26786:164;;;;:::o;65709:201::-;64689:13;:11;:13::i;:::-;65818:1:::1;65798:22;;:8;:22;;;;65790:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;65874:28;65893:8;65874:18;:28::i;:::-;65709:201:::0;:::o;64968:132::-;65043:12;:10;:12::i;:::-;65032:23;;:7;:5;:7::i;:::-;:23;;;65024:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64968:132::o;27208:282::-;27273:4;27329:7;27310:15;:13;:15::i;:::-;:26;;:66;;;;;27363:13;;27353:7;:23;27310:66;:153;;;;;27462:1;11224:8;27414:17;:26;27432:7;27414:26;;;;;;;;;;;;:44;:49;27310:153;27290:173;;27208:282;;;:::o;49246:105::-;49306:7;49333:10;49326:17;;49246:105;:::o;36833:2720::-;36906:20;36929:13;;36906:36;;36969:1;36957:8;:13;36953:44;;;36979:18;;;;;;;;;;;;;;36953:44;37010:61;37040:1;37044:2;37048:12;37062:8;37010:21;:61::i;:::-;37554:1;10586:2;37524:1;:26;;37523:32;37511:8;:45;37485:18;:22;37504:2;37485:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37833:139;37870:2;37924:33;37947:1;37951:2;37955:1;37924:14;:33::i;:::-;37891:30;37912:8;37891:20;:30::i;:::-;:66;37833:18;:139::i;:::-;37799:17;:31;37817:12;37799:31;;;;;;;;;;;:173;;;;37989:16;38020:11;38049:8;38034:12;:23;38020:37;;38570:16;38566:2;38562:25;38550:37;;38942:12;38902:8;38861:1;38799:25;38740:1;38679;38652:335;39067:1;39053:12;39049:20;39007:346;39108:3;39099:7;39096:16;39007:346;;39326:7;39316:8;39313:1;39286:25;39283:1;39280;39275:59;39161:1;39152:7;39148:15;39137:26;;39007:346;;;39011:77;39398:1;39386:8;:13;39382:45;;;39408:19;;;;;;;;;;;;;;39382:45;39460:3;39444:13;:19;;;;37259:2216;;39485:60;39514:1;39518:2;39522:12;39536:8;39485:20;:60::i;:::-;36895:2658;36833:2720;;:::o;14621:92::-;14677:7;14621:92;:::o;21902:1275::-;21969:7;21989:12;22004:7;21989:22;;22072:4;22053:15;:13;:15::i;:::-;:23;22049:1061;;22106:13;;22099:4;:20;22095:1015;;;22144:14;22161:17;:23;22179:4;22161:23;;;;;;;;;;;;22144:40;;22278:1;11224:8;22250:6;:24;:29;22246:845;;;22915:113;22932:1;22922:6;:11;22915:113;;;22975:17;:25;22993:6;;;;;;;22975:25;;;;;;;;;;;;22966:34;;22915:113;;;23061:6;23054:13;;;;;;22246:845;22121:989;22095:1015;22049:1061;23138:31;;;;;;;;;;;;;;21902:1275;;;;:::o;28371:485::-;28473:27;28502:23;28543:38;28584:15;:24;28600:7;28584:24;;;;;;;;;;;28543:65;;28761:18;28738:41;;28818:19;28812:26;28793:45;;28723:126;28371:485;;;:::o;27599:659::-;27748:11;27913:16;27906:5;27902:28;27893:37;;28073:16;28062:9;28058:32;28045:45;;28223:15;28212:9;28209:30;28201:5;28190:9;28187:20;28184:56;28174:66;;27599:659;;;;;:::o;34233:159::-;;;;;:::o;48555:311::-;48690:7;48710:16;11628:3;48736:19;:41;;48710:68;;11628:3;48804:31;48815:4;48821:2;48825:9;48804:10;:31::i;:::-;48796:40;;:62;;48789:69;;;48555:311;;;;;:::o;23725:450::-;23805:14;23973:16;23966:5;23962:28;23953:37;;24150:5;24136:11;24111:23;24107:41;24104:52;24097:5;24094:63;24084:73;;23725:450;;;;:::o;35057:158::-;;;;;:::o;14792:103::-;14847:7;14874:13;;14867:20;;14792:103;:::o;57558:231::-;57636:7;57657:17;57676:18;57698:27;57709:4;57715:9;57698:10;:27::i;:::-;57656:69;;;;57736:18;57748:5;57736:11;:18::i;:::-;57772:9;57765:16;;;;57558:231;;;;:::o;66070:191::-;66144:16;66163:6;;;;;;;;;;;66144:25;;66189:8;66180:6;;:17;;;;;;;;;;;;;;;;;;66244:8;66213:40;;66234:8;66213:40;;;;;;;;;;;;66133:128;66070:191;:::o;35655:716::-;35818:4;35864:2;35839:45;;;35885:19;:17;:19::i;:::-;35906:4;35912:7;35921:5;35839:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35835:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36139:1;36122:6;:13;:18;36118:235;;;36168:40;;;;;;;;;;;;;;36118:235;36311:6;36305:13;36296:6;36292:2;36288:15;36281:38;35835:529;36008:54;;;35998:64;;;:6;:64;;;;35991:71;;;35655:716;;;;;;:::o;51635:723::-;51691:13;51921:1;51912:5;:10;51908:53;;;51939:10;;;;;;;;;;;;;;;;;;;;;51908:53;51971:12;51986:5;51971:20;;52002:14;52027:78;52042:1;52034:4;:9;52027:78;;52060:8;;;;;:::i;:::-;;;;52091:2;52083:10;;;;;:::i;:::-;;;52027:78;;;52115:19;52147:6;52137:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52115:39;;52165:154;52181:1;52172:5;:10;52165:154;;52209:1;52199:11;;;;;:::i;:::-;;;52276:2;52268:5;:10;;;;:::i;:::-;52255:2;:24;;;;:::i;:::-;52242:39;;52225:6;52232;52225:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;52305:2;52296:11;;;;;:::i;:::-;;;52165:154;;;52343:6;52329:21;;;;;51635:723;;;;:::o;63354:98::-;63407:7;63434:10;63427:17;;63354:98;:::o;24277:324::-;24347:14;24580:1;24570:8;24567:15;24541:24;24537:46;24527:56;;24277:324;;;:::o;48256:147::-;48393:6;48256:147;;;;;:::o;56009:747::-;56090:7;56099:12;56148:2;56128:9;:16;:22;56124:625;;;56167:9;56191;56215:7;56472:4;56461:9;56457:20;56451:27;56446:32;;56522:4;56511:9;56507:20;56501:27;56496:32;;56580:4;56569:9;56565:20;56559:27;56556:1;56551:36;56546:41;;56623:25;56634:4;56640:1;56643;56646;56623:10;:25::i;:::-;56616:32;;;;;;;;;56124:625;56697:1;56701:35;56681:56;;;;56009:747;;;;;;:::o;54280:643::-;54358:20;54349:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;54345:571;;;54395:7;;54345:571;54456:29;54447:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;54443:473;;;54502:34;;;;;;;;;;:::i;:::-;;;;;;;;54443:473;54567:35;54558:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;54554:362;;;54619:41;;;;;;;;;;:::i;:::-;;;;;;;;54554:362;54691:30;54682:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;54678:238;;;54738:44;;;;;;;;;;:::i;:::-;;;;;;;;54678:238;54813:30;54804:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;54800:116;;;54860:44;;;;;;;;;;:::i;:::-;;;;;;;;54800:116;54280:643;;:::o;59010:1632::-;59141:7;59150:12;60075:66;60070:1;60062:10;;:79;60058:163;;;60174:1;60178:30;60158:51;;;;;;60058:163;60240:2;60235:1;:7;;;;:18;;;;;60251:2;60246:1;:7;;;;60235:18;60231:102;;;60286:1;60290:30;60270:51;;;;;;60231:102;60430:14;60447:24;60457:4;60463:1;60466;60469;60447:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60430:41;;60504:1;60486:20;;:6;:20;;;60482:103;;;60539:1;60543:29;60523:50;;;;;;;60482:103;60605:6;60613:20;60597:37;;;;;59010:1632;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:552::-;1658:8;1668:6;1718:3;1711:4;1703:6;1699:17;1695:27;1685:122;;1726:79;;:::i;:::-;1685:122;1839:6;1826:20;1816:30;;1869:18;1861:6;1858:30;1855:117;;;1891:79;;:::i;:::-;1855:117;2005:4;1997:6;1993:17;1981:29;;2059:3;2051:4;2043:6;2039:17;2029:8;2025:32;2022:41;2019:128;;;2066:79;;:::i;:::-;2019:128;1601:552;;;;;:::o;2172:338::-;2227:5;2276:3;2269:4;2261:6;2257:17;2253:27;2243:122;;2284:79;;:::i;:::-;2243:122;2401:6;2388:20;2426:78;2500:3;2492:6;2485:4;2477:6;2473:17;2426:78;:::i;:::-;2417:87;;2233:277;2172:338;;;;:::o;2530:553::-;2588:8;2598:6;2648:3;2641:4;2633:6;2629:17;2625:27;2615:122;;2656:79;;:::i;:::-;2615:122;2769:6;2756:20;2746:30;;2799:18;2791:6;2788:30;2785:117;;;2821:79;;:::i;:::-;2785:117;2935:4;2927:6;2923:17;2911:29;;2989:3;2981:4;2973:6;2969:17;2959:8;2955:32;2952:41;2949:128;;;2996:79;;:::i;:::-;2949:128;2530:553;;;;;:::o;3089:139::-;3135:5;3173:6;3160:20;3151:29;;3189:33;3216:5;3189:33;:::i;:::-;3089:139;;;;:::o;3234:137::-;3279:5;3317:6;3304:20;3295:29;;3333:32;3359:5;3333:32;:::i;:::-;3234:137;;;;:::o;3377:329::-;3436:6;3485:2;3473:9;3464:7;3460:23;3456:32;3453:119;;;3491:79;;:::i;:::-;3453:119;3611:1;3636:53;3681:7;3672:6;3661:9;3657:22;3636:53;:::i;:::-;3626:63;;3582:117;3377:329;;;;:::o;3712:474::-;3780:6;3788;3837:2;3825:9;3816:7;3812:23;3808:32;3805:119;;;3843:79;;:::i;:::-;3805:119;3963:1;3988:53;4033:7;4024:6;4013:9;4009:22;3988:53;:::i;:::-;3978:63;;3934:117;4090:2;4116:53;4161:7;4152:6;4141:9;4137:22;4116:53;:::i;:::-;4106:63;;4061:118;3712:474;;;;;:::o;4192:619::-;4269:6;4277;4285;4334:2;4322:9;4313:7;4309:23;4305:32;4302:119;;;4340:79;;:::i;:::-;4302:119;4460:1;4485:53;4530:7;4521:6;4510:9;4506:22;4485:53;:::i;:::-;4475:63;;4431:117;4587:2;4613:53;4658:7;4649:6;4638:9;4634:22;4613:53;:::i;:::-;4603:63;;4558:118;4715:2;4741:53;4786:7;4777:6;4766:9;4762:22;4741:53;:::i;:::-;4731:63;;4686:118;4192:619;;;;;:::o;4817:943::-;4912:6;4920;4928;4936;4985:3;4973:9;4964:7;4960:23;4956:33;4953:120;;;4992:79;;:::i;:::-;4953:120;5112:1;5137:53;5182:7;5173:6;5162:9;5158:22;5137:53;:::i;:::-;5127:63;;5083:117;5239:2;5265:53;5310:7;5301:6;5290:9;5286:22;5265:53;:::i;:::-;5255:63;;5210:118;5367:2;5393:53;5438:7;5429:6;5418:9;5414:22;5393:53;:::i;:::-;5383:63;;5338:118;5523:2;5512:9;5508:18;5495:32;5554:18;5546:6;5543:30;5540:117;;;5576:79;;:::i;:::-;5540:117;5681:62;5735:7;5726:6;5715:9;5711:22;5681:62;:::i;:::-;5671:72;;5466:287;4817:943;;;;;;;:::o;5766:468::-;5831:6;5839;5888:2;5876:9;5867:7;5863:23;5859:32;5856:119;;;5894:79;;:::i;:::-;5856:119;6014:1;6039:53;6084:7;6075:6;6064:9;6060:22;6039:53;:::i;:::-;6029:63;;5985:117;6141:2;6167:50;6209:7;6200:6;6189:9;6185:22;6167:50;:::i;:::-;6157:60;;6112:115;5766:468;;;;;:::o;6240:474::-;6308:6;6316;6365:2;6353:9;6344:7;6340:23;6336:32;6333:119;;;6371:79;;:::i;:::-;6333:119;6491:1;6516:53;6561:7;6552:6;6541:9;6537:22;6516:53;:::i;:::-;6506:63;;6462:117;6618:2;6644:53;6689:7;6680:6;6669:9;6665:22;6644:53;:::i;:::-;6634:63;;6589:118;6240:474;;;;;:::o;6720:462::-;6782:6;6790;6839:2;6827:9;6818:7;6814:23;6810:32;6807:119;;;6845:79;;:::i;:::-;6807:119;6965:1;6990:50;7032:7;7023:6;7012:9;7008:22;6990:50;:::i;:::-;6980:60;;6936:114;7089:2;7115:50;7157:7;7148:6;7137:9;7133:22;7115:50;:::i;:::-;7105:60;;7060:115;6720:462;;;;;:::o;7188:327::-;7246:6;7295:2;7283:9;7274:7;7270:23;7266:32;7263:119;;;7301:79;;:::i;:::-;7263:119;7421:1;7446:52;7490:7;7481:6;7470:9;7466:22;7446:52;:::i;:::-;7436:62;;7392:116;7188:327;;;;:::o;7521:349::-;7590:6;7639:2;7627:9;7618:7;7614:23;7610:32;7607:119;;;7645:79;;:::i;:::-;7607:119;7765:1;7790:63;7845:7;7836:6;7825:9;7821:22;7790:63;:::i;:::-;7780:73;;7736:127;7521:349;;;;:::o;7876:529::-;7947:6;7955;8004:2;7992:9;7983:7;7979:23;7975:32;7972:119;;;8010:79;;:::i;:::-;7972:119;8158:1;8147:9;8143:17;8130:31;8188:18;8180:6;8177:30;8174:117;;;8210:79;;:::i;:::-;8174:117;8323:65;8380:7;8371:6;8360:9;8356:22;8323:65;:::i;:::-;8305:83;;;;8101:297;7876:529;;;;;:::o;8411:329::-;8470:6;8519:2;8507:9;8498:7;8494:23;8490:32;8487:119;;;8525:79;;:::i;:::-;8487:119;8645:1;8670:53;8715:7;8706:6;8695:9;8691:22;8670:53;:::i;:::-;8660:63;;8616:117;8411:329;;;;:::o;8746:327::-;8804:6;8853:2;8841:9;8832:7;8828:23;8824:32;8821:119;;;8859:79;;:::i;:::-;8821:119;8979:1;9004:52;9048:7;9039:6;9028:9;9024:22;9004:52;:::i;:::-;8994:62;;8950:116;8746:327;;;;:::o;9079:702::-;9173:6;9181;9189;9238:2;9226:9;9217:7;9213:23;9209:32;9206:119;;;9244:79;;:::i;:::-;9206:119;9364:1;9389:52;9433:7;9424:6;9413:9;9409:22;9389:52;:::i;:::-;9379:62;;9335:116;9518:2;9507:9;9503:18;9490:32;9549:18;9541:6;9538:30;9535:117;;;9571:79;;:::i;:::-;9535:117;9684:80;9756:7;9747:6;9736:9;9732:22;9684:80;:::i;:::-;9666:98;;;;9461:313;9079:702;;;;;:::o;9787:813::-;9873:6;9881;9889;9897;9946:2;9934:9;9925:7;9921:23;9917:32;9914:119;;;9952:79;;:::i;:::-;9914:119;10072:1;10097:52;10141:7;10132:6;10121:9;10117:22;10097:52;:::i;:::-;10087:62;;10043:116;10198:2;10224:52;10268:7;10259:6;10248:9;10244:22;10224:52;:::i;:::-;10214:62;;10169:117;10353:2;10342:9;10338:18;10325:32;10384:18;10376:6;10373:30;10370:117;;;10406:79;;:::i;:::-;10370:117;10519:64;10575:7;10566:6;10555:9;10551:22;10519:64;:::i;:::-;10501:82;;;;10296:297;9787:813;;;;;;;:::o;10606:118::-;10693:24;10711:5;10693:24;:::i;:::-;10688:3;10681:37;10606:118;;:::o;10730:157::-;10835:45;10855:24;10873:5;10855:24;:::i;:::-;10835:45;:::i;:::-;10830:3;10823:58;10730:157;;:::o;10893:109::-;10974:21;10989:5;10974:21;:::i;:::-;10969:3;10962:34;10893:109;;:::o;11008:118::-;11095:24;11113:5;11095:24;:::i;:::-;11090:3;11083:37;11008:118;;:::o;11132:360::-;11218:3;11246:38;11278:5;11246:38;:::i;:::-;11300:70;11363:6;11358:3;11300:70;:::i;:::-;11293:77;;11379:52;11424:6;11419:3;11412:4;11405:5;11401:16;11379:52;:::i;:::-;11456:29;11478:6;11456:29;:::i;:::-;11451:3;11447:39;11440:46;;11222:270;11132:360;;;;:::o;11498:364::-;11586:3;11614:39;11647:5;11614:39;:::i;:::-;11669:71;11733:6;11728:3;11669:71;:::i;:::-;11662:78;;11749:52;11794:6;11789:3;11782:4;11775:5;11771:16;11749:52;:::i;:::-;11826:29;11848:6;11826:29;:::i;:::-;11821:3;11817:39;11810:46;;11590:272;11498:364;;;;:::o;11868:377::-;11974:3;12002:39;12035:5;12002:39;:::i;:::-;12057:89;12139:6;12134:3;12057:89;:::i;:::-;12050:96;;12155:52;12200:6;12195:3;12188:4;12181:5;12177:16;12155:52;:::i;:::-;12232:6;12227:3;12223:16;12216:23;;11978:267;11868:377;;;;:::o;12275:845::-;12378:3;12415:5;12409:12;12444:36;12470:9;12444:36;:::i;:::-;12496:89;12578:6;12573:3;12496:89;:::i;:::-;12489:96;;12616:1;12605:9;12601:17;12632:1;12627:137;;;;12778:1;12773:341;;;;12594:520;;12627:137;12711:4;12707:9;12696;12692:25;12687:3;12680:38;12747:6;12742:3;12738:16;12731:23;;12627:137;;12773:341;12840:38;12872:5;12840:38;:::i;:::-;12900:1;12914:154;12928:6;12925:1;12922:13;12914:154;;;13002:7;12996:14;12992:1;12987:3;12983:11;12976:35;13052:1;13043:7;13039:15;13028:26;;12950:4;12947:1;12943:12;12938:17;;12914:154;;;13097:6;13092:3;13088:16;13081:23;;12780:334;;12594:520;;12382:738;;12275:845;;;;:::o;13126:366::-;13268:3;13289:67;13353:2;13348:3;13289:67;:::i;:::-;13282:74;;13365:93;13454:3;13365:93;:::i;:::-;13483:2;13478:3;13474:12;13467:19;;13126:366;;;:::o;13498:365::-;13640:3;13661:66;13725:1;13720:3;13661:66;:::i;:::-;13654:73;;13736:93;13825:3;13736:93;:::i;:::-;13854:2;13849:3;13845:12;13838:19;;13498:365;;;:::o;13869:366::-;14011:3;14032:67;14096:2;14091:3;14032:67;:::i;:::-;14025:74;;14108:93;14197:3;14108:93;:::i;:::-;14226:2;14221:3;14217:12;14210:19;;13869:366;;;:::o;14241:400::-;14401:3;14422:84;14504:1;14499:3;14422:84;:::i;:::-;14415:91;;14515:93;14604:3;14515:93;:::i;:::-;14633:1;14628:3;14624:11;14617:18;;14241:400;;;:::o;14647:366::-;14789:3;14810:67;14874:2;14869:3;14810:67;:::i;:::-;14803:74;;14886:93;14975:3;14886:93;:::i;:::-;15004:2;14999:3;14995:12;14988:19;;14647:366;;;:::o;15019:365::-;15161:3;15182:66;15246:1;15241:3;15182:66;:::i;:::-;15175:73;;15257:93;15346:3;15257:93;:::i;:::-;15375:2;15370:3;15366:12;15359:19;;15019:365;;;:::o;15390:::-;15532:3;15553:66;15617:1;15612:3;15553:66;:::i;:::-;15546:73;;15628:93;15717:3;15628:93;:::i;:::-;15746:2;15741:3;15737:12;15730:19;;15390:365;;;:::o;15761:::-;15903:3;15924:66;15988:1;15983:3;15924:66;:::i;:::-;15917:73;;15999:93;16088:3;15999:93;:::i;:::-;16117:2;16112:3;16108:12;16101:19;;15761:365;;;:::o;16132:::-;16274:3;16295:66;16359:1;16354:3;16295:66;:::i;:::-;16288:73;;16370:93;16459:3;16370:93;:::i;:::-;16488:2;16483:3;16479:12;16472:19;;16132:365;;;:::o;16503:366::-;16645:3;16666:67;16730:2;16725:3;16666:67;:::i;:::-;16659:74;;16742:93;16831:3;16742:93;:::i;:::-;16860:2;16855:3;16851:12;16844:19;;16503:366;;;:::o;16875:365::-;17017:3;17038:66;17102:1;17097:3;17038:66;:::i;:::-;17031:73;;17113:93;17202:3;17113:93;:::i;:::-;17231:2;17226:3;17222:12;17215:19;;16875:365;;;:::o;17246:366::-;17388:3;17409:67;17473:2;17468:3;17409:67;:::i;:::-;17402:74;;17485:93;17574:3;17485:93;:::i;:::-;17603:2;17598:3;17594:12;17587:19;;17246:366;;;:::o;17618:365::-;17760:3;17781:66;17845:1;17840:3;17781:66;:::i;:::-;17774:73;;17856:93;17945:3;17856:93;:::i;:::-;17974:2;17969:3;17965:12;17958:19;;17618:365;;;:::o;17989:::-;18131:3;18152:66;18216:1;18211:3;18152:66;:::i;:::-;18145:73;;18227:93;18316:3;18227:93;:::i;:::-;18345:2;18340:3;18336:12;18329:19;;17989:365;;;:::o;18360:366::-;18502:3;18523:67;18587:2;18582:3;18523:67;:::i;:::-;18516:74;;18599:93;18688:3;18599:93;:::i;:::-;18717:2;18712:3;18708:12;18701:19;;18360:366;;;:::o;18732:365::-;18874:3;18895:66;18959:1;18954:3;18895:66;:::i;:::-;18888:73;;18970:93;19059:3;18970:93;:::i;:::-;19088:2;19083:3;19079:12;19072:19;;18732:365;;;:::o;19103:::-;19245:3;19266:66;19330:1;19325:3;19266:66;:::i;:::-;19259:73;;19341:93;19430:3;19341:93;:::i;:::-;19459:2;19454:3;19450:12;19443:19;;19103:365;;;:::o;19474:366::-;19616:3;19637:67;19701:2;19696:3;19637:67;:::i;:::-;19630:74;;19713:93;19802:3;19713:93;:::i;:::-;19831:2;19826:3;19822:12;19815:19;;19474:366;;;:::o;19846:365::-;19988:3;20009:66;20073:1;20068:3;20009:66;:::i;:::-;20002:73;;20084:93;20173:3;20084:93;:::i;:::-;20202:2;20197:3;20193:12;20186:19;;19846:365;;;:::o;20217:::-;20359:3;20380:66;20444:1;20439:3;20380:66;:::i;:::-;20373:73;;20455:93;20544:3;20455:93;:::i;:::-;20573:2;20568:3;20564:12;20557:19;;20217:365;;;:::o;20588:::-;20730:3;20751:66;20815:1;20810:3;20751:66;:::i;:::-;20744:73;;20826:93;20915:3;20826:93;:::i;:::-;20944:2;20939:3;20935:12;20928:19;;20588:365;;;:::o;20959:::-;21101:3;21122:66;21186:1;21181:3;21122:66;:::i;:::-;21115:73;;21197:93;21286:3;21197:93;:::i;:::-;21315:2;21310:3;21306:12;21299:19;;20959:365;;;:::o;21330:118::-;21417:24;21435:5;21417:24;:::i;:::-;21412:3;21405:37;21330:118;;:::o;21454:115::-;21539:23;21556:5;21539:23;:::i;:::-;21534:3;21527:36;21454:115;;:::o;21575:153::-;21678:43;21697:23;21714:5;21697:23;:::i;:::-;21678:43;:::i;:::-;21673:3;21666:56;21575:153;;:::o;21734:112::-;21817:22;21833:5;21817:22;:::i;:::-;21812:3;21805:35;21734:112;;:::o;21852:429::-;22029:3;22051:92;22139:3;22130:6;22051:92;:::i;:::-;22044:99;;22160:95;22251:3;22242:6;22160:95;:::i;:::-;22153:102;;22272:3;22265:10;;21852:429;;;;;:::o;22287:794::-;22552:3;22574:148;22718:3;22574:148;:::i;:::-;22567:155;;22732:75;22803:3;22794:6;22732:75;:::i;:::-;22832:2;22827:3;22823:12;22816:19;;22845:73;22914:3;22905:6;22845:73;:::i;:::-;22943:1;22938:3;22934:11;22927:18;;22955:73;23024:3;23015:6;22955:73;:::i;:::-;23053:1;23048:3;23044:11;23037:18;;23072:3;23065:10;;22287:794;;;;;;:::o;23087:222::-;23180:4;23218:2;23207:9;23203:18;23195:26;;23231:71;23299:1;23288:9;23284:17;23275:6;23231:71;:::i;:::-;23087:222;;;;:::o;23315:640::-;23510:4;23548:3;23537:9;23533:19;23525:27;;23562:71;23630:1;23619:9;23615:17;23606:6;23562:71;:::i;:::-;23643:72;23711:2;23700:9;23696:18;23687:6;23643:72;:::i;:::-;23725;23793:2;23782:9;23778:18;23769:6;23725:72;:::i;:::-;23844:9;23838:4;23834:20;23829:2;23818:9;23814:18;23807:48;23872:76;23943:4;23934:6;23872:76;:::i;:::-;23864:84;;23315:640;;;;;;;:::o;23961:210::-;24048:4;24086:2;24075:9;24071:18;24063:26;;24099:65;24161:1;24150:9;24146:17;24137:6;24099:65;:::i;:::-;23961:210;;;;:::o;24177:545::-;24350:4;24388:3;24377:9;24373:19;24365:27;;24402:71;24470:1;24459:9;24455:17;24446:6;24402:71;:::i;:::-;24483:68;24547:2;24536:9;24532:18;24523:6;24483:68;:::i;:::-;24561:72;24629:2;24618:9;24614:18;24605:6;24561:72;:::i;:::-;24643;24711:2;24700:9;24696:18;24687:6;24643:72;:::i;:::-;24177:545;;;;;;;:::o;24728:313::-;24841:4;24879:2;24868:9;24864:18;24856:26;;24928:9;24922:4;24918:20;24914:1;24903:9;24899:17;24892:47;24956:78;25029:4;25020:6;24956:78;:::i;:::-;24948:86;;24728:313;;;;:::o;25047:419::-;25213:4;25251:2;25240:9;25236:18;25228:26;;25300:9;25294:4;25290:20;25286:1;25275:9;25271:17;25264:47;25328:131;25454:4;25328:131;:::i;:::-;25320:139;;25047:419;;;:::o;25472:::-;25638:4;25676:2;25665:9;25661:18;25653:26;;25725:9;25719:4;25715:20;25711:1;25700:9;25696:17;25689:47;25753:131;25879:4;25753:131;:::i;:::-;25745:139;;25472:419;;;:::o;25897:::-;26063:4;26101:2;26090:9;26086:18;26078:26;;26150:9;26144:4;26140:20;26136:1;26125:9;26121:17;26114:47;26178:131;26304:4;26178:131;:::i;:::-;26170:139;;25897:419;;;:::o;26322:::-;26488:4;26526:2;26515:9;26511:18;26503:26;;26575:9;26569:4;26565:20;26561:1;26550:9;26546:17;26539:47;26603:131;26729:4;26603:131;:::i;:::-;26595:139;;26322:419;;;:::o;26747:::-;26913:4;26951:2;26940:9;26936:18;26928:26;;27000:9;26994:4;26990:20;26986:1;26975:9;26971:17;26964:47;27028:131;27154:4;27028:131;:::i;:::-;27020:139;;26747:419;;;:::o;27172:::-;27338:4;27376:2;27365:9;27361:18;27353:26;;27425:9;27419:4;27415:20;27411:1;27400:9;27396:17;27389:47;27453:131;27579:4;27453:131;:::i;:::-;27445:139;;27172:419;;;:::o;27597:::-;27763:4;27801:2;27790:9;27786:18;27778:26;;27850:9;27844:4;27840:20;27836:1;27825:9;27821:17;27814:47;27878:131;28004:4;27878:131;:::i;:::-;27870:139;;27597:419;;;:::o;28022:::-;28188:4;28226:2;28215:9;28211:18;28203:26;;28275:9;28269:4;28265:20;28261:1;28250:9;28246:17;28239:47;28303:131;28429:4;28303:131;:::i;:::-;28295:139;;28022:419;;;:::o;28447:::-;28613:4;28651:2;28640:9;28636:18;28628:26;;28700:9;28694:4;28690:20;28686:1;28675:9;28671:17;28664:47;28728:131;28854:4;28728:131;:::i;:::-;28720:139;;28447:419;;;:::o;28872:::-;29038:4;29076:2;29065:9;29061:18;29053:26;;29125:9;29119:4;29115:20;29111:1;29100:9;29096:17;29089:47;29153:131;29279:4;29153:131;:::i;:::-;29145:139;;28872:419;;;:::o;29297:::-;29463:4;29501:2;29490:9;29486:18;29478:26;;29550:9;29544:4;29540:20;29536:1;29525:9;29521:17;29514:47;29578:131;29704:4;29578:131;:::i;:::-;29570:139;;29297:419;;;:::o;29722:::-;29888:4;29926:2;29915:9;29911:18;29903:26;;29975:9;29969:4;29965:20;29961:1;29950:9;29946:17;29939:47;30003:131;30129:4;30003:131;:::i;:::-;29995:139;;29722:419;;;:::o;30147:::-;30313:4;30351:2;30340:9;30336:18;30328:26;;30400:9;30394:4;30390:20;30386:1;30375:9;30371:17;30364:47;30428:131;30554:4;30428:131;:::i;:::-;30420:139;;30147:419;;;:::o;30572:::-;30738:4;30776:2;30765:9;30761:18;30753:26;;30825:9;30819:4;30815:20;30811:1;30800:9;30796:17;30789:47;30853:131;30979:4;30853:131;:::i;:::-;30845:139;;30572:419;;;:::o;30997:::-;31163:4;31201:2;31190:9;31186:18;31178:26;;31250:9;31244:4;31240:20;31236:1;31225:9;31221:17;31214:47;31278:131;31404:4;31278:131;:::i;:::-;31270:139;;30997:419;;;:::o;31422:::-;31588:4;31626:2;31615:9;31611:18;31603:26;;31675:9;31669:4;31665:20;31661:1;31650:9;31646:17;31639:47;31703:131;31829:4;31703:131;:::i;:::-;31695:139;;31422:419;;;:::o;31847:::-;32013:4;32051:2;32040:9;32036:18;32028:26;;32100:9;32094:4;32090:20;32086:1;32075:9;32071:17;32064:47;32128:131;32254:4;32128:131;:::i;:::-;32120:139;;31847:419;;;:::o;32272:::-;32438:4;32476:2;32465:9;32461:18;32453:26;;32525:9;32519:4;32515:20;32511:1;32500:9;32496:17;32489:47;32553:131;32679:4;32553:131;:::i;:::-;32545:139;;32272:419;;;:::o;32697:::-;32863:4;32901:2;32890:9;32886:18;32878:26;;32950:9;32944:4;32940:20;32936:1;32925:9;32921:17;32914:47;32978:131;33104:4;32978:131;:::i;:::-;32970:139;;32697:419;;;:::o;33122:::-;33288:4;33326:2;33315:9;33311:18;33303:26;;33375:9;33369:4;33365:20;33361:1;33350:9;33346:17;33339:47;33403:131;33529:4;33403:131;:::i;:::-;33395:139;;33122:419;;;:::o;33547:::-;33713:4;33751:2;33740:9;33736:18;33728:26;;33800:9;33794:4;33790:20;33786:1;33775:9;33771:17;33764:47;33828:131;33954:4;33828:131;:::i;:::-;33820:139;;33547:419;;;:::o;33972:222::-;34065:4;34103:2;34092:9;34088:18;34080:26;;34116:71;34184:1;34173:9;34169:17;34160:6;34116:71;:::i;:::-;33972:222;;;;:::o;34200:328::-;34319:4;34357:2;34346:9;34342:18;34334:26;;34370:71;34438:1;34427:9;34423:17;34414:6;34370:71;:::i;:::-;34451:70;34517:2;34506:9;34502:18;34493:6;34451:70;:::i;:::-;34200:328;;;;;:::o;34534:129::-;34568:6;34595:20;;:::i;:::-;34585:30;;34624:33;34652:4;34644:6;34624:33;:::i;:::-;34534:129;;;:::o;34669:75::-;34702:6;34735:2;34729:9;34719:19;;34669:75;:::o;34750:307::-;34811:4;34901:18;34893:6;34890:30;34887:56;;;34923:18;;:::i;:::-;34887:56;34961:29;34983:6;34961:29;:::i;:::-;34953:37;;35045:4;35039;35035:15;35027:23;;34750:307;;;:::o;35063:141::-;35112:4;35135:3;35127:11;;35158:3;35155:1;35148:14;35192:4;35189:1;35179:18;35171:26;;35063:141;;;:::o;35210:98::-;35261:6;35295:5;35289:12;35279:22;;35210:98;;;:::o;35314:99::-;35366:6;35400:5;35394:12;35384:22;;35314:99;;;:::o;35419:168::-;35502:11;35536:6;35531:3;35524:19;35576:4;35571:3;35567:14;35552:29;;35419:168;;;;:::o;35593:169::-;35677:11;35711:6;35706:3;35699:19;35751:4;35746:3;35742:14;35727:29;;35593:169;;;;:::o;35768:148::-;35870:11;35907:3;35892:18;;35768:148;;;;:::o;35922:305::-;35962:3;35981:20;35999:1;35981:20;:::i;:::-;35976:25;;36015:20;36033:1;36015:20;:::i;:::-;36010:25;;36169:1;36101:66;36097:74;36094:1;36091:81;36088:107;;;36175:18;;:::i;:::-;36088:107;36219:1;36216;36212:9;36205:16;;35922:305;;;;:::o;36233:246::-;36272:3;36291:19;36308:1;36291:19;:::i;:::-;36286:24;;36324:19;36341:1;36324:19;:::i;:::-;36319:24;;36421:1;36409:10;36405:18;36402:1;36399:25;36396:51;;;36427:18;;:::i;:::-;36396:51;36471:1;36468;36464:9;36457:16;;36233:246;;;;:::o;36485:185::-;36525:1;36542:20;36560:1;36542:20;:::i;:::-;36537:25;;36576:20;36594:1;36576:20;:::i;:::-;36571:25;;36615:1;36605:35;;36620:18;;:::i;:::-;36605:35;36662:1;36659;36655:9;36650:14;;36485:185;;;;:::o;36676:191::-;36716:4;36736:20;36754:1;36736:20;:::i;:::-;36731:25;;36770:20;36788:1;36770:20;:::i;:::-;36765:25;;36809:1;36806;36803:8;36800:34;;;36814:18;;:::i;:::-;36800:34;36859:1;36856;36852:9;36844:17;;36676:191;;;;:::o;36873:96::-;36910:7;36939:24;36957:5;36939:24;:::i;:::-;36928:35;;36873:96;;;:::o;36975:90::-;37009:7;37052:5;37045:13;37038:21;37027:32;;36975:90;;;:::o;37071:77::-;37108:7;37137:5;37126:16;;37071:77;;;:::o;37154:149::-;37190:7;37230:66;37223:5;37219:78;37208:89;;37154:149;;;:::o;37309:126::-;37346:7;37386:42;37379:5;37375:54;37364:65;;37309:126;;;:::o;37441:77::-;37478:7;37507:5;37496:16;;37441:77;;;:::o;37524:93::-;37560:7;37600:10;37593:5;37589:22;37578:33;;37524:93;;;:::o;37623:86::-;37658:7;37698:4;37691:5;37687:16;37676:27;;37623:86;;;:::o;37715:154::-;37799:6;37794:3;37789;37776:30;37861:1;37852:6;37847:3;37843:16;37836:27;37715:154;;;:::o;37875:307::-;37943:1;37953:113;37967:6;37964:1;37961:13;37953:113;;;38052:1;38047:3;38043:11;38037:18;38033:1;38028:3;38024:11;38017:39;37989:2;37986:1;37982:10;37977:15;;37953:113;;;38084:6;38081:1;38078:13;38075:101;;;38164:1;38155:6;38150:3;38146:16;38139:27;38075:101;37924:258;37875:307;;;:::o;38188:320::-;38232:6;38269:1;38263:4;38259:12;38249:22;;38316:1;38310:4;38306:12;38337:18;38327:81;;38393:4;38385:6;38381:17;38371:27;;38327:81;38455:2;38447:6;38444:14;38424:18;38421:38;38418:84;;;38474:18;;:::i;:::-;38418:84;38239:269;38188:320;;;:::o;38514:281::-;38597:27;38619:4;38597:27;:::i;:::-;38589:6;38585:40;38727:6;38715:10;38712:22;38691:18;38679:10;38676:34;38673:62;38670:88;;;38738:18;;:::i;:::-;38670:88;38778:10;38774:2;38767:22;38557:238;38514:281;;:::o;38801:233::-;38840:3;38863:24;38881:5;38863:24;:::i;:::-;38854:33;;38909:66;38902:5;38899:77;38896:103;;;38979:18;;:::i;:::-;38896:103;39026:1;39019:5;39015:13;39008:20;;38801:233;;;:::o;39040:100::-;39079:7;39108:26;39128:5;39108:26;:::i;:::-;39097:37;;39040:100;;;:::o;39146:94::-;39185:7;39214:20;39228:5;39214:20;:::i;:::-;39203:31;;39146:94;;;:::o;39246:::-;39284:7;39313:21;39328:5;39313:21;:::i;:::-;39302:32;;39246:94;;;:::o;39346:176::-;39378:1;39395:20;39413:1;39395:20;:::i;:::-;39390:25;;39429:20;39447:1;39429:20;:::i;:::-;39424:25;;39468:1;39458:35;;39473:18;;:::i;:::-;39458:35;39514:1;39511;39507:9;39502:14;;39346:176;;;;:::o;39528:180::-;39576:77;39573:1;39566:88;39673:4;39670:1;39663:15;39697:4;39694:1;39687:15;39714:180;39762:77;39759:1;39752:88;39859:4;39856:1;39849:15;39883:4;39880:1;39873:15;39900:180;39948:77;39945:1;39938:88;40045:4;40042:1;40035:15;40069:4;40066:1;40059:15;40086:180;40134:77;40131:1;40124:88;40231:4;40228:1;40221:15;40255:4;40252:1;40245:15;40272:180;40320:77;40317:1;40310:88;40417:4;40414:1;40407:15;40441:4;40438:1;40431:15;40458:180;40506:77;40503:1;40496:88;40603:4;40600:1;40593:15;40627:4;40624:1;40617:15;40644:117;40753:1;40750;40743:12;40767:117;40876:1;40873;40866:12;40890:117;40999:1;40996;40989:12;41013:117;41122:1;41119;41112:12;41136:117;41245:1;41242;41235:12;41259:117;41368:1;41365;41358:12;41382:102;41423:6;41474:2;41470:7;41465:2;41458:5;41454:14;41450:28;41440:38;;41382:102;;;:::o;41490:96::-;41524:8;41573:5;41568:3;41564:15;41543:36;;41490:96;;;:::o;41592:94::-;41625:8;41673:5;41669:2;41665:14;41644:35;;41592:94;;;:::o;41692:174::-;41832:26;41828:1;41820:6;41816:14;41809:50;41692:174;:::o;41872:153::-;42012:5;42008:1;42000:6;41996:14;41989:29;41872:153;:::o;42031:181::-;42171:33;42167:1;42159:6;42155:14;42148:57;42031:181;:::o;42218:154::-;42358:6;42354:1;42346:6;42342:14;42335:30;42218:154;:::o;42378:225::-;42518:34;42514:1;42506:6;42502:14;42495:58;42587:8;42582:2;42574:6;42570:15;42563:33;42378:225;:::o;42609:153::-;42749:5;42745:1;42737:6;42733:14;42726:29;42609:153;:::o;42768:::-;42908:5;42904:1;42896:6;42892:14;42885:29;42768:153;:::o;42927:::-;43067:5;43063:1;43055:6;43051:14;43044:29;42927:153;:::o;43086:::-;43226:5;43222:1;43214:6;43210:14;43203:29;43086:153;:::o;43245:221::-;43385:34;43381:1;43373:6;43369:14;43362:58;43454:4;43449:2;43441:6;43437:15;43430:29;43245:221;:::o;43472:153::-;43612:5;43608:1;43600:6;43596:14;43589:29;43472:153;:::o;43631:221::-;43771:34;43767:1;43759:6;43755:14;43748:58;43840:4;43835:2;43827:6;43823:15;43816:29;43631:221;:::o;43858:153::-;43998:5;43994:1;43986:6;43982:14;43975:29;43858:153;:::o;44017:::-;44157:5;44153:1;44145:6;44141:14;44134:29;44017:153;:::o;44176:182::-;44316:34;44312:1;44304:6;44300:14;44293:58;44176:182;:::o;44364:153::-;44504:5;44500:1;44492:6;44488:14;44481:29;44364:153;:::o;44523:::-;44663:5;44659:1;44651:6;44647:14;44640:29;44523:153;:::o;44682:234::-;44822:34;44818:1;44810:6;44806:14;44799:58;44891:17;44886:2;44878:6;44874:15;44867:42;44682:234;:::o;44922:153::-;45062:5;45058:1;45050:6;45046:14;45039:29;44922:153;:::o;45081:::-;45221:5;45217:1;45209:6;45205:14;45198:29;45081:153;:::o;45240:::-;45380:5;45376:1;45368:6;45364:14;45357:29;45240:153;:::o;45399:::-;45539:5;45535:1;45527:6;45523:14;45516:29;45399:153;:::o;45558:122::-;45631:24;45649:5;45631:24;:::i;:::-;45624:5;45621:35;45611:63;;45670:1;45667;45660:12;45611:63;45558:122;:::o;45686:116::-;45756:21;45771:5;45756:21;:::i;:::-;45749:5;45746:32;45736:60;;45792:1;45789;45782:12;45736:60;45686:116;:::o;45808:120::-;45880:23;45897:5;45880:23;:::i;:::-;45873:5;45870:34;45860:62;;45918:1;45915;45908:12;45860:62;45808:120;:::o;45934:122::-;46007:24;46025:5;46007:24;:::i;:::-;46000:5;45997:35;45987:63;;46046:1;46043;46036:12;45987:63;45934:122;:::o;46062:120::-;46134:23;46151:5;46134:23;:::i;:::-;46127:5;46124:34;46114:62;;46172:1;46169;46162:12;46114:62;46062:120;:::o

Swarm Source

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