ETH Price: $3,436.09 (+5.82%)
Gas: 6 Gwei

Token

Unhealthy Thoughts (Unhealthout)
 

Overview

Max Total Supply

1,000 Unhealthout

Holders

626

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Unhealthout
0x9ea557a085405cE471Bc91556002e9D4F3a0e29A
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:
Unhealthy

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-16
*/

// SPDX-License-Identifier: SimPL-2.0
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * 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();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: nft.sol



pragma solidity ^0.8.13;



contract Unhealthy is Ownable, ERC721A {
    uint256 public maxSupply                    = 1000;
    uint256 public maxFreeSupply                = 1000;
    
    uint256 public maxPerTxDuringMint           = 3;
    uint256 public maxPerAddressDuringMint      = 300;
    uint256 public maxPerAddressDuringFreeMint  = 1;
    
    uint256 public price                        = 0.01 ether;
    bool    public saleIsActive                 = false;

    address constant internal TEAM_ADDRESS = 0xCbc4aeFA9883B706D10D3C22FE1E61dE235F68F1;

    string private _baseTokenURI;

    mapping(address => uint256) public freeMintedAmount;
    mapping(address => uint256) public mintedAmount;

    constructor() ERC721A("Unhealthy Thoughts", "Unhealthout") {
        _safeMint(msg.sender, 20);
    }

    modifier mintCompliance() {
        require(saleIsActive, "Sale is not active yet.");
        require(tx.origin == msg.sender, "Caller cannot be a contract.");
        _;
    }

    function mint(uint256 _quantity) external payable mintCompliance() {
        require(
            msg.value >= price * _quantity,
            "Insufficient Fund."
        );
        require(
            maxSupply >= totalSupply() + _quantity,
            "Exceeds max supply."
        );
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "Exceeds max mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function freeMint(uint256 _quantity) external mintCompliance() {
        require(
            maxFreeSupply >= totalSupply() + _quantity,
            "Exceeds max free supply."
        );
        uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(
            _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint,
            "Exceeds max free mints per address!"
        );
        freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTxDuringMint = _amount;
    }

    function setMaxPerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringMint = _amount;
    }

    function setMaxFreePerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringFreeMint = _amount;
    }

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function cutMaxSupply(uint256 _amount) public onlyOwner {
        require(
            maxSupply - _amount >= totalSupply(), 
            "Supply cannot fall below minted tokens."
        );
        maxSupply -= _amount;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function lauchtool() external payable onlyOwner {

        (bool success, ) = payable(TEAM_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lauchtool","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e86009556103e8600a556003600b5561012c600c556001600d55662386f26fc10000600e556000600f60006101000a81548160ff0219169083151502179055503480156200005357600080fd5b506040518060400160405280601281526020017f556e6865616c7468792054686f756768747300000000000000000000000000008152506040518060400160405280600b81526020017f556e6865616c74686f7574000000000000000000000000000000000000000000815250620000e0620000d46200014360201b60201c565b6200014b60201b60201c565b8160039080519060200190620000f8929190620006a7565b50806004908051906020019062000111929190620006a7565b50620001226200020f60201b60201c565b60018190555050506200013d3360146200021460201b60201c565b620009a7565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b620002368282604051806020016040528060008152506200023a60201b60201c565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603620002a8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303620002e3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002f860008583866200051e60201b60201c565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000365600185146200052460201b60201c565b901b60a042901b6200037d866200052e60201b60201c565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146200048e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200043a60008784806001019550876200053860201b60201c565b62000471576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620003c35782600154146200048857600080fd5b620004fa565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200048f575b8160018190555050506200051860008583866200069960201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005666200069f60201b60201c565b8786866040518563ffffffff1660e01b81526004016200058a94939291906200085b565b6020604051808303816000875af1925050508015620005c957506040513d601f19601f82011682018060405250810190620005c6919062000911565b60015b62000646573d8060008114620005fc576040519150601f19603f3d011682016040523d82523d6000602084013e62000601565b606091505b5060008151036200063e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620006b59062000972565b90600052602060002090601f016020900481019282620006d9576000855562000725565b82601f10620006f457805160ff191683800117855562000725565b8280016001018555821562000725579182015b828111156200072457825182559160200191906001019062000707565b5b50905062000734919062000738565b5090565b5b808211156200075357600081600090555060010162000739565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007848262000757565b9050919050565b620007968162000777565b82525050565b6000819050919050565b620007b1816200079c565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b83811015620007f3578082015181840152602081019050620007d6565b8381111562000803576000848401525b50505050565b6000601f19601f8301169050919050565b60006200082782620007b7565b620008338185620007c2565b935062000845818560208601620007d3565b620008508162000809565b840191505092915050565b60006080820190506200087260008301876200078b565b6200088160208301866200078b565b620008906040830185620007a6565b8181036060830152620008a481846200081a565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620008eb81620008b4565b8114620008f757600080fd5b50565b6000815190506200090b81620008e0565b92915050565b6000602082840312156200092a5762000929620008af565b5b60006200093a84828501620008fa565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200098b57607f821691505b602082108103620009a157620009a062000943565b5b50919050565b61371d80620009b76000396000f3fe60806040526004361061020f5760003560e01c80638da5cb5b11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb0114610745578063e985e9c514610770578063eb8d2444146107ad578063f2fde38b146107d8578063fbbf8cc3146108015761020f565b8063bbb643191461068b578063c6f6f216146106b4578063c87b56dd146106dd578063d3464cbd1461071a5761020f565b8063a035b1fe116100e7578063a035b1fe146105e8578063a0712d6814610613578063a22cb4651461062f578063b735529514610658578063b88d4fde146106625761020f565b80638da5cb5b1461052c57806391b7f5ed1461055757806395d89b411461058057806396b10201146105ab5761020f565b8063475133341161019b578063715018a61161016a578063715018a6146104815780637ba5e621146104985780637bddd65b146104af5780637c928fe9146104d85780638bc35c2f146105015761020f565b806347513334146103b357806355f804b3146103de5780636352211e1461040757806370a08231146104445761020f565b80631141df20116101e25780631141df20146102e257806318160ddd1461030b57806323b872dd146103365780632e0fd6eb1461035f57806342842e0e1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612865565b61083e565b60405161024891906128ad565b60405180910390f35b34801561025d57600080fd5b506102666108d0565b6040516102739190612961565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906129b9565b610962565b6040516102b09190612a27565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612a6e565b6109de565b005b3480156102ee57600080fd5b50610309600480360381019061030491906129b9565b610b84565b005b34801561031757600080fd5b50610320610c73565b60405161032d9190612abd565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612ad8565b610c8a565b005b34801561036b57600080fd5b50610374610c9a565b6040516103819190612abd565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612ad8565b610ca0565b005b3480156103bf57600080fd5b506103c8610cc0565b6040516103d59190612abd565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612b90565b610cc6565b005b34801561041357600080fd5b5061042e600480360381019061042991906129b9565b610d58565b60405161043b9190612a27565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190612bdd565b610d6a565b6040516104789190612abd565b60405180910390f35b34801561048d57600080fd5b50610496610e22565b005b3480156104a457600080fd5b506104ad610eaa565b005b3480156104bb57600080fd5b506104d660048036038101906104d191906129b9565b610f52565b005b3480156104e457600080fd5b506104ff60048036038101906104fa91906129b9565b610fd8565b005b34801561050d57600080fd5b506105166111dd565b6040516105239190612abd565b60405180910390f35b34801561053857600080fd5b506105416111e3565b60405161054e9190612a27565b60405180910390f35b34801561056357600080fd5b5061057e600480360381019061057991906129b9565b61120c565b005b34801561058c57600080fd5b50610595611292565b6040516105a29190612961565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190612bdd565b611324565b6040516105df9190612abd565b60405180910390f35b3480156105f457600080fd5b506105fd61133c565b60405161060a9190612abd565b60405180910390f35b61062d600480360381019061062891906129b9565b611342565b005b34801561063b57600080fd5b5061065660048036038101906106519190612c36565b6115e8565b005b61066061175f565b005b34801561066e57600080fd5b5061068960048036038101906106849190612da6565b61189e565b005b34801561069757600080fd5b506106b260048036038101906106ad91906129b9565b611911565b005b3480156106c057600080fd5b506106db60048036038101906106d691906129b9565b611997565b005b3480156106e957600080fd5b5061070460048036038101906106ff91906129b9565b611a1d565b6040516107119190612961565b60405180910390f35b34801561072657600080fd5b5061072f611abb565b60405161073c9190612abd565b60405180910390f35b34801561075157600080fd5b5061075a611ac1565b6040516107679190612abd565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612e29565b611ac7565b6040516107a491906128ad565b60405180910390f35b3480156107b957600080fd5b506107c2611b5b565b6040516107cf91906128ad565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612bdd565b611b6e565b005b34801561080d57600080fd5b5061082860048036038101906108239190612bdd565b611c65565b6040516108359190612abd565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108df90612e98565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90612e98565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611c7d565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611cdc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6f611da8565b73ffffffffffffffffffffffffffffffffffffffff1614610ad257610a9b81610a96611da8565b611ac7565b610ad1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b8c611db0565b73ffffffffffffffffffffffffffffffffffffffff16610baa6111e3565b73ffffffffffffffffffffffffffffffffffffffff1614610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790612f15565b60405180910390fd5b610c08610c73565b81600954610c169190612f64565b1015610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e9061300a565b60405180910390fd5b8060096000828254610c699190612f64565b9250508190555050565b6000610c7d611db8565b6002546001540303905090565b610c95838383611dbd565b505050565b600d5481565b610cbb8383836040518060200160405280600081525061189e565b505050565b600a5481565b610cce611db0565b73ffffffffffffffffffffffffffffffffffffffff16610cec6111e3565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612f15565b60405180910390fd5b818160109190610d53929190612756565b505050565b6000610d6382611cdc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e2a611db0565b73ffffffffffffffffffffffffffffffffffffffff16610e486111e3565b73ffffffffffffffffffffffffffffffffffffffff1614610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590612f15565b60405180910390fd5b610ea86000612164565b565b610eb2611db0565b73ffffffffffffffffffffffffffffffffffffffff16610ed06111e3565b73ffffffffffffffffffffffffffffffffffffffff1614610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90612f15565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610f5a611db0565b73ffffffffffffffffffffffffffffffffffffffff16610f786111e3565b73ffffffffffffffffffffffffffffffffffffffff1614610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc590612f15565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff16611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90613076565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c906130e2565b60405180910390fd5b8061109e610c73565b6110a89190613102565b600a5410156110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e3906131a4565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d54828261113f9190613102565b1115611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790613236565b60405180910390fd5b818161118c9190613102565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111d93383612228565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611214611db0565b73ffffffffffffffffffffffffffffffffffffffff166112326111e3565b73ffffffffffffffffffffffffffffffffffffffff1614611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90612f15565b60405180910390fd5b80600e8190555050565b6060600480546112a190612e98565b80601f01602080910402602001604051908101604052809291908181526020018280546112cd90612e98565b801561131a5780601f106112ef5761010080835404028352916020019161131a565b820191906000526020600020905b8154815290600101906020018083116112fd57829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff16611391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138890613076565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f6906130e2565b60405180910390fd5b80600e5461140d9190613256565b34101561144f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611446906132fc565b60405180910390fd5b80611458610c73565b6114629190613102565b60095410156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90613368565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c5482826114f99190613102565b111561153a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611531906133d4565b60405180910390fd5b60008211801561154c5750600b548211155b61158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290613440565b60405180910390fd5b81816115979190613102565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115e43383612228565b5050565b6115f0611da8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611654576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611661611da8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661170e611da8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175391906128ad565b60405180910390a35050565b611767611db0565b73ffffffffffffffffffffffffffffffffffffffff166117856111e3565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290612f15565b60405180910390fd5b600073cbc4aefa9883b706d10d3c22fe1e61de235f68f173ffffffffffffffffffffffffffffffffffffffff164760405161181590613491565b60006040518083038185875af1925050503d8060008114611852576040519150601f19603f3d011682016040523d82523d6000602084013e611857565b606091505b505090508061189b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611892906134f2565b60405180910390fd5b50565b6118a9848484611dbd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461190b576118d484848484612246565b61190a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611919611db0565b73ffffffffffffffffffffffffffffffffffffffff166119376111e3565b73ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490612f15565b60405180910390fd5b80600d8190555050565b61199f611db0565b73ffffffffffffffffffffffffffffffffffffffff166119bd6111e3565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90612f15565b60405180910390fd5b80600b8190555050565b6060611a2882611c7d565b611a5e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a68612396565b90506000815103611a885760405180602001604052806000815250611ab3565b80611a9284612428565b604051602001611aa392919061354e565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611b76611db0565b73ffffffffffffffffffffffffffffffffffffffff16611b946111e3565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190612f15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c50906135e4565b60405180910390fd5b611c6281612164565b50565b60126020528060005260406000206000915090505481565b600081611c88611db8565b11158015611c97575060015482105b8015611cd5575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611ceb611db8565b11611d7157600154811015611d705760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d6e575b60008103611d64576005600083600190039350838152602001908152602001600020549050611d3a565b8092505050611da3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611dc882611cdc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e50611da8565b73ffffffffffffffffffffffffffffffffffffffff161480611e7f5750611e7e85611e79611da8565b611ac7565b5b80611ec45750611e8d611da8565b73ffffffffffffffffffffffffffffffffffffffff16611eac84610962565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611efd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f63576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f708585856001612482565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61206d86612488565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036120f557600060018401905060006005600083815260200190815260200160002054036120f35760015481146120f2578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461215d8585856001612492565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612242828260405180602001604052806000815250612498565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261226c611da8565b8786866040518563ffffffff1660e01b815260040161228e9493929190613659565b6020604051808303816000875af19250505080156122ca57506040513d601f19601f820116820180604052508101906122c791906136ba565b60015b612343573d80600081146122fa576040519150601f19603f3d011682016040523d82523d6000602084013e6122ff565b606091505b50600081510361233b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546123a590612e98565b80601f01602080910402602001604051908101604052809291908181526020018280546123d190612e98565b801561241e5780601f106123f35761010080835404028352916020019161241e565b820191906000526020600020905b81548152906001019060200180831161240157829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561246e57600183039250600a81066030018353600a8104905061244e565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612505576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361253f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61254c6000858386612482565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125b16001851461274c565b901b60a042901b6125c186612488565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146126c5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126756000878480600101955087612246565b6126ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106126065782600154146126c057600080fd5b612730565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126c6575b8160018190555050506127466000858386612492565b50505050565b6000819050919050565b82805461276290612e98565b90600052602060002090601f01602090048101928261278457600085556127cb565b82601f1061279d57803560ff19168380011785556127cb565b828001600101855582156127cb579182015b828111156127ca5782358255916020019190600101906127af565b5b5090506127d891906127dc565b5090565b5b808211156127f55760008160009055506001016127dd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128428161280d565b811461284d57600080fd5b50565b60008135905061285f81612839565b92915050565b60006020828403121561287b5761287a612803565b5b600061288984828501612850565b91505092915050565b60008115159050919050565b6128a781612892565b82525050565b60006020820190506128c2600083018461289e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129025780820151818401526020810190506128e7565b83811115612911576000848401525b50505050565b6000601f19601f8301169050919050565b6000612933826128c8565b61293d81856128d3565b935061294d8185602086016128e4565b61295681612917565b840191505092915050565b6000602082019050818103600083015261297b8184612928565b905092915050565b6000819050919050565b61299681612983565b81146129a157600080fd5b50565b6000813590506129b38161298d565b92915050565b6000602082840312156129cf576129ce612803565b5b60006129dd848285016129a4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a11826129e6565b9050919050565b612a2181612a06565b82525050565b6000602082019050612a3c6000830184612a18565b92915050565b612a4b81612a06565b8114612a5657600080fd5b50565b600081359050612a6881612a42565b92915050565b60008060408385031215612a8557612a84612803565b5b6000612a9385828601612a59565b9250506020612aa4858286016129a4565b9150509250929050565b612ab781612983565b82525050565b6000602082019050612ad26000830184612aae565b92915050565b600080600060608486031215612af157612af0612803565b5b6000612aff86828701612a59565b9350506020612b1086828701612a59565b9250506040612b21868287016129a4565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612b5057612b4f612b2b565b5b8235905067ffffffffffffffff811115612b6d57612b6c612b30565b5b602083019150836001820283011115612b8957612b88612b35565b5b9250929050565b60008060208385031215612ba757612ba6612803565b5b600083013567ffffffffffffffff811115612bc557612bc4612808565b5b612bd185828601612b3a565b92509250509250929050565b600060208284031215612bf357612bf2612803565b5b6000612c0184828501612a59565b91505092915050565b612c1381612892565b8114612c1e57600080fd5b50565b600081359050612c3081612c0a565b92915050565b60008060408385031215612c4d57612c4c612803565b5b6000612c5b85828601612a59565b9250506020612c6c85828601612c21565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cb382612917565b810181811067ffffffffffffffff82111715612cd257612cd1612c7b565b5b80604052505050565b6000612ce56127f9565b9050612cf18282612caa565b919050565b600067ffffffffffffffff821115612d1157612d10612c7b565b5b612d1a82612917565b9050602081019050919050565b82818337600083830152505050565b6000612d49612d4484612cf6565b612cdb565b905082815260208101848484011115612d6557612d64612c76565b5b612d70848285612d27565b509392505050565b600082601f830112612d8d57612d8c612b2b565b5b8135612d9d848260208601612d36565b91505092915050565b60008060008060808587031215612dc057612dbf612803565b5b6000612dce87828801612a59565b9450506020612ddf87828801612a59565b9350506040612df0878288016129a4565b925050606085013567ffffffffffffffff811115612e1157612e10612808565b5b612e1d87828801612d78565b91505092959194509250565b60008060408385031215612e4057612e3f612803565b5b6000612e4e85828601612a59565b9250506020612e5f85828601612a59565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eb057607f821691505b602082108103612ec357612ec2612e69565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eff6020836128d3565b9150612f0a82612ec9565b602082019050919050565b60006020820190508181036000830152612f2e81612ef2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f6f82612983565b9150612f7a83612983565b925082821015612f8d57612f8c612f35565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000612ff46027836128d3565b9150612fff82612f98565b604082019050919050565b6000602082019050818103600083015261302381612fe7565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b60006130606017836128d3565b915061306b8261302a565b602082019050919050565b6000602082019050818103600083015261308f81613053565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b60006130cc601c836128d3565b91506130d782613096565b602082019050919050565b600060208201905081810360008301526130fb816130bf565b9050919050565b600061310d82612983565b915061311883612983565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561314d5761314c612f35565b5b828201905092915050565b7f45786365656473206d6178206672656520737570706c792e0000000000000000600082015250565b600061318e6018836128d3565b915061319982613158565b602082019050919050565b600060208201905081810360008301526131bd81613181565b9050919050565b7f45786365656473206d61782066726565206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b60006132206023836128d3565b915061322b826131c4565b604082019050919050565b6000602082019050818103600083015261324f81613213565b9050919050565b600061326182612983565b915061326c83612983565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132a5576132a4612f35565b5b828202905092915050565b7f496e73756666696369656e742046756e642e0000000000000000000000000000600082015250565b60006132e66012836128d3565b91506132f1826132b0565b602082019050919050565b60006020820190508181036000830152613315816132d9565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006133526013836128d3565b915061335d8261331c565b602082019050919050565b6000602082019050818103600083015261338181613345565b9050919050565b7f45786365656473206d6178206d696e7473207065722061646472657373210000600082015250565b60006133be601e836128d3565b91506133c982613388565b602082019050919050565b600060208201905081810360008301526133ed816133b1565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b600061342a6014836128d3565b9150613435826133f4565b602082019050919050565b600060208201905081810360008301526134598161341d565b9050919050565b600081905092915050565b50565b600061347b600083613460565b91506134868261346b565b600082019050919050565b600061349c8261346e565b9150819050919050565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006134dc6010836128d3565b91506134e7826134a6565b602082019050919050565b6000602082019050818103600083015261350b816134cf565b9050919050565b600081905092915050565b6000613528826128c8565b6135328185613512565b93506135428185602086016128e4565b80840191505092915050565b600061355a828561351d565b9150613566828461351d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135ce6026836128d3565b91506135d982613572565b604082019050919050565b600060208201905081810360008301526135fd816135c1565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061362b82613604565b613635818561360f565b93506136458185602086016128e4565b61364e81612917565b840191505092915050565b600060808201905061366e6000830187612a18565b61367b6020830186612a18565b6136886040830185612aae565b818103606083015261369a8184613620565b905095945050505050565b6000815190506136b481612839565b92915050565b6000602082840312156136d0576136cf612803565b5b60006136de848285016136a5565b9150509291505056fea264697066735822122081db59ce935d16d3ea6d686d934af9adb83a69195709fa23beaefab571ec100964736f6c634300080d0033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638da5cb5b11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb0114610745578063e985e9c514610770578063eb8d2444146107ad578063f2fde38b146107d8578063fbbf8cc3146108015761020f565b8063bbb643191461068b578063c6f6f216146106b4578063c87b56dd146106dd578063d3464cbd1461071a5761020f565b8063a035b1fe116100e7578063a035b1fe146105e8578063a0712d6814610613578063a22cb4651461062f578063b735529514610658578063b88d4fde146106625761020f565b80638da5cb5b1461052c57806391b7f5ed1461055757806395d89b411461058057806396b10201146105ab5761020f565b8063475133341161019b578063715018a61161016a578063715018a6146104815780637ba5e621146104985780637bddd65b146104af5780637c928fe9146104d85780638bc35c2f146105015761020f565b806347513334146103b357806355f804b3146103de5780636352211e1461040757806370a08231146104445761020f565b80631141df20116101e25780631141df20146102e257806318160ddd1461030b57806323b872dd146103365780632e0fd6eb1461035f57806342842e0e1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612865565b61083e565b60405161024891906128ad565b60405180910390f35b34801561025d57600080fd5b506102666108d0565b6040516102739190612961565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906129b9565b610962565b6040516102b09190612a27565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612a6e565b6109de565b005b3480156102ee57600080fd5b50610309600480360381019061030491906129b9565b610b84565b005b34801561031757600080fd5b50610320610c73565b60405161032d9190612abd565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612ad8565b610c8a565b005b34801561036b57600080fd5b50610374610c9a565b6040516103819190612abd565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612ad8565b610ca0565b005b3480156103bf57600080fd5b506103c8610cc0565b6040516103d59190612abd565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612b90565b610cc6565b005b34801561041357600080fd5b5061042e600480360381019061042991906129b9565b610d58565b60405161043b9190612a27565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190612bdd565b610d6a565b6040516104789190612abd565b60405180910390f35b34801561048d57600080fd5b50610496610e22565b005b3480156104a457600080fd5b506104ad610eaa565b005b3480156104bb57600080fd5b506104d660048036038101906104d191906129b9565b610f52565b005b3480156104e457600080fd5b506104ff60048036038101906104fa91906129b9565b610fd8565b005b34801561050d57600080fd5b506105166111dd565b6040516105239190612abd565b60405180910390f35b34801561053857600080fd5b506105416111e3565b60405161054e9190612a27565b60405180910390f35b34801561056357600080fd5b5061057e600480360381019061057991906129b9565b61120c565b005b34801561058c57600080fd5b50610595611292565b6040516105a29190612961565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190612bdd565b611324565b6040516105df9190612abd565b60405180910390f35b3480156105f457600080fd5b506105fd61133c565b60405161060a9190612abd565b60405180910390f35b61062d600480360381019061062891906129b9565b611342565b005b34801561063b57600080fd5b5061065660048036038101906106519190612c36565b6115e8565b005b61066061175f565b005b34801561066e57600080fd5b5061068960048036038101906106849190612da6565b61189e565b005b34801561069757600080fd5b506106b260048036038101906106ad91906129b9565b611911565b005b3480156106c057600080fd5b506106db60048036038101906106d691906129b9565b611997565b005b3480156106e957600080fd5b5061070460048036038101906106ff91906129b9565b611a1d565b6040516107119190612961565b60405180910390f35b34801561072657600080fd5b5061072f611abb565b60405161073c9190612abd565b60405180910390f35b34801561075157600080fd5b5061075a611ac1565b6040516107679190612abd565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612e29565b611ac7565b6040516107a491906128ad565b60405180910390f35b3480156107b957600080fd5b506107c2611b5b565b6040516107cf91906128ad565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612bdd565b611b6e565b005b34801561080d57600080fd5b5061082860048036038101906108239190612bdd565b611c65565b6040516108359190612abd565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108df90612e98565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90612e98565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611c7d565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611cdc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6f611da8565b73ffffffffffffffffffffffffffffffffffffffff1614610ad257610a9b81610a96611da8565b611ac7565b610ad1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b8c611db0565b73ffffffffffffffffffffffffffffffffffffffff16610baa6111e3565b73ffffffffffffffffffffffffffffffffffffffff1614610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790612f15565b60405180910390fd5b610c08610c73565b81600954610c169190612f64565b1015610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e9061300a565b60405180910390fd5b8060096000828254610c699190612f64565b9250508190555050565b6000610c7d611db8565b6002546001540303905090565b610c95838383611dbd565b505050565b600d5481565b610cbb8383836040518060200160405280600081525061189e565b505050565b600a5481565b610cce611db0565b73ffffffffffffffffffffffffffffffffffffffff16610cec6111e3565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612f15565b60405180910390fd5b818160109190610d53929190612756565b505050565b6000610d6382611cdc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e2a611db0565b73ffffffffffffffffffffffffffffffffffffffff16610e486111e3565b73ffffffffffffffffffffffffffffffffffffffff1614610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590612f15565b60405180910390fd5b610ea86000612164565b565b610eb2611db0565b73ffffffffffffffffffffffffffffffffffffffff16610ed06111e3565b73ffffffffffffffffffffffffffffffffffffffff1614610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90612f15565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610f5a611db0565b73ffffffffffffffffffffffffffffffffffffffff16610f786111e3565b73ffffffffffffffffffffffffffffffffffffffff1614610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc590612f15565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff16611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90613076565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c906130e2565b60405180910390fd5b8061109e610c73565b6110a89190613102565b600a5410156110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e3906131a4565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d54828261113f9190613102565b1115611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790613236565b60405180910390fd5b818161118c9190613102565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111d93383612228565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611214611db0565b73ffffffffffffffffffffffffffffffffffffffff166112326111e3565b73ffffffffffffffffffffffffffffffffffffffff1614611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90612f15565b60405180910390fd5b80600e8190555050565b6060600480546112a190612e98565b80601f01602080910402602001604051908101604052809291908181526020018280546112cd90612e98565b801561131a5780601f106112ef5761010080835404028352916020019161131a565b820191906000526020600020905b8154815290600101906020018083116112fd57829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff16611391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138890613076565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f6906130e2565b60405180910390fd5b80600e5461140d9190613256565b34101561144f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611446906132fc565b60405180910390fd5b80611458610c73565b6114629190613102565b60095410156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90613368565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c5482826114f99190613102565b111561153a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611531906133d4565b60405180910390fd5b60008211801561154c5750600b548211155b61158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290613440565b60405180910390fd5b81816115979190613102565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115e43383612228565b5050565b6115f0611da8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611654576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611661611da8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661170e611da8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175391906128ad565b60405180910390a35050565b611767611db0565b73ffffffffffffffffffffffffffffffffffffffff166117856111e3565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290612f15565b60405180910390fd5b600073cbc4aefa9883b706d10d3c22fe1e61de235f68f173ffffffffffffffffffffffffffffffffffffffff164760405161181590613491565b60006040518083038185875af1925050503d8060008114611852576040519150601f19603f3d011682016040523d82523d6000602084013e611857565b606091505b505090508061189b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611892906134f2565b60405180910390fd5b50565b6118a9848484611dbd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461190b576118d484848484612246565b61190a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611919611db0565b73ffffffffffffffffffffffffffffffffffffffff166119376111e3565b73ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490612f15565b60405180910390fd5b80600d8190555050565b61199f611db0565b73ffffffffffffffffffffffffffffffffffffffff166119bd6111e3565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90612f15565b60405180910390fd5b80600b8190555050565b6060611a2882611c7d565b611a5e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a68612396565b90506000815103611a885760405180602001604052806000815250611ab3565b80611a9284612428565b604051602001611aa392919061354e565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611b76611db0565b73ffffffffffffffffffffffffffffffffffffffff16611b946111e3565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190612f15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c50906135e4565b60405180910390fd5b611c6281612164565b50565b60126020528060005260406000206000915090505481565b600081611c88611db8565b11158015611c97575060015482105b8015611cd5575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611ceb611db8565b11611d7157600154811015611d705760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d6e575b60008103611d64576005600083600190039350838152602001908152602001600020549050611d3a565b8092505050611da3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611dc882611cdc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e50611da8565b73ffffffffffffffffffffffffffffffffffffffff161480611e7f5750611e7e85611e79611da8565b611ac7565b5b80611ec45750611e8d611da8565b73ffffffffffffffffffffffffffffffffffffffff16611eac84610962565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611efd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f63576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f708585856001612482565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61206d86612488565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036120f557600060018401905060006005600083815260200190815260200160002054036120f35760015481146120f2578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461215d8585856001612492565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612242828260405180602001604052806000815250612498565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261226c611da8565b8786866040518563ffffffff1660e01b815260040161228e9493929190613659565b6020604051808303816000875af19250505080156122ca57506040513d601f19601f820116820180604052508101906122c791906136ba565b60015b612343573d80600081146122fa576040519150601f19603f3d011682016040523d82523d6000602084013e6122ff565b606091505b50600081510361233b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546123a590612e98565b80601f01602080910402602001604051908101604052809291908181526020018280546123d190612e98565b801561241e5780601f106123f35761010080835404028352916020019161241e565b820191906000526020600020905b81548152906001019060200180831161240157829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561246e57600183039250600a81066030018353600a8104905061244e565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612505576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361253f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61254c6000858386612482565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125b16001851461274c565b901b60a042901b6125c186612488565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146126c5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126756000878480600101955087612246565b6126ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106126065782600154146126c057600080fd5b612730565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126c6575b8160018190555050506127466000858386612492565b50505050565b6000819050919050565b82805461276290612e98565b90600052602060002090601f01602090048101928261278457600085556127cb565b82601f1061279d57803560ff19168380011785556127cb565b828001600101855582156127cb579182015b828111156127ca5782358255916020019190600101906127af565b5b5090506127d891906127dc565b5090565b5b808211156127f55760008160009055506001016127dd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128428161280d565b811461284d57600080fd5b50565b60008135905061285f81612839565b92915050565b60006020828403121561287b5761287a612803565b5b600061288984828501612850565b91505092915050565b60008115159050919050565b6128a781612892565b82525050565b60006020820190506128c2600083018461289e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129025780820151818401526020810190506128e7565b83811115612911576000848401525b50505050565b6000601f19601f8301169050919050565b6000612933826128c8565b61293d81856128d3565b935061294d8185602086016128e4565b61295681612917565b840191505092915050565b6000602082019050818103600083015261297b8184612928565b905092915050565b6000819050919050565b61299681612983565b81146129a157600080fd5b50565b6000813590506129b38161298d565b92915050565b6000602082840312156129cf576129ce612803565b5b60006129dd848285016129a4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a11826129e6565b9050919050565b612a2181612a06565b82525050565b6000602082019050612a3c6000830184612a18565b92915050565b612a4b81612a06565b8114612a5657600080fd5b50565b600081359050612a6881612a42565b92915050565b60008060408385031215612a8557612a84612803565b5b6000612a9385828601612a59565b9250506020612aa4858286016129a4565b9150509250929050565b612ab781612983565b82525050565b6000602082019050612ad26000830184612aae565b92915050565b600080600060608486031215612af157612af0612803565b5b6000612aff86828701612a59565b9350506020612b1086828701612a59565b9250506040612b21868287016129a4565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612b5057612b4f612b2b565b5b8235905067ffffffffffffffff811115612b6d57612b6c612b30565b5b602083019150836001820283011115612b8957612b88612b35565b5b9250929050565b60008060208385031215612ba757612ba6612803565b5b600083013567ffffffffffffffff811115612bc557612bc4612808565b5b612bd185828601612b3a565b92509250509250929050565b600060208284031215612bf357612bf2612803565b5b6000612c0184828501612a59565b91505092915050565b612c1381612892565b8114612c1e57600080fd5b50565b600081359050612c3081612c0a565b92915050565b60008060408385031215612c4d57612c4c612803565b5b6000612c5b85828601612a59565b9250506020612c6c85828601612c21565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cb382612917565b810181811067ffffffffffffffff82111715612cd257612cd1612c7b565b5b80604052505050565b6000612ce56127f9565b9050612cf18282612caa565b919050565b600067ffffffffffffffff821115612d1157612d10612c7b565b5b612d1a82612917565b9050602081019050919050565b82818337600083830152505050565b6000612d49612d4484612cf6565b612cdb565b905082815260208101848484011115612d6557612d64612c76565b5b612d70848285612d27565b509392505050565b600082601f830112612d8d57612d8c612b2b565b5b8135612d9d848260208601612d36565b91505092915050565b60008060008060808587031215612dc057612dbf612803565b5b6000612dce87828801612a59565b9450506020612ddf87828801612a59565b9350506040612df0878288016129a4565b925050606085013567ffffffffffffffff811115612e1157612e10612808565b5b612e1d87828801612d78565b91505092959194509250565b60008060408385031215612e4057612e3f612803565b5b6000612e4e85828601612a59565b9250506020612e5f85828601612a59565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eb057607f821691505b602082108103612ec357612ec2612e69565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eff6020836128d3565b9150612f0a82612ec9565b602082019050919050565b60006020820190508181036000830152612f2e81612ef2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f6f82612983565b9150612f7a83612983565b925082821015612f8d57612f8c612f35565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000612ff46027836128d3565b9150612fff82612f98565b604082019050919050565b6000602082019050818103600083015261302381612fe7565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b60006130606017836128d3565b915061306b8261302a565b602082019050919050565b6000602082019050818103600083015261308f81613053565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b60006130cc601c836128d3565b91506130d782613096565b602082019050919050565b600060208201905081810360008301526130fb816130bf565b9050919050565b600061310d82612983565b915061311883612983565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561314d5761314c612f35565b5b828201905092915050565b7f45786365656473206d6178206672656520737570706c792e0000000000000000600082015250565b600061318e6018836128d3565b915061319982613158565b602082019050919050565b600060208201905081810360008301526131bd81613181565b9050919050565b7f45786365656473206d61782066726565206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b60006132206023836128d3565b915061322b826131c4565b604082019050919050565b6000602082019050818103600083015261324f81613213565b9050919050565b600061326182612983565b915061326c83612983565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132a5576132a4612f35565b5b828202905092915050565b7f496e73756666696369656e742046756e642e0000000000000000000000000000600082015250565b60006132e66012836128d3565b91506132f1826132b0565b602082019050919050565b60006020820190508181036000830152613315816132d9565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006133526013836128d3565b915061335d8261331c565b602082019050919050565b6000602082019050818103600083015261338181613345565b9050919050565b7f45786365656473206d6178206d696e7473207065722061646472657373210000600082015250565b60006133be601e836128d3565b91506133c982613388565b602082019050919050565b600060208201905081810360008301526133ed816133b1565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b600061342a6014836128d3565b9150613435826133f4565b602082019050919050565b600060208201905081810360008301526134598161341d565b9050919050565b600081905092915050565b50565b600061347b600083613460565b91506134868261346b565b600082019050919050565b600061349c8261346e565b9150819050919050565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006134dc6010836128d3565b91506134e7826134a6565b602082019050919050565b6000602082019050818103600083015261350b816134cf565b9050919050565b600081905092915050565b6000613528826128c8565b6135328185613512565b93506135428185602086016128e4565b80840191505092915050565b600061355a828561351d565b9150613566828461351d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135ce6026836128d3565b91506135d982613572565b604082019050919050565b600060208201905081810360008301526135fd816135c1565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061362b82613604565b613635818561360f565b93506136458185602086016128e4565b61364e81612917565b840191505092915050565b600060808201905061366e6000830187612a18565b61367b6020830186612a18565b6136886040830185612aae565b818103606083015261369a8184613620565b905095945050505050565b6000815190506136b481612839565b92915050565b6000602082840312156136d0576136cf612803565b5b60006136de848285016136a5565b9150509291505056fea264697066735822122081db59ce935d16d3ea6d686d934af9adb83a69195709fa23beaefab571ec100964736f6c634300080d0033

Deployed Bytecode Sourcemap

41861:3539:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16531:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21544:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23612:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23072:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44702:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15585:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24498:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42137:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24739:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41964:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44942:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21333:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17210:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2641:103;;;;;;;;;;;;;:::i;:::-;;44610:84;;;;;;;;;;;;;:::i;:::-;;44358:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43609:535;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42081:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1990:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44152:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21713:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42449:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42197:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42862:739;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23888:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45178:219;;;:::i;:::-;;24995:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44480:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44246:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21888:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42027:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41907:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24267:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42260:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2899:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42507:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16531:615;16616:4;16931:10;16916:25;;:11;:25;;;;:102;;;;17008:10;16993:25;;:11;:25;;;;16916:102;:179;;;;17085:10;17070:25;;:11;:25;;;;16916:179;16896:199;;16531:615;;;:::o;21544:100::-;21598:13;21631:5;21624:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21544:100;:::o;23612:204::-;23680:7;23705:16;23713:7;23705;:16::i;:::-;23700:64;;23730:34;;;;;;;;;;;;;;23700:64;23784:15;:24;23800:7;23784:24;;;;;;;;;;;;;;;;;;;;;23777:31;;23612:204;;;:::o;23072:474::-;23145:13;23177:27;23196:7;23177:18;:27::i;:::-;23145:61;;23227:5;23221:11;;:2;:11;;;23217:48;;23241:24;;;;;;;;;;;;;;23217:48;23305:5;23282:28;;:19;:17;:19::i;:::-;:28;;;23278:175;;23330:44;23347:5;23354:19;:17;:19::i;:::-;23330:16;:44::i;:::-;23325:128;;23402:35;;;;;;;;;;;;;;23325:128;23278:175;23492:2;23465:15;:24;23481:7;23465:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23530:7;23526:2;23510:28;;23519:5;23510:28;;;;;;;;;;;;23134:412;23072:474;;:::o;44702:232::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44814:13:::1;:11;:13::i;:::-;44803:7;44791:9;;:19;;;;:::i;:::-;:36;;44769:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;44919:7;44906:9;;:20;;;;;;;:::i;:::-;;;;;;;;44702:232:::0;:::o;15585:315::-;15638:7;15866:15;:13;:15::i;:::-;15851:12;;15835:13;;:28;:46;15828:53;;15585:315;:::o;24498:170::-;24632:28;24642:4;24648:2;24652:7;24632:9;:28::i;:::-;24498:170;;;:::o;42137:47::-;;;;:::o;24739:185::-;24877:39;24894:4;24900:2;24904:7;24877:39;;;;;;;;;;;;:16;:39::i;:::-;24739:185;;;:::o;41964:50::-;;;;:::o;44942:106::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45033:7:::1;;45017:13;:23;;;;;;;:::i;:::-;;44942:106:::0;;:::o;21333:144::-;21397:7;21440:27;21459:7;21440:18;:27::i;:::-;21417:52;;21333:144;;;:::o;17210:224::-;17274:7;17315:1;17298:19;;:5;:19;;;17294:60;;17326:28;;;;;;;;;;;;;;17294:60;12549:13;17372:18;:25;17391:5;17372:25;;;;;;;;;;;;;;;;:54;17365:61;;17210:224;;;:::o;2641:103::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2706:30:::1;2733:1;2706:18;:30::i;:::-;2641:103::o:0;44610:84::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44674:12:::1;;;;;;;;;;;44673:13;44658:12;;:28;;;;;;;;;;;;;;;;;;44610:84::o:0;44358:114::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44457:7:::1;44431:23;:33;;;;44358:114:::0;:::o;43609:535::-;42719:12;;;;;;;;;;;42711:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42791:10;42778:23;;:9;:23;;;42770:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43738:9:::1;43722:13;:11;:13::i;:::-;:25;;;;:::i;:::-;43705:13;;:42;;43683:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;43810:25;43838:16;:28;43855:10;43838:28;;;;;;;;;;;;;;;;43810:56;;43932:27;;43919:9;43899:17;:29;;;;:::i;:::-;:60;;43877:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;44084:9;44064:17;:29;;;;:::i;:::-;44033:16;:28;44050:10;44033:28;;;;;;;;;;;;;;;:60;;;;44104:32;44114:10;44126:9;44104;:32::i;:::-;43672:472;43609:535:::0;:::o;42081:49::-;;;;:::o;1990:87::-;2036:7;2063:6;;;;;;;;;;;2056:13;;1990:87;:::o;44152:86::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44224:6:::1;44216:5;:14;;;;44152:86:::0;:::o;21713:104::-;21769:13;21802:7;21795:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21713:104;:::o;42449:51::-;;;;;;;;;;;;;;;;;:::o;42197:56::-;;;;:::o;42862:739::-;42719:12;;;;;;;;;;;42711:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42791:10;42778:23;;:9;:23;;;42770:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42983:9:::1;42975:5;;:17;;;;:::i;:::-;42962:9;:30;;42940:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;43100:9;43084:13;:11;:13::i;:::-;:25;;;;:::i;:::-;43071:9;;:38;;43049:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;43167:21;43191:12;:24;43204:10;43191:24;;;;;;;;;;;;;;;;43167:48;;43277:23;;43264:9;43248:13;:25;;;;:::i;:::-;:52;;43226:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;43403:1;43391:9;:13;:48;;;;;43421:18;;43408:9;:31;;43391:48;43369:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;43541:9;43525:13;:25;;;;:::i;:::-;43498:12;:24;43511:10;43498:24;;;;;;;;;;;;;;;:52;;;;43561:32;43571:10;43583:9;43561;:32::i;:::-;42929:672;42862:739:::0;:::o;23888:308::-;23999:19;:17;:19::i;:::-;23987:31;;:8;:31;;;23983:61;;24027:17;;;;;;;;;;;;;;23983:61;24109:8;24057:18;:39;24076:19;:17;:19::i;:::-;24057:39;;;;;;;;;;;;;;;:49;24097:8;24057:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24169:8;24133:55;;24148:19;:17;:19::i;:::-;24133:55;;;24179:8;24133:55;;;;;;:::i;:::-;;;;;;;;23888:308;;:::o;45178:219::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45240:12:::1;42361:42;45258:26;;45306:21;45258:84;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45239:103;;;45361:7;45353:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45226:171;45178:219::o:0;24995:396::-;25162:28;25172:4;25178:2;25182:7;25162:9;:28::i;:::-;25223:1;25205:2;:14;;;:19;25201:183;;25244:56;25275:4;25281:2;25285:7;25294:5;25244:30;:56::i;:::-;25239:145;;25328:40;;;;;;;;;;;;;;25239:145;25201:183;24995:396;;;;:::o;44480:122::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44587:7:::1;44557:27;:37;;;;44480:122:::0;:::o;44246:104::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44335:7:::1;44314:18;:28;;;;44246:104:::0;:::o;21888:318::-;21961:13;21992:16;22000:7;21992;:16::i;:::-;21987:59;;22017:29;;;;;;;;;;;;;;21987:59;22059:21;22083:10;:8;:10::i;:::-;22059:34;;22136:1;22117:7;22111:21;:26;:87;;;;;;;;;;;;;;;;;22164:7;22173:18;22183:7;22173:9;:18::i;:::-;22147:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22111:87;22104:94;;;21888:318;;;:::o;42027:47::-;;;;:::o;41907:50::-;;;;:::o;24267:164::-;24364:4;24388:18;:25;24407:5;24388:25;;;;;;;;;;;;;;;:35;24414:8;24388:35;;;;;;;;;;;;;;;;;;;;;;;;;24381:42;;24267:164;;;;:::o;42260:51::-;;;;;;;;;;;;;:::o;2899:201::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3008:1:::1;2988:22;;:8;:22;;::::0;2980:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3064:28;3083:8;3064:18;:28::i;:::-;2899:201:::0;:::o;42507:47::-;;;;;;;;;;;;;;;;;:::o;25646:273::-;25703:4;25759:7;25740:15;:13;:15::i;:::-;:26;;:66;;;;;25793:13;;25783:7;:23;25740:66;:152;;;;;25891:1;13319:8;25844:17;:26;25862:7;25844:26;;;;;;;;;;;;:43;:48;25740:152;25720:172;;25646:273;;;:::o;18848:1129::-;18915:7;18935:12;18950:7;18935:22;;19018:4;18999:15;:13;:15::i;:::-;:23;18995:915;;19052:13;;19045:4;:20;19041:869;;;19090:14;19107:17;:23;19125:4;19107:23;;;;;;;;;;;;19090:40;;19223:1;13319:8;19196:6;:23;:28;19192:699;;19715:113;19732:1;19722:6;:11;19715:113;;19775:17;:25;19793:6;;;;;;;19775:25;;;;;;;;;;;;19766:34;;19715:113;;;19861:6;19854:13;;;;;;19192:699;19067:843;19041:869;18995:915;19938:31;;;;;;;;;;;;;;18848:1129;;;;:::o;39628:105::-;39688:7;39715:10;39708:17;;39628:105;:::o;714:98::-;767:7;794:10;787:17;;714:98;:::o;15108:92::-;15164:7;15108:92;:::o;30885:2515::-;31000:27;31030;31049:7;31030:18;:27::i;:::-;31000:57;;31115:4;31074:45;;31090:19;31074:45;;;31070:86;;31128:28;;;;;;;;;;;;;;31070:86;31169:22;31218:4;31195:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31239:43;31256:4;31262:19;:17;:19::i;:::-;31239:16;:43::i;:::-;31195:87;:147;;;;31323:19;:17;:19::i;:::-;31299:43;;:20;31311:7;31299:11;:20::i;:::-;:43;;;31195:147;31169:174;;31361:17;31356:66;;31387:35;;;;;;;;;;;;;;31356:66;31451:1;31437:16;;:2;:16;;;31433:52;;31462:23;;;;;;;;;;;;;;31433:52;31498:43;31520:4;31526:2;31530:7;31539:1;31498:21;:43::i;:::-;31614:15;:24;31630:7;31614:24;;;;;;;;;;;;31607:31;;;;;;;;;;;32006:18;:24;32025:4;32006:24;;;;;;;;;;;;;;;;32004:26;;;;;;;;;;;;32075:18;:22;32094:2;32075:22;;;;;;;;;;;;;;;;32073:24;;;;;;;;;;;13601:8;13203:3;32456:15;:41;;32414:21;32432:2;32414:17;:21::i;:::-;:84;:128;32368:17;:26;32386:7;32368:26;;;;;;;;;;;:174;;;;32712:1;13601:8;32662:19;:46;:51;32658:626;;32734:19;32766:1;32756:7;:11;32734:33;;32923:1;32889:17;:30;32907:11;32889:30;;;;;;;;;;;;:35;32885:384;;33027:13;;33012:11;:28;33008:242;;33207:19;33174:17;:30;33192:11;33174:30;;;;;;;;;;;:52;;;;33008:242;32885:384;32715:569;32658:626;33331:7;33327:2;33312:27;;33321:4;33312:27;;;;;;;;;;;;33350:42;33371:4;33377:2;33381:7;33390:1;33350:20;:42::i;:::-;30989:2411;;30885:2515;;;:::o;3260:191::-;3334:16;3353:6;;;;;;;;;;;3334:25;;3379:8;3370:6;;:17;;;;;;;;;;;;;;;;;;3434:8;3403:40;;3424:8;3403:40;;;;;;;;;;;;3323:128;3260:191;:::o;26003:104::-;26072:27;26082:2;26086:8;26072:27;;;;;;;;;;;;:9;:27::i;:::-;26003:104;;:::o;37097:716::-;37260:4;37306:2;37281:45;;;37327:19;:17;:19::i;:::-;37348:4;37354:7;37363:5;37281:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37277:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37581:1;37564:6;:13;:18;37560:235;;37610:40;;;;;;;;;;;;;;37560:235;37753:6;37747:13;37738:6;37734:2;37730:15;37723:38;37277:529;37450:54;;;37440:64;;;:6;:64;;;;37433:71;;;37097:716;;;;;;:::o;45056:114::-;45116:13;45149;45142:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45056:114;:::o;39839:1959::-;39896:17;40317:3;40310:4;40304:11;40300:21;40293:28;;40408:3;40402:4;40395:17;40514:3;40971:5;41101:1;41096:3;41092:11;41085:18;;41238:2;41232:4;41228:13;41224:2;41220:22;41215:3;41207:36;41279:2;41273:4;41269:13;41261:21;;40862:682;41298:4;40862:682;;;41473:1;41468:3;41464:11;41457:18;;41524:2;41518:4;41514:13;41510:2;41506:22;41501:3;41493:36;41394:2;41388:4;41384:13;41376:21;;40862:682;;;40866:431;41595:3;41590;41586:13;41710:2;41705:3;41701:12;41694:19;;41773:6;41768:3;41761:19;39935:1856;;39839:1959;;;:::o;38461:159::-;;;;;:::o;22633:148::-;22697:14;22758:5;22748:15;;22633:148;;;:::o;39279:158::-;;;;;:::o;26480:2236::-;26603:20;26626:13;;26603:36;;26668:1;26654:16;;:2;:16;;;26650:48;;26679:19;;;;;;;;;;;;;;26650:48;26725:1;26713:8;:13;26709:44;;26735:18;;;;;;;;;;;;;;26709:44;26766:61;26796:1;26800:2;26804:12;26818:8;26766:21;:61::i;:::-;27370:1;12686:2;27341:1;:25;;27340:31;27328:8;:44;27302:18;:22;27321:2;27302:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13466:3;27771:29;27798:1;27786:8;:13;27771:14;:29::i;:::-;:56;;13203:3;27708:15;:41;;27666:21;27684:2;27666:17;:21::i;:::-;:84;:162;27615:17;:31;27633:12;27615:31;;;;;;;;;;;:213;;;;27845:20;27868:12;27845:35;;27895:11;27924:8;27909:12;:23;27895:37;;27971:1;27953:2;:14;;;:19;27949:635;;27993:313;28049:12;28045:2;28024:38;;28041:1;28024:38;;;;;;;;;;;;28090:69;28129:1;28133:2;28137:14;;;;;;28153:5;28090:30;:69::i;:::-;28085:174;;28195:40;;;;;;;;;;;;;;28085:174;28301:3;28286:12;:18;27993:313;;28387:12;28370:13;;:29;28366:43;;28401:8;;;28366:43;27949:635;;;28450:119;28506:14;;;;;;28502:2;28481:40;;28498:1;28481:40;;;;;;;;;;;;28564:3;28549:12;:18;28450:119;;27949:635;28614:12;28598:13;:28;;;;27079:1559;;28648:60;28677:1;28681:2;28685:12;28699:8;28648:20;:60::i;:::-;26592:2124;26480:2236;;;:::o;22868:142::-;22926:14;22987:5;22977:15;;22868:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:182::-;12520:34;12516:1;12508:6;12504:14;12497:58;12380:182;:::o;12568:366::-;12710:3;12731:67;12795:2;12790:3;12731:67;:::i;:::-;12724:74;;12807:93;12896:3;12807:93;:::i;:::-;12925:2;12920:3;12916:12;12909:19;;12568:366;;;:::o;12940:419::-;13106:4;13144:2;13133:9;13129:18;13121:26;;13193:9;13187:4;13183:20;13179:1;13168:9;13164:17;13157:47;13221:131;13347:4;13221:131;:::i;:::-;13213:139;;12940:419;;;:::o;13365:180::-;13413:77;13410:1;13403:88;13510:4;13507:1;13500:15;13534:4;13531:1;13524:15;13551:191;13591:4;13611:20;13629:1;13611:20;:::i;:::-;13606:25;;13645:20;13663:1;13645:20;:::i;:::-;13640:25;;13684:1;13681;13678:8;13675:34;;;13689:18;;:::i;:::-;13675:34;13734:1;13731;13727:9;13719:17;;13551:191;;;;:::o;13748:226::-;13888:34;13884:1;13876:6;13872:14;13865:58;13957:9;13952:2;13944:6;13940:15;13933:34;13748:226;:::o;13980:366::-;14122:3;14143:67;14207:2;14202:3;14143:67;:::i;:::-;14136:74;;14219:93;14308:3;14219:93;:::i;:::-;14337:2;14332:3;14328:12;14321:19;;13980:366;;;:::o;14352:419::-;14518:4;14556:2;14545:9;14541:18;14533:26;;14605:9;14599:4;14595:20;14591:1;14580:9;14576:17;14569:47;14633:131;14759:4;14633:131;:::i;:::-;14625:139;;14352:419;;;:::o;14777:173::-;14917:25;14913:1;14905:6;14901:14;14894:49;14777:173;:::o;14956:366::-;15098:3;15119:67;15183:2;15178:3;15119:67;:::i;:::-;15112:74;;15195:93;15284:3;15195:93;:::i;:::-;15313:2;15308:3;15304:12;15297:19;;14956:366;;;:::o;15328:419::-;15494:4;15532:2;15521:9;15517:18;15509:26;;15581:9;15575:4;15571:20;15567:1;15556:9;15552:17;15545:47;15609:131;15735:4;15609:131;:::i;:::-;15601:139;;15328:419;;;:::o;15753:178::-;15893:30;15889:1;15881:6;15877:14;15870:54;15753:178;:::o;15937:366::-;16079:3;16100:67;16164:2;16159:3;16100:67;:::i;:::-;16093:74;;16176:93;16265:3;16176:93;:::i;:::-;16294:2;16289:3;16285:12;16278:19;;15937:366;;;:::o;16309:419::-;16475:4;16513:2;16502:9;16498:18;16490:26;;16562:9;16556:4;16552:20;16548:1;16537:9;16533:17;16526:47;16590:131;16716:4;16590:131;:::i;:::-;16582:139;;16309:419;;;:::o;16734:305::-;16774:3;16793:20;16811:1;16793:20;:::i;:::-;16788:25;;16827:20;16845:1;16827:20;:::i;:::-;16822:25;;16981:1;16913:66;16909:74;16906:1;16903:81;16900:107;;;16987:18;;:::i;:::-;16900:107;17031:1;17028;17024:9;17017:16;;16734:305;;;;:::o;17045:174::-;17185:26;17181:1;17173:6;17169:14;17162:50;17045:174;:::o;17225:366::-;17367:3;17388:67;17452:2;17447:3;17388:67;:::i;:::-;17381:74;;17464:93;17553:3;17464:93;:::i;:::-;17582:2;17577:3;17573:12;17566:19;;17225:366;;;:::o;17597:419::-;17763:4;17801:2;17790:9;17786:18;17778:26;;17850:9;17844:4;17840:20;17836:1;17825:9;17821:17;17814:47;17878:131;18004:4;17878:131;:::i;:::-;17870:139;;17597:419;;;:::o;18022:222::-;18162:34;18158:1;18150:6;18146:14;18139:58;18231:5;18226:2;18218:6;18214:15;18207:30;18022:222;:::o;18250:366::-;18392:3;18413:67;18477:2;18472:3;18413:67;:::i;:::-;18406:74;;18489:93;18578:3;18489:93;:::i;:::-;18607:2;18602:3;18598:12;18591:19;;18250:366;;;:::o;18622:419::-;18788:4;18826:2;18815:9;18811:18;18803:26;;18875:9;18869:4;18865:20;18861:1;18850:9;18846:17;18839:47;18903:131;19029:4;18903:131;:::i;:::-;18895:139;;18622:419;;;:::o;19047:348::-;19087:7;19110:20;19128:1;19110:20;:::i;:::-;19105:25;;19144:20;19162:1;19144:20;:::i;:::-;19139:25;;19332:1;19264:66;19260:74;19257:1;19254:81;19249:1;19242:9;19235:17;19231:105;19228:131;;;19339:18;;:::i;:::-;19228:131;19387:1;19384;19380:9;19369:20;;19047:348;;;;:::o;19401:168::-;19541:20;19537:1;19529:6;19525:14;19518:44;19401:168;:::o;19575:366::-;19717:3;19738:67;19802:2;19797:3;19738:67;:::i;:::-;19731:74;;19814:93;19903:3;19814:93;:::i;:::-;19932:2;19927:3;19923:12;19916:19;;19575:366;;;:::o;19947:419::-;20113:4;20151:2;20140:9;20136:18;20128:26;;20200:9;20194:4;20190:20;20186:1;20175:9;20171:17;20164:47;20228:131;20354:4;20228:131;:::i;:::-;20220:139;;19947:419;;;:::o;20372:169::-;20512:21;20508:1;20500:6;20496:14;20489:45;20372:169;:::o;20547:366::-;20689:3;20710:67;20774:2;20769:3;20710:67;:::i;:::-;20703:74;;20786:93;20875:3;20786:93;:::i;:::-;20904:2;20899:3;20895:12;20888:19;;20547:366;;;:::o;20919:419::-;21085:4;21123:2;21112:9;21108:18;21100:26;;21172:9;21166:4;21162:20;21158:1;21147:9;21143:17;21136:47;21200:131;21326:4;21200:131;:::i;:::-;21192:139;;20919:419;;;:::o;21344:180::-;21484:32;21480:1;21472:6;21468:14;21461:56;21344:180;:::o;21530:366::-;21672:3;21693:67;21757:2;21752:3;21693:67;:::i;:::-;21686:74;;21769:93;21858:3;21769:93;:::i;:::-;21887:2;21882:3;21878:12;21871:19;;21530:366;;;:::o;21902:419::-;22068:4;22106:2;22095:9;22091:18;22083:26;;22155:9;22149:4;22145:20;22141:1;22130:9;22126:17;22119:47;22183:131;22309:4;22183:131;:::i;:::-;22175:139;;21902:419;;;:::o;22327:170::-;22467:22;22463:1;22455:6;22451:14;22444:46;22327:170;:::o;22503:366::-;22645:3;22666:67;22730:2;22725:3;22666:67;:::i;:::-;22659:74;;22742:93;22831:3;22742:93;:::i;:::-;22860:2;22855:3;22851:12;22844:19;;22503:366;;;:::o;22875:419::-;23041:4;23079:2;23068:9;23064:18;23056:26;;23128:9;23122:4;23118:20;23114:1;23103:9;23099:17;23092:47;23156:131;23282:4;23156:131;:::i;:::-;23148:139;;22875:419;;;:::o;23300:147::-;23401:11;23438:3;23423:18;;23300:147;;;;:::o;23453:114::-;;:::o;23573:398::-;23732:3;23753:83;23834:1;23829:3;23753:83;:::i;:::-;23746:90;;23845:93;23934:3;23845:93;:::i;:::-;23963:1;23958:3;23954:11;23947:18;;23573:398;;;:::o;23977:379::-;24161:3;24183:147;24326:3;24183:147;:::i;:::-;24176:154;;24347:3;24340:10;;23977:379;;;:::o;24362:166::-;24502:18;24498:1;24490:6;24486:14;24479:42;24362:166;:::o;24534:366::-;24676:3;24697:67;24761:2;24756:3;24697:67;:::i;:::-;24690:74;;24773:93;24862:3;24773:93;:::i;:::-;24891:2;24886:3;24882:12;24875:19;;24534:366;;;:::o;24906:419::-;25072:4;25110:2;25099:9;25095:18;25087:26;;25159:9;25153:4;25149:20;25145:1;25134:9;25130:17;25123:47;25187:131;25313:4;25187:131;:::i;:::-;25179:139;;24906:419;;;:::o;25331:148::-;25433:11;25470:3;25455:18;;25331:148;;;;:::o;25485:377::-;25591:3;25619:39;25652:5;25619:39;:::i;:::-;25674:89;25756:6;25751:3;25674:89;:::i;:::-;25667:96;;25772:52;25817:6;25812:3;25805:4;25798:5;25794:16;25772:52;:::i;:::-;25849:6;25844:3;25840:16;25833:23;;25595:267;25485:377;;;;:::o;25868:435::-;26048:3;26070:95;26161:3;26152:6;26070:95;:::i;:::-;26063:102;;26182:95;26273:3;26264:6;26182:95;:::i;:::-;26175:102;;26294:3;26287:10;;25868:435;;;;;:::o;26309:225::-;26449:34;26445:1;26437:6;26433:14;26426:58;26518:8;26513:2;26505:6;26501:15;26494:33;26309:225;:::o;26540:366::-;26682:3;26703:67;26767:2;26762:3;26703:67;:::i;:::-;26696:74;;26779:93;26868:3;26779:93;:::i;:::-;26897:2;26892:3;26888:12;26881:19;;26540:366;;;:::o;26912:419::-;27078:4;27116:2;27105:9;27101:18;27093:26;;27165:9;27159:4;27155:20;27151:1;27140:9;27136:17;27129:47;27193:131;27319:4;27193:131;:::i;:::-;27185:139;;26912:419;;;:::o;27337:98::-;27388:6;27422:5;27416:12;27406:22;;27337:98;;;:::o;27441:168::-;27524:11;27558:6;27553:3;27546:19;27598:4;27593:3;27589:14;27574:29;;27441:168;;;;:::o;27615:360::-;27701:3;27729:38;27761:5;27729:38;:::i;:::-;27783:70;27846:6;27841:3;27783:70;:::i;:::-;27776:77;;27862:52;27907:6;27902:3;27895:4;27888:5;27884:16;27862:52;:::i;:::-;27939:29;27961:6;27939:29;:::i;:::-;27934:3;27930:39;27923:46;;27705:270;27615:360;;;;:::o;27981:640::-;28176:4;28214:3;28203:9;28199:19;28191:27;;28228:71;28296:1;28285:9;28281:17;28272:6;28228:71;:::i;:::-;28309:72;28377:2;28366:9;28362:18;28353:6;28309:72;:::i;:::-;28391;28459:2;28448:9;28444:18;28435:6;28391:72;:::i;:::-;28510:9;28504:4;28500:20;28495:2;28484:9;28480:18;28473:48;28538:76;28609:4;28600:6;28538:76;:::i;:::-;28530:84;;27981:640;;;;;;;:::o;28627:141::-;28683:5;28714:6;28708:13;28699:22;;28730:32;28756:5;28730:32;:::i;:::-;28627:141;;;;:::o;28774:349::-;28843:6;28892:2;28880:9;28871:7;28867:23;28863:32;28860:119;;;28898:79;;:::i;:::-;28860:119;29018:1;29043:63;29098:7;29089:6;29078:9;29074:22;29043:63;:::i;:::-;29033:73;;28989:127;28774:349;;;;:::o

Swarm Source

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