ETH Price: $2,981.61 (+1.72%)
Gas: 1 Gwei

Token

The Rulers of the Skies (RTS)
 

Overview

Max Total Supply

1,616 RTS

Holders

601

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jasonscripton.eth
Balance
2 RTS
0xa427fa55945b55665258da177c533b960ef00169
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:
TheRulersOfTheSkies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : TheRulersOfTheSkies.sol
// SPDX-License-Identifier: GPL-3.0

/*
 ____        _                        __   _   _            ____  _    _           
|  _ \ _   _| | ___ _ __ ___    ___  / _| | |_| |__   ___  / ___|| | _(_) ___  ___ 
| |_) | | | | |/ _ \ '__/ __|  / _ \| |_  | __| '_ \ / _ \ \___ \| |/ / |/ _ \/ __|
|  _ <| |_| | |  __/ |  \__ \ | (_) |  _| | |_| | | |  __/  ___) |   <| |  __/\__ \
|_| \_\\__,_|_|\___|_|  |___/  \___/|_|    \__|_| |_|\___| |____/|_|\_\_|\___||___/

*/

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

pragma solidity ^0.8.0;

abstract contract ReentrancyGuard {
    
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

        _status = _NOT_ENTERED;
    }
}


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


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

pragma solidity ^0.8.0;

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

    function toString(uint256 value) internal pure returns (string memory) {

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

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

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

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


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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

interface IERC721Receiver {
  
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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);

  
    function ownerOf(uint256 tokenId) external view returns (address owner);


    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

  
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

 
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;


    function approve(address to, uint256 tokenId) external;


    function setApprovalForAll(address operator, bool _approved) external;


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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * 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();

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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


// File: erc721a/contracts/ERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @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 Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    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();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].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 {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString())) : '';
    }

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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.isContract()) 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 && !_ownerships[tokenId].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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

            if (to.isContract()) {
                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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }


    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

 
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}


    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

//Moondust contract function call
interface Moondust {
  function burn(uint256 tokenId) external;
  function balanceOf(address owner) external view returns (uint256 balance);
}

// File: contracts/TheRulersOfTheSkies.sol

pragma solidity >= 0.8.0 < 0.9.0;

contract TheRulersOfTheSkies is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  string public uriPrefix;
  string public uriSuffix = ".json";
  
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 2222;

  bool public paused = false;
  bool public burnEnabled = true;
  bool public getBalance = false;

  mapping(address => bool) public balanceStored;
  mapping(address => uint256) public addressDustBalance;
  mapping(address => uint256) public addressMintedBalance;

  address public parentAddress = 0x0B3B95547A22bee3c03Be558eC649dbd69Af8476;
  Moondust MoondustContract = Moondust(parentAddress);

  constructor() ERC721A ( "The Rulers of the Skies", "RTS" ) {
    setUriPrefix( "ipfs://QmQzAJDnZAF8P7zTUBb7P81WVHZCz4bruqUC4azzrtge9c/" );
  }


// ~~~~~~~~~~~~~~~~~~~~ Modifiers ~~~~~~~~~~~~~~~~~~~~
  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0, "Mint amount can't be zero.");
    require(totalSupply() + _mintAmount <= maxSupply, "Mint amount exceeds max supply!");
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    _;
  }

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


// ~~~~~~~~~~~~~~~~~~~~ Burn Dust Amount ~~~~~~~~~~~~~~~~~~~~ X
  function BurnDustAmount(uint[] calldata tokenId) external {
    require(burnEnabled == true, "Burn is not active.");

    for (uint i = 0; i < tokenId.length; i++) {
        MoondustContract.burn(tokenId[i]);
        }

    addressDustBalance[msg.sender] += tokenId.length;
  }


// ~~~~~~~~~~~~~~~~~~~~ MINT Functions ~~~~~~~~~~~~~~~~~~~~
  // MINT
  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(addressDustBalance[msg.sender] >= _mintAmount * 3, "Not enough MoonDust for mint");

    addressMintedBalance[msg.sender] += _mintAmount;
    addressDustBalance[msg.sender] -= _mintAmount * 3;
    _safeMint(msg.sender, _mintAmount);
  }


  // MINT for address
  function mintToAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, "Mint amount exceeds max supply!");
    _safeMint(_receiver, _mintAmount);
  }


// ~~~~~~~~~~~~~~~~~~~~ Call address dust balance ~~~~~~~~~~~~~~~~~~~~
  function getDustBalance() public {
    require(getBalance == true, "Get balance is not active yet.");
    require(balanceStored[msg.sender] == false, "Address balance already set.");
    uint _dustBalance = MoondustContract.balanceOf(msg.sender);

    addressDustBalance[msg.sender] += _dustBalance;
    balanceStored[msg.sender] = true;
  }


// ~~~~~~~~~~~~~~~~~~~~ Checks ~~~~~~~~~~~~~~~~~~~~
  // Check Wallet assets
  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned) {
        if (ownership.addr != address(0)) {
          latestOwnerAddress = ownership.addr;
        }

        if (latestOwnerAddress == _owner) {
          ownedTokenIds[ownedTokenIndex] = currentTokenId;
          ownedTokenIndex++;
        }
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }

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

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

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

  // Only owner
  function addressBalance(uint _amount, address _address) public onlyOwner {
      addressDustBalance[_address] = _amount;
  }
  
  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setBurnState(bool _state) public onlyOwner {
    burnEnabled = _state;
  }

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"uint256[]","name":"tokenId","type":"uint256[]"}],"name":"BurnDustAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"addressBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressDustBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceStored","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDustBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","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":"parentAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setBurnState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200042e565b506000600c556108ae600d556000600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff021916908315150217905550730b3b95547a22bee3c03be558ec649dbd69af8476601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200017357600080fd5b506040518060400160405280601781526020017f5468652052756c657273206f662074686520536b6965730000000000000000008152506040518060400160405280600381526020017f52545300000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001f89291906200042e565b508060039080519060200190620002119291906200042e565b50620002226200028260201b60201c565b60008190555050506200024a6200023e6200028b60201b60201c565b6200029360201b60201c565b60016009819055506200027c60405180606001604052806036815260200162004ce3603691396200035960201b60201c565b620005c6565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003696200028b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200038f6200040460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003df9062000505565b60405180910390fd5b80600a9080519060200190620004009291906200042e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200043c9062000538565b90600052602060002090601f016020900481019282620004605760008555620004ac565b82601f106200047b57805160ff1916838001178555620004ac565b82800160010185558215620004ac579182015b82811115620004ab5782518255916020019190600101906200048e565b5b509050620004bb9190620004bf565b5090565b5b80821115620004da576000816000905550600101620004c0565b5090565b6000620004ed60208362000527565b9150620004fa826200059d565b602082019050919050565b600060208201905081810360008301526200052081620004de565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200055157607f821691505b602082108114156200056857620005676200056e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61470d80620005d66000396000f3fe60806040526004361061022f5760003560e01c80635c975abb1161012e5780639a739ab4116100ab578063c87b56dd1161006f578063c87b56dd1461082b578063c9ab358614610868578063d5abeb011461087f578063e985e9c5146108aa578063f2fde38b146108e75761022f565b80639a739ab41461076b578063a0712d6814610794578063a22cb465146107b0578063aee00b7c146107d9578063b88d4fde146108025761022f565b806370a08231116100f257806370a0823114610698578063715018a6146106d55780637ec4a659146106ec5780638da5cb5b1461071557806395d89b41146107405761022f565b80635c975abb146105b15780635ce289ba146105dc5780635dc96d161461060557806362b99ad4146106305780636352211e1461065b5761022f565b806318cae269116101bc57806344a0d68a1161018057806344a0d68a146104ba5780634a204d30146104e35780634dddf85614610520578063512b658d1461055d5780635503a0e8146105865761022f565b806318cae269146103d757806323b872dd146104145780633ccfd60b1461043d57806342842e0e14610454578063438b63001461047d5761022f565b8063095ea7b311610203578063095ea7b31461030457806312065fe01461032d57806313faede61461035857806316c38b3c1461038357806318160ddd146103ac5761022f565b8062821de31461023457806301ffc9a71461025f57806306fdde031461029c578063081812fc146102c7575b600080fd5b34801561024057600080fd5b50610249610910565b6040516102569190613cfa565b60405180910390f35b34801561026b57600080fd5b50610286600480360381019061028191906137dc565b610936565b6040516102939190613d83565b60405180910390f35b3480156102a857600080fd5b506102b1610a18565b6040516102be9190613d9e565b60405180910390f35b3480156102d357600080fd5b506102ee60048036038101906102e9919061387f565b610aaa565b6040516102fb9190613cfa565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613722565b610b26565b005b34801561033957600080fd5b50610342610c2b565b60405161034f9190613d83565b60405180910390f35b34801561036457600080fd5b5061036d610c3e565b60405161037a9190613f40565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a591906137af565b610c44565b005b3480156103b857600080fd5b506103c1610cdd565b6040516103ce9190613f40565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f9919061359f565b610cf4565b60405161040b9190613f40565b60405180910390f35b34801561042057600080fd5b5061043b6004803603810190610436919061360c565b610d0c565b005b34801561044957600080fd5b50610452610d1c565b005b34801561046057600080fd5b5061047b6004803603810190610476919061360c565b610e6e565b005b34801561048957600080fd5b506104a4600480360381019061049f919061359f565b610e8e565b6040516104b19190613d61565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc919061387f565b6110a2565b005b3480156104ef57600080fd5b5061050a6004803603810190610505919061359f565b611128565b6040516105179190613f40565b60405180910390f35b34801561052c57600080fd5b506105476004803603810190610542919061359f565b611140565b6040516105549190613d83565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f91906138d9565b611160565b005b34801561059257600080fd5b5061059b611241565b6040516105a89190613d9e565b60405180910390f35b3480156105bd57600080fd5b506105c66112cf565b6040516105d39190613d83565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe91906137af565b6112e2565b005b34801561061157600080fd5b5061061a61137b565b6040516106279190613d83565b60405180910390f35b34801561063c57600080fd5b5061064561138e565b6040516106529190613d9e565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d919061387f565b61141c565b60405161068f9190613cfa565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba919061359f565b611432565b6040516106cc9190613f40565b60405180910390f35b3480156106e157600080fd5b506106ea611502565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613836565b61158a565b005b34801561072157600080fd5b5061072a611620565b6040516107379190613cfa565b60405180910390f35b34801561074c57600080fd5b5061075561164a565b6040516107629190613d9e565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d91906138d9565b6116dc565b005b6107ae60048036038101906107a9919061387f565b6117a0565b005b3480156107bc57600080fd5b506107d760048036038101906107d291906136e2565b611a31565b005b3480156107e557600080fd5b5061080060048036038101906107fb9190613762565b611ba9565b005b34801561080e57600080fd5b506108296004803603810190610824919061365f565b611d24565b005b34801561083757600080fd5b50610852600480360381019061084d919061387f565b611d9c565b60405161085f9190613d9e565b60405180910390f35b34801561087457600080fd5b5061087d611e46565b005b34801561088b57600080fd5b5061089461208f565b6040516108a19190613f40565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc91906135cc565b612095565b6040516108de9190613d83565b60405180910390f35b3480156108f357600080fd5b5061090e6004803603810190610909919061359f565b612129565b005b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a115750610a1082612221565b5b9050919050565b606060028054610a2790614249565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5390614249565b8015610aa05780601f10610a7557610100808354040283529160200191610aa0565b820191906000526020600020905b815481529060010190602001808311610a8357829003601f168201915b5050505050905090565b6000610ab58261228b565b610aeb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b318261141c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b99576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb86122d9565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b57610be481610bdf6122d9565b612095565b610c1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610c268383836122e1565b505050565b600e60029054906101000a900460ff1681565b600c5481565b610c4c6122d9565b73ffffffffffffffffffffffffffffffffffffffff16610c6a611620565b73ffffffffffffffffffffffffffffffffffffffff1614610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613e60565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610ce7612393565b6001546000540303905090565b60116020528060005260406000206000915090505481565b610d1783838361239c565b505050565b610d246122d9565b73ffffffffffffffffffffffffffffffffffffffff16610d42611620565b73ffffffffffffffffffffffffffffffffffffffff1614610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613e60565b60405180910390fd5b60026009541415610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613ee0565b60405180910390fd5b60026009819055506000610df0611620565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e1390613ce5565b60006040518083038185875af1925050503d8060008114610e50576040519150601f19603f3d011682016040523d82523d6000602084013e610e55565b606091505b5050905080610e6357600080fd5b506001600981905550565b610e8983838360405180602001604052806000815250611d24565b505050565b60606000610e9b83611432565b905060008167ffffffffffffffff811115610eb957610eb86143e2565b5b604051908082528060200260200182016040528015610ee75781602001602082028036833780820191505090505b5090506000610ef4612393565b90506000805b8482108015610f0a575060005483105b15611095576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161108157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461101d57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110805783858481518110611065576110646143b3565b5b602002602001018181525050828061107c906142ac565b9350505b5b838061108c906142ac565b94505050610efa565b8395505050505050919050565b6110aa6122d9565b73ffffffffffffffffffffffffffffffffffffffff166110c8611620565b73ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590613e60565b60405180910390fd5b80600c8190555050565b60106020528060005260406000206000915090505481565b600f6020528060005260406000206000915054906101000a900460ff1681565b6111686122d9565b73ffffffffffffffffffffffffffffffffffffffff16611186611620565b73ffffffffffffffffffffffffffffffffffffffff16146111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390613e60565b60405180910390fd5b600d54826111e8610cdd565b6111f2919061407e565b1115611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90613e20565b60405180910390fd5b61123d8183612852565b5050565b600b805461124e90614249565b80601f016020809104026020016040519081016040528092919081815260200182805461127a90614249565b80156112c75780601f1061129c576101008083540402835291602001916112c7565b820191906000526020600020905b8154815290600101906020018083116112aa57829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b6112ea6122d9565b73ffffffffffffffffffffffffffffffffffffffff16611308611620565b73ffffffffffffffffffffffffffffffffffffffff161461135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590613e60565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b600e60019054906101000a900460ff1681565b600a805461139b90614249565b80601f01602080910402602001604051908101604052809291908181526020018280546113c790614249565b80156114145780601f106113e957610100808354040283529160200191611414565b820191906000526020600020905b8154815290600101906020018083116113f757829003601f168201915b505050505081565b600061142782612870565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561149a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61150a6122d9565b73ffffffffffffffffffffffffffffffffffffffff16611528611620565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590613e60565b60405180910390fd5b6115886000612afb565b565b6115926122d9565b73ffffffffffffffffffffffffffffffffffffffff166115b0611620565b73ffffffffffffffffffffffffffffffffffffffff1614611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90613e60565b60405180910390fd5b80600a908051906020019061161c929190613305565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461165990614249565b80601f016020809104026020016040519081016040528092919081815260200182805461168590614249565b80156116d25780601f106116a7576101008083540402835291602001916116d2565b820191906000526020600020905b8154815290600101906020018083116116b557829003601f168201915b5050505050905090565b6116e46122d9565b73ffffffffffffffffffffffffffffffffffffffff16611702611620565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90613e60565b60405180910390fd5b81601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b80600081116117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db90613e40565b60405180910390fd5b600d54816117f0610cdd565b6117fa919061407e565b111561183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613e20565b60405180910390fd5b8180600c5461184a9190614105565b34101561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390613f20565b60405180910390fd5b600e60009054906101000a900460ff16156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390613e80565b60405180910390fd5b6003836118e99190614105565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190613ea0565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b9919061407e565b925050819055506003836119cd9190614105565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a1b919061415f565b92505081905550611a2c3384612852565b505050565b611a396122d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a9e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611aab6122d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b586122d9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b9d9190613d83565b60405180910390a35050565b60011515600e60019054906101000a900460ff16151514611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690613ec0565b60405180910390fd5b60005b82829050811015611cc657601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68848484818110611c5e57611c5d6143b3565b5b905060200201356040518263ffffffff1660e01b8152600401611c819190613f40565b600060405180830381600087803b158015611c9b57600080fd5b505af1158015611caf573d6000803e3d6000fd5b505050508080611cbe906142ac565b915050611c02565b5081819050601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d19919061407e565b925050819055505050565b611d2f84848461239c565b611d4e8373ffffffffffffffffffffffffffffffffffffffff16612bc1565b15611d9657611d5f84848484612be4565b611d95576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611da78261228b565b611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd90613f00565b60405180910390fd5b6000611df0612d44565b90506000815111611e105760405180602001604052806000815250611e3e565b80611e1a84612dd6565b600b604051602001611e2e93929190613cb4565b6040516020818303038152906040525b915050919050565b60011515600e60029054906101000a900460ff16151514611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390613dc0565b60405180910390fd5b60001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2690613e00565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611f8c9190613cfa565b60206040518083038186803b158015611fa457600080fd5b505afa158015611fb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fdc91906138ac565b905080601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461202d919061407e565b925050819055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121316122d9565b73ffffffffffffffffffffffffffffffffffffffff1661214f611620565b73ffffffffffffffffffffffffffffffffffffffff16146121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90613e60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c90613de0565b60405180910390fd5b61221e81612afb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612296612393565b111580156122a5575060005482105b80156122d2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006123a782612870565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612412576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124336122d9565b73ffffffffffffffffffffffffffffffffffffffff16148061246257506124618561245c6122d9565b612095565b5b806124a757506124706122d9565b73ffffffffffffffffffffffffffffffffffffffff1661248f84610aaa565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124e0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612547576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125548585856001612f37565b612560600084876122e1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127e05760005482146127df57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461284b8585856001612f3d565b5050505050565b61286c828260405180602001604052806000815250612f43565b5050565b61287861338b565b600082905080612886612393565b11612ac457600054811015612ac3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ac157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129a5578092505050612af6565b5b600115612ac057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612abb578092505050612af6565b6129a6565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c0a6122d9565b8786866040518563ffffffff1660e01b8152600401612c2c9493929190613d15565b602060405180830381600087803b158015612c4657600080fd5b505af1925050508015612c7757506040513d601f19601f82011682018060405250810190612c749190613809565b60015b612cf1573d8060008114612ca7576040519150601f19603f3d011682016040523d82523d6000602084013e612cac565b606091505b50600081511415612ce9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612d5390614249565b80601f0160208091040260200160405190810160405280929190818152602001828054612d7f90614249565b8015612dcc5780601f10612da157610100808354040283529160200191612dcc565b820191906000526020600020905b815481529060010190602001808311612daf57829003601f168201915b5050505050905090565b60606000821415612e1e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f32565b600082905060005b60008214612e50578080612e39906142ac565b915050600a82612e4991906140d4565b9150612e26565b60008167ffffffffffffffff811115612e6c57612e6b6143e2565b5b6040519080825280601f01601f191660200182016040528015612e9e5781602001600182028036833780820191505090505b5090505b60008514612f2b57600182612eb7919061415f565b9150600a85612ec691906142f5565b6030612ed2919061407e565b60f81b818381518110612ee857612ee76143b3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f2491906140d4565b9450612ea2565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fb0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612feb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ff86000858386612f37565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506131b98673ffffffffffffffffffffffffffffffffffffffff16612bc1565b1561327e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461322e6000878480600101955087612be4565b613264576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106131bf57826000541461327957600080fd5b6132e9565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061327f575b8160008190555050506132ff6000858386612f3d565b50505050565b82805461331190614249565b90600052602060002090601f016020900481019282613333576000855561337a565b82601f1061334c57805160ff191683800117855561337a565b8280016001018555821561337a579182015b8281111561337957825182559160200191906001019061335e565b5b50905061338791906133ce565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156133e75760008160009055506001016133cf565b5090565b60006133fe6133f984613f80565b613f5b565b90508281526020810184848401111561341a57613419614420565b5b613425848285614207565b509392505050565b600061344061343b84613fb1565b613f5b565b90508281526020810184848401111561345c5761345b614420565b5b613467848285614207565b509392505050565b60008135905061347e8161467b565b92915050565b60008083601f84011261349a57613499614416565b5b8235905067ffffffffffffffff8111156134b7576134b6614411565b5b6020830191508360208202830111156134d3576134d261441b565b5b9250929050565b6000813590506134e981614692565b92915050565b6000813590506134fe816146a9565b92915050565b600081519050613513816146a9565b92915050565b600082601f83011261352e5761352d614416565b5b813561353e8482602086016133eb565b91505092915050565b600082601f83011261355c5761355b614416565b5b813561356c84826020860161342d565b91505092915050565b600081359050613584816146c0565b92915050565b600081519050613599816146c0565b92915050565b6000602082840312156135b5576135b461442a565b5b60006135c38482850161346f565b91505092915050565b600080604083850312156135e3576135e261442a565b5b60006135f18582860161346f565b92505060206136028582860161346f565b9150509250929050565b6000806000606084860312156136255761362461442a565b5b60006136338682870161346f565b93505060206136448682870161346f565b925050604061365586828701613575565b9150509250925092565b600080600080608085870312156136795761367861442a565b5b60006136878782880161346f565b94505060206136988782880161346f565b93505060406136a987828801613575565b925050606085013567ffffffffffffffff8111156136ca576136c9614425565b5b6136d687828801613519565b91505092959194509250565b600080604083850312156136f9576136f861442a565b5b60006137078582860161346f565b9250506020613718858286016134da565b9150509250929050565b600080604083850312156137395761373861442a565b5b60006137478582860161346f565b925050602061375885828601613575565b9150509250929050565b600080602083850312156137795761377861442a565b5b600083013567ffffffffffffffff81111561379757613796614425565b5b6137a385828601613484565b92509250509250929050565b6000602082840312156137c5576137c461442a565b5b60006137d3848285016134da565b91505092915050565b6000602082840312156137f2576137f161442a565b5b6000613800848285016134ef565b91505092915050565b60006020828403121561381f5761381e61442a565b5b600061382d84828501613504565b91505092915050565b60006020828403121561384c5761384b61442a565b5b600082013567ffffffffffffffff81111561386a57613869614425565b5b61387684828501613547565b91505092915050565b6000602082840312156138955761389461442a565b5b60006138a384828501613575565b91505092915050565b6000602082840312156138c2576138c161442a565b5b60006138d08482850161358a565b91505092915050565b600080604083850312156138f0576138ef61442a565b5b60006138fe85828601613575565b925050602061390f8582860161346f565b9150509250929050565b60006139258383613c96565b60208301905092915050565b61393a81614193565b82525050565b600061394b82614007565b6139558185614035565b935061396083613fe2565b8060005b838110156139915781516139788882613919565b975061398383614028565b925050600181019050613964565b5085935050505092915050565b6139a7816141a5565b82525050565b60006139b882614012565b6139c28185614046565b93506139d2818560208601614216565b6139db8161442f565b840191505092915050565b60006139f18261401d565b6139fb8185614062565b9350613a0b818560208601614216565b613a148161442f565b840191505092915050565b6000613a2a8261401d565b613a348185614073565b9350613a44818560208601614216565b80840191505092915050565b60008154613a5d81614249565b613a678186614073565b94506001821660008114613a825760018114613a9357613ac6565b60ff19831686528186019350613ac6565b613a9c85613ff2565b60005b83811015613abe57815481890152600182019150602081019050613a9f565b838801955050505b50505092915050565b6000613adc601e83614062565b9150613ae782614440565b602082019050919050565b6000613aff602683614062565b9150613b0a82614469565b604082019050919050565b6000613b22601c83614062565b9150613b2d826144b8565b602082019050919050565b6000613b45601f83614062565b9150613b50826144e1565b602082019050919050565b6000613b68601a83614062565b9150613b738261450a565b602082019050919050565b6000613b8b602083614062565b9150613b9682614533565b602082019050919050565b6000613bae601783614062565b9150613bb98261455c565b602082019050919050565b6000613bd1601c83614062565b9150613bdc82614585565b602082019050919050565b6000613bf4600083614057565b9150613bff826145ae565b600082019050919050565b6000613c17601383614062565b9150613c22826145b1565b602082019050919050565b6000613c3a601f83614062565b9150613c45826145da565b602082019050919050565b6000613c5d603083614062565b9150613c6882614603565b604082019050919050565b6000613c80601383614062565b9150613c8b82614652565b602082019050919050565b613c9f816141fd565b82525050565b613cae816141fd565b82525050565b6000613cc08286613a1f565b9150613ccc8285613a1f565b9150613cd88284613a50565b9150819050949350505050565b6000613cf082613be7565b9150819050919050565b6000602082019050613d0f6000830184613931565b92915050565b6000608082019050613d2a6000830187613931565b613d376020830186613931565b613d446040830185613ca5565b8181036060830152613d5681846139ad565b905095945050505050565b60006020820190508181036000830152613d7b8184613940565b905092915050565b6000602082019050613d98600083018461399e565b92915050565b60006020820190508181036000830152613db881846139e6565b905092915050565b60006020820190508181036000830152613dd981613acf565b9050919050565b60006020820190508181036000830152613df981613af2565b9050919050565b60006020820190508181036000830152613e1981613b15565b9050919050565b60006020820190508181036000830152613e3981613b38565b9050919050565b60006020820190508181036000830152613e5981613b5b565b9050919050565b60006020820190508181036000830152613e7981613b7e565b9050919050565b60006020820190508181036000830152613e9981613ba1565b9050919050565b60006020820190508181036000830152613eb981613bc4565b9050919050565b60006020820190508181036000830152613ed981613c0a565b9050919050565b60006020820190508181036000830152613ef981613c2d565b9050919050565b60006020820190508181036000830152613f1981613c50565b9050919050565b60006020820190508181036000830152613f3981613c73565b9050919050565b6000602082019050613f556000830184613ca5565b92915050565b6000613f65613f76565b9050613f71828261427b565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9b57613f9a6143e2565b5b613fa48261442f565b9050602081019050919050565b600067ffffffffffffffff821115613fcc57613fcb6143e2565b5b613fd58261442f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614089826141fd565b9150614094836141fd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140c9576140c8614326565b5b828201905092915050565b60006140df826141fd565b91506140ea836141fd565b9250826140fa576140f9614355565b5b828204905092915050565b6000614110826141fd565b915061411b836141fd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561415457614153614326565b5b828202905092915050565b600061416a826141fd565b9150614175836141fd565b92508282101561418857614187614326565b5b828203905092915050565b600061419e826141dd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614234578082015181840152602081019050614219565b83811115614243576000848401525b50505050565b6000600282049050600182168061426157607f821691505b6020821081141561427557614274614384565b5b50919050565b6142848261442f565b810181811067ffffffffffffffff821117156142a3576142a26143e2565b5b80604052505050565b60006142b7826141fd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142ea576142e9614326565b5b600182019050919050565b6000614300826141fd565b915061430b836141fd565b92508261431b5761431a614355565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4765742062616c616e6365206973206e6f7420616374697665207965742e0000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573732062616c616e636520616c7265616479207365742e00000000600082015250565b7f4d696e7420616d6f756e742065786365656473206d617820737570706c792100600082015250565b7f4d696e7420616d6f756e742063616e2774206265207a65726f2e000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4e6f7420656e6f756768204d6f6f6e4475737420666f72206d696e7400000000600082015250565b50565b7f4275726e206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61468481614193565b811461468f57600080fd5b50565b61469b816141a5565b81146146a657600080fd5b50565b6146b2816141b1565b81146146bd57600080fd5b50565b6146c9816141fd565b81146146d457600080fd5b5056fea2646970667358221220eb3dc8cfacccb6808b9683e865fc5595fe31c3be49d1dca13dc05293579ec4f164736f6c63430008070033697066733a2f2f516d517a414a446e5a41463850377a54554262375038315756485a437a3462727571554334617a7a7274676539632f

Deployed Bytecode

0x60806040526004361061022f5760003560e01c80635c975abb1161012e5780639a739ab4116100ab578063c87b56dd1161006f578063c87b56dd1461082b578063c9ab358614610868578063d5abeb011461087f578063e985e9c5146108aa578063f2fde38b146108e75761022f565b80639a739ab41461076b578063a0712d6814610794578063a22cb465146107b0578063aee00b7c146107d9578063b88d4fde146108025761022f565b806370a08231116100f257806370a0823114610698578063715018a6146106d55780637ec4a659146106ec5780638da5cb5b1461071557806395d89b41146107405761022f565b80635c975abb146105b15780635ce289ba146105dc5780635dc96d161461060557806362b99ad4146106305780636352211e1461065b5761022f565b806318cae269116101bc57806344a0d68a1161018057806344a0d68a146104ba5780634a204d30146104e35780634dddf85614610520578063512b658d1461055d5780635503a0e8146105865761022f565b806318cae269146103d757806323b872dd146104145780633ccfd60b1461043d57806342842e0e14610454578063438b63001461047d5761022f565b8063095ea7b311610203578063095ea7b31461030457806312065fe01461032d57806313faede61461035857806316c38b3c1461038357806318160ddd146103ac5761022f565b8062821de31461023457806301ffc9a71461025f57806306fdde031461029c578063081812fc146102c7575b600080fd5b34801561024057600080fd5b50610249610910565b6040516102569190613cfa565b60405180910390f35b34801561026b57600080fd5b50610286600480360381019061028191906137dc565b610936565b6040516102939190613d83565b60405180910390f35b3480156102a857600080fd5b506102b1610a18565b6040516102be9190613d9e565b60405180910390f35b3480156102d357600080fd5b506102ee60048036038101906102e9919061387f565b610aaa565b6040516102fb9190613cfa565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613722565b610b26565b005b34801561033957600080fd5b50610342610c2b565b60405161034f9190613d83565b60405180910390f35b34801561036457600080fd5b5061036d610c3e565b60405161037a9190613f40565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a591906137af565b610c44565b005b3480156103b857600080fd5b506103c1610cdd565b6040516103ce9190613f40565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f9919061359f565b610cf4565b60405161040b9190613f40565b60405180910390f35b34801561042057600080fd5b5061043b6004803603810190610436919061360c565b610d0c565b005b34801561044957600080fd5b50610452610d1c565b005b34801561046057600080fd5b5061047b6004803603810190610476919061360c565b610e6e565b005b34801561048957600080fd5b506104a4600480360381019061049f919061359f565b610e8e565b6040516104b19190613d61565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc919061387f565b6110a2565b005b3480156104ef57600080fd5b5061050a6004803603810190610505919061359f565b611128565b6040516105179190613f40565b60405180910390f35b34801561052c57600080fd5b506105476004803603810190610542919061359f565b611140565b6040516105549190613d83565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f91906138d9565b611160565b005b34801561059257600080fd5b5061059b611241565b6040516105a89190613d9e565b60405180910390f35b3480156105bd57600080fd5b506105c66112cf565b6040516105d39190613d83565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe91906137af565b6112e2565b005b34801561061157600080fd5b5061061a61137b565b6040516106279190613d83565b60405180910390f35b34801561063c57600080fd5b5061064561138e565b6040516106529190613d9e565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d919061387f565b61141c565b60405161068f9190613cfa565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba919061359f565b611432565b6040516106cc9190613f40565b60405180910390f35b3480156106e157600080fd5b506106ea611502565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613836565b61158a565b005b34801561072157600080fd5b5061072a611620565b6040516107379190613cfa565b60405180910390f35b34801561074c57600080fd5b5061075561164a565b6040516107629190613d9e565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d91906138d9565b6116dc565b005b6107ae60048036038101906107a9919061387f565b6117a0565b005b3480156107bc57600080fd5b506107d760048036038101906107d291906136e2565b611a31565b005b3480156107e557600080fd5b5061080060048036038101906107fb9190613762565b611ba9565b005b34801561080e57600080fd5b506108296004803603810190610824919061365f565b611d24565b005b34801561083757600080fd5b50610852600480360381019061084d919061387f565b611d9c565b60405161085f9190613d9e565b60405180910390f35b34801561087457600080fd5b5061087d611e46565b005b34801561088b57600080fd5b5061089461208f565b6040516108a19190613f40565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc91906135cc565b612095565b6040516108de9190613d83565b60405180910390f35b3480156108f357600080fd5b5061090e6004803603810190610909919061359f565b612129565b005b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a115750610a1082612221565b5b9050919050565b606060028054610a2790614249565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5390614249565b8015610aa05780601f10610a7557610100808354040283529160200191610aa0565b820191906000526020600020905b815481529060010190602001808311610a8357829003601f168201915b5050505050905090565b6000610ab58261228b565b610aeb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b318261141c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b99576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb86122d9565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b57610be481610bdf6122d9565b612095565b610c1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610c268383836122e1565b505050565b600e60029054906101000a900460ff1681565b600c5481565b610c4c6122d9565b73ffffffffffffffffffffffffffffffffffffffff16610c6a611620565b73ffffffffffffffffffffffffffffffffffffffff1614610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613e60565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610ce7612393565b6001546000540303905090565b60116020528060005260406000206000915090505481565b610d1783838361239c565b505050565b610d246122d9565b73ffffffffffffffffffffffffffffffffffffffff16610d42611620565b73ffffffffffffffffffffffffffffffffffffffff1614610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613e60565b60405180910390fd5b60026009541415610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613ee0565b60405180910390fd5b60026009819055506000610df0611620565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e1390613ce5565b60006040518083038185875af1925050503d8060008114610e50576040519150601f19603f3d011682016040523d82523d6000602084013e610e55565b606091505b5050905080610e6357600080fd5b506001600981905550565b610e8983838360405180602001604052806000815250611d24565b505050565b60606000610e9b83611432565b905060008167ffffffffffffffff811115610eb957610eb86143e2565b5b604051908082528060200260200182016040528015610ee75781602001602082028036833780820191505090505b5090506000610ef4612393565b90506000805b8482108015610f0a575060005483105b15611095576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161108157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461101d57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110805783858481518110611065576110646143b3565b5b602002602001018181525050828061107c906142ac565b9350505b5b838061108c906142ac565b94505050610efa565b8395505050505050919050565b6110aa6122d9565b73ffffffffffffffffffffffffffffffffffffffff166110c8611620565b73ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590613e60565b60405180910390fd5b80600c8190555050565b60106020528060005260406000206000915090505481565b600f6020528060005260406000206000915054906101000a900460ff1681565b6111686122d9565b73ffffffffffffffffffffffffffffffffffffffff16611186611620565b73ffffffffffffffffffffffffffffffffffffffff16146111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390613e60565b60405180910390fd5b600d54826111e8610cdd565b6111f2919061407e565b1115611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90613e20565b60405180910390fd5b61123d8183612852565b5050565b600b805461124e90614249565b80601f016020809104026020016040519081016040528092919081815260200182805461127a90614249565b80156112c75780601f1061129c576101008083540402835291602001916112c7565b820191906000526020600020905b8154815290600101906020018083116112aa57829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b6112ea6122d9565b73ffffffffffffffffffffffffffffffffffffffff16611308611620565b73ffffffffffffffffffffffffffffffffffffffff161461135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590613e60565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b600e60019054906101000a900460ff1681565b600a805461139b90614249565b80601f01602080910402602001604051908101604052809291908181526020018280546113c790614249565b80156114145780601f106113e957610100808354040283529160200191611414565b820191906000526020600020905b8154815290600101906020018083116113f757829003601f168201915b505050505081565b600061142782612870565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561149a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61150a6122d9565b73ffffffffffffffffffffffffffffffffffffffff16611528611620565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590613e60565b60405180910390fd5b6115886000612afb565b565b6115926122d9565b73ffffffffffffffffffffffffffffffffffffffff166115b0611620565b73ffffffffffffffffffffffffffffffffffffffff1614611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90613e60565b60405180910390fd5b80600a908051906020019061161c929190613305565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461165990614249565b80601f016020809104026020016040519081016040528092919081815260200182805461168590614249565b80156116d25780601f106116a7576101008083540402835291602001916116d2565b820191906000526020600020905b8154815290600101906020018083116116b557829003601f168201915b5050505050905090565b6116e46122d9565b73ffffffffffffffffffffffffffffffffffffffff16611702611620565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90613e60565b60405180910390fd5b81601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b80600081116117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db90613e40565b60405180910390fd5b600d54816117f0610cdd565b6117fa919061407e565b111561183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613e20565b60405180910390fd5b8180600c5461184a9190614105565b34101561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390613f20565b60405180910390fd5b600e60009054906101000a900460ff16156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390613e80565b60405180910390fd5b6003836118e99190614105565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190613ea0565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b9919061407e565b925050819055506003836119cd9190614105565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a1b919061415f565b92505081905550611a2c3384612852565b505050565b611a396122d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a9e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611aab6122d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b586122d9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b9d9190613d83565b60405180910390a35050565b60011515600e60019054906101000a900460ff16151514611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690613ec0565b60405180910390fd5b60005b82829050811015611cc657601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68848484818110611c5e57611c5d6143b3565b5b905060200201356040518263ffffffff1660e01b8152600401611c819190613f40565b600060405180830381600087803b158015611c9b57600080fd5b505af1158015611caf573d6000803e3d6000fd5b505050508080611cbe906142ac565b915050611c02565b5081819050601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d19919061407e565b925050819055505050565b611d2f84848461239c565b611d4e8373ffffffffffffffffffffffffffffffffffffffff16612bc1565b15611d9657611d5f84848484612be4565b611d95576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611da78261228b565b611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd90613f00565b60405180910390fd5b6000611df0612d44565b90506000815111611e105760405180602001604052806000815250611e3e565b80611e1a84612dd6565b600b604051602001611e2e93929190613cb4565b6040516020818303038152906040525b915050919050565b60011515600e60029054906101000a900460ff16151514611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390613dc0565b60405180910390fd5b60001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2690613e00565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611f8c9190613cfa565b60206040518083038186803b158015611fa457600080fd5b505afa158015611fb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fdc91906138ac565b905080601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461202d919061407e565b925050819055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121316122d9565b73ffffffffffffffffffffffffffffffffffffffff1661214f611620565b73ffffffffffffffffffffffffffffffffffffffff16146121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90613e60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c90613de0565b60405180910390fd5b61221e81612afb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612296612393565b111580156122a5575060005482105b80156122d2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006123a782612870565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612412576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124336122d9565b73ffffffffffffffffffffffffffffffffffffffff16148061246257506124618561245c6122d9565b612095565b5b806124a757506124706122d9565b73ffffffffffffffffffffffffffffffffffffffff1661248f84610aaa565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124e0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612547576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125548585856001612f37565b612560600084876122e1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127e05760005482146127df57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461284b8585856001612f3d565b5050505050565b61286c828260405180602001604052806000815250612f43565b5050565b61287861338b565b600082905080612886612393565b11612ac457600054811015612ac3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ac157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129a5578092505050612af6565b5b600115612ac057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612abb578092505050612af6565b6129a6565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c0a6122d9565b8786866040518563ffffffff1660e01b8152600401612c2c9493929190613d15565b602060405180830381600087803b158015612c4657600080fd5b505af1925050508015612c7757506040513d601f19601f82011682018060405250810190612c749190613809565b60015b612cf1573d8060008114612ca7576040519150601f19603f3d011682016040523d82523d6000602084013e612cac565b606091505b50600081511415612ce9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612d5390614249565b80601f0160208091040260200160405190810160405280929190818152602001828054612d7f90614249565b8015612dcc5780601f10612da157610100808354040283529160200191612dcc565b820191906000526020600020905b815481529060010190602001808311612daf57829003601f168201915b5050505050905090565b60606000821415612e1e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f32565b600082905060005b60008214612e50578080612e39906142ac565b915050600a82612e4991906140d4565b9150612e26565b60008167ffffffffffffffff811115612e6c57612e6b6143e2565b5b6040519080825280601f01601f191660200182016040528015612e9e5781602001600182028036833780820191505090505b5090505b60008514612f2b57600182612eb7919061415f565b9150600a85612ec691906142f5565b6030612ed2919061407e565b60f81b818381518110612ee857612ee76143b3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f2491906140d4565b9450612ea2565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fb0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612feb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ff86000858386612f37565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506131b98673ffffffffffffffffffffffffffffffffffffffff16612bc1565b1561327e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461322e6000878480600101955087612be4565b613264576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106131bf57826000541461327957600080fd5b6132e9565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061327f575b8160008190555050506132ff6000858386612f3d565b50505050565b82805461331190614249565b90600052602060002090601f016020900481019282613333576000855561337a565b82601f1061334c57805160ff191683800117855561337a565b8280016001018555821561337a579182015b8281111561337957825182559160200191906001019061335e565b5b50905061338791906133ce565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156133e75760008160009055506001016133cf565b5090565b60006133fe6133f984613f80565b613f5b565b90508281526020810184848401111561341a57613419614420565b5b613425848285614207565b509392505050565b600061344061343b84613fb1565b613f5b565b90508281526020810184848401111561345c5761345b614420565b5b613467848285614207565b509392505050565b60008135905061347e8161467b565b92915050565b60008083601f84011261349a57613499614416565b5b8235905067ffffffffffffffff8111156134b7576134b6614411565b5b6020830191508360208202830111156134d3576134d261441b565b5b9250929050565b6000813590506134e981614692565b92915050565b6000813590506134fe816146a9565b92915050565b600081519050613513816146a9565b92915050565b600082601f83011261352e5761352d614416565b5b813561353e8482602086016133eb565b91505092915050565b600082601f83011261355c5761355b614416565b5b813561356c84826020860161342d565b91505092915050565b600081359050613584816146c0565b92915050565b600081519050613599816146c0565b92915050565b6000602082840312156135b5576135b461442a565b5b60006135c38482850161346f565b91505092915050565b600080604083850312156135e3576135e261442a565b5b60006135f18582860161346f565b92505060206136028582860161346f565b9150509250929050565b6000806000606084860312156136255761362461442a565b5b60006136338682870161346f565b93505060206136448682870161346f565b925050604061365586828701613575565b9150509250925092565b600080600080608085870312156136795761367861442a565b5b60006136878782880161346f565b94505060206136988782880161346f565b93505060406136a987828801613575565b925050606085013567ffffffffffffffff8111156136ca576136c9614425565b5b6136d687828801613519565b91505092959194509250565b600080604083850312156136f9576136f861442a565b5b60006137078582860161346f565b9250506020613718858286016134da565b9150509250929050565b600080604083850312156137395761373861442a565b5b60006137478582860161346f565b925050602061375885828601613575565b9150509250929050565b600080602083850312156137795761377861442a565b5b600083013567ffffffffffffffff81111561379757613796614425565b5b6137a385828601613484565b92509250509250929050565b6000602082840312156137c5576137c461442a565b5b60006137d3848285016134da565b91505092915050565b6000602082840312156137f2576137f161442a565b5b6000613800848285016134ef565b91505092915050565b60006020828403121561381f5761381e61442a565b5b600061382d84828501613504565b91505092915050565b60006020828403121561384c5761384b61442a565b5b600082013567ffffffffffffffff81111561386a57613869614425565b5b61387684828501613547565b91505092915050565b6000602082840312156138955761389461442a565b5b60006138a384828501613575565b91505092915050565b6000602082840312156138c2576138c161442a565b5b60006138d08482850161358a565b91505092915050565b600080604083850312156138f0576138ef61442a565b5b60006138fe85828601613575565b925050602061390f8582860161346f565b9150509250929050565b60006139258383613c96565b60208301905092915050565b61393a81614193565b82525050565b600061394b82614007565b6139558185614035565b935061396083613fe2565b8060005b838110156139915781516139788882613919565b975061398383614028565b925050600181019050613964565b5085935050505092915050565b6139a7816141a5565b82525050565b60006139b882614012565b6139c28185614046565b93506139d2818560208601614216565b6139db8161442f565b840191505092915050565b60006139f18261401d565b6139fb8185614062565b9350613a0b818560208601614216565b613a148161442f565b840191505092915050565b6000613a2a8261401d565b613a348185614073565b9350613a44818560208601614216565b80840191505092915050565b60008154613a5d81614249565b613a678186614073565b94506001821660008114613a825760018114613a9357613ac6565b60ff19831686528186019350613ac6565b613a9c85613ff2565b60005b83811015613abe57815481890152600182019150602081019050613a9f565b838801955050505b50505092915050565b6000613adc601e83614062565b9150613ae782614440565b602082019050919050565b6000613aff602683614062565b9150613b0a82614469565b604082019050919050565b6000613b22601c83614062565b9150613b2d826144b8565b602082019050919050565b6000613b45601f83614062565b9150613b50826144e1565b602082019050919050565b6000613b68601a83614062565b9150613b738261450a565b602082019050919050565b6000613b8b602083614062565b9150613b9682614533565b602082019050919050565b6000613bae601783614062565b9150613bb98261455c565b602082019050919050565b6000613bd1601c83614062565b9150613bdc82614585565b602082019050919050565b6000613bf4600083614057565b9150613bff826145ae565b600082019050919050565b6000613c17601383614062565b9150613c22826145b1565b602082019050919050565b6000613c3a601f83614062565b9150613c45826145da565b602082019050919050565b6000613c5d603083614062565b9150613c6882614603565b604082019050919050565b6000613c80601383614062565b9150613c8b82614652565b602082019050919050565b613c9f816141fd565b82525050565b613cae816141fd565b82525050565b6000613cc08286613a1f565b9150613ccc8285613a1f565b9150613cd88284613a50565b9150819050949350505050565b6000613cf082613be7565b9150819050919050565b6000602082019050613d0f6000830184613931565b92915050565b6000608082019050613d2a6000830187613931565b613d376020830186613931565b613d446040830185613ca5565b8181036060830152613d5681846139ad565b905095945050505050565b60006020820190508181036000830152613d7b8184613940565b905092915050565b6000602082019050613d98600083018461399e565b92915050565b60006020820190508181036000830152613db881846139e6565b905092915050565b60006020820190508181036000830152613dd981613acf565b9050919050565b60006020820190508181036000830152613df981613af2565b9050919050565b60006020820190508181036000830152613e1981613b15565b9050919050565b60006020820190508181036000830152613e3981613b38565b9050919050565b60006020820190508181036000830152613e5981613b5b565b9050919050565b60006020820190508181036000830152613e7981613b7e565b9050919050565b60006020820190508181036000830152613e9981613ba1565b9050919050565b60006020820190508181036000830152613eb981613bc4565b9050919050565b60006020820190508181036000830152613ed981613c0a565b9050919050565b60006020820190508181036000830152613ef981613c2d565b9050919050565b60006020820190508181036000830152613f1981613c50565b9050919050565b60006020820190508181036000830152613f3981613c73565b9050919050565b6000602082019050613f556000830184613ca5565b92915050565b6000613f65613f76565b9050613f71828261427b565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9b57613f9a6143e2565b5b613fa48261442f565b9050602081019050919050565b600067ffffffffffffffff821115613fcc57613fcb6143e2565b5b613fd58261442f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614089826141fd565b9150614094836141fd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140c9576140c8614326565b5b828201905092915050565b60006140df826141fd565b91506140ea836141fd565b9250826140fa576140f9614355565b5b828204905092915050565b6000614110826141fd565b915061411b836141fd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561415457614153614326565b5b828202905092915050565b600061416a826141fd565b9150614175836141fd565b92508282101561418857614187614326565b5b828203905092915050565b600061419e826141dd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614234578082015181840152602081019050614219565b83811115614243576000848401525b50505050565b6000600282049050600182168061426157607f821691505b6020821081141561427557614274614384565b5b50919050565b6142848261442f565b810181811067ffffffffffffffff821117156142a3576142a26143e2565b5b80604052505050565b60006142b7826141fd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142ea576142e9614326565b5b600182019050919050565b6000614300826141fd565b915061430b836141fd565b92508261431b5761431a614355565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4765742062616c616e6365206973206e6f7420616374697665207965742e0000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573732062616c616e636520616c7265616479207365742e00000000600082015250565b7f4d696e7420616d6f756e742065786365656473206d617820737570706c792100600082015250565b7f4d696e7420616d6f756e742063616e2774206265207a65726f2e000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4e6f7420656e6f756768204d6f6f6e4475737420666f72206d696e7400000000600082015250565b50565b7f4275726e206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61468481614193565b811461468f57600080fd5b50565b61469b816141a5565b81146146a657600080fd5b50565b6146b2816141b1565b81146146bd57600080fd5b50565b6146c9816141fd565b81146146d457600080fd5b5056fea2646970667358221220eb3dc8cfacccb6808b9683e865fc5595fe31c3be49d1dca13dc05293579ec4f164736f6c63430008070033

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.