ETH Price: $3,315.81 (+0.24%)
Gas: 16 Gwei

Token

MilkTheCow (MILKER)
 

Overview

Max Total Supply

3,500 MILKER

Holders

1,615

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MILKER
0x59a99dcca15255c046b430c02defc78b9c11855c
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:
MilkTheCow

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-06
*/

// SPDX-License-Identifier: MIT

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



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 {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) 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: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/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/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: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/MilkTheCow.sol



pragma solidity ^0.8.15;


contract MilkTheCow is ERC721A, DefaultOperatorFilterer, Ownable {

    mapping (address => bool) public minterAddress;
    string public baseURI;  
    uint256 public price = 0;
    uint256 public milkerLimit = 2;
    uint256 public milkerSupply = 3500;
    mapping (address => uint256) public walletPublic;


    constructor () ERC721A("MilkTheCow", "MILKER") {
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

   
   //Main Functions//

    function publicMint(uint256 qty) external payable
    {
        require(qty <= milkerLimit, "All Milked Out!");
        require(totalSupply() + qty <= milkerSupply,"No Milkers Left!");
        require(msg.value >= qty * price,"Not Enough Chedda!");
        walletPublic[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }

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

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
        
    }

    function setMaxMints(uint256 newMax) public onlyOwner {
        milkerLimit = newMax;

    }

    //Milking Functions//

        // Mapping of user addresses to their milk balances
        mapping(address => uint256) private milkBalances;

        // Mapping of user addresses to the timestamp when their milk balance last changed
        mapping(address => uint256) private milkLastUpdateTime;

        // The amount of milk that must be staked to receive rewards
        uint256 private constant MILK_THRESHOLD = 5000;

        // The amount of time that must elapse before a user can withdraw their milk
        uint256 private constant MILK_WITHDRAWAL_PERIOD = 1 days;

        uint256 private constant REWARD_RATE = 2;

        uint256 private rewardPeriodStart;

        // The total number of tokens that have been distributed as rewards
        uint256 private totalRewardsDistributed;

        /**
        * @dev Milks a certain amount of tokens, staking them to earn rewards.
        * @param amount The amount of tokens to milk.
        */
    function milk(uint256 amount) external {
        // Make sure the user has enough tokens to milk
        require(amount > 0, "Must milk at least some tokens");
        require(amount <= balanceOf(msg.sender), "Cannot milk more tokens than you own");

        // Update the user's milk balance and last update time
            milkBalances[msg.sender] += amount;
            milkLastUpdateTime[msg.sender] = block.timestamp;


         // If the user has met the milk threshold, start the reward period if it hasn't already started
            if (milkBalances[msg.sender] >= MILK_THRESHOLD && rewardPeriodStart == 0) {
             rewardPeriodStart = block.timestamp;
         }
         }

         /**
         * @dev Withdraws a certain amount of milk tokens and any rewards earned.
         * @param amount The amount of milk tokens to withdraw.
          */
    function withdrawMilk(uint256 amount) external {
        // Make sure the user has enough milk tokens to withdraw
        require(amount > 0, "Must withdraw at least some milk tokens");
        require(amount <= milkBalances[msg.sender], "Cannot withdraw more milk tokens than you own");

        // Make sure the user has waited long enough since their last update time
        require(block.timestamp >= milkLastUpdateTime[msg.sender] + MILK_WITHDRAWAL_PERIOD, "Cannot withdraw milk tokens yet");

        // Calculate the total rewards earned by the user
        uint256 rewardsEarned = calculateRewards(msg.sender);

        // Transfer the milk tokens and rewards to the user
         milkBalances[msg.sender] -= amount;
         milkLastUpdateTime[msg.sender] = block.timestamp;
            totalRewardsDistributed += rewardsEarned;
         }

        /**
         * @dev Calculates the total amount of rewards earned by a user.
         * @param user The user's address.
         * @return The total amount of rewards earned.
         */
    function calculateRewards(address user) public view returns (uint256) {
         // Make sure the reward period has started
         if (rewardPeriodStart == 0) {
             return 0;
         }

         // Calculate the duration of the current reward period
         uint256 rewardPeriodDuration = block.timestamp - rewardPeriodStart;

         // Calculate the user's reward rate
         uint256 userRewardRate = milkBalances[user] >= MILK_THRESHOLD ? REWARD_RATE : 0;

         // Calculate the total rewards earned by the user
          uint256 rewardsEarned = milkBalances[user] * userRewardRate * rewardPeriodDuration;

        return rewardsEarned;
        }

    //Opensea Operator Filter//

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"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":[{"internalType":"address","name":"user","type":"address"}],"name":"calculateRewards","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":"amount","type":"uint256"}],"name":"milk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"milkerLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"milkerSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","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":[{"internalType":"address","name":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawMilk","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b556002600c55610dac600d553480156200002157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a81526020017f4d696c6b546865436f77000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d494c4b455200000000000000000000000000000000000000000000000000008152508160029081620000b691906200064f565b508060039081620000c891906200064f565b50620000d9620002fe60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002d65780156200019c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001629291906200077b565b600060405180830381600087803b1580156200017d57600080fd5b505af115801562000192573d6000803e3d6000fd5b50505050620002d5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000256576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200021c9291906200077b565b600060405180830381600087803b1580156200023757600080fd5b505af11580156200024c573d6000803e3d6000fd5b50505050620002d4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200029f9190620007a8565b600060405180830381600087803b158015620002ba57600080fd5b505af1158015620002cf573d6000803e3d6000fd5b505050505b5b5b5050620002f8620002ec6200030760201b60201c565b6200030f60201b60201c565b620007c5565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045757607f821691505b6020821081036200046d576200046c6200040f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004d77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000498565b620004e3868362000498565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005306200052a6200052484620004fb565b62000505565b620004fb565b9050919050565b6000819050919050565b6200054c836200050f565b620005646200055b8262000537565b848454620004a5565b825550505050565b600090565b6200057b6200056c565b6200058881848462000541565b505050565b5b81811015620005b057620005a460008262000571565b6001810190506200058e565b5050565b601f821115620005ff57620005c98162000473565b620005d48462000488565b81016020851015620005e4578190505b620005fc620005f38562000488565b8301826200058d565b50505b505050565b600082821c905092915050565b6000620006246000198460080262000604565b1980831691505092915050565b60006200063f838362000611565b9150826002028217905092915050565b6200065a82620003d5565b67ffffffffffffffff811115620006765762000675620003e0565b5b6200068282546200043e565b6200068f828285620005b4565b600060209050601f831160018114620006c75760008415620006b2578287015190505b620006be858262000631565b8655506200072e565b601f198416620006d78662000473565b60005b828110156200070157848901518255600182019150602085019450602081019050620006da565b868310156200072157848901516200071d601f89168262000611565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007638262000736565b9050919050565b620007758162000756565b82525050565b60006040820190506200079260008301856200076a565b620007a160208301846200076a565b9392505050565b6000602082019050620007bf60008301846200076a565b92915050565b6138a680620007d56000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063e8874d4211610064578063e8874d4214610659578063e985e9c514610682578063f2fde38b146106bf578063f3592d7e146106e8576101cd565b8063a22cb465146105ae578063b88d4fde146105d7578063c87b56dd146105f3578063e758b5a614610630576101cd565b80638a109271116100d15780638a109271146105025780638da5cb5b1461052d57806395d89b4114610558578063a035b1fe14610583576101cd565b806370a0823114610485578063715018a6146104c257806379c9cb7b146104d9576101cd565b80632be905ba1161016f57806355f804b31161013e57806355f804b3146103b75780636352211e146103e057806364ab86751461041d5780636c0360eb1461045a576101cd565b80632be905ba146103175780632db115441461035457806341f434341461037057806342842e0e1461039b576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806322ae7f7b146102be57806323b872dd146102fb576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612793565b610713565b60405161020691906127db565b60405180910390f35b34801561021b57600080fd5b506102246107a5565b6040516102319190612886565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906128de565b610837565b60405161026e919061294c565b60405180910390f35b610291600480360381019061028c9190612993565b6108b6565b005b34801561029f57600080fd5b506102a86109c0565b6040516102b591906129e2565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906129fd565b6109d7565b6040516102f291906127db565b60405180910390f35b61031560048036038101906103109190612a2a565b6109f7565b005b34801561032357600080fd5b5061033e600480360381019061033991906129fd565b610b47565b60405161034b91906129e2565b60405180910390f35b61036e600480360381019061036991906128de565b610b5f565b005b34801561037c57600080fd5b50610385610cae565b6040516103929190612adc565b60405180910390f35b6103b560048036038101906103b09190612a2a565b610cc0565b005b3480156103c357600080fd5b506103de60048036038101906103d99190612c2c565b610e10565b005b3480156103ec57600080fd5b50610407600480360381019061040291906128de565b610e2b565b604051610414919061294c565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906129fd565b610e3d565b60405161045191906129e2565b60405180910390f35b34801561046657600080fd5b5061046f610f20565b60405161047c9190612886565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a791906129fd565b610fae565b6040516104b991906129e2565b60405180910390f35b3480156104ce57600080fd5b506104d7611066565b005b3480156104e557600080fd5b5061050060048036038101906104fb91906128de565b61107a565b005b34801561050e57600080fd5b5061051761108c565b60405161052491906129e2565b60405180910390f35b34801561053957600080fd5b50610542611092565b60405161054f919061294c565b60405180910390f35b34801561056457600080fd5b5061056d6110bc565b60405161057a9190612886565b60405180910390f35b34801561058f57600080fd5b5061059861114e565b6040516105a591906129e2565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612ca1565b611154565b005b6105f160048036038101906105ec9190612d82565b61125e565b005b3480156105ff57600080fd5b5061061a600480360381019061061591906128de565b6113b1565b6040516106279190612886565b60405180910390f35b34801561063c57600080fd5b50610657600480360381019061065291906128de565b61144f565b005b34801561066557600080fd5b50610680600480360381019061067b91906128de565b611668565b005b34801561068e57600080fd5b506106a960048036038101906106a49190612e05565b6117f3565b6040516106b691906127db565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e191906129fd565b611887565b005b3480156106f457600080fd5b506106fd61190a565b60405161070a91906129e2565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107b490612e74565b80601f01602080910402602001604051908101604052809291908181526020018280546107e090612e74565b801561082d5780601f106108025761010080835404028352916020019161082d565b820191906000526020600020905b81548152906001019060200180831161081057829003601f168201915b5050505050905090565b600061084282611910565b610878576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109b1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161092e929190612ea5565b602060405180830381865afa15801561094b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096f9190612ee3565b6109b057806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109a7919061294c565b60405180910390fd5b5b6109bb838361196f565b505050565b60006109ca611ab3565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b35573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a6957610a64848484611abc565b610b41565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ab2929190612ea5565b602060405180830381865afa158015610acf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af39190612ee3565b610b3457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b2b919061294c565b60405180910390fd5b5b610b40848484611abc565b5b50505050565b600e6020528060005260406000206000915090505481565b600c54811115610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b90612f5c565b60405180910390fd5b600d5481610bb06109c0565b610bba9190612fab565b1115610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf29061302b565b60405180910390fd5b600b5481610c09919061304b565b341015610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c42906130d9565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c9a9190612fab565b92505081905550610cab3382611dde565b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610dfe573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3257610d2d848484611dfc565b610e0a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d7b929190612ea5565b602060405180830381865afa158015610d98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbc9190612ee3565b610dfd57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610df4919061294c565b60405180910390fd5b5b610e09848484611dfc565b5b50505050565b610e18611e1c565b80600a9081610e27919061329b565b5050565b6000610e3682611e9a565b9050919050565b60008060115403610e515760009050610f1b565b600060115442610e61919061336d565b90506000611388600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610eb5576000610eb8565b60025b905060008282600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f08919061304b565b610f12919061304b565b90508093505050505b919050565b600a8054610f2d90612e74565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5990612e74565b8015610fa65780601f10610f7b57610100808354040283529160200191610fa6565b820191906000526020600020905b815481529060010190602001808311610f8957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611015576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61106e611e1c565b6110786000611f66565b565b611082611e1c565b80600c8190555050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110cb90612e74565b80601f01602080910402602001604051908101604052809291908181526020018280546110f790612e74565b80156111445780601f1061111957610100808354040283529160200191611144565b820191906000526020600020905b81548152906001019060200180831161112757829003601f168201915b5050505050905090565b600b5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561124f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111cc929190612ea5565b602060405180830381865afa1580156111e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120d9190612ee3565b61124e57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611245919061294c565b60405180910390fd5b5b611259838361202c565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561139d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d1576112cc85858585612137565b6113aa565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161131a929190612ea5565b602060405180830381865afa158015611337573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135b9190612ee3565b61139c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611393919061294c565b60405180910390fd5b5b6113a985858585612137565b5b5050505050565b60606113bc82611910565b6113f2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113fc6121aa565b9050600081510361141c5760405180602001604052806000815250611447565b806114268461223c565b6040516020016114379291906133dd565b6040516020818303038152906040525b915050919050565b60008111611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148990613473565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90613505565b60405180910390fd5b62015180601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115629190612fab565b4210156115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613571565b60405180910390fd5b60006115af33610e3d565b905081600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611600919061336d565b9250508190555042601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806012600082825461165d9190612fab565b925050819055505050565b600081116116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a2906135dd565b60405180910390fd5b6116b433610fae565b8111156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed9061366f565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117459190612fab565b9250508190555042601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611388600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101580156117e357506000601154145b156117f057426011819055505b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61188f611e1c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613701565b60405180910390fd5b61190781611f66565b50565b600c5481565b60008161191b611ab3565b1115801561192a575060005482105b8015611968575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061197a82610e2b565b90508073ffffffffffffffffffffffffffffffffffffffff1661199b61228c565b73ffffffffffffffffffffffffffffffffffffffff16146119fe576119c7816119c261228c565b6117f3565b6119fd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611ac782611e9a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b2e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b3a84612294565b91509150611b508187611b4b61228c565b6122bb565b611b9c57611b6586611b6061228c565b6117f3565b611b9b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c02576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c0f86868660016122ff565b8015611c1a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611ce885611cc4888887612305565b7c02000000000000000000000000000000000000000000000000000000001761232d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611d6e5760006001850190506000600460008381526020019081526020016000205403611d6c576000548114611d6b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dd68686866001612358565b505050505050565b611df882826040518060200160405280600081525061235e565b5050565b611e178383836040518060200160405280600081525061125e565b505050565b611e246123fb565b73ffffffffffffffffffffffffffffffffffffffff16611e42611092565b73ffffffffffffffffffffffffffffffffffffffff1614611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f9061376d565b60405180910390fd5b565b60008082905080611ea9611ab3565b11611f2f57600054811015611f2e5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f2c575b60008103611f22576004600083600190039350838152602001908152602001600020549050611ef8565b8092505050611f61565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806007600061203961228c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120e661228c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161212b91906127db565b60405180910390a35050565b6121428484846109f7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121a45761216d84848484612403565b6121a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546121b990612e74565b80601f01602080910402602001604051908101604052809291908181526020018280546121e590612e74565b80156122325780601f1061220757610100808354040283529160200191612232565b820191906000526020600020905b81548152906001019060200180831161221557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561227757600184039350600a81066030018453600a8104905080612255575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861231c868684612553565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612368838361255c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123f657600080549050600083820390505b6123a86000868380600101945086612403565b6123de576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123955781600054146123f357600080fd5b50505b505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261242961228c565b8786866040518563ffffffff1660e01b815260040161244b94939291906137e2565b6020604051808303816000875af192505050801561248757506040513d601f19601f820116820180604052508101906124849190613843565b60015b612500573d80600081146124b7576040519150601f19603f3d011682016040523d82523d6000602084013e6124bc565b606091505b5060008151036124f8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361259c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125a960008483856122ff565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612620836126116000866000612305565b61261a85612717565b1761232d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126c157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612686565b50600082036126fc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127126000848385612358565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127708161273b565b811461277b57600080fd5b50565b60008135905061278d81612767565b92915050565b6000602082840312156127a9576127a8612731565b5b60006127b78482850161277e565b91505092915050565b60008115159050919050565b6127d5816127c0565b82525050565b60006020820190506127f060008301846127cc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612830578082015181840152602081019050612815565b60008484015250505050565b6000601f19601f8301169050919050565b6000612858826127f6565b6128628185612801565b9350612872818560208601612812565b61287b8161283c565b840191505092915050565b600060208201905081810360008301526128a0818461284d565b905092915050565b6000819050919050565b6128bb816128a8565b81146128c657600080fd5b50565b6000813590506128d8816128b2565b92915050565b6000602082840312156128f4576128f3612731565b5b6000612902848285016128c9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129368261290b565b9050919050565b6129468161292b565b82525050565b6000602082019050612961600083018461293d565b92915050565b6129708161292b565b811461297b57600080fd5b50565b60008135905061298d81612967565b92915050565b600080604083850312156129aa576129a9612731565b5b60006129b88582860161297e565b92505060206129c9858286016128c9565b9150509250929050565b6129dc816128a8565b82525050565b60006020820190506129f760008301846129d3565b92915050565b600060208284031215612a1357612a12612731565b5b6000612a218482850161297e565b91505092915050565b600080600060608486031215612a4357612a42612731565b5b6000612a518682870161297e565b9350506020612a628682870161297e565b9250506040612a73868287016128c9565b9150509250925092565b6000819050919050565b6000612aa2612a9d612a988461290b565b612a7d565b61290b565b9050919050565b6000612ab482612a87565b9050919050565b6000612ac682612aa9565b9050919050565b612ad681612abb565b82525050565b6000602082019050612af16000830184612acd565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b398261283c565b810181811067ffffffffffffffff82111715612b5857612b57612b01565b5b80604052505050565b6000612b6b612727565b9050612b778282612b30565b919050565b600067ffffffffffffffff821115612b9757612b96612b01565b5b612ba08261283c565b9050602081019050919050565b82818337600083830152505050565b6000612bcf612bca84612b7c565b612b61565b905082815260208101848484011115612beb57612bea612afc565b5b612bf6848285612bad565b509392505050565b600082601f830112612c1357612c12612af7565b5b8135612c23848260208601612bbc565b91505092915050565b600060208284031215612c4257612c41612731565b5b600082013567ffffffffffffffff811115612c6057612c5f612736565b5b612c6c84828501612bfe565b91505092915050565b612c7e816127c0565b8114612c8957600080fd5b50565b600081359050612c9b81612c75565b92915050565b60008060408385031215612cb857612cb7612731565b5b6000612cc68582860161297e565b9250506020612cd785828601612c8c565b9150509250929050565b600067ffffffffffffffff821115612cfc57612cfb612b01565b5b612d058261283c565b9050602081019050919050565b6000612d25612d2084612ce1565b612b61565b905082815260208101848484011115612d4157612d40612afc565b5b612d4c848285612bad565b509392505050565b600082601f830112612d6957612d68612af7565b5b8135612d79848260208601612d12565b91505092915050565b60008060008060808587031215612d9c57612d9b612731565b5b6000612daa8782880161297e565b9450506020612dbb8782880161297e565b9350506040612dcc878288016128c9565b925050606085013567ffffffffffffffff811115612ded57612dec612736565b5b612df987828801612d54565b91505092959194509250565b60008060408385031215612e1c57612e1b612731565b5b6000612e2a8582860161297e565b9250506020612e3b8582860161297e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e8c57607f821691505b602082108103612e9f57612e9e612e45565b5b50919050565b6000604082019050612eba600083018561293d565b612ec7602083018461293d565b9392505050565b600081519050612edd81612c75565b92915050565b600060208284031215612ef957612ef8612731565b5b6000612f0784828501612ece565b91505092915050565b7f416c6c204d696c6b6564204f7574210000000000000000000000000000000000600082015250565b6000612f46600f83612801565b9150612f5182612f10565b602082019050919050565b60006020820190508181036000830152612f7581612f39565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fb6826128a8565b9150612fc1836128a8565b9250828201905080821115612fd957612fd8612f7c565b5b92915050565b7f4e6f204d696c6b657273204c6566742100000000000000000000000000000000600082015250565b6000613015601083612801565b915061302082612fdf565b602082019050919050565b6000602082019050818103600083015261304481613008565b9050919050565b6000613056826128a8565b9150613061836128a8565b925082820261306f816128a8565b9150828204841483151761308657613085612f7c565b5b5092915050565b7f4e6f7420456e6f75676820436865646461210000000000000000000000000000600082015250565b60006130c3601283612801565b91506130ce8261308d565b602082019050919050565b600060208201905081810360008301526130f2816130b6565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261315b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261311e565b613165868361311e565b95508019841693508086168417925050509392505050565b600061319861319361318e846128a8565b612a7d565b6128a8565b9050919050565b6000819050919050565b6131b28361317d565b6131c66131be8261319f565b84845461312b565b825550505050565b600090565b6131db6131ce565b6131e68184846131a9565b505050565b5b8181101561320a576131ff6000826131d3565b6001810190506131ec565b5050565b601f82111561324f57613220816130f9565b6132298461310e565b81016020851015613238578190505b61324c6132448561310e565b8301826131eb565b50505b505050565b600082821c905092915050565b600061327260001984600802613254565b1980831691505092915050565b600061328b8383613261565b9150826002028217905092915050565b6132a4826127f6565b67ffffffffffffffff8111156132bd576132bc612b01565b5b6132c78254612e74565b6132d282828561320e565b600060209050601f83116001811461330557600084156132f3578287015190505b6132fd858261327f565b865550613365565b601f198416613313866130f9565b60005b8281101561333b57848901518255600182019150602085019450602081019050613316565b868310156133585784890151613354601f891682613261565b8355505b6001600288020188555050505b505050505050565b6000613378826128a8565b9150613383836128a8565b925082820390508181111561339b5761339a612f7c565b5b92915050565b600081905092915050565b60006133b7826127f6565b6133c181856133a1565b93506133d1818560208601612812565b80840191505092915050565b60006133e982856133ac565b91506133f582846133ac565b91508190509392505050565b7f4d757374207769746864726177206174206c6561737420736f6d65206d696c6b60008201527f20746f6b656e7300000000000000000000000000000000000000000000000000602082015250565b600061345d602783612801565b915061346882613401565b604082019050919050565b6000602082019050818103600083015261348c81613450565b9050919050565b7f43616e6e6f74207769746864726177206d6f7265206d696c6b20746f6b656e7360008201527f207468616e20796f75206f776e00000000000000000000000000000000000000602082015250565b60006134ef602d83612801565b91506134fa82613493565b604082019050919050565b6000602082019050818103600083015261351e816134e2565b9050919050565b7f43616e6e6f74207769746864726177206d696c6b20746f6b656e732079657400600082015250565b600061355b601f83612801565b915061356682613525565b602082019050919050565b6000602082019050818103600083015261358a8161354e565b9050919050565b7f4d757374206d696c6b206174206c6561737420736f6d6520746f6b656e730000600082015250565b60006135c7601e83612801565b91506135d282613591565b602082019050919050565b600060208201905081810360008301526135f6816135ba565b9050919050565b7f43616e6e6f74206d696c6b206d6f726520746f6b656e73207468616e20796f7560008201527f206f776e00000000000000000000000000000000000000000000000000000000602082015250565b6000613659602483612801565b9150613664826135fd565b604082019050919050565b600060208201905081810360008301526136888161364c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136eb602683612801565b91506136f68261368f565b604082019050919050565b6000602082019050818103600083015261371a816136de565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613757602083612801565b915061376282613721565b602082019050919050565b600060208201905081810360008301526137868161374a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137b48261378d565b6137be8185613798565b93506137ce818560208601612812565b6137d78161283c565b840191505092915050565b60006080820190506137f7600083018761293d565b613804602083018661293d565b61381160408301856129d3565b818103606083015261382381846137a9565b905095945050505050565b60008151905061383d81612767565b92915050565b60006020828403121561385957613858612731565b5b60006138678482850161382e565b9150509291505056fea264697066735822122097e5127fdaeae5ff093995f5ab586819886ff003a30adfd50d1f41965efff8ec64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063e8874d4211610064578063e8874d4214610659578063e985e9c514610682578063f2fde38b146106bf578063f3592d7e146106e8576101cd565b8063a22cb465146105ae578063b88d4fde146105d7578063c87b56dd146105f3578063e758b5a614610630576101cd565b80638a109271116100d15780638a109271146105025780638da5cb5b1461052d57806395d89b4114610558578063a035b1fe14610583576101cd565b806370a0823114610485578063715018a6146104c257806379c9cb7b146104d9576101cd565b80632be905ba1161016f57806355f804b31161013e57806355f804b3146103b75780636352211e146103e057806364ab86751461041d5780636c0360eb1461045a576101cd565b80632be905ba146103175780632db115441461035457806341f434341461037057806342842e0e1461039b576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806322ae7f7b146102be57806323b872dd146102fb576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612793565b610713565b60405161020691906127db565b60405180910390f35b34801561021b57600080fd5b506102246107a5565b6040516102319190612886565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906128de565b610837565b60405161026e919061294c565b60405180910390f35b610291600480360381019061028c9190612993565b6108b6565b005b34801561029f57600080fd5b506102a86109c0565b6040516102b591906129e2565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906129fd565b6109d7565b6040516102f291906127db565b60405180910390f35b61031560048036038101906103109190612a2a565b6109f7565b005b34801561032357600080fd5b5061033e600480360381019061033991906129fd565b610b47565b60405161034b91906129e2565b60405180910390f35b61036e600480360381019061036991906128de565b610b5f565b005b34801561037c57600080fd5b50610385610cae565b6040516103929190612adc565b60405180910390f35b6103b560048036038101906103b09190612a2a565b610cc0565b005b3480156103c357600080fd5b506103de60048036038101906103d99190612c2c565b610e10565b005b3480156103ec57600080fd5b50610407600480360381019061040291906128de565b610e2b565b604051610414919061294c565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906129fd565b610e3d565b60405161045191906129e2565b60405180910390f35b34801561046657600080fd5b5061046f610f20565b60405161047c9190612886565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a791906129fd565b610fae565b6040516104b991906129e2565b60405180910390f35b3480156104ce57600080fd5b506104d7611066565b005b3480156104e557600080fd5b5061050060048036038101906104fb91906128de565b61107a565b005b34801561050e57600080fd5b5061051761108c565b60405161052491906129e2565b60405180910390f35b34801561053957600080fd5b50610542611092565b60405161054f919061294c565b60405180910390f35b34801561056457600080fd5b5061056d6110bc565b60405161057a9190612886565b60405180910390f35b34801561058f57600080fd5b5061059861114e565b6040516105a591906129e2565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612ca1565b611154565b005b6105f160048036038101906105ec9190612d82565b61125e565b005b3480156105ff57600080fd5b5061061a600480360381019061061591906128de565b6113b1565b6040516106279190612886565b60405180910390f35b34801561063c57600080fd5b50610657600480360381019061065291906128de565b61144f565b005b34801561066557600080fd5b50610680600480360381019061067b91906128de565b611668565b005b34801561068e57600080fd5b506106a960048036038101906106a49190612e05565b6117f3565b6040516106b691906127db565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e191906129fd565b611887565b005b3480156106f457600080fd5b506106fd61190a565b60405161070a91906129e2565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107b490612e74565b80601f01602080910402602001604051908101604052809291908181526020018280546107e090612e74565b801561082d5780601f106108025761010080835404028352916020019161082d565b820191906000526020600020905b81548152906001019060200180831161081057829003601f168201915b5050505050905090565b600061084282611910565b610878576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109b1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161092e929190612ea5565b602060405180830381865afa15801561094b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096f9190612ee3565b6109b057806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109a7919061294c565b60405180910390fd5b5b6109bb838361196f565b505050565b60006109ca611ab3565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b35573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a6957610a64848484611abc565b610b41565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ab2929190612ea5565b602060405180830381865afa158015610acf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af39190612ee3565b610b3457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b2b919061294c565b60405180910390fd5b5b610b40848484611abc565b5b50505050565b600e6020528060005260406000206000915090505481565b600c54811115610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b90612f5c565b60405180910390fd5b600d5481610bb06109c0565b610bba9190612fab565b1115610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf29061302b565b60405180910390fd5b600b5481610c09919061304b565b341015610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c42906130d9565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c9a9190612fab565b92505081905550610cab3382611dde565b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610dfe573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3257610d2d848484611dfc565b610e0a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d7b929190612ea5565b602060405180830381865afa158015610d98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbc9190612ee3565b610dfd57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610df4919061294c565b60405180910390fd5b5b610e09848484611dfc565b5b50505050565b610e18611e1c565b80600a9081610e27919061329b565b5050565b6000610e3682611e9a565b9050919050565b60008060115403610e515760009050610f1b565b600060115442610e61919061336d565b90506000611388600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610eb5576000610eb8565b60025b905060008282600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f08919061304b565b610f12919061304b565b90508093505050505b919050565b600a8054610f2d90612e74565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5990612e74565b8015610fa65780601f10610f7b57610100808354040283529160200191610fa6565b820191906000526020600020905b815481529060010190602001808311610f8957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611015576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61106e611e1c565b6110786000611f66565b565b611082611e1c565b80600c8190555050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110cb90612e74565b80601f01602080910402602001604051908101604052809291908181526020018280546110f790612e74565b80156111445780601f1061111957610100808354040283529160200191611144565b820191906000526020600020905b81548152906001019060200180831161112757829003601f168201915b5050505050905090565b600b5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561124f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111cc929190612ea5565b602060405180830381865afa1580156111e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120d9190612ee3565b61124e57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611245919061294c565b60405180910390fd5b5b611259838361202c565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561139d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d1576112cc85858585612137565b6113aa565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161131a929190612ea5565b602060405180830381865afa158015611337573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135b9190612ee3565b61139c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611393919061294c565b60405180910390fd5b5b6113a985858585612137565b5b5050505050565b60606113bc82611910565b6113f2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113fc6121aa565b9050600081510361141c5760405180602001604052806000815250611447565b806114268461223c565b6040516020016114379291906133dd565b6040516020818303038152906040525b915050919050565b60008111611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148990613473565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90613505565b60405180910390fd5b62015180601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115629190612fab565b4210156115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613571565b60405180910390fd5b60006115af33610e3d565b905081600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611600919061336d565b9250508190555042601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806012600082825461165d9190612fab565b925050819055505050565b600081116116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a2906135dd565b60405180910390fd5b6116b433610fae565b8111156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed9061366f565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117459190612fab565b9250508190555042601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611388600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101580156117e357506000601154145b156117f057426011819055505b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61188f611e1c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613701565b60405180910390fd5b61190781611f66565b50565b600c5481565b60008161191b611ab3565b1115801561192a575060005482105b8015611968575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061197a82610e2b565b90508073ffffffffffffffffffffffffffffffffffffffff1661199b61228c565b73ffffffffffffffffffffffffffffffffffffffff16146119fe576119c7816119c261228c565b6117f3565b6119fd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611ac782611e9a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b2e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b3a84612294565b91509150611b508187611b4b61228c565b6122bb565b611b9c57611b6586611b6061228c565b6117f3565b611b9b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c02576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c0f86868660016122ff565b8015611c1a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611ce885611cc4888887612305565b7c02000000000000000000000000000000000000000000000000000000001761232d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611d6e5760006001850190506000600460008381526020019081526020016000205403611d6c576000548114611d6b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dd68686866001612358565b505050505050565b611df882826040518060200160405280600081525061235e565b5050565b611e178383836040518060200160405280600081525061125e565b505050565b611e246123fb565b73ffffffffffffffffffffffffffffffffffffffff16611e42611092565b73ffffffffffffffffffffffffffffffffffffffff1614611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f9061376d565b60405180910390fd5b565b60008082905080611ea9611ab3565b11611f2f57600054811015611f2e5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f2c575b60008103611f22576004600083600190039350838152602001908152602001600020549050611ef8565b8092505050611f61565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806007600061203961228c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120e661228c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161212b91906127db565b60405180910390a35050565b6121428484846109f7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121a45761216d84848484612403565b6121a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546121b990612e74565b80601f01602080910402602001604051908101604052809291908181526020018280546121e590612e74565b80156122325780601f1061220757610100808354040283529160200191612232565b820191906000526020600020905b81548152906001019060200180831161221557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561227757600184039350600a81066030018453600a8104905080612255575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861231c868684612553565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612368838361255c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123f657600080549050600083820390505b6123a86000868380600101945086612403565b6123de576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123955781600054146123f357600080fd5b50505b505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261242961228c565b8786866040518563ffffffff1660e01b815260040161244b94939291906137e2565b6020604051808303816000875af192505050801561248757506040513d601f19601f820116820180604052508101906124849190613843565b60015b612500573d80600081146124b7576040519150601f19603f3d011682016040523d82523d6000602084013e6124bc565b606091505b5060008151036124f8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361259c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125a960008483856122ff565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612620836126116000866000612305565b61261a85612717565b1761232d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126c157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612686565b50600082036126fc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127126000848385612358565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127708161273b565b811461277b57600080fd5b50565b60008135905061278d81612767565b92915050565b6000602082840312156127a9576127a8612731565b5b60006127b78482850161277e565b91505092915050565b60008115159050919050565b6127d5816127c0565b82525050565b60006020820190506127f060008301846127cc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612830578082015181840152602081019050612815565b60008484015250505050565b6000601f19601f8301169050919050565b6000612858826127f6565b6128628185612801565b9350612872818560208601612812565b61287b8161283c565b840191505092915050565b600060208201905081810360008301526128a0818461284d565b905092915050565b6000819050919050565b6128bb816128a8565b81146128c657600080fd5b50565b6000813590506128d8816128b2565b92915050565b6000602082840312156128f4576128f3612731565b5b6000612902848285016128c9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129368261290b565b9050919050565b6129468161292b565b82525050565b6000602082019050612961600083018461293d565b92915050565b6129708161292b565b811461297b57600080fd5b50565b60008135905061298d81612967565b92915050565b600080604083850312156129aa576129a9612731565b5b60006129b88582860161297e565b92505060206129c9858286016128c9565b9150509250929050565b6129dc816128a8565b82525050565b60006020820190506129f760008301846129d3565b92915050565b600060208284031215612a1357612a12612731565b5b6000612a218482850161297e565b91505092915050565b600080600060608486031215612a4357612a42612731565b5b6000612a518682870161297e565b9350506020612a628682870161297e565b9250506040612a73868287016128c9565b9150509250925092565b6000819050919050565b6000612aa2612a9d612a988461290b565b612a7d565b61290b565b9050919050565b6000612ab482612a87565b9050919050565b6000612ac682612aa9565b9050919050565b612ad681612abb565b82525050565b6000602082019050612af16000830184612acd565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b398261283c565b810181811067ffffffffffffffff82111715612b5857612b57612b01565b5b80604052505050565b6000612b6b612727565b9050612b778282612b30565b919050565b600067ffffffffffffffff821115612b9757612b96612b01565b5b612ba08261283c565b9050602081019050919050565b82818337600083830152505050565b6000612bcf612bca84612b7c565b612b61565b905082815260208101848484011115612beb57612bea612afc565b5b612bf6848285612bad565b509392505050565b600082601f830112612c1357612c12612af7565b5b8135612c23848260208601612bbc565b91505092915050565b600060208284031215612c4257612c41612731565b5b600082013567ffffffffffffffff811115612c6057612c5f612736565b5b612c6c84828501612bfe565b91505092915050565b612c7e816127c0565b8114612c8957600080fd5b50565b600081359050612c9b81612c75565b92915050565b60008060408385031215612cb857612cb7612731565b5b6000612cc68582860161297e565b9250506020612cd785828601612c8c565b9150509250929050565b600067ffffffffffffffff821115612cfc57612cfb612b01565b5b612d058261283c565b9050602081019050919050565b6000612d25612d2084612ce1565b612b61565b905082815260208101848484011115612d4157612d40612afc565b5b612d4c848285612bad565b509392505050565b600082601f830112612d6957612d68612af7565b5b8135612d79848260208601612d12565b91505092915050565b60008060008060808587031215612d9c57612d9b612731565b5b6000612daa8782880161297e565b9450506020612dbb8782880161297e565b9350506040612dcc878288016128c9565b925050606085013567ffffffffffffffff811115612ded57612dec612736565b5b612df987828801612d54565b91505092959194509250565b60008060408385031215612e1c57612e1b612731565b5b6000612e2a8582860161297e565b9250506020612e3b8582860161297e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e8c57607f821691505b602082108103612e9f57612e9e612e45565b5b50919050565b6000604082019050612eba600083018561293d565b612ec7602083018461293d565b9392505050565b600081519050612edd81612c75565b92915050565b600060208284031215612ef957612ef8612731565b5b6000612f0784828501612ece565b91505092915050565b7f416c6c204d696c6b6564204f7574210000000000000000000000000000000000600082015250565b6000612f46600f83612801565b9150612f5182612f10565b602082019050919050565b60006020820190508181036000830152612f7581612f39565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fb6826128a8565b9150612fc1836128a8565b9250828201905080821115612fd957612fd8612f7c565b5b92915050565b7f4e6f204d696c6b657273204c6566742100000000000000000000000000000000600082015250565b6000613015601083612801565b915061302082612fdf565b602082019050919050565b6000602082019050818103600083015261304481613008565b9050919050565b6000613056826128a8565b9150613061836128a8565b925082820261306f816128a8565b9150828204841483151761308657613085612f7c565b5b5092915050565b7f4e6f7420456e6f75676820436865646461210000000000000000000000000000600082015250565b60006130c3601283612801565b91506130ce8261308d565b602082019050919050565b600060208201905081810360008301526130f2816130b6565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261315b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261311e565b613165868361311e565b95508019841693508086168417925050509392505050565b600061319861319361318e846128a8565b612a7d565b6128a8565b9050919050565b6000819050919050565b6131b28361317d565b6131c66131be8261319f565b84845461312b565b825550505050565b600090565b6131db6131ce565b6131e68184846131a9565b505050565b5b8181101561320a576131ff6000826131d3565b6001810190506131ec565b5050565b601f82111561324f57613220816130f9565b6132298461310e565b81016020851015613238578190505b61324c6132448561310e565b8301826131eb565b50505b505050565b600082821c905092915050565b600061327260001984600802613254565b1980831691505092915050565b600061328b8383613261565b9150826002028217905092915050565b6132a4826127f6565b67ffffffffffffffff8111156132bd576132bc612b01565b5b6132c78254612e74565b6132d282828561320e565b600060209050601f83116001811461330557600084156132f3578287015190505b6132fd858261327f565b865550613365565b601f198416613313866130f9565b60005b8281101561333b57848901518255600182019150602085019450602081019050613316565b868310156133585784890151613354601f891682613261565b8355505b6001600288020188555050505b505050505050565b6000613378826128a8565b9150613383836128a8565b925082820390508181111561339b5761339a612f7c565b5b92915050565b600081905092915050565b60006133b7826127f6565b6133c181856133a1565b93506133d1818560208601612812565b80840191505092915050565b60006133e982856133ac565b91506133f582846133ac565b91508190509392505050565b7f4d757374207769746864726177206174206c6561737420736f6d65206d696c6b60008201527f20746f6b656e7300000000000000000000000000000000000000000000000000602082015250565b600061345d602783612801565b915061346882613401565b604082019050919050565b6000602082019050818103600083015261348c81613450565b9050919050565b7f43616e6e6f74207769746864726177206d6f7265206d696c6b20746f6b656e7360008201527f207468616e20796f75206f776e00000000000000000000000000000000000000602082015250565b60006134ef602d83612801565b91506134fa82613493565b604082019050919050565b6000602082019050818103600083015261351e816134e2565b9050919050565b7f43616e6e6f74207769746864726177206d696c6b20746f6b656e732079657400600082015250565b600061355b601f83612801565b915061356682613525565b602082019050919050565b6000602082019050818103600083015261358a8161354e565b9050919050565b7f4d757374206d696c6b206174206c6561737420736f6d6520746f6b656e730000600082015250565b60006135c7601e83612801565b91506135d282613591565b602082019050919050565b600060208201905081810360008301526135f6816135ba565b9050919050565b7f43616e6e6f74206d696c6b206d6f726520746f6b656e73207468616e20796f7560008201527f206f776e00000000000000000000000000000000000000000000000000000000602082015250565b6000613659602483612801565b9150613664826135fd565b604082019050919050565b600060208201905081810360008301526136888161364c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136eb602683612801565b91506136f68261368f565b604082019050919050565b6000602082019050818103600083015261371a816136de565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613757602083612801565b915061376282613721565b602082019050919050565b600060208201905081810360008301526137868161374a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137b48261378d565b6137be8185613798565b93506137ce818560208601612812565b6137d78161283c565b840191505092915050565b60006080820190506137f7600083018761293d565b613804602083018661293d565b61381160408301856129d3565b818103606083015261382381846137a9565b905095945050505050565b60008151905061383d81612767565b92915050565b60006020828403121561385957613858612731565b5b60006138678482850161382e565b9150509291505056fea264697066735822122097e5127fdaeae5ff093995f5ab586819886ff003a30adfd50d1f41965efff8ec64736f6c63430008130033

Deployed Bytecode Sourcemap

63690:5851:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30588:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31490:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37981:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68754:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27241:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63764:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68927:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63956:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64217:338;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2831:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69106:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64679:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32883:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67842:685;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63817:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28425:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8421:103;;;;;;;;;;;;;:::i;:::-;;64797:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63915:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7773:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31666:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63847:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68570:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69293:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31876:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66770:864;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65882:704;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38930:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8679:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63878:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30588:639;30673:4;31012:10;30997:25;;:11;:25;;;;:102;;;;31089:10;31074:25;;:11;:25;;;;30997:102;:179;;;;31166:10;31151:25;;:11;:25;;;;30997:179;30977:199;;30588:639;;;:::o;31490:100::-;31544:13;31577:5;31570:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31490:100;:::o;37981:218::-;38057:7;38082:16;38090:7;38082;:16::i;:::-;38077:64;;38107:34;;;;;;;;;;;;;;38077:64;38161:15;:24;38177:7;38161:24;;;;;;;;;;;:30;;;;;;;;;;;;38154:37;;37981:218;;;:::o;68754:165::-;68858:8;4873:1;2931:42;4825:45;;;:49;4821:225;;;2931:42;4896;;;4947:4;4954:8;4896:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4891:144;;5010:8;4991:28;;;;;;;;;;;:::i;:::-;;;;;;;;4891:144;4821:225;68879:32:::1;68893:8;68903:7;68879:13;:32::i;:::-;68754:165:::0;;;:::o;27241:323::-;27302:7;27530:15;:13;:15::i;:::-;27515:12;;27499:13;;:28;:46;27492:53;;27241:323;:::o;63764:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;68927:171::-;69036:4;4127:1;2931:42;4079:45;;;:49;4075:539;;;4368:10;4360:18;;:4;:18;;;4356:85;;69053:37:::1;69072:4;69078:2;69082:7;69053:18;:37::i;:::-;4419:7:::0;;4356:85;2931:42;4460;;;4511:4;4518:10;4460:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4455:148;;4576:10;4557:30;;;;;;;;;;;:::i;:::-;;;;;;;;4455:148;4075:539;69053:37:::1;69072:4;69078:2;69082:7;69053:18;:37::i;:::-;68927:171:::0;;;;;:::o;63956:48::-;;;;;;;;;;;;;;;;;:::o;64217:338::-;64298:11;;64291:3;:18;;64283:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;64371:12;;64364:3;64348:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;;64340:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;64441:5;;64435:3;:11;;;;:::i;:::-;64422:9;:24;;64414:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;64507:3;64479:12;:24;64492:10;64479:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;64521:26;64531:10;64543:3;64521:9;:26::i;:::-;64217:338;:::o;2831:143::-;2931:42;2831:143;:::o;69106:179::-;69219:4;4127:1;2931:42;4079:45;;;:49;4075:539;;;4368:10;4360:18;;:4;:18;;;4356:85;;69236:41:::1;69259:4;69265:2;69269:7;69236:22;:41::i;:::-;4419:7:::0;;4356:85;2931:42;4460;;;4511:4;4518:10;4460:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4455:148;;4576:10;4557:30;;;;;;;;;;;:::i;:::-;;;;;;;;4455:148;4075:539;69236:41:::1;69259:4;69265:2;69269:7;69236:22;:41::i;:::-;69106:179:::0;;;;;:::o;64679:110::-;7659:13;:11;:13::i;:::-;64763:8:::1;64753:7;:18;;;;;;:::i;:::-;;64679:110:::0;:::o;32883:152::-;32955:7;32998:27;33017:7;32998:18;:27::i;:::-;32975:52;;32883:152;;;:::o;67842:685::-;67903:7;68002:1;67981:17;;:22;67977:65;;68028:1;68021:8;;;;67977:65;68120:28;68169:17;;68151:15;:35;;;;:::i;:::-;68120:66;;68246:22;65326:4;68271:12;:18;68284:4;68271:18;;;;;;;;;;;;;;;;:36;;:54;;68324:1;68271:54;;;65537:1;68271:54;68246:79;;68400:21;68462:20;68445:14;68424:12;:18;68437:4;68424:18;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:58;;;;:::i;:::-;68400:82;;68502:13;68495:20;;;;;67842:685;;;;:::o;63817:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28425:233::-;28497:7;28538:1;28521:19;;:5;:19;;;28517:60;;28549:28;;;;;;;;;;;;;;28517:60;22584:13;28595:18;:25;28614:5;28595:25;;;;;;;;;;;;;;;;:55;28588:62;;28425:233;;;:::o;8421:103::-;7659:13;:11;:13::i;:::-;8486:30:::1;8513:1;8486:18;:30::i;:::-;8421:103::o:0;64797:95::-;7659:13;:11;:13::i;:::-;64876:6:::1;64862:11;:20;;;;64797:95:::0;:::o;63915:34::-;;;;:::o;7773:87::-;7819:7;7846:6;;;;;;;;;;;7839:13;;7773:87;:::o;31666:104::-;31722:13;31755:7;31748:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31666:104;:::o;63847:24::-;;;;:::o;68570:176::-;68674:8;4873:1;2931:42;4825:45;;;:49;4821:225;;;2931:42;4896;;;4947:4;4954:8;4896:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4891:144;;5010:8;4991:28;;;;;;;;;;;:::i;:::-;;;;;;;;4891:144;4821:225;68695:43:::1;68719:8;68729;68695:23;:43::i;:::-;68570:176:::0;;;:::o;69293:245::-;69461:4;4127:1;2931:42;4079:45;;;:49;4075:539;;;4368:10;4360:18;;:4;:18;;;4356:85;;69483:47:::1;69506:4;69512:2;69516:7;69525:4;69483:22;:47::i;:::-;4419:7:::0;;4356:85;2931:42;4460;;;4511:4;4518:10;4460:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4455:148;;4576:10;4557:30;;;;;;;;;;;:::i;:::-;;;;;;;;4455:148;4075:539;69483:47:::1;69506:4;69512:2;69516:7;69525:4;69483:22;:47::i;:::-;69293:245:::0;;;;;;:::o;31876:318::-;31949:13;31980:16;31988:7;31980;:16::i;:::-;31975:59;;32005:29;;;;;;;;;;;;;;31975:59;32047:21;32071:10;:8;:10::i;:::-;32047:34;;32124:1;32105:7;32099:21;:26;:87;;;;;;;;;;;;;;;;;32152:7;32161:18;32171:7;32161:9;:18::i;:::-;32135:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32099:87;32092:94;;;31876:318;;;:::o;66770:864::-;66911:1;66902:6;:10;66894:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;66985:12;:24;66998:10;66985:24;;;;;;;;;;;;;;;;66975:6;:34;;66967:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;65479:6;67182:18;:30;67201:10;67182:30;;;;;;;;;;;;;;;;:55;;;;:::i;:::-;67163:15;:74;;67155:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;67345:21;67369:28;67386:10;67369:16;:28::i;:::-;67345:52;;67500:6;67472:12;:24;67485:10;67472:24;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;67551:15;67518:18;:30;67537:10;67518:30;;;;;;;;;;;;;;;:48;;;;67608:13;67581:23;;:40;;;;;;;:::i;:::-;;;;;;;;66817:817;66770:864;:::o;65882:704::-;66006:1;65997:6;:10;65989:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;66071:21;66081:10;66071:9;:21::i;:::-;66061:6;:31;;66053:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;66242:6;66214:12;:24;66227:10;66214:24;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;66296:15;66263:18;:30;66282:10;66263:30;;;;;;;;;;;;;;;:48;;;;65326:4;66440:12;:24;66453:10;66440:24;;;;;;;;;;;;;;;;:42;;:68;;;;;66507:1;66486:17;;:22;66440:68;66436:138;;;66546:15;66526:17;:35;;;;66436:138;65882:704;:::o;38930:164::-;39027:4;39051:18;:25;39070:5;39051:25;;;;;;;;;;;;;;;:35;39077:8;39051:35;;;;;;;;;;;;;;;;;;;;;;;;;39044:42;;38930:164;;;;:::o;8679:201::-;7659:13;:11;:13::i;:::-;8788:1:::1;8768:22;;:8;:22;;::::0;8760:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8844:28;8863:8;8844:18;:28::i;:::-;8679:201:::0;:::o;63878:30::-;;;;:::o;39352:282::-;39417:4;39473:7;39454:15;:13;:15::i;:::-;:26;;:66;;;;;39507:13;;39497:7;:23;39454:66;:153;;;;;39606:1;23360:8;39558:17;:26;39576:7;39558:26;;;;;;;;;;;;:44;:49;39454:153;39434:173;;39352:282;;;:::o;37414:408::-;37503:13;37519:16;37527:7;37519;:16::i;:::-;37503:32;;37575:5;37552:28;;:19;:17;:19::i;:::-;:28;;;37548:175;;37600:44;37617:5;37624:19;:17;:19::i;:::-;37600:16;:44::i;:::-;37595:128;;37672:35;;;;;;;;;;;;;;37595:128;37548:175;37768:2;37735:15;:24;37751:7;37735:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37806:7;37802:2;37786:28;;37795:5;37786:28;;;;;;;;;;;;37492:330;37414:408;;:::o;64078:101::-;64143:7;64170:1;64163:8;;64078:101;:::o;41620:2825::-;41762:27;41792;41811:7;41792:18;:27::i;:::-;41762:57;;41877:4;41836:45;;41852:19;41836:45;;;41832:86;;41890:28;;;;;;;;;;;;;;41832:86;41932:27;41961:23;41988:35;42015:7;41988:26;:35::i;:::-;41931:92;;;;42123:68;42148:15;42165:4;42171:19;:17;:19::i;:::-;42123:24;:68::i;:::-;42118:180;;42211:43;42228:4;42234:19;:17;:19::i;:::-;42211:16;:43::i;:::-;42206:92;;42263:35;;;;;;;;;;;;;;42206:92;42118:180;42329:1;42315:16;;:2;:16;;;42311:52;;42340:23;;;;;;;;;;;;;;42311:52;42376:43;42398:4;42404:2;42408:7;42417:1;42376:21;:43::i;:::-;42512:15;42509:160;;;42652:1;42631:19;42624:30;42509:160;43049:18;:24;43068:4;43049:24;;;;;;;;;;;;;;;;43047:26;;;;;;;;;;;;43118:18;:22;43137:2;43118:22;;;;;;;;;;;;;;;;43116:24;;;;;;;;;;;43440:146;43477:2;43526:45;43541:4;43547:2;43551:19;43526:14;:45::i;:::-;23640:8;43498:73;43440:18;:146::i;:::-;43411:17;:26;43429:7;43411:26;;;;;;;;;;;:175;;;;43757:1;23640:8;43706:19;:47;:52;43702:627;;43779:19;43811:1;43801:7;:11;43779:33;;43968:1;43934:17;:30;43952:11;43934:30;;;;;;;;;;;;:35;43930:384;;44072:13;;44057:11;:28;44053:242;;44252:19;44219:17;:30;44237:11;44219:30;;;;;;;;;;;:52;;;;44053:242;43930:384;43760:569;43702:627;44376:7;44372:2;44357:27;;44366:4;44357:27;;;;;;;;;;;;44395:42;44416:4;44422:2;44426:7;44435:1;44395:20;:42::i;:::-;41751:2694;;;41620:2825;;;:::o;55492:112::-;55569:27;55579:2;55583:8;55569:27;;;;;;;;;;;;:9;:27::i;:::-;55492:112;;:::o;44541:193::-;44687:39;44704:4;44710:2;44714:7;44687:39;;;;;;;;;;;;:16;:39::i;:::-;44541:193;;;:::o;7938:132::-;8013:12;:10;:12::i;:::-;8002:23;;:7;:5;:7::i;:::-;:23;;;7994:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7938:132::o;34038:1275::-;34105:7;34125:12;34140:7;34125:22;;34208:4;34189:15;:13;:15::i;:::-;:23;34185:1061;;34242:13;;34235:4;:20;34231:1015;;;34280:14;34297:17;:23;34315:4;34297:23;;;;;;;;;;;;34280:40;;34414:1;23360:8;34386:6;:24;:29;34382:845;;35051:113;35068:1;35058:6;:11;35051:113;;35111:17;:25;35129:6;;;;;;;35111:25;;;;;;;;;;;;35102:34;;35051:113;;;35197:6;35190:13;;;;;;34382:845;34257:989;34231:1015;34185:1061;35274:31;;;;;;;;;;;;;;34038:1275;;;;:::o;9040:191::-;9114:16;9133:6;;;;;;;;;;;9114:25;;9159:8;9150:6;;:17;;;;;;;;;;;;;;;;;;9214:8;9183:40;;9204:8;9183:40;;;;;;;;;;;;9103:128;9040:191;:::o;38539:234::-;38686:8;38634:18;:39;38653:19;:17;:19::i;:::-;38634:39;;;;;;;;;;;;;;;:49;38674:8;38634:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;38746:8;38710:55;;38725:19;:17;:19::i;:::-;38710:55;;;38756:8;38710:55;;;;;;:::i;:::-;;;;;;;;38539:234;;:::o;45332:407::-;45507:31;45520:4;45526:2;45530:7;45507:12;:31::i;:::-;45571:1;45553:2;:14;;;:19;45549:183;;45592:56;45623:4;45629:2;45633:7;45642:5;45592:30;:56::i;:::-;45587:145;;45676:40;;;;;;;;;;;;;;45587:145;45549:183;45332:407;;;;:::o;64563:108::-;64623:13;64656:7;64649:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64563:108;:::o;61867:1745::-;61932:17;62366:4;62359;62353:11;62349:22;62458:1;62452:4;62445:15;62533:4;62530:1;62526:12;62519:19;;62615:1;62610:3;62603:14;62719:3;62958:5;62940:428;62966:1;62940:428;;;63006:1;63001:3;62997:11;62990:18;;63177:2;63171:4;63167:13;63163:2;63159:22;63154:3;63146:36;63271:2;63265:4;63261:13;63253:21;;63338:4;62940:428;63328:25;62940:428;62944:21;63407:3;63402;63398:13;63522:4;63517:3;63513:14;63506:21;;63587:6;63582:3;63575:19;61971:1634;;;61867:1745;;;:::o;61660:105::-;61720:7;61747:10;61740:17;;61660:105;:::o;40515:485::-;40617:27;40646:23;40687:38;40728:15;:24;40744:7;40728:24;;;;;;;;;;;40687:65;;40905:18;40882:41;;40962:19;40956:26;40937:45;;40867:126;40515:485;;;:::o;39743:659::-;39892:11;40057:16;40050:5;40046:28;40037:37;;40217:16;40206:9;40202:32;40189:45;;40367:15;40356:9;40353:30;40345:5;40334:9;40331:20;40328:56;40318:66;;39743:659;;;;;:::o;46401:159::-;;;;;:::o;60969:311::-;61104:7;61124:16;23764:3;61150:19;:41;;61124:68;;23764:3;61218:31;61229:4;61235:2;61239:9;61218:10;:31::i;:::-;61210:40;;:62;;61203:69;;;60969:311;;;;;:::o;35861:450::-;35941:14;36109:16;36102:5;36098:28;36089:37;;36286:5;36272:11;36247:23;36243:41;36240:52;36233:5;36230:63;36220:73;;35861:450;;;;:::o;47225:158::-;;;;;:::o;54719:689::-;54850:19;54856:2;54860:8;54850:5;:19::i;:::-;54929:1;54911:2;:14;;;:19;54907:483;;54951:11;54965:13;;54951:27;;54997:13;55019:8;55013:3;:14;54997:30;;55046:233;55077:62;55116:1;55120:2;55124:7;;;;;;55133:5;55077:30;:62::i;:::-;55072:167;;55175:40;;;;;;;;;;;;;;55072:167;55274:3;55266:5;:11;55046:233;;55361:3;55344:13;;:20;55340:34;;55366:8;;;55340:34;54932:458;;54907:483;54719:689;;;:::o;6324:98::-;6377:7;6404:10;6397:17;;6324:98;:::o;47823:716::-;47986:4;48032:2;48007:45;;;48053:19;:17;:19::i;:::-;48074:4;48080:7;48089:5;48007:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48003:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48307:1;48290:6;:13;:18;48286:235;;48336:40;;;;;;;;;;;;;;48286:235;48479:6;48473:13;48464:6;48460:2;48456:15;48449:38;48003:529;48176:54;;;48166:64;;;:6;:64;;;;48159:71;;;47823:716;;;;;;:::o;60670:147::-;60807:6;60670:147;;;;;:::o;49001:2966::-;49074:20;49097:13;;49074:36;;49137:1;49125:8;:13;49121:44;;49147:18;;;;;;;;;;;;;;49121:44;49178:61;49208:1;49212:2;49216:12;49230:8;49178:21;:61::i;:::-;49722:1;22722:2;49692:1;:26;;49691:32;49679:8;:45;49653:18;:22;49672:2;49653:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;50001:139;50038:2;50092:33;50115:1;50119:2;50123:1;50092:14;:33::i;:::-;50059:30;50080:8;50059:20;:30::i;:::-;:66;50001:18;:139::i;:::-;49967:17;:31;49985:12;49967:31;;;;;;;;;;;:173;;;;50157:16;50188:11;50217:8;50202:12;:23;50188:37;;50738:16;50734:2;50730:25;50718:37;;51110:12;51070:8;51029:1;50967:25;50908:1;50847;50820:335;51481:1;51467:12;51463:20;51421:346;51522:3;51513:7;51510:16;51421:346;;51740:7;51730:8;51727:1;51700:25;51697:1;51694;51689:59;51575:1;51566:7;51562:15;51551:26;;51421:346;;;51425:77;51812:1;51800:8;:13;51796:45;;51822:19;;;;;;;;;;;;;;51796:45;51874:3;51858:13;:19;;;;49427:2462;;51899:60;51928:1;51932:2;51936:12;51950:8;51899:20;:60::i;:::-;49063:2904;49001:2966;;:::o;36413:324::-;36483:14;36716:1;36706:8;36703:15;36677:24;36673:46;36663:56;;36413: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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:329::-;5301:6;5350:2;5338:9;5329:7;5325:23;5321:32;5318:119;;;5356:79;;:::i;:::-;5318:119;5476:1;5501:53;5546:7;5537:6;5526:9;5522:22;5501:53;:::i;:::-;5491:63;;5447:117;5242:329;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:60::-;6230:3;6251:5;6244:12;;6202:60;;;:::o;6268:142::-;6318:9;6351:53;6369:34;6378:24;6396:5;6378:24;:::i;:::-;6369:34;:::i;:::-;6351:53;:::i;:::-;6338:66;;6268:142;;;:::o;6416:126::-;6466:9;6499:37;6530:5;6499:37;:::i;:::-;6486:50;;6416:126;;;:::o;6548:157::-;6629:9;6662:37;6693:5;6662:37;:::i;:::-;6649:50;;6548:157;;;:::o;6711:193::-;6829:68;6891:5;6829:68;:::i;:::-;6824:3;6817:81;6711:193;;:::o;6910:284::-;7034:4;7072:2;7061:9;7057:18;7049:26;;7085:102;7184:1;7173:9;7169:17;7160:6;7085:102;:::i;:::-;6910:284;;;;:::o;7200:117::-;7309:1;7306;7299:12;7323:117;7432:1;7429;7422:12;7446:180;7494:77;7491:1;7484:88;7591:4;7588:1;7581:15;7615:4;7612:1;7605:15;7632:281;7715:27;7737:4;7715:27;:::i;:::-;7707:6;7703:40;7845:6;7833:10;7830:22;7809:18;7797:10;7794:34;7791:62;7788:88;;;7856:18;;:::i;:::-;7788:88;7896:10;7892:2;7885:22;7675:238;7632:281;;:::o;7919:129::-;7953:6;7980:20;;:::i;:::-;7970:30;;8009:33;8037:4;8029:6;8009:33;:::i;:::-;7919:129;;;:::o;8054:308::-;8116:4;8206:18;8198:6;8195:30;8192:56;;;8228:18;;:::i;:::-;8192:56;8266:29;8288:6;8266:29;:::i;:::-;8258:37;;8350:4;8344;8340:15;8332:23;;8054:308;;;:::o;8368:146::-;8465:6;8460:3;8455;8442:30;8506:1;8497:6;8492:3;8488:16;8481:27;8368:146;;;:::o;8520:425::-;8598:5;8623:66;8639:49;8681:6;8639:49;:::i;:::-;8623:66;:::i;:::-;8614:75;;8712:6;8705:5;8698:21;8750:4;8743:5;8739:16;8788:3;8779:6;8774:3;8770:16;8767:25;8764:112;;;8795:79;;:::i;:::-;8764:112;8885:54;8932:6;8927:3;8922;8885:54;:::i;:::-;8604:341;8520:425;;;;;:::o;8965:340::-;9021:5;9070:3;9063:4;9055:6;9051:17;9047:27;9037:122;;9078:79;;:::i;:::-;9037:122;9195:6;9182:20;9220:79;9295:3;9287:6;9280:4;9272:6;9268:17;9220:79;:::i;:::-;9211:88;;9027:278;8965:340;;;;:::o;9311:509::-;9380:6;9429:2;9417:9;9408:7;9404:23;9400:32;9397:119;;;9435:79;;:::i;:::-;9397:119;9583:1;9572:9;9568:17;9555:31;9613:18;9605:6;9602:30;9599:117;;;9635:79;;:::i;:::-;9599:117;9740:63;9795:7;9786:6;9775:9;9771:22;9740:63;:::i;:::-;9730:73;;9526:287;9311:509;;;;:::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:332::-;13722:4;13760:2;13749:9;13745:18;13737:26;;13773:71;13841:1;13830:9;13826:17;13817:6;13773:71;:::i;:::-;13854:72;13922:2;13911:9;13907:18;13898:6;13854:72;:::i;:::-;13601:332;;;;;:::o;13939:137::-;13993:5;14024:6;14018:13;14009:22;;14040:30;14064:5;14040:30;:::i;:::-;13939:137;;;;:::o;14082:345::-;14149:6;14198:2;14186:9;14177:7;14173:23;14169:32;14166:119;;;14204:79;;:::i;:::-;14166:119;14324:1;14349:61;14402:7;14393:6;14382:9;14378:22;14349:61;:::i;:::-;14339:71;;14295:125;14082:345;;;;:::o;14433:165::-;14573:17;14569:1;14561:6;14557:14;14550:41;14433:165;:::o;14604:366::-;14746:3;14767:67;14831:2;14826:3;14767:67;:::i;:::-;14760:74;;14843:93;14932:3;14843:93;:::i;:::-;14961:2;14956:3;14952:12;14945:19;;14604:366;;;:::o;14976:419::-;15142:4;15180:2;15169:9;15165:18;15157:26;;15229:9;15223:4;15219:20;15215:1;15204:9;15200:17;15193:47;15257:131;15383:4;15257:131;:::i;:::-;15249:139;;14976:419;;;:::o;15401:180::-;15449:77;15446:1;15439:88;15546:4;15543:1;15536:15;15570:4;15567:1;15560:15;15587:191;15627:3;15646:20;15664:1;15646:20;:::i;:::-;15641:25;;15680:20;15698:1;15680:20;:::i;:::-;15675:25;;15723:1;15720;15716:9;15709:16;;15744:3;15741:1;15738:10;15735:36;;;15751:18;;:::i;:::-;15735:36;15587:191;;;;:::o;15784:166::-;15924:18;15920:1;15912:6;15908:14;15901:42;15784:166;:::o;15956:366::-;16098:3;16119:67;16183:2;16178:3;16119:67;:::i;:::-;16112:74;;16195:93;16284:3;16195:93;:::i;:::-;16313:2;16308:3;16304:12;16297:19;;15956:366;;;:::o;16328:419::-;16494:4;16532:2;16521:9;16517:18;16509:26;;16581:9;16575:4;16571:20;16567:1;16556:9;16552:17;16545:47;16609:131;16735:4;16609:131;:::i;:::-;16601:139;;16328:419;;;:::o;16753:410::-;16793:7;16816:20;16834:1;16816:20;:::i;:::-;16811:25;;16850:20;16868:1;16850:20;:::i;:::-;16845:25;;16905:1;16902;16898:9;16927:30;16945:11;16927:30;:::i;:::-;16916:41;;17106:1;17097:7;17093:15;17090:1;17087:22;17067:1;17060:9;17040:83;17017:139;;17136:18;;:::i;:::-;17017:139;16801:362;16753:410;;;;:::o;17169:168::-;17309:20;17305:1;17297:6;17293:14;17286:44;17169:168;:::o;17343:366::-;17485:3;17506:67;17570:2;17565:3;17506:67;:::i;:::-;17499:74;;17582:93;17671:3;17582:93;:::i;:::-;17700:2;17695:3;17691:12;17684:19;;17343:366;;;:::o;17715:419::-;17881:4;17919:2;17908:9;17904:18;17896:26;;17968:9;17962:4;17958:20;17954:1;17943:9;17939:17;17932:47;17996:131;18122:4;17996:131;:::i;:::-;17988:139;;17715:419;;;:::o;18140:141::-;18189:4;18212:3;18204:11;;18235:3;18232:1;18225:14;18269:4;18266:1;18256:18;18248:26;;18140:141;;;:::o;18287:93::-;18324:6;18371:2;18366;18359:5;18355:14;18351:23;18341:33;;18287:93;;;:::o;18386:107::-;18430:8;18480:5;18474:4;18470:16;18449:37;;18386:107;;;;:::o;18499:393::-;18568:6;18618:1;18606:10;18602:18;18641:97;18671:66;18660:9;18641:97;:::i;:::-;18759:39;18789:8;18778:9;18759:39;:::i;:::-;18747:51;;18831:4;18827:9;18820:5;18816:21;18807:30;;18880:4;18870:8;18866:19;18859:5;18856:30;18846:40;;18575:317;;18499:393;;;;;:::o;18898:142::-;18948:9;18981:53;18999:34;19008:24;19026:5;19008:24;:::i;:::-;18999:34;:::i;:::-;18981:53;:::i;:::-;18968:66;;18898:142;;;:::o;19046:75::-;19089:3;19110:5;19103:12;;19046:75;;;:::o;19127:269::-;19237:39;19268:7;19237:39;:::i;:::-;19298:91;19347:41;19371:16;19347:41;:::i;:::-;19339:6;19332:4;19326:11;19298:91;:::i;:::-;19292:4;19285:105;19203:193;19127:269;;;:::o;19402:73::-;19447:3;19402:73;:::o;19481:189::-;19558:32;;:::i;:::-;19599:65;19657:6;19649;19643:4;19599:65;:::i;:::-;19534:136;19481:189;;:::o;19676:186::-;19736:120;19753:3;19746:5;19743:14;19736:120;;;19807:39;19844:1;19837:5;19807:39;:::i;:::-;19780:1;19773:5;19769:13;19760:22;;19736:120;;;19676:186;;:::o;19868:543::-;19969:2;19964:3;19961:11;19958:446;;;20003:38;20035:5;20003:38;:::i;:::-;20087:29;20105:10;20087:29;:::i;:::-;20077:8;20073:44;20270:2;20258:10;20255:18;20252:49;;;20291:8;20276:23;;20252:49;20314:80;20370:22;20388:3;20370:22;:::i;:::-;20360:8;20356:37;20343:11;20314:80;:::i;:::-;19973:431;;19958:446;19868:543;;;:::o;20417:117::-;20471:8;20521:5;20515:4;20511:16;20490:37;;20417:117;;;;:::o;20540:169::-;20584:6;20617:51;20665:1;20661:6;20653:5;20650:1;20646:13;20617:51;:::i;:::-;20613:56;20698:4;20692;20688:15;20678:25;;20591:118;20540:169;;;;:::o;20714:295::-;20790:4;20936:29;20961:3;20955:4;20936:29;:::i;:::-;20928:37;;20998:3;20995:1;20991:11;20985:4;20982:21;20974:29;;20714:295;;;;:::o;21014:1395::-;21131:37;21164:3;21131:37;:::i;:::-;21233:18;21225:6;21222:30;21219:56;;;21255:18;;:::i;:::-;21219:56;21299:38;21331:4;21325:11;21299:38;:::i;:::-;21384:67;21444:6;21436;21430:4;21384:67;:::i;:::-;21478:1;21502:4;21489:17;;21534:2;21526:6;21523:14;21551:1;21546:618;;;;22208:1;22225:6;22222:77;;;22274:9;22269:3;22265:19;22259:26;22250:35;;22222:77;22325:67;22385:6;22378:5;22325:67;:::i;:::-;22319:4;22312:81;22181:222;21516:887;;21546:618;21598:4;21594:9;21586:6;21582:22;21632:37;21664:4;21632:37;:::i;:::-;21691:1;21705:208;21719:7;21716:1;21713:14;21705:208;;;21798:9;21793:3;21789:19;21783:26;21775:6;21768:42;21849:1;21841:6;21837:14;21827:24;;21896:2;21885:9;21881:18;21868:31;;21742:4;21739:1;21735:12;21730:17;;21705:208;;;21941:6;21932:7;21929:19;21926:179;;;21999:9;21994:3;21990:19;21984:26;22042:48;22084:4;22076:6;22072:17;22061:9;22042:48;:::i;:::-;22034:6;22027:64;21949:156;21926:179;22151:1;22147;22139:6;22135:14;22131:22;22125:4;22118:36;21553:611;;;21516:887;;21106:1303;;;21014:1395;;:::o;22415:194::-;22455:4;22475:20;22493:1;22475:20;:::i;:::-;22470:25;;22509:20;22527:1;22509:20;:::i;:::-;22504:25;;22553:1;22550;22546:9;22538:17;;22577:1;22571:4;22568:11;22565:37;;;22582:18;;:::i;:::-;22565:37;22415:194;;;;:::o;22615:148::-;22717:11;22754:3;22739:18;;22615:148;;;;:::o;22769:390::-;22875:3;22903:39;22936:5;22903:39;:::i;:::-;22958:89;23040:6;23035:3;22958:89;:::i;:::-;22951:96;;23056:65;23114:6;23109:3;23102:4;23095:5;23091:16;23056:65;:::i;:::-;23146:6;23141:3;23137:16;23130:23;;22879:280;22769:390;;;;:::o;23165:435::-;23345:3;23367:95;23458:3;23449:6;23367:95;:::i;:::-;23360:102;;23479:95;23570:3;23561:6;23479:95;:::i;:::-;23472:102;;23591:3;23584:10;;23165:435;;;;;:::o;23606:226::-;23746:34;23742:1;23734:6;23730:14;23723:58;23815:9;23810:2;23802:6;23798:15;23791:34;23606:226;:::o;23838:366::-;23980:3;24001:67;24065:2;24060:3;24001:67;:::i;:::-;23994:74;;24077:93;24166:3;24077:93;:::i;:::-;24195:2;24190:3;24186:12;24179:19;;23838:366;;;:::o;24210:419::-;24376:4;24414:2;24403:9;24399:18;24391:26;;24463:9;24457:4;24453:20;24449:1;24438:9;24434:17;24427:47;24491:131;24617:4;24491:131;:::i;:::-;24483:139;;24210:419;;;:::o;24635:232::-;24775:34;24771:1;24763:6;24759:14;24752:58;24844:15;24839:2;24831:6;24827:15;24820:40;24635:232;:::o;24873:366::-;25015:3;25036:67;25100:2;25095:3;25036:67;:::i;:::-;25029:74;;25112:93;25201:3;25112:93;:::i;:::-;25230:2;25225:3;25221:12;25214:19;;24873:366;;;:::o;25245:419::-;25411:4;25449:2;25438:9;25434:18;25426:26;;25498:9;25492:4;25488:20;25484:1;25473:9;25469:17;25462:47;25526:131;25652:4;25526:131;:::i;:::-;25518:139;;25245:419;;;:::o;25670:181::-;25810:33;25806:1;25798:6;25794:14;25787:57;25670:181;:::o;25857:366::-;25999:3;26020:67;26084:2;26079:3;26020:67;:::i;:::-;26013:74;;26096:93;26185:3;26096:93;:::i;:::-;26214:2;26209:3;26205:12;26198:19;;25857:366;;;:::o;26229:419::-;26395:4;26433:2;26422:9;26418:18;26410:26;;26482:9;26476:4;26472:20;26468:1;26457:9;26453:17;26446:47;26510:131;26636:4;26510:131;:::i;:::-;26502:139;;26229:419;;;:::o;26654:180::-;26794:32;26790:1;26782:6;26778:14;26771:56;26654:180;:::o;26840:366::-;26982:3;27003:67;27067:2;27062:3;27003:67;:::i;:::-;26996:74;;27079:93;27168:3;27079:93;:::i;:::-;27197:2;27192:3;27188:12;27181:19;;26840:366;;;:::o;27212:419::-;27378:4;27416:2;27405:9;27401:18;27393:26;;27465:9;27459:4;27455:20;27451:1;27440:9;27436:17;27429:47;27493:131;27619:4;27493:131;:::i;:::-;27485:139;;27212:419;;;:::o;27637:223::-;27777:34;27773:1;27765:6;27761:14;27754:58;27846:6;27841:2;27833:6;27829:15;27822:31;27637:223;:::o;27866:366::-;28008:3;28029:67;28093:2;28088:3;28029:67;:::i;:::-;28022:74;;28105:93;28194:3;28105:93;:::i;:::-;28223:2;28218:3;28214:12;28207:19;;27866:366;;;:::o;28238:419::-;28404:4;28442:2;28431:9;28427:18;28419:26;;28491:9;28485:4;28481:20;28477:1;28466:9;28462:17;28455:47;28519:131;28645:4;28519:131;:::i;:::-;28511:139;;28238:419;;;:::o;28663:225::-;28803:34;28799:1;28791:6;28787:14;28780:58;28872:8;28867:2;28859:6;28855:15;28848:33;28663:225;:::o;28894:366::-;29036:3;29057:67;29121:2;29116:3;29057:67;:::i;:::-;29050:74;;29133:93;29222:3;29133:93;:::i;:::-;29251:2;29246:3;29242:12;29235:19;;28894:366;;;:::o;29266:419::-;29432:4;29470:2;29459:9;29455:18;29447:26;;29519:9;29513:4;29509:20;29505:1;29494:9;29490:17;29483:47;29547:131;29673:4;29547:131;:::i;:::-;29539:139;;29266:419;;;:::o;29691:182::-;29831:34;29827:1;29819:6;29815:14;29808:58;29691:182;:::o;29879:366::-;30021:3;30042:67;30106:2;30101:3;30042:67;:::i;:::-;30035:74;;30118:93;30207:3;30118:93;:::i;:::-;30236:2;30231:3;30227:12;30220:19;;29879:366;;;:::o;30251:419::-;30417:4;30455:2;30444:9;30440:18;30432:26;;30504:9;30498:4;30494:20;30490:1;30479:9;30475:17;30468:47;30532:131;30658:4;30532:131;:::i;:::-;30524:139;;30251:419;;;:::o;30676:98::-;30727:6;30761:5;30755:12;30745:22;;30676:98;;;:::o;30780:168::-;30863:11;30897:6;30892:3;30885:19;30937:4;30932:3;30928:14;30913:29;;30780:168;;;;:::o;30954:373::-;31040:3;31068:38;31100:5;31068:38;:::i;:::-;31122:70;31185:6;31180:3;31122:70;:::i;:::-;31115:77;;31201:65;31259:6;31254:3;31247:4;31240:5;31236:16;31201:65;:::i;:::-;31291:29;31313:6;31291:29;:::i;:::-;31286:3;31282:39;31275:46;;31044:283;30954:373;;;;:::o;31333:640::-;31528:4;31566:3;31555:9;31551:19;31543:27;;31580:71;31648:1;31637:9;31633:17;31624:6;31580:71;:::i;:::-;31661:72;31729:2;31718:9;31714:18;31705:6;31661:72;:::i;:::-;31743;31811:2;31800:9;31796:18;31787:6;31743:72;:::i;:::-;31862:9;31856:4;31852:20;31847:2;31836:9;31832:18;31825:48;31890:76;31961:4;31952:6;31890:76;:::i;:::-;31882:84;;31333:640;;;;;;;:::o;31979:141::-;32035:5;32066:6;32060:13;32051:22;;32082:32;32108:5;32082:32;:::i;:::-;31979:141;;;;:::o;32126:349::-;32195:6;32244:2;32232:9;32223:7;32219:23;32215:32;32212:119;;;32250:79;;:::i;:::-;32212:119;32370:1;32395:63;32450:7;32441:6;32430:9;32426:22;32395:63;:::i;:::-;32385:73;;32341:127;32126:349;;;;:::o

Swarm Source

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