ETH Price: $2,395.17 (-2.00%)

Token

NFTRSilverKey (NFTRSilverKey)
 

Overview

Max Total Supply

58 NFTRSilverKey

Holders

23

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
NFTRSilverKey

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

/**

    ╔╗╔╔═╗╔╦╗┌─┐┬─┐┬─┐┌─┐┬─┐┬┬ ┬┌┬┐
    ║║║╠╣  ║ ├┤ ├┬┘├┬┘├─┤├┬┘││ ││││
    ╝╚╝╚   ╩ └─┘┴└─┴└─┴ ┴┴└─┴└─┘┴ ┴

*/


// File: operator-filter-registry/src/IOperatorFilterRegistry.sol
pragma solidity ^0.8.13;

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

// File: operator-filter-registry/src/OperatorFilterer.sol
pragma solidity ^0.8.13;

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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

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

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

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol
pragma solidity ^0.8.13;

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

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


// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol
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);
    }
}

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

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 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If not burned.
            if (packed & _BITMASK_BURNED == 0) {
                // If the data at the starting slot does not exist, start the scan.
                if (packed == 0) {
                    if (tokenId >= _currentIndex) revert OwnerQueryForNonexistentToken();
                    // 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, `tokenId` will not underflow.
                    //
                    // We can directly compare the packed value.
                    // If the address is zero, packed will be zero.
                    for (;;) {
                        unchecked {
                            packed = _packedOwnerships[--tokenId];
                        }
                        if (packed == 0) continue;
                        return packed;
                    }
                }
                // Otherwise, the data exists and is not burned. We can skip the scan.
                // This is possible because we have already achieved the target condition.
                // This saves 2143 gas on transfers of initialized tokens.
                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. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

    /**
     * @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, '');
    }

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

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

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

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

    // =============================================================
    //                        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)
        }
    }
}

//- NFTerrariumDust Contract
pragma solidity >=0.8.0 <0.9.0;
abstract contract NFTerrariumDust { 

    function burnDust(uint256 _type, uint256 _amount, address _address) external virtual;
    function balanceOf(address account, uint256 id) public view virtual returns (uint256);

}


pragma solidity ^0.8.15;

contract NFTRSilverKey is ERC721A, ReentrancyGuard, DefaultOperatorFilterer, Ownable {

    //---------------[ Token URI ]---------------\\
    string public baseURI = '';
    string public uriSuffix = '.json';

    //---------------[ Cost & Supply ]---------------\\
    uint256 public maxSupply = 777;

    //---------------[ Setting Toggles ]---------------\\
    NFTerrariumDust private immutable dust;
    bool public craftingEnabled = false;

    //---------------[  ]---------------\\
    constructor(
        string memory _tokenName,
        string memory _tokenSymbol,
        string memory _initBaseURI, 
        address dustAddress 
    ) ERC721A(_tokenName, _tokenSymbol) {
        baseURI = _initBaseURI;
        dust = NFTerrariumDust(dustAddress);
    }

    //---------------[ Mint Functions ]---------------\\
    function mint(uint256 _mintAmount) public payable  nonReentrant {

        require(craftingEnabled, 'Crafting of Silver Keys is not currently enabled');
        require(totalSupply() + _mintAmount <= maxSupply, 'Maximum NFT supply exceeded');

        //- Making sure the user has enough dust to craft
        require( dust.balanceOf(msg.sender, 2) >= 2 * _mintAmount, "You must own at least 2 White Dust per Silver key you are crafting");
        require( dust.balanceOf(msg.sender, 4) >= 1 * _mintAmount, "You must own at least 1 Red Dust per Silver key you are crafting");
        require( dust.balanceOf(msg.sender, 5) >= 1 * _mintAmount, "You must own at least 1 Green Dust per Silver key you are crafting");
        require( dust.balanceOf(msg.sender, 6) >= 1 * _mintAmount, "You must own at least 1 Blue Dust per Silver key you are crafting");
        require( dust.balanceOf(msg.sender, 7) >= 1 * _mintAmount, "You must own at least 1 Purple Dust per Silver key you are crafting");

        //- Burning the dust
        dust.burnDust(2, 2 * _mintAmount, msg.sender);
        dust.burnDust(4, 1 * _mintAmount, msg.sender);
        dust.burnDust(5, 1 * _mintAmount, msg.sender);
        dust.burnDust(6, 1 * _mintAmount, msg.sender);
        dust.burnDust(7, 1 * _mintAmount, msg.sender);

        //- Minting
        _safeMint(_msgSender(), _mintAmount);

    }

    function airdrop(uint256 _mintAmount, address _receiver) public onlyOwner nonReentrant {
        require(totalSupply() + _mintAmount <= maxSupply, 'Maximum NFT supply exceeded');
        _safeMint(_receiver, _mintAmount);
    }

    //---------------[ Public Functions ]---------------\\
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

    //---------------[ Internal Functions ]---------------\\
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

    //---------------[ onlyOwner Functions ]---------------\\
    function setBaseURI(string memory _newURI) public onlyOwner {
        baseURI = _newURI;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function flipCrafting() public onlyOwner {
        craftingEnabled = !craftingEnabled;
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
    }

    //---------------[ OpenSea Registry Filter Functions ]---------------\\
    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":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"address","name":"dustAddress","type":"address"}],"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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"craftingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipCrafting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405260405180602001604052806000815250600a9081620000249190620006d5565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200006b9190620006d5565b50610309600c556000600d60006101000a81548160ff0219169083151502179055503480156200009a57600080fd5b50604051620049a9380380620049a98339818101604052810190620000c0919062000985565b733cc6cdda760b79bafa08df41ecfa224f810dceb6600185858160029081620000ea9190620006d5565b508060039081620000fc9190620006d5565b506200010d6200038460201b60201c565b6000819055505050600160088190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000312578015620001d8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200019e92919062000a65565b600060405180830381600087803b158015620001b957600080fd5b505af1158015620001ce573d6000803e3d6000fd5b5050505062000311565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000292576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200025892919062000a65565b600060405180830381600087803b1580156200027357600080fd5b505af115801562000288573d6000803e3d6000fd5b5050505062000310565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002db919062000a92565b600060405180830381600087803b158015620002f657600080fd5b505af11580156200030b573d6000803e3d6000fd5b505050505b5b5b505062000334620003286200038d60201b60201c565b6200039560201b60201c565b81600a9081620003459190620006d5565b508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505050505062000aaf565b60006001905090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004dd57607f821691505b602082108103620004f357620004f262000495565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200055d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200051e565b6200056986836200051e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005b6620005b0620005aa8462000581565b6200058b565b62000581565b9050919050565b6000819050919050565b620005d28362000595565b620005ea620005e182620005bd565b8484546200052b565b825550505050565b600090565b62000601620005f2565b6200060e818484620005c7565b505050565b5b8181101562000636576200062a600082620005f7565b60018101905062000614565b5050565b601f82111562000685576200064f81620004f9565b6200065a846200050e565b810160208510156200066a578190505b6200068262000679856200050e565b83018262000613565b50505b505050565b600082821c905092915050565b6000620006aa600019846008026200068a565b1980831691505092915050565b6000620006c5838362000697565b9150826002028217905092915050565b620006e0826200045b565b67ffffffffffffffff811115620006fc57620006fb62000466565b5b620007088254620004c4565b620007158282856200063a565b600060209050601f8311600181146200074d576000841562000738578287015190505b620007448582620006b7565b865550620007b4565b601f1984166200075d86620004f9565b60005b82811015620007875784890151825560018201915060208501945060208101905062000760565b86831015620007a75784890151620007a3601f89168262000697565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620007f682620007da565b810181811067ffffffffffffffff8211171562000818576200081762000466565b5b80604052505050565b60006200082d620007bc565b90506200083b8282620007eb565b919050565b600067ffffffffffffffff8211156200085e576200085d62000466565b5b6200086982620007da565b9050602081019050919050565b60005b838110156200089657808201518184015260208101905062000879565b60008484015250505050565b6000620008b9620008b38462000840565b62000821565b905082815260208101848484011115620008d857620008d7620007d5565b5b620008e584828562000876565b509392505050565b600082601f830112620009055762000904620007d0565b5b815162000917848260208601620008a2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200094d8262000920565b9050919050565b6200095f8162000940565b81146200096b57600080fd5b50565b6000815190506200097f8162000954565b92915050565b60008060008060808587031215620009a257620009a1620007c6565b5b600085015167ffffffffffffffff811115620009c357620009c2620007cb565b5b620009d187828801620008ed565b945050602085015167ffffffffffffffff811115620009f557620009f4620007cb565b5b62000a0387828801620008ed565b935050604085015167ffffffffffffffff81111562000a275762000a26620007cb565b5b62000a3587828801620008ed565b925050606062000a48878288016200096e565b91505092959194509250565b62000a5f8162000940565b82525050565b600060408201905062000a7c600083018562000a54565b62000a8b602083018462000a54565b9392505050565b600060208201905062000aa9600083018462000a54565b92915050565b608051613e9f62000b0a60003960008181610d0801528181610df201528181610edc01528181610fc6015281816110b00152818161118d01528181611229015281816112c50152818161136101526113fd0152613e9f6000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063bc63f02e1161008a578063e30c1e7c11610064578063e30c1e7c146105a3578063e985e9c5146105ce578063f2913d1f1461060b578063f2fde38b14610622576101b7565b8063bc63f02e14610512578063c87b56dd1461053b578063d5abeb0114610578576101b7565b806395d89b41116100c657806395d89b4114610486578063a0712d68146104b1578063a22cb465146104cd578063b88d4fde146104f6576101b7565b806370a0823114610407578063715018a6146104445780638da5cb5b1461045b576101b7565b80633ccfd60b116101595780635503a0e8116101335780635503a0e81461034b57806355f804b3146103765780636352211e1461039f5780636c0360eb146103dc576101b7565b80633ccfd60b146102ed57806341f434341461030457806342842e0e1461032f576101b7565b8063095ea7b311610195578063095ea7b31461026157806316ba10e01461027d57806318160ddd146102a657806323b872dd146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906127c5565b61064b565b6040516101f0919061280d565b60405180910390f35b34801561020557600080fd5b5061020e6106dd565b60405161021b91906128b8565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612910565b61076f565b604051610258919061297e565b60405180910390f35b61027b600480360381019061027691906129c5565b6107ee565b005b34801561028957600080fd5b506102a4600480360381019061029f9190612b3a565b610807565b005b3480156102b257600080fd5b506102bb610822565b6040516102c89190612b92565b60405180910390f35b6102eb60048036038101906102e69190612bad565b610839565b005b3480156102f957600080fd5b50610302610888565b005b34801561031057600080fd5b50610319610919565b6040516103269190612c5f565b60405180910390f35b61034960048036038101906103449190612bad565b61092b565b005b34801561035757600080fd5b5061036061097a565b60405161036d91906128b8565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190612b3a565b610a08565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612910565b610a23565b6040516103d3919061297e565b60405180910390f35b3480156103e857600080fd5b506103f1610a35565b6040516103fe91906128b8565b60405180910390f35b34801561041357600080fd5b5061042e60048036038101906104299190612c7a565b610ac3565b60405161043b9190612b92565b60405180910390f35b34801561045057600080fd5b50610459610b7b565b005b34801561046757600080fd5b50610470610b8f565b60405161047d919061297e565b60405180910390f35b34801561049257600080fd5b5061049b610bb9565b6040516104a891906128b8565b60405180910390f35b6104cb60048036038101906104c69190612910565b610c4b565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190612cd3565b6114b3565b005b610510600480360381019061050b9190612db4565b6114cc565b005b34801561051e57600080fd5b5061053960048036038101906105349190612e37565b61151d565b005b34801561054757600080fd5b50610562600480360381019061055d9190612910565b61159a565b60405161056f91906128b8565b60405180910390f35b34801561058457600080fd5b5061058d611644565b60405161059a9190612b92565b60405180910390f35b3480156105af57600080fd5b506105b861164a565b6040516105c5919061280d565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190612e77565b61165d565b604051610602919061280d565b60405180910390f35b34801561061757600080fd5b506106206116f1565b005b34801561062e57600080fd5b5061064960048036038101906106449190612c7a565b611725565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106ec90612ee6565b80601f016020809104026020016040519081016040528092919081815260200182805461071890612ee6565b80156107655780601f1061073a57610100808354040283529160200191610765565b820191906000526020600020905b81548152906001019060200180831161074857829003601f168201915b5050505050905090565b600061077a826117a8565b6107b0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816107f881611807565b6108028383611904565b505050565b61080f611914565b80600b908161081e91906130b9565b5050565b600061082c611992565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108775761087633611807565b5b61088284848461199b565b50505050565b610890611914565b610898611cbd565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516108be906131bc565b60006040518083038185875af1925050503d80600081146108fb576040519150601f19603f3d011682016040523d82523d6000602084013e610900565b606091505b505090508061090e57600080fd5b50610917611d0c565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109695761096833611807565b5b610974848484611d16565b50505050565b600b805461098790612ee6565b80601f01602080910402602001604051908101604052809291908181526020018280546109b390612ee6565b8015610a005780601f106109d557610100808354040283529160200191610a00565b820191906000526020600020905b8154815290600101906020018083116109e357829003601f168201915b505050505081565b610a10611914565b80600a9081610a1f91906130b9565b5050565b6000610a2e82611d36565b9050919050565b600a8054610a4290612ee6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6e90612ee6565b8015610abb5780601f10610a9057610100808354040283529160200191610abb565b820191906000526020600020905b815481529060010190602001808311610a9e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b83611914565b610b8d6000611e2e565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610bc890612ee6565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf490612ee6565b8015610c415780601f10610c1657610100808354040283529160200191610c41565b820191906000526020600020905b815481529060010190602001808311610c2457829003601f168201915b5050505050905090565b610c53611cbd565b600d60009054906101000a900460ff16610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990613243565b60405180910390fd5b600c5481610cae610822565b610cb89190613292565b1115610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090613312565b60405180910390fd5b806002610d069190613332565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360026040518363ffffffff1660e01b8152600401610d619291906133af565b602060405180830381865afa158015610d7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da291906133ed565b1015610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906134b2565b60405180910390fd5b806001610df09190613332565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360046040518363ffffffff1660e01b8152600401610e4b92919061350d565b602060405180830381865afa158015610e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8c91906133ed565b1015610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec4906135a8565b60405180910390fd5b806001610eda9190613332565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360056040518363ffffffff1660e01b8152600401610f35929190613603565b602060405180830381865afa158015610f52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7691906133ed565b1015610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae906136c4565b60405180910390fd5b806001610fc49190613332565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360066040518363ffffffff1660e01b815260040161101f92919061371f565b602060405180830381865afa15801561103c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106091906133ed565b10156110a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611098906137e0565b60405180910390fd5b8060016110ae9190613332565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360076040518363ffffffff1660e01b815260040161110992919061383b565b602060405180830381865afa158015611126573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114a91906133ed565b101561118b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611182906138fc565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166337bb397560028360026111d69190613332565b336040518463ffffffff1660e01b81526004016111f59392919061391c565b600060405180830381600087803b15801561120f57600080fd5b505af1158015611223573d6000803e3d6000fd5b505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166337bb397560048360016112729190613332565b336040518463ffffffff1660e01b815260040161129193929190613953565b600060405180830381600087803b1580156112ab57600080fd5b505af11580156112bf573d6000803e3d6000fd5b505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166337bb3975600583600161130e9190613332565b336040518463ffffffff1660e01b815260040161132d9392919061398a565b600060405180830381600087803b15801561134757600080fd5b505af115801561135b573d6000803e3d6000fd5b505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166337bb397560068360016113aa9190613332565b336040518463ffffffff1660e01b81526004016113c9939291906139c1565b600060405180830381600087803b1580156113e357600080fd5b505af11580156113f7573d6000803e3d6000fd5b505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166337bb397560078360016114469190613332565b336040518463ffffffff1660e01b8152600401611465939291906139f8565b600060405180830381600087803b15801561147f57600080fd5b505af1158015611493573d6000803e3d6000fd5b505050506114a86114a2611ef4565b82611efc565b6114b0611d0c565b50565b816114bd81611807565b6114c78383611f1a565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461150a5761150933611807565b5b61151685858585612025565b5050505050565b611525611914565b61152d611cbd565b600c5482611539610822565b6115439190613292565b1115611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b90613312565b60405180910390fd5b61158e8183611efc565b611596611d0c565b5050565b60606115a5826117a8565b6115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90613aa1565b60405180910390fd5b60006115ee612098565b9050600081511161160e576040518060200160405280600081525061163c565b806116188461212a565b600b60405160200161162c93929190613b80565b6040516020818303038152906040525b915050919050565b600c5481565b600d60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f9611914565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b61172d611914565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361179c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179390613c23565b60405180910390fd5b6117a581611e2e565b50565b6000816117b3611992565b111580156117c2575060005482105b8015611800575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611901576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161187e929190613c43565b602060405180830381865afa15801561189b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118bf9190613c81565b61190057806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016118f7919061297e565b60405180910390fd5b5b50565b6119108282600161217a565b5050565b61191c611ef4565b73ffffffffffffffffffffffffffffffffffffffff1661193a610b8f565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790613cfa565b60405180910390fd5b565b60006001905090565b60006119a682611d36565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a0d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a19846122c6565b91509150611a2f8187611a2a6122ed565b6122f5565b611a7b57611a4486611a3f6122ed565b61165d565b611a7a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611ae1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aee8686866001612339565b8015611af957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611bc785611ba388888761233f565b7c020000000000000000000000000000000000000000000000000000000017612367565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611c4d5760006001850190506000600460008381526020019081526020016000205403611c4b576000548114611c4a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cb58686866001612392565b505050505050565b600260085403611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990613d66565b60405180910390fd5b6002600881905550565b6001600881905550565b611d31838383604051806020016040528060008152506114cc565b505050565b600081611d41611992565b11611df7576004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611df65760008103611df1576000548210611dc6576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600460008360019003935083815260200190815260200160002054905060008103611e2957611dc7565b611e29565b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611f16828260405180602001604052806000815250612398565b5050565b8060076000611f276122ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fd46122ed565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612019919061280d565b60405180910390a35050565b612030848484610839565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120925761205b84848484612435565b612091576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546120a790612ee6565b80601f01602080910402602001604051908101604052809291908181526020018280546120d390612ee6565b80156121205780601f106120f557610100808354040283529160200191612120565b820191906000526020600020905b81548152906001019060200180831161210357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561216557600184039350600a81066030018453600a8104905080612143575b50828103602084039350808452505050919050565b600061218583610a23565b90508115612210578073ffffffffffffffffffffffffffffffffffffffff166121ac6122ed565b73ffffffffffffffffffffffffffffffffffffffff161461220f576121d8816121d36122ed565b61165d565b61220e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612356868684612585565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6123a2838361258e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461243057600080549050600083820390505b6123e26000868380600101945086612435565b612418576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123cf57816000541461242d57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261245b6122ed565b8786866040518563ffffffff1660e01b815260040161247d9493929190613ddb565b6020604051808303816000875af19250505080156124b957506040513d601f19601f820116820180604052508101906124b69190613e3c565b60015b612532573d80600081146124e9576040519150601f19603f3d011682016040523d82523d6000602084013e6124ee565b606091505b50600081510361252a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036125ce576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125db6000848385612339565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061265283612643600086600061233f565b61264c85612749565b17612367565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126f357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126b8565b506000820361272e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127446000848385612392565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127a28161276d565b81146127ad57600080fd5b50565b6000813590506127bf81612799565b92915050565b6000602082840312156127db576127da612763565b5b60006127e9848285016127b0565b91505092915050565b60008115159050919050565b612807816127f2565b82525050565b600060208201905061282260008301846127fe565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612862578082015181840152602081019050612847565b60008484015250505050565b6000601f19601f8301169050919050565b600061288a82612828565b6128948185612833565b93506128a4818560208601612844565b6128ad8161286e565b840191505092915050565b600060208201905081810360008301526128d2818461287f565b905092915050565b6000819050919050565b6128ed816128da565b81146128f857600080fd5b50565b60008135905061290a816128e4565b92915050565b60006020828403121561292657612925612763565b5b6000612934848285016128fb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129688261293d565b9050919050565b6129788161295d565b82525050565b6000602082019050612993600083018461296f565b92915050565b6129a28161295d565b81146129ad57600080fd5b50565b6000813590506129bf81612999565b92915050565b600080604083850312156129dc576129db612763565b5b60006129ea858286016129b0565b92505060206129fb858286016128fb565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a478261286e565b810181811067ffffffffffffffff82111715612a6657612a65612a0f565b5b80604052505050565b6000612a79612759565b9050612a858282612a3e565b919050565b600067ffffffffffffffff821115612aa557612aa4612a0f565b5b612aae8261286e565b9050602081019050919050565b82818337600083830152505050565b6000612add612ad884612a8a565b612a6f565b905082815260208101848484011115612af957612af8612a0a565b5b612b04848285612abb565b509392505050565b600082601f830112612b2157612b20612a05565b5b8135612b31848260208601612aca565b91505092915050565b600060208284031215612b5057612b4f612763565b5b600082013567ffffffffffffffff811115612b6e57612b6d612768565b5b612b7a84828501612b0c565b91505092915050565b612b8c816128da565b82525050565b6000602082019050612ba76000830184612b83565b92915050565b600080600060608486031215612bc657612bc5612763565b5b6000612bd4868287016129b0565b9350506020612be5868287016129b0565b9250506040612bf6868287016128fb565b9150509250925092565b6000819050919050565b6000612c25612c20612c1b8461293d565b612c00565b61293d565b9050919050565b6000612c3782612c0a565b9050919050565b6000612c4982612c2c565b9050919050565b612c5981612c3e565b82525050565b6000602082019050612c746000830184612c50565b92915050565b600060208284031215612c9057612c8f612763565b5b6000612c9e848285016129b0565b91505092915050565b612cb0816127f2565b8114612cbb57600080fd5b50565b600081359050612ccd81612ca7565b92915050565b60008060408385031215612cea57612ce9612763565b5b6000612cf8858286016129b0565b9250506020612d0985828601612cbe565b9150509250929050565b600067ffffffffffffffff821115612d2e57612d2d612a0f565b5b612d378261286e565b9050602081019050919050565b6000612d57612d5284612d13565b612a6f565b905082815260208101848484011115612d7357612d72612a0a565b5b612d7e848285612abb565b509392505050565b600082601f830112612d9b57612d9a612a05565b5b8135612dab848260208601612d44565b91505092915050565b60008060008060808587031215612dce57612dcd612763565b5b6000612ddc878288016129b0565b9450506020612ded878288016129b0565b9350506040612dfe878288016128fb565b925050606085013567ffffffffffffffff811115612e1f57612e1e612768565b5b612e2b87828801612d86565b91505092959194509250565b60008060408385031215612e4e57612e4d612763565b5b6000612e5c858286016128fb565b9250506020612e6d858286016129b0565b9150509250929050565b60008060408385031215612e8e57612e8d612763565b5b6000612e9c858286016129b0565b9250506020612ead858286016129b0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612efe57607f821691505b602082108103612f1157612f10612eb7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612f797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f3c565b612f838683612f3c565b95508019841693508086168417925050509392505050565b6000612fb6612fb1612fac846128da565b612c00565b6128da565b9050919050565b6000819050919050565b612fd083612f9b565b612fe4612fdc82612fbd565b848454612f49565b825550505050565b600090565b612ff9612fec565b613004818484612fc7565b505050565b5b818110156130285761301d600082612ff1565b60018101905061300a565b5050565b601f82111561306d5761303e81612f17565b61304784612f2c565b81016020851015613056578190505b61306a61306285612f2c565b830182613009565b50505b505050565b600082821c905092915050565b600061309060001984600802613072565b1980831691505092915050565b60006130a9838361307f565b9150826002028217905092915050565b6130c282612828565b67ffffffffffffffff8111156130db576130da612a0f565b5b6130e58254612ee6565b6130f082828561302c565b600060209050601f8311600181146131235760008415613111578287015190505b61311b858261309d565b865550613183565b601f19841661313186612f17565b60005b8281101561315957848901518255600182019150602085019450602081019050613134565b868310156131765784890151613172601f89168261307f565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b60006131a660008361318b565b91506131b182613196565b600082019050919050565b60006131c782613199565b9150819050919050565b7f4372616674696e67206f662053696c766572204b657973206973206e6f74206360008201527f757272656e746c7920656e61626c656400000000000000000000000000000000602082015250565b600061322d603083612833565b9150613238826131d1565b604082019050919050565b6000602082019050818103600083015261325c81613220565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061329d826128da565b91506132a8836128da565b92508282019050808211156132c0576132bf613263565b5b92915050565b7f4d6178696d756d204e465420737570706c792065786365656465640000000000600082015250565b60006132fc601b83612833565b9150613307826132c6565b602082019050919050565b6000602082019050818103600083015261332b816132ef565b9050919050565b600061333d826128da565b9150613348836128da565b9250828202613356816128da565b9150828204841483151761336d5761336c613263565b5b5092915050565b6000819050919050565b600061339961339461338f84613374565b612c00565b6128da565b9050919050565b6133a98161337e565b82525050565b60006040820190506133c4600083018561296f565b6133d160208301846133a0565b9392505050565b6000815190506133e7816128e4565b92915050565b60006020828403121561340357613402612763565b5b6000613411848285016133d8565b91505092915050565b7f596f75206d757374206f776e206174206c65617374203220576869746520447560008201527f7374207065722053696c766572206b657920796f75206172652063726166746960208201527f6e67000000000000000000000000000000000000000000000000000000000000604082015250565b600061349c604283612833565b91506134a78261341a565b606082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b6000819050919050565b60006134f76134f26134ed846134d2565b612c00565b6128da565b9050919050565b613507816134dc565b82525050565b6000604082019050613522600083018561296f565b61352f60208301846134fe565b9392505050565b7f596f75206d757374206f776e206174206c65617374203120526564204475737460008201527f207065722053696c766572206b657920796f7520617265206372616674696e67602082015250565b6000613592604083612833565b915061359d82613536565b604082019050919050565b600060208201905081810360008301526135c181613585565b9050919050565b6000819050919050565b60006135ed6135e86135e3846135c8565b612c00565b6128da565b9050919050565b6135fd816135d2565b82525050565b6000604082019050613618600083018561296f565b61362560208301846135f4565b9392505050565b7f596f75206d757374206f776e206174206c65617374203120477265656e20447560008201527f7374207065722053696c766572206b657920796f75206172652063726166746960208201527f6e67000000000000000000000000000000000000000000000000000000000000604082015250565b60006136ae604283612833565b91506136b98261362c565b606082019050919050565b600060208201905081810360008301526136dd816136a1565b9050919050565b6000819050919050565b60006137096137046136ff846136e4565b612c00565b6128da565b9050919050565b613719816136ee565b82525050565b6000604082019050613734600083018561296f565b6137416020830184613710565b9392505050565b7f596f75206d757374206f776e206174206c65617374203120426c75652044757360008201527f74207065722053696c766572206b657920796f7520617265206372616674696e60208201527f6700000000000000000000000000000000000000000000000000000000000000604082015250565b60006137ca604183612833565b91506137d582613748565b606082019050919050565b600060208201905081810360008301526137f9816137bd565b9050919050565b6000819050919050565b600061382561382061381b84613800565b612c00565b6128da565b9050919050565b6138358161380a565b82525050565b6000604082019050613850600083018561296f565b61385d602083018461382c565b9392505050565b7f596f75206d757374206f776e206174206c65617374203120507572706c65204460008201527f757374207065722053696c766572206b657920796f752061726520637261667460208201527f696e670000000000000000000000000000000000000000000000000000000000604082015250565b60006138e6604383612833565b91506138f182613864565b606082019050919050565b60006020820190508181036000830152613915816138d9565b9050919050565b600060608201905061393160008301866133a0565b61393e6020830185612b83565b61394b604083018461296f565b949350505050565b600060608201905061396860008301866134fe565b6139756020830185612b83565b613982604083018461296f565b949350505050565b600060608201905061399f60008301866135f4565b6139ac6020830185612b83565b6139b9604083018461296f565b949350505050565b60006060820190506139d66000830186613710565b6139e36020830185612b83565b6139f0604083018461296f565b949350505050565b6000606082019050613a0d600083018661382c565b613a1a6020830185612b83565b613a27604083018461296f565b949350505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a8b602f83612833565b9150613a9682613a2f565b604082019050919050565b60006020820190508181036000830152613aba81613a7e565b9050919050565b600081905092915050565b6000613ad782612828565b613ae18185613ac1565b9350613af1818560208601612844565b80840191505092915050565b60008154613b0a81612ee6565b613b148186613ac1565b94506001821660008114613b2f5760018114613b4457613b77565b60ff1983168652811515820286019350613b77565b613b4d85612f17565b60005b83811015613b6f57815481890152600182019150602081019050613b50565b838801955050505b50505092915050565b6000613b8c8286613acc565b9150613b988285613acc565b9150613ba48284613afd565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c0d602683612833565b9150613c1882613bb1565b604082019050919050565b60006020820190508181036000830152613c3c81613c00565b9050919050565b6000604082019050613c58600083018561296f565b613c65602083018461296f565b9392505050565b600081519050613c7b81612ca7565b92915050565b600060208284031215613c9757613c96612763565b5b6000613ca584828501613c6c565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ce4602083612833565b9150613cef82613cae565b602082019050919050565b60006020820190508181036000830152613d1381613cd7565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d50601f83612833565b9150613d5b82613d1a565b602082019050919050565b60006020820190508181036000830152613d7f81613d43565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dad82613d86565b613db78185613d91565b9350613dc7818560208601612844565b613dd08161286e565b840191505092915050565b6000608082019050613df0600083018761296f565b613dfd602083018661296f565b613e0a6040830185612b83565b8181036060830152613e1c8184613da2565b905095945050505050565b600081519050613e3681612799565b92915050565b600060208284031215613e5257613e51612763565b5b6000613e6084828501613e27565b9150509291505056fea2646970667358221220fd644d0a759ad6dadee7dfd4dcd73381ca2ccbe8cd31891d8f9b39cc055001f764736f6c63430008110033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000005602086c851d1fc6f16250fa1b3b495d9f38594e000000000000000000000000000000000000000000000000000000000000000d4e46545253696c7665724b657900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4e46545253696c7665724b657900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6170692e6e6674657272617269756d2e78797a2f6b6579732f73696c76657200000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063bc63f02e1161008a578063e30c1e7c11610064578063e30c1e7c146105a3578063e985e9c5146105ce578063f2913d1f1461060b578063f2fde38b14610622576101b7565b8063bc63f02e14610512578063c87b56dd1461053b578063d5abeb0114610578576101b7565b806395d89b41116100c657806395d89b4114610486578063a0712d68146104b1578063a22cb465146104cd578063b88d4fde146104f6576101b7565b806370a0823114610407578063715018a6146104445780638da5cb5b1461045b576101b7565b80633ccfd60b116101595780635503a0e8116101335780635503a0e81461034b57806355f804b3146103765780636352211e1461039f5780636c0360eb146103dc576101b7565b80633ccfd60b146102ed57806341f434341461030457806342842e0e1461032f576101b7565b8063095ea7b311610195578063095ea7b31461026157806316ba10e01461027d57806318160ddd146102a657806323b872dd146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906127c5565b61064b565b6040516101f0919061280d565b60405180910390f35b34801561020557600080fd5b5061020e6106dd565b60405161021b91906128b8565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612910565b61076f565b604051610258919061297e565b60405180910390f35b61027b600480360381019061027691906129c5565b6107ee565b005b34801561028957600080fd5b506102a4600480360381019061029f9190612b3a565b610807565b005b3480156102b257600080fd5b506102bb610822565b6040516102c89190612b92565b60405180910390f35b6102eb60048036038101906102e69190612bad565b610839565b005b3480156102f957600080fd5b50610302610888565b005b34801561031057600080fd5b50610319610919565b6040516103269190612c5f565b60405180910390f35b61034960048036038101906103449190612bad565b61092b565b005b34801561035757600080fd5b5061036061097a565b60405161036d91906128b8565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190612b3a565b610a08565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612910565b610a23565b6040516103d3919061297e565b60405180910390f35b3480156103e857600080fd5b506103f1610a35565b6040516103fe91906128b8565b60405180910390f35b34801561041357600080fd5b5061042e60048036038101906104299190612c7a565b610ac3565b60405161043b9190612b92565b60405180910390f35b34801561045057600080fd5b50610459610b7b565b005b34801561046757600080fd5b50610470610b8f565b60405161047d919061297e565b60405180910390f35b34801561049257600080fd5b5061049b610bb9565b6040516104a891906128b8565b60405180910390f35b6104cb60048036038101906104c69190612910565b610c4b565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190612cd3565b6114b3565b005b610510600480360381019061050b9190612db4565b6114cc565b005b34801561051e57600080fd5b5061053960048036038101906105349190612e37565b61151d565b005b34801561054757600080fd5b50610562600480360381019061055d9190612910565b61159a565b60405161056f91906128b8565b60405180910390f35b34801561058457600080fd5b5061058d611644565b60405161059a9190612b92565b60405180910390f35b3480156105af57600080fd5b506105b861164a565b6040516105c5919061280d565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190612e77565b61165d565b604051610602919061280d565b60405180910390f35b34801561061757600080fd5b506106206116f1565b005b34801561062e57600080fd5b5061064960048036038101906106449190612c7a565b611725565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106ec90612ee6565b80601f016020809104026020016040519081016040528092919081815260200182805461071890612ee6565b80156107655780601f1061073a57610100808354040283529160200191610765565b820191906000526020600020905b81548152906001019060200180831161074857829003601f168201915b5050505050905090565b600061077a826117a8565b6107b0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816107f881611807565b6108028383611904565b505050565b61080f611914565b80600b908161081e91906130b9565b5050565b600061082c611992565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108775761087633611807565b5b61088284848461199b565b50505050565b610890611914565b610898611cbd565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516108be906131bc565b60006040518083038185875af1925050503d80600081146108fb576040519150601f19603f3d011682016040523d82523d6000602084013e610900565b606091505b505090508061090e57600080fd5b50610917611d0c565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109695761096833611807565b5b610974848484611d16565b50505050565b600b805461098790612ee6565b80601f01602080910402602001604051908101604052809291908181526020018280546109b390612ee6565b8015610a005780601f106109d557610100808354040283529160200191610a00565b820191906000526020600020905b8154815290600101906020018083116109e357829003601f168201915b505050505081565b610a10611914565b80600a9081610a1f91906130b9565b5050565b6000610a2e82611d36565b9050919050565b600a8054610a4290612ee6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6e90612ee6565b8015610abb5780601f10610a9057610100808354040283529160200191610abb565b820191906000526020600020905b815481529060010190602001808311610a9e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b83611914565b610b8d6000611e2e565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610bc890612ee6565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf490612ee6565b8015610c415780601f10610c1657610100808354040283529160200191610c41565b820191906000526020600020905b815481529060010190602001808311610c2457829003601f168201915b5050505050905090565b610c53611cbd565b600d60009054906101000a900460ff16610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990613243565b60405180910390fd5b600c5481610cae610822565b610cb89190613292565b1115610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090613312565b60405180910390fd5b806002610d069190613332565b7f0000000000000000000000005602086c851d1fc6f16250fa1b3b495d9f38594e73ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360026040518363ffffffff1660e01b8152600401610d619291906133af565b602060405180830381865afa158015610d7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da291906133ed565b1015610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906134b2565b60405180910390fd5b806001610df09190613332565b7f0000000000000000000000005602086c851d1fc6f16250fa1b3b495d9f38594e73ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360046040518363ffffffff1660e01b8152600401610e4b92919061350d565b602060405180830381865afa158015610e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8c91906133ed565b1015610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec4906135a8565b60405180910390fd5b806001610eda9190613332565b7f0000000000000000000000005602086c851d1fc6f16250fa1b3b495d9f38594e73ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360056040518363ffffffff1660e01b8152600401610f35929190613603565b602060405180830381865afa158015610f52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7691906133ed565b1015610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae906136c4565b60405180910390fd5b806001610fc49190613332565b7f0000000000000000000000005602086c851d1fc6f16250fa1b3b495d9f38594e73ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360066040518363ffffffff1660e01b815260040161101f92919061371f565b602060405180830381865afa15801561103c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106091906133ed565b10156110a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611098906137e0565b60405180910390fd5b8060016110ae9190613332565b7f0000000000000000000000005602086c851d1fc6f16250fa1b3b495d9f38594e73ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360076040518363ffffffff1660e01b815260040161110992919061383b565b602060405180830381865afa158015611126573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114a91906133ed565b101561118b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611182906138fc565b60405180910390fd5b7f0000000000000000000000005602086c851d1fc6f16250fa1b3b495d9f38594e73ffffffffffffffffffffffffffffffffffffffff166337bb397560028360026111d69190613332565b336040518463ffffffff1660e01b81526004016111f59392919061391c565b600060405180830381600087803b15801561120f57600080fd5b505af1158015611223573d6000803e3d6000fd5b505050507f0000000000000000000000005602086c851d1fc6f16250fa1b3b495d9f38594e73ffffffffffffffffffffffffffffffffffffffff166337bb397560048360016112729190613332565b336040518463ffffffff1660e01b815260040161129193929190613953565b600060405180830381600087803b1580156112ab57600080fd5b505af11580156112bf573d6000803e3d6000fd5b505050507f0000000000000000000000005602086c851d1fc6f16250fa1b3b495d9f38594e73ffffffffffffffffffffffffffffffffffffffff166337bb3975600583600161130e9190613332565b336040518463ffffffff1660e01b815260040161132d9392919061398a565b600060405180830381600087803b15801561134757600080fd5b505af115801561135b573d6000803e3d6000fd5b505050507f0000000000000000000000005602086c851d1fc6f16250fa1b3b495d9f38594e73ffffffffffffffffffffffffffffffffffffffff166337bb397560068360016113aa9190613332565b336040518463ffffffff1660e01b81526004016113c9939291906139c1565b600060405180830381600087803b1580156113e357600080fd5b505af11580156113f7573d6000803e3d6000fd5b505050507f0000000000000000000000005602086c851d1fc6f16250fa1b3b495d9f38594e73ffffffffffffffffffffffffffffffffffffffff166337bb397560078360016114469190613332565b336040518463ffffffff1660e01b8152600401611465939291906139f8565b600060405180830381600087803b15801561147f57600080fd5b505af1158015611493573d6000803e3d6000fd5b505050506114a86114a2611ef4565b82611efc565b6114b0611d0c565b50565b816114bd81611807565b6114c78383611f1a565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461150a5761150933611807565b5b61151685858585612025565b5050505050565b611525611914565b61152d611cbd565b600c5482611539610822565b6115439190613292565b1115611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b90613312565b60405180910390fd5b61158e8183611efc565b611596611d0c565b5050565b60606115a5826117a8565b6115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90613aa1565b60405180910390fd5b60006115ee612098565b9050600081511161160e576040518060200160405280600081525061163c565b806116188461212a565b600b60405160200161162c93929190613b80565b6040516020818303038152906040525b915050919050565b600c5481565b600d60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f9611914565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b61172d611914565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361179c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179390613c23565b60405180910390fd5b6117a581611e2e565b50565b6000816117b3611992565b111580156117c2575060005482105b8015611800575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611901576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161187e929190613c43565b602060405180830381865afa15801561189b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118bf9190613c81565b61190057806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016118f7919061297e565b60405180910390fd5b5b50565b6119108282600161217a565b5050565b61191c611ef4565b73ffffffffffffffffffffffffffffffffffffffff1661193a610b8f565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790613cfa565b60405180910390fd5b565b60006001905090565b60006119a682611d36565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a0d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a19846122c6565b91509150611a2f8187611a2a6122ed565b6122f5565b611a7b57611a4486611a3f6122ed565b61165d565b611a7a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611ae1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aee8686866001612339565b8015611af957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611bc785611ba388888761233f565b7c020000000000000000000000000000000000000000000000000000000017612367565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611c4d5760006001850190506000600460008381526020019081526020016000205403611c4b576000548114611c4a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cb58686866001612392565b505050505050565b600260085403611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990613d66565b60405180910390fd5b6002600881905550565b6001600881905550565b611d31838383604051806020016040528060008152506114cc565b505050565b600081611d41611992565b11611df7576004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611df65760008103611df1576000548210611dc6576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600460008360019003935083815260200190815260200160002054905060008103611e2957611dc7565b611e29565b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611f16828260405180602001604052806000815250612398565b5050565b8060076000611f276122ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fd46122ed565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612019919061280d565b60405180910390a35050565b612030848484610839565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120925761205b84848484612435565b612091576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546120a790612ee6565b80601f01602080910402602001604051908101604052809291908181526020018280546120d390612ee6565b80156121205780601f106120f557610100808354040283529160200191612120565b820191906000526020600020905b81548152906001019060200180831161210357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561216557600184039350600a81066030018453600a8104905080612143575b50828103602084039350808452505050919050565b600061218583610a23565b90508115612210578073ffffffffffffffffffffffffffffffffffffffff166121ac6122ed565b73ffffffffffffffffffffffffffffffffffffffff161461220f576121d8816121d36122ed565b61165d565b61220e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612356868684612585565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6123a2838361258e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461243057600080549050600083820390505b6123e26000868380600101945086612435565b612418576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123cf57816000541461242d57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261245b6122ed565b8786866040518563ffffffff1660e01b815260040161247d9493929190613ddb565b6020604051808303816000875af19250505080156124b957506040513d601f19601f820116820180604052508101906124b69190613e3c565b60015b612532573d80600081146124e9576040519150601f19603f3d011682016040523d82523d6000602084013e6124ee565b606091505b50600081510361252a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036125ce576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125db6000848385612339565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061265283612643600086600061233f565b61264c85612749565b17612367565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126f357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126b8565b506000820361272e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127446000848385612392565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127a28161276d565b81146127ad57600080fd5b50565b6000813590506127bf81612799565b92915050565b6000602082840312156127db576127da612763565b5b60006127e9848285016127b0565b91505092915050565b60008115159050919050565b612807816127f2565b82525050565b600060208201905061282260008301846127fe565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612862578082015181840152602081019050612847565b60008484015250505050565b6000601f19601f8301169050919050565b600061288a82612828565b6128948185612833565b93506128a4818560208601612844565b6128ad8161286e565b840191505092915050565b600060208201905081810360008301526128d2818461287f565b905092915050565b6000819050919050565b6128ed816128da565b81146128f857600080fd5b50565b60008135905061290a816128e4565b92915050565b60006020828403121561292657612925612763565b5b6000612934848285016128fb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129688261293d565b9050919050565b6129788161295d565b82525050565b6000602082019050612993600083018461296f565b92915050565b6129a28161295d565b81146129ad57600080fd5b50565b6000813590506129bf81612999565b92915050565b600080604083850312156129dc576129db612763565b5b60006129ea858286016129b0565b92505060206129fb858286016128fb565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a478261286e565b810181811067ffffffffffffffff82111715612a6657612a65612a0f565b5b80604052505050565b6000612a79612759565b9050612a858282612a3e565b919050565b600067ffffffffffffffff821115612aa557612aa4612a0f565b5b612aae8261286e565b9050602081019050919050565b82818337600083830152505050565b6000612add612ad884612a8a565b612a6f565b905082815260208101848484011115612af957612af8612a0a565b5b612b04848285612abb565b509392505050565b600082601f830112612b2157612b20612a05565b5b8135612b31848260208601612aca565b91505092915050565b600060208284031215612b5057612b4f612763565b5b600082013567ffffffffffffffff811115612b6e57612b6d612768565b5b612b7a84828501612b0c565b91505092915050565b612b8c816128da565b82525050565b6000602082019050612ba76000830184612b83565b92915050565b600080600060608486031215612bc657612bc5612763565b5b6000612bd4868287016129b0565b9350506020612be5868287016129b0565b9250506040612bf6868287016128fb565b9150509250925092565b6000819050919050565b6000612c25612c20612c1b8461293d565b612c00565b61293d565b9050919050565b6000612c3782612c0a565b9050919050565b6000612c4982612c2c565b9050919050565b612c5981612c3e565b82525050565b6000602082019050612c746000830184612c50565b92915050565b600060208284031215612c9057612c8f612763565b5b6000612c9e848285016129b0565b91505092915050565b612cb0816127f2565b8114612cbb57600080fd5b50565b600081359050612ccd81612ca7565b92915050565b60008060408385031215612cea57612ce9612763565b5b6000612cf8858286016129b0565b9250506020612d0985828601612cbe565b9150509250929050565b600067ffffffffffffffff821115612d2e57612d2d612a0f565b5b612d378261286e565b9050602081019050919050565b6000612d57612d5284612d13565b612a6f565b905082815260208101848484011115612d7357612d72612a0a565b5b612d7e848285612abb565b509392505050565b600082601f830112612d9b57612d9a612a05565b5b8135612dab848260208601612d44565b91505092915050565b60008060008060808587031215612dce57612dcd612763565b5b6000612ddc878288016129b0565b9450506020612ded878288016129b0565b9350506040612dfe878288016128fb565b925050606085013567ffffffffffffffff811115612e1f57612e1e612768565b5b612e2b87828801612d86565b91505092959194509250565b60008060408385031215612e4e57612e4d612763565b5b6000612e5c858286016128fb565b9250506020612e6d858286016129b0565b9150509250929050565b60008060408385031215612e8e57612e8d612763565b5b6000612e9c858286016129b0565b9250506020612ead858286016129b0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612efe57607f821691505b602082108103612f1157612f10612eb7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612f797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f3c565b612f838683612f3c565b95508019841693508086168417925050509392505050565b6000612fb6612fb1612fac846128da565b612c00565b6128da565b9050919050565b6000819050919050565b612fd083612f9b565b612fe4612fdc82612fbd565b848454612f49565b825550505050565b600090565b612ff9612fec565b613004818484612fc7565b505050565b5b818110156130285761301d600082612ff1565b60018101905061300a565b5050565b601f82111561306d5761303e81612f17565b61304784612f2c565b81016020851015613056578190505b61306a61306285612f2c565b830182613009565b50505b505050565b600082821c905092915050565b600061309060001984600802613072565b1980831691505092915050565b60006130a9838361307f565b9150826002028217905092915050565b6130c282612828565b67ffffffffffffffff8111156130db576130da612a0f565b5b6130e58254612ee6565b6130f082828561302c565b600060209050601f8311600181146131235760008415613111578287015190505b61311b858261309d565b865550613183565b601f19841661313186612f17565b60005b8281101561315957848901518255600182019150602085019450602081019050613134565b868310156131765784890151613172601f89168261307f565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b60006131a660008361318b565b91506131b182613196565b600082019050919050565b60006131c782613199565b9150819050919050565b7f4372616674696e67206f662053696c766572204b657973206973206e6f74206360008201527f757272656e746c7920656e61626c656400000000000000000000000000000000602082015250565b600061322d603083612833565b9150613238826131d1565b604082019050919050565b6000602082019050818103600083015261325c81613220565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061329d826128da565b91506132a8836128da565b92508282019050808211156132c0576132bf613263565b5b92915050565b7f4d6178696d756d204e465420737570706c792065786365656465640000000000600082015250565b60006132fc601b83612833565b9150613307826132c6565b602082019050919050565b6000602082019050818103600083015261332b816132ef565b9050919050565b600061333d826128da565b9150613348836128da565b9250828202613356816128da565b9150828204841483151761336d5761336c613263565b5b5092915050565b6000819050919050565b600061339961339461338f84613374565b612c00565b6128da565b9050919050565b6133a98161337e565b82525050565b60006040820190506133c4600083018561296f565b6133d160208301846133a0565b9392505050565b6000815190506133e7816128e4565b92915050565b60006020828403121561340357613402612763565b5b6000613411848285016133d8565b91505092915050565b7f596f75206d757374206f776e206174206c65617374203220576869746520447560008201527f7374207065722053696c766572206b657920796f75206172652063726166746960208201527f6e67000000000000000000000000000000000000000000000000000000000000604082015250565b600061349c604283612833565b91506134a78261341a565b606082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b6000819050919050565b60006134f76134f26134ed846134d2565b612c00565b6128da565b9050919050565b613507816134dc565b82525050565b6000604082019050613522600083018561296f565b61352f60208301846134fe565b9392505050565b7f596f75206d757374206f776e206174206c65617374203120526564204475737460008201527f207065722053696c766572206b657920796f7520617265206372616674696e67602082015250565b6000613592604083612833565b915061359d82613536565b604082019050919050565b600060208201905081810360008301526135c181613585565b9050919050565b6000819050919050565b60006135ed6135e86135e3846135c8565b612c00565b6128da565b9050919050565b6135fd816135d2565b82525050565b6000604082019050613618600083018561296f565b61362560208301846135f4565b9392505050565b7f596f75206d757374206f776e206174206c65617374203120477265656e20447560008201527f7374207065722053696c766572206b657920796f75206172652063726166746960208201527f6e67000000000000000000000000000000000000000000000000000000000000604082015250565b60006136ae604283612833565b91506136b98261362c565b606082019050919050565b600060208201905081810360008301526136dd816136a1565b9050919050565b6000819050919050565b60006137096137046136ff846136e4565b612c00565b6128da565b9050919050565b613719816136ee565b82525050565b6000604082019050613734600083018561296f565b6137416020830184613710565b9392505050565b7f596f75206d757374206f776e206174206c65617374203120426c75652044757360008201527f74207065722053696c766572206b657920796f7520617265206372616674696e60208201527f6700000000000000000000000000000000000000000000000000000000000000604082015250565b60006137ca604183612833565b91506137d582613748565b606082019050919050565b600060208201905081810360008301526137f9816137bd565b9050919050565b6000819050919050565b600061382561382061381b84613800565b612c00565b6128da565b9050919050565b6138358161380a565b82525050565b6000604082019050613850600083018561296f565b61385d602083018461382c565b9392505050565b7f596f75206d757374206f776e206174206c65617374203120507572706c65204460008201527f757374207065722053696c766572206b657920796f752061726520637261667460208201527f696e670000000000000000000000000000000000000000000000000000000000604082015250565b60006138e6604383612833565b91506138f182613864565b606082019050919050565b60006020820190508181036000830152613915816138d9565b9050919050565b600060608201905061393160008301866133a0565b61393e6020830185612b83565b61394b604083018461296f565b949350505050565b600060608201905061396860008301866134fe565b6139756020830185612b83565b613982604083018461296f565b949350505050565b600060608201905061399f60008301866135f4565b6139ac6020830185612b83565b6139b9604083018461296f565b949350505050565b60006060820190506139d66000830186613710565b6139e36020830185612b83565b6139f0604083018461296f565b949350505050565b6000606082019050613a0d600083018661382c565b613a1a6020830185612b83565b613a27604083018461296f565b949350505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a8b602f83612833565b9150613a9682613a2f565b604082019050919050565b60006020820190508181036000830152613aba81613a7e565b9050919050565b600081905092915050565b6000613ad782612828565b613ae18185613ac1565b9350613af1818560208601612844565b80840191505092915050565b60008154613b0a81612ee6565b613b148186613ac1565b94506001821660008114613b2f5760018114613b4457613b77565b60ff1983168652811515820286019350613b77565b613b4d85612f17565b60005b83811015613b6f57815481890152600182019150602081019050613b50565b838801955050505b50505092915050565b6000613b8c8286613acc565b9150613b988285613acc565b9150613ba48284613afd565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c0d602683612833565b9150613c1882613bb1565b604082019050919050565b60006020820190508181036000830152613c3c81613c00565b9050919050565b6000604082019050613c58600083018561296f565b613c65602083018461296f565b9392505050565b600081519050613c7b81612ca7565b92915050565b600060208284031215613c9757613c96612763565b5b6000613ca584828501613c6c565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ce4602083612833565b9150613cef82613cae565b602082019050919050565b60006020820190508181036000830152613d1381613cd7565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d50601f83612833565b9150613d5b82613d1a565b602082019050919050565b60006020820190508181036000830152613d7f81613d43565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dad82613d86565b613db78185613d91565b9350613dc7818560208601612844565b613dd08161286e565b840191505092915050565b6000608082019050613df0600083018761296f565b613dfd602083018661296f565b613e0a6040830185612b83565b8181036060830152613e1c8184613da2565b905095945050505050565b600081519050613e3681612799565b92915050565b600060208284031215613e5257613e51612763565b5b6000613e6084828501613e27565b9150509291505056fea2646970667358221220fd644d0a759ad6dadee7dfd4dcd73381ca2ccbe8cd31891d8f9b39cc055001f764736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000005602086c851d1fc6f16250fa1b3b495d9f38594e000000000000000000000000000000000000000000000000000000000000000d4e46545253696c7665724b657900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4e46545253696c7665724b657900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6170692e6e6674657272617269756d2e78797a2f6b6579732f73696c76657200000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): NFTRSilverKey
Arg [1] : _tokenSymbol (string): NFTRSilverKey
Arg [2] : _initBaseURI (string): https://api.nfterrarium.xyz/keys/silver
Arg [3] : dustAddress (address): 0x5602086c851D1fC6F16250fA1b3B495d9F38594E

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000005602086c851d1fc6f16250fa1b3b495d9f38594e
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 4e46545253696c7665724b657900000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [7] : 4e46545253696c7665724b657900000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [9] : 68747470733a2f2f6170692e6e6674657272617269756d2e78797a2f6b657973
Arg [10] : 2f73696c76657200000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

64942:4814:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30381:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31283:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37683:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69010:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68352:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27034:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69183:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68568:173;;;;;;;;;;;;;:::i;:::-;;3246:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69362:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65122:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68248:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32676:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65089:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28218:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11308:103;;;;;;;;;;;;;:::i;:::-;;10660:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31459:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65799:1390;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68826:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69549:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67197:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67495:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65221:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65364:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38632:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68466:94;;;;;;;;;;;;;:::i;:::-;;11566:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30381:639;30466:4;30805:10;30790:25;;:11;:25;;;;:102;;;;30882:10;30867:25;;:11;:25;;;;30790:102;:179;;;;30959:10;30944:25;;:11;:25;;;;30790:179;30770:199;;30381:639;;;:::o;31283:100::-;31337:13;31370:5;31363:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31283:100;:::o;37683:218::-;37759:7;37784:16;37792:7;37784;:16::i;:::-;37779:64;;37809:34;;;;;;;;;;;;;;37779:64;37863:15;:24;37879:7;37863:24;;;;;;;;;;;:30;;;;;;;;;;;;37856:37;;37683:218;;;:::o;69010:165::-;69114:8;4767:30;4788:8;4767:20;:30::i;:::-;69135:32:::1;69149:8;69159:7;69135:13;:32::i;:::-;69010:165:::0;;;:::o;68352:106::-;10546:13;:11;:13::i;:::-;68440:10:::1;68428:9;:22;;;;;;:::i;:::-;;68352:106:::0;:::o;27034:323::-;27095:7;27323:15;:13;:15::i;:::-;27308:12;;27292:13;;:28;:46;27285:53;;27034:323;:::o;69183:171::-;69292:4;4595:10;4587:18;;:4;:18;;;4583:83;;4622:32;4643:10;4622:20;:32::i;:::-;4583:83;69309:37:::1;69328:4;69334:2;69338:7;69309:18;:37::i;:::-;69183:171:::0;;;;:::o;68568:173::-;10546:13;:11;:13::i;:::-;7999:21:::1;:19;:21::i;:::-;68630:12:::2;68656:10;68648:24;;68680:21;68648:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68629:77;;;68725:7;68717:16;;;::::0;::::2;;68618:123;8043:20:::1;:18;:20::i;:::-;68568:173::o:0;3246:143::-;3346:42;3246:143;:::o;69362:179::-;69475:4;4595:10;4587:18;;:4;:18;;;4583:83;;4622:32;4643:10;4622:20;:32::i;:::-;4583:83;69492:41:::1;69515:4;69521:2;69525:7;69492:22;:41::i;:::-;69362:179:::0;;;;:::o;65122:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68248:96::-;10546:13;:11;:13::i;:::-;68329:7:::1;68319;:17;;;;;;:::i;:::-;;68248:96:::0;:::o;32676:152::-;32748:7;32791:27;32810:7;32791:18;:27::i;:::-;32768:52;;32676:152;;;:::o;65089:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28218:233::-;28290:7;28331:1;28314:19;;:5;:19;;;28310:60;;28342:28;;;;;;;;;;;;;;28310:60;22377:13;28388:18;:25;28407:5;28388:25;;;;;;;;;;;;;;;;:55;28381:62;;28218:233;;;:::o;11308:103::-;10546:13;:11;:13::i;:::-;11373:30:::1;11400:1;11373:18;:30::i;:::-;11308:103::o:0;10660:87::-;10706:7;10733:6;;;;;;;;;;;10726:13;;10660:87;:::o;31459:104::-;31515:13;31548:7;31541:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31459:104;:::o;65799:1390::-;7999:21;:19;:21::i;:::-;65884:15:::1;;;;;;;;;;;65876:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;66002:9;;65987:11;65971:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;65963:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;66161:11;66157:1;:15;;;;:::i;:::-;66124:4;:14;;;66139:10;66151:1;66124:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;66115:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;66300:11;66296:1;:15;;;;:::i;:::-;66263:4;:14;;;66278:10;66290:1;66263:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;66254:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;66437:11;66433:1;:15;;;;:::i;:::-;66400:4;:14;;;66415:10;66427:1;66400:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;66391:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;66576:11;66572:1;:15;;;;:::i;:::-;66539:4;:14;;;66554:10;66566:1;66539:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;66530:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;66714:11;66710:1;:15;;;;:::i;:::-;66677:4;:14;;;66692:10;66704:1;66677:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;66668:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;66840:4;:13;;;66854:1;66861:11;66857:1;:15;;;;:::i;:::-;66874:10;66840:45;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;66896:4;:13;;;66910:1;66917:11;66913:1;:15;;;;:::i;:::-;66930:10;66896:45;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;66952:4;:13;;;66966:1;66973:11;66969:1;:15;;;;:::i;:::-;66986:10;66952:45;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67008:4;:13;;;67022:1;67029:11;67025:1;:15;;;;:::i;:::-;67042:10;67008:45;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67064:4;:13;;;67078:1;67085:11;67081:1;:15;;;;:::i;:::-;67098:10;67064:45;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67143:36;67153:12;:10;:12::i;:::-;67167:11;67143:9;:36::i;:::-;8043:20:::0;:18;:20::i;:::-;65799:1390;:::o;68826:176::-;68930:8;4767:30;4788:8;4767:20;:30::i;:::-;68951:43:::1;68975:8;68985;68951:23;:43::i;:::-;68826:176:::0;;;:::o;69549:204::-;69681:4;4595:10;4587:18;;:4;:18;;;4583:83;;4622:32;4643:10;4622:20;:32::i;:::-;4583:83;69698:47:::1;69721:4;69727:2;69731:7;69740:4;69698:22;:47::i;:::-;69549:204:::0;;;;;:::o;67197:230::-;10546:13;:11;:13::i;:::-;7999:21:::1;:19;:21::i;:::-;67334:9:::2;;67319:11;67303:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;67295:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;67386:33;67396:9;67407:11;67386:9;:33::i;:::-;8043:20:::1;:18;:20::i;:::-;67197:230:::0;;:::o;67495:395::-;67569:13;67603:17;67611:8;67603:7;:17::i;:::-;67595:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;67685:28;67716:10;:8;:10::i;:::-;67685:41;;67775:1;67750:14;67744:28;:32;:138;;;;;;;;;;;;;;;;;67816:14;67832:19;67842:8;67832:9;:19::i;:::-;67853:9;67799:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67744:138;67737:145;;;67495:395;;;:::o;65221:30::-;;;;:::o;65364:35::-;;;;;;;;;;;;;:::o;38632:164::-;38729:4;38753:18;:25;38772:5;38753:25;;;;;;;;;;;;;;;:35;38779:8;38753:35;;;;;;;;;;;;;;;;;;;;;;;;;38746:42;;38632:164;;;;:::o;68466:94::-;10546:13;:11;:13::i;:::-;68537:15:::1;;;;;;;;;;;68536:16;68518:15;;:34;;;;;;;;;;;;;;;;;;68466:94::o:0;11566:201::-;10546:13;:11;:13::i;:::-;11675:1:::1;11655:22;;:8;:22;;::::0;11647:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11731:28;11750:8;11731:18;:28::i;:::-;11566:201:::0;:::o;39054:282::-;39119:4;39175:7;39156:15;:13;:15::i;:::-;:26;;:66;;;;;39209:13;;39199:7;:23;39156:66;:153;;;;;39308:1;23153:8;39260:17;:26;39278:7;39260:26;;;;;;;;;;;;:44;:49;39156:153;39136:173;;39054:282;;;:::o;4825:419::-;5064:1;3346:42;5016:45;;;:49;5012:225;;;3346:42;5087;;;5138:4;5145:8;5087:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5082:144;;5201:8;5182:28;;;;;;;;;;;:::i;:::-;;;;;;;;5082:144;5012:225;4825:419;:::o;37400:124::-;37489:27;37498:2;37502:7;37511:4;37489:8;:27::i;:::-;37400:124;;:::o;10825:132::-;10900:12;:10;:12::i;:::-;10889:23;;:7;:5;:7::i;:::-;:23;;;10881:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10825:132::o;67960:101::-;68025:7;68052:1;68045:8;;67960:101;:::o;41322:2825::-;41464:27;41494;41513:7;41494:18;:27::i;:::-;41464:57;;41579:4;41538:45;;41554:19;41538:45;;;41534:86;;41592:28;;;;;;;;;;;;;;41534:86;41634:27;41663:23;41690:35;41717:7;41690:26;:35::i;:::-;41633:92;;;;41825:68;41850:15;41867:4;41873:19;:17;:19::i;:::-;41825:24;:68::i;:::-;41820:180;;41913:43;41930:4;41936:19;:17;:19::i;:::-;41913:16;:43::i;:::-;41908:92;;41965:35;;;;;;;;;;;;;;41908:92;41820:180;42031:1;42017:16;;:2;:16;;;42013:52;;42042:23;;;;;;;;;;;;;;42013:52;42078:43;42100:4;42106:2;42110:7;42119:1;42078:21;:43::i;:::-;42214:15;42211:160;;;42354:1;42333:19;42326:30;42211:160;42751:18;:24;42770:4;42751:24;;;;;;;;;;;;;;;;42749:26;;;;;;;;;;;;42820:18;:22;42839:2;42820:22;;;;;;;;;;;;;;;;42818:24;;;;;;;;;;;43142:146;43179:2;43228:45;43243:4;43249:2;43253:19;43228:14;:45::i;:::-;23433:8;43200:73;43142:18;:146::i;:::-;43113:17;:26;43131:7;43113:26;;;;;;;;;;;:175;;;;43459:1;23433:8;43408:19;:47;:52;43404:627;;43481:19;43513:1;43503:7;:11;43481:33;;43670:1;43636:17;:30;43654:11;43636:30;;;;;;;;;;;;:35;43632:384;;43774:13;;43759:11;:28;43755:242;;43954:19;43921:17;:30;43939:11;43921:30;;;;;;;;;;;:52;;;;43755:242;43632:384;43462:569;43404:627;44078:7;44074:2;44059:27;;44068:4;44059:27;;;;;;;;;;;;44097:42;44118:4;44124:2;44128:7;44137:1;44097:20;:42::i;:::-;41453:2694;;;41322:2825;;;:::o;8079:293::-;7481:1;8213:7;;:19;8205:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7481:1;8346:7;:18;;;;8079:293::o;8380:213::-;7437:1;8563:7;:22;;;;8380:213::o;44243:193::-;44389:39;44406:4;44412:2;44416:7;44389:39;;;;;;;;;;;;:16;:39::i;:::-;44243:193;;;:::o;33831:1712::-;33898:14;33948:7;33929:15;:13;:15::i;:::-;:26;33925:1562;;33981:17;:26;33999:7;33981:26;;;;;;;;;;;;33972:35;;34085:1;23153:8;34057:6;:24;:29;34053:1423;;34206:1;34196:6;:11;34192:981;;34247:13;;34236:7;:24;34232:68;;34269:31;;;;;;;;;;;;;;34232:68;34897:257;34983:17;:28;35001:9;;;;;;;34983:28;;;;;;;;;;;;34974:37;;35079:1;35069:6;:11;35117:13;35065:25;34897:257;;34192:981;35447:13;;34053:1423;33925:1562;35504:31;;;;;;;;;;;;;;33831:1712;;;;:::o;11927:191::-;12001:16;12020:6;;;;;;;;;;;12001:25;;12046:8;12037:6;;:17;;;;;;;;;;;;;;;;;;12101:8;12070:40;;12091:8;12070:40;;;;;;;;;;;;11990:128;11927:191;:::o;9219:98::-;9272:7;9299:10;9292:17;;9219:98;:::o;55194:112::-;55271:27;55281:2;55285:8;55271:27;;;;;;;;;;;;:9;:27::i;:::-;55194:112;;:::o;38241:234::-;38388:8;38336:18;:39;38355:19;:17;:19::i;:::-;38336:39;;;;;;;;;;;;;;;:49;38376:8;38336:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;38448:8;38412:55;;38427:19;:17;:19::i;:::-;38412:55;;;38458:8;38412:55;;;;;;:::i;:::-;;;;;;;;38241:234;;:::o;45034:407::-;45209:31;45222:4;45228:2;45232:7;45209:12;:31::i;:::-;45273:1;45255:2;:14;;;:19;45251:183;;45294:56;45325:4;45331:2;45335:7;45344:5;45294:30;:56::i;:::-;45289:145;;45378:40;;;;;;;;;;;;;;45289:145;45251:183;45034:407;;;;:::o;68069:108::-;68129:13;68162:7;68155:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68069:108;:::o;62867:1745::-;62932:17;63366:4;63359;63353:11;63349:22;63458:1;63452:4;63445:15;63533:4;63530:1;63526:12;63519:19;;63615:1;63610:3;63603:14;63719:3;63958:5;63940:428;63966:1;63940:428;;;64006:1;64001:3;63997:11;63990:18;;64177:2;64171:4;64167:13;64163:2;64159:22;64154:3;64146:36;64271:2;64265:4;64261:13;64253:21;;64338:4;63940:428;64328:25;63940:428;63944:21;64407:3;64402;64398:13;64522:4;64517:3;64513:14;64506:21;;64587:6;64582:3;64575:19;62971:1634;;;62867:1745;;;:::o;56112:492::-;56241:13;56257:16;56265:7;56257;:16::i;:::-;56241:32;;56290:13;56286:219;;;56345:5;56322:28;;:19;:17;:19::i;:::-;:28;;;56318:187;;56374:44;56391:5;56398:19;:17;:19::i;:::-;56374:16;:44::i;:::-;56369:136;;56450:35;;;;;;;;;;;;;;56369:136;56318:187;56286:219;56550:2;56517:15;:24;56533:7;56517:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;56588:7;56584:2;56568:28;;56577:5;56568:28;;;;;;;;;;;;56230:374;56112:492;;;:::o;40217:485::-;40319:27;40348:23;40389:38;40430:15;:24;40446:7;40430:24;;;;;;;;;;;40389:65;;40607:18;40584:41;;40664:19;40658:26;40639:45;;40569:126;40217:485;;;:::o;62660:105::-;62720:7;62747:10;62740:17;;62660:105;:::o;39445:659::-;39594:11;39759:16;39752:5;39748:28;39739:37;;39919:16;39908:9;39904:32;39891:45;;40069:15;40058:9;40055:30;40047:5;40036:9;40033:20;40030:56;40020:66;;39445:659;;;;;:::o;46103:159::-;;;;;:::o;61969:311::-;62104:7;62124:16;23557:3;62150:19;:41;;62124:68;;23557:3;62218:31;62229:4;62235:2;62239:9;62218:10;:31::i;:::-;62210:40;;:62;;62203:69;;;61969:311;;;;;:::o;36091:450::-;36171:14;36339:16;36332:5;36328:28;36319:37;;36516:5;36502:11;36477:23;36473:41;36470:52;36463:5;36460:63;36450:73;;36091:450;;;;:::o;46927:158::-;;;;;:::o;54421:689::-;54552:19;54558:2;54562:8;54552:5;:19::i;:::-;54631:1;54613:2;:14;;;:19;54609:483;;54653:11;54667:13;;54653:27;;54699:13;54721:8;54715:3;:14;54699:30;;54748:233;54779:62;54818:1;54822:2;54826:7;;;;;;54835:5;54779:30;:62::i;:::-;54774:167;;54877:40;;;;;;;;;;;;;;54774:167;54976:3;54968:5;:11;54748:233;;55063:3;55046:13;;:20;55042:34;;55068:8;;;55042:34;54634:458;;54609:483;54421:689;;;:::o;47525:716::-;47688:4;47734:2;47709:45;;;47755:19;:17;:19::i;:::-;47776:4;47782:7;47791:5;47709:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47705:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48009:1;47992:6;:13;:18;47988:235;;48038:40;;;;;;;;;;;;;;47988:235;48181:6;48175:13;48166:6;48162:2;48158:15;48151:38;47705:529;47878:54;;;47868:64;;;:6;:64;;;;47861:71;;;47525:716;;;;;;:::o;61670:147::-;61807:6;61670:147;;;;;:::o;48703:2966::-;48776:20;48799:13;;48776:36;;48839:1;48827:8;:13;48823:44;;48849:18;;;;;;;;;;;;;;48823:44;48880:61;48910:1;48914:2;48918:12;48932:8;48880:21;:61::i;:::-;49424:1;22515:2;49394:1;:26;;49393:32;49381:8;:45;49355:18;:22;49374:2;49355:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;49703:139;49740:2;49794:33;49817:1;49821:2;49825:1;49794:14;:33::i;:::-;49761:30;49782:8;49761:20;:30::i;:::-;:66;49703:18;:139::i;:::-;49669:17;:31;49687:12;49669:31;;;;;;;;;;;:173;;;;49859:16;49890:11;49919:8;49904:12;:23;49890:37;;50440:16;50436:2;50432:25;50420:37;;50812:12;50772:8;50731:1;50669:25;50610:1;50549;50522:335;51183:1;51169:12;51165:20;51123:346;51224:3;51215:7;51212:16;51123:346;;51442:7;51432:8;51429:1;51402:25;51399:1;51396;51391:59;51277:1;51268:7;51264:15;51253:26;;51123:346;;;51127:77;51514:1;51502:8;:13;51498:45;;51524:19;;;;;;;;;;;;;;51498:45;51576:3;51560:13;:19;;;;49129:2462;;51601:60;51630:1;51634:2;51638:12;51652:8;51601:20;:60::i;:::-;48765:2904;48703:2966;;:::o;36643:324::-;36713:14;36946:1;36936:8;36933:15;36907:24;36903:46;36893:56;;36643: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:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:180;5184:77;5181:1;5174:88;5281:4;5278:1;5271:15;5305:4;5302:1;5295:15;5322:281;5405:27;5427:4;5405:27;:::i;:::-;5397:6;5393:40;5535:6;5523:10;5520:22;5499:18;5487:10;5484:34;5481:62;5478:88;;;5546:18;;:::i;:::-;5478:88;5586:10;5582:2;5575:22;5365:238;5322:281;;:::o;5609:129::-;5643:6;5670:20;;:::i;:::-;5660:30;;5699:33;5727:4;5719:6;5699:33;:::i;:::-;5609:129;;;:::o;5744:308::-;5806:4;5896:18;5888:6;5885:30;5882:56;;;5918:18;;:::i;:::-;5882:56;5956:29;5978:6;5956:29;:::i;:::-;5948:37;;6040:4;6034;6030:15;6022:23;;5744:308;;;:::o;6058:146::-;6155:6;6150:3;6145;6132:30;6196:1;6187:6;6182:3;6178:16;6171:27;6058:146;;;:::o;6210:425::-;6288:5;6313:66;6329:49;6371:6;6329:49;:::i;:::-;6313:66;:::i;:::-;6304:75;;6402:6;6395:5;6388:21;6440:4;6433:5;6429:16;6478:3;6469:6;6464:3;6460:16;6457:25;6454:112;;;6485:79;;:::i;:::-;6454:112;6575:54;6622:6;6617:3;6612;6575:54;:::i;:::-;6294:341;6210:425;;;;;:::o;6655:340::-;6711:5;6760:3;6753:4;6745:6;6741:17;6737:27;6727:122;;6768:79;;:::i;:::-;6727:122;6885:6;6872:20;6910:79;6985:3;6977:6;6970:4;6962:6;6958:17;6910:79;:::i;:::-;6901:88;;6717:278;6655:340;;;;:::o;7001:509::-;7070:6;7119:2;7107:9;7098:7;7094:23;7090:32;7087:119;;;7125:79;;:::i;:::-;7087:119;7273:1;7262:9;7258:17;7245:31;7303:18;7295:6;7292:30;7289:117;;;7325:79;;:::i;:::-;7289:117;7430:63;7485:7;7476:6;7465:9;7461:22;7430:63;:::i;:::-;7420:73;;7216:287;7001:509;;;;:::o;7516:118::-;7603:24;7621:5;7603:24;:::i;:::-;7598:3;7591:37;7516:118;;:::o;7640:222::-;7733:4;7771:2;7760:9;7756:18;7748:26;;7784:71;7852:1;7841:9;7837:17;7828:6;7784:71;:::i;:::-;7640:222;;;;:::o;7868:619::-;7945:6;7953;7961;8010:2;7998:9;7989:7;7985:23;7981:32;7978:119;;;8016:79;;:::i;:::-;7978:119;8136:1;8161:53;8206:7;8197:6;8186:9;8182:22;8161:53;:::i;:::-;8151:63;;8107:117;8263:2;8289:53;8334:7;8325:6;8314:9;8310:22;8289:53;:::i;:::-;8279:63;;8234:118;8391:2;8417:53;8462:7;8453:6;8442:9;8438:22;8417:53;:::i;:::-;8407:63;;8362:118;7868:619;;;;;:::o;8493:60::-;8521:3;8542:5;8535:12;;8493:60;;;:::o;8559:142::-;8609:9;8642:53;8660:34;8669:24;8687:5;8669:24;:::i;:::-;8660:34;:::i;:::-;8642:53;:::i;:::-;8629:66;;8559:142;;;:::o;8707:126::-;8757:9;8790:37;8821:5;8790:37;:::i;:::-;8777:50;;8707:126;;;:::o;8839:157::-;8920:9;8953:37;8984:5;8953:37;:::i;:::-;8940:50;;8839:157;;;:::o;9002:193::-;9120:68;9182:5;9120:68;:::i;:::-;9115:3;9108:81;9002:193;;:::o;9201:284::-;9325:4;9363:2;9352:9;9348:18;9340:26;;9376:102;9475:1;9464:9;9460:17;9451:6;9376:102;:::i;:::-;9201:284;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:::-;13157:6;13165;13214:2;13202:9;13193:7;13189:23;13185:32;13182:119;;;13220:79;;:::i;:::-;13182:119;13340:1;13365:53;13410:7;13401:6;13390:9;13386:22;13365:53;:::i;:::-;13355:63;;13311:117;13467:2;13493:53;13538:7;13529:6;13518:9;13514:22;13493:53;:::i;:::-;13483:63;;13438:118;13089:474;;;;;:::o;13569:180::-;13617:77;13614:1;13607:88;13714:4;13711:1;13704:15;13738:4;13735:1;13728:15;13755:320;13799:6;13836:1;13830:4;13826:12;13816:22;;13883:1;13877:4;13873:12;13904:18;13894:81;;13960:4;13952:6;13948:17;13938:27;;13894:81;14022:2;14014:6;14011:14;13991:18;13988:38;13985:84;;14041:18;;:::i;:::-;13985:84;13806:269;13755:320;;;:::o;14081:141::-;14130:4;14153:3;14145:11;;14176:3;14173:1;14166:14;14210:4;14207:1;14197:18;14189:26;;14081:141;;;:::o;14228:93::-;14265:6;14312:2;14307;14300:5;14296:14;14292:23;14282:33;;14228:93;;;:::o;14327:107::-;14371:8;14421:5;14415:4;14411:16;14390:37;;14327:107;;;;:::o;14440:393::-;14509:6;14559:1;14547:10;14543:18;14582:97;14612:66;14601:9;14582:97;:::i;:::-;14700:39;14730:8;14719:9;14700:39;:::i;:::-;14688:51;;14772:4;14768:9;14761:5;14757:21;14748:30;;14821:4;14811:8;14807:19;14800:5;14797:30;14787:40;;14516:317;;14440:393;;;;;:::o;14839:142::-;14889:9;14922:53;14940:34;14949:24;14967:5;14949:24;:::i;:::-;14940:34;:::i;:::-;14922:53;:::i;:::-;14909:66;;14839:142;;;:::o;14987:75::-;15030:3;15051:5;15044:12;;14987:75;;;:::o;15068:269::-;15178:39;15209:7;15178:39;:::i;:::-;15239:91;15288:41;15312:16;15288:41;:::i;:::-;15280:6;15273:4;15267:11;15239:91;:::i;:::-;15233:4;15226:105;15144:193;15068:269;;;:::o;15343:73::-;15388:3;15343:73;:::o;15422:189::-;15499:32;;:::i;:::-;15540:65;15598:6;15590;15584:4;15540:65;:::i;:::-;15475:136;15422:189;;:::o;15617:186::-;15677:120;15694:3;15687:5;15684:14;15677:120;;;15748:39;15785:1;15778:5;15748:39;:::i;:::-;15721:1;15714:5;15710:13;15701:22;;15677:120;;;15617:186;;:::o;15809:543::-;15910:2;15905:3;15902:11;15899:446;;;15944:38;15976:5;15944:38;:::i;:::-;16028:29;16046:10;16028:29;:::i;:::-;16018:8;16014:44;16211:2;16199:10;16196:18;16193:49;;;16232:8;16217:23;;16193:49;16255:80;16311:22;16329:3;16311:22;:::i;:::-;16301:8;16297:37;16284:11;16255:80;:::i;:::-;15914:431;;15899:446;15809:543;;;:::o;16358:117::-;16412:8;16462:5;16456:4;16452:16;16431:37;;16358:117;;;;:::o;16481:169::-;16525:6;16558:51;16606:1;16602:6;16594:5;16591:1;16587:13;16558:51;:::i;:::-;16554:56;16639:4;16633;16629:15;16619:25;;16532:118;16481:169;;;;:::o;16655:295::-;16731:4;16877:29;16902:3;16896:4;16877:29;:::i;:::-;16869:37;;16939:3;16936:1;16932:11;16926:4;16923:21;16915:29;;16655:295;;;;:::o;16955:1395::-;17072:37;17105:3;17072:37;:::i;:::-;17174:18;17166:6;17163:30;17160:56;;;17196:18;;:::i;:::-;17160:56;17240:38;17272:4;17266:11;17240:38;:::i;:::-;17325:67;17385:6;17377;17371:4;17325:67;:::i;:::-;17419:1;17443:4;17430:17;;17475:2;17467:6;17464:14;17492:1;17487:618;;;;18149:1;18166:6;18163:77;;;18215:9;18210:3;18206:19;18200:26;18191:35;;18163:77;18266:67;18326:6;18319:5;18266:67;:::i;:::-;18260:4;18253:81;18122:222;17457:887;;17487:618;17539:4;17535:9;17527:6;17523:22;17573:37;17605:4;17573:37;:::i;:::-;17632:1;17646:208;17660:7;17657:1;17654:14;17646:208;;;17739:9;17734:3;17730:19;17724:26;17716:6;17709:42;17790:1;17782:6;17778:14;17768:24;;17837:2;17826:9;17822:18;17809:31;;17683:4;17680:1;17676:12;17671:17;;17646:208;;;17882:6;17873:7;17870:19;17867:179;;;17940:9;17935:3;17931:19;17925:26;17983:48;18025:4;18017:6;18013:17;18002:9;17983:48;:::i;:::-;17975:6;17968:64;17890:156;17867:179;18092:1;18088;18080:6;18076:14;18072:22;18066:4;18059:36;17494:611;;;17457:887;;17047:1303;;;16955:1395;;:::o;18356:147::-;18457:11;18494:3;18479:18;;18356:147;;;;:::o;18509:114::-;;:::o;18629:398::-;18788:3;18809:83;18890:1;18885:3;18809:83;:::i;:::-;18802:90;;18901:93;18990:3;18901:93;:::i;:::-;19019:1;19014:3;19010:11;19003:18;;18629:398;;;:::o;19033:379::-;19217:3;19239:147;19382:3;19239:147;:::i;:::-;19232:154;;19403:3;19396:10;;19033:379;;;:::o;19418:235::-;19558:34;19554:1;19546:6;19542:14;19535:58;19627:18;19622:2;19614:6;19610:15;19603:43;19418:235;:::o;19659:366::-;19801:3;19822:67;19886:2;19881:3;19822:67;:::i;:::-;19815:74;;19898:93;19987:3;19898:93;:::i;:::-;20016:2;20011:3;20007:12;20000:19;;19659:366;;;:::o;20031:419::-;20197:4;20235:2;20224:9;20220:18;20212:26;;20284:9;20278:4;20274:20;20270:1;20259:9;20255:17;20248:47;20312:131;20438:4;20312:131;:::i;:::-;20304:139;;20031:419;;;:::o;20456:180::-;20504:77;20501:1;20494:88;20601:4;20598:1;20591:15;20625:4;20622:1;20615:15;20642:191;20682:3;20701:20;20719:1;20701:20;:::i;:::-;20696:25;;20735:20;20753:1;20735:20;:::i;:::-;20730:25;;20778:1;20775;20771:9;20764:16;;20799:3;20796:1;20793:10;20790:36;;;20806:18;;:::i;:::-;20790:36;20642:191;;;;:::o;20839:177::-;20979:29;20975:1;20967:6;20963:14;20956:53;20839:177;:::o;21022:366::-;21164:3;21185:67;21249:2;21244:3;21185:67;:::i;:::-;21178:74;;21261:93;21350:3;21261:93;:::i;:::-;21379:2;21374:3;21370:12;21363:19;;21022:366;;;:::o;21394:419::-;21560:4;21598:2;21587:9;21583:18;21575:26;;21647:9;21641:4;21637:20;21633:1;21622:9;21618:17;21611:47;21675:131;21801:4;21675:131;:::i;:::-;21667:139;;21394:419;;;:::o;21819:410::-;21859:7;21882:20;21900:1;21882:20;:::i;:::-;21877:25;;21916:20;21934:1;21916:20;:::i;:::-;21911:25;;21971:1;21968;21964:9;21993:30;22011:11;21993:30;:::i;:::-;21982:41;;22172:1;22163:7;22159:15;22156:1;22153:22;22133:1;22126:9;22106:83;22083:139;;22202:18;;:::i;:::-;22083:139;21867:362;21819:410;;;;:::o;22235:85::-;22280:7;22309:5;22298:16;;22235:85;;;:::o;22326:158::-;22384:9;22417:61;22435:42;22444:32;22470:5;22444:32;:::i;:::-;22435:42;:::i;:::-;22417:61;:::i;:::-;22404:74;;22326:158;;;:::o;22490:147::-;22585:45;22624:5;22585:45;:::i;:::-;22580:3;22573:58;22490:147;;:::o;22643:348::-;22772:4;22810:2;22799:9;22795:18;22787:26;;22823:71;22891:1;22880:9;22876:17;22867:6;22823:71;:::i;:::-;22904:80;22980:2;22969:9;22965:18;22956:6;22904:80;:::i;:::-;22643:348;;;;;:::o;22997:143::-;23054:5;23085:6;23079:13;23070:22;;23101:33;23128:5;23101:33;:::i;:::-;22997:143;;;;:::o;23146:351::-;23216:6;23265:2;23253:9;23244:7;23240:23;23236:32;23233:119;;;23271:79;;:::i;:::-;23233:119;23391:1;23416:64;23472:7;23463:6;23452:9;23448:22;23416:64;:::i;:::-;23406:74;;23362:128;23146:351;;;;:::o;23503:290::-;23643:34;23639:1;23631:6;23627:14;23620:58;23712:34;23707:2;23699:6;23695:15;23688:59;23781:4;23776:2;23768:6;23764:15;23757:29;23503:290;:::o;23799:366::-;23941:3;23962:67;24026:2;24021:3;23962:67;:::i;:::-;23955:74;;24038:93;24127:3;24038:93;:::i;:::-;24156:2;24151:3;24147:12;24140:19;;23799:366;;;:::o;24171:419::-;24337:4;24375:2;24364:9;24360:18;24352:26;;24424:9;24418:4;24414:20;24410:1;24399:9;24395:17;24388:47;24452:131;24578:4;24452:131;:::i;:::-;24444:139;;24171:419;;;:::o;24596:85::-;24641:7;24670:5;24659:16;;24596:85;;;:::o;24687:158::-;24745:9;24778:61;24796:42;24805:32;24831:5;24805:32;:::i;:::-;24796:42;:::i;:::-;24778:61;:::i;:::-;24765:74;;24687:158;;;:::o;24851:147::-;24946:45;24985:5;24946:45;:::i;:::-;24941:3;24934:58;24851:147;;:::o;25004:348::-;25133:4;25171:2;25160:9;25156:18;25148:26;;25184:71;25252:1;25241:9;25237:17;25228:6;25184:71;:::i;:::-;25265:80;25341:2;25330:9;25326:18;25317:6;25265:80;:::i;:::-;25004:348;;;;;:::o;25358:251::-;25498:34;25494:1;25486:6;25482:14;25475:58;25567:34;25562:2;25554:6;25550:15;25543:59;25358:251;:::o;25615:366::-;25757:3;25778:67;25842:2;25837:3;25778:67;:::i;:::-;25771:74;;25854:93;25943:3;25854:93;:::i;:::-;25972:2;25967:3;25963:12;25956:19;;25615:366;;;:::o;25987:419::-;26153:4;26191:2;26180:9;26176:18;26168:26;;26240:9;26234:4;26230:20;26226:1;26215:9;26211:17;26204:47;26268:131;26394:4;26268:131;:::i;:::-;26260:139;;25987:419;;;:::o;26412:85::-;26457:7;26486:5;26475:16;;26412:85;;;:::o;26503:158::-;26561:9;26594:61;26612:42;26621:32;26647:5;26621:32;:::i;:::-;26612:42;:::i;:::-;26594:61;:::i;:::-;26581:74;;26503:158;;;:::o;26667:147::-;26762:45;26801:5;26762:45;:::i;:::-;26757:3;26750:58;26667:147;;:::o;26820:348::-;26949:4;26987:2;26976:9;26972:18;26964:26;;27000:71;27068:1;27057:9;27053:17;27044:6;27000:71;:::i;:::-;27081:80;27157:2;27146:9;27142:18;27133:6;27081:80;:::i;:::-;26820:348;;;;;:::o;27174:290::-;27314:34;27310:1;27302:6;27298:14;27291:58;27383:34;27378:2;27370:6;27366:15;27359:59;27452:4;27447:2;27439:6;27435:15;27428:29;27174:290;:::o;27470:366::-;27612:3;27633:67;27697:2;27692:3;27633:67;:::i;:::-;27626:74;;27709:93;27798:3;27709:93;:::i;:::-;27827:2;27822:3;27818:12;27811:19;;27470:366;;;:::o;27842:419::-;28008:4;28046:2;28035:9;28031:18;28023:26;;28095:9;28089:4;28085:20;28081:1;28070:9;28066:17;28059:47;28123:131;28249:4;28123:131;:::i;:::-;28115:139;;27842:419;;;:::o;28267:85::-;28312:7;28341:5;28330:16;;28267:85;;;:::o;28358:158::-;28416:9;28449:61;28467:42;28476:32;28502:5;28476:32;:::i;:::-;28467:42;:::i;:::-;28449:61;:::i;:::-;28436:74;;28358:158;;;:::o;28522:147::-;28617:45;28656:5;28617:45;:::i;:::-;28612:3;28605:58;28522:147;;:::o;28675:348::-;28804:4;28842:2;28831:9;28827:18;28819:26;;28855:71;28923:1;28912:9;28908:17;28899:6;28855:71;:::i;:::-;28936:80;29012:2;29001:9;28997:18;28988:6;28936:80;:::i;:::-;28675:348;;;;;:::o;29029:289::-;29169:34;29165:1;29157:6;29153:14;29146:58;29238:34;29233:2;29225:6;29221:15;29214:59;29307:3;29302:2;29294:6;29290:15;29283:28;29029:289;:::o;29324:366::-;29466:3;29487:67;29551:2;29546:3;29487:67;:::i;:::-;29480:74;;29563:93;29652:3;29563:93;:::i;:::-;29681:2;29676:3;29672:12;29665:19;;29324:366;;;:::o;29696:419::-;29862:4;29900:2;29889:9;29885:18;29877:26;;29949:9;29943:4;29939:20;29935:1;29924:9;29920:17;29913:47;29977:131;30103:4;29977:131;:::i;:::-;29969:139;;29696:419;;;:::o;30121:85::-;30166:7;30195:5;30184:16;;30121:85;;;:::o;30212:158::-;30270:9;30303:61;30321:42;30330:32;30356:5;30330:32;:::i;:::-;30321:42;:::i;:::-;30303:61;:::i;:::-;30290:74;;30212:158;;;:::o;30376:147::-;30471:45;30510:5;30471:45;:::i;:::-;30466:3;30459:58;30376:147;;:::o;30529:348::-;30658:4;30696:2;30685:9;30681:18;30673:26;;30709:71;30777:1;30766:9;30762:17;30753:6;30709:71;:::i;:::-;30790:80;30866:2;30855:9;30851:18;30842:6;30790:80;:::i;:::-;30529:348;;;;;:::o;30883:291::-;31023:34;31019:1;31011:6;31007:14;31000:58;31092:34;31087:2;31079:6;31075:15;31068:59;31161:5;31156:2;31148:6;31144:15;31137:30;30883:291;:::o;31180:366::-;31322:3;31343:67;31407:2;31402:3;31343:67;:::i;:::-;31336:74;;31419:93;31508:3;31419:93;:::i;:::-;31537:2;31532:3;31528:12;31521:19;;31180:366;;;:::o;31552:419::-;31718:4;31756:2;31745:9;31741:18;31733:26;;31805:9;31799:4;31795:20;31791:1;31780:9;31776:17;31769:47;31833:131;31959:4;31833:131;:::i;:::-;31825:139;;31552:419;;;:::o;31977:458::-;32134:4;32172:2;32161:9;32157:18;32149:26;;32185:79;32261:1;32250:9;32246:17;32237:6;32185:79;:::i;:::-;32274:72;32342:2;32331:9;32327:18;32318:6;32274:72;:::i;:::-;32356;32424:2;32413:9;32409:18;32400:6;32356:72;:::i;:::-;31977:458;;;;;;:::o;32441:::-;32598:4;32636:2;32625:9;32621:18;32613:26;;32649:79;32725:1;32714:9;32710:17;32701:6;32649:79;:::i;:::-;32738:72;32806:2;32795:9;32791:18;32782:6;32738:72;:::i;:::-;32820;32888:2;32877:9;32873:18;32864:6;32820:72;:::i;:::-;32441:458;;;;;;:::o;32905:::-;33062:4;33100:2;33089:9;33085:18;33077:26;;33113:79;33189:1;33178:9;33174:17;33165:6;33113:79;:::i;:::-;33202:72;33270:2;33259:9;33255:18;33246:6;33202:72;:::i;:::-;33284;33352:2;33341:9;33337:18;33328:6;33284:72;:::i;:::-;32905:458;;;;;;:::o;33369:::-;33526:4;33564:2;33553:9;33549:18;33541:26;;33577:79;33653:1;33642:9;33638:17;33629:6;33577:79;:::i;:::-;33666:72;33734:2;33723:9;33719:18;33710:6;33666:72;:::i;:::-;33748;33816:2;33805:9;33801:18;33792:6;33748:72;:::i;:::-;33369:458;;;;;;:::o;33833:::-;33990:4;34028:2;34017:9;34013:18;34005:26;;34041:79;34117:1;34106:9;34102:17;34093:6;34041:79;:::i;:::-;34130:72;34198:2;34187:9;34183:18;34174:6;34130:72;:::i;:::-;34212;34280:2;34269:9;34265:18;34256:6;34212:72;:::i;:::-;33833:458;;;;;;:::o;34297:234::-;34437:34;34433:1;34425:6;34421:14;34414:58;34506:17;34501:2;34493:6;34489:15;34482:42;34297:234;:::o;34537:366::-;34679:3;34700:67;34764:2;34759:3;34700:67;:::i;:::-;34693:74;;34776:93;34865:3;34776:93;:::i;:::-;34894:2;34889:3;34885:12;34878:19;;34537:366;;;:::o;34909:419::-;35075:4;35113:2;35102:9;35098:18;35090:26;;35162:9;35156:4;35152:20;35148:1;35137:9;35133:17;35126:47;35190:131;35316:4;35190:131;:::i;:::-;35182:139;;34909:419;;;:::o;35334:148::-;35436:11;35473:3;35458:18;;35334:148;;;;:::o;35488:390::-;35594:3;35622:39;35655:5;35622:39;:::i;:::-;35677:89;35759:6;35754:3;35677:89;:::i;:::-;35670:96;;35775:65;35833:6;35828:3;35821:4;35814:5;35810:16;35775:65;:::i;:::-;35865:6;35860:3;35856:16;35849:23;;35598:280;35488:390;;;;:::o;35908:874::-;36011:3;36048:5;36042:12;36077:36;36103:9;36077:36;:::i;:::-;36129:89;36211:6;36206:3;36129:89;:::i;:::-;36122:96;;36249:1;36238:9;36234:17;36265:1;36260:166;;;;36440:1;36435:341;;;;36227:549;;36260:166;36344:4;36340:9;36329;36325:25;36320:3;36313:38;36406:6;36399:14;36392:22;36384:6;36380:35;36375:3;36371:45;36364:52;;36260:166;;36435:341;36502:38;36534:5;36502:38;:::i;:::-;36562:1;36576:154;36590:6;36587:1;36584:13;36576:154;;;36664:7;36658:14;36654:1;36649:3;36645:11;36638:35;36714:1;36705:7;36701:15;36690:26;;36612:4;36609:1;36605:12;36600:17;;36576:154;;;36759:6;36754:3;36750:16;36743:23;;36442:334;;36227:549;;36015:767;;35908:874;;;;:::o;36788:589::-;37013:3;37035:95;37126:3;37117:6;37035:95;:::i;:::-;37028:102;;37147:95;37238:3;37229:6;37147:95;:::i;:::-;37140:102;;37259:92;37347:3;37338:6;37259:92;:::i;:::-;37252:99;;37368:3;37361:10;;36788:589;;;;;;:::o;37383:225::-;37523:34;37519:1;37511:6;37507:14;37500:58;37592:8;37587:2;37579:6;37575:15;37568:33;37383:225;:::o;37614:366::-;37756:3;37777:67;37841:2;37836:3;37777:67;:::i;:::-;37770:74;;37853:93;37942:3;37853:93;:::i;:::-;37971:2;37966:3;37962:12;37955:19;;37614:366;;;:::o;37986:419::-;38152:4;38190:2;38179:9;38175:18;38167:26;;38239:9;38233:4;38229:20;38225:1;38214:9;38210:17;38203:47;38267:131;38393:4;38267:131;:::i;:::-;38259:139;;37986:419;;;:::o;38411:332::-;38532:4;38570:2;38559:9;38555:18;38547:26;;38583:71;38651:1;38640:9;38636:17;38627:6;38583:71;:::i;:::-;38664:72;38732:2;38721:9;38717:18;38708:6;38664:72;:::i;:::-;38411:332;;;;;:::o;38749:137::-;38803:5;38834:6;38828:13;38819:22;;38850:30;38874:5;38850:30;:::i;:::-;38749:137;;;;:::o;38892:345::-;38959:6;39008:2;38996:9;38987:7;38983:23;38979:32;38976:119;;;39014:79;;:::i;:::-;38976:119;39134:1;39159:61;39212:7;39203:6;39192:9;39188:22;39159:61;:::i;:::-;39149:71;;39105:125;38892:345;;;;:::o;39243:182::-;39383:34;39379:1;39371:6;39367:14;39360:58;39243:182;:::o;39431:366::-;39573:3;39594:67;39658:2;39653:3;39594:67;:::i;:::-;39587:74;;39670:93;39759:3;39670:93;:::i;:::-;39788:2;39783:3;39779:12;39772:19;;39431:366;;;:::o;39803:419::-;39969:4;40007:2;39996:9;39992:18;39984:26;;40056:9;40050:4;40046:20;40042:1;40031:9;40027:17;40020:47;40084:131;40210:4;40084:131;:::i;:::-;40076:139;;39803:419;;;:::o;40228:181::-;40368:33;40364:1;40356:6;40352:14;40345:57;40228:181;:::o;40415:366::-;40557:3;40578:67;40642:2;40637:3;40578:67;:::i;:::-;40571:74;;40654:93;40743:3;40654:93;:::i;:::-;40772:2;40767:3;40763:12;40756:19;;40415:366;;;:::o;40787:419::-;40953:4;40991:2;40980:9;40976:18;40968:26;;41040:9;41034:4;41030:20;41026:1;41015:9;41011:17;41004:47;41068:131;41194:4;41068:131;:::i;:::-;41060:139;;40787:419;;;:::o;41212:98::-;41263:6;41297:5;41291:12;41281:22;;41212:98;;;:::o;41316:168::-;41399:11;41433:6;41428:3;41421:19;41473:4;41468:3;41464:14;41449:29;;41316:168;;;;:::o;41490:373::-;41576:3;41604:38;41636:5;41604:38;:::i;:::-;41658:70;41721:6;41716:3;41658:70;:::i;:::-;41651:77;;41737:65;41795:6;41790:3;41783:4;41776:5;41772:16;41737:65;:::i;:::-;41827:29;41849:6;41827:29;:::i;:::-;41822:3;41818:39;41811:46;;41580:283;41490:373;;;;:::o;41869:640::-;42064:4;42102:3;42091:9;42087:19;42079:27;;42116:71;42184:1;42173:9;42169:17;42160:6;42116:71;:::i;:::-;42197:72;42265:2;42254:9;42250:18;42241:6;42197:72;:::i;:::-;42279;42347:2;42336:9;42332:18;42323:6;42279:72;:::i;:::-;42398:9;42392:4;42388:20;42383:2;42372:9;42368:18;42361:48;42426:76;42497:4;42488:6;42426:76;:::i;:::-;42418:84;;41869:640;;;;;;;:::o;42515:141::-;42571:5;42602:6;42596:13;42587:22;;42618:32;42644:5;42618:32;:::i;:::-;42515:141;;;;:::o;42662:349::-;42731:6;42780:2;42768:9;42759:7;42755:23;42751:32;42748:119;;;42786:79;;:::i;:::-;42748:119;42906:1;42931:63;42986:7;42977:6;42966:9;42962:22;42931:63;:::i;:::-;42921:73;;42877:127;42662:349;;;;:::o

Swarm Source

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