ETH Price: $3,010.30 (+4.49%)
Gas: 2 Gwei

Token

Nexus Tools (NEXUS)
 

Overview

Max Total Supply

1,000 NEXUS

Holders

705

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
srgus.eth
Balance
1 NEXUS
0x76815b9f470902e5785862eb9c37c3402fbffbd1
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:
NexusTools

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 5 of 7: NexusTools.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import './ERC721A.sol';
import './Ownable.sol';
import './ECDSA.sol';

error IncorrectSignature();
error SoldOut();
error MaxMintTokensExceeded();
error AddressCantBeBurner();
error CantWithdrawFunds();

// @author web_n3rdz (n3rdz.xyz)
contract NexusTools is ERC721A, Ownable {
    using ECDSA for bytes32;

    address private _signerAddress;
    address private _authorWallet;

    string public baseURI;
    uint256 public maxSupply;

    constructor( uint256 newMaxSupply, address newSignerAddress, string memory newBaseURI ) ERC721A("Nexus Tools", "NEXUS") {
        maxSupply = newMaxSupply;
        baseURI = newBaseURI;
        _signerAddress = newSignerAddress;
    }

    // public functions

    /**
     * @dev Important: You will need a valid signature to mint. The signature will only be generated on the official website.
     */
    function mint(bytes calldata signature, uint256 quantity, uint256 maxMintable) external payable {
        if( !_verifySig(msg.sender, msg.value, maxMintable, signature) ) revert IncorrectSignature();
        if( totalSupply() + quantity > maxSupply ) revert SoldOut();
        if( _numberMinted(msg.sender) + quantity > maxMintable ) revert MaxMintTokensExceeded();

        _mint(msg.sender, quantity);
    }

    /**
     * @dev Check how many tokens the given address minted
     */
    function numberMinted(address minter) external view returns(uint256) {
        return _numberMinted(minter);
    }

    // internal functions

    function _verifySig(address sender, uint256 valueSent, uint256 maxMintable, bytes memory signature) internal view returns(bool) {
        bytes32 messageHash = keccak256(abi.encodePacked(sender, valueSent, maxMintable));
        return _signerAddress == messageHash.toEthSignedMessageHash().recover(signature);
    }

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

    // owner functions

    /**
     * @dev Aidrop tokens to given address (onlyOwner)
     */
    function airdop(address receiver, uint256 quantity ) external onlyOwner {
        if( totalSupply() + quantity > maxSupply ) revert SoldOut();
        _mint(receiver, quantity);
    }

    /**
     * @dev Batch aidrop tokens to given addresses (onlyOwner)
     */
    function airdopBatch(address[] calldata receivers, uint256[] calldata quantities ) external onlyOwner {

        uint256 totalQuantity = 0;

        for( uint256 i = 0; i < quantities.length; i++ ) {
            totalQuantity += quantities[i];
        }

        if( totalSupply() + totalQuantity > maxSupply ) revert SoldOut();

        for( uint256 i = 0; i < receivers.length; i++ ) {
            _mint(receivers[i], quantities[i]);
        }
    }

    /**
     * @dev Set the signer address to verify signatures (onlyOwner)
     */
    function setSignerAddress(address newSignerAddress) external onlyOwner {
        if( newSignerAddress == address(0) ) revert AddressCantBeBurner();
        _signerAddress = newSignerAddress;
    }

    /**
     * @dev Set base uri for token metadata (onlyOwner)
     */
    function setBaseURI(string memory newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

    /**
     * @dev Withdraw all funds (onlyOwner)
     */
    function withdrawAll() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        if( !success ) revert CantWithdrawFunds();
    }

}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT
// 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 2 of 7: ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "./Strings.sol";

/**
 * @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 // Deprecated in v4.8
    }

    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");
        }
    }

    /**
     * @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 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 3 of 7: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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 0x80 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

File 4 of 7: IERC721A.sol
// SPDX-License-Identifier: MIT
// 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 6 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @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 7 of 7: Strings.sol
// SPDX-License-Identifier: MIT
// 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"},{"internalType":"address","name":"newSignerAddress","type":"address"},{"internalType":"string","name":"newBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AddressCantBeBurner","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"CantWithdrawFunds","type":"error"},{"inputs":[],"name":"IncorrectSignature","type":"error"},{"inputs":[],"name":"MaxMintTokensExceeded","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":"SoldOut","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"airdopBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"maxMintable","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSignerAddress","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003839380380620038398339818101604052810190620000379190620003a6565b6040518060400160405280600b81526020017f4e6578757320546f6f6c730000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4e455855530000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb9291906200024a565b508060039080519060200190620000d49291906200024a565b50620000e56200017760201b60201c565b60008190555050506200010d620001016200017c60201b60201c565b6200018460201b60201c565b82600c8190555080600b90805190602001906200012c9291906200024a565b5081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000617565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025890620004f4565b90600052602060002090601f0160209004810192826200027c5760008555620002c8565b82601f106200029757805160ff1916838001178555620002c8565b82800160010185558215620002c8579182015b82811115620002c7578251825591602001919060010190620002aa565b5b509050620002d79190620002db565b5090565b5b80821115620002f6576000816000905550600101620002dc565b5090565b6000620003116200030b846200044a565b62000421565b90508281526020810184848401111562000330576200032f620005c3565b5b6200033d848285620004be565b509392505050565b6000815190506200035681620005e3565b92915050565b600082601f830112620003745762000373620005be565b5b815162000386848260208601620002fa565b91505092915050565b600081519050620003a081620005fd565b92915050565b600080600060608486031215620003c257620003c1620005cd565b5b6000620003d2868287016200038f565b9350506020620003e58682870162000345565b925050604084015167ffffffffffffffff811115620004095762000408620005c8565b5b62000417868287016200035c565b9150509250925092565b60006200042d62000440565b90506200043b82826200052a565b919050565b6000604051905090565b600067ffffffffffffffff8211156200046857620004676200058f565b5b6200047382620005d2565b9050602081019050919050565b60006200048d8262000494565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620004de578082015181840152602081019050620004c1565b83811115620004ee576000848401525b50505050565b600060028204905060018216806200050d57607f821691505b6020821081141562000524576200052362000560565b5b50919050565b6200053582620005d2565b810181811067ffffffffffffffff821117156200055757620005566200058f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005ee8162000480565b8114620005fa57600080fd5b50565b6200060881620004b4565b81146200061457600080fd5b50565b61321280620006276000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610549578063dc33e68114610574578063e985e9c5146105b1578063f2fde38b146105ee57610181565b8063a22cb465146104ba578063b88d4fde146104e3578063c87b56dd1461050c57610181565b806370a08231146103dd57806370f93ede1461041a578063715018a614610436578063853828b61461044d5780638da5cb5b1461046457806395d89b411461048f57610181565b806318160ddd1161013e57806342842e0e1161011857806342842e0e1461032357806355f804b31461034c5780636352211e146103755780636c0360eb146103b257610181565b806318160ddd146102a657806323b872dd146102d15780633f1d72ba146102fa57610181565b806301ffc9a714610186578063046dc166146101c357806306fdde03146101ec5780630751e86b14610217578063081812fc14610240578063095ea7b31461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061268c565b610617565b6040516101ba9190612afb565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190612448565b6106a9565b005b3480156101f857600080fd5b5061020161075c565b60405161020e9190612b5b565b60405180910390f35b34801561022357600080fd5b5061023e6004803603810190610239919061260b565b6107ee565b005b34801561024c57600080fd5b50610267600480360381019061026291906127a3565b610901565b6040516102749190612a94565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f91906125cb565b610980565b005b3480156102b257600080fd5b506102bb610ac4565b6040516102c89190612c1d565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f391906124b5565b610adb565b005b34801561030657600080fd5b50610321600480360381019061031c91906125cb565b610e00565b005b34801561032f57600080fd5b5061034a600480360381019061034591906124b5565b610e64565b005b34801561035857600080fd5b50610373600480360381019061036e919061275a565b610e84565b005b34801561038157600080fd5b5061039c600480360381019061039791906127a3565b610ea6565b6040516103a99190612a94565b60405180910390f35b3480156103be57600080fd5b506103c7610eb8565b6040516103d49190612b5b565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612448565b610f46565b6040516104119190612c1d565b60405180910390f35b610434600480360381019061042f91906126e6565b610fff565b005b34801561044257600080fd5b5061044b611130565b005b34801561045957600080fd5b50610462611144565b005b34801561047057600080fd5b506104796111f2565b6040516104869190612a94565b60405180910390f35b34801561049b57600080fd5b506104a461121c565b6040516104b19190612b5b565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc919061258b565b6112ae565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190612508565b6113b9565b005b34801561051857600080fd5b50610533600480360381019061052e91906127a3565b61142c565b6040516105409190612b5b565b60405180910390f35b34801561055557600080fd5b5061055e6114cb565b60405161056b9190612c1d565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190612448565b6114d1565b6040516105a89190612c1d565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190612475565b6114e3565b6040516105e59190612afb565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190612448565b611577565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6106b16115fb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610718576040517f746ef87300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461076b90612e30565b80601f016020809104026020016040519081016040528092919081815260200182805461079790612e30565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b5050505050905090565b6107f66115fb565b6000805b8383905081101561083f5783838281811061081857610817612fa1565b5b905060200201358261082a9190612d0d565b9150808061083790612e93565b9150506107fa565b50600c548161084c610ac4565b6108569190612d0d565b111561088e576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b858590508110156108f9576108e68686838181106108b2576108b1612fa1565b5b90506020020160208101906108c79190612448565b8585848181106108da576108d9612fa1565b5b90506020020135611679565b80806108f190612e93565b915050610891565b505050505050565b600061090c82611836565b610942576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098b82610ea6565b90508073ffffffffffffffffffffffffffffffffffffffff166109ac611895565b73ffffffffffffffffffffffffffffffffffffffff1614610a0f576109d8816109d3611895565b6114e3565b610a0e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ace61189d565b6001546000540303905090565b6000610ae6826118a2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b4d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b5984611970565b91509150610b6f8187610b6a611895565b611997565b610bbb57610b8486610b7f611895565b6114e3565b610bba576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c22576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c2f86868660016119db565b8015610c3a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0885610ce48888876119e1565b7c020000000000000000000000000000000000000000000000000000000017611a09565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d90576000600185019050600060046000838152602001908152602001600020541415610d8e576000548114610d8d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610df88686866001611a34565b505050505050565b610e086115fb565b600c5481610e14610ac4565b610e1e9190612d0d565b1115610e56576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e608282611679565b5050565b610e7f838383604051806020016040528060008152506113b9565b505050565b610e8c6115fb565b80600b9080519060200190610ea292919061215a565b5050565b6000610eb1826118a2565b9050919050565b600b8054610ec590612e30565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef190612e30565b8015610f3e5780601f10610f1357610100808354040283529160200191610f3e565b820191906000526020600020905b815481529060010190602001808311610f2157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fae576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61104f33348387878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a3a565b611085576040517fc1606c2f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5482611091610ac4565b61109b9190612d0d565b11156110d3576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80826110de33611ae0565b6110e89190612d0d565b1115611120576040517fd58a411000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61112a3383611679565b50505050565b6111386115fb565b6111426000611b37565b565b61114c6115fb565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161117290612a7f565b60006040518083038185875af1925050503d80600081146111af576040519150601f19603f3d011682016040523d82523d6000602084013e6111b4565b606091505b50509050806111ef576040517fc9ae8eaa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461122b90612e30565b80601f016020809104026020016040519081016040528092919081815260200182805461125790612e30565b80156112a45780601f10611279576101008083540402835291602001916112a4565b820191906000526020600020905b81548152906001019060200180831161128757829003601f168201915b5050505050905090565b80600760006112bb611895565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611368611895565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ad9190612afb565b60405180910390a35050565b6113c4848484610adb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611426576113ef84848484611bfd565b611425576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061143782611836565b61146d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611477611d5d565b905060008151141561149857604051806020016040528060008152506114c3565b806114a284611def565b6040516020016114b3929190612a35565b6040516020818303038152906040525b915050919050565b600c5481565b60006114dc82611ae0565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61157f6115fb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e690612bbd565b60405180910390fd5b6115f881611b37565b50565b611603611e3f565b73ffffffffffffffffffffffffffffffffffffffff166116216111f2565b73ffffffffffffffffffffffffffffffffffffffff1614611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90612bfd565b60405180910390fd5b565b60008054905060008214156116ba576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116c760008483856119db565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061173e8361172f60008660006119e1565b61173885611e47565b17611a09565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146117df57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506117a4565b50600082141561181b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506118316000848385611a34565b505050565b60008161184161189d565b11158015611850575060005482105b801561188e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806118b161189d565b11611939576000548110156119385760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611936575b600081141561192c576004600083600190039350838152602001908152602001600020549050611901565b809250505061196b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119f8868684611e57565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080858585604051602001611a52939291906129f8565b604051602081830303815290604052805190602001209050611a8583611a7783611e60565b611e9090919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c23611895565b8786866040518563ffffffff1660e01b8152600401611c459493929190612aaf565b602060405180830381600087803b158015611c5f57600080fd5b505af1925050508015611c9057506040513d601f19601f82011682018060405250810190611c8d91906126b9565b60015b611d0a573d8060008114611cc0576040519150601f19603f3d011682016040523d82523d6000602084013e611cc5565b606091505b50600081511415611d02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611d6c90612e30565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9890612e30565b8015611de55780601f10611dba57610100808354040283529160200191611de5565b820191906000526020600020905b815481529060010190602001808311611dc857829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611e2b57600183039250600a81066030018353600a8104905080611e2657611e2b565b611e00565b508181036020830392508083525050919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b600081604051602001611e739190612a59565b604051602081830303815290604052805190602001209050919050565b6000806000611e9f8585611eb7565b91509150611eac81611f09565b819250505092915050565b600080604183511415611ef95760008060006020860151925060408601519150606086015160001a9050611eed87828585612077565b94509450505050611f02565b60006002915091505b9250929050565b60006004811115611f1d57611f1c612f43565b5b816004811115611f3057611f2f612f43565b5b1415611f3b57612074565b60016004811115611f4f57611f4e612f43565b5b816004811115611f6257611f61612f43565b5b1415611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90612b7d565b60405180910390fd5b60026004811115611fb757611fb6612f43565b5b816004811115611fca57611fc9612f43565b5b141561200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200290612b9d565b60405180910390fd5b6003600481111561201f5761201e612f43565b5b81600481111561203257612031612f43565b5b1415612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90612bdd565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156120b2576000600391509150612151565b6000600187878787604051600081526020016040526040516120d79493929190612b16565b6020604051602081039080840390855afa1580156120f9573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561214857600060019250925050612151565b80600092509250505b94509492505050565b82805461216690612e30565b90600052602060002090601f01602090048101928261218857600085556121cf565b82601f106121a157805160ff19168380011785556121cf565b828001600101855582156121cf579182015b828111156121ce5782518255916020019190600101906121b3565b5b5090506121dc91906121e0565b5090565b5b808211156121f95760008160009055506001016121e1565b5090565b600061221061220b84612c5d565b612c38565b90508281526020810184848401111561222c5761222b61300e565b5b612237848285612dee565b509392505050565b600061225261224d84612c8e565b612c38565b90508281526020810184848401111561226e5761226d61300e565b5b612279848285612dee565b509392505050565b60008135905061229081613180565b92915050565b60008083601f8401126122ac576122ab613004565b5b8235905067ffffffffffffffff8111156122c9576122c8612fff565b5b6020830191508360208202830111156122e5576122e4613009565b5b9250929050565b60008083601f84011261230257612301613004565b5b8235905067ffffffffffffffff81111561231f5761231e612fff565b5b60208301915083602082028301111561233b5761233a613009565b5b9250929050565b60008135905061235181613197565b92915050565b600081359050612366816131ae565b92915050565b60008151905061237b816131ae565b92915050565b60008083601f84011261239757612396613004565b5b8235905067ffffffffffffffff8111156123b4576123b3612fff565b5b6020830191508360018202830111156123d0576123cf613009565b5b9250929050565b600082601f8301126123ec576123eb613004565b5b81356123fc8482602086016121fd565b91505092915050565b600082601f83011261241a57612419613004565b5b813561242a84826020860161223f565b91505092915050565b600081359050612442816131c5565b92915050565b60006020828403121561245e5761245d613018565b5b600061246c84828501612281565b91505092915050565b6000806040838503121561248c5761248b613018565b5b600061249a85828601612281565b92505060206124ab85828601612281565b9150509250929050565b6000806000606084860312156124ce576124cd613018565b5b60006124dc86828701612281565b93505060206124ed86828701612281565b92505060406124fe86828701612433565b9150509250925092565b6000806000806080858703121561252257612521613018565b5b600061253087828801612281565b945050602061254187828801612281565b935050604061255287828801612433565b925050606085013567ffffffffffffffff81111561257357612572613013565b5b61257f878288016123d7565b91505092959194509250565b600080604083850312156125a2576125a1613018565b5b60006125b085828601612281565b92505060206125c185828601612342565b9150509250929050565b600080604083850312156125e2576125e1613018565b5b60006125f085828601612281565b925050602061260185828601612433565b9150509250929050565b6000806000806040858703121561262557612624613018565b5b600085013567ffffffffffffffff81111561264357612642613013565b5b61264f87828801612296565b9450945050602085013567ffffffffffffffff81111561267257612671613013565b5b61267e878288016122ec565b925092505092959194509250565b6000602082840312156126a2576126a1613018565b5b60006126b084828501612357565b91505092915050565b6000602082840312156126cf576126ce613018565b5b60006126dd8482850161236c565b91505092915050565b60008060008060608587031215612700576126ff613018565b5b600085013567ffffffffffffffff81111561271e5761271d613013565b5b61272a87828801612381565b9450945050602061273d87828801612433565b925050604061274e87828801612433565b91505092959194509250565b6000602082840312156127705761276f613018565b5b600082013567ffffffffffffffff81111561278e5761278d613013565b5b61279a84828501612405565b91505092915050565b6000602082840312156127b9576127b8613018565b5b60006127c784828501612433565b91505092915050565b6127d981612d63565b82525050565b6127f06127eb82612d63565b612edc565b82525050565b6127ff81612d75565b82525050565b61280e81612d81565b82525050565b61282561282082612d81565b612eee565b82525050565b600061283682612cbf565b6128408185612cd5565b9350612850818560208601612dfd565b6128598161301d565b840191505092915050565b600061286f82612cca565b6128798185612cf1565b9350612889818560208601612dfd565b6128928161301d565b840191505092915050565b60006128a882612cca565b6128b28185612d02565b93506128c2818560208601612dfd565b80840191505092915050565b60006128db601883612cf1565b91506128e68261303b565b602082019050919050565b60006128fe601f83612cf1565b915061290982613064565b602082019050919050565b6000612921601c83612d02565b915061292c8261308d565b601c82019050919050565b6000612944602683612cf1565b915061294f826130b6565b604082019050919050565b6000612967602283612cf1565b915061297282613105565b604082019050919050565b600061298a602083612cf1565b915061299582613154565b602082019050919050565b60006129ad600083612ce6565b91506129b88261317d565b600082019050919050565b6129cc81612dd7565b82525050565b6129e36129de82612dd7565b612f0a565b82525050565b6129f281612de1565b82525050565b6000612a0482866127df565b601482019150612a1482856129d2565b602082019150612a2482846129d2565b602082019150819050949350505050565b6000612a41828561289d565b9150612a4d828461289d565b91508190509392505050565b6000612a6482612914565b9150612a708284612814565b60208201915081905092915050565b6000612a8a826129a0565b9150819050919050565b6000602082019050612aa960008301846127d0565b92915050565b6000608082019050612ac460008301876127d0565b612ad160208301866127d0565b612ade60408301856129c3565b8181036060830152612af0818461282b565b905095945050505050565b6000602082019050612b1060008301846127f6565b92915050565b6000608082019050612b2b6000830187612805565b612b3860208301866129e9565b612b456040830185612805565b612b526060830184612805565b95945050505050565b60006020820190508181036000830152612b758184612864565b905092915050565b60006020820190508181036000830152612b96816128ce565b9050919050565b60006020820190508181036000830152612bb6816128f1565b9050919050565b60006020820190508181036000830152612bd681612937565b9050919050565b60006020820190508181036000830152612bf68161295a565b9050919050565b60006020820190508181036000830152612c168161297d565b9050919050565b6000602082019050612c3260008301846129c3565b92915050565b6000612c42612c53565b9050612c4e8282612e62565b919050565b6000604051905090565b600067ffffffffffffffff821115612c7857612c77612fd0565b5b612c818261301d565b9050602081019050919050565b600067ffffffffffffffff821115612ca957612ca8612fd0565b5b612cb28261301d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d1882612dd7565b9150612d2383612dd7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d5857612d57612f14565b5b828201905092915050565b6000612d6e82612db7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612e1b578082015181840152602081019050612e00565b83811115612e2a576000848401525b50505050565b60006002820490506001821680612e4857607f821691505b60208210811415612e5c57612e5b612f72565b5b50919050565b612e6b8261301d565b810181811067ffffffffffffffff82111715612e8a57612e89612fd0565b5b80604052505050565b6000612e9e82612dd7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ed157612ed0612f14565b5b600182019050919050565b6000612ee782612ef8565b9050919050565b6000819050919050565b6000612f038261302e565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b61318981612d63565b811461319457600080fd5b50565b6131a081612d75565b81146131ab57600080fd5b50565b6131b781612d8b565b81146131c257600080fd5b50565b6131ce81612dd7565b81146131d957600080fd5b5056fea2646970667358221220da4283ce81c1b02067e150202d439626dbfd220257811d22876674d4e144f25a64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000003e80000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6d696e742d6170692e6e65787573746f6f6c732e696f2f6d657461646174612f000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610549578063dc33e68114610574578063e985e9c5146105b1578063f2fde38b146105ee57610181565b8063a22cb465146104ba578063b88d4fde146104e3578063c87b56dd1461050c57610181565b806370a08231146103dd57806370f93ede1461041a578063715018a614610436578063853828b61461044d5780638da5cb5b1461046457806395d89b411461048f57610181565b806318160ddd1161013e57806342842e0e1161011857806342842e0e1461032357806355f804b31461034c5780636352211e146103755780636c0360eb146103b257610181565b806318160ddd146102a657806323b872dd146102d15780633f1d72ba146102fa57610181565b806301ffc9a714610186578063046dc166146101c357806306fdde03146101ec5780630751e86b14610217578063081812fc14610240578063095ea7b31461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061268c565b610617565b6040516101ba9190612afb565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190612448565b6106a9565b005b3480156101f857600080fd5b5061020161075c565b60405161020e9190612b5b565b60405180910390f35b34801561022357600080fd5b5061023e6004803603810190610239919061260b565b6107ee565b005b34801561024c57600080fd5b50610267600480360381019061026291906127a3565b610901565b6040516102749190612a94565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f91906125cb565b610980565b005b3480156102b257600080fd5b506102bb610ac4565b6040516102c89190612c1d565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f391906124b5565b610adb565b005b34801561030657600080fd5b50610321600480360381019061031c91906125cb565b610e00565b005b34801561032f57600080fd5b5061034a600480360381019061034591906124b5565b610e64565b005b34801561035857600080fd5b50610373600480360381019061036e919061275a565b610e84565b005b34801561038157600080fd5b5061039c600480360381019061039791906127a3565b610ea6565b6040516103a99190612a94565b60405180910390f35b3480156103be57600080fd5b506103c7610eb8565b6040516103d49190612b5b565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612448565b610f46565b6040516104119190612c1d565b60405180910390f35b610434600480360381019061042f91906126e6565b610fff565b005b34801561044257600080fd5b5061044b611130565b005b34801561045957600080fd5b50610462611144565b005b34801561047057600080fd5b506104796111f2565b6040516104869190612a94565b60405180910390f35b34801561049b57600080fd5b506104a461121c565b6040516104b19190612b5b565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc919061258b565b6112ae565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190612508565b6113b9565b005b34801561051857600080fd5b50610533600480360381019061052e91906127a3565b61142c565b6040516105409190612b5b565b60405180910390f35b34801561055557600080fd5b5061055e6114cb565b60405161056b9190612c1d565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190612448565b6114d1565b6040516105a89190612c1d565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190612475565b6114e3565b6040516105e59190612afb565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190612448565b611577565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6106b16115fb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610718576040517f746ef87300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461076b90612e30565b80601f016020809104026020016040519081016040528092919081815260200182805461079790612e30565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b5050505050905090565b6107f66115fb565b6000805b8383905081101561083f5783838281811061081857610817612fa1565b5b905060200201358261082a9190612d0d565b9150808061083790612e93565b9150506107fa565b50600c548161084c610ac4565b6108569190612d0d565b111561088e576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b858590508110156108f9576108e68686838181106108b2576108b1612fa1565b5b90506020020160208101906108c79190612448565b8585848181106108da576108d9612fa1565b5b90506020020135611679565b80806108f190612e93565b915050610891565b505050505050565b600061090c82611836565b610942576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098b82610ea6565b90508073ffffffffffffffffffffffffffffffffffffffff166109ac611895565b73ffffffffffffffffffffffffffffffffffffffff1614610a0f576109d8816109d3611895565b6114e3565b610a0e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ace61189d565b6001546000540303905090565b6000610ae6826118a2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b4d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b5984611970565b91509150610b6f8187610b6a611895565b611997565b610bbb57610b8486610b7f611895565b6114e3565b610bba576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c22576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c2f86868660016119db565b8015610c3a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0885610ce48888876119e1565b7c020000000000000000000000000000000000000000000000000000000017611a09565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d90576000600185019050600060046000838152602001908152602001600020541415610d8e576000548114610d8d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610df88686866001611a34565b505050505050565b610e086115fb565b600c5481610e14610ac4565b610e1e9190612d0d565b1115610e56576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e608282611679565b5050565b610e7f838383604051806020016040528060008152506113b9565b505050565b610e8c6115fb565b80600b9080519060200190610ea292919061215a565b5050565b6000610eb1826118a2565b9050919050565b600b8054610ec590612e30565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef190612e30565b8015610f3e5780601f10610f1357610100808354040283529160200191610f3e565b820191906000526020600020905b815481529060010190602001808311610f2157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fae576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61104f33348387878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a3a565b611085576040517fc1606c2f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5482611091610ac4565b61109b9190612d0d565b11156110d3576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80826110de33611ae0565b6110e89190612d0d565b1115611120576040517fd58a411000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61112a3383611679565b50505050565b6111386115fb565b6111426000611b37565b565b61114c6115fb565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161117290612a7f565b60006040518083038185875af1925050503d80600081146111af576040519150601f19603f3d011682016040523d82523d6000602084013e6111b4565b606091505b50509050806111ef576040517fc9ae8eaa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461122b90612e30565b80601f016020809104026020016040519081016040528092919081815260200182805461125790612e30565b80156112a45780601f10611279576101008083540402835291602001916112a4565b820191906000526020600020905b81548152906001019060200180831161128757829003601f168201915b5050505050905090565b80600760006112bb611895565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611368611895565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ad9190612afb565b60405180910390a35050565b6113c4848484610adb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611426576113ef84848484611bfd565b611425576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061143782611836565b61146d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611477611d5d565b905060008151141561149857604051806020016040528060008152506114c3565b806114a284611def565b6040516020016114b3929190612a35565b6040516020818303038152906040525b915050919050565b600c5481565b60006114dc82611ae0565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61157f6115fb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e690612bbd565b60405180910390fd5b6115f881611b37565b50565b611603611e3f565b73ffffffffffffffffffffffffffffffffffffffff166116216111f2565b73ffffffffffffffffffffffffffffffffffffffff1614611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90612bfd565b60405180910390fd5b565b60008054905060008214156116ba576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116c760008483856119db565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061173e8361172f60008660006119e1565b61173885611e47565b17611a09565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146117df57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506117a4565b50600082141561181b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506118316000848385611a34565b505050565b60008161184161189d565b11158015611850575060005482105b801561188e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806118b161189d565b11611939576000548110156119385760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611936575b600081141561192c576004600083600190039350838152602001908152602001600020549050611901565b809250505061196b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119f8868684611e57565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080858585604051602001611a52939291906129f8565b604051602081830303815290604052805190602001209050611a8583611a7783611e60565b611e9090919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c23611895565b8786866040518563ffffffff1660e01b8152600401611c459493929190612aaf565b602060405180830381600087803b158015611c5f57600080fd5b505af1925050508015611c9057506040513d601f19601f82011682018060405250810190611c8d91906126b9565b60015b611d0a573d8060008114611cc0576040519150601f19603f3d011682016040523d82523d6000602084013e611cc5565b606091505b50600081511415611d02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611d6c90612e30565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9890612e30565b8015611de55780601f10611dba57610100808354040283529160200191611de5565b820191906000526020600020905b815481529060010190602001808311611dc857829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611e2b57600183039250600a81066030018353600a8104905080611e2657611e2b565b611e00565b508181036020830392508083525050919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b600081604051602001611e739190612a59565b604051602081830303815290604052805190602001209050919050565b6000806000611e9f8585611eb7565b91509150611eac81611f09565b819250505092915050565b600080604183511415611ef95760008060006020860151925060408601519150606086015160001a9050611eed87828585612077565b94509450505050611f02565b60006002915091505b9250929050565b60006004811115611f1d57611f1c612f43565b5b816004811115611f3057611f2f612f43565b5b1415611f3b57612074565b60016004811115611f4f57611f4e612f43565b5b816004811115611f6257611f61612f43565b5b1415611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90612b7d565b60405180910390fd5b60026004811115611fb757611fb6612f43565b5b816004811115611fca57611fc9612f43565b5b141561200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200290612b9d565b60405180910390fd5b6003600481111561201f5761201e612f43565b5b81600481111561203257612031612f43565b5b1415612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90612bdd565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156120b2576000600391509150612151565b6000600187878787604051600081526020016040526040516120d79493929190612b16565b6020604051602081039080840390855afa1580156120f9573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561214857600060019250925050612151565b80600092509250505b94509492505050565b82805461216690612e30565b90600052602060002090601f01602090048101928261218857600085556121cf565b82601f106121a157805160ff19168380011785556121cf565b828001600101855582156121cf579182015b828111156121ce5782518255916020019190600101906121b3565b5b5090506121dc91906121e0565b5090565b5b808211156121f95760008160009055506001016121e1565b5090565b600061221061220b84612c5d565b612c38565b90508281526020810184848401111561222c5761222b61300e565b5b612237848285612dee565b509392505050565b600061225261224d84612c8e565b612c38565b90508281526020810184848401111561226e5761226d61300e565b5b612279848285612dee565b509392505050565b60008135905061229081613180565b92915050565b60008083601f8401126122ac576122ab613004565b5b8235905067ffffffffffffffff8111156122c9576122c8612fff565b5b6020830191508360208202830111156122e5576122e4613009565b5b9250929050565b60008083601f84011261230257612301613004565b5b8235905067ffffffffffffffff81111561231f5761231e612fff565b5b60208301915083602082028301111561233b5761233a613009565b5b9250929050565b60008135905061235181613197565b92915050565b600081359050612366816131ae565b92915050565b60008151905061237b816131ae565b92915050565b60008083601f84011261239757612396613004565b5b8235905067ffffffffffffffff8111156123b4576123b3612fff565b5b6020830191508360018202830111156123d0576123cf613009565b5b9250929050565b600082601f8301126123ec576123eb613004565b5b81356123fc8482602086016121fd565b91505092915050565b600082601f83011261241a57612419613004565b5b813561242a84826020860161223f565b91505092915050565b600081359050612442816131c5565b92915050565b60006020828403121561245e5761245d613018565b5b600061246c84828501612281565b91505092915050565b6000806040838503121561248c5761248b613018565b5b600061249a85828601612281565b92505060206124ab85828601612281565b9150509250929050565b6000806000606084860312156124ce576124cd613018565b5b60006124dc86828701612281565b93505060206124ed86828701612281565b92505060406124fe86828701612433565b9150509250925092565b6000806000806080858703121561252257612521613018565b5b600061253087828801612281565b945050602061254187828801612281565b935050604061255287828801612433565b925050606085013567ffffffffffffffff81111561257357612572613013565b5b61257f878288016123d7565b91505092959194509250565b600080604083850312156125a2576125a1613018565b5b60006125b085828601612281565b92505060206125c185828601612342565b9150509250929050565b600080604083850312156125e2576125e1613018565b5b60006125f085828601612281565b925050602061260185828601612433565b9150509250929050565b6000806000806040858703121561262557612624613018565b5b600085013567ffffffffffffffff81111561264357612642613013565b5b61264f87828801612296565b9450945050602085013567ffffffffffffffff81111561267257612671613013565b5b61267e878288016122ec565b925092505092959194509250565b6000602082840312156126a2576126a1613018565b5b60006126b084828501612357565b91505092915050565b6000602082840312156126cf576126ce613018565b5b60006126dd8482850161236c565b91505092915050565b60008060008060608587031215612700576126ff613018565b5b600085013567ffffffffffffffff81111561271e5761271d613013565b5b61272a87828801612381565b9450945050602061273d87828801612433565b925050604061274e87828801612433565b91505092959194509250565b6000602082840312156127705761276f613018565b5b600082013567ffffffffffffffff81111561278e5761278d613013565b5b61279a84828501612405565b91505092915050565b6000602082840312156127b9576127b8613018565b5b60006127c784828501612433565b91505092915050565b6127d981612d63565b82525050565b6127f06127eb82612d63565b612edc565b82525050565b6127ff81612d75565b82525050565b61280e81612d81565b82525050565b61282561282082612d81565b612eee565b82525050565b600061283682612cbf565b6128408185612cd5565b9350612850818560208601612dfd565b6128598161301d565b840191505092915050565b600061286f82612cca565b6128798185612cf1565b9350612889818560208601612dfd565b6128928161301d565b840191505092915050565b60006128a882612cca565b6128b28185612d02565b93506128c2818560208601612dfd565b80840191505092915050565b60006128db601883612cf1565b91506128e68261303b565b602082019050919050565b60006128fe601f83612cf1565b915061290982613064565b602082019050919050565b6000612921601c83612d02565b915061292c8261308d565b601c82019050919050565b6000612944602683612cf1565b915061294f826130b6565b604082019050919050565b6000612967602283612cf1565b915061297282613105565b604082019050919050565b600061298a602083612cf1565b915061299582613154565b602082019050919050565b60006129ad600083612ce6565b91506129b88261317d565b600082019050919050565b6129cc81612dd7565b82525050565b6129e36129de82612dd7565b612f0a565b82525050565b6129f281612de1565b82525050565b6000612a0482866127df565b601482019150612a1482856129d2565b602082019150612a2482846129d2565b602082019150819050949350505050565b6000612a41828561289d565b9150612a4d828461289d565b91508190509392505050565b6000612a6482612914565b9150612a708284612814565b60208201915081905092915050565b6000612a8a826129a0565b9150819050919050565b6000602082019050612aa960008301846127d0565b92915050565b6000608082019050612ac460008301876127d0565b612ad160208301866127d0565b612ade60408301856129c3565b8181036060830152612af0818461282b565b905095945050505050565b6000602082019050612b1060008301846127f6565b92915050565b6000608082019050612b2b6000830187612805565b612b3860208301866129e9565b612b456040830185612805565b612b526060830184612805565b95945050505050565b60006020820190508181036000830152612b758184612864565b905092915050565b60006020820190508181036000830152612b96816128ce565b9050919050565b60006020820190508181036000830152612bb6816128f1565b9050919050565b60006020820190508181036000830152612bd681612937565b9050919050565b60006020820190508181036000830152612bf68161295a565b9050919050565b60006020820190508181036000830152612c168161297d565b9050919050565b6000602082019050612c3260008301846129c3565b92915050565b6000612c42612c53565b9050612c4e8282612e62565b919050565b6000604051905090565b600067ffffffffffffffff821115612c7857612c77612fd0565b5b612c818261301d565b9050602081019050919050565b600067ffffffffffffffff821115612ca957612ca8612fd0565b5b612cb28261301d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d1882612dd7565b9150612d2383612dd7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d5857612d57612f14565b5b828201905092915050565b6000612d6e82612db7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612e1b578082015181840152602081019050612e00565b83811115612e2a576000848401525b50505050565b60006002820490506001821680612e4857607f821691505b60208210811415612e5c57612e5b612f72565b5b50919050565b612e6b8261301d565b810181811067ffffffffffffffff82111715612e8a57612e89612fd0565b5b80604052505050565b6000612e9e82612dd7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ed157612ed0612f14565b5b600182019050919050565b6000612ee782612ef8565b9050919050565b6000819050919050565b6000612f038261302e565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b61318981612d63565b811461319457600080fd5b50565b6131a081612d75565b81146131ab57600080fd5b50565b6131b781612d8b565b81146131c257600080fd5b50565b6131ce81612dd7565b81146131d957600080fd5b5056fea2646970667358221220da4283ce81c1b02067e150202d439626dbfd220257811d22876674d4e144f25a64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6d696e742d6170692e6e65787573746f6f6c732e696f2f6d657461646174612f000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : newMaxSupply (uint256): 1000
Arg [1] : newSignerAddress (address): 0x6B2341bf6d8E7f914a1aFEe9fBDC7449f875f61f
Arg [2] : newBaseURI (string): https://mint-api.nexustools.io/metadata/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [1] : 0000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [4] : 68747470733a2f2f6d696e742d6170692e6e65787573746f6f6c732e696f2f6d
Arg [5] : 657461646174612f000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

310:3307:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9367:639:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2975:199:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10269:100:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2416:464:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16752:218:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16193:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6020:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20391:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2140:186:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23304:185:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3257:104:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11662:152:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;464:21:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7204:233:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;943:415:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1884:103:5;;;;;;;;;;;;;:::i;:::-;;3431:181:4;;;;;;;;;;;;;:::i;:::-;;1236:87:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10445:104:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17310:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24087:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10655:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;492:24:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1444:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17701:164:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:201:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9367:639:2;9452:4;9791:10;9776:25;;:11;:25;;;;:102;;;;9868:10;9853:25;;:11;:25;;;;9776:102;:179;;;;9945:10;9930:25;;:11;:25;;;;9776:179;9756:199;;9367:639;;;:::o;2975:199:4:-;1122:13:5;:11;:13::i;:::-;3089:1:4::1;3061:30;;:16;:30;;;3057:65;;;3101:21;;;;;;;;;;;;;;3057:65;3150:16;3133:14;;:33;;;;;;;;;;;;;;;;;;2975:199:::0;:::o;10269:100:2:-;10323:13;10356:5;10349:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10269:100;:::o;2416:464:4:-;1122:13:5;:11;:13::i;:::-;2531:21:4::1;2574:9:::0;2569:106:::1;2593:10;;:17;;2589:1;:21;2569:106;;;2650:10;;2661:1;2650:13;;;;;;;:::i;:::-;;;;;;;;2633:30;;;;;:::i;:::-;;;2612:3;;;;;:::i;:::-;;;;2569:106;;;;2723:9;;2707:13;2691;:11;:13::i;:::-;:29;;;;:::i;:::-;:41;2687:64;;;2742:9;;;;;;;;;;;;;;2687:64;2769:9;2764:109;2788:9;;:16;;2784:1;:20;2764:109;;;2827:34;2833:9;;2843:1;2833:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2847:10;;2858:1;2847:13;;;;;;;:::i;:::-;;;;;;;;2827:5;:34::i;:::-;2806:3;;;;;:::i;:::-;;;;2764:109;;;;2518:362;2416:464:::0;;;;:::o;16752:218:2:-;16828:7;16853:16;16861:7;16853;:16::i;:::-;16848:64;;16878:34;;;;;;;;;;;;;;16848:64;16932:15;:24;16948:7;16932:24;;;;;;;;;;;:30;;;;;;;;;;;;16925:37;;16752:218;;;:::o;16193:400::-;16274:13;16290:16;16298:7;16290;:16::i;:::-;16274:32;;16346:5;16323:28;;:19;:17;:19::i;:::-;:28;;;16319:175;;16371:44;16388:5;16395:19;:17;:19::i;:::-;16371:16;:44::i;:::-;16366:128;;16443:35;;;;;;;;;;;;;;16366:128;16319:175;16539:2;16506:15;:24;16522:7;16506:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16577:7;16573:2;16557:28;;16566:5;16557:28;;;;;;;;;;;;16263:330;16193:400;;:::o;6020:323::-;6081:7;6309:15;:13;:15::i;:::-;6294:12;;6278:13;;:28;:46;6271:53;;6020:323;:::o;20391:2817::-;20525:27;20555;20574:7;20555:18;:27::i;:::-;20525:57;;20640:4;20599:45;;20615:19;20599:45;;;20595:86;;20653:28;;;;;;;;;;;;;;20595:86;20695:27;20724:23;20751:35;20778:7;20751:26;:35::i;:::-;20694:92;;;;20886:68;20911:15;20928:4;20934:19;:17;:19::i;:::-;20886:24;:68::i;:::-;20881:180;;20974:43;20991:4;20997:19;:17;:19::i;:::-;20974:16;:43::i;:::-;20969:92;;21026:35;;;;;;;;;;;;;;20969:92;20881:180;21092:1;21078:16;;:2;:16;;;21074:52;;;21103:23;;;;;;;;;;;;;;21074:52;21139:43;21161:4;21167:2;21171:7;21180:1;21139:21;:43::i;:::-;21275:15;21272:160;;;21415:1;21394:19;21387:30;21272:160;21812:18;:24;21831:4;21812:24;;;;;;;;;;;;;;;;21810:26;;;;;;;;;;;;21881:18;:22;21900:2;21881:22;;;;;;;;;;;;;;;;21879:24;;;;;;;;;;;22203:146;22240:2;22289:45;22304:4;22310:2;22314:19;22289:14;:45::i;:::-;2419:8;22261:73;22203:18;:146::i;:::-;22174:17;:26;22192:7;22174:26;;;;;;;;;;;:175;;;;22520:1;2419:8;22469:19;:47;:52;22465:627;;;22542:19;22574:1;22564:7;:11;22542:33;;22731:1;22697:17;:30;22715:11;22697:30;;;;;;;;;;;;:35;22693:384;;;22835:13;;22820:11;:28;22816:242;;23015:19;22982:17;:30;23000:11;22982:30;;;;;;;;;;;:52;;;;22816:242;22693:384;22523:569;22465:627;23139:7;23135:2;23120:27;;23129:4;23120:27;;;;;;;;;;;;23158:42;23179:4;23185:2;23189:7;23198:1;23158:20;:42::i;:::-;20514:2694;;;20391:2817;;;:::o;2140:186:4:-;1122:13:5;:11;:13::i;:::-;2254:9:4::1;;2243:8;2227:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;2223:59;;;2273:9;;;;;;;;;;;;;;2223:59;2293:25;2299:8;2309;2293:5;:25::i;:::-;2140:186:::0;;:::o;23304:185:2:-;23442:39;23459:4;23465:2;23469:7;23442:39;;;;;;;;;;;;:16;:39::i;:::-;23304:185;;;:::o;3257:104:4:-;1122:13:5;:11;:13::i;:::-;3343:10:4::1;3333:7;:20;;;;;;;;;;;;:::i;:::-;;3257:104:::0;:::o;11662:152:2:-;11734:7;11777:27;11796:7;11777:18;:27::i;:::-;11754:52;;11662:152;;;:::o;464:21:4:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7204:233:2:-;7276:7;7317:1;7300:19;;:5;:19;;;7296:60;;;7328:28;;;;;;;;;;;;;;7296:60;1363:13;7374:18;:25;7393:5;7374:25;;;;;;;;;;;;;;;;:55;7367:62;;7204:233;;;:::o;943:415:4:-;1055:57;1066:10;1078:9;1089:11;1102:9;;1055:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;:57::i;:::-;1050:92;;1122:20;;;;;;;;;;;;;;1050:92;1184:9;;1173:8;1157:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;1153:59;;;1203:9;;;;;;;;;;;;;;1153:59;1266:11;1255:8;1227:25;1241:10;1227:13;:25::i;:::-;:36;;;;:::i;:::-;:50;1223:87;;;1287:23;;;;;;;;;;;;;;1223:87;1323:27;1329:10;1341:8;1323:5;:27::i;:::-;943:415;;;;:::o;1884:103:5:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;3431:181:4:-;1122:13:5;:11;:13::i;:::-;3485:12:4::1;3503:10;:15;;3526:21;3503:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3484:68;;;3568:7;3563:41;;3585:19;;;;;;;;;;;;;;3563:41;3473:139;3431:181::o:0;1236:87:5:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;10445:104:2:-;10501:13;10534:7;10527:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10445:104;:::o;17310:234::-;17457:8;17405:18;:39;17424:19;:17;:19::i;:::-;17405:39;;;;;;;;;;;;;;;:49;17445:8;17405:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17517:8;17481:55;;17496:19;:17;:19::i;:::-;17481:55;;;17527:8;17481:55;;;;;;:::i;:::-;;;;;;;;17310:234;;:::o;24087:399::-;24254:31;24267:4;24273:2;24277:7;24254:12;:31::i;:::-;24318:1;24300:2;:14;;;:19;24296:183;;24339:56;24370:4;24376:2;24380:7;24389:5;24339:30;:56::i;:::-;24334:145;;24423:40;;;;;;;;;;;;;;24334:145;24296:183;24087:399;;;;:::o;10655:318::-;10728:13;10759:16;10767:7;10759;:16::i;:::-;10754:59;;10784:29;;;;;;;;;;;;;;10754:59;10826:21;10850:10;:8;:10::i;:::-;10826:34;;10903:1;10884:7;10878:21;:26;;:87;;;;;;;;;;;;;;;;;10931:7;10940:18;10950:7;10940:9;:18::i;:::-;10914:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10878:87;10871:94;;;10655:318;;;:::o;492:24:4:-;;;;:::o;1444:116::-;1504:7;1531:21;1545:6;1531:13;:21::i;:::-;1524:28;;1444:116;;;:::o;17701:164:2:-;17798:4;17822:18;:25;17841:5;17822:25;;;;;;;;;;;;;;;:35;17848:8;17822:35;;;;;;;;;;;;;;;;;;;;;;;;;17815:42;;17701:164;;;;:::o;2142:201:5:-;1122:13;:11;:13::i;:::-;2251:1:::1;2231:22;;:8;:22;;;;2223:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;1401:132::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;27748:2720:2:-;27821:20;27844:13;;27821:36;;27884:1;27872:8;:13;27868:44;;;27894:18;;;;;;;;;;;;;;27868:44;27925:61;27955:1;27959:2;27963:12;27977:8;27925:21;:61::i;:::-;28469:1;1501:2;28439:1;:26;;28438:32;28426:8;:45;28400:18;:22;28419:2;28400:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28748:139;28785:2;28839:33;28862:1;28866:2;28870:1;28839:14;:33::i;:::-;28806:30;28827:8;28806:20;:30::i;:::-;:66;28748:18;:139::i;:::-;28714:17;:31;28732:12;28714:31;;;;;;;;;;;:173;;;;28904:16;28935:11;28964:8;28949:12;:23;28935:37;;29485:16;29481:2;29477:25;29465:37;;29857:12;29817:8;29776:1;29714:25;29655:1;29594;29567:335;29982:1;29968:12;29964:20;29922:346;30023:3;30014:7;30011:16;29922:346;;30241:7;30231:8;30228:1;30201:25;30198:1;30195;30190:59;30076:1;30067:7;30063:15;30052:26;;29922:346;;;29926:77;30313:1;30301:8;:13;30297:45;;;30323:19;;;;;;;;;;;;;;30297:45;30375:3;30359:13;:19;;;;28174:2216;;30400:60;30429:1;30433:2;30437:12;30451:8;30400:20;:60::i;:::-;27810:2658;27748:2720;;:::o;18123:282::-;18188:4;18244:7;18225:15;:13;:15::i;:::-;:26;;:66;;;;;18278:13;;18268:7;:23;18225:66;:153;;;;;18377:1;2139:8;18329:17;:26;18347:7;18329:26;;;;;;;;;;;;:44;:49;18225:153;18205:173;;18123:282;;;:::o;40161:105::-;40221:7;40248:10;40241:17;;40161:105;:::o;5536:92::-;5592:7;5536:92;:::o;12817:1275::-;12884:7;12904:12;12919:7;12904:22;;12987:4;12968:15;:13;:15::i;:::-;:23;12964:1061;;13021:13;;13014:4;:20;13010:1015;;;13059:14;13076:17;:23;13094:4;13076:23;;;;;;;;;;;;13059:40;;13193:1;2139:8;13165:6;:24;:29;13161:845;;;13830:113;13847:1;13837:6;:11;13830:113;;;13890:17;:25;13908:6;;;;;;;13890:25;;;;;;;;;;;;13881:34;;13830:113;;;13976:6;13969:13;;;;;;13161:845;13036:989;13010:1015;12964:1061;14053:31;;;;;;;;;;;;;;12817:1275;;;;:::o;19286:485::-;19388:27;19417:23;19458:38;19499:15;:24;19515:7;19499:24;;;;;;;;;;;19458:65;;19676:18;19653:41;;19733:19;19727:26;19708:45;;19638:126;19286:485;;;:::o;18514:659::-;18663:11;18828:16;18821:5;18817:28;18808:37;;18988:16;18977:9;18973:32;18960:45;;19138:15;19127:9;19124:30;19116:5;19105:9;19102:20;19099:56;19089:66;;18514:659;;;;;:::o;25148:159::-;;;;;:::o;39470:311::-;39605:7;39625:16;2543:3;39651:19;:41;;39625:68;;2543:3;39719:31;39730:4;39736:2;39740:9;39719:10;:31::i;:::-;39711:40;;:62;;39704:69;;;39470:311;;;;;:::o;14640:450::-;14720:14;14888:16;14881:5;14877:28;14868:37;;15065:5;15051:11;15026:23;15022:41;15019:52;15012:5;15009:63;14999:73;;14640:450;;;;:::o;25972:158::-;;;;;:::o;1597:319:4:-;1719:4;1736:19;1785:6;1793:9;1804:11;1768:48;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1758:59;;;;;;1736:81;;1853:55;1898:9;1853:36;:11;:34;:36::i;:::-;:44;;:55;;;;:::i;:::-;1835:73;;:14;;;;;;;;;;;:73;;;1828:80;;;1597:319;;;;;;:::o;7519:178:2:-;7580:7;1363:13;1501:2;7608:18;:25;7627:5;7608:25;;;;;;;;;;;;;;;;:50;;7607:82;7600:89;;7519:178;;;:::o;2503:191:5:-;2577:16;2596:6;;;;;;;;;;;2577:25;;2622:8;2613:6;;:17;;;;;;;;;;;;;;;;;;2677:8;2646:40;;2667:8;2646:40;;;;;;;;;;;;2566:128;2503:191;:::o;26570:716:2:-;26733:4;26779:2;26754:45;;;26800:19;:17;:19::i;:::-;26821:4;26827:7;26836:5;26754:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26750:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27054:1;27037:6;:13;:18;27033:235;;;27083:40;;;;;;;;;;;;;;27033:235;27226:6;27220:13;27211:6;27207:2;27203:15;27196:38;26750:529;26923:54;;;26913:64;;;:6;:64;;;;26906:71;;;26570:716;;;;;;:::o;1924:108:4:-;1984:13;2017:7;2010:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1924:108;:::o;40368:1582:2:-;40433:17;40859:4;40852;40846:11;40842:22;40835:29;;40951:3;40945:4;40938:17;41057:3;41296:5;41278:428;41304:1;41278:428;;;41344:1;41339:3;41335:11;41328:18;;41515:2;41509:4;41505:13;41501:2;41497:22;41492:3;41484:36;41609:2;41603:4;41599:13;41591:21;;41676:4;41666:25;;41684:5;;41666:25;41278:428;;;41282:21;41745:3;41740;41736:13;41860:4;41855:3;41851:14;41844:21;;41925:6;41920:3;41913:19;40472:1471;;40368:1582;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;15192:324:2:-;15262:14;15495:1;15485:8;15482:15;15456:24;15452:46;15442:56;;15192:324;;;:::o;39171:147::-;39308:6;39171:147;;;;;:::o;7437:269:1:-;7506:7;7692:4;7639:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;7629:69;;;;;;7622:76;;7437:269;;;:::o;3747:231::-;3825:7;3846:17;3865:18;3887:27;3898:4;3904:9;3887:10;:27::i;:::-;3845:69;;;;3925:18;3937:5;3925:11;:18::i;:::-;3961:9;3954:16;;;;3747:231;;;;:::o;2198:747::-;2279:7;2288:12;2337:2;2317:9;:16;:22;2313:625;;;2356:9;2380;2404:7;2661:4;2650:9;2646:20;2640:27;2635:32;;2711:4;2700:9;2696:20;2690:27;2685:32;;2769:4;2758:9;2754:20;2748:27;2745:1;2740:36;2735:41;;2812:25;2823:4;2829:1;2832;2835;2812:10;:25::i;:::-;2805:32;;;;;;;;;2313:625;2886:1;2890:35;2870:56;;;;2198:747;;;;;;:::o;591:521::-;669:20;660:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;656:449;;;706:7;;656:449;767:29;758:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;754:351;;;813:34;;;;;;;;;;:::i;:::-;;;;;;;;754:351;878:35;869:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;865:240;;;930:41;;;;;;;;;;:::i;:::-;;;;;;;;865:240;1002:30;993:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;989:116;;;1049:44;;;;;;;;;;:::i;:::-;;;;;;;;989:116;591:521;;:::o;5199:1520::-;5330:7;5339:12;6264:66;6259:1;6251:10;;:79;6247:163;;;6363:1;6367:30;6347:51;;;;;;6247:163;6507:14;6524:24;6534:4;6540:1;6543;6546;6524:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6507:41;;6581:1;6563:20;;:6;:20;;;6559:103;;;6616:1;6620:29;6600:50;;;;;;;6559:103;6682:6;6690:20;6674:37;;;;;5199:1520;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:7:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:137::-;2352:5;2390:6;2377:20;2368:29;;2406:32;2432:5;2406:32;:::i;:::-;2307:137;;;;:::o;2450:141::-;2506:5;2537:6;2531:13;2522:22;;2553:32;2579:5;2553:32;:::i;:::-;2450:141;;;;:::o;2610:552::-;2667:8;2677:6;2727:3;2720:4;2712:6;2708:17;2704:27;2694:122;;2735:79;;:::i;:::-;2694:122;2848:6;2835:20;2825:30;;2878:18;2870:6;2867:30;2864:117;;;2900:79;;:::i;:::-;2864:117;3014:4;3006:6;3002:17;2990:29;;3068:3;3060:4;3052:6;3048:17;3038:8;3034:32;3031:41;3028:128;;;3075:79;;:::i;:::-;3028:128;2610:552;;;;;:::o;3181:338::-;3236:5;3285:3;3278:4;3270:6;3266:17;3262:27;3252:122;;3293:79;;:::i;:::-;3252:122;3410:6;3397:20;3435:78;3509:3;3501:6;3494:4;3486:6;3482:17;3435:78;:::i;:::-;3426:87;;3242:277;3181:338;;;;:::o;3539:340::-;3595:5;3644:3;3637:4;3629:6;3625:17;3621:27;3611:122;;3652:79;;:::i;:::-;3611:122;3769:6;3756:20;3794:79;3869:3;3861:6;3854:4;3846:6;3842:17;3794:79;:::i;:::-;3785:88;;3601:278;3539:340;;;;:::o;3885:139::-;3931:5;3969:6;3956:20;3947:29;;3985:33;4012:5;3985:33;:::i;:::-;3885:139;;;;:::o;4030:329::-;4089:6;4138:2;4126:9;4117:7;4113:23;4109:32;4106:119;;;4144:79;;:::i;:::-;4106:119;4264:1;4289:53;4334:7;4325:6;4314:9;4310:22;4289:53;:::i;:::-;4279:63;;4235:117;4030:329;;;;:::o;4365:474::-;4433:6;4441;4490:2;4478:9;4469:7;4465:23;4461:32;4458:119;;;4496:79;;:::i;:::-;4458:119;4616:1;4641:53;4686:7;4677:6;4666:9;4662:22;4641:53;:::i;:::-;4631:63;;4587:117;4743:2;4769:53;4814:7;4805:6;4794:9;4790:22;4769:53;:::i;:::-;4759:63;;4714:118;4365:474;;;;;:::o;4845:619::-;4922:6;4930;4938;4987:2;4975:9;4966:7;4962:23;4958:32;4955:119;;;4993:79;;:::i;:::-;4955:119;5113:1;5138:53;5183:7;5174:6;5163:9;5159:22;5138:53;:::i;:::-;5128:63;;5084:117;5240:2;5266:53;5311:7;5302:6;5291:9;5287:22;5266:53;:::i;:::-;5256:63;;5211:118;5368:2;5394:53;5439:7;5430:6;5419:9;5415:22;5394:53;:::i;:::-;5384:63;;5339:118;4845:619;;;;;:::o;5470:943::-;5565:6;5573;5581;5589;5638:3;5626:9;5617:7;5613:23;5609:33;5606:120;;;5645:79;;:::i;:::-;5606:120;5765:1;5790:53;5835:7;5826:6;5815:9;5811:22;5790:53;:::i;:::-;5780:63;;5736:117;5892:2;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5863:118;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6176:2;6165:9;6161:18;6148:32;6207:18;6199:6;6196:30;6193:117;;;6229:79;;:::i;:::-;6193:117;6334:62;6388:7;6379:6;6368:9;6364:22;6334:62;:::i;:::-;6324:72;;6119:287;5470:943;;;;;;;:::o;6419:468::-;6484:6;6492;6541:2;6529:9;6520:7;6516:23;6512:32;6509:119;;;6547:79;;:::i;:::-;6509:119;6667:1;6692:53;6737:7;6728:6;6717:9;6713:22;6692:53;:::i;:::-;6682:63;;6638:117;6794:2;6820:50;6862:7;6853:6;6842:9;6838:22;6820:50;:::i;:::-;6810:60;;6765:115;6419:468;;;;;:::o;6893:474::-;6961:6;6969;7018:2;7006:9;6997:7;6993:23;6989:32;6986:119;;;7024:79;;:::i;:::-;6986:119;7144:1;7169:53;7214:7;7205:6;7194:9;7190:22;7169:53;:::i;:::-;7159:63;;7115:117;7271:2;7297:53;7342:7;7333:6;7322:9;7318:22;7297:53;:::i;:::-;7287:63;;7242:118;6893:474;;;;;:::o;7373:934::-;7495:6;7503;7511;7519;7568:2;7556:9;7547:7;7543:23;7539:32;7536:119;;;7574:79;;:::i;:::-;7536:119;7722:1;7711:9;7707:17;7694:31;7752:18;7744:6;7741:30;7738:117;;;7774:79;;:::i;:::-;7738:117;7887:80;7959:7;7950:6;7939:9;7935:22;7887:80;:::i;:::-;7869:98;;;;7665:312;8044:2;8033:9;8029:18;8016:32;8075:18;8067:6;8064:30;8061:117;;;8097:79;;:::i;:::-;8061:117;8210:80;8282:7;8273:6;8262:9;8258:22;8210:80;:::i;:::-;8192:98;;;;7987:313;7373:934;;;;;;;:::o;8313:327::-;8371:6;8420:2;8408:9;8399:7;8395:23;8391:32;8388:119;;;8426:79;;:::i;:::-;8388:119;8546:1;8571:52;8615:7;8606:6;8595:9;8591:22;8571:52;:::i;:::-;8561:62;;8517:116;8313:327;;;;:::o;8646:349::-;8715:6;8764:2;8752:9;8743:7;8739:23;8735:32;8732:119;;;8770:79;;:::i;:::-;8732:119;8890:1;8915:63;8970:7;8961:6;8950:9;8946:22;8915:63;:::i;:::-;8905:73;;8861:127;8646:349;;;;:::o;9001:817::-;9089:6;9097;9105;9113;9162:2;9150:9;9141:7;9137:23;9133:32;9130:119;;;9168:79;;:::i;:::-;9130:119;9316:1;9305:9;9301:17;9288:31;9346:18;9338:6;9335:30;9332:117;;;9368:79;;:::i;:::-;9332:117;9481:64;9537:7;9528:6;9517:9;9513:22;9481:64;:::i;:::-;9463:82;;;;9259:296;9594:2;9620:53;9665:7;9656:6;9645:9;9641:22;9620:53;:::i;:::-;9610:63;;9565:118;9722:2;9748:53;9793:7;9784:6;9773:9;9769:22;9748:53;:::i;:::-;9738:63;;9693:118;9001:817;;;;;;;:::o;9824:509::-;9893:6;9942:2;9930:9;9921:7;9917:23;9913:32;9910:119;;;9948:79;;:::i;:::-;9910:119;10096:1;10085:9;10081:17;10068:31;10126:18;10118:6;10115:30;10112:117;;;10148:79;;:::i;:::-;10112:117;10253:63;10308:7;10299:6;10288:9;10284:22;10253:63;:::i;:::-;10243:73;;10039:287;9824:509;;;;:::o;10339:329::-;10398:6;10447:2;10435:9;10426:7;10422:23;10418:32;10415:119;;;10453:79;;:::i;:::-;10415:119;10573:1;10598:53;10643:7;10634:6;10623:9;10619:22;10598:53;:::i;:::-;10588:63;;10544:117;10339:329;;;;:::o;10674:118::-;10761:24;10779:5;10761:24;:::i;:::-;10756:3;10749:37;10674:118;;:::o;10798:157::-;10903:45;10923:24;10941:5;10923:24;:::i;:::-;10903:45;:::i;:::-;10898:3;10891:58;10798:157;;:::o;10961:109::-;11042:21;11057:5;11042:21;:::i;:::-;11037:3;11030:34;10961:109;;:::o;11076:118::-;11163:24;11181:5;11163:24;:::i;:::-;11158:3;11151:37;11076:118;;:::o;11200:157::-;11305:45;11325:24;11343:5;11325:24;:::i;:::-;11305:45;:::i;:::-;11300:3;11293:58;11200:157;;:::o;11363:360::-;11449:3;11477:38;11509:5;11477:38;:::i;:::-;11531:70;11594:6;11589:3;11531:70;:::i;:::-;11524:77;;11610:52;11655:6;11650:3;11643:4;11636:5;11632:16;11610:52;:::i;:::-;11687:29;11709:6;11687:29;:::i;:::-;11682:3;11678:39;11671:46;;11453:270;11363:360;;;;:::o;11729:364::-;11817:3;11845:39;11878:5;11845:39;:::i;:::-;11900:71;11964:6;11959:3;11900:71;:::i;:::-;11893:78;;11980:52;12025:6;12020:3;12013:4;12006:5;12002:16;11980:52;:::i;:::-;12057:29;12079:6;12057:29;:::i;:::-;12052:3;12048:39;12041:46;;11821:272;11729:364;;;;:::o;12099:377::-;12205:3;12233:39;12266:5;12233:39;:::i;:::-;12288:89;12370:6;12365:3;12288:89;:::i;:::-;12281:96;;12386:52;12431:6;12426:3;12419:4;12412:5;12408:16;12386:52;:::i;:::-;12463:6;12458:3;12454:16;12447:23;;12209:267;12099:377;;;;:::o;12482:366::-;12624:3;12645:67;12709:2;12704:3;12645:67;:::i;:::-;12638:74;;12721:93;12810:3;12721:93;:::i;:::-;12839:2;12834:3;12830:12;12823:19;;12482:366;;;:::o;12854:::-;12996:3;13017:67;13081:2;13076:3;13017:67;:::i;:::-;13010:74;;13093:93;13182:3;13093:93;:::i;:::-;13211:2;13206:3;13202:12;13195:19;;12854:366;;;:::o;13226:402::-;13386:3;13407:85;13489:2;13484:3;13407:85;:::i;:::-;13400:92;;13501:93;13590:3;13501:93;:::i;:::-;13619:2;13614:3;13610:12;13603:19;;13226:402;;;:::o;13634:366::-;13776:3;13797:67;13861:2;13856:3;13797:67;:::i;:::-;13790:74;;13873:93;13962:3;13873:93;:::i;:::-;13991:2;13986:3;13982:12;13975:19;;13634:366;;;:::o;14006:::-;14148:3;14169:67;14233:2;14228:3;14169:67;:::i;:::-;14162:74;;14245:93;14334:3;14245:93;:::i;:::-;14363:2;14358:3;14354:12;14347:19;;14006:366;;;:::o;14378:::-;14520:3;14541:67;14605:2;14600:3;14541:67;:::i;:::-;14534:74;;14617:93;14706:3;14617:93;:::i;:::-;14735:2;14730:3;14726:12;14719:19;;14378:366;;;:::o;14750:398::-;14909:3;14930:83;15011:1;15006:3;14930:83;:::i;:::-;14923:90;;15022:93;15111:3;15022:93;:::i;:::-;15140:1;15135:3;15131:11;15124:18;;14750:398;;;:::o;15154:118::-;15241:24;15259:5;15241:24;:::i;:::-;15236:3;15229:37;15154:118;;:::o;15278:157::-;15383:45;15403:24;15421:5;15403:24;:::i;:::-;15383:45;:::i;:::-;15378:3;15371:58;15278:157;;:::o;15441:112::-;15524:22;15540:5;15524:22;:::i;:::-;15519:3;15512:35;15441:112;;:::o;15559:538::-;15727:3;15742:75;15813:3;15804:6;15742:75;:::i;:::-;15842:2;15837:3;15833:12;15826:19;;15855:75;15926:3;15917:6;15855:75;:::i;:::-;15955:2;15950:3;15946:12;15939:19;;15968:75;16039:3;16030:6;15968:75;:::i;:::-;16068:2;16063:3;16059:12;16052:19;;16088:3;16081:10;;15559:538;;;;;;:::o;16103:435::-;16283:3;16305:95;16396:3;16387:6;16305:95;:::i;:::-;16298:102;;16417:95;16508:3;16499:6;16417:95;:::i;:::-;16410:102;;16529:3;16522:10;;16103:435;;;;;:::o;16544:522::-;16757:3;16779:148;16923:3;16779:148;:::i;:::-;16772:155;;16937:75;17008:3;16999:6;16937:75;:::i;:::-;17037:2;17032:3;17028:12;17021:19;;17057:3;17050:10;;16544:522;;;;:::o;17072:379::-;17256:3;17278:147;17421:3;17278:147;:::i;:::-;17271:154;;17442:3;17435:10;;17072:379;;;:::o;17457:222::-;17550:4;17588:2;17577:9;17573:18;17565:26;;17601:71;17669:1;17658:9;17654:17;17645:6;17601:71;:::i;:::-;17457:222;;;;:::o;17685:640::-;17880:4;17918:3;17907:9;17903:19;17895:27;;17932:71;18000:1;17989:9;17985:17;17976:6;17932:71;:::i;:::-;18013:72;18081:2;18070:9;18066:18;18057:6;18013:72;:::i;:::-;18095;18163:2;18152:9;18148:18;18139:6;18095:72;:::i;:::-;18214:9;18208:4;18204:20;18199:2;18188:9;18184:18;18177:48;18242:76;18313:4;18304:6;18242:76;:::i;:::-;18234:84;;17685:640;;;;;;;:::o;18331:210::-;18418:4;18456:2;18445:9;18441:18;18433:26;;18469:65;18531:1;18520:9;18516:17;18507:6;18469:65;:::i;:::-;18331:210;;;;:::o;18547:545::-;18720:4;18758:3;18747:9;18743:19;18735:27;;18772:71;18840:1;18829:9;18825:17;18816:6;18772:71;:::i;:::-;18853:68;18917:2;18906:9;18902:18;18893:6;18853:68;:::i;:::-;18931:72;18999:2;18988:9;18984:18;18975:6;18931:72;:::i;:::-;19013;19081:2;19070:9;19066:18;19057:6;19013:72;:::i;:::-;18547:545;;;;;;;:::o;19098:313::-;19211:4;19249:2;19238:9;19234:18;19226:26;;19298:9;19292:4;19288:20;19284:1;19273:9;19269:17;19262:47;19326:78;19399:4;19390:6;19326:78;:::i;:::-;19318:86;;19098:313;;;;:::o;19417:419::-;19583:4;19621:2;19610:9;19606:18;19598:26;;19670:9;19664:4;19660:20;19656:1;19645:9;19641:17;19634:47;19698:131;19824:4;19698:131;:::i;:::-;19690:139;;19417:419;;;:::o;19842:::-;20008:4;20046:2;20035:9;20031:18;20023:26;;20095:9;20089:4;20085:20;20081:1;20070:9;20066:17;20059:47;20123:131;20249:4;20123:131;:::i;:::-;20115:139;;19842:419;;;:::o;20267:::-;20433:4;20471:2;20460:9;20456:18;20448:26;;20520:9;20514:4;20510:20;20506:1;20495:9;20491:17;20484:47;20548:131;20674:4;20548:131;:::i;:::-;20540:139;;20267:419;;;:::o;20692:::-;20858:4;20896:2;20885:9;20881:18;20873:26;;20945:9;20939:4;20935:20;20931:1;20920:9;20916:17;20909:47;20973:131;21099:4;20973:131;:::i;:::-;20965:139;;20692:419;;;:::o;21117:::-;21283:4;21321:2;21310:9;21306:18;21298:26;;21370:9;21364:4;21360:20;21356:1;21345:9;21341:17;21334:47;21398:131;21524:4;21398:131;:::i;:::-;21390:139;;21117:419;;;:::o;21542:222::-;21635:4;21673:2;21662:9;21658:18;21650:26;;21686:71;21754:1;21743:9;21739:17;21730:6;21686:71;:::i;:::-;21542:222;;;;:::o;21770:129::-;21804:6;21831:20;;:::i;:::-;21821:30;;21860:33;21888:4;21880:6;21860:33;:::i;:::-;21770:129;;;:::o;21905:75::-;21938:6;21971:2;21965:9;21955:19;;21905:75;:::o;21986:307::-;22047:4;22137:18;22129:6;22126:30;22123:56;;;22159:18;;:::i;:::-;22123:56;22197:29;22219:6;22197:29;:::i;:::-;22189:37;;22281:4;22275;22271:15;22263:23;;21986:307;;;:::o;22299:308::-;22361:4;22451:18;22443:6;22440:30;22437:56;;;22473:18;;:::i;:::-;22437:56;22511:29;22533:6;22511:29;:::i;:::-;22503:37;;22595:4;22589;22585:15;22577:23;;22299:308;;;:::o;22613:98::-;22664:6;22698:5;22692:12;22682:22;;22613:98;;;:::o;22717:99::-;22769:6;22803:5;22797:12;22787:22;;22717:99;;;:::o;22822:168::-;22905:11;22939:6;22934:3;22927:19;22979:4;22974:3;22970:14;22955:29;;22822:168;;;;:::o;22996:147::-;23097:11;23134:3;23119:18;;22996:147;;;;:::o;23149:169::-;23233:11;23267:6;23262:3;23255:19;23307:4;23302:3;23298:14;23283:29;;23149:169;;;;:::o;23324:148::-;23426:11;23463:3;23448:18;;23324:148;;;;:::o;23478:305::-;23518:3;23537:20;23555:1;23537:20;:::i;:::-;23532:25;;23571:20;23589:1;23571:20;:::i;:::-;23566:25;;23725:1;23657:66;23653:74;23650:1;23647:81;23644:107;;;23731:18;;:::i;:::-;23644:107;23775:1;23772;23768:9;23761:16;;23478:305;;;;:::o;23789:96::-;23826:7;23855:24;23873:5;23855:24;:::i;:::-;23844:35;;23789:96;;;:::o;23891:90::-;23925:7;23968:5;23961:13;23954:21;23943:32;;23891:90;;;:::o;23987:77::-;24024:7;24053:5;24042:16;;23987:77;;;:::o;24070:149::-;24106:7;24146:66;24139:5;24135:78;24124:89;;24070:149;;;:::o;24225:126::-;24262:7;24302:42;24295:5;24291:54;24280:65;;24225:126;;;:::o;24357:77::-;24394:7;24423:5;24412:16;;24357:77;;;:::o;24440:86::-;24475:7;24515:4;24508:5;24504:16;24493:27;;24440:86;;;:::o;24532:154::-;24616:6;24611:3;24606;24593:30;24678:1;24669:6;24664:3;24660:16;24653:27;24532:154;;;:::o;24692:307::-;24760:1;24770:113;24784:6;24781:1;24778:13;24770:113;;;24869:1;24864:3;24860:11;24854:18;24850:1;24845:3;24841:11;24834:39;24806:2;24803:1;24799:10;24794:15;;24770:113;;;24901:6;24898:1;24895:13;24892:101;;;24981:1;24972:6;24967:3;24963:16;24956:27;24892:101;24741:258;24692:307;;;:::o;25005:320::-;25049:6;25086:1;25080:4;25076:12;25066:22;;25133:1;25127:4;25123:12;25154:18;25144:81;;25210:4;25202:6;25198:17;25188:27;;25144:81;25272:2;25264:6;25261:14;25241:18;25238:38;25235:84;;;25291:18;;:::i;:::-;25235:84;25056:269;25005:320;;;:::o;25331:281::-;25414:27;25436:4;25414:27;:::i;:::-;25406:6;25402:40;25544:6;25532:10;25529:22;25508:18;25496:10;25493:34;25490:62;25487:88;;;25555:18;;:::i;:::-;25487:88;25595:10;25591:2;25584:22;25374:238;25331:281;;:::o;25618:233::-;25657:3;25680:24;25698:5;25680:24;:::i;:::-;25671:33;;25726:66;25719:5;25716:77;25713:103;;;25796:18;;:::i;:::-;25713:103;25843:1;25836:5;25832:13;25825:20;;25618:233;;;:::o;25857:100::-;25896:7;25925:26;25945:5;25925:26;:::i;:::-;25914:37;;25857:100;;;:::o;25963:79::-;26002:7;26031:5;26020:16;;25963:79;;;:::o;26048:94::-;26087:7;26116:20;26130:5;26116:20;:::i;:::-;26105:31;;26048:94;;;:::o;26148:79::-;26187:7;26216:5;26205:16;;26148:79;;;:::o;26233:180::-;26281:77;26278:1;26271:88;26378:4;26375:1;26368:15;26402:4;26399:1;26392:15;26419:180;26467:77;26464:1;26457:88;26564:4;26561:1;26554:15;26588:4;26585:1;26578:15;26605:180;26653:77;26650:1;26643:88;26750:4;26747:1;26740:15;26774:4;26771:1;26764:15;26791:180;26839:77;26836:1;26829:88;26936:4;26933:1;26926:15;26960:4;26957:1;26950:15;26977:180;27025:77;27022:1;27015:88;27122:4;27119:1;27112:15;27146:4;27143:1;27136:15;27163:117;27272:1;27269;27262:12;27286:117;27395:1;27392;27385:12;27409:117;27518:1;27515;27508:12;27532:117;27641:1;27638;27631:12;27655:117;27764:1;27761;27754:12;27778:117;27887:1;27884;27877:12;27901:102;27942:6;27993:2;27989:7;27984:2;27977:5;27973:14;27969:28;27959:38;;27901:102;;;:::o;28009:94::-;28042:8;28090:5;28086:2;28082:14;28061:35;;28009:94;;;:::o;28109:174::-;28249:26;28245:1;28237:6;28233:14;28226:50;28109:174;:::o;28289:181::-;28429:33;28425:1;28417:6;28413:14;28406:57;28289:181;:::o;28476:214::-;28616:66;28612:1;28604:6;28600:14;28593:90;28476:214;:::o;28696:225::-;28836:34;28832:1;28824:6;28820:14;28813:58;28905:8;28900:2;28892:6;28888:15;28881:33;28696:225;:::o;28927:221::-;29067:34;29063:1;29055:6;29051:14;29044:58;29136:4;29131:2;29123:6;29119:15;29112:29;28927:221;:::o;29154:182::-;29294:34;29290:1;29282:6;29278:14;29271:58;29154:182;:::o;29342:114::-;;:::o;29462:122::-;29535:24;29553:5;29535:24;:::i;:::-;29528:5;29525:35;29515:63;;29574:1;29571;29564:12;29515:63;29462:122;:::o;29590:116::-;29660:21;29675:5;29660:21;:::i;:::-;29653:5;29650:32;29640:60;;29696:1;29693;29686:12;29640:60;29590:116;:::o;29712:120::-;29784:23;29801:5;29784:23;:::i;:::-;29777:5;29774:34;29764:62;;29822:1;29819;29812:12;29764:62;29712:120;:::o;29838:122::-;29911:24;29929:5;29911:24;:::i;:::-;29904:5;29901:35;29891:63;;29950:1;29947;29940:12;29891:63;29838:122;:::o

Swarm Source

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