ETH Price: $3,073.43 (-6.64%)
Gas: 11 Gwei

Token

In the dark (DARK)
 

Overview

Max Total Supply

1,111 DARK

Holders

564

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 DARK
0x19d0d6b69bb9a89897fe577457ddb87fb7e423e8
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:
InTheDark

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-04
*/

// SPDX-License-Identifier: MIT
// File: contracts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
// File: contracts/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// 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 payable;

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

    /**
     * @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 payable;

    /**
     * @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 payable;

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/InTheDark.sol



pragma solidity 0.8.13;






contract InTheDark is DefaultOperatorFilterer, ERC721A, Ownable, ReentrancyGuard {
  string public uriPrefix = '';

  uint256 public cost = 0.005 ether;
  uint256 public maxSupply = 1111;
  uint256 public maxMintAmountPerTx = 2;
  uint256 public maxMintAmountPerWallet = 2;
  mapping(address => uint256) public alreadyMinted;

  bool public paused = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol
  ) ERC721A(_tokenName, _tokenSymbol) {}

  function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
    super.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
    super.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) {
    super.safeTransferFrom(from, to, tokenId, data);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(msg.sender == tx.origin, 'The minter is another contract');
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(alreadyMinted[msg.sender] + _mintAmount <= maxMintAmountPerWallet, 'Max supply exceeded!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');
    alreadyMinted[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b929190620003f2565b506611c37937e08000600b55610457600c556002600d556002600e556001601060006101000a81548160ff0219169083151502179055503480156200006f57600080fd5b5060405162003aff38038062003aff83398181016040528101906200009591906200063f565b8181733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002a357801562000169576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200012f92919062000709565b600060405180830381600087803b1580156200014a57600080fd5b505af11580156200015f573d6000803e3d6000fd5b50505050620002a2565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000223576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620001e992919062000709565b600060405180830381600087803b1580156200020457600080fd5b505af115801562000219573d6000803e3d6000fd5b50505050620002a1565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200026c919062000736565b600060405180830381600087803b1580156200028757600080fd5b505af11580156200029c573d6000803e3d6000fd5b505050505b5b5b50508160029080519060200190620002bd929190620003f2565b508060039080519060200190620002d6929190620003f2565b50620002e76200031f60201b60201c565b60008190555050506200030f620003036200032460201b60201c565b6200032c60201b60201c565b60016009819055505050620007b7565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004009062000782565b90600052602060002090601f01602090048101928262000424576000855562000470565b82601f106200043f57805160ff191683800117855562000470565b8280016001018555821562000470579182015b828111156200046f57825182559160200191906001019062000452565b5b5090506200047f919062000483565b5090565b5b808211156200049e57600081600090555060010162000484565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200050b82620004c0565b810181811067ffffffffffffffff821117156200052d576200052c620004d1565b5b80604052505050565b600062000542620004a2565b905062000550828262000500565b919050565b600067ffffffffffffffff821115620005735762000572620004d1565b5b6200057e82620004c0565b9050602081019050919050565b60005b83811015620005ab5780820151818401526020810190506200058e565b83811115620005bb576000848401525b50505050565b6000620005d8620005d28462000555565b62000536565b905082815260208101848484011115620005f757620005f6620004bb565b5b620006048482856200058b565b509392505050565b600082601f830112620006245762000623620004b6565b5b815162000636848260208601620005c1565b91505092915050565b60008060408385031215620006595762000658620004ac565b5b600083015167ffffffffffffffff8111156200067a5762000679620004b1565b5b62000688858286016200060c565b925050602083015167ffffffffffffffff811115620006ac57620006ab620004b1565b5b620006ba858286016200060c565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006f182620006c4565b9050919050565b6200070381620006e4565b82525050565b6000604082019050620007206000830185620006f8565b6200072f6020830184620006f8565b9392505050565b60006020820190506200074d6000830184620006f8565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200079b57607f821691505b602082108103620007b157620007b062000753565b5b50919050565b61333880620007c76000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146105d9578063d5abeb0114610616578063e985e9c514610641578063f2fde38b1461067e576101c2565b8063a0712d681461054d578063a22cb46514610569578063b88d4fde14610592578063bc951b91146105ae576101c2565b80637ec4a659116100d15780637ec4a659146104a35780638da5cb5b146104cc57806394354fd0146104f757806395d89b4114610522576101c2565b80636352211e1461041257806370a082311461044f578063715018a61461048c576101c2565b806318160ddd1161016457806342842e0e1161013e57806342842e0e1461037757806344a0d68a146103935780635c975abb146103bc57806362b99ad4146103e7576101c2565b806318160ddd1461031957806323b872dd146103445780633ccfd60b14610360576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630a398b881461028857806313faede6146102c557806316c38b3c146102f0576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612549565b6106a7565b6040516101fb9190612591565b60405180910390f35b34801561021057600080fd5b50610219610739565b6040516102269190612645565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061269d565b6107cb565b604051610263919061270b565b60405180910390f35b61028660048036038101906102819190612752565b61084a565b005b34801561029457600080fd5b506102af60048036038101906102aa9190612792565b61098e565b6040516102bc91906127ce565b60405180910390f35b3480156102d157600080fd5b506102da6109a6565b6040516102e791906127ce565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190612815565b6109ac565b005b34801561032557600080fd5b5061032e6109d1565b60405161033b91906127ce565b60405180910390f35b61035e60048036038101906103599190612842565b6109e8565b005b34801561036c57600080fd5b50610375610bca565b005b610391600480360381019061038c9190612842565b610c62565b005b34801561039f57600080fd5b506103ba60048036038101906103b5919061269d565b610e44565b005b3480156103c857600080fd5b506103d1610e56565b6040516103de9190612591565b60405180910390f35b3480156103f357600080fd5b506103fc610e69565b6040516104099190612645565b60405180910390f35b34801561041e57600080fd5b506104396004803603810190610434919061269d565b610ef7565b604051610446919061270b565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612792565b610f09565b60405161048391906127ce565b60405180910390f35b34801561049857600080fd5b506104a1610fc1565b005b3480156104af57600080fd5b506104ca60048036038101906104c591906129ca565b610fd5565b005b3480156104d857600080fd5b506104e1610ff7565b6040516104ee919061270b565b60405180910390f35b34801561050357600080fd5b5061050c611021565b60405161051991906127ce565b60405180910390f35b34801561052e57600080fd5b50610537611027565b6040516105449190612645565b60405180910390f35b6105676004803603810190610562919061269d565b6110b9565b005b34801561057557600080fd5b50610590600480360381019061058b9190612a13565b611363565b005b6105ac60048036038101906105a79190612af4565b61146e565b005b3480156105ba57600080fd5b506105c3611653565b6040516105d091906127ce565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061269d565b611659565b60405161060d9190612645565b60405180910390f35b34801561062257600080fd5b5061062b611700565b60405161063891906127ce565b60405180910390f35b34801561064d57600080fd5b5061066860048036038101906106639190612b77565b611706565b6040516106759190612591565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190612792565b61179a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461074890612be6565b80601f016020809104026020016040519081016040528092919081815260200182805461077490612be6565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b60006107d68261181d565b61080c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085582610ef7565b90508073ffffffffffffffffffffffffffffffffffffffff1661087661187c565b73ffffffffffffffffffffffffffffffffffffffff16146108d9576108a28161089d61187c565b611706565b6108d8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f6020528060005260406000206000915090505481565b600b5481565b6109b4611884565b80601060006101000a81548160ff02191690831515021790555050565b60006109db611902565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610bb8573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a5a57610a55848484611907565b610bc4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610aa3929190612c17565b602060405180830381865afa158015610ac0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae49190612c55565b8015610b7657506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610b34929190612c17565b602060405180830381865afa158015610b51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b759190612c55565b5b610bb757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610bae919061270b565b60405180910390fd5b5b610bc3848484611907565b5b50505050565b610bd2611884565b610bda611c29565b6000610be4610ff7565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c0790612cb3565b60006040518083038185875af1925050503d8060008114610c44576040519150601f19603f3d011682016040523d82523d6000602084013e610c49565b606091505b5050905080610c5757600080fd5b50610c60611c78565b565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e32573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cd457610ccf848484611c82565b610e3e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d1d929190612c17565b602060405180830381865afa158015610d3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5e9190612c55565b8015610df057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610dae929190612c17565b602060405180830381865afa158015610dcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610def9190612c55565b5b610e3157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e28919061270b565b60405180910390fd5b5b610e3d848484611c82565b5b50505050565b610e4c611884565b80600b8190555050565b601060009054906101000a900460ff1681565b600a8054610e7690612be6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea290612be6565b8015610eef5780601f10610ec457610100808354040283529160200191610eef565b820191906000526020600020905b815481529060010190602001808311610ed257829003601f168201915b505050505081565b6000610f0282611ca2565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f70576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fc9611884565b610fd36000611d6e565b565b610fdd611884565b80600a9080519060200190610ff392919061243a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606003805461103690612be6565b80601f016020809104026020016040519081016040528092919081815260200182805461106290612be6565b80156110af5780601f10611084576101008083540402835291602001916110af565b820191906000526020600020905b81548152906001019060200180831161109257829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90612d14565b60405180910390fd5b60008111801561113a5750600d548111155b611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090612d80565b60405180910390fd5b600e5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c79190612dcf565b1115611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff90612e71565b60405180910390fd5b600c54816112146109d1565b61121e9190612dcf565b111561125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690612e71565b60405180910390fd5b80600b5461126d9190612e91565b3410156112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690612f37565b60405180910390fd5b601060009054906101000a900460ff16156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690612fa3565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134e9190612dcf565b9250508190555061135f3383611e34565b5050565b806007600061137061187c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661141d61187c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114629190612591565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561163f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114e1576114dc85858585611e52565b61164c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161152a929190612c17565b602060405180830381865afa158015611547573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156b9190612c55565b80156115fd57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016115bb929190612c17565b602060405180830381865afa1580156115d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fc9190612c55565b5b61163e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611635919061270b565b60405180910390fd5b5b61164b85858585611e52565b5b5050505050565b600e5481565b60606116648261181d565b6116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90613035565b60405180910390fd5b60006116ad611ec5565b905060008151116116cd57604051806020016040528060008152506116f8565b806116d784611f57565b6040516020016116e8929190613091565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117a2611884565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890613127565b60405180910390fd5b61181a81611d6e565b50565b600081611828611902565b11158015611837575060005482105b8015611875575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61188c611fa7565b73ffffffffffffffffffffffffffffffffffffffff166118aa610ff7565b73ffffffffffffffffffffffffffffffffffffffff1614611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790613193565b60405180910390fd5b565b600090565b600061191282611ca2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611979576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061198584611faf565b9150915061199b818761199661187c565b611fd6565b6119e7576119b0866119ab61187c565b611706565b6119e6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611a4d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a5a868686600161201a565b8015611a6557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611b3385611b0f888887612020565b7c020000000000000000000000000000000000000000000000000000000017612048565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611bb95760006001850190506000600460008381526020019081526020016000205403611bb7576000548114611bb6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c218686866001612073565b505050505050565b600260095403611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c65906131ff565b60405180910390fd5b6002600981905550565b6001600981905550565b611c9d8383836040518060200160405280600081525061146e565b505050565b60008082905080611cb1611902565b11611d3757600054811015611d365760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d34575b60008103611d2a576004600083600190039350838152602001908152602001600020549050611d00565b8092505050611d69565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e4e828260405180602001604052806000815250612079565b5050565b611e5d8484846109e8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ebf57611e8884848484612116565b611ebe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a8054611ed490612be6565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0090612be6565b8015611f4d5780601f10611f2257610100808354040283529160200191611f4d565b820191906000526020600020905b815481529060010190602001808311611f3057829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f9257600184039350600a81066030018453600a8104905080611f70575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612037868684612266565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612083838361226f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211157600080549050600083820390505b6120c36000868380600101945086612116565b6120f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120b057816000541461210e57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261213c61187c565b8786866040518563ffffffff1660e01b815260040161215e9493929190613274565b6020604051808303816000875af192505050801561219a57506040513d601f19601f8201168201806040525081019061219791906132d5565b60015b612213573d80600081146121ca576040519150601f19603f3d011682016040523d82523d6000602084013e6121cf565b606091505b50600081510361220b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036122af576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122bc600084838561201a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612333836123246000866000612020565b61232d8561242a565b17612048565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123d457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612399565b506000820361240f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124256000848385612073565b505050565b60006001821460e11b9050919050565b82805461244690612be6565b90600052602060002090601f01602090048101928261246857600085556124af565b82601f1061248157805160ff19168380011785556124af565b828001600101855582156124af579182015b828111156124ae578251825591602001919060010190612493565b5b5090506124bc91906124c0565b5090565b5b808211156124d95760008160009055506001016124c1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612526816124f1565b811461253157600080fd5b50565b6000813590506125438161251d565b92915050565b60006020828403121561255f5761255e6124e7565b5b600061256d84828501612534565b91505092915050565b60008115159050919050565b61258b81612576565b82525050565b60006020820190506125a66000830184612582565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125e65780820151818401526020810190506125cb565b838111156125f5576000848401525b50505050565b6000601f19601f8301169050919050565b6000612617826125ac565b61262181856125b7565b93506126318185602086016125c8565b61263a816125fb565b840191505092915050565b6000602082019050818103600083015261265f818461260c565b905092915050565b6000819050919050565b61267a81612667565b811461268557600080fd5b50565b60008135905061269781612671565b92915050565b6000602082840312156126b3576126b26124e7565b5b60006126c184828501612688565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126f5826126ca565b9050919050565b612705816126ea565b82525050565b600060208201905061272060008301846126fc565b92915050565b61272f816126ea565b811461273a57600080fd5b50565b60008135905061274c81612726565b92915050565b60008060408385031215612769576127686124e7565b5b60006127778582860161273d565b925050602061278885828601612688565b9150509250929050565b6000602082840312156127a8576127a76124e7565b5b60006127b68482850161273d565b91505092915050565b6127c881612667565b82525050565b60006020820190506127e360008301846127bf565b92915050565b6127f281612576565b81146127fd57600080fd5b50565b60008135905061280f816127e9565b92915050565b60006020828403121561282b5761282a6124e7565b5b600061283984828501612800565b91505092915050565b60008060006060848603121561285b5761285a6124e7565b5b60006128698682870161273d565b935050602061287a8682870161273d565b925050604061288b86828701612688565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128d7826125fb565b810181811067ffffffffffffffff821117156128f6576128f561289f565b5b80604052505050565b60006129096124dd565b905061291582826128ce565b919050565b600067ffffffffffffffff8211156129355761293461289f565b5b61293e826125fb565b9050602081019050919050565b82818337600083830152505050565b600061296d6129688461291a565b6128ff565b9050828152602081018484840111156129895761298861289a565b5b61299484828561294b565b509392505050565b600082601f8301126129b1576129b0612895565b5b81356129c184826020860161295a565b91505092915050565b6000602082840312156129e0576129df6124e7565b5b600082013567ffffffffffffffff8111156129fe576129fd6124ec565b5b612a0a8482850161299c565b91505092915050565b60008060408385031215612a2a57612a296124e7565b5b6000612a388582860161273d565b9250506020612a4985828601612800565b9150509250929050565b600067ffffffffffffffff821115612a6e57612a6d61289f565b5b612a77826125fb565b9050602081019050919050565b6000612a97612a9284612a53565b6128ff565b905082815260208101848484011115612ab357612ab261289a565b5b612abe84828561294b565b509392505050565b600082601f830112612adb57612ada612895565b5b8135612aeb848260208601612a84565b91505092915050565b60008060008060808587031215612b0e57612b0d6124e7565b5b6000612b1c8782880161273d565b9450506020612b2d8782880161273d565b9350506040612b3e87828801612688565b925050606085013567ffffffffffffffff811115612b5f57612b5e6124ec565b5b612b6b87828801612ac6565b91505092959194509250565b60008060408385031215612b8e57612b8d6124e7565b5b6000612b9c8582860161273d565b9250506020612bad8582860161273d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bfe57607f821691505b602082108103612c1157612c10612bb7565b5b50919050565b6000604082019050612c2c60008301856126fc565b612c3960208301846126fc565b9392505050565b600081519050612c4f816127e9565b92915050565b600060208284031215612c6b57612c6a6124e7565b5b6000612c7984828501612c40565b91505092915050565b600081905092915050565b50565b6000612c9d600083612c82565b9150612ca882612c8d565b600082019050919050565b6000612cbe82612c90565b9150819050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612cfe601e836125b7565b9150612d0982612cc8565b602082019050919050565b60006020820190508181036000830152612d2d81612cf1565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612d6a6014836125b7565b9150612d7582612d34565b602082019050919050565b60006020820190508181036000830152612d9981612d5d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dda82612667565b9150612de583612667565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e1a57612e19612da0565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612e5b6014836125b7565b9150612e6682612e25565b602082019050919050565b60006020820190508181036000830152612e8a81612e4e565b9050919050565b6000612e9c82612667565b9150612ea783612667565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ee057612edf612da0565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000612f216013836125b7565b9150612f2c82612eeb565b602082019050919050565b60006020820190508181036000830152612f5081612f14565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000612f8d6017836125b7565b9150612f9882612f57565b602082019050919050565b60006020820190508181036000830152612fbc81612f80565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061301f602f836125b7565b915061302a82612fc3565b604082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b600081905092915050565b600061306b826125ac565b6130758185613055565b93506130858185602086016125c8565b80840191505092915050565b600061309d8285613060565b91506130a98284613060565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131116026836125b7565b915061311c826130b5565b604082019050919050565b6000602082019050818103600083015261314081613104565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061317d6020836125b7565b915061318882613147565b602082019050919050565b600060208201905081810360008301526131ac81613170565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006131e9601f836125b7565b91506131f4826131b3565b602082019050919050565b60006020820190508181036000830152613218816131dc565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132468261321f565b613250818561322a565b93506132608185602086016125c8565b613269816125fb565b840191505092915050565b600060808201905061328960008301876126fc565b61329660208301866126fc565b6132a360408301856127bf565b81810360608301526132b5818461323b565b905095945050505050565b6000815190506132cf8161251d565b92915050565b6000602082840312156132eb576132ea6124e7565b5b60006132f9848285016132c0565b9150509291505056fea264697066735822122000c6083bf73f8dc83d4cfd304e7eeeafc6f591cbe831e70cbf9f337b6f08574e64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b496e20746865206461726b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044441524b00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146105d9578063d5abeb0114610616578063e985e9c514610641578063f2fde38b1461067e576101c2565b8063a0712d681461054d578063a22cb46514610569578063b88d4fde14610592578063bc951b91146105ae576101c2565b80637ec4a659116100d15780637ec4a659146104a35780638da5cb5b146104cc57806394354fd0146104f757806395d89b4114610522576101c2565b80636352211e1461041257806370a082311461044f578063715018a61461048c576101c2565b806318160ddd1161016457806342842e0e1161013e57806342842e0e1461037757806344a0d68a146103935780635c975abb146103bc57806362b99ad4146103e7576101c2565b806318160ddd1461031957806323b872dd146103445780633ccfd60b14610360576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630a398b881461028857806313faede6146102c557806316c38b3c146102f0576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612549565b6106a7565b6040516101fb9190612591565b60405180910390f35b34801561021057600080fd5b50610219610739565b6040516102269190612645565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061269d565b6107cb565b604051610263919061270b565b60405180910390f35b61028660048036038101906102819190612752565b61084a565b005b34801561029457600080fd5b506102af60048036038101906102aa9190612792565b61098e565b6040516102bc91906127ce565b60405180910390f35b3480156102d157600080fd5b506102da6109a6565b6040516102e791906127ce565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190612815565b6109ac565b005b34801561032557600080fd5b5061032e6109d1565b60405161033b91906127ce565b60405180910390f35b61035e60048036038101906103599190612842565b6109e8565b005b34801561036c57600080fd5b50610375610bca565b005b610391600480360381019061038c9190612842565b610c62565b005b34801561039f57600080fd5b506103ba60048036038101906103b5919061269d565b610e44565b005b3480156103c857600080fd5b506103d1610e56565b6040516103de9190612591565b60405180910390f35b3480156103f357600080fd5b506103fc610e69565b6040516104099190612645565b60405180910390f35b34801561041e57600080fd5b506104396004803603810190610434919061269d565b610ef7565b604051610446919061270b565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612792565b610f09565b60405161048391906127ce565b60405180910390f35b34801561049857600080fd5b506104a1610fc1565b005b3480156104af57600080fd5b506104ca60048036038101906104c591906129ca565b610fd5565b005b3480156104d857600080fd5b506104e1610ff7565b6040516104ee919061270b565b60405180910390f35b34801561050357600080fd5b5061050c611021565b60405161051991906127ce565b60405180910390f35b34801561052e57600080fd5b50610537611027565b6040516105449190612645565b60405180910390f35b6105676004803603810190610562919061269d565b6110b9565b005b34801561057557600080fd5b50610590600480360381019061058b9190612a13565b611363565b005b6105ac60048036038101906105a79190612af4565b61146e565b005b3480156105ba57600080fd5b506105c3611653565b6040516105d091906127ce565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061269d565b611659565b60405161060d9190612645565b60405180910390f35b34801561062257600080fd5b5061062b611700565b60405161063891906127ce565b60405180910390f35b34801561064d57600080fd5b5061066860048036038101906106639190612b77565b611706565b6040516106759190612591565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190612792565b61179a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461074890612be6565b80601f016020809104026020016040519081016040528092919081815260200182805461077490612be6565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b60006107d68261181d565b61080c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085582610ef7565b90508073ffffffffffffffffffffffffffffffffffffffff1661087661187c565b73ffffffffffffffffffffffffffffffffffffffff16146108d9576108a28161089d61187c565b611706565b6108d8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f6020528060005260406000206000915090505481565b600b5481565b6109b4611884565b80601060006101000a81548160ff02191690831515021790555050565b60006109db611902565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610bb8573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a5a57610a55848484611907565b610bc4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610aa3929190612c17565b602060405180830381865afa158015610ac0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae49190612c55565b8015610b7657506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610b34929190612c17565b602060405180830381865afa158015610b51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b759190612c55565b5b610bb757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610bae919061270b565b60405180910390fd5b5b610bc3848484611907565b5b50505050565b610bd2611884565b610bda611c29565b6000610be4610ff7565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c0790612cb3565b60006040518083038185875af1925050503d8060008114610c44576040519150601f19603f3d011682016040523d82523d6000602084013e610c49565b606091505b5050905080610c5757600080fd5b50610c60611c78565b565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e32573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cd457610ccf848484611c82565b610e3e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d1d929190612c17565b602060405180830381865afa158015610d3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5e9190612c55565b8015610df057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610dae929190612c17565b602060405180830381865afa158015610dcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610def9190612c55565b5b610e3157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e28919061270b565b60405180910390fd5b5b610e3d848484611c82565b5b50505050565b610e4c611884565b80600b8190555050565b601060009054906101000a900460ff1681565b600a8054610e7690612be6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea290612be6565b8015610eef5780601f10610ec457610100808354040283529160200191610eef565b820191906000526020600020905b815481529060010190602001808311610ed257829003601f168201915b505050505081565b6000610f0282611ca2565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f70576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fc9611884565b610fd36000611d6e565b565b610fdd611884565b80600a9080519060200190610ff392919061243a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606003805461103690612be6565b80601f016020809104026020016040519081016040528092919081815260200182805461106290612be6565b80156110af5780601f10611084576101008083540402835291602001916110af565b820191906000526020600020905b81548152906001019060200180831161109257829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90612d14565b60405180910390fd5b60008111801561113a5750600d548111155b611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090612d80565b60405180910390fd5b600e5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c79190612dcf565b1115611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff90612e71565b60405180910390fd5b600c54816112146109d1565b61121e9190612dcf565b111561125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690612e71565b60405180910390fd5b80600b5461126d9190612e91565b3410156112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690612f37565b60405180910390fd5b601060009054906101000a900460ff16156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690612fa3565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134e9190612dcf565b9250508190555061135f3383611e34565b5050565b806007600061137061187c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661141d61187c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114629190612591565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561163f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114e1576114dc85858585611e52565b61164c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161152a929190612c17565b602060405180830381865afa158015611547573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156b9190612c55565b80156115fd57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016115bb929190612c17565b602060405180830381865afa1580156115d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fc9190612c55565b5b61163e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611635919061270b565b60405180910390fd5b5b61164b85858585611e52565b5b5050505050565b600e5481565b60606116648261181d565b6116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90613035565b60405180910390fd5b60006116ad611ec5565b905060008151116116cd57604051806020016040528060008152506116f8565b806116d784611f57565b6040516020016116e8929190613091565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117a2611884565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890613127565b60405180910390fd5b61181a81611d6e565b50565b600081611828611902565b11158015611837575060005482105b8015611875575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61188c611fa7565b73ffffffffffffffffffffffffffffffffffffffff166118aa610ff7565b73ffffffffffffffffffffffffffffffffffffffff1614611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790613193565b60405180910390fd5b565b600090565b600061191282611ca2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611979576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061198584611faf565b9150915061199b818761199661187c565b611fd6565b6119e7576119b0866119ab61187c565b611706565b6119e6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611a4d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a5a868686600161201a565b8015611a6557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611b3385611b0f888887612020565b7c020000000000000000000000000000000000000000000000000000000017612048565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611bb95760006001850190506000600460008381526020019081526020016000205403611bb7576000548114611bb6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c218686866001612073565b505050505050565b600260095403611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c65906131ff565b60405180910390fd5b6002600981905550565b6001600981905550565b611c9d8383836040518060200160405280600081525061146e565b505050565b60008082905080611cb1611902565b11611d3757600054811015611d365760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d34575b60008103611d2a576004600083600190039350838152602001908152602001600020549050611d00565b8092505050611d69565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e4e828260405180602001604052806000815250612079565b5050565b611e5d8484846109e8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ebf57611e8884848484612116565b611ebe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a8054611ed490612be6565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0090612be6565b8015611f4d5780601f10611f2257610100808354040283529160200191611f4d565b820191906000526020600020905b815481529060010190602001808311611f3057829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f9257600184039350600a81066030018453600a8104905080611f70575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612037868684612266565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612083838361226f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211157600080549050600083820390505b6120c36000868380600101945086612116565b6120f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120b057816000541461210e57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261213c61187c565b8786866040518563ffffffff1660e01b815260040161215e9493929190613274565b6020604051808303816000875af192505050801561219a57506040513d601f19601f8201168201806040525081019061219791906132d5565b60015b612213573d80600081146121ca576040519150601f19603f3d011682016040523d82523d6000602084013e6121cf565b606091505b50600081510361220b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036122af576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122bc600084838561201a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612333836123246000866000612020565b61232d8561242a565b17612048565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123d457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612399565b506000820361240f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124256000848385612073565b505050565b60006001821460e11b9050919050565b82805461244690612be6565b90600052602060002090601f01602090048101928261246857600085556124af565b82601f1061248157805160ff19168380011785556124af565b828001600101855582156124af579182015b828111156124ae578251825591602001919060010190612493565b5b5090506124bc91906124c0565b5090565b5b808211156124d95760008160009055506001016124c1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612526816124f1565b811461253157600080fd5b50565b6000813590506125438161251d565b92915050565b60006020828403121561255f5761255e6124e7565b5b600061256d84828501612534565b91505092915050565b60008115159050919050565b61258b81612576565b82525050565b60006020820190506125a66000830184612582565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125e65780820151818401526020810190506125cb565b838111156125f5576000848401525b50505050565b6000601f19601f8301169050919050565b6000612617826125ac565b61262181856125b7565b93506126318185602086016125c8565b61263a816125fb565b840191505092915050565b6000602082019050818103600083015261265f818461260c565b905092915050565b6000819050919050565b61267a81612667565b811461268557600080fd5b50565b60008135905061269781612671565b92915050565b6000602082840312156126b3576126b26124e7565b5b60006126c184828501612688565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126f5826126ca565b9050919050565b612705816126ea565b82525050565b600060208201905061272060008301846126fc565b92915050565b61272f816126ea565b811461273a57600080fd5b50565b60008135905061274c81612726565b92915050565b60008060408385031215612769576127686124e7565b5b60006127778582860161273d565b925050602061278885828601612688565b9150509250929050565b6000602082840312156127a8576127a76124e7565b5b60006127b68482850161273d565b91505092915050565b6127c881612667565b82525050565b60006020820190506127e360008301846127bf565b92915050565b6127f281612576565b81146127fd57600080fd5b50565b60008135905061280f816127e9565b92915050565b60006020828403121561282b5761282a6124e7565b5b600061283984828501612800565b91505092915050565b60008060006060848603121561285b5761285a6124e7565b5b60006128698682870161273d565b935050602061287a8682870161273d565b925050604061288b86828701612688565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128d7826125fb565b810181811067ffffffffffffffff821117156128f6576128f561289f565b5b80604052505050565b60006129096124dd565b905061291582826128ce565b919050565b600067ffffffffffffffff8211156129355761293461289f565b5b61293e826125fb565b9050602081019050919050565b82818337600083830152505050565b600061296d6129688461291a565b6128ff565b9050828152602081018484840111156129895761298861289a565b5b61299484828561294b565b509392505050565b600082601f8301126129b1576129b0612895565b5b81356129c184826020860161295a565b91505092915050565b6000602082840312156129e0576129df6124e7565b5b600082013567ffffffffffffffff8111156129fe576129fd6124ec565b5b612a0a8482850161299c565b91505092915050565b60008060408385031215612a2a57612a296124e7565b5b6000612a388582860161273d565b9250506020612a4985828601612800565b9150509250929050565b600067ffffffffffffffff821115612a6e57612a6d61289f565b5b612a77826125fb565b9050602081019050919050565b6000612a97612a9284612a53565b6128ff565b905082815260208101848484011115612ab357612ab261289a565b5b612abe84828561294b565b509392505050565b600082601f830112612adb57612ada612895565b5b8135612aeb848260208601612a84565b91505092915050565b60008060008060808587031215612b0e57612b0d6124e7565b5b6000612b1c8782880161273d565b9450506020612b2d8782880161273d565b9350506040612b3e87828801612688565b925050606085013567ffffffffffffffff811115612b5f57612b5e6124ec565b5b612b6b87828801612ac6565b91505092959194509250565b60008060408385031215612b8e57612b8d6124e7565b5b6000612b9c8582860161273d565b9250506020612bad8582860161273d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bfe57607f821691505b602082108103612c1157612c10612bb7565b5b50919050565b6000604082019050612c2c60008301856126fc565b612c3960208301846126fc565b9392505050565b600081519050612c4f816127e9565b92915050565b600060208284031215612c6b57612c6a6124e7565b5b6000612c7984828501612c40565b91505092915050565b600081905092915050565b50565b6000612c9d600083612c82565b9150612ca882612c8d565b600082019050919050565b6000612cbe82612c90565b9150819050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612cfe601e836125b7565b9150612d0982612cc8565b602082019050919050565b60006020820190508181036000830152612d2d81612cf1565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612d6a6014836125b7565b9150612d7582612d34565b602082019050919050565b60006020820190508181036000830152612d9981612d5d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dda82612667565b9150612de583612667565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e1a57612e19612da0565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612e5b6014836125b7565b9150612e6682612e25565b602082019050919050565b60006020820190508181036000830152612e8a81612e4e565b9050919050565b6000612e9c82612667565b9150612ea783612667565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ee057612edf612da0565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000612f216013836125b7565b9150612f2c82612eeb565b602082019050919050565b60006020820190508181036000830152612f5081612f14565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000612f8d6017836125b7565b9150612f9882612f57565b602082019050919050565b60006020820190508181036000830152612fbc81612f80565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061301f602f836125b7565b915061302a82612fc3565b604082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b600081905092915050565b600061306b826125ac565b6130758185613055565b93506130858185602086016125c8565b80840191505092915050565b600061309d8285613060565b91506130a98284613060565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131116026836125b7565b915061311c826130b5565b604082019050919050565b6000602082019050818103600083015261314081613104565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061317d6020836125b7565b915061318882613147565b602082019050919050565b600060208201905081810360008301526131ac81613170565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006131e9601f836125b7565b91506131f4826131b3565b602082019050919050565b60006020820190508181036000830152613218816131dc565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132468261321f565b613250818561322a565b93506132608185602086016125c8565b613269816125fb565b840191505092915050565b600060808201905061328960008301876126fc565b61329660208301866126fc565b6132a360408301856127bf565b81810360608301526132b5818461323b565b905095945050505050565b6000815190506132cf8161251d565b92915050565b6000602082840312156132eb576132ea6124e7565b5b60006132f9848285016132c0565b9150509291505056fea264697066735822122000c6083bf73f8dc83d4cfd304e7eeeafc6f591cbe831e70cbf9f337b6f08574e64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b496e20746865206461726b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044441524b00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): In the dark
Arg [1] : _tokenSymbol (string): DARK

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 496e20746865206461726b000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4441524b00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

62664:2660:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29556:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30458:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36949:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36382:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62947:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62785:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64978:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26209:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63157:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65061:150;;;;;;;;;;;;;:::i;:::-;;63328:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64792:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63002:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62750:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31851:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27393:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10335:103;;;;;;;;;;;;;:::i;:::-;;64872:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9687:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62859:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30634:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64196:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37507:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63507:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62901:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64424:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62823:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37898:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10593:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29556:639;29641:4;29980:10;29965:25;;:11;:25;;;;:102;;;;30057:10;30042:25;;:11;:25;;;;29965:102;:179;;;;30134:10;30119:25;;:11;:25;;;;29965:179;29945:199;;29556:639;;;:::o;30458:100::-;30512:13;30545:5;30538:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30458:100;:::o;36949:218::-;37025:7;37050:16;37058:7;37050;:16::i;:::-;37045:64;;37075:34;;;;;;;;;;;;;;37045:64;37129:15;:24;37145:7;37129:24;;;;;;;;;;;:30;;;;;;;;;;;;37122:37;;36949:218;;;:::o;36382:408::-;36471:13;36487:16;36495:7;36487;:16::i;:::-;36471:32;;36543:5;36520:28;;:19;:17;:19::i;:::-;:28;;;36516:175;;36568:44;36585:5;36592:19;:17;:19::i;:::-;36568:16;:44::i;:::-;36563:128;;36640:35;;;;;;;;;;;;;;36563:128;36516:175;36736:2;36703:15;:24;36719:7;36703:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36774:7;36770:2;36754:28;;36763:5;36754:28;;;;;;;;;;;;36460:330;36382:408;;:::o;62947:48::-;;;;;;;;;;;;;;;;;:::o;62785:33::-;;;;:::o;64978:77::-;9573:13;:11;:13::i;:::-;65043:6:::1;65034;;:15;;;;;;;;;;;;;;;;;;64978:77:::0;:::o;26209:323::-;26270:7;26498:15;:13;:15::i;:::-;26483:12;;26467:13;;:28;:46;26460:53;;26209:323;:::o;63157:165::-;63266:4;3623:1;2437:42;3577:43;;;:47;3573:699;;;3864:10;3856:18;;:4;:18;;;3852:85;;63279:37:::1;63298:4;63304:2;63308:7;63279:18;:37::i;:::-;3915:7:::0;;3852:85;2437:42;3997:40;;;4046:4;4053:10;3997:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2437:42;4093:40;;;4142:4;4149;4093:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3997:157;3951:310;;4234:10;4215:30;;;;;;;;;;;:::i;:::-;;;;;;;;3951:310;3573:699;63279:37:::1;63298:4;63304:2;63308:7;63279:18;:37::i;:::-;63157:165:::0;;;;;:::o;65061:150::-;9573:13;:11;:13::i;:::-;6958:21:::1;:19;:21::i;:::-;65119:7:::2;65140;:5;:7::i;:::-;65132:21;;65161;65132:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65118:69;;;65202:2;65194:11;;;::::0;::::2;;65111:100;7002:20:::1;:18;:20::i;:::-;65061:150::o:0;63328:173::-;63441:4;3623:1;2437:42;3577:43;;;:47;3573:699;;;3864:10;3856:18;;:4;:18;;;3852:85;;63454:41:::1;63477:4;63483:2;63487:7;63454:22;:41::i;:::-;3915:7:::0;;3852:85;2437:42;3997:40;;;4046:4;4053:10;3997:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2437:42;4093:40;;;4142:4;4149;4093:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3997:157;3951:310;;4234:10;4215:30;;;;;;;;;;;:::i;:::-;;;;;;;;3951:310;3573:699;63454:41:::1;63477:4;63483:2;63487:7;63454:22;:41::i;:::-;63328:173:::0;;;;;:::o;64792:74::-;9573:13;:11;:13::i;:::-;64855:5:::1;64848:4;:12;;;;64792:74:::0;:::o;63002:25::-;;;;;;;;;;;;;:::o;62750:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31851:152::-;31923:7;31966:27;31985:7;31966:18;:27::i;:::-;31943:52;;31851:152;;;:::o;27393:233::-;27465:7;27506:1;27489:19;;:5;:19;;;27485:60;;27517:28;;;;;;;;;;;;;;27485:60;21552:13;27563:18;:25;27582:5;27563:25;;;;;;;;;;;;;;;;:55;27556:62;;27393:233;;;:::o;10335:103::-;9573:13;:11;:13::i;:::-;10400:30:::1;10427:1;10400:18;:30::i;:::-;10335:103::o:0;64872:100::-;9573:13;:11;:13::i;:::-;64956:10:::1;64944:9;:22;;;;;;;;;;;;:::i;:::-;;64872:100:::0;:::o;9687:87::-;9733:7;9760:6;;;;;;;;;;;9753:13;;9687:87;:::o;62859:37::-;;;;:::o;30634:104::-;30690:13;30723:7;30716:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30634:104;:::o;64196:222::-;64261:11;63785:9;63771:23;;:10;:23;;;63763:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;63858:1;63844:11;:15;:52;;;;;63878:18;;63863:11;:33;;63844:52;63836:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;63979:22;;63964:11;63936:13;:25;63950:10;63936:25;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:65;;63928:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;64072:9;;64057:11;64041:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;64033:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64141:11;64134:4;;:18;;;;:::i;:::-;64121:9;:31;;64113:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;64290:6:::1;;;;;;;;;;;64289:7;64281:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;64360:11;64331:13;:25;64345:10;64331:25;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;64378:34;64388:10;64400:11;64378:9;:34::i;:::-;64196:222:::0;;:::o;37507:234::-;37654:8;37602:18;:39;37621:19;:17;:19::i;:::-;37602:39;;;;;;;;;;;;;;;:49;37642:8;37602:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37714:8;37678:55;;37693:19;:17;:19::i;:::-;37678:55;;;37724:8;37678:55;;;;;;:::i;:::-;;;;;;;;37507:234;;:::o;63507:198::-;63639:4;3623:1;2437:42;3577:43;;;:47;3573:699;;;3864:10;3856:18;;:4;:18;;;3852:85;;63652:47:::1;63675:4;63681:2;63685:7;63694:4;63652:22;:47::i;:::-;3915:7:::0;;3852:85;2437:42;3997:40;;;4046:4;4053:10;3997:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2437:42;4093:40;;;4142:4;4149;4093:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3997:157;3951:310;;4234:10;4215:30;;;;;;;;;;;:::i;:::-;;;;;;;;3951:310;3573:699;63652:47:::1;63675:4;63681:2;63685:7;63694:4;63652:22;:47::i;:::-;63507:198:::0;;;;;;:::o;62901:41::-;;;;:::o;64424:362::-;64498:13;64528:17;64536:8;64528:7;:17::i;:::-;64520:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;64606:28;64637:10;:8;:10::i;:::-;64606:41;;64692:1;64667:14;64661:28;:32;:119;;;;;;;;;;;;;;;;;64729:14;64745:19;64755:8;64745:9;:19::i;:::-;64712:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64661:119;64654:126;;;64424:362;;;:::o;62823:31::-;;;;:::o;37898:164::-;37995:4;38019:18;:25;38038:5;38019:25;;;;;;;;;;;;;;;:35;38045:8;38019:35;;;;;;;;;;;;;;;;;;;;;;;;;38012:42;;37898:164;;;;:::o;10593:201::-;9573:13;:11;:13::i;:::-;10702:1:::1;10682:22;;:8;:22;;::::0;10674:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10758:28;10777:8;10758:18;:28::i;:::-;10593:201:::0;:::o;38320:282::-;38385:4;38441:7;38422:15;:13;:15::i;:::-;:26;;:66;;;;;38475:13;;38465:7;:23;38422:66;:153;;;;;38574:1;22328:8;38526:17;:26;38544:7;38526:26;;;;;;;;;;;;:44;:49;38422:153;38402:173;;38320:282;;;:::o;60628:105::-;60688:7;60715:10;60708:17;;60628:105;:::o;9852:132::-;9927:12;:10;:12::i;:::-;9916:23;;:7;:5;:7::i;:::-;:23;;;9908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9852:132::o;25725:92::-;25781:7;25725:92;:::o;40588:2825::-;40730:27;40760;40779:7;40760:18;:27::i;:::-;40730:57;;40845:4;40804:45;;40820:19;40804:45;;;40800:86;;40858:28;;;;;;;;;;;;;;40800:86;40900:27;40929:23;40956:35;40983:7;40956:26;:35::i;:::-;40899:92;;;;41091:68;41116:15;41133:4;41139:19;:17;:19::i;:::-;41091:24;:68::i;:::-;41086:180;;41179:43;41196:4;41202:19;:17;:19::i;:::-;41179:16;:43::i;:::-;41174:92;;41231:35;;;;;;;;;;;;;;41174:92;41086:180;41297:1;41283:16;;:2;:16;;;41279:52;;41308:23;;;;;;;;;;;;;;41279:52;41344:43;41366:4;41372:2;41376:7;41385:1;41344:21;:43::i;:::-;41480:15;41477:160;;;41620:1;41599:19;41592:30;41477:160;42017:18;:24;42036:4;42017:24;;;;;;;;;;;;;;;;42015:26;;;;;;;;;;;;42086:18;:22;42105:2;42086:22;;;;;;;;;;;;;;;;42084:24;;;;;;;;;;;42408:146;42445:2;42494:45;42509:4;42515:2;42519:19;42494:14;:45::i;:::-;22608:8;42466:73;42408:18;:146::i;:::-;42379:17;:26;42397:7;42379:26;;;;;;;;;;;:175;;;;42725:1;22608:8;42674:19;:47;:52;42670:627;;42747:19;42779:1;42769:7;:11;42747:33;;42936:1;42902:17;:30;42920:11;42902:30;;;;;;;;;;;;:35;42898:384;;43040:13;;43025:11;:28;43021:242;;43220:19;43187:17;:30;43205:11;43187:30;;;;;;;;;;;:52;;;;43021:242;42898:384;42728:569;42670:627;43344:7;43340:2;43325:27;;43334:4;43325:27;;;;;;;;;;;;43363:42;43384:4;43390:2;43394:7;43403:1;43363:20;:42::i;:::-;40719:2694;;;40588:2825;;;:::o;7038:293::-;6440:1;7172:7;;:19;7164:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;6440:1;7305:7;:18;;;;7038:293::o;7339:213::-;6396:1;7522:7;:22;;;;7339:213::o;43509:193::-;43655:39;43672:4;43678:2;43682:7;43655:39;;;;;;;;;;;;:16;:39::i;:::-;43509:193;;;:::o;33006:1275::-;33073:7;33093:12;33108:7;33093:22;;33176:4;33157:15;:13;:15::i;:::-;:23;33153:1061;;33210:13;;33203:4;:20;33199:1015;;;33248:14;33265:17;:23;33283:4;33265:23;;;;;;;;;;;;33248:40;;33382:1;22328:8;33354:6;:24;:29;33350:845;;34019:113;34036:1;34026:6;:11;34019:113;;34079:17;:25;34097:6;;;;;;;34079:25;;;;;;;;;;;;34070:34;;34019:113;;;34165:6;34158:13;;;;;;33350:845;33225:989;33199:1015;33153:1061;34242:31;;;;;;;;;;;;;;33006:1275;;;;:::o;10954:191::-;11028:16;11047:6;;;;;;;;;;;11028:25;;11073:8;11064:6;;:17;;;;;;;;;;;;;;;;;;11128:8;11097:40;;11118:8;11097:40;;;;;;;;;;;;11017:128;10954:191;:::o;54460:112::-;54537:27;54547:2;54551:8;54537:27;;;;;;;;;;;;:9;:27::i;:::-;54460:112;;:::o;44300:407::-;44475:31;44488:4;44494:2;44498:7;44475:12;:31::i;:::-;44539:1;44521:2;:14;;;:19;44517:183;;44560:56;44591:4;44597:2;44601:7;44610:5;44560:30;:56::i;:::-;44555:145;;44644:40;;;;;;;;;;;;;;44555:145;44517:183;44300:407;;;;:::o;65217:104::-;65277:13;65306:9;65299:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65217:104;:::o;60835:1745::-;60900:17;61334:4;61327;61321:11;61317:22;61426:1;61420:4;61413:15;61501:4;61498:1;61494:12;61487:19;;61583:1;61578:3;61571:14;61687:3;61926:5;61908:428;61934:1;61908:428;;;61974:1;61969:3;61965:11;61958:18;;62145:2;62139:4;62135:13;62131:2;62127:22;62122:3;62114:36;62239:2;62233:4;62229:13;62221:21;;62306:4;61908:428;62296:25;61908:428;61912:21;62375:3;62370;62366:13;62490:4;62485:3;62481:14;62474:21;;62555:6;62550:3;62543:19;60939:1634;;;60835:1745;;;:::o;8238:98::-;8291:7;8318:10;8311:17;;8238:98;:::o;39483:485::-;39585:27;39614:23;39655:38;39696:15;:24;39712:7;39696:24;;;;;;;;;;;39655:65;;39873:18;39850:41;;39930:19;39924:26;39905:45;;39835:126;39483:485;;;:::o;38711:659::-;38860:11;39025:16;39018:5;39014:28;39005:37;;39185:16;39174:9;39170:32;39157:45;;39335:15;39324:9;39321:30;39313:5;39302:9;39299:20;39296:56;39286:66;;38711:659;;;;;:::o;45369:159::-;;;;;:::o;59937:311::-;60072:7;60092:16;22732:3;60118:19;:41;;60092:68;;22732:3;60186:31;60197:4;60203:2;60207:9;60186:10;:31::i;:::-;60178:40;;:62;;60171:69;;;59937:311;;;;;:::o;34829:450::-;34909:14;35077:16;35070:5;35066:28;35057:37;;35254:5;35240:11;35215:23;35211:41;35208:52;35201:5;35198:63;35188:73;;34829:450;;;;:::o;46193:158::-;;;;;:::o;53687:689::-;53818:19;53824:2;53828:8;53818:5;:19::i;:::-;53897:1;53879:2;:14;;;:19;53875:483;;53919:11;53933:13;;53919:27;;53965:13;53987:8;53981:3;:14;53965:30;;54014:233;54045:62;54084:1;54088:2;54092:7;;;;;;54101:5;54045:30;:62::i;:::-;54040:167;;54143:40;;;;;;;;;;;;;;54040:167;54242:3;54234:5;:11;54014:233;;54329:3;54312:13;;:20;54308:34;;54334:8;;;54308:34;53900:458;;53875:483;53687:689;;;:::o;46791:716::-;46954:4;47000:2;46975:45;;;47021:19;:17;:19::i;:::-;47042:4;47048:7;47057:5;46975:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46971:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47275:1;47258:6;:13;:18;47254:235;;47304:40;;;;;;;;;;;;;;47254:235;47447:6;47441:13;47432:6;47428:2;47424:15;47417:38;46971:529;47144:54;;;47134:64;;;:6;:64;;;;47127:71;;;46791:716;;;;;;:::o;59638:147::-;59775:6;59638:147;;;;;:::o;47969:2966::-;48042:20;48065:13;;48042:36;;48105:1;48093:8;:13;48089:44;;48115:18;;;;;;;;;;;;;;48089:44;48146:61;48176:1;48180:2;48184:12;48198:8;48146:21;:61::i;:::-;48690:1;21690:2;48660:1;:26;;48659:32;48647:8;:45;48621:18;:22;48640:2;48621:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;48969:139;49006:2;49060:33;49083:1;49087:2;49091:1;49060:14;:33::i;:::-;49027:30;49048:8;49027:20;:30::i;:::-;:66;48969:18;:139::i;:::-;48935:17;:31;48953:12;48935:31;;;;;;;;;;;:173;;;;49125:16;49156:11;49185:8;49170:12;:23;49156:37;;49706:16;49702:2;49698:25;49686:37;;50078:12;50038:8;49997:1;49935:25;49876:1;49815;49788:335;50449:1;50435:12;50431:20;50389:346;50490:3;50481:7;50478:16;50389:346;;50708:7;50698:8;50695:1;50668:25;50665:1;50662;50657:59;50543:1;50534:7;50530:15;50519:26;;50389:346;;;50393:77;50780:1;50768:8;:13;50764:45;;50790:19;;;;;;;;;;;;;;50764:45;50842:3;50826:13;:19;;;;48395:2462;;50867:60;50896:1;50900:2;50904:12;50918:8;50867:20;:60::i;:::-;48031:2904;47969:2966;;:::o;35381:324::-;35451:14;35684:1;35674:8;35671:15;35645:24;35641:46;35631:56;;35381:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:329::-;4997:6;5046:2;5034:9;5025:7;5021:23;5017:32;5014:119;;;5052:79;;:::i;:::-;5014:119;5172:1;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5143:117;4938:329;;;;:::o;5273:118::-;5360:24;5378:5;5360:24;:::i;:::-;5355:3;5348:37;5273:118;;:::o;5397:222::-;5490:4;5528:2;5517:9;5513:18;5505:26;;5541:71;5609:1;5598:9;5594:17;5585:6;5541:71;:::i;:::-;5397:222;;;;:::o;5625:116::-;5695:21;5710:5;5695:21;:::i;:::-;5688:5;5685:32;5675:60;;5731:1;5728;5721:12;5675:60;5625:116;:::o;5747:133::-;5790:5;5828:6;5815:20;5806:29;;5844:30;5868:5;5844:30;:::i;:::-;5747:133;;;;:::o;5886:323::-;5942:6;5991:2;5979:9;5970:7;5966:23;5962:32;5959:119;;;5997:79;;:::i;:::-;5959:119;6117:1;6142:50;6184:7;6175:6;6164:9;6160:22;6142:50;:::i;:::-;6132:60;;6088:114;5886:323;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::o;6840:117::-;6949:1;6946;6939:12;6963:117;7072:1;7069;7062:12;7086:180;7134:77;7131:1;7124:88;7231:4;7228:1;7221:15;7255:4;7252:1;7245:15;7272:281;7355:27;7377:4;7355:27;:::i;:::-;7347:6;7343:40;7485:6;7473:10;7470:22;7449:18;7437:10;7434:34;7431:62;7428:88;;;7496:18;;:::i;:::-;7428:88;7536:10;7532:2;7525:22;7315:238;7272:281;;:::o;7559:129::-;7593:6;7620:20;;:::i;:::-;7610:30;;7649:33;7677:4;7669:6;7649:33;:::i;:::-;7559:129;;;:::o;7694:308::-;7756:4;7846:18;7838:6;7835:30;7832:56;;;7868:18;;:::i;:::-;7832:56;7906:29;7928:6;7906:29;:::i;:::-;7898:37;;7990:4;7984;7980:15;7972:23;;7694:308;;;:::o;8008:154::-;8092:6;8087:3;8082;8069:30;8154:1;8145:6;8140:3;8136:16;8129:27;8008:154;;;:::o;8168:412::-;8246:5;8271:66;8287:49;8329:6;8287:49;:::i;:::-;8271:66;:::i;:::-;8262:75;;8360:6;8353:5;8346:21;8398:4;8391:5;8387:16;8436:3;8427:6;8422:3;8418:16;8415:25;8412:112;;;8443:79;;:::i;:::-;8412:112;8533:41;8567:6;8562:3;8557;8533:41;:::i;:::-;8252:328;8168:412;;;;;:::o;8600:340::-;8656:5;8705:3;8698:4;8690:6;8686:17;8682:27;8672:122;;8713:79;;:::i;:::-;8672:122;8830:6;8817:20;8855:79;8930:3;8922:6;8915:4;8907:6;8903:17;8855:79;:::i;:::-;8846:88;;8662:278;8600:340;;;;:::o;8946:509::-;9015:6;9064:2;9052:9;9043:7;9039:23;9035:32;9032:119;;;9070:79;;:::i;:::-;9032:119;9218:1;9207:9;9203:17;9190:31;9248:18;9240:6;9237:30;9234:117;;;9270:79;;:::i;:::-;9234:117;9375:63;9430:7;9421:6;9410:9;9406:22;9375:63;:::i;:::-;9365:73;;9161:287;8946:509;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:332::-;13083:4;13121:2;13110:9;13106:18;13098:26;;13134:71;13202:1;13191:9;13187:17;13178:6;13134:71;:::i;:::-;13215:72;13283:2;13272:9;13268:18;13259:6;13215:72;:::i;:::-;12962:332;;;;;:::o;13300:137::-;13354:5;13385:6;13379:13;13370:22;;13401:30;13425:5;13401:30;:::i;:::-;13300:137;;;;:::o;13443:345::-;13510:6;13559:2;13547:9;13538:7;13534:23;13530:32;13527:119;;;13565:79;;:::i;:::-;13527:119;13685:1;13710:61;13763:7;13754:6;13743:9;13739:22;13710:61;:::i;:::-;13700:71;;13656:125;13443:345;;;;:::o;13794:147::-;13895:11;13932:3;13917:18;;13794:147;;;;:::o;13947:114::-;;:::o;14067:398::-;14226:3;14247:83;14328:1;14323:3;14247:83;:::i;:::-;14240:90;;14339:93;14428:3;14339:93;:::i;:::-;14457:1;14452:3;14448:11;14441:18;;14067:398;;;:::o;14471:379::-;14655:3;14677:147;14820:3;14677:147;:::i;:::-;14670:154;;14841:3;14834:10;;14471:379;;;:::o;14856:180::-;14996:32;14992:1;14984:6;14980:14;14973:56;14856:180;:::o;15042:366::-;15184:3;15205:67;15269:2;15264:3;15205:67;:::i;:::-;15198:74;;15281:93;15370:3;15281:93;:::i;:::-;15399:2;15394:3;15390:12;15383:19;;15042:366;;;:::o;15414:419::-;15580:4;15618:2;15607:9;15603:18;15595:26;;15667:9;15661:4;15657:20;15653:1;15642:9;15638:17;15631:47;15695:131;15821:4;15695:131;:::i;:::-;15687:139;;15414:419;;;:::o;15839:170::-;15979:22;15975:1;15967:6;15963:14;15956:46;15839:170;:::o;16015:366::-;16157:3;16178:67;16242:2;16237:3;16178:67;:::i;:::-;16171:74;;16254:93;16343:3;16254:93;:::i;:::-;16372:2;16367:3;16363:12;16356:19;;16015:366;;;:::o;16387:419::-;16553:4;16591:2;16580:9;16576:18;16568:26;;16640:9;16634:4;16630:20;16626:1;16615:9;16611:17;16604:47;16668:131;16794:4;16668:131;:::i;:::-;16660:139;;16387:419;;;:::o;16812:180::-;16860:77;16857:1;16850:88;16957:4;16954:1;16947:15;16981:4;16978:1;16971:15;16998:305;17038:3;17057:20;17075:1;17057:20;:::i;:::-;17052:25;;17091:20;17109:1;17091:20;:::i;:::-;17086:25;;17245:1;17177:66;17173:74;17170:1;17167:81;17164:107;;;17251:18;;:::i;:::-;17164:107;17295:1;17292;17288:9;17281:16;;16998:305;;;;:::o;17309:170::-;17449:22;17445:1;17437:6;17433:14;17426:46;17309:170;:::o;17485:366::-;17627:3;17648:67;17712:2;17707:3;17648:67;:::i;:::-;17641:74;;17724:93;17813:3;17724:93;:::i;:::-;17842:2;17837:3;17833:12;17826:19;;17485:366;;;:::o;17857:419::-;18023:4;18061:2;18050:9;18046:18;18038:26;;18110:9;18104:4;18100:20;18096:1;18085:9;18081:17;18074:47;18138:131;18264:4;18138:131;:::i;:::-;18130:139;;17857:419;;;:::o;18282:348::-;18322:7;18345:20;18363:1;18345:20;:::i;:::-;18340:25;;18379:20;18397:1;18379:20;:::i;:::-;18374:25;;18567:1;18499:66;18495:74;18492:1;18489:81;18484:1;18477:9;18470:17;18466:105;18463:131;;;18574:18;;:::i;:::-;18463:131;18622:1;18619;18615:9;18604:20;;18282:348;;;;:::o;18636:169::-;18776:21;18772:1;18764:6;18760:14;18753:45;18636:169;:::o;18811:366::-;18953:3;18974:67;19038:2;19033:3;18974:67;:::i;:::-;18967:74;;19050:93;19139:3;19050:93;:::i;:::-;19168:2;19163:3;19159:12;19152:19;;18811:366;;;:::o;19183:419::-;19349:4;19387:2;19376:9;19372:18;19364:26;;19436:9;19430:4;19426:20;19422:1;19411:9;19407:17;19400:47;19464:131;19590:4;19464:131;:::i;:::-;19456:139;;19183:419;;;:::o;19608:173::-;19748:25;19744:1;19736:6;19732:14;19725:49;19608:173;:::o;19787:366::-;19929:3;19950:67;20014:2;20009:3;19950:67;:::i;:::-;19943:74;;20026:93;20115:3;20026:93;:::i;:::-;20144:2;20139:3;20135:12;20128:19;;19787:366;;;:::o;20159:419::-;20325:4;20363:2;20352:9;20348:18;20340:26;;20412:9;20406:4;20402:20;20398:1;20387:9;20383:17;20376:47;20440:131;20566:4;20440:131;:::i;:::-;20432:139;;20159:419;;;:::o;20584:234::-;20724:34;20720:1;20712:6;20708:14;20701:58;20793:17;20788:2;20780:6;20776:15;20769:42;20584:234;:::o;20824:366::-;20966:3;20987:67;21051:2;21046:3;20987:67;:::i;:::-;20980:74;;21063:93;21152:3;21063:93;:::i;:::-;21181:2;21176:3;21172:12;21165:19;;20824:366;;;:::o;21196:419::-;21362:4;21400:2;21389:9;21385:18;21377:26;;21449:9;21443:4;21439:20;21435:1;21424:9;21420:17;21413:47;21477:131;21603:4;21477:131;:::i;:::-;21469:139;;21196:419;;;:::o;21621:148::-;21723:11;21760:3;21745:18;;21621:148;;;;:::o;21775:377::-;21881:3;21909:39;21942:5;21909:39;:::i;:::-;21964:89;22046:6;22041:3;21964:89;:::i;:::-;21957:96;;22062:52;22107:6;22102:3;22095:4;22088:5;22084:16;22062:52;:::i;:::-;22139:6;22134:3;22130:16;22123:23;;21885:267;21775:377;;;;:::o;22158:435::-;22338:3;22360:95;22451:3;22442:6;22360:95;:::i;:::-;22353:102;;22472:95;22563:3;22554:6;22472:95;:::i;:::-;22465:102;;22584:3;22577:10;;22158:435;;;;;:::o;22599:225::-;22739:34;22735:1;22727:6;22723:14;22716:58;22808:8;22803:2;22795:6;22791:15;22784:33;22599:225;:::o;22830:366::-;22972:3;22993:67;23057:2;23052:3;22993:67;:::i;:::-;22986:74;;23069:93;23158:3;23069:93;:::i;:::-;23187:2;23182:3;23178:12;23171:19;;22830:366;;;:::o;23202:419::-;23368:4;23406:2;23395:9;23391:18;23383:26;;23455:9;23449:4;23445:20;23441:1;23430:9;23426:17;23419:47;23483:131;23609:4;23483:131;:::i;:::-;23475:139;;23202:419;;;:::o;23627:182::-;23767:34;23763:1;23755:6;23751:14;23744:58;23627:182;:::o;23815:366::-;23957:3;23978:67;24042:2;24037:3;23978:67;:::i;:::-;23971:74;;24054:93;24143:3;24054:93;:::i;:::-;24172:2;24167:3;24163:12;24156:19;;23815:366;;;:::o;24187:419::-;24353:4;24391:2;24380:9;24376:18;24368:26;;24440:9;24434:4;24430:20;24426:1;24415:9;24411:17;24404:47;24468:131;24594:4;24468:131;:::i;:::-;24460:139;;24187:419;;;:::o;24612:181::-;24752:33;24748:1;24740:6;24736:14;24729:57;24612:181;:::o;24799:366::-;24941:3;24962:67;25026:2;25021:3;24962:67;:::i;:::-;24955:74;;25038:93;25127:3;25038:93;:::i;:::-;25156:2;25151:3;25147:12;25140:19;;24799:366;;;:::o;25171:419::-;25337:4;25375:2;25364:9;25360:18;25352:26;;25424:9;25418:4;25414:20;25410:1;25399:9;25395:17;25388:47;25452:131;25578:4;25452:131;:::i;:::-;25444:139;;25171:419;;;:::o;25596:98::-;25647:6;25681:5;25675:12;25665:22;;25596:98;;;:::o;25700:168::-;25783:11;25817:6;25812:3;25805:19;25857:4;25852:3;25848:14;25833:29;;25700:168;;;;:::o;25874:360::-;25960:3;25988:38;26020:5;25988:38;:::i;:::-;26042:70;26105:6;26100:3;26042:70;:::i;:::-;26035:77;;26121:52;26166:6;26161:3;26154:4;26147:5;26143:16;26121:52;:::i;:::-;26198:29;26220:6;26198:29;:::i;:::-;26193:3;26189:39;26182:46;;25964:270;25874:360;;;;:::o;26240:640::-;26435:4;26473:3;26462:9;26458:19;26450:27;;26487:71;26555:1;26544:9;26540:17;26531:6;26487:71;:::i;:::-;26568:72;26636:2;26625:9;26621:18;26612:6;26568:72;:::i;:::-;26650;26718:2;26707:9;26703:18;26694:6;26650:72;:::i;:::-;26769:9;26763:4;26759:20;26754:2;26743:9;26739:18;26732:48;26797:76;26868:4;26859:6;26797:76;:::i;:::-;26789:84;;26240:640;;;;;;;:::o;26886:141::-;26942:5;26973:6;26967:13;26958:22;;26989:32;27015:5;26989:32;:::i;:::-;26886:141;;;;:::o;27033:349::-;27102:6;27151:2;27139:9;27130:7;27126:23;27122:32;27119:119;;;27157:79;;:::i;:::-;27119:119;27277:1;27302:63;27357:7;27348:6;27337:9;27333:22;27302:63;:::i;:::-;27292:73;;27248:127;27033:349;;;;:::o

Swarm Source

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