ETH Price: $3,088.70 (-0.47%)
Gas: 2 Gwei

Token

Killer Karen: Mom Jeans (KKMJ)
 

Overview

Max Total Supply

179 KKMJ

Holders

20

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
possman.eth
Balance
1 KKMJ
0xeE9A0bbD2cE67fc008fE3f7f6a86F2c6dA5F7a65
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:
KillerKarenMomJeans

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: KillerKarenMomJeans.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

error IncorrectSignature();
error SoldOut();
error WhitelistSoldOut();
error MaxMintTokensExceeded();
error AddressCantBeBurner();
error InvalidMaxSupply();
error HigherMaxSupplyNotAllowed();
error CantReduceCurrentSupply();
error CantWithdrawFunds();

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

    address private _signerAddress;

    string public baseURI;
    uint256 public maxSupply;
    uint256 public whitelistMaxSupply;

    constructor( uint256 newMaxSupply, uint256 newWhitelistMaxSupply, address newSignerAddress, string memory newBaseURI ) ERC721A("Killer Karen: Mom Jeans", "KKMJ") {
        maxSupply = newMaxSupply;
        whitelistMaxSupply = newWhitelistMaxSupply;
        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, bool isWhitelistClaim) external payable {
        if( !_verifySig(msg.sender, msg.value, maxMintable, isWhitelistClaim, signature) ) revert IncorrectSignature();
        if( _numberMinted(msg.sender) + quantity > maxMintable ) revert MaxMintTokensExceeded();

        if( isWhitelistClaim ) {
            if( totalSupply() + quantity > whitelistMaxSupply ) revert WhitelistSoldOut();
            maxSupply += quantity;
        } else {
            if( totalSupply() + quantity > maxSupply ) revert SoldOut();
        }

        _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, bool isWhitelistClaim, bytes memory signature) internal view returns(bool) {
        bytes32 messageHash = keccak256(abi.encodePacked(sender, valueSent, maxMintable, isWhitelistClaim));
        return _signerAddress == messageHash.toEthSignedMessageHash().recover(signature);
    }

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

    // owner functions

    /**
     * @dev Aidrop tokens to given addresses (onlyOwner)
     */
    function airdrop(address[] calldata receivers, uint256[] calldata quantities, bool isWhitelistClaim ) external onlyOwner {

        uint256 totalQuantity = 0;

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

        if( isWhitelistClaim ) {
            if( totalSupply() + totalQuantity > whitelistMaxSupply ) revert WhitelistSoldOut();
            maxSupply += totalQuantity;
        } else {
            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 Burn/reduce the max whitelist supply (onlyOwner)
     */
    function burnWhitelistSupply(uint256 newWhitelistMaxSupply) external onlyOwner {
        if( newWhitelistMaxSupply <= 0 ) revert InvalidMaxSupply();
        if( newWhitelistMaxSupply >= whitelistMaxSupply ) revert HigherMaxSupplyNotAllowed();
        if( newWhitelistMaxSupply < totalSupply() ) revert CantReduceCurrentSupply();
        
        whitelistMaxSupply = newWhitelistMaxSupply;
    }

    /**
     * @dev Burn/reduce the max supply (onlyOwner)
     */
    function burnSupply(uint256 newMaxSupply) external onlyOwner {
        if( newMaxSupply <= 0 ) revert InvalidMaxSupply();
        if( newMaxSupply >= maxSupply ) revert HigherMaxSupplyNotAllowed();
        if( newMaxSupply < totalSupply() ) revert CantReduceCurrentSupply();
        
        maxSupply = newMaxSupply;
    }

    /**
     * @dev Withdraw all funds (onlyOwner)
     */
    function withdraw() 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":"uint256","name":"newWhitelistMaxSupply","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":"CantReduceCurrentSupply","type":"error"},{"inputs":[],"name":"CantWithdrawFunds","type":"error"},{"inputs":[],"name":"HigherMaxSupplyNotAllowed","type":"error"},{"inputs":[],"name":"IncorrectSignature","type":"error"},{"inputs":[],"name":"InvalidMaxSupply","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"},{"inputs":[],"name":"WhitelistSoldOut","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":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"internalType":"bool","name":"isWhitelistClaim","type":"bool"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"burnSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newWhitelistMaxSupply","type":"uint256"}],"name":"burnWhitelistSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"internalType":"bool","name":"isWhitelistClaim","type":"bool"}],"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":"whitelistMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003b8038038062003b808339818101604052810190620000379190620003ae565b6040518060400160405280601781526020017f4b696c6c6572204b6172656e3a204d6f6d204a65616e730000000000000000008152506040518060400160405280600481526020017f4b4b4d4a000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb92919062000252565b508060039080519060200190620000d492919062000252565b50620000e56200017f60201b60201c565b60008190555050506200010d620001016200018460201b60201c565b6200018c60201b60201c565b83600b8190555082600c8190555080600a90805190602001906200013392919062000252565b5081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000635565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002609062000512565b90600052602060002090601f016020900481019282620002845760008555620002d0565b82601f106200029f57805160ff1916838001178555620002d0565b82800160010185558215620002d0579182015b82811115620002cf578251825591602001919060010190620002b2565b5b509050620002df9190620002e3565b5090565b5b80821115620002fe576000816000905550600101620002e4565b5090565b600062000319620003138462000468565b6200043f565b905082815260208101848484011115620003385762000337620005e1565b5b62000345848285620004dc565b509392505050565b6000815190506200035e8162000601565b92915050565b600082601f8301126200037c576200037b620005dc565b5b81516200038e84826020860162000302565b91505092915050565b600081519050620003a8816200061b565b92915050565b60008060008060808587031215620003cb57620003ca620005eb565b5b6000620003db8782880162000397565b9450506020620003ee8782880162000397565b935050604062000401878288016200034d565b925050606085015167ffffffffffffffff811115620004255762000424620005e6565b5b620004338782880162000364565b91505092959194509250565b60006200044b6200045e565b905062000459828262000548565b919050565b6000604051905090565b600067ffffffffffffffff821115620004865762000485620005ad565b5b6200049182620005f0565b9050602081019050919050565b6000620004ab82620004b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620004fc578082015181840152602081019050620004df565b838111156200050c576000848401525b50505050565b600060028204905060018216806200052b57607f821691505b602082108114156200054257620005416200057e565b5b50919050565b6200055382620005f0565b810181811067ffffffffffffffff82111715620005755762000574620005ad565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200060c816200049e565b81146200061857600080fd5b50565b6200062681620004d2565b81146200063257600080fd5b50565b61353b80620006456000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063d595c3311161008a578063dbecbf5911610064578063dbecbf59146105e2578063dc33e681146105fe578063e985e9c51461063b578063f2fde38b14610678576101b7565b8063d595c33114610565578063d5abeb011461058e578063da98a974146105b9576101b7565b806395d89b41116100c657806395d89b41146104ab578063a22cb465146104d6578063b88d4fde146104ff578063c87b56dd14610528576101b7565b806370a082311461042c578063715018a6146104695780638da5cb5b14610480576101b7565b80633b7c18e01161015957806355f804b31161013357806355f804b31461037057806358f46285146103995780636352211e146103c45780636c0360eb14610401576101b7565b80633b7c18e0146103075780633ccfd60b1461033057806342842e0e14610347576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806318160ddd146102b357806323b872dd146102de576101b7565b806301ffc9a7146101bc578063046dc166146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612948565b6106a1565b6040516101f09190612df3565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b91906126f0565b610733565b005b34801561022e57600080fd5b506102376107e6565b6040516102449190612e53565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612a73565b610878565b6040516102819190612d8c565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612873565b6108f7565b005b3480156102bf57600080fd5b506102c8610a3b565b6040516102d59190612f15565b60405180910390f35b3480156102ea57600080fd5b506103056004803603810190610300919061275d565b610a52565b005b34801561031357600080fd5b5061032e60048036038101906103299190612a73565b610d77565b005b34801561033c57600080fd5b50610345610e3f565b005b34801561035357600080fd5b5061036e6004803603810190610369919061275d565b610eed565b005b34801561037c57600080fd5b5061039760048036038101906103929190612a2a565b610f0d565b005b3480156103a557600080fd5b506103ae610f2f565b6040516103bb9190612f15565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612a73565b610f35565b6040516103f89190612d8c565b60405180910390f35b34801561040d57600080fd5b50610416610f47565b6040516104239190612e53565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e91906126f0565b610fd5565b6040516104609190612f15565b60405180910390f35b34801561047557600080fd5b5061047e61108e565b005b34801561048c57600080fd5b506104956110a2565b6040516104a29190612d8c565b60405180910390f35b3480156104b757600080fd5b506104c06110cc565b6040516104cd9190612e53565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612833565b61115e565b005b34801561050b57600080fd5b50610526600480360381019061052191906127b0565b611269565b005b34801561053457600080fd5b5061054f600480360381019061054a9190612a73565b6112dc565b60405161055c9190612e53565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612a73565b61137b565b005b34801561059a57600080fd5b506105a3611443565b6040516105b09190612f15565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db91906128b3565b611449565b005b6105fc60048036038101906105f791906129a2565b6115d0565b005b34801561060a57600080fd5b50610625600480360381019061062091906126f0565b611776565b6040516106329190612f15565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d919061271d565b611788565b60405161066f9190612df3565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a91906126f0565b61181c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61073b6118a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107a2576040517f746ef87300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600280546107f590613128565b80601f016020809104026020016040519081016040528092919081815260200182805461082190613128565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b60006108838261191e565b6108b9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090282610f35565b90508073ffffffffffffffffffffffffffffffffffffffff1661092361197d565b73ffffffffffffffffffffffffffffffffffffffff16146109865761094f8161094a61197d565b611788565b610985576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a45611985565b6001546000540303905090565b6000610a5d8261198a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ad084611a58565b91509150610ae68187610ae161197d565b611a7f565b610b3257610afb86610af661197d565b611788565b610b31576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b99576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ba68686866001611ac3565b8015610bb157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c7f85610c5b888887611ac9565b7c020000000000000000000000000000000000000000000000000000000017611af1565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d07576000600185019050600060046000838152602001908152602001600020541415610d05576000548114610d04578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d6f8686866001611b1c565b505050505050565b610d7f6118a0565b60008111610db9576040517f19bcc14c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c548110610df4576040517fccf5b9e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dfc610a3b565b811015610e35576040517faa9ff3de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c8190555050565b610e476118a0565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e6d90612d77565b60006040518083038185875af1925050503d8060008114610eaa576040519150601f19603f3d011682016040523d82523d6000602084013e610eaf565b606091505b5050905080610eea576040517fc9ae8eaa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b610f0883838360405180602001604052806000815250611269565b505050565b610f156118a0565b80600a9080519060200190610f2b929190612402565b5050565b600c5481565b6000610f408261198a565b9050919050565b600a8054610f5490613128565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8090613128565b8015610fcd5780601f10610fa257610100808354040283529160200191610fcd565b820191906000526020600020905b815481529060010190602001808311610fb057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110966118a0565b6110a06000611b22565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110db90613128565b80601f016020809104026020016040519081016040528092919081815260200182805461110790613128565b80156111545780601f1061112957610100808354040283529160200191611154565b820191906000526020600020905b81548152906001019060200180831161113757829003601f168201915b5050505050905090565b806007600061116b61197d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661121861197d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161125d9190612df3565b60405180910390a35050565b611274848484610a52565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112d65761129f84848484611be8565b6112d5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112e78261191e565b61131d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611327611d48565b90506000815114156113485760405180602001604052806000815250611373565b8061135284611dda565b604051602001611363929190612d2d565b6040516020818303038152906040525b915050919050565b6113836118a0565b600081116113bd576040517f19bcc14c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b5481106113f8576040517fccf5b9e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611400610a3b565b811015611439576040517faa9ff3de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b8190555050565b600b5481565b6114516118a0565b6000805b8484905081101561149a57848482818110611473576114726132bd565b5b90506020020135826114859190613005565b915080806114929061318b565b915050611455565b50811561150d57600c54816114ad610a3b565b6114b79190613005565b11156114ef576040517fbce64a8500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b60008282546115019190613005565b9250508190555061155c565b600b5481611519610a3b565b6115239190613005565b111561155b576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b60005b868690508110156115c7576115b48787838181106115805761157f6132bd565b5b905060200201602081019061159591906126f0565b8686848181106115a8576115a76132bd565b5b90506020020135611e2a565b80806115bf9061318b565b91505061155f565b50505050505050565b6116213334848489898080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611fe7565b611657576040517fc1606c2f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818361166233612090565b61166c9190613005565b11156116a4576040517fd58a411000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b801561171657600c54836116b6610a3b565b6116c09190613005565b11156116f8576040517fbce64a8500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600b600082825461170a9190613005565b92505081905550611765565b600b5483611722610a3b565b61172c9190613005565b1115611764576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b61176f3384611e2a565b5050505050565b600061178182612090565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118246118a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90612eb5565b60405180910390fd5b61189d81611b22565b50565b6118a86120e7565b73ffffffffffffffffffffffffffffffffffffffff166118c66110a2565b73ffffffffffffffffffffffffffffffffffffffff161461191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390612ef5565b60405180910390fd5b565b600081611929611985565b11158015611938575060005482105b8015611976575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611999611985565b11611a2157600054811015611a205760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a1e575b6000811415611a145760046000836001900393508381526020019081526020016000205490506119e9565b8092505050611a53565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ae08686846120ef565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c0e61197d565b8786866040518563ffffffff1660e01b8152600401611c309493929190612da7565b602060405180830381600087803b158015611c4a57600080fd5b505af1925050508015611c7b57506040513d601f19601f82011682018060405250810190611c789190612975565b60015b611cf5573d8060008114611cab576040519150601f19603f3d011682016040523d82523d6000602084013e611cb0565b606091505b50600081511415611ced576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d5790613128565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8390613128565b8015611dd05780601f10611da557610100808354040283529160200191611dd0565b820191906000526020600020905b815481529060010190602001808311611db357829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611e1657600183039250600a81066030018353600a8104905080611e1157611e16565b611deb565b508181036020830392508083525050919050565b6000805490506000821415611e6b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e786000848385611ac3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611eef83611ee06000866000611ac9565b611ee9856120f8565b17611af1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f9057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f55565b506000821415611fcc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fe26000848385611b1c565b505050565b600080868686866040516020016120019493929190612cdf565b6040516020818303038152906040528051906020012090506120348361202683612108565b61213890919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161491505095945050505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b60008160405160200161211b9190612d51565b604051602081830303815290604052805190602001209050919050565b6000806000612147858561215f565b91509150612154816121b1565b819250505092915050565b6000806041835114156121a15760008060006020860151925060408601519150606086015160001a90506121958782858561231f565b945094505050506121aa565b60006002915091505b9250929050565b600060048111156121c5576121c461325f565b5b8160048111156121d8576121d761325f565b5b14156121e35761231c565b600160048111156121f7576121f661325f565b5b81600481111561220a5761220961325f565b5b141561224b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224290612e75565b60405180910390fd5b6002600481111561225f5761225e61325f565b5b8160048111156122725761227161325f565b5b14156122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa90612e95565b60405180910390fd5b600360048111156122c7576122c661325f565b5b8160048111156122da576122d961325f565b5b141561231b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231290612ed5565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561235a5760006003915091506123f9565b60006001878787876040516000815260200160405260405161237f9493929190612e0e565b6020604051602081039080840390855afa1580156123a1573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123f0576000600192509250506123f9565b80600092509250505b94509492505050565b82805461240e90613128565b90600052602060002090601f0160209004810192826124305760008555612477565b82601f1061244957805160ff1916838001178555612477565b82800160010185558215612477579182015b8281111561247657825182559160200191906001019061245b565b5b5090506124849190612488565b5090565b5b808211156124a1576000816000905550600101612489565b5090565b60006124b86124b384612f55565b612f30565b9050828152602081018484840111156124d4576124d361332a565b5b6124df8482856130e6565b509392505050565b60006124fa6124f584612f86565b612f30565b9050828152602081018484840111156125165761251561332a565b5b6125218482856130e6565b509392505050565b600081359050612538816134a9565b92915050565b60008083601f84011261255457612553613320565b5b8235905067ffffffffffffffff8111156125715761257061331b565b5b60208301915083602082028301111561258d5761258c613325565b5b9250929050565b60008083601f8401126125aa576125a9613320565b5b8235905067ffffffffffffffff8111156125c7576125c661331b565b5b6020830191508360208202830111156125e3576125e2613325565b5b9250929050565b6000813590506125f9816134c0565b92915050565b60008135905061260e816134d7565b92915050565b600081519050612623816134d7565b92915050565b60008083601f84011261263f5761263e613320565b5b8235905067ffffffffffffffff81111561265c5761265b61331b565b5b60208301915083600182028301111561267857612677613325565b5b9250929050565b600082601f83011261269457612693613320565b5b81356126a48482602086016124a5565b91505092915050565b600082601f8301126126c2576126c1613320565b5b81356126d28482602086016124e7565b91505092915050565b6000813590506126ea816134ee565b92915050565b60006020828403121561270657612705613334565b5b600061271484828501612529565b91505092915050565b6000806040838503121561273457612733613334565b5b600061274285828601612529565b925050602061275385828601612529565b9150509250929050565b60008060006060848603121561277657612775613334565b5b600061278486828701612529565b935050602061279586828701612529565b92505060406127a6868287016126db565b9150509250925092565b600080600080608085870312156127ca576127c9613334565b5b60006127d887828801612529565b94505060206127e987828801612529565b93505060406127fa878288016126db565b925050606085013567ffffffffffffffff81111561281b5761281a61332f565b5b6128278782880161267f565b91505092959194509250565b6000806040838503121561284a57612849613334565b5b600061285885828601612529565b9250506020612869858286016125ea565b9150509250929050565b6000806040838503121561288a57612889613334565b5b600061289885828601612529565b92505060206128a9858286016126db565b9150509250929050565b6000806000806000606086880312156128cf576128ce613334565b5b600086013567ffffffffffffffff8111156128ed576128ec61332f565b5b6128f98882890161253e565b9550955050602086013567ffffffffffffffff81111561291c5761291b61332f565b5b61292888828901612594565b9350935050604061293b888289016125ea565b9150509295509295909350565b60006020828403121561295e5761295d613334565b5b600061296c848285016125ff565b91505092915050565b60006020828403121561298b5761298a613334565b5b600061299984828501612614565b91505092915050565b6000806000806000608086880312156129be576129bd613334565b5b600086013567ffffffffffffffff8111156129dc576129db61332f565b5b6129e888828901612629565b955095505060206129fb888289016126db565b9350506040612a0c888289016126db565b9250506060612a1d888289016125ea565b9150509295509295909350565b600060208284031215612a4057612a3f613334565b5b600082013567ffffffffffffffff811115612a5e57612a5d61332f565b5b612a6a848285016126ad565b91505092915050565b600060208284031215612a8957612a88613334565b5b6000612a97848285016126db565b91505092915050565b612aa98161305b565b82525050565b612ac0612abb8261305b565b6131d4565b82525050565b612acf8161306d565b82525050565b612ae6612ae18261306d565b6131e6565b82525050565b612af581613079565b82525050565b612b0c612b0782613079565b6131f8565b82525050565b6000612b1d82612fb7565b612b278185612fcd565b9350612b378185602086016130f5565b612b4081613339565b840191505092915050565b6000612b5682612fc2565b612b608185612fe9565b9350612b708185602086016130f5565b612b7981613339565b840191505092915050565b6000612b8f82612fc2565b612b998185612ffa565b9350612ba98185602086016130f5565b80840191505092915050565b6000612bc2601883612fe9565b9150612bcd82613364565b602082019050919050565b6000612be5601f83612fe9565b9150612bf08261338d565b602082019050919050565b6000612c08601c83612ffa565b9150612c13826133b6565b601c82019050919050565b6000612c2b602683612fe9565b9150612c36826133df565b604082019050919050565b6000612c4e602283612fe9565b9150612c598261342e565b604082019050919050565b6000612c71602083612fe9565b9150612c7c8261347d565b602082019050919050565b6000612c94600083612fde565b9150612c9f826134a6565b600082019050919050565b612cb3816130cf565b82525050565b612cca612cc5826130cf565b613214565b82525050565b612cd9816130d9565b82525050565b6000612ceb8287612aaf565b601482019150612cfb8286612cb9565b602082019150612d0b8285612cb9565b602082019150612d1b8284612ad5565b60018201915081905095945050505050565b6000612d398285612b84565b9150612d458284612b84565b91508190509392505050565b6000612d5c82612bfb565b9150612d688284612afb565b60208201915081905092915050565b6000612d8282612c87565b9150819050919050565b6000602082019050612da16000830184612aa0565b92915050565b6000608082019050612dbc6000830187612aa0565b612dc96020830186612aa0565b612dd66040830185612caa565b8181036060830152612de88184612b12565b905095945050505050565b6000602082019050612e086000830184612ac6565b92915050565b6000608082019050612e236000830187612aec565b612e306020830186612cd0565b612e3d6040830185612aec565b612e4a6060830184612aec565b95945050505050565b60006020820190508181036000830152612e6d8184612b4b565b905092915050565b60006020820190508181036000830152612e8e81612bb5565b9050919050565b60006020820190508181036000830152612eae81612bd8565b9050919050565b60006020820190508181036000830152612ece81612c1e565b9050919050565b60006020820190508181036000830152612eee81612c41565b9050919050565b60006020820190508181036000830152612f0e81612c64565b9050919050565b6000602082019050612f2a6000830184612caa565b92915050565b6000612f3a612f4b565b9050612f46828261315a565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7057612f6f6132ec565b5b612f7982613339565b9050602081019050919050565b600067ffffffffffffffff821115612fa157612fa06132ec565b5b612faa82613339565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613010826130cf565b915061301b836130cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130505761304f613230565b5b828201905092915050565b6000613066826130af565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156131135780820151818401526020810190506130f8565b83811115613122576000848401525b50505050565b6000600282049050600182168061314057607f821691505b602082108114156131545761315361328e565b5b50919050565b61316382613339565b810181811067ffffffffffffffff82111715613182576131816132ec565b5b80604052505050565b6000613196826130cf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131c9576131c8613230565b5b600182019050919050565b60006131df82613202565b9050919050565b60006131f18261321e565b9050919050565b6000819050919050565b600061320d82613357565b9050919050565b6000819050919050565b60006132298261334a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f81b9050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6134b28161305b565b81146134bd57600080fd5b50565b6134c98161306d565b81146134d457600080fd5b50565b6134e081613083565b81146134eb57600080fd5b50565b6134f7816130cf565b811461350257600080fd5b5056fea26469706673582212200b4412bc11a3a661d60f040381b70330a8c3d41b14f22d07bcfe4c814316224f64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000001710000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e6b696c6c65726b6172656e2e696f2f6d657461646174612f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063d595c3311161008a578063dbecbf5911610064578063dbecbf59146105e2578063dc33e681146105fe578063e985e9c51461063b578063f2fde38b14610678576101b7565b8063d595c33114610565578063d5abeb011461058e578063da98a974146105b9576101b7565b806395d89b41116100c657806395d89b41146104ab578063a22cb465146104d6578063b88d4fde146104ff578063c87b56dd14610528576101b7565b806370a082311461042c578063715018a6146104695780638da5cb5b14610480576101b7565b80633b7c18e01161015957806355f804b31161013357806355f804b31461037057806358f46285146103995780636352211e146103c45780636c0360eb14610401576101b7565b80633b7c18e0146103075780633ccfd60b1461033057806342842e0e14610347576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806318160ddd146102b357806323b872dd146102de576101b7565b806301ffc9a7146101bc578063046dc166146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612948565b6106a1565b6040516101f09190612df3565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b91906126f0565b610733565b005b34801561022e57600080fd5b506102376107e6565b6040516102449190612e53565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612a73565b610878565b6040516102819190612d8c565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612873565b6108f7565b005b3480156102bf57600080fd5b506102c8610a3b565b6040516102d59190612f15565b60405180910390f35b3480156102ea57600080fd5b506103056004803603810190610300919061275d565b610a52565b005b34801561031357600080fd5b5061032e60048036038101906103299190612a73565b610d77565b005b34801561033c57600080fd5b50610345610e3f565b005b34801561035357600080fd5b5061036e6004803603810190610369919061275d565b610eed565b005b34801561037c57600080fd5b5061039760048036038101906103929190612a2a565b610f0d565b005b3480156103a557600080fd5b506103ae610f2f565b6040516103bb9190612f15565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612a73565b610f35565b6040516103f89190612d8c565b60405180910390f35b34801561040d57600080fd5b50610416610f47565b6040516104239190612e53565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e91906126f0565b610fd5565b6040516104609190612f15565b60405180910390f35b34801561047557600080fd5b5061047e61108e565b005b34801561048c57600080fd5b506104956110a2565b6040516104a29190612d8c565b60405180910390f35b3480156104b757600080fd5b506104c06110cc565b6040516104cd9190612e53565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612833565b61115e565b005b34801561050b57600080fd5b50610526600480360381019061052191906127b0565b611269565b005b34801561053457600080fd5b5061054f600480360381019061054a9190612a73565b6112dc565b60405161055c9190612e53565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612a73565b61137b565b005b34801561059a57600080fd5b506105a3611443565b6040516105b09190612f15565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db91906128b3565b611449565b005b6105fc60048036038101906105f791906129a2565b6115d0565b005b34801561060a57600080fd5b50610625600480360381019061062091906126f0565b611776565b6040516106329190612f15565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d919061271d565b611788565b60405161066f9190612df3565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a91906126f0565b61181c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61073b6118a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107a2576040517f746ef87300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600280546107f590613128565b80601f016020809104026020016040519081016040528092919081815260200182805461082190613128565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b60006108838261191e565b6108b9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090282610f35565b90508073ffffffffffffffffffffffffffffffffffffffff1661092361197d565b73ffffffffffffffffffffffffffffffffffffffff16146109865761094f8161094a61197d565b611788565b610985576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a45611985565b6001546000540303905090565b6000610a5d8261198a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ad084611a58565b91509150610ae68187610ae161197d565b611a7f565b610b3257610afb86610af661197d565b611788565b610b31576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b99576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ba68686866001611ac3565b8015610bb157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c7f85610c5b888887611ac9565b7c020000000000000000000000000000000000000000000000000000000017611af1565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d07576000600185019050600060046000838152602001908152602001600020541415610d05576000548114610d04578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d6f8686866001611b1c565b505050505050565b610d7f6118a0565b60008111610db9576040517f19bcc14c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c548110610df4576040517fccf5b9e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dfc610a3b565b811015610e35576040517faa9ff3de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c8190555050565b610e476118a0565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e6d90612d77565b60006040518083038185875af1925050503d8060008114610eaa576040519150601f19603f3d011682016040523d82523d6000602084013e610eaf565b606091505b5050905080610eea576040517fc9ae8eaa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b610f0883838360405180602001604052806000815250611269565b505050565b610f156118a0565b80600a9080519060200190610f2b929190612402565b5050565b600c5481565b6000610f408261198a565b9050919050565b600a8054610f5490613128565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8090613128565b8015610fcd5780601f10610fa257610100808354040283529160200191610fcd565b820191906000526020600020905b815481529060010190602001808311610fb057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110966118a0565b6110a06000611b22565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110db90613128565b80601f016020809104026020016040519081016040528092919081815260200182805461110790613128565b80156111545780601f1061112957610100808354040283529160200191611154565b820191906000526020600020905b81548152906001019060200180831161113757829003601f168201915b5050505050905090565b806007600061116b61197d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661121861197d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161125d9190612df3565b60405180910390a35050565b611274848484610a52565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112d65761129f84848484611be8565b6112d5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112e78261191e565b61131d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611327611d48565b90506000815114156113485760405180602001604052806000815250611373565b8061135284611dda565b604051602001611363929190612d2d565b6040516020818303038152906040525b915050919050565b6113836118a0565b600081116113bd576040517f19bcc14c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b5481106113f8576040517fccf5b9e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611400610a3b565b811015611439576040517faa9ff3de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b8190555050565b600b5481565b6114516118a0565b6000805b8484905081101561149a57848482818110611473576114726132bd565b5b90506020020135826114859190613005565b915080806114929061318b565b915050611455565b50811561150d57600c54816114ad610a3b565b6114b79190613005565b11156114ef576040517fbce64a8500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b60008282546115019190613005565b9250508190555061155c565b600b5481611519610a3b565b6115239190613005565b111561155b576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b60005b868690508110156115c7576115b48787838181106115805761157f6132bd565b5b905060200201602081019061159591906126f0565b8686848181106115a8576115a76132bd565b5b90506020020135611e2a565b80806115bf9061318b565b91505061155f565b50505050505050565b6116213334848489898080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611fe7565b611657576040517fc1606c2f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818361166233612090565b61166c9190613005565b11156116a4576040517fd58a411000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b801561171657600c54836116b6610a3b565b6116c09190613005565b11156116f8576040517fbce64a8500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600b600082825461170a9190613005565b92505081905550611765565b600b5483611722610a3b565b61172c9190613005565b1115611764576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b61176f3384611e2a565b5050505050565b600061178182612090565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118246118a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90612eb5565b60405180910390fd5b61189d81611b22565b50565b6118a86120e7565b73ffffffffffffffffffffffffffffffffffffffff166118c66110a2565b73ffffffffffffffffffffffffffffffffffffffff161461191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390612ef5565b60405180910390fd5b565b600081611929611985565b11158015611938575060005482105b8015611976575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611999611985565b11611a2157600054811015611a205760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a1e575b6000811415611a145760046000836001900393508381526020019081526020016000205490506119e9565b8092505050611a53565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ae08686846120ef565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c0e61197d565b8786866040518563ffffffff1660e01b8152600401611c309493929190612da7565b602060405180830381600087803b158015611c4a57600080fd5b505af1925050508015611c7b57506040513d601f19601f82011682018060405250810190611c789190612975565b60015b611cf5573d8060008114611cab576040519150601f19603f3d011682016040523d82523d6000602084013e611cb0565b606091505b50600081511415611ced576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d5790613128565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8390613128565b8015611dd05780601f10611da557610100808354040283529160200191611dd0565b820191906000526020600020905b815481529060010190602001808311611db357829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611e1657600183039250600a81066030018353600a8104905080611e1157611e16565b611deb565b508181036020830392508083525050919050565b6000805490506000821415611e6b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e786000848385611ac3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611eef83611ee06000866000611ac9565b611ee9856120f8565b17611af1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f9057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f55565b506000821415611fcc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fe26000848385611b1c565b505050565b600080868686866040516020016120019493929190612cdf565b6040516020818303038152906040528051906020012090506120348361202683612108565b61213890919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161491505095945050505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b60008160405160200161211b9190612d51565b604051602081830303815290604052805190602001209050919050565b6000806000612147858561215f565b91509150612154816121b1565b819250505092915050565b6000806041835114156121a15760008060006020860151925060408601519150606086015160001a90506121958782858561231f565b945094505050506121aa565b60006002915091505b9250929050565b600060048111156121c5576121c461325f565b5b8160048111156121d8576121d761325f565b5b14156121e35761231c565b600160048111156121f7576121f661325f565b5b81600481111561220a5761220961325f565b5b141561224b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224290612e75565b60405180910390fd5b6002600481111561225f5761225e61325f565b5b8160048111156122725761227161325f565b5b14156122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa90612e95565b60405180910390fd5b600360048111156122c7576122c661325f565b5b8160048111156122da576122d961325f565b5b141561231b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231290612ed5565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561235a5760006003915091506123f9565b60006001878787876040516000815260200160405260405161237f9493929190612e0e565b6020604051602081039080840390855afa1580156123a1573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123f0576000600192509250506123f9565b80600092509250505b94509492505050565b82805461240e90613128565b90600052602060002090601f0160209004810192826124305760008555612477565b82601f1061244957805160ff1916838001178555612477565b82800160010185558215612477579182015b8281111561247657825182559160200191906001019061245b565b5b5090506124849190612488565b5090565b5b808211156124a1576000816000905550600101612489565b5090565b60006124b86124b384612f55565b612f30565b9050828152602081018484840111156124d4576124d361332a565b5b6124df8482856130e6565b509392505050565b60006124fa6124f584612f86565b612f30565b9050828152602081018484840111156125165761251561332a565b5b6125218482856130e6565b509392505050565b600081359050612538816134a9565b92915050565b60008083601f84011261255457612553613320565b5b8235905067ffffffffffffffff8111156125715761257061331b565b5b60208301915083602082028301111561258d5761258c613325565b5b9250929050565b60008083601f8401126125aa576125a9613320565b5b8235905067ffffffffffffffff8111156125c7576125c661331b565b5b6020830191508360208202830111156125e3576125e2613325565b5b9250929050565b6000813590506125f9816134c0565b92915050565b60008135905061260e816134d7565b92915050565b600081519050612623816134d7565b92915050565b60008083601f84011261263f5761263e613320565b5b8235905067ffffffffffffffff81111561265c5761265b61331b565b5b60208301915083600182028301111561267857612677613325565b5b9250929050565b600082601f83011261269457612693613320565b5b81356126a48482602086016124a5565b91505092915050565b600082601f8301126126c2576126c1613320565b5b81356126d28482602086016124e7565b91505092915050565b6000813590506126ea816134ee565b92915050565b60006020828403121561270657612705613334565b5b600061271484828501612529565b91505092915050565b6000806040838503121561273457612733613334565b5b600061274285828601612529565b925050602061275385828601612529565b9150509250929050565b60008060006060848603121561277657612775613334565b5b600061278486828701612529565b935050602061279586828701612529565b92505060406127a6868287016126db565b9150509250925092565b600080600080608085870312156127ca576127c9613334565b5b60006127d887828801612529565b94505060206127e987828801612529565b93505060406127fa878288016126db565b925050606085013567ffffffffffffffff81111561281b5761281a61332f565b5b6128278782880161267f565b91505092959194509250565b6000806040838503121561284a57612849613334565b5b600061285885828601612529565b9250506020612869858286016125ea565b9150509250929050565b6000806040838503121561288a57612889613334565b5b600061289885828601612529565b92505060206128a9858286016126db565b9150509250929050565b6000806000806000606086880312156128cf576128ce613334565b5b600086013567ffffffffffffffff8111156128ed576128ec61332f565b5b6128f98882890161253e565b9550955050602086013567ffffffffffffffff81111561291c5761291b61332f565b5b61292888828901612594565b9350935050604061293b888289016125ea565b9150509295509295909350565b60006020828403121561295e5761295d613334565b5b600061296c848285016125ff565b91505092915050565b60006020828403121561298b5761298a613334565b5b600061299984828501612614565b91505092915050565b6000806000806000608086880312156129be576129bd613334565b5b600086013567ffffffffffffffff8111156129dc576129db61332f565b5b6129e888828901612629565b955095505060206129fb888289016126db565b9350506040612a0c888289016126db565b9250506060612a1d888289016125ea565b9150509295509295909350565b600060208284031215612a4057612a3f613334565b5b600082013567ffffffffffffffff811115612a5e57612a5d61332f565b5b612a6a848285016126ad565b91505092915050565b600060208284031215612a8957612a88613334565b5b6000612a97848285016126db565b91505092915050565b612aa98161305b565b82525050565b612ac0612abb8261305b565b6131d4565b82525050565b612acf8161306d565b82525050565b612ae6612ae18261306d565b6131e6565b82525050565b612af581613079565b82525050565b612b0c612b0782613079565b6131f8565b82525050565b6000612b1d82612fb7565b612b278185612fcd565b9350612b378185602086016130f5565b612b4081613339565b840191505092915050565b6000612b5682612fc2565b612b608185612fe9565b9350612b708185602086016130f5565b612b7981613339565b840191505092915050565b6000612b8f82612fc2565b612b998185612ffa565b9350612ba98185602086016130f5565b80840191505092915050565b6000612bc2601883612fe9565b9150612bcd82613364565b602082019050919050565b6000612be5601f83612fe9565b9150612bf08261338d565b602082019050919050565b6000612c08601c83612ffa565b9150612c13826133b6565b601c82019050919050565b6000612c2b602683612fe9565b9150612c36826133df565b604082019050919050565b6000612c4e602283612fe9565b9150612c598261342e565b604082019050919050565b6000612c71602083612fe9565b9150612c7c8261347d565b602082019050919050565b6000612c94600083612fde565b9150612c9f826134a6565b600082019050919050565b612cb3816130cf565b82525050565b612cca612cc5826130cf565b613214565b82525050565b612cd9816130d9565b82525050565b6000612ceb8287612aaf565b601482019150612cfb8286612cb9565b602082019150612d0b8285612cb9565b602082019150612d1b8284612ad5565b60018201915081905095945050505050565b6000612d398285612b84565b9150612d458284612b84565b91508190509392505050565b6000612d5c82612bfb565b9150612d688284612afb565b60208201915081905092915050565b6000612d8282612c87565b9150819050919050565b6000602082019050612da16000830184612aa0565b92915050565b6000608082019050612dbc6000830187612aa0565b612dc96020830186612aa0565b612dd66040830185612caa565b8181036060830152612de88184612b12565b905095945050505050565b6000602082019050612e086000830184612ac6565b92915050565b6000608082019050612e236000830187612aec565b612e306020830186612cd0565b612e3d6040830185612aec565b612e4a6060830184612aec565b95945050505050565b60006020820190508181036000830152612e6d8184612b4b565b905092915050565b60006020820190508181036000830152612e8e81612bb5565b9050919050565b60006020820190508181036000830152612eae81612bd8565b9050919050565b60006020820190508181036000830152612ece81612c1e565b9050919050565b60006020820190508181036000830152612eee81612c41565b9050919050565b60006020820190508181036000830152612f0e81612c64565b9050919050565b6000602082019050612f2a6000830184612caa565b92915050565b6000612f3a612f4b565b9050612f46828261315a565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7057612f6f6132ec565b5b612f7982613339565b9050602081019050919050565b600067ffffffffffffffff821115612fa157612fa06132ec565b5b612faa82613339565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613010826130cf565b915061301b836130cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130505761304f613230565b5b828201905092915050565b6000613066826130af565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156131135780820151818401526020810190506130f8565b83811115613122576000848401525b50505050565b6000600282049050600182168061314057607f821691505b602082108114156131545761315361328e565b5b50919050565b61316382613339565b810181811067ffffffffffffffff82111715613182576131816132ec565b5b80604052505050565b6000613196826130cf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131c9576131c8613230565b5b600182019050919050565b60006131df82613202565b9050919050565b60006131f18261321e565b9050919050565b6000819050919050565b600061320d82613357565b9050919050565b6000819050919050565b60006132298261334a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f81b9050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6134b28161305b565b81146134bd57600080fd5b50565b6134c98161306d565b81146134d457600080fd5b50565b6134e081613083565b81146134eb57600080fd5b50565b6134f7816130cf565b811461350257600080fd5b5056fea26469706673582212200b4412bc11a3a661d60f040381b70330a8c3d41b14f22d07bcfe4c814316224f64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000001710000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e6b696c6c65726b6172656e2e696f2f6d657461646174612f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : newMaxSupply (uint256): 3000
Arg [1] : newWhitelistMaxSupply (uint256): 369
Arg [2] : newSignerAddress (address): 0x6B2341bf6d8E7f914a1aFEe9fBDC7449f875f61f
Arg [3] : newBaseURI (string): https://api.killerkaren.io/metadata/

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000171
Arg [2] : 0000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [5] : 68747470733a2f2f6170692e6b696c6c65726b6172656e2e696f2f6d65746164
Arg [6] : 6174612f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

415:4416:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9112:630:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3336:196:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9996:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16309:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15769:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5851:317;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19852:2756;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3795:395:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4651:175;;;;;;;;;;;;;:::i;:::-;;22699:179:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3610:102:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;594:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11348:150:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;537:21:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7002:230:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:5;;;;;;;;;;;;;:::i;:::-;;1194:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10165:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16850:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23459:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10368:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4263:323:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;564:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2576:670;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1135:641;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1857:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17231:162:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9112:630:2;9197:4;9530:10;9515:25;;:11;:25;;;;:101;;;;9606:10;9591:25;;:11;:25;;;;9515:101;:177;;;;9682:10;9667:25;;:11;:25;;;;9515:177;9496:196;;9112:630;;;:::o;3336:196:4:-;1087:13:5;:11;:13::i;:::-;3449:1:4::1;3421:30;;:16;:30;;;3417:65;;;3461:21;;;;;;;;;;;;;;3417:65;3509:16;3492:14;;:33;;;;;;;;;;;;;;;;;;3336:196:::0;:::o;9996:98:2:-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;16309:214::-;16385:7;16409:16;16417:7;16409;:16::i;:::-;16404:64;;16434:34;;;;;;;;;;;;;;16404:64;16486:15;:24;16502:7;16486:24;;;;;;;;;;;:30;;;;;;;;;;;;16479:37;;16309:214;;;:::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;;15919:5;15896:28;;:19;:17;:19::i;:::-;:28;;;15892:172;;15943:44;15960:5;15967:19;:17;:19::i;:::-;15943:16;:44::i;:::-;15938:126;;16014:35;;;;;;;;;;;;;;15938:126;15892:172;16107:2;16074:15;:24;16090:7;16074:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16144:7;16140:2;16124:28;;16133:5;16124:28;;;;;;;;;;;;15839:320;15769:390;;:::o;5851:317::-;5912:7;6136:15;:13;:15::i;:::-;6121:12;;6105:13;;:28;:46;6098:53;;5851:317;:::o;19852:2756::-;19981:27;20011;20030:7;20011:18;:27::i;:::-;19981:57;;20094:4;20053:45;;20069:19;20053:45;;;20049:86;;20107:28;;;;;;;;;;;;;;20049:86;20147:27;20176:23;20203:35;20230:7;20203:26;:35::i;:::-;20146:92;;;;20335:68;20360:15;20377:4;20383:19;:17;:19::i;:::-;20335:24;:68::i;:::-;20330:179;;20422:43;20439:4;20445:19;:17;:19::i;:::-;20422:16;:43::i;:::-;20417:92;;20474:35;;;;;;;;;;;;;;20417:92;20330:179;20538:1;20524:16;;:2;:16;;;20520:52;;;20549:23;;;;;;;;;;;;;;20520:52;20583:43;20605:4;20611:2;20615:7;20624:1;20583:21;:43::i;:::-;20715:15;20712:157;;;20853:1;20832:19;20825:30;20712:157;21241:18;:24;21260:4;21241:24;;;;;;;;;;;;;;;;21239:26;;;;;;;;;;;;21309:18;:22;21328:2;21309:22;;;;;;;;;;;;;;;;21307:24;;;;;;;;;;;21624:143;21660:2;21708:45;21723:4;21729:2;21733:19;21708:14;:45::i;:::-;2349:8;21680:73;21624:18;:143::i;:::-;21595:17;:26;21613:7;21595:26;;;;;;;;;;;:172;;;;21935:1;2349:8;21884:19;:47;:52;21880:617;;;21956:19;21988:1;21978:7;:11;21956:33;;22143:1;22109:17;:30;22127:11;22109:30;;;;;;;;;;;;:35;22105:378;;;22245:13;;22230:11;:28;22226:239;;22423:19;22390:17;:30;22408:11;22390:30;;;;;;;;;;;:52;;;;22226:239;22105:378;21938:559;21880:617;22541:7;22537:2;22522:27;;22531:4;22522:27;;;;;;;;;;;;22559:42;22580:4;22586:2;22590:7;22599:1;22559:20;:42::i;:::-;19971:2637;;;19852:2756;;;:::o;3795:395:4:-;1087:13:5;:11;:13::i;:::-;3913:1:4::1;3888:21;:26;3884:58;;3924:18;;;;;;;;;;;;;;3884:58;3981:18;;3956:21;:43;3952:84;;4009:27;;;;;;;;;;;;;;3952:84;4074:13;:11;:13::i;:::-;4050:21;:37;4046:76;;;4097:25;;;;;;;;;;;;;;4046:76;4162:21;4141:18;:42;;;;3795:395:::0;:::o;4651:175::-;1087:13:5;:11;:13::i;:::-;4701:12:4::1;4719:10;:15;;4742:21;4719:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4700:68;;;4783:7;4778:41;;4800:19;;;;;;;;;;;;;;4778:41;4690:136;4651:175::o:0;22699:179:2:-;22832:39;22849:4;22855:2;22859:7;22832:39;;;;;;;;;;;;:16;:39::i;:::-;22699:179;;;:::o;3610:102:4:-;1087:13:5;:11;:13::i;:::-;3695:10:4::1;3685:7;:20;;;;;;;;;;;;:::i;:::-;;3610:102:::0;:::o;594:33::-;;;;:::o;11348:150:2:-;11420:7;11462:27;11481:7;11462:18;:27::i;:::-;11439:52;;11348:150;;;:::o;537:21:4:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7002:230:2:-;7074:7;7114:1;7097:19;;:5;:19;;;7093:60;;;7125:28;;;;;;;;;;;;;;7093:60;1317:13;7170:18;:25;7189:5;7170:25;;;;;;;;;;;;;;;;:55;7163:62;;7002:230;;;:::o;1824:101:5:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1194:85::-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;10165:102:2:-;10221:13;10253:7;10246:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10165:102;:::o;16850:231::-;16996:8;16944:18;:39;16963:19;:17;:19::i;:::-;16944:39;;;;;;;;;;;;;;;:49;16984:8;16944:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17055:8;17019:55;;17034:19;:17;:19::i;:::-;17019:55;;;17065:8;17019:55;;;;;;:::i;:::-;;;;;;;;16850:231;;:::o;23459:388::-;23620:31;23633:4;23639:2;23643:7;23620:12;:31::i;:::-;23683:1;23665:2;:14;;;:19;23661:180;;23703:56;23734:4;23740:2;23744:7;23753:5;23703:30;:56::i;:::-;23698:143;;23786:40;;;;;;;;;;;;;;23698:143;23661:180;23459:388;;;;:::o;10368:313::-;10441:13;10471:16;10479:7;10471;:16::i;:::-;10466:59;;10496:29;;;;;;;;;;;;;;10466:59;10536:21;10560:10;:8;:10::i;:::-;10536:34;;10612:1;10593:7;10587:21;:26;;:87;;;;;;;;;;;;;;;;;10640:7;10649:18;10659:7;10649:9;:18::i;:::-;10623:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10587:87;10580:94;;;10368:313;;;:::o;4263:323:4:-;1087:13:5;:11;:13::i;:::-;4354:1:4::1;4338:12;:17;4334:49;;4365:18;;;;;;;;;;;;;;4334:49;4413:9;;4397:12;:25;4393:66;;4432:27;;;;;;;;;;;;;;4393:66;4488:13;:11;:13::i;:::-;4473:12;:28;4469:67;;;4511:25;;;;;;;;;;;;;;4469:67;4567:12;4555:9;:24;;;;4263:323:::0;:::o;564:24::-;;;;:::o;2576:670::-;1087:13:5;:11;:13::i;:::-;2708:21:4::1;2749:9:::0;2744:104:::1;2768:10;;:17;;2764:1;:21;2744:104;;;2824:10;;2835:1;2824:13;;;;;;;:::i;:::-;;;;;;;;2807:30;;;;;:::i;:::-;;;2787:3;;;;;:::i;:::-;;;;2744:104;;;;2862:16;2858:265;;;2931:18;;2915:13;2899;:11;:13::i;:::-;:29;;;;:::i;:::-;:50;2895:82;;;2959:18;;;;;;;;;;;;;;2895:82;3004:13;2991:9;;:26;;;;;;;:::i;:::-;;;;;;;;2858:265;;;3084:9;;3068:13;3052;:11;:13::i;:::-;:29;;;;:::i;:::-;:41;3048:64;;;3103:9;;;;;;;;;;;;;;3048:64;2858:265;3138:9;3133:107;3157:9;;:16;;3153:1;:20;3133:107;;;3195:34;3201:9;;3211:1;3201:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3215:10;;3226:1;3215:13;;;;;;;:::i;:::-;;;;;;;;3195:5;:34::i;:::-;3175:3;;;;;:::i;:::-;;;;3133:107;;;;2697:549;2576:670:::0;;;;;:::o;1135:641::-;1269:75;1280:10;1292:9;1303:11;1316:16;1334:9;;1269:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;:75::i;:::-;1264:110;;1354:20;;;;;;;;;;;;;;1264:110;1427:11;1416:8;1388:25;1402:10;1388:13;:25::i;:::-;:36;;;;:::i;:::-;:50;1384:87;;;1448:23;;;;;;;;;;;;;;1384:87;1486:16;1482:250;;;1550:18;;1539:8;1523:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:45;1519:77;;;1578:18;;;;;;;;;;;;;;1519:77;1623:8;1610:9;;:21;;;;;;;:::i;:::-;;;;;;;;1482:250;;;1693:9;;1682:8;1666:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;1662:59;;;1712:9;;;;;;;;;;;;;;1662:59;1482:250;1742:27;1748:10;1760:8;1742:5;:27::i;:::-;1135:641;;;;;:::o;1857:114::-;1917:7;1943:21;1957:6;1943:13;:21::i;:::-;1936:28;;1857:114;;;:::o;17231:162:2:-;17328:4;17351:18;:25;17370:5;17351:25;;;;;;;;;;;;;;;:35;17377:8;17351:35;;;;;;;;;;;;;;;;;;;;;;;;;17344:42;;17231:162;;;;:::o;2074:198:5:-;1087:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;;;2154:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;1352:130::-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;17642:277:2:-;17707:4;17761:7;17742:15;:13;:15::i;:::-;:26;;:65;;;;;17794:13;;17784:7;:23;17742:65;:151;;;;;17892:1;2075:8;17844:17;:26;17862:7;17844:26;;;;;;;;;;;;:44;:49;17742:151;17723:170;;17642:277;;;:::o;39119:103::-;39179:7;39205:10;39198:17;;39119:103;:::o;5383:90::-;5439:7;5383:90;:::o;12472:1249::-;12539:7;12558:12;12573:7;12558:22;;12638:4;12619:15;:13;:15::i;:::-;:23;12615:1042;;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:17;:23;12743:4;12725:23;;;;;;;;;;;;12708:40;;12840:1;2075:8;12812:6;:24;:29;12808:831;;;13467:111;13484:1;13474:6;:11;13467:111;;;13526:17;:25;13544:6;;;;;;;13526:25;;;;;;;;;;;;13517:34;;13467:111;;;13610:6;13603:13;;;;;;12808:831;12686:971;12660:997;12615:1042;13683:31;;;;;;;;;;;;;;12472:1249;;;;:::o;18777:474::-;18876:27;18905:23;18944:38;18985:15;:24;19001:7;18985:24;;;;;;;;;;;18944:65;;19159:18;19136:41;;19215:19;19209:26;19190:45;;19122:123;18777:474;;;:::o;18023:646::-;18168:11;18330:16;18323:5;18319:28;18310:37;;18488:16;18477:9;18473:32;18460:45;;18636:15;18625:9;18622:30;18614:5;18603:9;18600:20;18597:56;18587:66;;18023:646;;;;;:::o;24491:154::-;;;;;:::o;38446:304::-;38577:7;38596:16;2470:3;38622:19;:41;;38596:68;;2470:3;38689:31;38700:4;38706:2;38710:9;38689:10;:31::i;:::-;38681:40;;:62;;38674:69;;;38446:304;;;;;:::o;14254:443::-;14334:14;14499:16;14492:5;14488:28;14479:37;;14674:5;14660:11;14635:23;14631:41;14628:52;14621:5;14618:63;14608:73;;14254:443;;;;:::o;25292:153::-;;;;;:::o;2426:187:5:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;25873:697:2:-;26031:4;26076:2;26051:45;;;26097:19;:17;:19::i;:::-;26118:4;26124:7;26133:5;26051:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26047:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26346:1;26329:6;:13;:18;26325:229;;;26374:40;;;;;;;;;;;;;;26325:229;26514:6;26508:13;26499:6;26495:2;26491:15;26484:38;26047:517;26217:54;;;26207:64;;;:6;:64;;;;26200:71;;;25873:697;;;;;;:::o;2367:106:4:-;2427:13;2459:7;2452:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2367:106;:::o;39319:1549:2:-;39384:17;39804:4;39797;39791:11;39787:22;39780:29;;39894:3;39888:4;39881:17;39997:3;40231:5;40213:419;40239:1;40213:419;;;40278:1;40273:3;40269:11;40262:18;;40446:2;40440:4;40436:13;40432:2;40428:22;40423:3;40415:36;40538:2;40532:4;40528:13;40520:21;;40603:4;40593:25;;40611:5;;40593:25;40213:419;;;40217:21;40669:3;40664;40660:13;40782:4;40777:3;40773:14;40766:21;;40845:6;40840:3;40833:19;39422:1440;;39319:1549;;;:::o;27016:2659::-;27088:20;27111:13;;27088:36;;27150:1;27138:8;:13;27134:44;;;27160:18;;;;;;;;;;;;;;27134:44;27189:61;27219:1;27223:2;27227:12;27241:8;27189:21;:61::i;:::-;27722:1;1452:2;27692:1;:26;;27691:32;27679:8;:45;27653:18;:22;27672:2;27653:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;27994:136;28030:2;28083:33;28106:1;28110:2;28114:1;28083:14;:33::i;:::-;28050:30;28071:8;28050:20;:30::i;:::-;:66;27994:18;:136::i;:::-;27960:17;:31;27978:12;27960:31;;;;;;;;;;;:170;;;;28145:16;28175:11;28204:8;28189:12;:23;28175:37;;28717:16;28713:2;28709:25;28697:37;;29081:12;29042:8;29002:1;28941:25;28883:1;28823;28797:328;29202:1;29188:12;29184:20;29143:339;29242:3;29233:7;29230:16;29143:339;;29456:7;29446:8;29443:1;29416:25;29413:1;29410;29405:59;29294:1;29285:7;29281:15;29270:26;;29143:339;;;29147:75;29525:1;29513:8;:13;29509:45;;;29535:19;;;;;;;;;;;;;;29509:45;29585:3;29569:13;:19;;;;27433:2166;;29608:60;29637:1;29641:2;29645:12;29659:8;29608:20;:60::i;:::-;27078:2597;27016:2659;;:::o;2004:357:4:-;2149:4;2165:19;2214:6;2222:9;2233:11;2246:16;2197:66;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2187:77;;;;;;2165:99;;2299:55;2344:9;2299:36;:11;:34;:36::i;:::-;:44;;:55;;;;:::i;:::-;2281:73;;:14;;;;;;;;;;;:73;;;2274:80;;;2004:357;;;;;;;:::o;7309:176:2:-;7370:7;1317:13;1452:2;7397:18;:25;7416:5;7397:25;;;;;;;;;;;;;;;;:50;;7396:82;7389:89;;7309:176;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;38157:143:2:-;38290:6;38157:143;;;;;:::o;14794:318::-;14864:14;15093:1;15083:8;15080:15;15054:24;15050:46;15040:56;;14794:318;;;:::o;7255:265:1:-;7324:7;7507:4;7454:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;7444:69;;;;;;7437:76;;7255:265;;;:::o;3660:227::-;3738:7;3758:17;3777:18;3799:27;3810:4;3816:9;3799:10;:27::i;:::-;3757:69;;;;3836:18;3848:5;3836:11;:18::i;:::-;3871:9;3864:16;;;;3660:227;;;;:::o;2144:730::-;2225:7;2234:12;2282:2;2262:9;:16;:22;2258:610;;;2300:9;2323;2346:7;2598:4;2587:9;2583:20;2577:27;2572:32;;2647:4;2636:9;2632:20;2626:27;2621:32;;2704:4;2693:9;2689:20;2683:27;2680:1;2675:36;2670:41;;2745:25;2756:4;2762:1;2765;2768;2745:10;:25::i;:::-;2738:32;;;;;;;;;2258:610;2817:1;2821:35;2801:56;;;;2144:730;;;;;;:::o;569:511::-;646:20;637:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;633:441;;;682:7;;633:441;742:29;733:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;729:345;;;787:34;;;;;;;;;;:::i;:::-;;;;;;;;729:345;851:35;842:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;838:236;;;902:41;;;;;;;;;;:::i;:::-;;;;;;;;838:236;973:30;964:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;960:114;;;1019:44;;;;;;;;;;:::i;:::-;;;;;;;;960:114;569:511;;:::o;5068:1494::-;5194:7;5203:12;6118:66;6113:1;6105:10;;:79;6101:161;;;6216:1;6220:30;6200:51;;;;;;6101:161;6356:14;6373:24;6383:4;6389:1;6392;6395;6373:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6356:41;;6429:1;6411:20;;:6;:20;;;6407:101;;;6463:1;6467:29;6447:50;;;;;;;6407:101;6526:6;6534:20;6518:37;;;;;5068:1494;;;;;;;;:::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:1073::-;7501:6;7509;7517;7525;7533;7582:2;7570:9;7561:7;7557:23;7553:32;7550:119;;;7588:79;;:::i;:::-;7550:119;7736:1;7725:9;7721:17;7708:31;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7901:80;7973:7;7964:6;7953:9;7949:22;7901:80;:::i;:::-;7883:98;;;;7679:312;8058:2;8047:9;8043:18;8030:32;8089:18;8081:6;8078:30;8075:117;;;8111:79;;:::i;:::-;8075:117;8224:80;8296:7;8287:6;8276:9;8272:22;8224:80;:::i;:::-;8206:98;;;;8001:313;8353:2;8379:50;8421:7;8412:6;8401:9;8397:22;8379:50;:::i;:::-;8369:60;;8324:115;7373:1073;;;;;;;;:::o;8452:327::-;8510:6;8559:2;8547:9;8538:7;8534:23;8530:32;8527:119;;;8565:79;;:::i;:::-;8527:119;8685:1;8710:52;8754:7;8745:6;8734:9;8730:22;8710:52;:::i;:::-;8700:62;;8656:116;8452:327;;;;:::o;8785:349::-;8854:6;8903:2;8891:9;8882:7;8878:23;8874:32;8871:119;;;8909:79;;:::i;:::-;8871:119;9029:1;9054:63;9109:7;9100:6;9089:9;9085:22;9054:63;:::i;:::-;9044:73;;9000:127;8785:349;;;;:::o;9140:957::-;9234:6;9242;9250;9258;9266;9315:3;9303:9;9294:7;9290:23;9286:33;9283:120;;;9322:79;;:::i;:::-;9283:120;9470:1;9459:9;9455:17;9442:31;9500:18;9492:6;9489:30;9486:117;;;9522:79;;:::i;:::-;9486:117;9635:64;9691:7;9682:6;9671:9;9667:22;9635:64;:::i;:::-;9617:82;;;;9413:296;9748:2;9774:53;9819:7;9810:6;9799:9;9795:22;9774:53;:::i;:::-;9764:63;;9719:118;9876:2;9902:53;9947:7;9938:6;9927:9;9923:22;9902:53;:::i;:::-;9892:63;;9847:118;10004:2;10030:50;10072:7;10063:6;10052:9;10048:22;10030:50;:::i;:::-;10020:60;;9975:115;9140:957;;;;;;;;:::o;10103:509::-;10172:6;10221:2;10209:9;10200:7;10196:23;10192:32;10189:119;;;10227:79;;:::i;:::-;10189:119;10375:1;10364:9;10360:17;10347:31;10405:18;10397:6;10394:30;10391:117;;;10427:79;;:::i;:::-;10391:117;10532:63;10587:7;10578:6;10567:9;10563:22;10532:63;:::i;:::-;10522:73;;10318:287;10103:509;;;;:::o;10618:329::-;10677:6;10726:2;10714:9;10705:7;10701:23;10697:32;10694:119;;;10732:79;;:::i;:::-;10694:119;10852:1;10877:53;10922:7;10913:6;10902:9;10898:22;10877:53;:::i;:::-;10867:63;;10823:117;10618:329;;;;:::o;10953:118::-;11040:24;11058:5;11040:24;:::i;:::-;11035:3;11028:37;10953:118;;:::o;11077:157::-;11182:45;11202:24;11220:5;11202:24;:::i;:::-;11182:45;:::i;:::-;11177:3;11170:58;11077:157;;:::o;11240:109::-;11321:21;11336:5;11321:21;:::i;:::-;11316:3;11309:34;11240:109;;:::o;11355:145::-;11454:39;11471:21;11486:5;11471:21;:::i;:::-;11454:39;:::i;:::-;11449:3;11442:52;11355:145;;:::o;11506:118::-;11593:24;11611:5;11593:24;:::i;:::-;11588:3;11581:37;11506:118;;:::o;11630:157::-;11735:45;11755:24;11773:5;11755:24;:::i;:::-;11735:45;:::i;:::-;11730:3;11723:58;11630:157;;:::o;11793:360::-;11879:3;11907:38;11939:5;11907:38;:::i;:::-;11961:70;12024:6;12019:3;11961:70;:::i;:::-;11954:77;;12040:52;12085:6;12080:3;12073:4;12066:5;12062:16;12040:52;:::i;:::-;12117:29;12139:6;12117:29;:::i;:::-;12112:3;12108:39;12101:46;;11883:270;11793:360;;;;:::o;12159:364::-;12247:3;12275:39;12308:5;12275:39;:::i;:::-;12330:71;12394:6;12389:3;12330:71;:::i;:::-;12323:78;;12410:52;12455:6;12450:3;12443:4;12436:5;12432:16;12410:52;:::i;:::-;12487:29;12509:6;12487:29;:::i;:::-;12482:3;12478:39;12471:46;;12251:272;12159:364;;;;:::o;12529:377::-;12635:3;12663:39;12696:5;12663:39;:::i;:::-;12718:89;12800:6;12795:3;12718:89;:::i;:::-;12711:96;;12816:52;12861:6;12856:3;12849:4;12842:5;12838:16;12816:52;:::i;:::-;12893:6;12888:3;12884:16;12877:23;;12639:267;12529:377;;;;:::o;12912:366::-;13054:3;13075:67;13139:2;13134:3;13075:67;:::i;:::-;13068:74;;13151:93;13240:3;13151:93;:::i;:::-;13269:2;13264:3;13260:12;13253:19;;12912:366;;;:::o;13284:::-;13426:3;13447:67;13511:2;13506:3;13447:67;:::i;:::-;13440:74;;13523:93;13612:3;13523:93;:::i;:::-;13641:2;13636:3;13632:12;13625:19;;13284:366;;;:::o;13656:402::-;13816:3;13837:85;13919:2;13914:3;13837:85;:::i;:::-;13830:92;;13931:93;14020:3;13931:93;:::i;:::-;14049:2;14044:3;14040:12;14033:19;;13656:402;;;:::o;14064:366::-;14206:3;14227:67;14291:2;14286:3;14227:67;:::i;:::-;14220:74;;14303:93;14392:3;14303:93;:::i;:::-;14421:2;14416:3;14412:12;14405:19;;14064:366;;;:::o;14436:::-;14578:3;14599:67;14663:2;14658:3;14599:67;:::i;:::-;14592:74;;14675:93;14764:3;14675:93;:::i;:::-;14793:2;14788:3;14784:12;14777:19;;14436:366;;;:::o;14808:::-;14950:3;14971:67;15035:2;15030:3;14971:67;:::i;:::-;14964:74;;15047:93;15136:3;15047:93;:::i;:::-;15165:2;15160:3;15156:12;15149:19;;14808:366;;;:::o;15180:398::-;15339:3;15360:83;15441:1;15436:3;15360:83;:::i;:::-;15353:90;;15452:93;15541:3;15452:93;:::i;:::-;15570:1;15565:3;15561:11;15554:18;;15180:398;;;:::o;15584:118::-;15671:24;15689:5;15671:24;:::i;:::-;15666:3;15659:37;15584:118;;:::o;15708:157::-;15813:45;15833:24;15851:5;15833:24;:::i;:::-;15813:45;:::i;:::-;15808:3;15801:58;15708:157;;:::o;15871:112::-;15954:22;15970:5;15954:22;:::i;:::-;15949:3;15942:35;15871:112;;:::o;15989:666::-;16179:3;16194:75;16265:3;16256:6;16194:75;:::i;:::-;16294:2;16289:3;16285:12;16278:19;;16307:75;16378:3;16369:6;16307:75;:::i;:::-;16407:2;16402:3;16398:12;16391:19;;16420:75;16491:3;16482:6;16420:75;:::i;:::-;16520:2;16515:3;16511:12;16504:19;;16533:69;16598:3;16589:6;16533:69;:::i;:::-;16627:1;16622:3;16618:11;16611:18;;16646:3;16639:10;;15989:666;;;;;;;:::o;16661:435::-;16841:3;16863:95;16954:3;16945:6;16863:95;:::i;:::-;16856:102;;16975:95;17066:3;17057:6;16975:95;:::i;:::-;16968:102;;17087:3;17080:10;;16661:435;;;;;:::o;17102:522::-;17315:3;17337:148;17481:3;17337:148;:::i;:::-;17330:155;;17495:75;17566:3;17557:6;17495:75;:::i;:::-;17595:2;17590:3;17586:12;17579:19;;17615:3;17608:10;;17102:522;;;;:::o;17630:379::-;17814:3;17836:147;17979:3;17836:147;:::i;:::-;17829:154;;18000:3;17993:10;;17630:379;;;:::o;18015:222::-;18108:4;18146:2;18135:9;18131:18;18123:26;;18159:71;18227:1;18216:9;18212:17;18203:6;18159:71;:::i;:::-;18015:222;;;;:::o;18243:640::-;18438:4;18476:3;18465:9;18461:19;18453:27;;18490:71;18558:1;18547:9;18543:17;18534:6;18490:71;:::i;:::-;18571:72;18639:2;18628:9;18624:18;18615:6;18571:72;:::i;:::-;18653;18721:2;18710:9;18706:18;18697:6;18653:72;:::i;:::-;18772:9;18766:4;18762:20;18757:2;18746:9;18742:18;18735:48;18800:76;18871:4;18862:6;18800:76;:::i;:::-;18792:84;;18243:640;;;;;;;:::o;18889:210::-;18976:4;19014:2;19003:9;18999:18;18991:26;;19027:65;19089:1;19078:9;19074:17;19065:6;19027:65;:::i;:::-;18889:210;;;;:::o;19105:545::-;19278:4;19316:3;19305:9;19301:19;19293:27;;19330:71;19398:1;19387:9;19383:17;19374:6;19330:71;:::i;:::-;19411:68;19475:2;19464:9;19460:18;19451:6;19411:68;:::i;:::-;19489:72;19557:2;19546:9;19542:18;19533:6;19489:72;:::i;:::-;19571;19639:2;19628:9;19624:18;19615:6;19571:72;:::i;:::-;19105:545;;;;;;;:::o;19656:313::-;19769:4;19807:2;19796:9;19792:18;19784:26;;19856:9;19850:4;19846:20;19842:1;19831:9;19827:17;19820:47;19884:78;19957:4;19948:6;19884:78;:::i;:::-;19876:86;;19656:313;;;;:::o;19975:419::-;20141:4;20179:2;20168:9;20164:18;20156:26;;20228:9;20222:4;20218:20;20214:1;20203:9;20199:17;20192:47;20256:131;20382:4;20256:131;:::i;:::-;20248:139;;19975:419;;;:::o;20400:::-;20566:4;20604:2;20593:9;20589:18;20581:26;;20653:9;20647:4;20643:20;20639:1;20628:9;20624:17;20617:47;20681:131;20807:4;20681:131;:::i;:::-;20673:139;;20400:419;;;:::o;20825:::-;20991:4;21029:2;21018:9;21014:18;21006:26;;21078:9;21072:4;21068:20;21064:1;21053:9;21049:17;21042:47;21106:131;21232:4;21106:131;:::i;:::-;21098:139;;20825:419;;;:::o;21250:::-;21416:4;21454:2;21443:9;21439:18;21431:26;;21503:9;21497:4;21493:20;21489:1;21478:9;21474:17;21467:47;21531:131;21657:4;21531:131;:::i;:::-;21523:139;;21250:419;;;:::o;21675:::-;21841:4;21879:2;21868:9;21864:18;21856:26;;21928:9;21922:4;21918:20;21914:1;21903:9;21899:17;21892:47;21956:131;22082:4;21956:131;:::i;:::-;21948:139;;21675:419;;;:::o;22100:222::-;22193:4;22231:2;22220:9;22216:18;22208:26;;22244:71;22312:1;22301:9;22297:17;22288:6;22244:71;:::i;:::-;22100:222;;;;:::o;22328:129::-;22362:6;22389:20;;:::i;:::-;22379:30;;22418:33;22446:4;22438:6;22418:33;:::i;:::-;22328:129;;;:::o;22463:75::-;22496:6;22529:2;22523:9;22513:19;;22463:75;:::o;22544:307::-;22605:4;22695:18;22687:6;22684:30;22681:56;;;22717:18;;:::i;:::-;22681:56;22755:29;22777:6;22755:29;:::i;:::-;22747:37;;22839:4;22833;22829:15;22821:23;;22544:307;;;:::o;22857:308::-;22919:4;23009:18;23001:6;22998:30;22995:56;;;23031:18;;:::i;:::-;22995:56;23069:29;23091:6;23069:29;:::i;:::-;23061:37;;23153:4;23147;23143:15;23135:23;;22857:308;;;:::o;23171:98::-;23222:6;23256:5;23250:12;23240:22;;23171:98;;;:::o;23275:99::-;23327:6;23361:5;23355:12;23345:22;;23275:99;;;:::o;23380:168::-;23463:11;23497:6;23492:3;23485:19;23537:4;23532:3;23528:14;23513:29;;23380:168;;;;:::o;23554:147::-;23655:11;23692:3;23677:18;;23554:147;;;;:::o;23707:169::-;23791:11;23825:6;23820:3;23813:19;23865:4;23860:3;23856:14;23841:29;;23707:169;;;;:::o;23882:148::-;23984:11;24021:3;24006:18;;23882:148;;;;:::o;24036:305::-;24076:3;24095:20;24113:1;24095:20;:::i;:::-;24090:25;;24129:20;24147:1;24129:20;:::i;:::-;24124:25;;24283:1;24215:66;24211:74;24208:1;24205:81;24202:107;;;24289:18;;:::i;:::-;24202:107;24333:1;24330;24326:9;24319:16;;24036:305;;;;:::o;24347:96::-;24384:7;24413:24;24431:5;24413:24;:::i;:::-;24402:35;;24347:96;;;:::o;24449:90::-;24483:7;24526:5;24519:13;24512:21;24501:32;;24449:90;;;:::o;24545:77::-;24582:7;24611:5;24600:16;;24545:77;;;:::o;24628:149::-;24664:7;24704:66;24697:5;24693:78;24682:89;;24628:149;;;:::o;24783:126::-;24820:7;24860:42;24853:5;24849:54;24838:65;;24783:126;;;:::o;24915:77::-;24952:7;24981:5;24970:16;;24915:77;;;:::o;24998:86::-;25033:7;25073:4;25066:5;25062:16;25051:27;;24998:86;;;:::o;25090:154::-;25174:6;25169:3;25164;25151:30;25236:1;25227:6;25222:3;25218:16;25211:27;25090:154;;;:::o;25250:307::-;25318:1;25328:113;25342:6;25339:1;25336:13;25328:113;;;25427:1;25422:3;25418:11;25412:18;25408:1;25403:3;25399:11;25392:39;25364:2;25361:1;25357:10;25352:15;;25328:113;;;25459:6;25456:1;25453:13;25450:101;;;25539:1;25530:6;25525:3;25521:16;25514:27;25450:101;25299:258;25250:307;;;:::o;25563:320::-;25607:6;25644:1;25638:4;25634:12;25624:22;;25691:1;25685:4;25681:12;25712:18;25702:81;;25768:4;25760:6;25756:17;25746:27;;25702:81;25830:2;25822:6;25819:14;25799:18;25796:38;25793:84;;;25849:18;;:::i;:::-;25793:84;25614:269;25563:320;;;:::o;25889:281::-;25972:27;25994:4;25972:27;:::i;:::-;25964:6;25960:40;26102:6;26090:10;26087:22;26066:18;26054:10;26051:34;26048:62;26045:88;;;26113:18;;:::i;:::-;26045:88;26153:10;26149:2;26142:22;25932:238;25889:281;;:::o;26176:233::-;26215:3;26238:24;26256:5;26238:24;:::i;:::-;26229:33;;26284:66;26277:5;26274:77;26271:103;;;26354:18;;:::i;:::-;26271:103;26401:1;26394:5;26390:13;26383:20;;26176:233;;;:::o;26415:100::-;26454:7;26483:26;26503:5;26483:26;:::i;:::-;26472:37;;26415:100;;;:::o;26521:95::-;26557:7;26586:24;26604:5;26586:24;:::i;:::-;26575:35;;26521:95;;;:::o;26622:79::-;26661:7;26690:5;26679:16;;26622:79;;;:::o;26707:94::-;26746:7;26775:20;26789:5;26775:20;:::i;:::-;26764:31;;26707:94;;;:::o;26807:79::-;26846:7;26875:5;26864:16;;26807:79;;;:::o;26892:93::-;26929:7;26958:21;26973:5;26958:21;:::i;:::-;26947:32;;26892:93;;;:::o;26991:180::-;27039:77;27036:1;27029:88;27136:4;27133:1;27126:15;27160:4;27157:1;27150:15;27177:180;27225:77;27222:1;27215:88;27322:4;27319:1;27312:15;27346:4;27343:1;27336:15;27363:180;27411:77;27408:1;27401:88;27508:4;27505:1;27498:15;27532:4;27529:1;27522:15;27549:180;27597:77;27594:1;27587:88;27694:4;27691:1;27684:15;27718:4;27715:1;27708:15;27735:180;27783:77;27780:1;27773:88;27880:4;27877:1;27870:15;27904:4;27901:1;27894:15;27921:117;28030:1;28027;28020:12;28044:117;28153:1;28150;28143:12;28167:117;28276:1;28273;28266:12;28290:117;28399:1;28396;28389:12;28413:117;28522:1;28519;28512:12;28536:117;28645:1;28642;28635:12;28659:102;28700:6;28751:2;28747:7;28742:2;28735:5;28731:14;28727:28;28717:38;;28659:102;;;:::o;28767:96::-;28801:8;28850:5;28845:3;28841:15;28820:36;;28767:96;;;:::o;28869:94::-;28902:8;28950:5;28946:2;28942:14;28921:35;;28869:94;;;:::o;28969:174::-;29109:26;29105:1;29097:6;29093:14;29086:50;28969:174;:::o;29149:181::-;29289:33;29285:1;29277:6;29273:14;29266:57;29149:181;:::o;29336:214::-;29476:66;29472:1;29464:6;29460:14;29453:90;29336:214;:::o;29556:225::-;29696:34;29692:1;29684:6;29680:14;29673:58;29765:8;29760:2;29752:6;29748:15;29741:33;29556:225;:::o;29787:221::-;29927:34;29923:1;29915:6;29911:14;29904:58;29996:4;29991:2;29983:6;29979:15;29972:29;29787:221;:::o;30014:182::-;30154:34;30150:1;30142:6;30138:14;30131:58;30014:182;:::o;30202:114::-;;:::o;30322:122::-;30395:24;30413:5;30395:24;:::i;:::-;30388:5;30385:35;30375:63;;30434:1;30431;30424:12;30375:63;30322:122;:::o;30450:116::-;30520:21;30535:5;30520:21;:::i;:::-;30513:5;30510:32;30500:60;;30556:1;30553;30546:12;30500:60;30450:116;:::o;30572:120::-;30644:23;30661:5;30644:23;:::i;:::-;30637:5;30634:34;30624:62;;30682:1;30679;30672:12;30624:62;30572:120;:::o;30698:122::-;30771:24;30789:5;30771:24;:::i;:::-;30764:5;30761:35;30751:63;;30810:1;30807;30800:12;30751:63;30698:122;:::o

Swarm Source

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