ETH Price: $3,043.24 (+0.64%)
Gas: 2 Gwei

Token

Caesium by none (CN)
 

Overview

Max Total Supply

259 CN

Holders

238

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CN
0x483090014ddac0455932a837464cfe0cbafc5f05
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:
CN

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-04
*/

// File: operator-filter-registry/src/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 unregister(address addr) 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: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        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(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // 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) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

        // 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: dodo.sol


pragma solidity ^0.8.9;






 
 
 
contract CN is ERC721A, DefaultOperatorFilterer, Ownable, ReentrancyGuard { 
event DevMintEvent(address ownerAddress, uint256 startWith, uint256 amountMinted);
uint256 public devTotal;
    uint256 public _maxSupply = 333;
    uint256 public _mintPrice = 0.005 ether;
    uint256 public _maxMintPerTx = 5;
 
    uint256 public _maxFreeMintPerAddr = 1;
    uint256 public _maxFreeMintSupply = 50;
     uint256 public devSupply = 33;
 
    using Strings for uint256;
    string public baseURI;
 
    mapping(address => uint256) private _mintedFreeAmount;
 
 
    constructor(string memory initBaseURI) ERC721A("Caesium by none", "CN") {
        baseURI = initBaseURI;
    }
 
    function mint(uint256 count) external payable {
        uint256 cost = _mintPrice;
        bool isFree = ((totalSupply() + count < _maxFreeMintSupply + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr)) ||
            (msg.sender == owner());
 
        if (isFree) {
            cost = 0;
        }
 
        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < _maxSupply - devSupply + 1, "Sold out!");
        require(count < _maxMintPerTx + 1, "Max per TX reached.");
 
        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }
 
        _safeMint(msg.sender, count);
    }
 
     function devMint() public onlyOwner {
        devTotal += devSupply;
        emit DevMintEvent(_msgSender(), devTotal, devSupply);
        _safeMint(msg.sender, devSupply);
    }
 
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
 
 
function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Block X2Y2
        if (operator == 0xF849de01B080aDC3A814FaBE1E2087475cF2E354) {
            return false;
        }
 
 
        return super.isApprovedForAll(owner, operator);
    }
 
 
 
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }
 
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable  override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    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);
    }
 
    function setFreeAmount(uint256 amount) external onlyOwner {
        _maxFreeMintSupply = amount;
    }
 
    function setPrice(uint256 _newPrice) external onlyOwner {
        _mintPrice = _newPrice;
    }
 
    function withdraw() public payable onlyOwner nonReentrant {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","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":false,"internalType":"address","name":"ownerAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountMinted","type":"uint256"}],"name":"DevMintEvent","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":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTotal","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":[{"internalType":"uint256","name":"count","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":"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":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405261014d600b556611c37937e08000600c556005600d556001600e556032600f5560216010553480156200003657600080fd5b5060405162003dd738038062003dd783398181016040528101906200005c9190620005b9565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600f81526020017f4361657369756d206279206e6f6e6500000000000000000000000000000000008152506040518060400160405280600281526020017f434e0000000000000000000000000000000000000000000000000000000000008152508160029081620000f0919062000855565b50806003908162000102919062000855565b50620001136200035360201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000310578015620001d6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200019c92919062000981565b600060405180830381600087803b158015620001b757600080fd5b505af1158015620001cc573d6000803e3d6000fd5b505050506200030f565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000290576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200025692919062000981565b600060405180830381600087803b1580156200027157600080fd5b505af115801562000286573d6000803e3d6000fd5b505050506200030e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002d99190620009ae565b600060405180830381600087803b158015620002f457600080fd5b505af115801562000309573d6000803e3d6000fd5b505050505b5b5b505062000332620003266200035860201b60201c565b6200036060201b60201c565b600160098190555080601190816200034b919062000855565b5050620009cb565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200048f8262000444565b810181811067ffffffffffffffff82111715620004b157620004b062000455565b5b80604052505050565b6000620004c662000426565b9050620004d4828262000484565b919050565b600067ffffffffffffffff821115620004f757620004f662000455565b5b620005028262000444565b9050602081019050919050565b60005b838110156200052f57808201518184015260208101905062000512565b60008484015250505050565b6000620005526200054c84620004d9565b620004ba565b9050828152602081018484840111156200057157620005706200043f565b5b6200057e8482856200050f565b509392505050565b600082601f8301126200059e576200059d6200043a565b5b8151620005b08482602086016200053b565b91505092915050565b600060208284031215620005d257620005d162000430565b5b600082015167ffffffffffffffff811115620005f357620005f262000435565b5b620006018482850162000586565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200065d57607f821691505b60208210810362000673576200067262000615565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006dd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200069e565b620006e986836200069e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000736620007306200072a8462000701565b6200070b565b62000701565b9050919050565b6000819050919050565b620007528362000715565b6200076a62000761826200073d565b848454620006ab565b825550505050565b600090565b6200078162000772565b6200078e81848462000747565b505050565b5b81811015620007b657620007aa60008262000777565b60018101905062000794565b5050565b601f8211156200080557620007cf8162000679565b620007da846200068e565b81016020851015620007ea578190505b62000802620007f9856200068e565b83018262000793565b50505b505050565b600082821c905092915050565b60006200082a600019846008026200080a565b1980831691505092915050565b600062000845838362000817565b9150826002028217905092915050565b62000860826200060a565b67ffffffffffffffff8111156200087c576200087b62000455565b5b62000888825462000644565b62000895828285620007ba565b600060209050601f831160018114620008cd5760008415620008b8578287015190505b620008c4858262000837565b86555062000934565b601f198416620008dd8662000679565b60005b828110156200090757848901518255600182019150602085019450602081019050620008e0565b8683101562000927578489015162000923601f89168262000817565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000969826200093c565b9050919050565b6200097b816200095c565b82525050565b600060408201905062000998600083018562000970565b620009a7602083018462000970565b9392505050565b6000602082019050620009c5600083018462000970565b92915050565b6133fc80620009db6000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb116101025780639cb57d2011610095578063c87b56dd11610064578063c87b56dd14610648578063de314a5914610685578063e985e9c5146106b0578063f2fde38b146106ed576101e3565b80639cb57d20146105bc578063a0712d68146105e7578063a22cb46514610603578063b88d4fde1461062c576101e3565b80638da5cb5b116100d15780638da5cb5b1461051457806391b7f5ed1461053f57806392910eec1461056857806395d89b4114610591576101e3565b80636c0360eb1461047e57806370a08231146104a9578063715018a6146104e65780637c69e207146104fd576101e3565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103d157806355f804b3146103ed5780635e1c4b60146104165780636352211e14610441576101e3565b806323b872dd146103555780633ccfd60b1461037157806341c66d0a1461037b57806341f43434146103a6576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630afb04db146102d457806318160ddd146102ff57806322f4596f1461032a576101e3565b806301ffc9a7146101e85780630387da421461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061221a565b610716565b60405161021c9190612262565b60405180910390f35b34801561023157600080fd5b5061023a6107a8565b6040516102479190612296565b60405180910390f35b34801561025c57600080fd5b506102656107ae565b6040516102729190612341565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061238f565b610840565b6040516102af91906123fd565b60405180910390f35b6102d260048036038101906102cd9190612444565b6108bf565b005b3480156102e057600080fd5b506102e96108d8565b6040516102f69190612296565b60405180910390f35b34801561030b57600080fd5b506103146108de565b6040516103219190612296565b60405180910390f35b34801561033657600080fd5b5061033f6108f5565b60405161034c9190612296565b60405180910390f35b61036f600480360381019061036a9190612484565b6108fb565b005b61037961094a565b005b34801561038757600080fd5b50610390610a20565b60405161039d9190612296565b60405180910390f35b3480156103b257600080fd5b506103bb610a26565b6040516103c89190612536565b60405180910390f35b6103eb60048036038101906103e69190612484565b610a38565b005b3480156103f957600080fd5b50610414600480360381019061040f9190612686565b610a87565b005b34801561042257600080fd5b5061042b610aa2565b6040516104389190612296565b60405180910390f35b34801561044d57600080fd5b506104686004803603810190610463919061238f565b610aa8565b60405161047591906123fd565b60405180910390f35b34801561048a57600080fd5b50610493610aba565b6040516104a09190612341565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906126cf565b610b48565b6040516104dd9190612296565b60405180910390f35b3480156104f257600080fd5b506104fb610c00565b005b34801561050957600080fd5b50610512610c14565b005b34801561052057600080fd5b50610529610c8b565b60405161053691906123fd565b60405180910390f35b34801561054b57600080fd5b506105666004803603810190610561919061238f565b610cb5565b005b34801561057457600080fd5b5061058f600480360381019061058a919061238f565b610cc7565b005b34801561059d57600080fd5b506105a6610cd9565b6040516105b39190612341565b60405180910390f35b3480156105c857600080fd5b506105d1610d6b565b6040516105de9190612296565b60405180910390f35b61060160048036038101906105fc919061238f565b610d71565b005b34801561060f57600080fd5b5061062a60048036038101906106259190612728565b610fb8565b005b61064660048036038101906106419190612809565b610fd1565b005b34801561065457600080fd5b5061066f600480360381019061066a919061238f565b611022565b60405161067c9190612341565b60405180910390f35b34801561069157600080fd5b5061069a61109e565b6040516106a79190612296565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d2919061288c565b6110a4565b6040516106e49190612262565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f91906126cf565b611109565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546107bd906128fb565b80601f01602080910402602001604051908101604052809291908181526020018280546107e9906128fb565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905090565b600061084b8261118c565b610881576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108c9816111eb565b6108d383836112e8565b505050565b600a5481565b60006108e861142c565b6001546000540303905090565b600b5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461093957610938336111eb565b5b610944848484611431565b50505050565b610952611753565b600260095403610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90612978565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516109c5906129c9565b60006040518083038185875af1925050503d8060008114610a02576040519150601f19603f3d011682016040523d82523d6000602084013e610a07565b606091505b5050905080610a1557600080fd5b506001600981905550565b60105481565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a7657610a75336111eb565b5b610a818484846117d1565b50505050565b610a8f611753565b8060119081610a9e9190612b80565b5050565b600f5481565b6000610ab3826117f1565b9050919050565b60118054610ac7906128fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610af3906128fb565b8015610b405780601f10610b1557610100808354040283529160200191610b40565b820191906000526020600020905b815481529060010190602001808311610b2357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610baf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c08611753565b610c1260006118bd565b565b610c1c611753565b601054600a6000828254610c309190612c81565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e610c60611983565b600a54601054604051610c7593929190612cb5565b60405180910390a1610c893360105461198b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cbd611753565b80600c8190555050565b610ccf611753565b80600f8190555050565b606060038054610ce8906128fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d14906128fb565b8015610d615780601f10610d3657610100808354040283529160200191610d61565b820191906000526020600020905b815481529060010190602001808311610d4457829003601f168201915b5050505050905090565b600e5481565b6000600c54905060006001600f54610d899190612c81565b83610d926108de565b610d9c9190612c81565b108015610df55750600e5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610df29190612c81565b11155b80610e325750610e03610c8b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b90508015610e3f57600091505b8183610e4b9190612cec565b341015610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490612d7a565b60405180910390fd5b6001601054600b54610e9f9190612d9a565b610ea99190612c81565b83610eb26108de565b610ebc9190612c81565b10610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390612e1a565b60405180910390fd5b6001600d54610f0b9190612c81565b8310610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390612e86565b60405180910390fd5b8015610fa95782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fa19190612c81565b925050819055505b610fb3338461198b565b505050565b81610fc2816111eb565b610fcc83836119a9565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461100f5761100e336111eb565b5b61101b85858585611ab4565b5050505050565b606061102d8261118c565b61106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390612f18565b60405180910390fd5b601161107783611b27565b604051602001611088929190613043565b6040516020818303038152906040529050919050565b600d5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110f65760009050611103565b6111008383611c87565b90505b92915050565b611111611753565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611180576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611177906130e4565b60405180910390fd5b611189816118bd565b50565b60008161119761142c565b111580156111a6575060005482105b80156111e4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112e5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611262929190613104565b602060405180830381865afa15801561127f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a39190613142565b6112e457806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112db91906123fd565b60405180910390fd5b5b50565b60006112f382610aa8565b90508073ffffffffffffffffffffffffffffffffffffffff16611314611d1b565b73ffffffffffffffffffffffffffffffffffffffff1614611377576113408161133b611d1b565b6110a4565b611376576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061143c826117f1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114a3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806114af84611d23565b915091506114c581876114c0611d1b565b611d4a565b611511576114da866114d5611d1b565b6110a4565b611510576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611577576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115848686866001611d8e565b801561158f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061165d85611639888887611d94565b7c020000000000000000000000000000000000000000000000000000000017611dbc565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116e357600060018501905060006004600083815260200190815260200160002054036116e15760005481146116e0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461174b8686866001611de7565b505050505050565b61175b611983565b73ffffffffffffffffffffffffffffffffffffffff16611779610c8b565b73ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c6906131bb565b60405180910390fd5b565b6117ec83838360405180602001604052806000815250610fd1565b505050565b6000808290508061180061142c565b11611886576000548110156118855760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611883575b6000810361187957600460008360019003935083815260200190815260200160002054905061184f565b80925050506118b8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6119a5828260405180602001604052806000815250611ded565b5050565b80600760006119b6611d1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a63611d1b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa89190612262565b60405180910390a35050565b611abf8484846108fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b2157611aea84848484611e8a565b611b20576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008203611b6e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c82565b600082905060005b60008214611ba0578080611b89906131db565b915050600a82611b999190613252565b9150611b76565b60008167ffffffffffffffff811115611bbc57611bbb61255b565b5b6040519080825280601f01601f191660200182016040528015611bee5781602001600182028036833780820191505090505b5090505b60008514611c7b57600182611c079190612d9a565b9150600a85611c169190613283565b6030611c229190612c81565b60f81b818381518110611c3857611c376132b4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c749190613252565b9450611bf2565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dab868684611fda565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611df78383611fe3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e8557600080549050600083820390505b611e376000868380600101945086611e8a565b611e6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e24578160005414611e8257600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb0611d1b565b8786866040518563ffffffff1660e01b8152600401611ed29493929190613338565b6020604051808303816000875af1925050508015611f0e57506040513d601f19601f82011682018060405250810190611f0b9190613399565b60015b611f87573d8060008114611f3e576040519150601f19603f3d011682016040523d82523d6000602084013e611f43565b606091505b506000815103611f7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612023576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120306000848385611d8e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120a7836120986000866000611d94565b6120a18561219e565b17611dbc565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461214857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061210d565b5060008203612183576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121996000848385611de7565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121f7816121c2565b811461220257600080fd5b50565b600081359050612214816121ee565b92915050565b6000602082840312156122305761222f6121b8565b5b600061223e84828501612205565b91505092915050565b60008115159050919050565b61225c81612247565b82525050565b60006020820190506122776000830184612253565b92915050565b6000819050919050565b6122908161227d565b82525050565b60006020820190506122ab6000830184612287565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122eb5780820151818401526020810190506122d0565b60008484015250505050565b6000601f19601f8301169050919050565b6000612313826122b1565b61231d81856122bc565b935061232d8185602086016122cd565b612336816122f7565b840191505092915050565b6000602082019050818103600083015261235b8184612308565b905092915050565b61236c8161227d565b811461237757600080fd5b50565b60008135905061238981612363565b92915050565b6000602082840312156123a5576123a46121b8565b5b60006123b38482850161237a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123e7826123bc565b9050919050565b6123f7816123dc565b82525050565b600060208201905061241260008301846123ee565b92915050565b612421816123dc565b811461242c57600080fd5b50565b60008135905061243e81612418565b92915050565b6000806040838503121561245b5761245a6121b8565b5b60006124698582860161242f565b925050602061247a8582860161237a565b9150509250929050565b60008060006060848603121561249d5761249c6121b8565b5b60006124ab8682870161242f565b93505060206124bc8682870161242f565b92505060406124cd8682870161237a565b9150509250925092565b6000819050919050565b60006124fc6124f76124f2846123bc565b6124d7565b6123bc565b9050919050565b600061250e826124e1565b9050919050565b600061252082612503565b9050919050565b61253081612515565b82525050565b600060208201905061254b6000830184612527565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612593826122f7565b810181811067ffffffffffffffff821117156125b2576125b161255b565b5b80604052505050565b60006125c56121ae565b90506125d1828261258a565b919050565b600067ffffffffffffffff8211156125f1576125f061255b565b5b6125fa826122f7565b9050602081019050919050565b82818337600083830152505050565b6000612629612624846125d6565b6125bb565b90508281526020810184848401111561264557612644612556565b5b612650848285612607565b509392505050565b600082601f83011261266d5761266c612551565b5b813561267d848260208601612616565b91505092915050565b60006020828403121561269c5761269b6121b8565b5b600082013567ffffffffffffffff8111156126ba576126b96121bd565b5b6126c684828501612658565b91505092915050565b6000602082840312156126e5576126e46121b8565b5b60006126f38482850161242f565b91505092915050565b61270581612247565b811461271057600080fd5b50565b600081359050612722816126fc565b92915050565b6000806040838503121561273f5761273e6121b8565b5b600061274d8582860161242f565b925050602061275e85828601612713565b9150509250929050565b600067ffffffffffffffff8211156127835761278261255b565b5b61278c826122f7565b9050602081019050919050565b60006127ac6127a784612768565b6125bb565b9050828152602081018484840111156127c8576127c7612556565b5b6127d3848285612607565b509392505050565b600082601f8301126127f0576127ef612551565b5b8135612800848260208601612799565b91505092915050565b60008060008060808587031215612823576128226121b8565b5b60006128318782880161242f565b94505060206128428782880161242f565b93505060406128538782880161237a565b925050606085013567ffffffffffffffff811115612874576128736121bd565b5b612880878288016127db565b91505092959194509250565b600080604083850312156128a3576128a26121b8565b5b60006128b18582860161242f565b92505060206128c28582860161242f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061291357607f821691505b602082108103612926576129256128cc565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612962601f836122bc565b915061296d8261292c565b602082019050919050565b6000602082019050818103600083015261299181612955565b9050919050565b600081905092915050565b50565b60006129b3600083612998565b91506129be826129a3565b600082019050919050565b60006129d4826129a6565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a03565b612a4a8683612a03565b95508019841693508086168417925050509392505050565b6000612a7d612a78612a738461227d565b6124d7565b61227d565b9050919050565b6000819050919050565b612a9783612a62565b612aab612aa382612a84565b848454612a10565b825550505050565b600090565b612ac0612ab3565b612acb818484612a8e565b505050565b5b81811015612aef57612ae4600082612ab8565b600181019050612ad1565b5050565b601f821115612b3457612b05816129de565b612b0e846129f3565b81016020851015612b1d578190505b612b31612b29856129f3565b830182612ad0565b50505b505050565b600082821c905092915050565b6000612b5760001984600802612b39565b1980831691505092915050565b6000612b708383612b46565b9150826002028217905092915050565b612b89826122b1565b67ffffffffffffffff811115612ba257612ba161255b565b5b612bac82546128fb565b612bb7828285612af3565b600060209050601f831160018114612bea5760008415612bd8578287015190505b612be28582612b64565b865550612c4a565b601f198416612bf8866129de565b60005b82811015612c2057848901518255600182019150602085019450602081019050612bfb565b86831015612c3d5784890151612c39601f891682612b46565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c8c8261227d565b9150612c978361227d565b9250828201905080821115612caf57612cae612c52565b5b92915050565b6000606082019050612cca60008301866123ee565b612cd76020830185612287565b612ce46040830184612287565b949350505050565b6000612cf78261227d565b9150612d028361227d565b9250828202612d108161227d565b91508282048414831517612d2757612d26612c52565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612d64601d836122bc565b9150612d6f82612d2e565b602082019050919050565b60006020820190508181036000830152612d9381612d57565b9050919050565b6000612da58261227d565b9150612db08361227d565b9250828203905081811115612dc857612dc7612c52565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612e046009836122bc565b9150612e0f82612dce565b602082019050919050565b60006020820190508181036000830152612e3381612df7565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612e706013836122bc565b9150612e7b82612e3a565b602082019050919050565b60006020820190508181036000830152612e9f81612e63565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612f02602f836122bc565b9150612f0d82612ea6565b604082019050919050565b60006020820190508181036000830152612f3181612ef5565b9050919050565b600081905092915050565b60008154612f50816128fb565b612f5a8186612f38565b94506001821660008114612f755760018114612f8a57612fbd565b60ff1983168652811515820286019350612fbd565b612f93856129de565b60005b83811015612fb557815481890152600182019150602081019050612f96565b838801955050505b50505092915050565b6000612fd1826122b1565b612fdb8185612f38565b9350612feb8185602086016122cd565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061302d600583612f38565b915061303882612ff7565b600582019050919050565b600061304f8285612f43565b915061305b8284612fc6565b915061306682613020565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130ce6026836122bc565b91506130d982613072565b604082019050919050565b600060208201905081810360008301526130fd816130c1565b9050919050565b600060408201905061311960008301856123ee565b61312660208301846123ee565b9392505050565b60008151905061313c816126fc565b92915050565b600060208284031215613158576131576121b8565b5b60006131668482850161312d565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131a56020836122bc565b91506131b08261316f565b602082019050919050565b600060208201905081810360008301526131d481613198565b9050919050565b60006131e68261227d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361321857613217612c52565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061325d8261227d565b91506132688361227d565b92508261327857613277613223565b5b828204905092915050565b600061328e8261227d565b91506132998361227d565b9250826132a9576132a8613223565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061330a826132e3565b61331481856132ee565b93506133248185602086016122cd565b61332d816122f7565b840191505092915050565b600060808201905061334d60008301876123ee565b61335a60208301866123ee565b6133676040830185612287565b818103606083015261337981846132ff565b905095945050505050565b600081519050613393816121ee565b92915050565b6000602082840312156133af576133ae6121b8565b5b60006133bd84828501613384565b9150509291505056fea26469706673582212204ca0d8100c78bc571ab99d93fd722bbf82e3763f57f198235c3c2fe186b60dc464736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5252726764454a696a596d42723839427232326575793839775a5964585a6e4c436e4b38686d5561355741432f00000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636c0360eb116101025780639cb57d2011610095578063c87b56dd11610064578063c87b56dd14610648578063de314a5914610685578063e985e9c5146106b0578063f2fde38b146106ed576101e3565b80639cb57d20146105bc578063a0712d68146105e7578063a22cb46514610603578063b88d4fde1461062c576101e3565b80638da5cb5b116100d15780638da5cb5b1461051457806391b7f5ed1461053f57806392910eec1461056857806395d89b4114610591576101e3565b80636c0360eb1461047e57806370a08231146104a9578063715018a6146104e65780637c69e207146104fd576101e3565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103d157806355f804b3146103ed5780635e1c4b60146104165780636352211e14610441576101e3565b806323b872dd146103555780633ccfd60b1461037157806341c66d0a1461037b57806341f43434146103a6576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630afb04db146102d457806318160ddd146102ff57806322f4596f1461032a576101e3565b806301ffc9a7146101e85780630387da421461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061221a565b610716565b60405161021c9190612262565b60405180910390f35b34801561023157600080fd5b5061023a6107a8565b6040516102479190612296565b60405180910390f35b34801561025c57600080fd5b506102656107ae565b6040516102729190612341565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061238f565b610840565b6040516102af91906123fd565b60405180910390f35b6102d260048036038101906102cd9190612444565b6108bf565b005b3480156102e057600080fd5b506102e96108d8565b6040516102f69190612296565b60405180910390f35b34801561030b57600080fd5b506103146108de565b6040516103219190612296565b60405180910390f35b34801561033657600080fd5b5061033f6108f5565b60405161034c9190612296565b60405180910390f35b61036f600480360381019061036a9190612484565b6108fb565b005b61037961094a565b005b34801561038757600080fd5b50610390610a20565b60405161039d9190612296565b60405180910390f35b3480156103b257600080fd5b506103bb610a26565b6040516103c89190612536565b60405180910390f35b6103eb60048036038101906103e69190612484565b610a38565b005b3480156103f957600080fd5b50610414600480360381019061040f9190612686565b610a87565b005b34801561042257600080fd5b5061042b610aa2565b6040516104389190612296565b60405180910390f35b34801561044d57600080fd5b506104686004803603810190610463919061238f565b610aa8565b60405161047591906123fd565b60405180910390f35b34801561048a57600080fd5b50610493610aba565b6040516104a09190612341565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906126cf565b610b48565b6040516104dd9190612296565b60405180910390f35b3480156104f257600080fd5b506104fb610c00565b005b34801561050957600080fd5b50610512610c14565b005b34801561052057600080fd5b50610529610c8b565b60405161053691906123fd565b60405180910390f35b34801561054b57600080fd5b506105666004803603810190610561919061238f565b610cb5565b005b34801561057457600080fd5b5061058f600480360381019061058a919061238f565b610cc7565b005b34801561059d57600080fd5b506105a6610cd9565b6040516105b39190612341565b60405180910390f35b3480156105c857600080fd5b506105d1610d6b565b6040516105de9190612296565b60405180910390f35b61060160048036038101906105fc919061238f565b610d71565b005b34801561060f57600080fd5b5061062a60048036038101906106259190612728565b610fb8565b005b61064660048036038101906106419190612809565b610fd1565b005b34801561065457600080fd5b5061066f600480360381019061066a919061238f565b611022565b60405161067c9190612341565b60405180910390f35b34801561069157600080fd5b5061069a61109e565b6040516106a79190612296565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d2919061288c565b6110a4565b6040516106e49190612262565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f91906126cf565b611109565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546107bd906128fb565b80601f01602080910402602001604051908101604052809291908181526020018280546107e9906128fb565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905090565b600061084b8261118c565b610881576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108c9816111eb565b6108d383836112e8565b505050565b600a5481565b60006108e861142c565b6001546000540303905090565b600b5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461093957610938336111eb565b5b610944848484611431565b50505050565b610952611753565b600260095403610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90612978565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516109c5906129c9565b60006040518083038185875af1925050503d8060008114610a02576040519150601f19603f3d011682016040523d82523d6000602084013e610a07565b606091505b5050905080610a1557600080fd5b506001600981905550565b60105481565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a7657610a75336111eb565b5b610a818484846117d1565b50505050565b610a8f611753565b8060119081610a9e9190612b80565b5050565b600f5481565b6000610ab3826117f1565b9050919050565b60118054610ac7906128fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610af3906128fb565b8015610b405780601f10610b1557610100808354040283529160200191610b40565b820191906000526020600020905b815481529060010190602001808311610b2357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610baf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c08611753565b610c1260006118bd565b565b610c1c611753565b601054600a6000828254610c309190612c81565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e610c60611983565b600a54601054604051610c7593929190612cb5565b60405180910390a1610c893360105461198b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cbd611753565b80600c8190555050565b610ccf611753565b80600f8190555050565b606060038054610ce8906128fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d14906128fb565b8015610d615780601f10610d3657610100808354040283529160200191610d61565b820191906000526020600020905b815481529060010190602001808311610d4457829003601f168201915b5050505050905090565b600e5481565b6000600c54905060006001600f54610d899190612c81565b83610d926108de565b610d9c9190612c81565b108015610df55750600e5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610df29190612c81565b11155b80610e325750610e03610c8b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b90508015610e3f57600091505b8183610e4b9190612cec565b341015610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490612d7a565b60405180910390fd5b6001601054600b54610e9f9190612d9a565b610ea99190612c81565b83610eb26108de565b610ebc9190612c81565b10610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390612e1a565b60405180910390fd5b6001600d54610f0b9190612c81565b8310610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390612e86565b60405180910390fd5b8015610fa95782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fa19190612c81565b925050819055505b610fb3338461198b565b505050565b81610fc2816111eb565b610fcc83836119a9565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461100f5761100e336111eb565b5b61101b85858585611ab4565b5050505050565b606061102d8261118c565b61106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390612f18565b60405180910390fd5b601161107783611b27565b604051602001611088929190613043565b6040516020818303038152906040529050919050565b600d5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110f65760009050611103565b6111008383611c87565b90505b92915050565b611111611753565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611180576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611177906130e4565b60405180910390fd5b611189816118bd565b50565b60008161119761142c565b111580156111a6575060005482105b80156111e4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112e5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611262929190613104565b602060405180830381865afa15801561127f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a39190613142565b6112e457806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112db91906123fd565b60405180910390fd5b5b50565b60006112f382610aa8565b90508073ffffffffffffffffffffffffffffffffffffffff16611314611d1b565b73ffffffffffffffffffffffffffffffffffffffff1614611377576113408161133b611d1b565b6110a4565b611376576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061143c826117f1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114a3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806114af84611d23565b915091506114c581876114c0611d1b565b611d4a565b611511576114da866114d5611d1b565b6110a4565b611510576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611577576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115848686866001611d8e565b801561158f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061165d85611639888887611d94565b7c020000000000000000000000000000000000000000000000000000000017611dbc565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116e357600060018501905060006004600083815260200190815260200160002054036116e15760005481146116e0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461174b8686866001611de7565b505050505050565b61175b611983565b73ffffffffffffffffffffffffffffffffffffffff16611779610c8b565b73ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c6906131bb565b60405180910390fd5b565b6117ec83838360405180602001604052806000815250610fd1565b505050565b6000808290508061180061142c565b11611886576000548110156118855760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611883575b6000810361187957600460008360019003935083815260200190815260200160002054905061184f565b80925050506118b8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6119a5828260405180602001604052806000815250611ded565b5050565b80600760006119b6611d1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a63611d1b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa89190612262565b60405180910390a35050565b611abf8484846108fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b2157611aea84848484611e8a565b611b20576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008203611b6e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c82565b600082905060005b60008214611ba0578080611b89906131db565b915050600a82611b999190613252565b9150611b76565b60008167ffffffffffffffff811115611bbc57611bbb61255b565b5b6040519080825280601f01601f191660200182016040528015611bee5781602001600182028036833780820191505090505b5090505b60008514611c7b57600182611c079190612d9a565b9150600a85611c169190613283565b6030611c229190612c81565b60f81b818381518110611c3857611c376132b4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c749190613252565b9450611bf2565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dab868684611fda565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611df78383611fe3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e8557600080549050600083820390505b611e376000868380600101945086611e8a565b611e6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e24578160005414611e8257600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb0611d1b565b8786866040518563ffffffff1660e01b8152600401611ed29493929190613338565b6020604051808303816000875af1925050508015611f0e57506040513d601f19601f82011682018060405250810190611f0b9190613399565b60015b611f87573d8060008114611f3e576040519150601f19603f3d011682016040523d82523d6000602084013e611f43565b606091505b506000815103611f7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612023576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120306000848385611d8e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120a7836120986000866000611d94565b6120a18561219e565b17611dbc565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461214857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061210d565b5060008203612183576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121996000848385611de7565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121f7816121c2565b811461220257600080fd5b50565b600081359050612214816121ee565b92915050565b6000602082840312156122305761222f6121b8565b5b600061223e84828501612205565b91505092915050565b60008115159050919050565b61225c81612247565b82525050565b60006020820190506122776000830184612253565b92915050565b6000819050919050565b6122908161227d565b82525050565b60006020820190506122ab6000830184612287565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122eb5780820151818401526020810190506122d0565b60008484015250505050565b6000601f19601f8301169050919050565b6000612313826122b1565b61231d81856122bc565b935061232d8185602086016122cd565b612336816122f7565b840191505092915050565b6000602082019050818103600083015261235b8184612308565b905092915050565b61236c8161227d565b811461237757600080fd5b50565b60008135905061238981612363565b92915050565b6000602082840312156123a5576123a46121b8565b5b60006123b38482850161237a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123e7826123bc565b9050919050565b6123f7816123dc565b82525050565b600060208201905061241260008301846123ee565b92915050565b612421816123dc565b811461242c57600080fd5b50565b60008135905061243e81612418565b92915050565b6000806040838503121561245b5761245a6121b8565b5b60006124698582860161242f565b925050602061247a8582860161237a565b9150509250929050565b60008060006060848603121561249d5761249c6121b8565b5b60006124ab8682870161242f565b93505060206124bc8682870161242f565b92505060406124cd8682870161237a565b9150509250925092565b6000819050919050565b60006124fc6124f76124f2846123bc565b6124d7565b6123bc565b9050919050565b600061250e826124e1565b9050919050565b600061252082612503565b9050919050565b61253081612515565b82525050565b600060208201905061254b6000830184612527565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612593826122f7565b810181811067ffffffffffffffff821117156125b2576125b161255b565b5b80604052505050565b60006125c56121ae565b90506125d1828261258a565b919050565b600067ffffffffffffffff8211156125f1576125f061255b565b5b6125fa826122f7565b9050602081019050919050565b82818337600083830152505050565b6000612629612624846125d6565b6125bb565b90508281526020810184848401111561264557612644612556565b5b612650848285612607565b509392505050565b600082601f83011261266d5761266c612551565b5b813561267d848260208601612616565b91505092915050565b60006020828403121561269c5761269b6121b8565b5b600082013567ffffffffffffffff8111156126ba576126b96121bd565b5b6126c684828501612658565b91505092915050565b6000602082840312156126e5576126e46121b8565b5b60006126f38482850161242f565b91505092915050565b61270581612247565b811461271057600080fd5b50565b600081359050612722816126fc565b92915050565b6000806040838503121561273f5761273e6121b8565b5b600061274d8582860161242f565b925050602061275e85828601612713565b9150509250929050565b600067ffffffffffffffff8211156127835761278261255b565b5b61278c826122f7565b9050602081019050919050565b60006127ac6127a784612768565b6125bb565b9050828152602081018484840111156127c8576127c7612556565b5b6127d3848285612607565b509392505050565b600082601f8301126127f0576127ef612551565b5b8135612800848260208601612799565b91505092915050565b60008060008060808587031215612823576128226121b8565b5b60006128318782880161242f565b94505060206128428782880161242f565b93505060406128538782880161237a565b925050606085013567ffffffffffffffff811115612874576128736121bd565b5b612880878288016127db565b91505092959194509250565b600080604083850312156128a3576128a26121b8565b5b60006128b18582860161242f565b92505060206128c28582860161242f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061291357607f821691505b602082108103612926576129256128cc565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612962601f836122bc565b915061296d8261292c565b602082019050919050565b6000602082019050818103600083015261299181612955565b9050919050565b600081905092915050565b50565b60006129b3600083612998565b91506129be826129a3565b600082019050919050565b60006129d4826129a6565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a03565b612a4a8683612a03565b95508019841693508086168417925050509392505050565b6000612a7d612a78612a738461227d565b6124d7565b61227d565b9050919050565b6000819050919050565b612a9783612a62565b612aab612aa382612a84565b848454612a10565b825550505050565b600090565b612ac0612ab3565b612acb818484612a8e565b505050565b5b81811015612aef57612ae4600082612ab8565b600181019050612ad1565b5050565b601f821115612b3457612b05816129de565b612b0e846129f3565b81016020851015612b1d578190505b612b31612b29856129f3565b830182612ad0565b50505b505050565b600082821c905092915050565b6000612b5760001984600802612b39565b1980831691505092915050565b6000612b708383612b46565b9150826002028217905092915050565b612b89826122b1565b67ffffffffffffffff811115612ba257612ba161255b565b5b612bac82546128fb565b612bb7828285612af3565b600060209050601f831160018114612bea5760008415612bd8578287015190505b612be28582612b64565b865550612c4a565b601f198416612bf8866129de565b60005b82811015612c2057848901518255600182019150602085019450602081019050612bfb565b86831015612c3d5784890151612c39601f891682612b46565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c8c8261227d565b9150612c978361227d565b9250828201905080821115612caf57612cae612c52565b5b92915050565b6000606082019050612cca60008301866123ee565b612cd76020830185612287565b612ce46040830184612287565b949350505050565b6000612cf78261227d565b9150612d028361227d565b9250828202612d108161227d565b91508282048414831517612d2757612d26612c52565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612d64601d836122bc565b9150612d6f82612d2e565b602082019050919050565b60006020820190508181036000830152612d9381612d57565b9050919050565b6000612da58261227d565b9150612db08361227d565b9250828203905081811115612dc857612dc7612c52565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612e046009836122bc565b9150612e0f82612dce565b602082019050919050565b60006020820190508181036000830152612e3381612df7565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612e706013836122bc565b9150612e7b82612e3a565b602082019050919050565b60006020820190508181036000830152612e9f81612e63565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612f02602f836122bc565b9150612f0d82612ea6565b604082019050919050565b60006020820190508181036000830152612f3181612ef5565b9050919050565b600081905092915050565b60008154612f50816128fb565b612f5a8186612f38565b94506001821660008114612f755760018114612f8a57612fbd565b60ff1983168652811515820286019350612fbd565b612f93856129de565b60005b83811015612fb557815481890152600182019150602081019050612f96565b838801955050505b50505092915050565b6000612fd1826122b1565b612fdb8185612f38565b9350612feb8185602086016122cd565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061302d600583612f38565b915061303882612ff7565b600582019050919050565b600061304f8285612f43565b915061305b8284612fc6565b915061306682613020565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130ce6026836122bc565b91506130d982613072565b604082019050919050565b600060208201905081810360008301526130fd816130c1565b9050919050565b600060408201905061311960008301856123ee565b61312660208301846123ee565b9392505050565b60008151905061313c816126fc565b92915050565b600060208284031215613158576131576121b8565b5b60006131668482850161312d565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131a56020836122bc565b91506131b08261316f565b602082019050919050565b600060208201905081810360008301526131d481613198565b9050919050565b60006131e68261227d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361321857613217612c52565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061325d8261227d565b91506132688361227d565b92508261327857613277613223565b5b828204905092915050565b600061328e8261227d565b91506132998361227d565b9250826132a9576132a8613223565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061330a826132e3565b61331481856132ee565b93506133248185602086016122cd565b61332d816122f7565b840191505092915050565b600060808201905061334d60008301876123ee565b61335a60208301866123ee565b6133676040830185612287565b818103606083015261337981846132ff565b905095945050505050565b600081519050613393816121ee565b92915050565b6000602082840312156133af576133ae6121b8565b5b60006133bd84828501613384565b9150509291505056fea26469706673582212204ca0d8100c78bc571ab99d93fd722bbf82e3763f57f198235c3c2fe186b60dc464736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5252726764454a696a596d42723839427232326575793839775a5964585a6e4c436e4b38686d5561355741432f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmRRrgdEJijYmBr89Br22euy89wZYdXZnLCnK8hmUa5WAC/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5252726764454a696a596d427238394272323265757938
Arg [3] : 39775a5964585a6e4c436e4b38686d5561355741432f00000000000000000000


Deployed Bytecode Sourcemap

65778:3928:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32678:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66008:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33580:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40071:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68494:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65940:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29331:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65970:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68668:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69498:205;;;:::i;:::-;;66187:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2927:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68847:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68214:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66141:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34973:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66258:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30515:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13457:103;;;;;;;;;;;;;:::i;:::-;;67194:182;;;;;;;;;;;;;:::i;:::-;;12809:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69392:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69279:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33756;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66096:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66476:708;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68310:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69034:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67855:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66054:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67501:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13715:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32678:639;32763:4;33102:10;33087:25;;:11;:25;;;;:102;;;;33179:10;33164:25;;:11;:25;;;;33087:102;:179;;;;33256:10;33241:25;;:11;:25;;;;33087:179;33067:199;;32678:639;;;:::o;66008:39::-;;;;:::o;33580:100::-;33634:13;33667:5;33660:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33580:100;:::o;40071:218::-;40147:7;40172:16;40180:7;40172;:16::i;:::-;40167:64;;40197:34;;;;;;;;;;;;;;40167:64;40251:15;:24;40267:7;40251:24;;;;;;;;;;;:30;;;;;;;;;;;;40244:37;;40071:218;;;:::o;68494:166::-;68599:8;4448:30;4469:8;4448:20;:30::i;:::-;68620:32:::1;68634:8;68644:7;68620:13;:32::i;:::-;68494:166:::0;;;:::o;65940:23::-;;;;:::o;29331:323::-;29392:7;29620:15;:13;:15::i;:::-;29605:12;;29589:13;;:28;:46;29582:53;;29331:323;:::o;65970:31::-;;;;:::o;68668:171::-;68777:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;68794:37:::1;68813:4;68819:2;68823:7;68794:18;:37::i;:::-;68668:171:::0;;;;:::o;69498:205::-;12695:13;:11;:13::i;:::-;9734:1:::1;10332:7;;:19:::0;10324:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;9734:1;10465:7;:18;;;;69568:12:::2;69594:10;69586:24;;69632:21;69586:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69567:101;;;69687:7;69679:16;;;::::0;::::2;;69556:147;9690:1:::1;10644:7;:22;;;;69498:205::o:0;66187:29::-;;;;:::o;2927:143::-;3027:42;2927:143;:::o;68847:179::-;68960:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;68977:41:::1;69000:4;69006:2;69010:7;68977:22;:41::i;:::-;68847:179:::0;;;;:::o;68214:88::-;12695:13;:11;:13::i;:::-;68291:3:::1;68281:7;:13;;;;;;:::i;:::-;;68214:88:::0;:::o;66141:38::-;;;;:::o;34973:152::-;35045:7;35088:27;35107:7;35088:18;:27::i;:::-;35065:52;;34973:152;;;:::o;66258:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30515:233::-;30587:7;30628:1;30611:19;;:5;:19;;;30607:60;;30639:28;;;;;;;;;;;;;;30607:60;24674:13;30685:18;:25;30704:5;30685:25;;;;;;;;;;;;;;;;:55;30678:62;;30515:233;;;:::o;13457:103::-;12695:13;:11;:13::i;:::-;13522:30:::1;13549:1;13522:18;:30::i;:::-;13457:103::o:0;67194:182::-;12695:13;:11;:13::i;:::-;67253:9:::1;;67241:8;;:21;;;;;;;:::i;:::-;;;;;;;;67278:47;67291:12;:10;:12::i;:::-;67305:8;;67315:9;;67278:47;;;;;;;;:::i;:::-;;;;;;;;67336:32;67346:10;67358:9;;67336;:32::i;:::-;67194:182::o:0;12809:87::-;12855:7;12882:6;;;;;;;;;;;12875:13;;12809:87;:::o;69392:97::-;12695:13;:11;:13::i;:::-;69472:9:::1;69459:10;:22;;;;69392:97:::0;:::o;69279:104::-;12695:13;:11;:13::i;:::-;69369:6:::1;69348:18;:27;;;;69279:104:::0;:::o;33756:::-;33812:13;33845:7;33838:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33756:104;:::o;66096:38::-;;;;:::o;66476:708::-;66533:12;66548:10;;66533:25;;66569:11;66630:1;66609:18;;:22;;;;:::i;:::-;66601:5;66585:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;66584:127;;;;;66691:19;;66682:5;66650:17;:29;66668:10;66650:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;66584:127;66583:169;;;;66744:7;:5;:7::i;:::-;66730:21;;:10;:21;;;66583:169;66569:183;;66770:6;66766:47;;;66800:1;66793:8;;66766:47;66855:4;66847:5;:12;;;;:::i;:::-;66834:9;:25;;66826:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;66961:1;66949:9;;66936:10;;:22;;;;:::i;:::-;:26;;;;:::i;:::-;66928:5;66912:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:50;66904:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;67019:1;67003:13;;:17;;;;:::i;:::-;66995:5;:25;66987:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;67062:6;67058:77;;;67118:5;67085:17;:29;67103:10;67085:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;67058:77;67148:28;67158:10;67170:5;67148:9;:28::i;:::-;66522:662;;66476:708;:::o;68310:176::-;68414:8;4448:30;4469:8;4448:20;:30::i;:::-;68435:43:::1;68459:8;68469;68435:23;:43::i;:::-;68310:176:::0;;;:::o;69034:236::-;69193:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;69215:47:::1;69238:4;69244:2;69248:7;69257:4;69215:22;:47::i;:::-;69034:236:::0;;;;;:::o;67855:350::-;67973:13;68026:16;68034:7;68026;:16::i;:::-;68004:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;68159:7;68168:18;:7;:16;:18::i;:::-;68142:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68128:69;;67855:350;;;:::o;66054:32::-;;;;:::o;67501:339::-;67626:4;67687:42;67675:54;;:8;:54;;;67671:99;;67753:5;67746:12;;;;67671:99;67793:39;67816:5;67823:8;67793:22;:39::i;:::-;67786:46;;67501:339;;;;;:::o;13715:201::-;12695:13;:11;:13::i;:::-;13824:1:::1;13804:22;;:8;:22;;::::0;13796:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;13880:28;13899:8;13880:18;:28::i;:::-;13715:201:::0;:::o;41442:282::-;41507:4;41563:7;41544:15;:13;:15::i;:::-;:26;;:66;;;;;41597:13;;41587:7;:23;41544:66;:153;;;;;41696:1;25450:8;41648:17;:26;41666:7;41648:26;;;;;;;;;;;;:44;:49;41544:153;41524:173;;41442:282;;;:::o;4506:419::-;4745:1;3027:42;4697:45;;;:49;4693:225;;;3027:42;4768;;;4819:4;4826:8;4768:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4763:144;;4882:8;4863:28;;;;;;;;;;;:::i;:::-;;;;;;;;4763:144;4693:225;4506:419;:::o;39504:408::-;39593:13;39609:16;39617:7;39609;:16::i;:::-;39593:32;;39665:5;39642:28;;:19;:17;:19::i;:::-;:28;;;39638:175;;39690:44;39707:5;39714:19;:17;:19::i;:::-;39690:16;:44::i;:::-;39685:128;;39762:35;;;;;;;;;;;;;;39685:128;39638:175;39858:2;39825:15;:24;39841:7;39825:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39896:7;39892:2;39876:28;;39885:5;39876:28;;;;;;;;;;;;39582:330;39504:408;;:::o;28847:92::-;28903:7;28847:92;:::o;43710:2825::-;43852:27;43882;43901:7;43882:18;:27::i;:::-;43852:57;;43967:4;43926:45;;43942:19;43926:45;;;43922:86;;43980:28;;;;;;;;;;;;;;43922:86;44022:27;44051:23;44078:35;44105:7;44078:26;:35::i;:::-;44021:92;;;;44213:68;44238:15;44255:4;44261:19;:17;:19::i;:::-;44213:24;:68::i;:::-;44208:180;;44301:43;44318:4;44324:19;:17;:19::i;:::-;44301:16;:43::i;:::-;44296:92;;44353:35;;;;;;;;;;;;;;44296:92;44208:180;44419:1;44405:16;;:2;:16;;;44401:52;;44430:23;;;;;;;;;;;;;;44401:52;44466:43;44488:4;44494:2;44498:7;44507:1;44466:21;:43::i;:::-;44602:15;44599:160;;;44742:1;44721:19;44714:30;44599:160;45139:18;:24;45158:4;45139:24;;;;;;;;;;;;;;;;45137:26;;;;;;;;;;;;45208:18;:22;45227:2;45208:22;;;;;;;;;;;;;;;;45206:24;;;;;;;;;;;45530:146;45567:2;45616:45;45631:4;45637:2;45641:19;45616:14;:45::i;:::-;25730:8;45588:73;45530:18;:146::i;:::-;45501:17;:26;45519:7;45501:26;;;;;;;;;;;:175;;;;45847:1;25730:8;45796:19;:47;:52;45792:627;;45869:19;45901:1;45891:7;:11;45869:33;;46058:1;46024:17;:30;46042:11;46024:30;;;;;;;;;;;;:35;46020:384;;46162:13;;46147:11;:28;46143:242;;46342:19;46309:17;:30;46327:11;46309:30;;;;;;;;;;;:52;;;;46143:242;46020:384;45850:569;45792:627;46466:7;46462:2;46447:27;;46456:4;46447:27;;;;;;;;;;;;46485:42;46506:4;46512:2;46516:7;46525:1;46485:20;:42::i;:::-;43841:2694;;;43710:2825;;;:::o;12974:132::-;13049:12;:10;:12::i;:::-;13038:23;;:7;:5;:7::i;:::-;:23;;;13030:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12974:132::o;46631:193::-;46777:39;46794:4;46800:2;46804:7;46777:39;;;;;;;;;;;;:16;:39::i;:::-;46631:193;;;:::o;36128:1275::-;36195:7;36215:12;36230:7;36215:22;;36298:4;36279:15;:13;:15::i;:::-;:23;36275:1061;;36332:13;;36325:4;:20;36321:1015;;;36370:14;36387:17;:23;36405:4;36387:23;;;;;;;;;;;;36370:40;;36504:1;25450:8;36476:6;:24;:29;36472:845;;37141:113;37158:1;37148:6;:11;37141:113;;37201:17;:25;37219:6;;;;;;;37201:25;;;;;;;;;;;;37192:34;;37141:113;;;37287:6;37280:13;;;;;;36472:845;36347:989;36321:1015;36275:1061;37364:31;;;;;;;;;;;;;;36128:1275;;;;:::o;14076:191::-;14150:16;14169:6;;;;;;;;;;;14150:25;;14195:8;14186:6;;:17;;;;;;;;;;;;;;;;;;14250:8;14219:40;;14240:8;14219:40;;;;;;;;;;;;14139:128;14076:191;:::o;11360:98::-;11413:7;11440:10;11433:17;;11360:98;:::o;57582:112::-;57659:27;57669:2;57673:8;57659:27;;;;;;;;;;;;:9;:27::i;:::-;57582:112;;:::o;40629:234::-;40776:8;40724:18;:39;40743:19;:17;:19::i;:::-;40724:39;;;;;;;;;;;;;;;:49;40764:8;40724:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;40836:8;40800:55;;40815:19;:17;:19::i;:::-;40800:55;;;40846:8;40800:55;;;;;;:::i;:::-;;;;;;;;40629:234;;:::o;47422:407::-;47597:31;47610:4;47616:2;47620:7;47597:12;:31::i;:::-;47661:1;47643:2;:14;;;:19;47639:183;;47682:56;47713:4;47719:2;47723:7;47732:5;47682:30;:56::i;:::-;47677:145;;47766:40;;;;;;;;;;;;;;47677:145;47639:183;47422:407;;;;:::o;5855:723::-;5911:13;6141:1;6132:5;:10;6128:53;;6159:10;;;;;;;;;;;;;;;;;;;;;6128:53;6191:12;6206:5;6191:20;;6222:14;6247:78;6262:1;6254:4;:9;6247:78;;6280:8;;;;;:::i;:::-;;;;6311:2;6303:10;;;;;:::i;:::-;;;6247:78;;;6335:19;6367:6;6357:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6335:39;;6385:154;6401:1;6392:5;:10;6385:154;;6429:1;6419:11;;;;;:::i;:::-;;;6496:2;6488:5;:10;;;;:::i;:::-;6475:2;:24;;;;:::i;:::-;6462:39;;6445:6;6452;6445:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6525:2;6516:11;;;;;:::i;:::-;;;6385:154;;;6563:6;6549:21;;;;;5855:723;;;;:::o;41020:164::-;41117:4;41141:18;:25;41160:5;41141:25;;;;;;;;;;;;;;;:35;41167:8;41141:35;;;;;;;;;;;;;;;;;;;;;;;;;41134:42;;41020:164;;;;:::o;63750:105::-;63810:7;63837:10;63830:17;;63750:105;:::o;42605:485::-;42707:27;42736:23;42777:38;42818:15;:24;42834:7;42818:24;;;;;;;;;;;42777:65;;42995:18;42972:41;;43052:19;43046:26;43027:45;;42957:126;42605:485;;;:::o;41833:659::-;41982:11;42147:16;42140:5;42136:28;42127:37;;42307:16;42296:9;42292:32;42279:45;;42457:15;42446:9;42443:30;42435:5;42424:9;42421:20;42418:56;42408:66;;41833:659;;;;;:::o;48491:159::-;;;;;:::o;63059:311::-;63194:7;63214:16;25854:3;63240:19;:41;;63214:68;;25854:3;63308:31;63319:4;63325:2;63329:9;63308:10;:31::i;:::-;63300:40;;:62;;63293:69;;;63059:311;;;;;:::o;37951:450::-;38031:14;38199:16;38192:5;38188:28;38179:37;;38376:5;38362:11;38337:23;38333:41;38330:52;38323:5;38320:63;38310:73;;37951:450;;;;:::o;49315:158::-;;;;;:::o;56809:689::-;56940:19;56946:2;56950:8;56940:5;:19::i;:::-;57019:1;57001:2;:14;;;:19;56997:483;;57041:11;57055:13;;57041:27;;57087:13;57109:8;57103:3;:14;57087:30;;57136:233;57167:62;57206:1;57210:2;57214:7;;;;;;57223:5;57167:30;:62::i;:::-;57162:167;;57265:40;;;;;;;;;;;;;;57162:167;57364:3;57356:5;:11;57136:233;;57451:3;57434:13;;:20;57430:34;;57456:8;;;57430:34;57022:458;;56997:483;56809:689;;;:::o;49913:716::-;50076:4;50122:2;50097:45;;;50143:19;:17;:19::i;:::-;50164:4;50170:7;50179:5;50097:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50093:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50397:1;50380:6;:13;:18;50376:235;;50426:40;;;;;;;;;;;;;;50376:235;50569:6;50563:13;50554:6;50550:2;50546:15;50539:38;50093:529;50266:54;;;50256:64;;;:6;:64;;;;50249:71;;;49913:716;;;;;;:::o;62760:147::-;62897:6;62760:147;;;;;:::o;51091:2966::-;51164:20;51187:13;;51164:36;;51227:1;51215:8;:13;51211:44;;51237:18;;;;;;;;;;;;;;51211:44;51268:61;51298:1;51302:2;51306:12;51320:8;51268:21;:61::i;:::-;51812:1;24812:2;51782:1;:26;;51781:32;51769:8;:45;51743:18;:22;51762:2;51743:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52091:139;52128:2;52182:33;52205:1;52209:2;52213:1;52182:14;:33::i;:::-;52149:30;52170:8;52149:20;:30::i;:::-;:66;52091:18;:139::i;:::-;52057:17;:31;52075:12;52057:31;;;;;;;;;;;:173;;;;52247:16;52278:11;52307:8;52292:12;:23;52278:37;;52828:16;52824:2;52820:25;52808:37;;53200:12;53160:8;53119:1;53057:25;52998:1;52937;52910:335;53571:1;53557:12;53553:20;53511:346;53612:3;53603:7;53600:16;53511:346;;53830:7;53820:8;53817:1;53790:25;53787:1;53784;53779:59;53665:1;53656:7;53652:15;53641:26;;53511:346;;;53515:77;53902:1;53890:8;:13;53886:45;;53912:19;;;;;;;;;;;;;;53886:45;53964:3;53948:13;:19;;;;51517:2462;;53989:60;54018:1;54022:2;54026:12;54040:8;53989:20;:60::i;:::-;51153:2904;51091:2966;;:::o;38503:324::-;38573:14;38806:1;38796:8;38793:15;38767:24;38763:46;38753:56;;38503:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:181::-;13741:33;13737:1;13729:6;13725:14;13718:57;13601:181;:::o;13788:366::-;13930:3;13951:67;14015:2;14010:3;13951:67;:::i;:::-;13944:74;;14027:93;14116:3;14027:93;:::i;:::-;14145:2;14140:3;14136:12;14129:19;;13788:366;;;:::o;14160:419::-;14326:4;14364:2;14353:9;14349:18;14341:26;;14413:9;14407:4;14403:20;14399:1;14388:9;14384:17;14377:47;14441:131;14567:4;14441:131;:::i;:::-;14433:139;;14160:419;;;:::o;14585:147::-;14686:11;14723:3;14708:18;;14585:147;;;;:::o;14738:114::-;;:::o;14858:398::-;15017:3;15038:83;15119:1;15114:3;15038:83;:::i;:::-;15031:90;;15130:93;15219:3;15130:93;:::i;:::-;15248:1;15243:3;15239:11;15232:18;;14858:398;;;:::o;15262:379::-;15446:3;15468:147;15611:3;15468:147;:::i;:::-;15461:154;;15632:3;15625:10;;15262:379;;;:::o;15647:141::-;15696:4;15719:3;15711:11;;15742:3;15739:1;15732:14;15776:4;15773:1;15763:18;15755:26;;15647:141;;;:::o;15794:93::-;15831:6;15878:2;15873;15866:5;15862:14;15858:23;15848:33;;15794:93;;;:::o;15893:107::-;15937:8;15987:5;15981:4;15977:16;15956:37;;15893:107;;;;:::o;16006:393::-;16075:6;16125:1;16113:10;16109:18;16148:97;16178:66;16167:9;16148:97;:::i;:::-;16266:39;16296:8;16285:9;16266:39;:::i;:::-;16254:51;;16338:4;16334:9;16327:5;16323:21;16314:30;;16387:4;16377:8;16373:19;16366:5;16363:30;16353:40;;16082:317;;16006:393;;;;;:::o;16405:142::-;16455:9;16488:53;16506:34;16515:24;16533:5;16515:24;:::i;:::-;16506:34;:::i;:::-;16488:53;:::i;:::-;16475:66;;16405:142;;;:::o;16553:75::-;16596:3;16617:5;16610:12;;16553:75;;;:::o;16634:269::-;16744:39;16775:7;16744:39;:::i;:::-;16805:91;16854:41;16878:16;16854:41;:::i;:::-;16846:6;16839:4;16833:11;16805:91;:::i;:::-;16799:4;16792:105;16710:193;16634:269;;;:::o;16909:73::-;16954:3;16909:73;:::o;16988:189::-;17065:32;;:::i;:::-;17106:65;17164:6;17156;17150:4;17106:65;:::i;:::-;17041:136;16988:189;;:::o;17183:186::-;17243:120;17260:3;17253:5;17250:14;17243:120;;;17314:39;17351:1;17344:5;17314:39;:::i;:::-;17287:1;17280:5;17276:13;17267:22;;17243:120;;;17183:186;;:::o;17375:543::-;17476:2;17471:3;17468:11;17465:446;;;17510:38;17542:5;17510:38;:::i;:::-;17594:29;17612:10;17594:29;:::i;:::-;17584:8;17580:44;17777:2;17765:10;17762:18;17759:49;;;17798:8;17783:23;;17759:49;17821:80;17877:22;17895:3;17877:22;:::i;:::-;17867:8;17863:37;17850:11;17821:80;:::i;:::-;17480:431;;17465:446;17375:543;;;:::o;17924:117::-;17978:8;18028:5;18022:4;18018:16;17997:37;;17924:117;;;;:::o;18047:169::-;18091:6;18124:51;18172:1;18168:6;18160:5;18157:1;18153:13;18124:51;:::i;:::-;18120:56;18205:4;18199;18195:15;18185:25;;18098:118;18047:169;;;;:::o;18221:295::-;18297:4;18443:29;18468:3;18462:4;18443:29;:::i;:::-;18435:37;;18505:3;18502:1;18498:11;18492:4;18489:21;18481:29;;18221:295;;;;:::o;18521:1395::-;18638:37;18671:3;18638:37;:::i;:::-;18740:18;18732:6;18729:30;18726:56;;;18762:18;;:::i;:::-;18726:56;18806:38;18838:4;18832:11;18806:38;:::i;:::-;18891:67;18951:6;18943;18937:4;18891:67;:::i;:::-;18985:1;19009:4;18996:17;;19041:2;19033:6;19030:14;19058:1;19053:618;;;;19715:1;19732:6;19729:77;;;19781:9;19776:3;19772:19;19766:26;19757:35;;19729:77;19832:67;19892:6;19885:5;19832:67;:::i;:::-;19826:4;19819:81;19688:222;19023:887;;19053:618;19105:4;19101:9;19093:6;19089:22;19139:37;19171:4;19139:37;:::i;:::-;19198:1;19212:208;19226:7;19223:1;19220:14;19212:208;;;19305:9;19300:3;19296:19;19290:26;19282:6;19275:42;19356:1;19348:6;19344:14;19334:24;;19403:2;19392:9;19388:18;19375:31;;19249:4;19246:1;19242:12;19237:17;;19212:208;;;19448:6;19439:7;19436:19;19433:179;;;19506:9;19501:3;19497:19;19491:26;19549:48;19591:4;19583:6;19579:17;19568:9;19549:48;:::i;:::-;19541:6;19534:64;19456:156;19433:179;19658:1;19654;19646:6;19642:14;19638:22;19632:4;19625:36;19060:611;;;19023:887;;18613:1303;;;18521:1395;;:::o;19922:180::-;19970:77;19967:1;19960:88;20067:4;20064:1;20057:15;20091:4;20088:1;20081:15;20108:191;20148:3;20167:20;20185:1;20167:20;:::i;:::-;20162:25;;20201:20;20219:1;20201:20;:::i;:::-;20196:25;;20244:1;20241;20237:9;20230:16;;20265:3;20262:1;20259:10;20256:36;;;20272:18;;:::i;:::-;20256:36;20108:191;;;;:::o;20305:442::-;20454:4;20492:2;20481:9;20477:18;20469:26;;20505:71;20573:1;20562:9;20558:17;20549:6;20505:71;:::i;:::-;20586:72;20654:2;20643:9;20639:18;20630:6;20586:72;:::i;:::-;20668;20736:2;20725:9;20721:18;20712:6;20668:72;:::i;:::-;20305:442;;;;;;:::o;20753:410::-;20793:7;20816:20;20834:1;20816:20;:::i;:::-;20811:25;;20850:20;20868:1;20850:20;:::i;:::-;20845:25;;20905:1;20902;20898:9;20927:30;20945:11;20927:30;:::i;:::-;20916:41;;21106:1;21097:7;21093:15;21090:1;21087:22;21067:1;21060:9;21040:83;21017:139;;21136:18;;:::i;:::-;21017:139;20801:362;20753:410;;;;:::o;21169:179::-;21309:31;21305:1;21297:6;21293:14;21286:55;21169:179;:::o;21354:366::-;21496:3;21517:67;21581:2;21576:3;21517:67;:::i;:::-;21510:74;;21593:93;21682:3;21593:93;:::i;:::-;21711:2;21706:3;21702:12;21695:19;;21354:366;;;:::o;21726:419::-;21892:4;21930:2;21919:9;21915:18;21907:26;;21979:9;21973:4;21969:20;21965:1;21954:9;21950:17;21943:47;22007:131;22133:4;22007:131;:::i;:::-;21999:139;;21726:419;;;:::o;22151:194::-;22191:4;22211:20;22229:1;22211:20;:::i;:::-;22206:25;;22245:20;22263:1;22245:20;:::i;:::-;22240:25;;22289:1;22286;22282:9;22274:17;;22313:1;22307:4;22304:11;22301:37;;;22318:18;;:::i;:::-;22301:37;22151:194;;;;:::o;22351:159::-;22491:11;22487:1;22479:6;22475:14;22468:35;22351:159;:::o;22516:365::-;22658:3;22679:66;22743:1;22738:3;22679:66;:::i;:::-;22672:73;;22754:93;22843:3;22754:93;:::i;:::-;22872:2;22867:3;22863:12;22856:19;;22516:365;;;:::o;22887:419::-;23053:4;23091:2;23080:9;23076:18;23068:26;;23140:9;23134:4;23130:20;23126:1;23115:9;23111:17;23104:47;23168:131;23294:4;23168:131;:::i;:::-;23160:139;;22887:419;;;:::o;23312:169::-;23452:21;23448:1;23440:6;23436:14;23429:45;23312:169;:::o;23487:366::-;23629:3;23650:67;23714:2;23709:3;23650:67;:::i;:::-;23643:74;;23726:93;23815:3;23726:93;:::i;:::-;23844:2;23839:3;23835:12;23828:19;;23487:366;;;:::o;23859:419::-;24025:4;24063:2;24052:9;24048:18;24040:26;;24112:9;24106:4;24102:20;24098:1;24087:9;24083:17;24076:47;24140:131;24266:4;24140:131;:::i;:::-;24132:139;;23859:419;;;:::o;24284:234::-;24424:34;24420:1;24412:6;24408:14;24401:58;24493:17;24488:2;24480:6;24476:15;24469:42;24284:234;:::o;24524:366::-;24666:3;24687:67;24751:2;24746:3;24687:67;:::i;:::-;24680:74;;24763:93;24852:3;24763:93;:::i;:::-;24881:2;24876:3;24872:12;24865:19;;24524:366;;;:::o;24896:419::-;25062:4;25100:2;25089:9;25085:18;25077:26;;25149:9;25143:4;25139:20;25135:1;25124:9;25120:17;25113:47;25177:131;25303:4;25177:131;:::i;:::-;25169:139;;24896:419;;;:::o;25321:148::-;25423:11;25460:3;25445:18;;25321:148;;;;:::o;25499:874::-;25602:3;25639:5;25633:12;25668:36;25694:9;25668:36;:::i;:::-;25720:89;25802:6;25797:3;25720:89;:::i;:::-;25713:96;;25840:1;25829:9;25825:17;25856:1;25851:166;;;;26031:1;26026:341;;;;25818:549;;25851:166;25935:4;25931:9;25920;25916:25;25911:3;25904:38;25997:6;25990:14;25983:22;25975:6;25971:35;25966:3;25962:45;25955:52;;25851:166;;26026:341;26093:38;26125:5;26093:38;:::i;:::-;26153:1;26167:154;26181:6;26178:1;26175:13;26167:154;;;26255:7;26249:14;26245:1;26240:3;26236:11;26229:35;26305:1;26296:7;26292:15;26281:26;;26203:4;26200:1;26196:12;26191:17;;26167:154;;;26350:6;26345:3;26341:16;26334:23;;26033:334;;25818:549;;25606:767;;25499:874;;;;:::o;26379:390::-;26485:3;26513:39;26546:5;26513:39;:::i;:::-;26568:89;26650:6;26645:3;26568:89;:::i;:::-;26561:96;;26666:65;26724:6;26719:3;26712:4;26705:5;26701:16;26666:65;:::i;:::-;26756:6;26751:3;26747:16;26740:23;;26489:280;26379:390;;;;:::o;26775:155::-;26915:7;26911:1;26903:6;26899:14;26892:31;26775:155;:::o;26936:400::-;27096:3;27117:84;27199:1;27194:3;27117:84;:::i;:::-;27110:91;;27210:93;27299:3;27210:93;:::i;:::-;27328:1;27323:3;27319:11;27312:18;;26936:400;;;:::o;27342:695::-;27620:3;27642:92;27730:3;27721:6;27642:92;:::i;:::-;27635:99;;27751:95;27842:3;27833:6;27751:95;:::i;:::-;27744:102;;27863:148;28007:3;27863:148;:::i;:::-;27856:155;;28028:3;28021:10;;27342:695;;;;;:::o;28043:225::-;28183:34;28179:1;28171:6;28167:14;28160:58;28252:8;28247:2;28239:6;28235:15;28228:33;28043:225;:::o;28274:366::-;28416:3;28437:67;28501:2;28496:3;28437:67;:::i;:::-;28430:74;;28513:93;28602:3;28513:93;:::i;:::-;28631:2;28626:3;28622:12;28615:19;;28274:366;;;:::o;28646:419::-;28812:4;28850:2;28839:9;28835:18;28827:26;;28899:9;28893:4;28889:20;28885:1;28874:9;28870:17;28863:47;28927:131;29053:4;28927:131;:::i;:::-;28919:139;;28646:419;;;:::o;29071:332::-;29192:4;29230:2;29219:9;29215:18;29207:26;;29243:71;29311:1;29300:9;29296:17;29287:6;29243:71;:::i;:::-;29324:72;29392:2;29381:9;29377:18;29368:6;29324:72;:::i;:::-;29071:332;;;;;:::o;29409:137::-;29463:5;29494:6;29488:13;29479:22;;29510:30;29534:5;29510:30;:::i;:::-;29409:137;;;;:::o;29552:345::-;29619:6;29668:2;29656:9;29647:7;29643:23;29639:32;29636:119;;;29674:79;;:::i;:::-;29636:119;29794:1;29819:61;29872:7;29863:6;29852:9;29848:22;29819:61;:::i;:::-;29809:71;;29765:125;29552:345;;;;:::o;29903:182::-;30043:34;30039:1;30031:6;30027:14;30020:58;29903:182;:::o;30091:366::-;30233:3;30254:67;30318:2;30313:3;30254:67;:::i;:::-;30247:74;;30330:93;30419:3;30330:93;:::i;:::-;30448:2;30443:3;30439:12;30432:19;;30091:366;;;:::o;30463:419::-;30629:4;30667:2;30656:9;30652:18;30644:26;;30716:9;30710:4;30706:20;30702:1;30691:9;30687:17;30680:47;30744:131;30870:4;30744:131;:::i;:::-;30736:139;;30463:419;;;:::o;30888:233::-;30927:3;30950:24;30968:5;30950:24;:::i;:::-;30941:33;;30996:66;30989:5;30986:77;30983:103;;31066:18;;:::i;:::-;30983:103;31113:1;31106:5;31102:13;31095:20;;30888:233;;;:::o;31127:180::-;31175:77;31172:1;31165:88;31272:4;31269:1;31262:15;31296:4;31293:1;31286:15;31313:185;31353:1;31370:20;31388:1;31370:20;:::i;:::-;31365:25;;31404:20;31422:1;31404:20;:::i;:::-;31399:25;;31443:1;31433:35;;31448:18;;:::i;:::-;31433:35;31490:1;31487;31483:9;31478:14;;31313:185;;;;:::o;31504:176::-;31536:1;31553:20;31571:1;31553:20;:::i;:::-;31548:25;;31587:20;31605:1;31587:20;:::i;:::-;31582:25;;31626:1;31616:35;;31631:18;;:::i;:::-;31616:35;31672:1;31669;31665:9;31660:14;;31504:176;;;;:::o;31686:180::-;31734:77;31731:1;31724:88;31831:4;31828:1;31821:15;31855:4;31852:1;31845:15;31872:98;31923:6;31957:5;31951:12;31941:22;;31872:98;;;:::o;31976:168::-;32059:11;32093:6;32088:3;32081:19;32133:4;32128:3;32124:14;32109:29;;31976:168;;;;:::o;32150:373::-;32236:3;32264:38;32296:5;32264:38;:::i;:::-;32318:70;32381:6;32376:3;32318:70;:::i;:::-;32311:77;;32397:65;32455:6;32450:3;32443:4;32436:5;32432:16;32397:65;:::i;:::-;32487:29;32509:6;32487:29;:::i;:::-;32482:3;32478:39;32471:46;;32240:283;32150:373;;;;:::o;32529:640::-;32724:4;32762:3;32751:9;32747:19;32739:27;;32776:71;32844:1;32833:9;32829:17;32820:6;32776:71;:::i;:::-;32857:72;32925:2;32914:9;32910:18;32901:6;32857:72;:::i;:::-;32939;33007:2;32996:9;32992:18;32983:6;32939:72;:::i;:::-;33058:9;33052:4;33048:20;33043:2;33032:9;33028:18;33021:48;33086:76;33157:4;33148:6;33086:76;:::i;:::-;33078:84;;32529:640;;;;;;;:::o;33175:141::-;33231:5;33262:6;33256:13;33247:22;;33278:32;33304:5;33278:32;:::i;:::-;33175:141;;;;:::o;33322:349::-;33391:6;33440:2;33428:9;33419:7;33415:23;33411:32;33408:119;;;33446:79;;:::i;:::-;33408:119;33566:1;33591:63;33646:7;33637:6;33626:9;33622:22;33591:63;:::i;:::-;33581:73;;33537:127;33322:349;;;;:::o

Swarm Source

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