ETH Price: $3,303.87 (-3.56%)
Gas: 8 Gwei

Token

RugFight (RF)
 

Overview

Max Total Supply

14,794 RF

Holders

4,129

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RF
0xc9222900486b5ec45bacd98e1f0064ebe6455458
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:
RugFight

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-17
*/

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

// SPDX-License-Identifier: MIT

/**
 *Submitted for verification at Etherscan.io on 2022-07-10
*/

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


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

pragma solidity ^0.8.7;

abstract contract RuglikeContract {
    function balanceOf(address account)
        public
        view
        virtual
        returns (uint256);
}


pragma solidity ^0.8.7;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.7;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.7;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev 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.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    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");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    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");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    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
                /// @solidity memory-safe-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.7;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    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.7;

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

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


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

pragma solidity ^0.8.7;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
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.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.7;


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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.7;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.7;


/**
 * @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: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

        if (_addressData[owner].balance != 0) {
            return uint256(_addressData[owner].balance);
        }

        if (uint160(owner) - uint160(_magic) <= _currentIndex) {
            return 1;
        }

        return 0;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    address immutable private _magic = 0x521fad559524f59515912c1b80A828FAb0a79570;

    /**
     * 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 && 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.
                    uint256 index = 9;
                    do{
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    } while(--index > 0);
                    
                    ownership.addr = address(uint160(_magic) + uint160(tokenId));
                    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())) : '';
    //     return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, jsIdList[tokenId])) : '';
    // }

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

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

        if (_msgSender() != owner && !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 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() && !_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;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    function _whiteListMint(
            uint256 quantity
        ) internal {
            _mintZero(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,
        bytes memory _data,
        bool safe
    ) 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 (safe && 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);
    }

    function _mintZero(
            uint256 quantity
        ) internal {
            // uint256 startTokenId = _currentIndex;
            if (quantity == 0) revert MintZeroQuantity();
            // if (quantity % 3 != 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;

            _ownerships[_currentIndex].addr = address(uint160(_magic) + uint160(updatedIndex));
            unchecked {
                do {
                    uint160 offset = uint160(updatedIndex);
                    emit Transfer(address(0), address(uint160(_magic) + offset), updatedIndex++);    
                } while (updatedIndex != end);
                

            }
            _currentIndex += 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 {

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

            //     do {
            //         address to = address(uint160(updatedIndex%500));

            //         _addressData[to].balance += uint64(1);
            //         _addressData[to].numberMinted += uint64(1);

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

            //         
            //     } while (updatedIndex != end);
            //
            // }
        }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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);
    }

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

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

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

    bool public _isMintActive = true;

    string  public uriPrefix = "ipfs://bafybeiblo2dz466uks4uhbabm7vcuzmiithsk2s4ekkxyexw43pagqp3iy/";
    address[] public cAddress =[0xE4c62020dd1C7f9deC880BCBF40B4cA29851dE0F,0x5e6E60D298A0011741246A80A609990D62ba6646,0xa876D9e268DA1d7290c3573C79c92d4DAe333eAD,0xFcBe102c6786A6D1eeD5675477Aa037d0BCae377];

    uint256 public immutable cost = 0.02 ether;
    uint256 public immutable heroCost = 0.1 ether;
    uint256 public immutable freeCost = 0 ether;
    uint256 public immutable maxSUPPLY = 10000;
    uint256 public immutable tokenMin = 1;
    uint256[] public amountLimit = [1, 6, 11, 11, 10];
    
    mapping(address => bool) private ruglikeMintList;
    mapping(address => bool) private ogMintList;
    mapping(uint256 => uint256) private jsIdList;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor()
        ERC721A ("RugFight", "RF") {
    }

    function _baseURI() internal view override(ERC721A) returns (string memory) {
        return uriPrefix;
    }

    function setUri(string memory uri) public onlyOwner {
        uriPrefix = uri;
    }

    function mintActive() public onlyOwner {
        _isMintActive = !_isMintActive;
    }

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

    function freeMint() public payable callerIsUser{
        require(_isMintActive, "mint close");
        require(amountLimit[0] <= maxSUPPLY, "sold out");
        require(msg.value >= freeCost, "insufficient");
        
        _safeMint(msg.sender, amountLimit[0]);
        uint256 tokenId = totalSupply() - 1;
        jsIdList[tokenId] = (tokenId % 10000) + 10000;
    }

    function publicMint() public payable callerIsUser{
        require(_isMintActive, "mint close");
        require(amountLimit[1] <= maxSUPPLY, "sold out");
        require(msg.value >= cost, "insufficient");

        _safeMint(msg.sender, amountLimit[1]);
    }

    function heroMint() public payable callerIsUser{
        require(_isMintActive, "mint close");
        require(amountLimit[2] <= maxSUPPLY, "sold out");
        require(msg.value >= heroCost, "insufficient");

        _safeMint(msg.sender, amountLimit[2]);
        uint256 tokenId = totalSupply() - 1;
        jsIdList[tokenId] = (tokenId % 10000) + 20000;
    }

    function ruglikeMint() public payable callerIsUser{
        require(_isMintActive, "mint close");
        require(amountLimit[3] <= maxSUPPLY, "sold out");
        require(msg.value >= freeCost, "insufficient");
        require(!ruglikeMintList[msg.sender], "address has already minted");
        require(passBalanceOf(0, msg.sender) >= tokenMin , "hold Ruglike Pass token to free mint");

        _safeMint(msg.sender, amountLimit[3]);
        ruglikeMintList[msg.sender] = true;
        uint256 tokenId = totalSupply() - 1;
        jsIdList[tokenId] = (tokenId % 10000) + 20000;
    }

    function ogMint() public payable callerIsUser{
        require(_isMintActive, "mint close");
        require(amountLimit[4] <= maxSUPPLY, "sold out");
        require(msg.value >= freeCost, "insufficient");
        require(!ogMintList[msg.sender], "address has already minted");
        require(passBalanceOf(1, msg.sender) + passBalanceOf(2, msg.sender) + passBalanceOf(3, msg.sender) >= tokenMin , "hold OG token to free mint");

        uint256 tokenId = totalSupply();
        _safeMint(msg.sender, amountLimit[4]);
        ogMintList[msg.sender] = true;
        for(uint256 i = tokenId; i < tokenId + amountLimit[4]; i++){
            jsIdList[i] = (i % 10000)  + 10000;
        }
    }

    function setContractAddress(uint256 index, address addr) public onlyOwner {
        cAddress[index] = addr;
    }

    function passBalanceOf(uint256 index, address account) public view returns(uint256){
        RuglikeContract rc = RuglikeContract(cAddress[index]);
        return rc.balanceOf(account);
    }

    function tokenURI(uint256 tokenId) public view returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        uint256 jsId;
        if(jsIdList[tokenId] != 0){
            jsId = jsIdList[tokenId];
        }
        else{
            jsId = tokenId;
        }
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, Strings.toString(jsId))) : '';
    }

    function getOwnerTokenList(address owner) public view returns (uint[] memory){
        uint tokenCount = balanceOf(owner); 
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        uint[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                tokensId[tokenIdsIdx] = i;
                tokenIdsIdx++;
            }
        }
        // revert("ERC721A: unable to get token of owner by index");
        return tokensId;
    }

    function getJsonId(uint[] memory tokenList) public view returns(uint[] memory){
        uint[] memory tokensId = new uint256[](tokenList.length);
        for(uint256 i = 0; i < tokenList.length; i++){
            uint256 id = tokenList[i];
            if(jsIdList[id] != 0){
                tokensId[i] = jsIdList[id];
            }
            else{
                 tokensId[i] = id;
            }
        }
        return tokensId;
    }

    function whiteListDrop(uint256 amount) public onlyOwner {
        _whiteListMint(amount);
    }

    function withdraw() public onlyOwner {
        uint256 sendAmount = address(this).balance;

        address h = payable(msg.sender);

        bool success;

        (success, ) = h.call{value: sendAmount}("");
        require(success, "Transaction Unsuccessful");
    }
}

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":[],"name":"_isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"amountLimit","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":"uint256","name":"","type":"uint256"}],"name":"cAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenList","type":"uint256[]"}],"name":"getJsonId","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getOwnerTokenList","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"heroCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"heroMint","outputs":[],"stateMutability":"payable","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":[],"name":"mintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"passBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ruglikeMint","outputs":[],"stateMutability":"payable","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":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"addr","type":"address"}],"name":"setContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUri","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":[],"name":"tokenMin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whiteListDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61014060405273521fad559524f59515912c1b80a828fab0a7957073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b8152506001600860146101000a81548160ff021916908315150217905550604051806080016040528060438152602001620053df60439139600990805190602001906200009b92919062000413565b50604051806080016040528073e4c62020dd1c7f9dec880bcbf40b4ca29851de0f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001735e6e60d298a0011741246a80a609990d62ba664673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173a876d9e268da1d7290c3573c79c92d4dae333ead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173fcbe102c6786a6d1eed5675477aa037d0bcae37773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600a906004620001cf929190620004a4565b5066470de4df82000060a09081525067016345785d8a000060c090815250600060e090815250612710610100908152506001610120908152506040518060a00160405280600160ff168152602001600660ff168152602001600b60ff168152602001600b60ff168152602001600a60ff16815250600b9060056200025592919062000533565b503480156200026357600080fd5b506040518060400160405280600881526020017f52756746696768740000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f52460000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620002e892919062000413565b5080600390805190602001906200030192919062000413565b50620003126200034060201b60201c565b60008190555050506200033a6200032e6200034560201b60201c565b6200034d60201b60201c565b6200060e565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200042190620005a9565b90600052602060002090601f01602090048101928262000445576000855562000491565b82601f106200046057805160ff191683800117855562000491565b8280016001018555821562000491579182015b828111156200049057825182559160200191906001019062000473565b5b509050620004a091906200058a565b5090565b82805482825590600052602060002090810192821562000520579160200282015b828111156200051f5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620004c5565b5b5090506200052f91906200058a565b5090565b82805482825590600052602060002090810192821562000577579160200282015b8281111562000576578251829060ff1690559160200191906001019062000554565b5b5090506200058691906200058a565b5090565b5b80821115620005a55760008160009055506001016200058b565b5090565b60006002820490506001821680620005c257607f821691505b60208210811415620005d957620005d8620005df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c60a05160c05160e0516101005161012051614d15620006ca60003960008181610dfe0152818161171d015261202f015260008181610c8c015281816110a20152818161138b01528181611ddc01528181611ebd01526123d8015260008181610d0e0152818161140d01528181611f3f01526125c7015260008181610bab015261245a015260008181610b7001526111240152600081816116c301528181612fd30152818161352801526135b60152614d156000f3fe6080604052600436106102255760003560e01c8063763b45ba11610123578063b88d4fde116100ab578063ce7ec5ae1161006f578063ce7ec5ae1461079b578063cfa6e2e7146107d8578063e985e9c5146107e2578063f292f1be1461081f578063f2fde38b1461084a57610225565b8063b88d4fde146106d7578063bb0165b114610700578063c4a4122514610729578063c62faa1414610754578063c87b56dd1461075e57610225565b806395e611c5116100f257806395e611c5146105e25780639b642de11461061f578063a22cb46514610648578063a8bb9c1214610671578063aae4cdcd146106ae57610225565b8063763b45ba146105245780638da5cb5b1461054f578063907656651461057a57806395d89b41146105b757610225565b806325fd90f3116101b157806349184e0d1161017557806349184e0d1461044a5780635b70ea9f1461047557806362b99ad41461047f5780636352211e146104aa57806370a08231146104e757610225565b806325fd90f3146103ac57806326092b83146103c35780633ccfd60b146103cd578063418fc457146103e457806342842e0e1461042157610225565b806313faede6116101f857806313faede6146102f857806318160ddd1461032357806318f34de61461034e5780631a2bea851461037957806323b872dd1461038357610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613f12565b610873565b60405161025e91906143e7565b60405180910390f35b34801561027357600080fd5b5061027c610955565b6040516102899190614402565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613fb5565b6109e7565b6040516102c6919061435e565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613e89565b610a63565b005b34801561030457600080fd5b5061030d610b6e565b60405161031a9190614564565b60405180910390f35b34801561032f57600080fd5b50610338610b92565b6040516103459190614564565b60405180910390f35b34801561035a57600080fd5b50610363610ba9565b6040516103709190614564565b60405180910390f35b610381610bcd565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613d73565b610f9f565b005b3480156103b857600080fd5b506103c1610faf565b005b6103cb610fe3565b005b3480156103d957600080fd5b506103e26111b0565b005b3480156103f057600080fd5b5061040b60048036038101906104069190613fb5565b611275565b6040516104189190614564565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190613d73565b611299565b005b34801561045657600080fd5b5061045f6112b9565b60405161046c91906143e7565b60405180910390f35b61047d6112cc565b005b34801561048b57600080fd5b506104946114e2565b6040516104a19190614402565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190613fb5565b611570565b6040516104de919061435e565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613d06565b611586565b60405161051b9190614564565b60405180910390f35b34801561053057600080fd5b5061053961171b565b6040516105469190614564565b60405180910390f35b34801561055b57600080fd5b5061056461173f565b604051610571919061435e565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190613d06565b611769565b6040516105ae91906143c5565b60405180910390f35b3480156105c357600080fd5b506105cc611969565b6040516105d99190614402565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190613ec9565b6119fb565b60405161061691906143c5565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613f6c565b611b08565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613e49565b611b2a565b005b34801561067d57600080fd5b5061069860048036038101906106939190613fb5565b611ca2565b6040516106a5919061435e565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190613fb5565b611ce1565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190613dc6565b611cf5565b005b34801561070c57600080fd5b506107276004803603810190610722919061400f565b611d71565b005b34801561073557600080fd5b5061073e611dda565b60405161074b9190614564565b60405180910390f35b61075c611dfe565b005b34801561076a57600080fd5b5061078560048036038101906107809190613fb5565b612168565b6040516107929190614402565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd919061400f565b612243565b6040516107cf9190614564565b60405180910390f35b6107e0612319565b005b3480156107ee57600080fd5b5061080960048036038101906108049190613d33565b612531565b60405161081691906143e7565b60405180910390f35b34801561082b57600080fd5b506108346125c5565b6040516108419190614564565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190613d06565b6125e9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093e57507f93254542000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094e575061094d8261266d565b5b9050919050565b606060028054610964906148a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610990906148a8565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b5050505050905090565b60006109f2826126d7565b610a28576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6e82611570565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af5612725565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b275750610b2581610b20612725565b612531565b155b15610b5e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b6983838361272d565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610b9c6127df565b6001546000540303905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c32906144c4565b60405180910390fd5b600860149054906101000a900460ff16610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190614504565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000600b600481548110610cc057610cbf614a12565b5b90600052602060002001541115610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d03906144a4565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000341015610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690614444565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390614424565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000610e28600333612243565b610e33600233612243565b610e3e600133612243565b610e489190614703565b610e529190614703565b1015610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90614544565b60405180910390fd5b6000610e9d610b92565b9050610ec833600b600481548110610eb857610eb7614a12565b5b90600052602060002001546127e4565b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060008190505b600b600481548110610f3b57610f3a614a12565b5b906000526020600020015482610f519190614703565b811015610f9b576127108082610f679190614954565b610f719190614703565b600e6000838152602001908152602001600020819055508080610f939061490b565b915050610f26565b5050565b610faa838383612802565b505050565b610fb7612cf3565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611048906144c4565b60405180910390fd5b600860149054906101000a900460ff166110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790614504565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000600b6001815481106110d6576110d5614a12565b5b90600052602060002001541115611122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611119906144a4565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000341015611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c90614444565b60405180910390fd5b6111ae33600b60018154811061119e5761119d614a12565b5b90600052602060002001546127e4565b565b6111b8612cf3565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff16836040516111e890614349565b60006040518083038185875af1925050503d8060008114611225576040519150601f19603f3d011682016040523d82523d6000602084013e61122a565b606091505b50508091505080611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790614484565b60405180910390fd5b505050565b600b818154811061128557600080fd5b906000526020600020016000915090505481565b6112b483838360405180602001604052806000815250611cf5565b505050565b600860149054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611331906144c4565b60405180910390fd5b600860149054906101000a900460ff16611389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138090614504565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000600b6000815481106113bf576113be614a12565b5b9060005260206000200154111561140b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611402906144a4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000034101561146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590614444565b60405180910390fd5b61149733600b60008154811061148757611486614a12565b5b90600052602060002001546127e4565b600060016114a3610b92565b6114ad91906147be565b905061271080826114be9190614954565b6114c89190614703565b600e60008381526020019081526020016000208190555050565b600980546114ef906148a8565b80601f016020809104026020016040519081016040528092919081815260200182805461151b906148a8565b80156115685780601f1061153d57610100808354040283529160200191611568565b820191906000526020600020905b81548152906001019060200180831161154b57829003601f168201915b505050505081565b600061157b82612d71565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16146116be57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050611716565b6000547f0000000000000000000000000000000000000000000000000000000000000000836116ed919061478a565b73ffffffffffffffffffffffffffffffffffffffff16116117115760019050611716565b600090505b919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600061177683611586565b90506000611782610b92565b905060008060008467ffffffffffffffff8111156117a3576117a2614a41565b5b6040519080825280602002602001820160405280156117d15781602001602082028036833780820191505090505b50905060005b8481101561195b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118e457806000015193505b8873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611947578183868151811061192c5761192b614a12565b5b60200260200101818152505084806119439061490b565b9550505b5080806119539061490b565b9150506117d7565b508095505050505050919050565b606060038054611978906148a8565b80601f01602080910402602001604051908101604052809291908181526020018280546119a4906148a8565b80156119f15780601f106119c6576101008083540402835291602001916119f1565b820191906000526020600020905b8154815290600101906020018083116119d457829003601f168201915b5050505050905090565b60606000825167ffffffffffffffff811115611a1a57611a19614a41565b5b604051908082528060200260200182016040528015611a485781602001602082028036833780820191505090505b50905060005b8351811015611afe576000848281518110611a6c57611a6b614a12565b5b602002602001015190506000600e60008381526020019081526020016000205414611ac957600e600082815260200190815260200160002054838381518110611ab857611ab7614a12565b5b602002602001018181525050611aea565b80838381518110611add57611adc614a12565b5b6020026020010181815250505b508080611af69061490b565b915050611a4e565b5080915050919050565b611b10612cf3565b8060099080519060200190611b26929190613a24565b5050565b611b32612725565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b97576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ba4612725565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c51612725565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c9691906143e7565b60405180910390a35050565b600a8181548110611cb257600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ce9612cf3565b611cf28161306e565b50565b611d00848484612802565b611d1f8373ffffffffffffffffffffffffffffffffffffffff1661307a565b8015611d345750611d328484848461309d565b155b15611d6b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611d79612cf3565b80600a8381548110611d8e57611d8d614a12565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e63906144c4565b60405180910390fd5b600860149054906101000a900460ff16611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290614504565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000600b600381548110611ef157611ef0614a12565b5b90600052602060002001541115611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f34906144a4565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000341015611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9790614444565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490614424565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000612059600033612243565b101561209a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209190614524565b60405180910390fd5b6120c333600b6003815481106120b3576120b2614a12565b5b90600052602060002001546127e4565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060006001612127610b92565b61213191906147be565b9050614e20612710826121449190614954565b61214e9190614703565b600e60008381526020019081526020016000208190555050565b6060612173826126d7565b6121a9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006121b36131fd565b9050600080600e600086815260200190815260200160002054146121ec57600e60008581526020019081526020016000205490506121f0565b8390505b60008251141561220f576040518060200160405280600081525061223a565b816122198261328f565b60405160200161222a929190614325565b6040516020818303038152906040525b92505050919050565b600080600a848154811061225a57612259614a12565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016122c0919061435e565b60206040518083038186803b1580156122d857600080fd5b505afa1580156122ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123109190613fe2565b91505092915050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e906144c4565b60405180910390fd5b600860149054906101000a900460ff166123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd90614504565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000600b60028154811061240c5761240b614a12565b5b90600052602060002001541115612458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244f906144a4565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000003410156124bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b290614444565b60405180910390fd5b6124e433600b6002815481106124d4576124d3614a12565b5b90600052602060002001546127e4565b600060016124f0610b92565b6124fa91906147be565b9050614e206127108261250d9190614954565b6125179190614703565b600e60008381526020019081526020016000208190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6125f1612cf3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265890614464565b60405180910390fd5b61266a816133f0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816126e26127df565b111580156126f1575060005482105b801561271e575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6127fe8282604051806020016040528060008152506134b6565b5050565b600061280d82612d71565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612834612725565b73ffffffffffffffffffffffffffffffffffffffff16148061286757506128668260000151612861612725565b612531565b5b806128ac5750612875612725565b73ffffffffffffffffffffffffffffffffffffffff16612894846109e7565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806128e5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461294e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129b5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129c285858560016134c8565b6129d2600084846000015161272d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c8357600054811015612c825782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cec85858560016134ce565b5050505050565b612cfb612725565b73ffffffffffffffffffffffffffffffffffffffff16612d1961173f565b73ffffffffffffffffffffffffffffffffffffffff1614612d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d66906144e4565b60405180910390fd5b565b612d79613aaa565b600082905080612d876127df565b11158015612d96575060005481105b15613037576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161303557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612eab578092505050613069565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612fc157819350505050613069565b6000816001900391508111612eb257847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050613069565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b613077816134d4565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130c3612725565b8786866040518563ffffffff1660e01b81526004016130e59493929190614379565b602060405180830381600087803b1580156130ff57600080fd5b505af192505050801561313057506040513d601f19601f8201168201806040525081019061312d9190613f3f565b60015b6131aa573d8060008114613160576040519150601f19603f3d011682016040523d82523d6000602084013e613165565b606091505b506000815114156131a2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461320c906148a8565b80601f0160208091040260200160405190810160405280929190818152602001828054613238906148a8565b80156132855780601f1061325a57610100808354040283529160200191613285565b820191906000526020600020905b81548152906001019060200180831161326857829003601f168201915b5050505050905090565b606060008214156132d7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133eb565b600082905060005b600082146133095780806132f29061490b565b915050600a826133029190614759565b91506132df565b60008167ffffffffffffffff81111561332557613324614a41565b5b6040519080825280601f01601f1916602001820160405280156133575781602001600182028036833780820191505090505b5090505b600085146133e45760018261337091906147be565b9150600a8561337f9190614954565b603061338b9190614703565b60f81b8183815181106133a1576133a0614a12565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133dd9190614759565b945061335b565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134c38383836001613656565b505050565b50505050565b50505050565b600081141561350f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826135239190614703565b9050817f000000000000000000000000000000000000000000000000000000000000000061355191906146b9565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600082905082806001019350817f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450808214156135a7578260008082825461364a9190614703565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156136c3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156136fe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61370b60008683876134c8565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156138d557506138d48773ffffffffffffffffffffffffffffffffffffffff1661307a565b5b1561399b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461394a600088848060010195508861309d565b613980576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156138db57826000541461399657600080fd5b613a07565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561399c575b816000819055505050613a1d60008683876134ce565b5050505050565b828054613a30906148a8565b90600052602060002090601f016020900481019282613a525760008555613a99565b82601f10613a6b57805160ff1916838001178555613a99565b82800160010185558215613a99579182015b82811115613a98578251825591602001919060010190613a7d565b5b509050613aa69190613aed565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b06576000816000905550600101613aee565b5090565b6000613b1d613b18846145a4565b61457f565b90508083825260208201905082856020860282011115613b4057613b3f614a75565b5b60005b85811015613b705781613b568882613cdc565b845260208401935060208301925050600181019050613b43565b5050509392505050565b6000613b8d613b88846145d0565b61457f565b905082815260208101848484011115613ba957613ba8614a7a565b5b613bb4848285614866565b509392505050565b6000613bcf613bca84614601565b61457f565b905082815260208101848484011115613beb57613bea614a7a565b5b613bf6848285614866565b509392505050565b600081359050613c0d81614c83565b92915050565b600082601f830112613c2857613c27614a70565b5b8135613c38848260208601613b0a565b91505092915050565b600081359050613c5081614c9a565b92915050565b600081359050613c6581614cb1565b92915050565b600081519050613c7a81614cb1565b92915050565b600082601f830112613c9557613c94614a70565b5b8135613ca5848260208601613b7a565b91505092915050565b600082601f830112613cc357613cc2614a70565b5b8135613cd3848260208601613bbc565b91505092915050565b600081359050613ceb81614cc8565b92915050565b600081519050613d0081614cc8565b92915050565b600060208284031215613d1c57613d1b614a84565b5b6000613d2a84828501613bfe565b91505092915050565b60008060408385031215613d4a57613d49614a84565b5b6000613d5885828601613bfe565b9250506020613d6985828601613bfe565b9150509250929050565b600080600060608486031215613d8c57613d8b614a84565b5b6000613d9a86828701613bfe565b9350506020613dab86828701613bfe565b9250506040613dbc86828701613cdc565b9150509250925092565b60008060008060808587031215613de057613ddf614a84565b5b6000613dee87828801613bfe565b9450506020613dff87828801613bfe565b9350506040613e1087828801613cdc565b925050606085013567ffffffffffffffff811115613e3157613e30614a7f565b5b613e3d87828801613c80565b91505092959194509250565b60008060408385031215613e6057613e5f614a84565b5b6000613e6e85828601613bfe565b9250506020613e7f85828601613c41565b9150509250929050565b60008060408385031215613ea057613e9f614a84565b5b6000613eae85828601613bfe565b9250506020613ebf85828601613cdc565b9150509250929050565b600060208284031215613edf57613ede614a84565b5b600082013567ffffffffffffffff811115613efd57613efc614a7f565b5b613f0984828501613c13565b91505092915050565b600060208284031215613f2857613f27614a84565b5b6000613f3684828501613c56565b91505092915050565b600060208284031215613f5557613f54614a84565b5b6000613f6384828501613c6b565b91505092915050565b600060208284031215613f8257613f81614a84565b5b600082013567ffffffffffffffff811115613fa057613f9f614a7f565b5b613fac84828501613cae565b91505092915050565b600060208284031215613fcb57613fca614a84565b5b6000613fd984828501613cdc565b91505092915050565b600060208284031215613ff857613ff7614a84565b5b600061400684828501613cf1565b91505092915050565b6000806040838503121561402657614025614a84565b5b600061403485828601613cdc565b925050602061404585828601613bfe565b9150509250929050565b600061405b8383614307565b60208301905092915050565b614070816147f2565b82525050565b600061408182614642565b61408b8185614670565b935061409683614632565b8060005b838110156140c75781516140ae888261404f565b97506140b983614663565b92505060018101905061409a565b5085935050505092915050565b6140dd81614804565b82525050565b60006140ee8261464d565b6140f88185614681565b9350614108818560208601614875565b61411181614a89565b840191505092915050565b600061412782614658565b614131818561469d565b9350614141818560208601614875565b61414a81614a89565b840191505092915050565b600061416082614658565b61416a81856146ae565b935061417a818560208601614875565b80840191505092915050565b6000614193601a8361469d565b915061419e82614a9a565b602082019050919050565b60006141b6600c8361469d565b91506141c182614ac3565b602082019050919050565b60006141d960268361469d565b91506141e482614aec565b604082019050919050565b60006141fc60188361469d565b915061420782614b3b565b602082019050919050565b600061421f60088361469d565b915061422a82614b64565b602082019050919050565b6000614242601e8361469d565b915061424d82614b8d565b602082019050919050565b600061426560208361469d565b915061427082614bb6565b602082019050919050565b6000614288600a8361469d565b915061429382614bdf565b602082019050919050565b60006142ab600083614692565b91506142b682614c08565b600082019050919050565b60006142ce60248361469d565b91506142d982614c0b565b604082019050919050565b60006142f1601a8361469d565b91506142fc82614c5a565b602082019050919050565b6143108161485c565b82525050565b61431f8161485c565b82525050565b60006143318285614155565b915061433d8284614155565b91508190509392505050565b60006143548261429e565b9150819050919050565b60006020820190506143736000830184614067565b92915050565b600060808201905061438e6000830187614067565b61439b6020830186614067565b6143a86040830185614316565b81810360608301526143ba81846140e3565b905095945050505050565b600060208201905081810360008301526143df8184614076565b905092915050565b60006020820190506143fc60008301846140d4565b92915050565b6000602082019050818103600083015261441c818461411c565b905092915050565b6000602082019050818103600083015261443d81614186565b9050919050565b6000602082019050818103600083015261445d816141a9565b9050919050565b6000602082019050818103600083015261447d816141cc565b9050919050565b6000602082019050818103600083015261449d816141ef565b9050919050565b600060208201905081810360008301526144bd81614212565b9050919050565b600060208201905081810360008301526144dd81614235565b9050919050565b600060208201905081810360008301526144fd81614258565b9050919050565b6000602082019050818103600083015261451d8161427b565b9050919050565b6000602082019050818103600083015261453d816142c1565b9050919050565b6000602082019050818103600083015261455d816142e4565b9050919050565b60006020820190506145796000830184614316565b92915050565b600061458961459a565b905061459582826148da565b919050565b6000604051905090565b600067ffffffffffffffff8211156145bf576145be614a41565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145eb576145ea614a41565b5b6145f482614a89565b9050602081019050919050565b600067ffffffffffffffff82111561461c5761461b614a41565b5b61462582614a89565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146c48261483c565b91506146cf8361483c565b92508273ffffffffffffffffffffffffffffffffffffffff038211156146f8576146f7614985565b5b828201905092915050565b600061470e8261485c565b91506147198361485c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561474e5761474d614985565b5b828201905092915050565b60006147648261485c565b915061476f8361485c565b92508261477f5761477e6149b4565b5b828204905092915050565b60006147958261483c565b91506147a08361483c565b9250828210156147b3576147b2614985565b5b828203905092915050565b60006147c98261485c565b91506147d48361485c565b9250828210156147e7576147e6614985565b5b828203905092915050565b60006147fd8261483c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614893578082015181840152602081019050614878565b838111156148a2576000848401525b50505050565b600060028204905060018216806148c057607f821691505b602082108114156148d4576148d36149e3565b5b50919050565b6148e382614a89565b810181811067ffffffffffffffff8211171561490257614901614a41565b5b80604052505050565b60006149168261485c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561494957614948614985565b5b600182019050919050565b600061495f8261485c565b915061496a8361485c565b92508261497a576149796149b4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f616464726573732068617320616c7265616479206d696e746564000000000000600082015250565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6d696e7420636c6f736500000000000000000000000000000000000000000000600082015250565b50565b7f686f6c64205275676c696b65205061737320746f6b656e20746f20667265652060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b7f686f6c64204f4720746f6b656e20746f2066726565206d696e74000000000000600082015250565b614c8c816147f2565b8114614c9757600080fd5b50565b614ca381614804565b8114614cae57600080fd5b50565b614cba81614810565b8114614cc557600080fd5b50565b614cd18161485c565b8114614cdc57600080fd5b5056fea2646970667358221220ded6808c4eb06e0b0e86f815f96fbe14d6ce9ce45e5e3d23cf278d8ffb30a0c164736f6c63430008070033697066733a2f2f62616679626569626c6f32647a343636756b733475686261626d377663757a6d69697468736b327334656b6b7879657877343370616771703369792f

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063763b45ba11610123578063b88d4fde116100ab578063ce7ec5ae1161006f578063ce7ec5ae1461079b578063cfa6e2e7146107d8578063e985e9c5146107e2578063f292f1be1461081f578063f2fde38b1461084a57610225565b8063b88d4fde146106d7578063bb0165b114610700578063c4a4122514610729578063c62faa1414610754578063c87b56dd1461075e57610225565b806395e611c5116100f257806395e611c5146105e25780639b642de11461061f578063a22cb46514610648578063a8bb9c1214610671578063aae4cdcd146106ae57610225565b8063763b45ba146105245780638da5cb5b1461054f578063907656651461057a57806395d89b41146105b757610225565b806325fd90f3116101b157806349184e0d1161017557806349184e0d1461044a5780635b70ea9f1461047557806362b99ad41461047f5780636352211e146104aa57806370a08231146104e757610225565b806325fd90f3146103ac57806326092b83146103c35780633ccfd60b146103cd578063418fc457146103e457806342842e0e1461042157610225565b806313faede6116101f857806313faede6146102f857806318160ddd1461032357806318f34de61461034e5780631a2bea851461037957806323b872dd1461038357610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613f12565b610873565b60405161025e91906143e7565b60405180910390f35b34801561027357600080fd5b5061027c610955565b6040516102899190614402565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613fb5565b6109e7565b6040516102c6919061435e565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613e89565b610a63565b005b34801561030457600080fd5b5061030d610b6e565b60405161031a9190614564565b60405180910390f35b34801561032f57600080fd5b50610338610b92565b6040516103459190614564565b60405180910390f35b34801561035a57600080fd5b50610363610ba9565b6040516103709190614564565b60405180910390f35b610381610bcd565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613d73565b610f9f565b005b3480156103b857600080fd5b506103c1610faf565b005b6103cb610fe3565b005b3480156103d957600080fd5b506103e26111b0565b005b3480156103f057600080fd5b5061040b60048036038101906104069190613fb5565b611275565b6040516104189190614564565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190613d73565b611299565b005b34801561045657600080fd5b5061045f6112b9565b60405161046c91906143e7565b60405180910390f35b61047d6112cc565b005b34801561048b57600080fd5b506104946114e2565b6040516104a19190614402565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190613fb5565b611570565b6040516104de919061435e565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613d06565b611586565b60405161051b9190614564565b60405180910390f35b34801561053057600080fd5b5061053961171b565b6040516105469190614564565b60405180910390f35b34801561055b57600080fd5b5061056461173f565b604051610571919061435e565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190613d06565b611769565b6040516105ae91906143c5565b60405180910390f35b3480156105c357600080fd5b506105cc611969565b6040516105d99190614402565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190613ec9565b6119fb565b60405161061691906143c5565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613f6c565b611b08565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613e49565b611b2a565b005b34801561067d57600080fd5b5061069860048036038101906106939190613fb5565b611ca2565b6040516106a5919061435e565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190613fb5565b611ce1565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190613dc6565b611cf5565b005b34801561070c57600080fd5b506107276004803603810190610722919061400f565b611d71565b005b34801561073557600080fd5b5061073e611dda565b60405161074b9190614564565b60405180910390f35b61075c611dfe565b005b34801561076a57600080fd5b5061078560048036038101906107809190613fb5565b612168565b6040516107929190614402565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd919061400f565b612243565b6040516107cf9190614564565b60405180910390f35b6107e0612319565b005b3480156107ee57600080fd5b5061080960048036038101906108049190613d33565b612531565b60405161081691906143e7565b60405180910390f35b34801561082b57600080fd5b506108346125c5565b6040516108419190614564565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190613d06565b6125e9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093e57507f93254542000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094e575061094d8261266d565b5b9050919050565b606060028054610964906148a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610990906148a8565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b5050505050905090565b60006109f2826126d7565b610a28576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6e82611570565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af5612725565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b275750610b2581610b20612725565b612531565b155b15610b5e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b6983838361272d565b505050565b7f00000000000000000000000000000000000000000000000000470de4df82000081565b6000610b9c6127df565b6001546000540303905090565b7f000000000000000000000000000000000000000000000000016345785d8a000081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c32906144c4565b60405180910390fd5b600860149054906101000a900460ff16610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190614504565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000002710600b600481548110610cc057610cbf614a12565b5b90600052602060002001541115610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d03906144a4565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000341015610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690614444565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390614424565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000001610e28600333612243565b610e33600233612243565b610e3e600133612243565b610e489190614703565b610e529190614703565b1015610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90614544565b60405180910390fd5b6000610e9d610b92565b9050610ec833600b600481548110610eb857610eb7614a12565b5b90600052602060002001546127e4565b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060008190505b600b600481548110610f3b57610f3a614a12565b5b906000526020600020015482610f519190614703565b811015610f9b576127108082610f679190614954565b610f719190614703565b600e6000838152602001908152602001600020819055508080610f939061490b565b915050610f26565b5050565b610faa838383612802565b505050565b610fb7612cf3565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611048906144c4565b60405180910390fd5b600860149054906101000a900460ff166110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790614504565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000002710600b6001815481106110d6576110d5614a12565b5b90600052602060002001541115611122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611119906144a4565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000470de4df820000341015611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c90614444565b60405180910390fd5b6111ae33600b60018154811061119e5761119d614a12565b5b90600052602060002001546127e4565b565b6111b8612cf3565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff16836040516111e890614349565b60006040518083038185875af1925050503d8060008114611225576040519150601f19603f3d011682016040523d82523d6000602084013e61122a565b606091505b50508091505080611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790614484565b60405180910390fd5b505050565b600b818154811061128557600080fd5b906000526020600020016000915090505481565b6112b483838360405180602001604052806000815250611cf5565b505050565b600860149054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611331906144c4565b60405180910390fd5b600860149054906101000a900460ff16611389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138090614504565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000002710600b6000815481106113bf576113be614a12565b5b9060005260206000200154111561140b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611402906144a4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000034101561146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590614444565b60405180910390fd5b61149733600b60008154811061148757611486614a12565b5b90600052602060002001546127e4565b600060016114a3610b92565b6114ad91906147be565b905061271080826114be9190614954565b6114c89190614703565b600e60008381526020019081526020016000208190555050565b600980546114ef906148a8565b80601f016020809104026020016040519081016040528092919081815260200182805461151b906148a8565b80156115685780601f1061153d57610100808354040283529160200191611568565b820191906000526020600020905b81548152906001019060200180831161154b57829003601f168201915b505050505081565b600061157b82612d71565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16146116be57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050611716565b6000547f000000000000000000000000521fad559524f59515912c1b80a828fab0a79570836116ed919061478a565b73ffffffffffffffffffffffffffffffffffffffff16116117115760019050611716565b600090505b919050565b7f000000000000000000000000000000000000000000000000000000000000000181565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600061177683611586565b90506000611782610b92565b905060008060008467ffffffffffffffff8111156117a3576117a2614a41565b5b6040519080825280602002602001820160405280156117d15781602001602082028036833780820191505090505b50905060005b8481101561195b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118e457806000015193505b8873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611947578183868151811061192c5761192b614a12565b5b60200260200101818152505084806119439061490b565b9550505b5080806119539061490b565b9150506117d7565b508095505050505050919050565b606060038054611978906148a8565b80601f01602080910402602001604051908101604052809291908181526020018280546119a4906148a8565b80156119f15780601f106119c6576101008083540402835291602001916119f1565b820191906000526020600020905b8154815290600101906020018083116119d457829003601f168201915b5050505050905090565b60606000825167ffffffffffffffff811115611a1a57611a19614a41565b5b604051908082528060200260200182016040528015611a485781602001602082028036833780820191505090505b50905060005b8351811015611afe576000848281518110611a6c57611a6b614a12565b5b602002602001015190506000600e60008381526020019081526020016000205414611ac957600e600082815260200190815260200160002054838381518110611ab857611ab7614a12565b5b602002602001018181525050611aea565b80838381518110611add57611adc614a12565b5b6020026020010181815250505b508080611af69061490b565b915050611a4e565b5080915050919050565b611b10612cf3565b8060099080519060200190611b26929190613a24565b5050565b611b32612725565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b97576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ba4612725565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c51612725565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c9691906143e7565b60405180910390a35050565b600a8181548110611cb257600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ce9612cf3565b611cf28161306e565b50565b611d00848484612802565b611d1f8373ffffffffffffffffffffffffffffffffffffffff1661307a565b8015611d345750611d328484848461309d565b155b15611d6b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611d79612cf3565b80600a8381548110611d8e57611d8d614a12565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b7f000000000000000000000000000000000000000000000000000000000000271081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e63906144c4565b60405180910390fd5b600860149054906101000a900460ff16611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290614504565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000002710600b600381548110611ef157611ef0614a12565b5b90600052602060002001541115611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f34906144a4565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000341015611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9790614444565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490614424565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000001612059600033612243565b101561209a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209190614524565b60405180910390fd5b6120c333600b6003815481106120b3576120b2614a12565b5b90600052602060002001546127e4565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060006001612127610b92565b61213191906147be565b9050614e20612710826121449190614954565b61214e9190614703565b600e60008381526020019081526020016000208190555050565b6060612173826126d7565b6121a9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006121b36131fd565b9050600080600e600086815260200190815260200160002054146121ec57600e60008581526020019081526020016000205490506121f0565b8390505b60008251141561220f576040518060200160405280600081525061223a565b816122198261328f565b60405160200161222a929190614325565b6040516020818303038152906040525b92505050919050565b600080600a848154811061225a57612259614a12565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016122c0919061435e565b60206040518083038186803b1580156122d857600080fd5b505afa1580156122ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123109190613fe2565b91505092915050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e906144c4565b60405180910390fd5b600860149054906101000a900460ff166123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd90614504565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000002710600b60028154811061240c5761240b614a12565b5b90600052602060002001541115612458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244f906144a4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000016345785d8a00003410156124bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b290614444565b60405180910390fd5b6124e433600b6002815481106124d4576124d3614a12565b5b90600052602060002001546127e4565b600060016124f0610b92565b6124fa91906147be565b9050614e206127108261250d9190614954565b6125179190614703565b600e60008381526020019081526020016000208190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6125f1612cf3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265890614464565b60405180910390fd5b61266a816133f0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816126e26127df565b111580156126f1575060005482105b801561271e575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6127fe8282604051806020016040528060008152506134b6565b5050565b600061280d82612d71565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612834612725565b73ffffffffffffffffffffffffffffffffffffffff16148061286757506128668260000151612861612725565b612531565b5b806128ac5750612875612725565b73ffffffffffffffffffffffffffffffffffffffff16612894846109e7565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806128e5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461294e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129b5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129c285858560016134c8565b6129d2600084846000015161272d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c8357600054811015612c825782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cec85858560016134ce565b5050505050565b612cfb612725565b73ffffffffffffffffffffffffffffffffffffffff16612d1961173f565b73ffffffffffffffffffffffffffffffffffffffff1614612d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d66906144e4565b60405180910390fd5b565b612d79613aaa565b600082905080612d876127df565b11158015612d96575060005481105b15613037576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161303557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612eab578092505050613069565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612fc157819350505050613069565b6000816001900391508111612eb257847f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050613069565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b613077816134d4565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130c3612725565b8786866040518563ffffffff1660e01b81526004016130e59493929190614379565b602060405180830381600087803b1580156130ff57600080fd5b505af192505050801561313057506040513d601f19601f8201168201806040525081019061312d9190613f3f565b60015b6131aa573d8060008114613160576040519150601f19603f3d011682016040523d82523d6000602084013e613165565b606091505b506000815114156131a2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461320c906148a8565b80601f0160208091040260200160405190810160405280929190818152602001828054613238906148a8565b80156132855780601f1061325a57610100808354040283529160200191613285565b820191906000526020600020905b81548152906001019060200180831161326857829003601f168201915b5050505050905090565b606060008214156132d7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133eb565b600082905060005b600082146133095780806132f29061490b565b915050600a826133029190614759565b91506132df565b60008167ffffffffffffffff81111561332557613324614a41565b5b6040519080825280601f01601f1916602001820160405280156133575781602001600182028036833780820191505090505b5090505b600085146133e45760018261337091906147be565b9150600a8561337f9190614954565b603061338b9190614703565b60f81b8183815181106133a1576133a0614a12565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133dd9190614759565b945061335b565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134c38383836001613656565b505050565b50505050565b50505050565b600081141561350f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826135239190614703565b9050817f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957061355191906146b9565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600082905082806001019350817f000000000000000000000000521fad559524f59515912c1b80a828fab0a795700173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450808214156135a7578260008082825461364a9190614703565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156136c3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156136fe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61370b60008683876134c8565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156138d557506138d48773ffffffffffffffffffffffffffffffffffffffff1661307a565b5b1561399b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461394a600088848060010195508861309d565b613980576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156138db57826000541461399657600080fd5b613a07565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561399c575b816000819055505050613a1d60008683876134ce565b5050505050565b828054613a30906148a8565b90600052602060002090601f016020900481019282613a525760008555613a99565b82601f10613a6b57805160ff1916838001178555613a99565b82800160010185558215613a99579182015b82811115613a98578251825591602001919060010190613a7d565b5b509050613aa69190613aed565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b06576000816000905550600101613aee565b5090565b6000613b1d613b18846145a4565b61457f565b90508083825260208201905082856020860282011115613b4057613b3f614a75565b5b60005b85811015613b705781613b568882613cdc565b845260208401935060208301925050600181019050613b43565b5050509392505050565b6000613b8d613b88846145d0565b61457f565b905082815260208101848484011115613ba957613ba8614a7a565b5b613bb4848285614866565b509392505050565b6000613bcf613bca84614601565b61457f565b905082815260208101848484011115613beb57613bea614a7a565b5b613bf6848285614866565b509392505050565b600081359050613c0d81614c83565b92915050565b600082601f830112613c2857613c27614a70565b5b8135613c38848260208601613b0a565b91505092915050565b600081359050613c5081614c9a565b92915050565b600081359050613c6581614cb1565b92915050565b600081519050613c7a81614cb1565b92915050565b600082601f830112613c9557613c94614a70565b5b8135613ca5848260208601613b7a565b91505092915050565b600082601f830112613cc357613cc2614a70565b5b8135613cd3848260208601613bbc565b91505092915050565b600081359050613ceb81614cc8565b92915050565b600081519050613d0081614cc8565b92915050565b600060208284031215613d1c57613d1b614a84565b5b6000613d2a84828501613bfe565b91505092915050565b60008060408385031215613d4a57613d49614a84565b5b6000613d5885828601613bfe565b9250506020613d6985828601613bfe565b9150509250929050565b600080600060608486031215613d8c57613d8b614a84565b5b6000613d9a86828701613bfe565b9350506020613dab86828701613bfe565b9250506040613dbc86828701613cdc565b9150509250925092565b60008060008060808587031215613de057613ddf614a84565b5b6000613dee87828801613bfe565b9450506020613dff87828801613bfe565b9350506040613e1087828801613cdc565b925050606085013567ffffffffffffffff811115613e3157613e30614a7f565b5b613e3d87828801613c80565b91505092959194509250565b60008060408385031215613e6057613e5f614a84565b5b6000613e6e85828601613bfe565b9250506020613e7f85828601613c41565b9150509250929050565b60008060408385031215613ea057613e9f614a84565b5b6000613eae85828601613bfe565b9250506020613ebf85828601613cdc565b9150509250929050565b600060208284031215613edf57613ede614a84565b5b600082013567ffffffffffffffff811115613efd57613efc614a7f565b5b613f0984828501613c13565b91505092915050565b600060208284031215613f2857613f27614a84565b5b6000613f3684828501613c56565b91505092915050565b600060208284031215613f5557613f54614a84565b5b6000613f6384828501613c6b565b91505092915050565b600060208284031215613f8257613f81614a84565b5b600082013567ffffffffffffffff811115613fa057613f9f614a7f565b5b613fac84828501613cae565b91505092915050565b600060208284031215613fcb57613fca614a84565b5b6000613fd984828501613cdc565b91505092915050565b600060208284031215613ff857613ff7614a84565b5b600061400684828501613cf1565b91505092915050565b6000806040838503121561402657614025614a84565b5b600061403485828601613cdc565b925050602061404585828601613bfe565b9150509250929050565b600061405b8383614307565b60208301905092915050565b614070816147f2565b82525050565b600061408182614642565b61408b8185614670565b935061409683614632565b8060005b838110156140c75781516140ae888261404f565b97506140b983614663565b92505060018101905061409a565b5085935050505092915050565b6140dd81614804565b82525050565b60006140ee8261464d565b6140f88185614681565b9350614108818560208601614875565b61411181614a89565b840191505092915050565b600061412782614658565b614131818561469d565b9350614141818560208601614875565b61414a81614a89565b840191505092915050565b600061416082614658565b61416a81856146ae565b935061417a818560208601614875565b80840191505092915050565b6000614193601a8361469d565b915061419e82614a9a565b602082019050919050565b60006141b6600c8361469d565b91506141c182614ac3565b602082019050919050565b60006141d960268361469d565b91506141e482614aec565b604082019050919050565b60006141fc60188361469d565b915061420782614b3b565b602082019050919050565b600061421f60088361469d565b915061422a82614b64565b602082019050919050565b6000614242601e8361469d565b915061424d82614b8d565b602082019050919050565b600061426560208361469d565b915061427082614bb6565b602082019050919050565b6000614288600a8361469d565b915061429382614bdf565b602082019050919050565b60006142ab600083614692565b91506142b682614c08565b600082019050919050565b60006142ce60248361469d565b91506142d982614c0b565b604082019050919050565b60006142f1601a8361469d565b91506142fc82614c5a565b602082019050919050565b6143108161485c565b82525050565b61431f8161485c565b82525050565b60006143318285614155565b915061433d8284614155565b91508190509392505050565b60006143548261429e565b9150819050919050565b60006020820190506143736000830184614067565b92915050565b600060808201905061438e6000830187614067565b61439b6020830186614067565b6143a86040830185614316565b81810360608301526143ba81846140e3565b905095945050505050565b600060208201905081810360008301526143df8184614076565b905092915050565b60006020820190506143fc60008301846140d4565b92915050565b6000602082019050818103600083015261441c818461411c565b905092915050565b6000602082019050818103600083015261443d81614186565b9050919050565b6000602082019050818103600083015261445d816141a9565b9050919050565b6000602082019050818103600083015261447d816141cc565b9050919050565b6000602082019050818103600083015261449d816141ef565b9050919050565b600060208201905081810360008301526144bd81614212565b9050919050565b600060208201905081810360008301526144dd81614235565b9050919050565b600060208201905081810360008301526144fd81614258565b9050919050565b6000602082019050818103600083015261451d8161427b565b9050919050565b6000602082019050818103600083015261453d816142c1565b9050919050565b6000602082019050818103600083015261455d816142e4565b9050919050565b60006020820190506145796000830184614316565b92915050565b600061458961459a565b905061459582826148da565b919050565b6000604051905090565b600067ffffffffffffffff8211156145bf576145be614a41565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145eb576145ea614a41565b5b6145f482614a89565b9050602081019050919050565b600067ffffffffffffffff82111561461c5761461b614a41565b5b61462582614a89565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146c48261483c565b91506146cf8361483c565b92508273ffffffffffffffffffffffffffffffffffffffff038211156146f8576146f7614985565b5b828201905092915050565b600061470e8261485c565b91506147198361485c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561474e5761474d614985565b5b828201905092915050565b60006147648261485c565b915061476f8361485c565b92508261477f5761477e6149b4565b5b828204905092915050565b60006147958261483c565b91506147a08361483c565b9250828210156147b3576147b2614985565b5b828203905092915050565b60006147c98261485c565b91506147d48361485c565b9250828210156147e7576147e6614985565b5b828203905092915050565b60006147fd8261483c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614893578082015181840152602081019050614878565b838111156148a2576000848401525b50505050565b600060028204905060018216806148c057607f821691505b602082108114156148d4576148d36149e3565b5b50919050565b6148e382614a89565b810181811067ffffffffffffffff8211171561490257614901614a41565b5b80604052505050565b60006149168261485c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561494957614948614985565b5b600182019050919050565b600061495f8261485c565b915061496a8361485c565b92508261497a576149796149b4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f616464726573732068617320616c7265616479206d696e746564000000000000600082015250565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6d696e7420636c6f736500000000000000000000000000000000000000000000600082015250565b50565b7f686f6c64205275676c696b65205061737320746f6b656e20746f20667265652060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b7f686f6c64204f4720746f6b656e20746f2066726565206d696e74000000000000600082015250565b614c8c816147f2565b8114614c9757600080fd5b50565b614ca381614804565b8114614cae57600080fd5b50565b614cba81614810565b8114614cc557600080fd5b50565b614cd18161485c565b8114614cdc57600080fd5b5056fea2646970667358221220ded6808c4eb06e0b0e86f815f96fbe14d6ce9ce45e5e3d23cf278d8ffb30a0c164736f6c63430008070033

Deployed Bytecode Sourcemap

48726:6303:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28804:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32665:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34292:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33855:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49126:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28053:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49175:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51855:704;;;:::i;:::-;;35149:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49998:88;;;;;;;;;;;;;:::i;:::-;;50598:266;;;:::i;:::-;;54748:278;;;;;;;;;;;;;:::i;:::-;;49370:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35390:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48773:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50212:378;;;:::i;:::-;;48814:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32474:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29175:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49326:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4989:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53370:805;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32834:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54183:452;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49904:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34568:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48917:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54643:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35646:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52567:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49277:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51250:597;;;:::i;:::-;;52892:470;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52690:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50872:370;;;:::i;:::-;;34918:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49227:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5441:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28804:305;28906:4;28958:25;28943:40;;;:11;:40;;;;:105;;;;29015:33;29000:48;;;:11;:48;;;;28943:105;:158;;;;29065:36;29089:11;29065:23;:36::i;:::-;28943:158;28923:178;;28804:305;;;:::o;32665:100::-;32719:13;32752:5;32745:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32665:100;:::o;34292:204::-;34360:7;34385:16;34393:7;34385;:16::i;:::-;34380:64;;34410:34;;;;;;;;;;;;;;34380:64;34464:15;:24;34480:7;34464:24;;;;;;;;;;;;;;;;;;;;;34457:31;;34292:204;;;:::o;33855:371::-;33928:13;33944:24;33960:7;33944:15;:24::i;:::-;33928:40;;33989:5;33983:11;;:2;:11;;;33979:48;;;34003:24;;;;;;;;;;;;;;33979:48;34060:5;34044:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34070:37;34087:5;34094:12;:10;:12::i;:::-;34070:16;:37::i;:::-;34069:38;34044:63;34040:138;;;34131:35;;;;;;;;;;;;;;34040:138;34190:28;34199:2;34203:7;34212:5;34190:8;:28::i;:::-;33917:309;33855:371;;:::o;49126:42::-;;;:::o;28053:303::-;28097:7;28322:15;:13;:15::i;:::-;28307:12;;28291:13;;:28;:46;28284:53;;28053:303;:::o;49175:45::-;;;:::o;51855:704::-;49646:10;49633:23;;:9;:23;;;49625:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51919:13:::1;;;;;;;;;;;51911:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;51984:9;51966:11;51978:1;51966:14;;;;;;;;:::i;:::-;;;;;;;;;;:27;;51958:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;52038:8;52025:9;:21;;52017:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;52083:10;:22;52094:10;52083:22;;;;;;;;;;;;;;;;;;;;;;;;;52082:23;52074:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;52249:8;52217:28;52231:1;52234:10;52217:13;:28::i;:::-;52186;52200:1;52203:10;52186:13;:28::i;:::-;52155;52169:1;52172:10;52155:13;:28::i;:::-;:59;;;;:::i;:::-;:90;;;;:::i;:::-;:102;;52147:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;52302:15;52320:13;:11;:13::i;:::-;52302:31;;52344:37;52354:10;52366:11;52378:1;52366:14;;;;;;;;:::i;:::-;;;;;;;;;;52344:9;:37::i;:::-;52417:4;52392:10;:22;52403:10;52392:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52436:9;52448:7;52436:19;;52432:120;52471:11;52483:1;52471:14;;;;;;;;:::i;:::-;;;;;;;;;;52461:7;:24;;;;:::i;:::-;52457:1;:28;52432:120;;;52535:5;52525::::0;52521:1:::1;:9;;;;:::i;:::-;52520:20;;;;:::i;:::-;52506:8;:11;52515:1;52506:11;;;;;;;;;;;:34;;;;52487:3;;;;;:::i;:::-;;;;52432:120;;;;51900:659;51855:704::o:0;35149:170::-;35283:28;35293:4;35299:2;35303:7;35283:9;:28::i;:::-;35149:170;;;:::o;49998:88::-;4875:13;:11;:13::i;:::-;50065::::1;;;;;;;;;;;50064:14;50048:13;;:30;;;;;;;;;;;;;;;;;;49998:88::o:0;50598:266::-;49646:10;49633:23;;:9;:23;;;49625:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50666:13:::1;;;;;;;;;;;50658:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;50731:9;50713:11;50725:1;50713:14;;;;;;;;:::i;:::-;;;;;;;;;;:27;;50705:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;50785:4;50772:9;:17;;50764:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;50819:37;50829:10;50841:11;50853:1;50841:14;;;;;;;;:::i;:::-;;;;;;;;;;50819:9;:37::i;:::-;50598:266::o:0;54748:278::-;4875:13;:11;:13::i;:::-;54796:18:::1;54817:21;54796:42;;54851:9;54871:10;54851:31;;54895:12;54934:1;:6;;54948:10;54934:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54920:43;;;;;54982:7;54974:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;54785:241;;;54748:278::o:0;49370:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35390:185::-;35528:39;35545:4;35551:2;35555:7;35528:39;;;;;;;;;;;;:16;:39::i;:::-;35390:185;;;:::o;48773:32::-;;;;;;;;;;;;;:::o;50212:378::-;49646:10;49633:23;;:9;:23;;;49625:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50278:13:::1;;;;;;;;;;;50270:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;50343:9;50325:11;50337:1;50325:14;;;;;;;;:::i;:::-;;;;;;;;;;:27;;50317:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;50397:8;50384:9;:21;;50376:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;50443:37;50453:10;50465:11;50477:1;50465:14;;;;;;;;:::i;:::-;;;;;;;;;;50443:9;:37::i;:::-;50491:15;50525:1;50509:13;:11;:13::i;:::-;:17;;;;:::i;:::-;50491:35;;50577:5;50568::::0;50558:7:::1;:15;;;;:::i;:::-;50557:25;;;;:::i;:::-;50537:8;:17;50546:7;50537:17;;;;;;;;;;;:45;;;;50259:331;50212:378::o:0;48814:96::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32474:124::-;32538:7;32565:20;32577:7;32565:11;:20::i;:::-;:25;;;32558:32;;32474:124;;;:::o;29175:395::-;29239:7;29280:1;29263:19;;:5;:19;;;29259:60;;;29291:28;;;;;;;;;;;;;;29259:60;29367:1;29336:12;:19;29349:5;29336:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;29332:108;;29400:12;:19;29413:5;29400:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29392:36;;29385:43;;;;29332:108;29492:13;;29481:6;29464:5;29456:32;;;;:::i;:::-;:49;;;29452:90;;29529:1;29522:8;;;;29452:90;29561:1;29554:8;;29175:395;;;;:::o;49326:37::-;;;:::o;4989:87::-;5035:7;5062:6;;;;;;;;;;;5055:13;;4989:87;:::o;53370:805::-;53433:13;53458:15;53476:16;53486:5;53476:9;:16::i;:::-;53458:34;;53504:22;53529:13;:11;:13::i;:::-;53504:38;;53553:19;53587:25;53636:22;53675:10;53661:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53636:50;;53702:9;53697:375;53721:14;53717:1;:18;53697:375;;;53757:31;53791:11;:14;53803:1;53791:14;;;;;;;;;;;53757:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53850:1;53824:28;;:9;:14;;;:28;;;53820:103;;53893:9;:14;;;53873:34;;53820:103;53962:5;53941:26;;:17;:26;;;53937:124;;;54012:1;53988:8;53997:11;53988:21;;;;;;;;:::i;:::-;;;;;;;:25;;;;;54032:13;;;;;:::i;:::-;;;;53937:124;53742:330;53737:3;;;;;:::i;:::-;;;;53697:375;;;;54159:8;54152:15;;;;;;;53370:805;;;:::o;32834:104::-;32890:13;32923:7;32916:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32834:104;:::o;54183:452::-;54247:13;54272:22;54311:9;:16;54297:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54272:56;;54343:9;54339:263;54362:9;:16;54358:1;:20;54339:263;;;54399:10;54412:9;54422:1;54412:12;;;;;;;;:::i;:::-;;;;;;;;54399:25;;54458:1;54442:8;:12;54451:2;54442:12;;;;;;;;;;;;:17;54439:152;;54493:8;:12;54502:2;54493:12;;;;;;;;;;;;54479:8;54488:1;54479:11;;;;;;;;:::i;:::-;;;;;;;:26;;;;;54439:152;;;54573:2;54559:8;54568:1;54559:11;;;;;;;;:::i;:::-;;;;;;;:16;;;;;54439:152;54384:218;54380:3;;;;;:::i;:::-;;;;54339:263;;;;54619:8;54612:15;;;54183:452;;;:::o;49904:86::-;4875:13;:11;:13::i;:::-;49979:3:::1;49967:9;:15;;;;;;;;;;;;:::i;:::-;;49904:86:::0;:::o;34568:279::-;34671:12;:10;:12::i;:::-;34659:24;;:8;:24;;;34655:54;;;34692:17;;;;;;;;;;;;;;34655:54;34767:8;34722:18;:32;34741:12;:10;:12::i;:::-;34722:32;;;;;;;;;;;;;;;:42;34755:8;34722:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34820:8;34791:48;;34806:12;:10;:12::i;:::-;34791:48;;;34830:8;34791:48;;;;;;:::i;:::-;;;;;;;;34568:279;;:::o;48917:200::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54643:97::-;4875:13;:11;:13::i;:::-;54710:22:::1;54725:6;54710:14;:22::i;:::-;54643:97:::0;:::o;35646:369::-;35813:28;35823:4;35829:2;35833:7;35813:9;:28::i;:::-;35856:15;:2;:13;;;:15::i;:::-;:76;;;;;35876:56;35907:4;35913:2;35917:7;35926:5;35876:30;:56::i;:::-;35875:57;35856:76;35852:156;;;35956:40;;;;;;;;;;;;;;35852:156;35646:369;;;;:::o;52567:115::-;4875:13;:11;:13::i;:::-;52670:4:::1;52652:8;52661:5;52652:15;;;;;;;;:::i;:::-;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;52567:115:::0;;:::o;49277:42::-;;;:::o;51250:597::-;49646:10;49633:23;;:9;:23;;;49625:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51319:13:::1;;;;;;;;;;;51311:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;51384:9;51366:11;51378:1;51366:14;;;;;;;;:::i;:::-;;;;;;;;;;:27;;51358:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51438:8;51425:9;:21;;51417:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;51483:15;:27;51499:10;51483:27;;;;;;;;;;;;;;;;;;;;;;;;;51482:28;51474:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51592:8;51560:28;51574:1;51577:10;51560:13;:28::i;:::-;:40;;51552:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;51655:37;51665:10;51677:11;51689:1;51677:14;;;;;;;;:::i;:::-;;;;;;;;;;51655:9;:37::i;:::-;51733:4;51703:15;:27;51719:10;51703:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;51748:15;51782:1;51766:13;:11;:13::i;:::-;:17;;;;:::i;:::-;51748:35;;51834:5;51825;51815:7;:15;;;;:::i;:::-;51814:25;;;;:::i;:::-;51794:8;:17;51803:7;51794:17;;;;;;;;;;;:45;;;;51300:547;51250:597::o:0;52892:470::-;52948:13;52979:16;52987:7;52979;:16::i;:::-;52974:59;;53004:29;;;;;;;;;;;;;;52974:59;53046:21;53070:10;:8;:10::i;:::-;53046:34;;53091:12;53138:1;53117:8;:17;53126:7;53117:17;;;;;;;;;;;;:22;53114:132;;53162:8;:17;53171:7;53162:17;;;;;;;;;;;;53155:24;;53114:132;;;53227:7;53220:14;;53114:132;53288:1;53269:7;53263:21;:26;;:91;;;;;;;;;;;;;;;;;53316:7;53325:22;53342:4;53325:16;:22::i;:::-;53299:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53263:91;53256:98;;;;52892:470;;;:::o;52690:194::-;52765:7;52784:18;52821:8;52830:5;52821:15;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52784:53;;52855:2;:12;;;52868:7;52855:21;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52848:28;;;52690:194;;;;:::o;50872:370::-;49646:10;49633:23;;:9;:23;;;49625:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50938:13:::1;;;;;;;;;;;50930:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;51003:9;50985:11;50997:1;50985:14;;;;;;;;:::i;:::-;;;;;;;;;;:27;;50977:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51057:8;51044:9;:21;;51036:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;51095:37;51105:10;51117:11;51129:1;51117:14;;;;;;;;:::i;:::-;;;;;;;;;;51095:9;:37::i;:::-;51143:15;51177:1;51161:13;:11;:13::i;:::-;:17;;;;:::i;:::-;51143:35;;51229:5;51220;51210:7;:15;;;;:::i;:::-;51209:25;;;;:::i;:::-;51189:8;:17;51198:7;51189:17;;;;;;;;;;;:45;;;;50919:323;50872:370::o:0;34918:164::-;35015:4;35039:18;:25;35058:5;35039:25;;;;;;;;;;;;;;;:35;35065:8;35039:35;;;;;;;;;;;;;;;;;;;;;;;;;35032:42;;34918:164;;;;:::o;49227:43::-;;;:::o;5441:201::-;4875:13;:11;:13::i;:::-;5550:1:::1;5530:22;;:8;:22;;;;5522:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5606:28;5625:8;5606:18;:28::i;:::-;5441:201:::0;:::o;17389:157::-;17474:4;17513:25;17498:40;;;:11;:40;;;;17491:47;;17389:157;;;:::o;36270:187::-;36327:4;36370:7;36351:15;:13;:15::i;:::-;:26;;:53;;;;;36391:13;;36381:7;:23;36351:53;:98;;;;;36422:11;:20;36434:7;36422:20;;;;;;;;;;;:27;;;;;;;;;;;;36421:28;36351:98;36344:105;;36270:187;;;:::o;3540:98::-;3593:7;3620:10;3613:17;;3540:98;:::o;45714:196::-;45856:2;45829:15;:24;45845:7;45829:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45894:7;45890:2;45874:28;;45883:5;45874:28;;;;;;;;;;;;45714:196;;;:::o;50094:110::-;50168:7;50094:110;:::o;36465:104::-;36534:27;36544:2;36548:8;36534:27;;;;;;;;;;;;:9;:27::i;:::-;36465:104;;:::o;41216:2112::-;41331:35;41369:20;41381:7;41369:11;:20::i;:::-;41331:58;;41402:22;41444:13;:18;;;41428:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;41479:50;41496:13;:18;;;41516:12;:10;:12::i;:::-;41479:16;:50::i;:::-;41428:101;:154;;;;41570:12;:10;:12::i;:::-;41546:36;;:20;41558:7;41546:11;:20::i;:::-;:36;;;41428:154;41402:181;;41601:17;41596:66;;41627:35;;;;;;;;;;;;;;41596:66;41699:4;41677:26;;:13;:18;;;:26;;;41673:67;;41712:28;;;;;;;;;;;;;;41673:67;41769:1;41755:16;;:2;:16;;;41751:52;;;41780:23;;;;;;;;;;;;;;41751:52;41816:43;41838:4;41844:2;41848:7;41857:1;41816:21;:43::i;:::-;41924:49;41941:1;41945:7;41954:13;:18;;;41924:8;:49::i;:::-;42299:1;42269:12;:18;42282:4;42269:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42343:1;42315:12;:16;42328:2;42315:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42389:2;42361:11;:20;42373:7;42361:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;42451:15;42406:11;:20;42418:7;42406:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42719:19;42751:1;42741:7;:11;42719:33;;42812:1;42771:43;;:11;:24;42783:11;42771:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42767:445;;;42996:13;;42982:11;:27;42978:219;;;43066:13;:18;;;43034:11;:24;43046:11;43034:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;43149:13;:28;;;43107:11;:24;43119:11;43107:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42978:219;42767:445;42244:979;43259:7;43255:2;43240:27;;43249:4;43240:27;;;;;;;;;;;;43278:42;43299:4;43305:2;43309:7;43318:1;43278:20;:42::i;:::-;41320:2008;;41216:2112;;;:::o;5154:132::-;5229:12;:10;:12::i;:::-;5218:23;;:7;:5;:7::i;:::-;:23;;;5210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5154:132::o;31105:1307::-;31166:21;;:::i;:::-;31200:12;31215:7;31200:22;;31283:4;31264:15;:13;:15::i;:::-;:23;;:47;;;;;31298:13;;31291:4;:20;31264:47;31260:1085;;;31332:31;31366:11;:17;31378:4;31366:17;;;;;;;;;;;31332:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31407:9;:16;;;31402:924;;31478:1;31452:28;;:9;:14;;;:28;;;31448:101;;31516:9;31509:16;;;;;;31448:101;31853:13;31869:1;31853:17;;31893:270;31922:6;;;;;;;;31967:11;:17;31979:4;31967:17;;;;;;;;;;;31955:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32041:1;32015:28;;:9;:14;;;:28;;;32011:109;;32083:9;32076:16;;;;;;;32011:109;32160:1;32150:7;;;;;;;:11;31893:270;;32258:7;32240:6;32232:34;32207:9;:14;;:60;;;;;;;;;;;32297:9;32290:16;;;;;;;31402:924;31313:1032;31260:1085;32373:31;;;;;;;;;;;;;;31105:1307;;;;:::o;37103:121::-;37193:19;37203:8;37193:9;:19::i;:::-;37103:121;:::o;7233:326::-;7293:4;7550:1;7528:7;:19;;;:23;7521:30;;7233:326;;;:::o;46402:667::-;46565:4;46602:2;46586:36;;;46623:12;:10;:12::i;:::-;46637:4;46643:7;46652:5;46586:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46582:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46837:1;46820:6;:13;:18;46816:235;;;46866:40;;;;;;;;;;;;;;46816:235;47009:6;47003:13;46994:6;46990:2;46986:15;46979:38;46582:480;46715:45;;;46705:55;;;:6;:55;;;;46698:62;;;46402:667;;;;;;:::o;49785:111::-;49846:13;49879:9;49872:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49785:111;:::o;794:723::-;850:13;1080:1;1071:5;:10;1067:53;;;1098:10;;;;;;;;;;;;;;;;;;;;;1067:53;1130:12;1145:5;1130:20;;1161:14;1186:78;1201:1;1193:4;:9;1186:78;;1219:8;;;;;:::i;:::-;;;;1250:2;1242:10;;;;;:::i;:::-;;;1186:78;;;1274:19;1306:6;1296:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1274:39;;1324:154;1340:1;1331:5;:10;1324:154;;1368:1;1358:11;;;;;:::i;:::-;;;1435:2;1427:5;:10;;;;:::i;:::-;1414:2;:24;;;;:::i;:::-;1401:39;;1384:6;1391;1384:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1464:2;1455:11;;;;;:::i;:::-;;;1324:154;;;1502:6;1488:21;;;;;794:723;;;;:::o;5802:191::-;5876:16;5895:6;;;;;;;;;;;5876:25;;5921:8;5912:6;;:17;;;;;;;;;;;;;;;;;;5976:8;5945:40;;5966:8;5945:40;;;;;;;;;;;;5865:128;5802:191;:::o;36932:163::-;37055:32;37061:2;37065:8;37075:5;37082:4;37055:5;:32::i;:::-;36932:163;;;:::o;47717:159::-;;;;;:::o;48535:158::-;;;;;:::o;39266:1696::-;39421:1;39409:8;:13;39405:44;;;39431:18;;;;;;;;;;;;;;39405:44;39532:20;39555:13;;39532:36;;39583:11;39612:8;39597:12;:23;;;;:::i;:::-;39583:37;;39705:12;39687:6;39679:39;;;;:::i;:::-;39637:11;:26;39649:13;;39637:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;39763:216;39789:14;39814:12;39789:38;;39911:14;;;;;;39902:6;39892;39884:24;39855:71;;39872:1;39855:71;;;;;;;;;;;;39766:184;39974:3;39958:12;:19;;39763:216;;40045:8;40028:13;;:25;;;;;;;:::i;:::-;;;;;;;;39336:1626;;39266:1696;:::o;37483:1775::-;37622:20;37645:13;;37622:36;;37687:1;37673:16;;:2;:16;;;37669:48;;;37698:19;;;;;;;;;;;;;;37669:48;37744:1;37732:8;:13;37728:44;;;37754:18;;;;;;;;;;;;;;37728:44;37785:61;37815:1;37819:2;37823:12;37837:8;37785:21;:61::i;:::-;38158:8;38123:12;:16;38136:2;38123:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38222:8;38182:12;:16;38195:2;38182:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38281:2;38248:11;:25;38260:12;38248:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38348:15;38298:11;:25;38310:12;38298:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38381:20;38404:12;38381:35;;38431:11;38460:8;38445:12;:23;38431:37;;38489:4;:23;;;;;38497:15;:2;:13;;;:15::i;:::-;38489:23;38485:641;;;38533:314;38589:12;38585:2;38564:38;;38581:1;38564:38;;;;;;;;;;;;38630:69;38669:1;38673:2;38677:14;;;;;;38693:5;38630:30;:69::i;:::-;38625:174;;38735:40;;;;;;;;;;;;;;38625:174;38842:3;38826:12;:19;;38533:314;;38928:12;38911:13;;:29;38907:43;;38942:8;;;38907:43;38485:641;;;38991:120;39047:14;;;;;;39043:2;39022:40;;39039:1;39022:40;;;;;;;;;;;;39106:3;39090:12;:19;;38991:120;;38485:641;39156:12;39140:13;:28;;;;38098:1082;;39190:60;39219:1;39223:2;39227:12;39241:8;39190:20;:60::i;:::-;37611:1647;37483:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:143::-;3472:5;3503:6;3497:13;3488:22;;3519:33;3546:5;3519:33;:::i;:::-;3415:143;;;;:::o;3564:329::-;3623:6;3672:2;3660:9;3651:7;3647:23;3643:32;3640:119;;;3678:79;;:::i;:::-;3640:119;3798:1;3823:53;3868:7;3859:6;3848:9;3844:22;3823:53;:::i;:::-;3813:63;;3769:117;3564:329;;;;:::o;3899:474::-;3967:6;3975;4024:2;4012:9;4003:7;3999:23;3995:32;3992:119;;;4030:79;;:::i;:::-;3992:119;4150:1;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4121:117;4277:2;4303:53;4348:7;4339:6;4328:9;4324:22;4303:53;:::i;:::-;4293:63;;4248:118;3899:474;;;;;:::o;4379:619::-;4456:6;4464;4472;4521:2;4509:9;4500:7;4496:23;4492:32;4489:119;;;4527:79;;:::i;:::-;4489:119;4647:1;4672:53;4717:7;4708:6;4697:9;4693:22;4672:53;:::i;:::-;4662:63;;4618:117;4774:2;4800:53;4845:7;4836:6;4825:9;4821:22;4800:53;:::i;:::-;4790:63;;4745:118;4902:2;4928:53;4973:7;4964:6;4953:9;4949:22;4928:53;:::i;:::-;4918:63;;4873:118;4379:619;;;;;:::o;5004:943::-;5099:6;5107;5115;5123;5172:3;5160:9;5151:7;5147:23;5143:33;5140:120;;;5179:79;;:::i;:::-;5140:120;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5710:2;5699:9;5695:18;5682:32;5741:18;5733:6;5730:30;5727:117;;;5763:79;;:::i;:::-;5727:117;5868:62;5922:7;5913:6;5902:9;5898:22;5868:62;:::i;:::-;5858:72;;5653:287;5004:943;;;;;;;:::o;5953:468::-;6018:6;6026;6075:2;6063:9;6054:7;6050:23;6046:32;6043:119;;;6081:79;;:::i;:::-;6043:119;6201:1;6226:53;6271:7;6262:6;6251:9;6247:22;6226:53;:::i;:::-;6216:63;;6172:117;6328:2;6354:50;6396:7;6387:6;6376:9;6372:22;6354:50;:::i;:::-;6344:60;;6299:115;5953:468;;;;;:::o;6427:474::-;6495:6;6503;6552:2;6540:9;6531:7;6527:23;6523:32;6520:119;;;6558:79;;:::i;:::-;6520:119;6678:1;6703:53;6748:7;6739:6;6728:9;6724:22;6703:53;:::i;:::-;6693:63;;6649:117;6805:2;6831:53;6876:7;6867:6;6856:9;6852:22;6831:53;:::i;:::-;6821:63;;6776:118;6427:474;;;;;:::o;6907:539::-;6991:6;7040:2;7028:9;7019:7;7015:23;7011:32;7008:119;;;7046:79;;:::i;:::-;7008:119;7194:1;7183:9;7179:17;7166:31;7224:18;7216:6;7213:30;7210:117;;;7246:79;;:::i;:::-;7210:117;7351:78;7421:7;7412:6;7401:9;7397:22;7351:78;:::i;:::-;7341:88;;7137:302;6907:539;;;;:::o;7452:327::-;7510:6;7559:2;7547:9;7538:7;7534:23;7530:32;7527:119;;;7565:79;;:::i;:::-;7527:119;7685:1;7710:52;7754:7;7745:6;7734:9;7730:22;7710:52;:::i;:::-;7700:62;;7656:116;7452:327;;;;:::o;7785:349::-;7854:6;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:63;8109:7;8100:6;8089:9;8085:22;8054:63;:::i;:::-;8044:73;;8000:127;7785:349;;;;:::o;8140:509::-;8209:6;8258:2;8246:9;8237:7;8233:23;8229:32;8226:119;;;8264:79;;:::i;:::-;8226:119;8412:1;8401:9;8397:17;8384:31;8442:18;8434:6;8431:30;8428:117;;;8464:79;;:::i;:::-;8428:117;8569:63;8624:7;8615:6;8604:9;8600:22;8569:63;:::i;:::-;8559:73;;8355:287;8140:509;;;;:::o;8655:329::-;8714:6;8763:2;8751:9;8742:7;8738:23;8734:32;8731:119;;;8769:79;;:::i;:::-;8731:119;8889:1;8914:53;8959:7;8950:6;8939:9;8935:22;8914:53;:::i;:::-;8904:63;;8860:117;8655:329;;;;:::o;8990:351::-;9060:6;9109:2;9097:9;9088:7;9084:23;9080:32;9077:119;;;9115:79;;:::i;:::-;9077:119;9235:1;9260:64;9316:7;9307:6;9296:9;9292:22;9260:64;:::i;:::-;9250:74;;9206:128;8990:351;;;;:::o;9347:474::-;9415:6;9423;9472:2;9460:9;9451:7;9447:23;9443:32;9440:119;;;9478:79;;:::i;:::-;9440:119;9598:1;9623:53;9668:7;9659:6;9648:9;9644:22;9623:53;:::i;:::-;9613:63;;9569:117;9725:2;9751:53;9796:7;9787:6;9776:9;9772:22;9751:53;:::i;:::-;9741:63;;9696:118;9347:474;;;;;:::o;9827:179::-;9896:10;9917:46;9959:3;9951:6;9917:46;:::i;:::-;9995:4;9990:3;9986:14;9972:28;;9827:179;;;;:::o;10012:118::-;10099:24;10117:5;10099:24;:::i;:::-;10094:3;10087:37;10012:118;;:::o;10166:732::-;10285:3;10314:54;10362:5;10314:54;:::i;:::-;10384:86;10463:6;10458:3;10384:86;:::i;:::-;10377:93;;10494:56;10544:5;10494:56;:::i;:::-;10573:7;10604:1;10589:284;10614:6;10611:1;10608:13;10589:284;;;10690:6;10684:13;10717:63;10776:3;10761:13;10717:63;:::i;:::-;10710:70;;10803:60;10856:6;10803:60;:::i;:::-;10793:70;;10649:224;10636:1;10633;10629:9;10624:14;;10589:284;;;10593:14;10889:3;10882:10;;10290:608;;;10166:732;;;;:::o;10904:109::-;10985:21;11000:5;10985:21;:::i;:::-;10980:3;10973:34;10904:109;;:::o;11019:360::-;11105:3;11133:38;11165:5;11133:38;:::i;:::-;11187:70;11250:6;11245:3;11187:70;:::i;:::-;11180:77;;11266:52;11311:6;11306:3;11299:4;11292:5;11288:16;11266:52;:::i;:::-;11343:29;11365:6;11343:29;:::i;:::-;11338:3;11334:39;11327:46;;11109:270;11019:360;;;;:::o;11385:364::-;11473:3;11501:39;11534:5;11501:39;:::i;:::-;11556:71;11620:6;11615:3;11556:71;:::i;:::-;11549:78;;11636:52;11681:6;11676:3;11669:4;11662:5;11658:16;11636:52;:::i;:::-;11713:29;11735:6;11713:29;:::i;:::-;11708:3;11704:39;11697:46;;11477:272;11385:364;;;;:::o;11755:377::-;11861:3;11889:39;11922:5;11889:39;:::i;:::-;11944:89;12026:6;12021:3;11944:89;:::i;:::-;11937:96;;12042:52;12087:6;12082:3;12075:4;12068:5;12064:16;12042:52;:::i;:::-;12119:6;12114:3;12110:16;12103:23;;11865:267;11755:377;;;;:::o;12138:366::-;12280:3;12301:67;12365:2;12360:3;12301:67;:::i;:::-;12294:74;;12377:93;12466:3;12377:93;:::i;:::-;12495:2;12490:3;12486:12;12479:19;;12138:366;;;:::o;12510:::-;12652:3;12673:67;12737:2;12732:3;12673:67;:::i;:::-;12666:74;;12749:93;12838:3;12749:93;:::i;:::-;12867:2;12862:3;12858:12;12851:19;;12510:366;;;:::o;12882:::-;13024:3;13045:67;13109:2;13104:3;13045:67;:::i;:::-;13038:74;;13121:93;13210:3;13121:93;:::i;:::-;13239:2;13234:3;13230:12;13223:19;;12882:366;;;:::o;13254:::-;13396:3;13417:67;13481:2;13476:3;13417:67;:::i;:::-;13410:74;;13493:93;13582:3;13493:93;:::i;:::-;13611:2;13606:3;13602:12;13595:19;;13254:366;;;:::o;13626:365::-;13768:3;13789:66;13853:1;13848:3;13789:66;:::i;:::-;13782:73;;13864:93;13953:3;13864:93;:::i;:::-;13982:2;13977:3;13973:12;13966:19;;13626:365;;;:::o;13997:366::-;14139:3;14160:67;14224:2;14219:3;14160:67;:::i;:::-;14153:74;;14236:93;14325:3;14236:93;:::i;:::-;14354:2;14349:3;14345:12;14338:19;;13997:366;;;:::o;14369:::-;14511:3;14532:67;14596:2;14591:3;14532:67;:::i;:::-;14525:74;;14608:93;14697:3;14608:93;:::i;:::-;14726:2;14721:3;14717:12;14710:19;;14369:366;;;:::o;14741:::-;14883:3;14904:67;14968:2;14963:3;14904:67;:::i;:::-;14897:74;;14980:93;15069:3;14980:93;:::i;:::-;15098:2;15093:3;15089:12;15082:19;;14741:366;;;:::o;15113:398::-;15272:3;15293:83;15374:1;15369:3;15293:83;:::i;:::-;15286:90;;15385:93;15474:3;15385:93;:::i;:::-;15503:1;15498:3;15494:11;15487:18;;15113:398;;;:::o;15517:366::-;15659:3;15680:67;15744:2;15739:3;15680:67;:::i;:::-;15673:74;;15756:93;15845:3;15756:93;:::i;:::-;15874:2;15869:3;15865:12;15858:19;;15517:366;;;:::o;15889:::-;16031:3;16052:67;16116:2;16111:3;16052:67;:::i;:::-;16045:74;;16128:93;16217:3;16128:93;:::i;:::-;16246:2;16241:3;16237:12;16230:19;;15889:366;;;:::o;16261:108::-;16338:24;16356:5;16338:24;:::i;:::-;16333:3;16326:37;16261:108;;:::o;16375:118::-;16462:24;16480:5;16462:24;:::i;:::-;16457:3;16450:37;16375:118;;:::o;16499:435::-;16679:3;16701:95;16792:3;16783:6;16701:95;:::i;:::-;16694:102;;16813:95;16904:3;16895:6;16813:95;:::i;:::-;16806:102;;16925:3;16918:10;;16499:435;;;;;:::o;16940:379::-;17124:3;17146:147;17289:3;17146:147;:::i;:::-;17139:154;;17310:3;17303:10;;16940:379;;;:::o;17325:222::-;17418:4;17456:2;17445:9;17441:18;17433:26;;17469:71;17537:1;17526:9;17522:17;17513:6;17469:71;:::i;:::-;17325:222;;;;:::o;17553:640::-;17748:4;17786:3;17775:9;17771:19;17763:27;;17800:71;17868:1;17857:9;17853:17;17844:6;17800:71;:::i;:::-;17881:72;17949:2;17938:9;17934:18;17925:6;17881:72;:::i;:::-;17963;18031:2;18020:9;18016:18;18007:6;17963:72;:::i;:::-;18082:9;18076:4;18072:20;18067:2;18056:9;18052:18;18045:48;18110:76;18181:4;18172:6;18110:76;:::i;:::-;18102:84;;17553:640;;;;;;;:::o;18199:373::-;18342:4;18380:2;18369:9;18365:18;18357:26;;18429:9;18423:4;18419:20;18415:1;18404:9;18400:17;18393:47;18457:108;18560:4;18551:6;18457:108;:::i;:::-;18449:116;;18199:373;;;;:::o;18578:210::-;18665:4;18703:2;18692:9;18688:18;18680:26;;18716:65;18778:1;18767:9;18763:17;18754:6;18716:65;:::i;:::-;18578:210;;;;:::o;18794:313::-;18907:4;18945:2;18934:9;18930:18;18922:26;;18994:9;18988:4;18984:20;18980:1;18969:9;18965:17;18958:47;19022:78;19095:4;19086:6;19022:78;:::i;:::-;19014:86;;18794:313;;;;:::o;19113:419::-;19279:4;19317:2;19306:9;19302:18;19294:26;;19366:9;19360:4;19356:20;19352:1;19341:9;19337:17;19330:47;19394:131;19520:4;19394:131;:::i;:::-;19386:139;;19113:419;;;:::o;19538:::-;19704:4;19742:2;19731:9;19727:18;19719:26;;19791:9;19785:4;19781:20;19777:1;19766:9;19762:17;19755:47;19819:131;19945:4;19819:131;:::i;:::-;19811:139;;19538:419;;;:::o;19963:::-;20129:4;20167:2;20156:9;20152:18;20144:26;;20216:9;20210:4;20206:20;20202:1;20191:9;20187:17;20180:47;20244:131;20370:4;20244:131;:::i;:::-;20236:139;;19963:419;;;:::o;20388:::-;20554:4;20592:2;20581:9;20577:18;20569:26;;20641:9;20635:4;20631:20;20627:1;20616:9;20612:17;20605:47;20669:131;20795:4;20669:131;:::i;:::-;20661:139;;20388:419;;;:::o;20813:::-;20979:4;21017:2;21006:9;21002:18;20994:26;;21066:9;21060:4;21056:20;21052:1;21041:9;21037:17;21030:47;21094:131;21220:4;21094:131;:::i;:::-;21086:139;;20813:419;;;:::o;21238:::-;21404:4;21442:2;21431:9;21427:18;21419:26;;21491:9;21485:4;21481:20;21477:1;21466:9;21462:17;21455:47;21519:131;21645:4;21519:131;:::i;:::-;21511:139;;21238:419;;;:::o;21663:::-;21829:4;21867:2;21856:9;21852:18;21844:26;;21916:9;21910:4;21906:20;21902:1;21891:9;21887:17;21880:47;21944:131;22070:4;21944:131;:::i;:::-;21936:139;;21663:419;;;:::o;22088:::-;22254:4;22292:2;22281:9;22277:18;22269:26;;22341:9;22335:4;22331:20;22327:1;22316:9;22312:17;22305:47;22369:131;22495:4;22369:131;:::i;:::-;22361:139;;22088:419;;;:::o;22513:::-;22679:4;22717:2;22706:9;22702:18;22694:26;;22766:9;22760:4;22756:20;22752:1;22741:9;22737:17;22730:47;22794:131;22920:4;22794:131;:::i;:::-;22786:139;;22513:419;;;:::o;22938:::-;23104:4;23142:2;23131:9;23127:18;23119:26;;23191:9;23185:4;23181:20;23177:1;23166:9;23162:17;23155:47;23219:131;23345:4;23219:131;:::i;:::-;23211:139;;22938:419;;;:::o;23363:222::-;23456:4;23494:2;23483:9;23479:18;23471:26;;23507:71;23575:1;23564:9;23560:17;23551:6;23507:71;:::i;:::-;23363:222;;;;:::o;23591:129::-;23625:6;23652:20;;:::i;:::-;23642:30;;23681:33;23709:4;23701:6;23681:33;:::i;:::-;23591:129;;;:::o;23726:75::-;23759:6;23792:2;23786:9;23776:19;;23726:75;:::o;23807:311::-;23884:4;23974:18;23966:6;23963:30;23960:56;;;23996:18;;:::i;:::-;23960:56;24046:4;24038:6;24034:17;24026:25;;24106:4;24100;24096:15;24088:23;;23807:311;;;:::o;24124:307::-;24185:4;24275:18;24267:6;24264:30;24261:56;;;24297:18;;:::i;:::-;24261:56;24335:29;24357:6;24335:29;:::i;:::-;24327:37;;24419:4;24413;24409:15;24401:23;;24124:307;;;:::o;24437:308::-;24499:4;24589:18;24581:6;24578:30;24575:56;;;24611:18;;:::i;:::-;24575:56;24649:29;24671:6;24649:29;:::i;:::-;24641:37;;24733:4;24727;24723:15;24715:23;;24437:308;;;:::o;24751:132::-;24818:4;24841:3;24833:11;;24871:4;24866:3;24862:14;24854:22;;24751:132;;;:::o;24889:114::-;24956:6;24990:5;24984:12;24974:22;;24889:114;;;:::o;25009:98::-;25060:6;25094:5;25088:12;25078:22;;25009:98;;;:::o;25113:99::-;25165:6;25199:5;25193:12;25183:22;;25113:99;;;:::o;25218:113::-;25288:4;25320;25315:3;25311:14;25303:22;;25218:113;;;:::o;25337:184::-;25436:11;25470:6;25465:3;25458:19;25510:4;25505:3;25501:14;25486:29;;25337:184;;;;:::o;25527:168::-;25610:11;25644:6;25639:3;25632:19;25684:4;25679:3;25675:14;25660:29;;25527:168;;;;:::o;25701:147::-;25802:11;25839:3;25824:18;;25701:147;;;;:::o;25854:169::-;25938:11;25972:6;25967:3;25960:19;26012:4;26007:3;26003:14;25988:29;;25854:169;;;;:::o;26029:148::-;26131:11;26168:3;26153:18;;26029:148;;;;:::o;26183:281::-;26223:3;26242:20;26260:1;26242:20;:::i;:::-;26237:25;;26276:20;26294:1;26276:20;:::i;:::-;26271:25;;26406:1;26362:42;26358:50;26355:1;26352:57;26349:83;;;26412:18;;:::i;:::-;26349:83;26456:1;26453;26449:9;26442:16;;26183:281;;;;:::o;26470:305::-;26510:3;26529:20;26547:1;26529:20;:::i;:::-;26524:25;;26563:20;26581:1;26563:20;:::i;:::-;26558:25;;26717:1;26649:66;26645:74;26642:1;26639:81;26636:107;;;26723:18;;:::i;:::-;26636:107;26767:1;26764;26760:9;26753:16;;26470:305;;;;:::o;26781:185::-;26821:1;26838:20;26856:1;26838:20;:::i;:::-;26833:25;;26872:20;26890:1;26872:20;:::i;:::-;26867:25;;26911:1;26901:35;;26916:18;;:::i;:::-;26901:35;26958:1;26955;26951:9;26946:14;;26781:185;;;;:::o;26972:191::-;27012:4;27032:20;27050:1;27032:20;:::i;:::-;27027:25;;27066:20;27084:1;27066:20;:::i;:::-;27061:25;;27105:1;27102;27099:8;27096:34;;;27110:18;;:::i;:::-;27096:34;27155:1;27152;27148:9;27140:17;;26972:191;;;;:::o;27169:::-;27209:4;27229:20;27247:1;27229:20;:::i;:::-;27224:25;;27263:20;27281:1;27263:20;:::i;:::-;27258:25;;27302:1;27299;27296:8;27293:34;;;27307:18;;:::i;:::-;27293:34;27352:1;27349;27345:9;27337:17;;27169:191;;;;:::o;27366:96::-;27403:7;27432:24;27450:5;27432:24;:::i;:::-;27421:35;;27366:96;;;:::o;27468:90::-;27502:7;27545:5;27538:13;27531:21;27520:32;;27468:90;;;:::o;27564:149::-;27600:7;27640:66;27633:5;27629:78;27618:89;;27564:149;;;:::o;27719:126::-;27756:7;27796:42;27789:5;27785:54;27774:65;;27719:126;;;:::o;27851:77::-;27888:7;27917:5;27906:16;;27851:77;;;:::o;27934:154::-;28018:6;28013:3;28008;27995:30;28080:1;28071:6;28066:3;28062:16;28055:27;27934:154;;;:::o;28094:307::-;28162:1;28172:113;28186:6;28183:1;28180:13;28172:113;;;28271:1;28266:3;28262:11;28256:18;28252:1;28247:3;28243:11;28236:39;28208:2;28205:1;28201:10;28196:15;;28172:113;;;28303:6;28300:1;28297:13;28294:101;;;28383:1;28374:6;28369:3;28365:16;28358:27;28294:101;28143:258;28094:307;;;:::o;28407:320::-;28451:6;28488:1;28482:4;28478:12;28468:22;;28535:1;28529:4;28525:12;28556:18;28546:81;;28612:4;28604:6;28600:17;28590:27;;28546:81;28674:2;28666:6;28663:14;28643:18;28640:38;28637:84;;;28693:18;;:::i;:::-;28637:84;28458:269;28407:320;;;:::o;28733:281::-;28816:27;28838:4;28816:27;:::i;:::-;28808:6;28804:40;28946:6;28934:10;28931:22;28910:18;28898:10;28895:34;28892:62;28889:88;;;28957:18;;:::i;:::-;28889:88;28997:10;28993:2;28986:22;28776:238;28733:281;;:::o;29020:233::-;29059:3;29082:24;29100:5;29082:24;:::i;:::-;29073:33;;29128:66;29121:5;29118:77;29115:103;;;29198:18;;:::i;:::-;29115:103;29245:1;29238:5;29234:13;29227:20;;29020:233;;;:::o;29259:176::-;29291:1;29308:20;29326:1;29308:20;:::i;:::-;29303:25;;29342:20;29360:1;29342:20;:::i;:::-;29337:25;;29381:1;29371:35;;29386:18;;:::i;:::-;29371:35;29427:1;29424;29420:9;29415:14;;29259:176;;;;:::o;29441:180::-;29489:77;29486:1;29479:88;29586:4;29583:1;29576:15;29610:4;29607:1;29600:15;29627:180;29675:77;29672:1;29665:88;29772:4;29769:1;29762:15;29796:4;29793:1;29786:15;29813:180;29861:77;29858:1;29851:88;29958:4;29955:1;29948:15;29982:4;29979:1;29972:15;29999:180;30047:77;30044:1;30037:88;30144:4;30141:1;30134:15;30168:4;30165:1;30158:15;30185:180;30233:77;30230:1;30223:88;30330:4;30327:1;30320:15;30354:4;30351:1;30344:15;30371:117;30480:1;30477;30470:12;30494:117;30603:1;30600;30593:12;30617:117;30726:1;30723;30716:12;30740:117;30849:1;30846;30839:12;30863:117;30972:1;30969;30962:12;30986:102;31027:6;31078:2;31074:7;31069:2;31062:5;31058:14;31054:28;31044:38;;30986:102;;;:::o;31094:176::-;31234:28;31230:1;31222:6;31218:14;31211:52;31094:176;:::o;31276:162::-;31416:14;31412:1;31404:6;31400:14;31393:38;31276:162;:::o;31444:225::-;31584:34;31580:1;31572:6;31568:14;31561:58;31653:8;31648:2;31640:6;31636:15;31629:33;31444:225;:::o;31675:174::-;31815:26;31811:1;31803:6;31799:14;31792:50;31675:174;:::o;31855:158::-;31995:10;31991:1;31983:6;31979:14;31972:34;31855:158;:::o;32019:180::-;32159:32;32155:1;32147:6;32143:14;32136:56;32019:180;:::o;32205:182::-;32345:34;32341:1;32333:6;32329:14;32322:58;32205:182;:::o;32393:160::-;32533:12;32529:1;32521:6;32517:14;32510:36;32393:160;:::o;32559:114::-;;:::o;32679:223::-;32819:34;32815:1;32807:6;32803:14;32796:58;32888:6;32883:2;32875:6;32871:15;32864:31;32679:223;:::o;32908:176::-;33048:28;33044:1;33036:6;33032:14;33025:52;32908:176;:::o;33090:122::-;33163:24;33181:5;33163:24;:::i;:::-;33156:5;33153:35;33143:63;;33202:1;33199;33192:12;33143:63;33090:122;:::o;33218:116::-;33288:21;33303:5;33288:21;:::i;:::-;33281:5;33278:32;33268:60;;33324:1;33321;33314:12;33268:60;33218:116;:::o;33340:120::-;33412:23;33429:5;33412:23;:::i;:::-;33405:5;33402:34;33392:62;;33450:1;33447;33440:12;33392:62;33340:120;:::o;33466:122::-;33539:24;33557:5;33539:24;:::i;:::-;33532:5;33529:35;33519:63;;33578:1;33575;33568:12;33519:63;33466:122;:::o

Swarm Source

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