ETH Price: $3,408.14 (-0.90%)
Gas: 17 Gwei

Token

Silly Old Bear (SOB)
 

Overview

Max Total Supply

1,885 SOB

Holders

1,672

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
opister.eth
Balance
1 SOB
0xe78b2b97a6da14febb8e1d6c172ebf4c5fb4aee9
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:
SillyOldBear

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-18
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

pragma solidity ^0.8.0;

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

    /**
     * @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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, 'Strings: hex length insufficient');
        return string(buffer);
    }
}

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 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');

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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');

        // solhint-disable-next-line avoid-low-level-calls
        (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');

        // solhint-disable-next-line avoid-low-level-calls
        (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');

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

pragma solidity ^0.8.0;

/**
 * @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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @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);
}

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), 'ERC721: balance query for the zero address');
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), 'ERC721: owner query for nonexistent token');
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, 'ERC721: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), 'ERC721: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), 'ERC721: approve to caller');

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved');

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved');
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), 'ERC721: transfer to non ERC721Receiver implementer');
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), 'ERC721: operator query for nonexistent token');
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, '');
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            'ERC721: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), 'ERC721: mint to the zero address');
        require(!_exists(tokenId), 'ERC721: token already minted');

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, 'ERC721: transfer of token that is not own');
        require(to != address(0), 'ERC721: transfer to the zero address');

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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('ERC721: transfer to non ERC721Receiver implementer');
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), 'ERC721Enumerable: owner index out of bounds');
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), 'ERC721Enumerable: global index out of bounds');
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

pragma solidity ^0.8.0;

contract SillyOldBear is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    uint256 public constant NFT_PRICE = 64000000000000000; // 0.08 ETH
    uint public constant MAX_NFT_PURCHASE = 20;
    uint256 public MAX_SUPPLY = 10000;
    bool public saleIsActive = false;

    string private _baseURIExtended;
    mapping(uint256 => string) _tokenURIs;
    mapping(address => bool) minted;
    mapping(address => uint256) purchased;

    modifier mintOnlyOnce() {
        require(!minted[_msgSender()], 'Can only mint once');
        minted[_msgSender()] = true;
        _;
    }

    constructor() ERC721('Silly Old Bear', 'SOB') {}

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

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }


    function mintSOB(uint numberOfTokens) public payable {
        require(purchased[msg.sender].add(numberOfTokens) <= MAX_NFT_PURCHASE, 'Can only mint up to 20 per address');
        require(saleIsActive, 'Sale is not active at the moment');
        require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0");
        require(totalSupply().add(numberOfTokens) <= MAX_SUPPLY, "Purchase would exceed max supply of tokens");
        require(numberOfTokens <= MAX_NFT_PURCHASE,"Can only mint up to 20 per purchase");
        require(NFT_PRICE.mul(numberOfTokens) == msg.value, "Sent ether value is incorrect");
        purchased[msg.sender] = purchased[msg.sender].add(numberOfTokens);
        for (uint i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, totalSupply());
        }
    }

    function mintSOBForFree() public mintOnlyOnce {
        require(saleIsActive, 'Sale is not active at the moment');
        require(totalSupply().add(1) <= MAX_SUPPLY, 'Purchase would exceed max supply of tokens');
        _safeMint(msg.sender, totalSupply());
    }
    function reserveTokens() public onlyOwner {
        uint supply = totalSupply();
        uint i;
        for (i = 0; i < 30; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

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

    // Sets base URI for all tokens, only able to be called by contract owner
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIExtended = baseURI_;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"MAX_NFT_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","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":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintSOB","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintSOBForFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600b556000600c60006101000a81548160ff0219169083151502179055503480156200003257600080fd5b506040518060400160405280600e81526020017f53696c6c79204f6c6420426561720000000000000000000000000000000000008152506040518060400160405280600381526020017f534f4200000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b792919062000192565b508060019080519060200190620000d092919062000192565b5050506000620000e56200018a60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002a7565b600033905090565b828054620001a09062000242565b90600052602060002090601f016020900481019282620001c4576000855562000210565b82601f10620001df57805160ff191683800117855562000210565b8280016001018555821562000210579182015b828111156200020f578251825591602001919060010190620001f2565b5b5090506200021f919062000223565b5090565b5b808211156200023e57600081600090555060010162000224565b5090565b600060028204905060018216806200025b57607f821691505b6020821081141562000272576200027162000278565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61447780620002b76000396000f3fe6080604052600436106101c25760003560e01c80634f6ccce7116100f75780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd146105e7578063e985e9c514610624578063eb8d244414610661578063f2fde38b1461068c576101c2565b80638da5cb5b1461053f57806395d89b411461056a578063a22cb46514610595578063b88d4fde146105be576101c2565b8063671aa4a3116100d1578063671aa4a3146104a9578063676dd563146104c057806370a08231146104eb578063715018a614610528576101c2565b80634f6ccce71461040657806355f804b3146104435780636352211e1461046c576101c2565b806327ac36c41161016457806332cb6b0c1161013e57806332cb6b0c1461038457806334918dfd146103af5780633ccfd60b146103c657806342842e0e146103dd576101c2565b806327ac36c41461031457806327b551b11461032b5780632f745c5914610347576101c2565b8063081812fc116101a0578063081812fc1461025a578063095ea7b31461029757806318160ddd146102c057806323b872dd146102eb576101c2565b806301ffc9a7146101c7578063020b39cc1461020457806306fdde031461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612f79565b6106b5565b6040516101fb919061350f565b60405180910390f35b34801561021057600080fd5b5061021961072f565b604051610226919061386c565b60405180910390f35b34801561023b57600080fd5b50610244610734565b604051610251919061352a565b60405180910390f35b34801561026657600080fd5b50610281600480360381019061027c919061301c565b6107c6565b60405161028e91906134a8565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612f39565b61084b565b005b3480156102cc57600080fd5b506102d5610963565b6040516102e2919061386c565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612e23565b610970565b005b34801561032057600080fd5b506103296109d0565b005b6103456004803603810190610340919061301c565b610a90565b005b34801561035357600080fd5b5061036e60048036038101906103699190612f39565b610d7c565b60405161037b919061386c565b60405180910390f35b34801561039057600080fd5b50610399610e21565b6040516103a6919061386c565b60405180910390f35b3480156103bb57600080fd5b506103c4610e27565b005b3480156103d257600080fd5b506103db610ecf565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612e23565b610f9a565b005b34801561041257600080fd5b5061042d6004803603810190610428919061301c565b610fba565b60405161043a919061386c565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612fd3565b61102b565b005b34801561047857600080fd5b50610493600480360381019061048e919061301c565b6110c1565b6040516104a091906134a8565b60405180910390f35b3480156104b557600080fd5b506104be611173565b005b3480156104cc57600080fd5b506104d5611327565b6040516104e2919061386c565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190612db6565b611332565b60405161051f919061386c565b60405180910390f35b34801561053457600080fd5b5061053d6113ea565b005b34801561054b57600080fd5b50610554611527565b60405161056191906134a8565b60405180910390f35b34801561057657600080fd5b5061057f611551565b60405161058c919061352a565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190612ef9565b6115e3565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190612e76565b611764565b005b3480156105f357600080fd5b5061060e6004803603810190610609919061301c565b6117c6565b60405161061b919061352a565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190612de3565b611939565b604051610658919061350f565b60405180910390f35b34801561066d57600080fd5b506106766119cd565b604051610683919061350f565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190612db6565b6119e0565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610728575061072782611b8c565b5b9050919050565b601481565b60606000805461074390613b1c565b80601f016020809104026020016040519081016040528092919081815260200182805461076f90613b1c565b80156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b5050505050905090565b60006107d182611c6e565b610810576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108079061374c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610856826110c1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be906137cc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e6611cda565b73ffffffffffffffffffffffffffffffffffffffff16148061091557506109148161090f611cda565b611939565b5b610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094b9061368c565b60405180910390fd5b61095e8383611ce2565b505050565b6000600880549050905090565b61098161097b611cda565b82611d9b565b6109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b79061380c565b60405180910390fd5b6109cb838383611e79565b505050565b6109d8611cda565b73ffffffffffffffffffffffffffffffffffffffff166109f6611527565b73ffffffffffffffffffffffffffffffffffffffff1614610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a439061376c565b60405180910390fd5b6000610a56610963565b905060005b601e811015610a8c57610a79338284610a749190613951565b6120d5565b8080610a8490613b7f565b915050610a5b565b5050565b6014610ae482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120f390919063ffffffff16565b1115610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c9061354c565b60405180910390fd5b600c60009054906101000a900460ff16610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b9061384c565b60405180910390fd5b60008111610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae9061356c565b60405180910390fd5b600b54610bd482610bc6610963565b6120f390919063ffffffff16565b1115610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c906136ec565b60405180910390fd5b6014811115610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c509061366c565b60405180910390fd5b34610c748266e35fa931a0000061210990919063ffffffff16565b14610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab9061370c565b60405180910390fd5b610d0681601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120f390919063ffffffff16565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b81811015610d7857610d6533610d60610963565b6120d5565b8080610d7090613b7f565b915050610d4c565b5050565b6000610d8783611332565b8210610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf9061358c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b5481565b610e2f611cda565b73ffffffffffffffffffffffffffffffffffffffff16610e4d611527565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a9061376c565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610ed7611cda565b73ffffffffffffffffffffffffffffffffffffffff16610ef5611527565b73ffffffffffffffffffffffffffffffffffffffff1614610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f429061376c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f96573d6000803e3d6000fd5b5050565b610fb583838360405180602001604052806000815250611764565b505050565b6000610fc4610963565b8210611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc9061382c565b60405180910390fd5b6008828154811061101957611018613cb5565b5b90600052602060002001549050919050565b611033611cda565b73ffffffffffffffffffffffffffffffffffffffff16611051611527565b73ffffffffffffffffffffffffffffffffffffffff16146110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e9061376c565b60405180910390fd5b80600d90805190602001906110bd929190612bca565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561116a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611161906136cc565b60405180910390fd5b80915050919050565b600f600061117f611cda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe906137ec565b60405180910390fd5b6001600f6000611215611cda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c60009054906101000a900460ff166112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac9061384c565b60405180910390fd5b600b546112d360016112c5610963565b6120f390919063ffffffff16565b1115611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b906136ec565b60405180910390fd5b61132533611320610963565b6120d5565b565b66e35fa931a0000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a906136ac565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f2611cda565b73ffffffffffffffffffffffffffffffffffffffff16611410611527565b73ffffffffffffffffffffffffffffffffffffffff1614611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d9061376c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461156090613b1c565b80601f016020809104026020016040519081016040528092919081815260200182805461158c90613b1c565b80156115d95780601f106115ae576101008083540402835291602001916115d9565b820191906000526020600020905b8154815290600101906020018083116115bc57829003601f168201915b5050505050905090565b6115eb611cda565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611659576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116509061362c565b60405180910390fd5b8060056000611666611cda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611713611cda565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611758919061350f565b60405180910390a35050565b61177561176f611cda565b83611d9b565b6117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab9061380c565b60405180910390fd5b6117c08484848461211f565b50505050565b60606117d182611c6e565b611810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611807906137ac565b60405180910390fd5b6000600e6000848152602001908152602001600020805461183090613b1c565b80601f016020809104026020016040519081016040528092919081815260200182805461185c90613b1c565b80156118a95780601f1061187e576101008083540402835291602001916118a9565b820191906000526020600020905b81548152906001019060200180831161188c57829003601f168201915b5050505050905060006118ba61217b565b90506000815114156118d0578192505050611934565b6000825111156119055780826040516020016118ed929190613484565b60405160208183030381529060405292505050611934565b8061190f8561220d565b604051602001611920929190613484565b604051602081830303815290604052925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b6119e8611cda565b73ffffffffffffffffffffffffffffffffffffffff16611a06611527565b73ffffffffffffffffffffffffffffffffffffffff1614611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a539061376c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac3906135cc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c5757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c675750611c668261236e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d55836110c1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611da682611c6e565b611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc9061364c565b60405180910390fd5b6000611df0836110c1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e5f57508373ffffffffffffffffffffffffffffffffffffffff16611e47846107c6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e705750611e6f8185611939565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e99826110c1565b73ffffffffffffffffffffffffffffffffffffffff1614611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee69061378c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f569061360c565b60405180910390fd5b611f6a8383836123d8565b611f75600082611ce2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fc59190613a32565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461201c9190613951565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120ef8282604051806020016040528060008152506124ec565b5050565b600081836121019190613951565b905092915050565b6000818361211791906139d8565b905092915050565b61212a848484611e79565b61213684848484612547565b612175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216c906135ac565b60405180910390fd5b50505050565b6060600d805461218a90613b1c565b80601f01602080910402602001604051908101604052809291908181526020018280546121b690613b1c565b80156122035780601f106121d857610100808354040283529160200191612203565b820191906000526020600020905b8154815290600101906020018083116121e657829003601f168201915b5050505050905090565b60606000821415612255576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612369565b600082905060005b6000821461228757808061227090613b7f565b915050600a8261228091906139a7565b915061225d565b60008167ffffffffffffffff8111156122a3576122a2613ce4565b5b6040519080825280601f01601f1916602001820160405280156122d55781602001600182028036833780820191505090505b5090505b60008514612362576001826122ee9190613a32565b9150600a856122fd9190613bc8565b60306123099190613951565b60f81b81838151811061231f5761231e613cb5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561235b91906139a7565b94506122d9565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123e38383836126de565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561242657612421816126e3565b612465565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461246457612463838261272c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a8576124a381612899565b6124e7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124e6576124e5828261296a565b5b5b505050565b6124f683836129e9565b6125036000848484612547565b612542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612539906135ac565b60405180910390fd5b505050565b60006125688473ffffffffffffffffffffffffffffffffffffffff16612bb7565b156126d1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612591611cda565b8786866040518563ffffffff1660e01b81526004016125b394939291906134c3565b602060405180830381600087803b1580156125cd57600080fd5b505af19250505080156125fe57506040513d601f19601f820116820180604052508101906125fb9190612fa6565b60015b612681573d806000811461262e576040519150601f19603f3d011682016040523d82523d6000602084013e612633565b606091505b50600081511415612679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612670906135ac565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126d6565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161273984611332565b6127439190613a32565b9050600060076000848152602001908152602001600020549050818114612828576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128ad9190613a32565b90506000600960008481526020019081526020016000205490506000600883815481106128dd576128dc613cb5565b5b9060005260206000200154905080600883815481106128ff576128fe613cb5565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061294e5761294d613c86565b5b6001900381819060005260206000200160009055905550505050565b600061297583611332565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a509061372c565b60405180910390fd5b612a6281611c6e565b15612aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a99906135ec565b60405180910390fd5b612aae600083836123d8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612afe9190613951565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612bd690613b1c565b90600052602060002090601f016020900481019282612bf85760008555612c3f565b82601f10612c1157805160ff1916838001178555612c3f565b82800160010185558215612c3f579182015b82811115612c3e578251825591602001919060010190612c23565b5b509050612c4c9190612c50565b5090565b5b80821115612c69576000816000905550600101612c51565b5090565b6000612c80612c7b846138ac565b613887565b905082815260208101848484011115612c9c57612c9b613d18565b5b612ca7848285613ada565b509392505050565b6000612cc2612cbd846138dd565b613887565b905082815260208101848484011115612cde57612cdd613d18565b5b612ce9848285613ada565b509392505050565b600081359050612d00816143e5565b92915050565b600081359050612d15816143fc565b92915050565b600081359050612d2a81614413565b92915050565b600081519050612d3f81614413565b92915050565b600082601f830112612d5a57612d59613d13565b5b8135612d6a848260208601612c6d565b91505092915050565b600082601f830112612d8857612d87613d13565b5b8135612d98848260208601612caf565b91505092915050565b600081359050612db08161442a565b92915050565b600060208284031215612dcc57612dcb613d22565b5b6000612dda84828501612cf1565b91505092915050565b60008060408385031215612dfa57612df9613d22565b5b6000612e0885828601612cf1565b9250506020612e1985828601612cf1565b9150509250929050565b600080600060608486031215612e3c57612e3b613d22565b5b6000612e4a86828701612cf1565b9350506020612e5b86828701612cf1565b9250506040612e6c86828701612da1565b9150509250925092565b60008060008060808587031215612e9057612e8f613d22565b5b6000612e9e87828801612cf1565b9450506020612eaf87828801612cf1565b9350506040612ec087828801612da1565b925050606085013567ffffffffffffffff811115612ee157612ee0613d1d565b5b612eed87828801612d45565b91505092959194509250565b60008060408385031215612f1057612f0f613d22565b5b6000612f1e85828601612cf1565b9250506020612f2f85828601612d06565b9150509250929050565b60008060408385031215612f5057612f4f613d22565b5b6000612f5e85828601612cf1565b9250506020612f6f85828601612da1565b9150509250929050565b600060208284031215612f8f57612f8e613d22565b5b6000612f9d84828501612d1b565b91505092915050565b600060208284031215612fbc57612fbb613d22565b5b6000612fca84828501612d30565b91505092915050565b600060208284031215612fe957612fe8613d22565b5b600082013567ffffffffffffffff81111561300757613006613d1d565b5b61301384828501612d73565b91505092915050565b60006020828403121561303257613031613d22565b5b600061304084828501612da1565b91505092915050565b61305281613a66565b82525050565b61306181613a78565b82525050565b60006130728261390e565b61307c8185613924565b935061308c818560208601613ae9565b61309581613d27565b840191505092915050565b60006130ab82613919565b6130b58185613935565b93506130c5818560208601613ae9565b6130ce81613d27565b840191505092915050565b60006130e482613919565b6130ee8185613946565b93506130fe818560208601613ae9565b80840191505092915050565b6000613117602283613935565b915061312282613d38565b604082019050919050565b600061313a603383613935565b915061314582613d87565b604082019050919050565b600061315d602b83613935565b915061316882613dd6565b604082019050919050565b6000613180603283613935565b915061318b82613e25565b604082019050919050565b60006131a3602683613935565b91506131ae82613e74565b604082019050919050565b60006131c6601c83613935565b91506131d182613ec3565b602082019050919050565b60006131e9602483613935565b91506131f482613eec565b604082019050919050565b600061320c601983613935565b915061321782613f3b565b602082019050919050565b600061322f602c83613935565b915061323a82613f64565b604082019050919050565b6000613252602383613935565b915061325d82613fb3565b604082019050919050565b6000613275603883613935565b915061328082614002565b604082019050919050565b6000613298602a83613935565b91506132a382614051565b604082019050919050565b60006132bb602983613935565b91506132c6826140a0565b604082019050919050565b60006132de602a83613935565b91506132e9826140ef565b604082019050919050565b6000613301601d83613935565b915061330c8261413e565b602082019050919050565b6000613324602083613935565b915061332f82614167565b602082019050919050565b6000613347602c83613935565b915061335282614190565b604082019050919050565b600061336a602083613935565b9150613375826141df565b602082019050919050565b600061338d602983613935565b915061339882614208565b604082019050919050565b60006133b0602f83613935565b91506133bb82614257565b604082019050919050565b60006133d3602183613935565b91506133de826142a6565b604082019050919050565b60006133f6601283613935565b9150613401826142f5565b602082019050919050565b6000613419603183613935565b91506134248261431e565b604082019050919050565b600061343c602c83613935565b91506134478261436d565b604082019050919050565b600061345f602083613935565b915061346a826143bc565b602082019050919050565b61347e81613ad0565b82525050565b600061349082856130d9565b915061349c82846130d9565b91508190509392505050565b60006020820190506134bd6000830184613049565b92915050565b60006080820190506134d86000830187613049565b6134e56020830186613049565b6134f26040830185613475565b81810360608301526135048184613067565b905095945050505050565b60006020820190506135246000830184613058565b92915050565b6000602082019050818103600083015261354481846130a0565b905092915050565b600060208201905081810360008301526135658161310a565b9050919050565b600060208201905081810360008301526135858161312d565b9050919050565b600060208201905081810360008301526135a581613150565b9050919050565b600060208201905081810360008301526135c581613173565b9050919050565b600060208201905081810360008301526135e581613196565b9050919050565b60006020820190508181036000830152613605816131b9565b9050919050565b60006020820190508181036000830152613625816131dc565b9050919050565b60006020820190508181036000830152613645816131ff565b9050919050565b6000602082019050818103600083015261366581613222565b9050919050565b6000602082019050818103600083015261368581613245565b9050919050565b600060208201905081810360008301526136a581613268565b9050919050565b600060208201905081810360008301526136c58161328b565b9050919050565b600060208201905081810360008301526136e5816132ae565b9050919050565b60006020820190508181036000830152613705816132d1565b9050919050565b60006020820190508181036000830152613725816132f4565b9050919050565b6000602082019050818103600083015261374581613317565b9050919050565b600060208201905081810360008301526137658161333a565b9050919050565b600060208201905081810360008301526137858161335d565b9050919050565b600060208201905081810360008301526137a581613380565b9050919050565b600060208201905081810360008301526137c5816133a3565b9050919050565b600060208201905081810360008301526137e5816133c6565b9050919050565b60006020820190508181036000830152613805816133e9565b9050919050565b600060208201905081810360008301526138258161340c565b9050919050565b600060208201905081810360008301526138458161342f565b9050919050565b6000602082019050818103600083015261386581613452565b9050919050565b60006020820190506138816000830184613475565b92915050565b60006138916138a2565b905061389d8282613b4e565b919050565b6000604051905090565b600067ffffffffffffffff8211156138c7576138c6613ce4565b5b6138d082613d27565b9050602081019050919050565b600067ffffffffffffffff8211156138f8576138f7613ce4565b5b61390182613d27565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061395c82613ad0565b915061396783613ad0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561399c5761399b613bf9565b5b828201905092915050565b60006139b282613ad0565b91506139bd83613ad0565b9250826139cd576139cc613c28565b5b828204905092915050565b60006139e382613ad0565b91506139ee83613ad0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a2757613a26613bf9565b5b828202905092915050565b6000613a3d82613ad0565b9150613a4883613ad0565b925082821015613a5b57613a5a613bf9565b5b828203905092915050565b6000613a7182613ab0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b07578082015181840152602081019050613aec565b83811115613b16576000848401525b50505050565b60006002820490506001821680613b3457607f821691505b60208210811415613b4857613b47613c57565b5b50919050565b613b5782613d27565b810181811067ffffffffffffffff82111715613b7657613b75613ce4565b5b80604052505050565b6000613b8a82613ad0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bbd57613bbc613bf9565b5b600182019050919050565b6000613bd382613ad0565b9150613bde83613ad0565b925082613bee57613bed613c28565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e7420757020746f2032302070657220616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360008201527f207468616e206f7220657175616c20746f203000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420757020746f2032302070657220707572636860008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74206f6e63650000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74600082015250565b6143ee81613a66565b81146143f957600080fd5b50565b61440581613a78565b811461441057600080fd5b50565b61441c81613a84565b811461442757600080fd5b50565b61443381613ad0565b811461443e57600080fd5b5056fea26469706673582212209f0b1bbcd9520cbde7eb8780591eafa99cc34a27d79cee46897391528cfa28ec64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80634f6ccce7116100f75780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd146105e7578063e985e9c514610624578063eb8d244414610661578063f2fde38b1461068c576101c2565b80638da5cb5b1461053f57806395d89b411461056a578063a22cb46514610595578063b88d4fde146105be576101c2565b8063671aa4a3116100d1578063671aa4a3146104a9578063676dd563146104c057806370a08231146104eb578063715018a614610528576101c2565b80634f6ccce71461040657806355f804b3146104435780636352211e1461046c576101c2565b806327ac36c41161016457806332cb6b0c1161013e57806332cb6b0c1461038457806334918dfd146103af5780633ccfd60b146103c657806342842e0e146103dd576101c2565b806327ac36c41461031457806327b551b11461032b5780632f745c5914610347576101c2565b8063081812fc116101a0578063081812fc1461025a578063095ea7b31461029757806318160ddd146102c057806323b872dd146102eb576101c2565b806301ffc9a7146101c7578063020b39cc1461020457806306fdde031461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612f79565b6106b5565b6040516101fb919061350f565b60405180910390f35b34801561021057600080fd5b5061021961072f565b604051610226919061386c565b60405180910390f35b34801561023b57600080fd5b50610244610734565b604051610251919061352a565b60405180910390f35b34801561026657600080fd5b50610281600480360381019061027c919061301c565b6107c6565b60405161028e91906134a8565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612f39565b61084b565b005b3480156102cc57600080fd5b506102d5610963565b6040516102e2919061386c565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612e23565b610970565b005b34801561032057600080fd5b506103296109d0565b005b6103456004803603810190610340919061301c565b610a90565b005b34801561035357600080fd5b5061036e60048036038101906103699190612f39565b610d7c565b60405161037b919061386c565b60405180910390f35b34801561039057600080fd5b50610399610e21565b6040516103a6919061386c565b60405180910390f35b3480156103bb57600080fd5b506103c4610e27565b005b3480156103d257600080fd5b506103db610ecf565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612e23565b610f9a565b005b34801561041257600080fd5b5061042d6004803603810190610428919061301c565b610fba565b60405161043a919061386c565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612fd3565b61102b565b005b34801561047857600080fd5b50610493600480360381019061048e919061301c565b6110c1565b6040516104a091906134a8565b60405180910390f35b3480156104b557600080fd5b506104be611173565b005b3480156104cc57600080fd5b506104d5611327565b6040516104e2919061386c565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190612db6565b611332565b60405161051f919061386c565b60405180910390f35b34801561053457600080fd5b5061053d6113ea565b005b34801561054b57600080fd5b50610554611527565b60405161056191906134a8565b60405180910390f35b34801561057657600080fd5b5061057f611551565b60405161058c919061352a565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190612ef9565b6115e3565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190612e76565b611764565b005b3480156105f357600080fd5b5061060e6004803603810190610609919061301c565b6117c6565b60405161061b919061352a565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190612de3565b611939565b604051610658919061350f565b60405180910390f35b34801561066d57600080fd5b506106766119cd565b604051610683919061350f565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190612db6565b6119e0565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610728575061072782611b8c565b5b9050919050565b601481565b60606000805461074390613b1c565b80601f016020809104026020016040519081016040528092919081815260200182805461076f90613b1c565b80156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b5050505050905090565b60006107d182611c6e565b610810576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108079061374c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610856826110c1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be906137cc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e6611cda565b73ffffffffffffffffffffffffffffffffffffffff16148061091557506109148161090f611cda565b611939565b5b610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094b9061368c565b60405180910390fd5b61095e8383611ce2565b505050565b6000600880549050905090565b61098161097b611cda565b82611d9b565b6109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b79061380c565b60405180910390fd5b6109cb838383611e79565b505050565b6109d8611cda565b73ffffffffffffffffffffffffffffffffffffffff166109f6611527565b73ffffffffffffffffffffffffffffffffffffffff1614610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a439061376c565b60405180910390fd5b6000610a56610963565b905060005b601e811015610a8c57610a79338284610a749190613951565b6120d5565b8080610a8490613b7f565b915050610a5b565b5050565b6014610ae482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120f390919063ffffffff16565b1115610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c9061354c565b60405180910390fd5b600c60009054906101000a900460ff16610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b9061384c565b60405180910390fd5b60008111610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae9061356c565b60405180910390fd5b600b54610bd482610bc6610963565b6120f390919063ffffffff16565b1115610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c906136ec565b60405180910390fd5b6014811115610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c509061366c565b60405180910390fd5b34610c748266e35fa931a0000061210990919063ffffffff16565b14610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab9061370c565b60405180910390fd5b610d0681601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120f390919063ffffffff16565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b81811015610d7857610d6533610d60610963565b6120d5565b8080610d7090613b7f565b915050610d4c565b5050565b6000610d8783611332565b8210610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf9061358c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b5481565b610e2f611cda565b73ffffffffffffffffffffffffffffffffffffffff16610e4d611527565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a9061376c565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610ed7611cda565b73ffffffffffffffffffffffffffffffffffffffff16610ef5611527565b73ffffffffffffffffffffffffffffffffffffffff1614610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f429061376c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f96573d6000803e3d6000fd5b5050565b610fb583838360405180602001604052806000815250611764565b505050565b6000610fc4610963565b8210611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc9061382c565b60405180910390fd5b6008828154811061101957611018613cb5565b5b90600052602060002001549050919050565b611033611cda565b73ffffffffffffffffffffffffffffffffffffffff16611051611527565b73ffffffffffffffffffffffffffffffffffffffff16146110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e9061376c565b60405180910390fd5b80600d90805190602001906110bd929190612bca565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561116a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611161906136cc565b60405180910390fd5b80915050919050565b600f600061117f611cda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe906137ec565b60405180910390fd5b6001600f6000611215611cda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c60009054906101000a900460ff166112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac9061384c565b60405180910390fd5b600b546112d360016112c5610963565b6120f390919063ffffffff16565b1115611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b906136ec565b60405180910390fd5b61132533611320610963565b6120d5565b565b66e35fa931a0000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a906136ac565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f2611cda565b73ffffffffffffffffffffffffffffffffffffffff16611410611527565b73ffffffffffffffffffffffffffffffffffffffff1614611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d9061376c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461156090613b1c565b80601f016020809104026020016040519081016040528092919081815260200182805461158c90613b1c565b80156115d95780601f106115ae576101008083540402835291602001916115d9565b820191906000526020600020905b8154815290600101906020018083116115bc57829003601f168201915b5050505050905090565b6115eb611cda565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611659576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116509061362c565b60405180910390fd5b8060056000611666611cda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611713611cda565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611758919061350f565b60405180910390a35050565b61177561176f611cda565b83611d9b565b6117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab9061380c565b60405180910390fd5b6117c08484848461211f565b50505050565b60606117d182611c6e565b611810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611807906137ac565b60405180910390fd5b6000600e6000848152602001908152602001600020805461183090613b1c565b80601f016020809104026020016040519081016040528092919081815260200182805461185c90613b1c565b80156118a95780601f1061187e576101008083540402835291602001916118a9565b820191906000526020600020905b81548152906001019060200180831161188c57829003601f168201915b5050505050905060006118ba61217b565b90506000815114156118d0578192505050611934565b6000825111156119055780826040516020016118ed929190613484565b60405160208183030381529060405292505050611934565b8061190f8561220d565b604051602001611920929190613484565b604051602081830303815290604052925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b6119e8611cda565b73ffffffffffffffffffffffffffffffffffffffff16611a06611527565b73ffffffffffffffffffffffffffffffffffffffff1614611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a539061376c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac3906135cc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c5757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c675750611c668261236e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d55836110c1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611da682611c6e565b611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc9061364c565b60405180910390fd5b6000611df0836110c1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e5f57508373ffffffffffffffffffffffffffffffffffffffff16611e47846107c6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e705750611e6f8185611939565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e99826110c1565b73ffffffffffffffffffffffffffffffffffffffff1614611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee69061378c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f569061360c565b60405180910390fd5b611f6a8383836123d8565b611f75600082611ce2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fc59190613a32565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461201c9190613951565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120ef8282604051806020016040528060008152506124ec565b5050565b600081836121019190613951565b905092915050565b6000818361211791906139d8565b905092915050565b61212a848484611e79565b61213684848484612547565b612175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216c906135ac565b60405180910390fd5b50505050565b6060600d805461218a90613b1c565b80601f01602080910402602001604051908101604052809291908181526020018280546121b690613b1c565b80156122035780601f106121d857610100808354040283529160200191612203565b820191906000526020600020905b8154815290600101906020018083116121e657829003601f168201915b5050505050905090565b60606000821415612255576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612369565b600082905060005b6000821461228757808061227090613b7f565b915050600a8261228091906139a7565b915061225d565b60008167ffffffffffffffff8111156122a3576122a2613ce4565b5b6040519080825280601f01601f1916602001820160405280156122d55781602001600182028036833780820191505090505b5090505b60008514612362576001826122ee9190613a32565b9150600a856122fd9190613bc8565b60306123099190613951565b60f81b81838151811061231f5761231e613cb5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561235b91906139a7565b94506122d9565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123e38383836126de565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561242657612421816126e3565b612465565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461246457612463838261272c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a8576124a381612899565b6124e7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124e6576124e5828261296a565b5b5b505050565b6124f683836129e9565b6125036000848484612547565b612542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612539906135ac565b60405180910390fd5b505050565b60006125688473ffffffffffffffffffffffffffffffffffffffff16612bb7565b156126d1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612591611cda565b8786866040518563ffffffff1660e01b81526004016125b394939291906134c3565b602060405180830381600087803b1580156125cd57600080fd5b505af19250505080156125fe57506040513d601f19601f820116820180604052508101906125fb9190612fa6565b60015b612681573d806000811461262e576040519150601f19603f3d011682016040523d82523d6000602084013e612633565b606091505b50600081511415612679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612670906135ac565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126d6565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161273984611332565b6127439190613a32565b9050600060076000848152602001908152602001600020549050818114612828576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128ad9190613a32565b90506000600960008481526020019081526020016000205490506000600883815481106128dd576128dc613cb5565b5b9060005260206000200154905080600883815481106128ff576128fe613cb5565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061294e5761294d613c86565b5b6001900381819060005260206000200160009055905550505050565b600061297583611332565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a509061372c565b60405180910390fd5b612a6281611c6e565b15612aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a99906135ec565b60405180910390fd5b612aae600083836123d8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612afe9190613951565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612bd690613b1c565b90600052602060002090601f016020900481019282612bf85760008555612c3f565b82601f10612c1157805160ff1916838001178555612c3f565b82800160010185558215612c3f579182015b82811115612c3e578251825591602001919060010190612c23565b5b509050612c4c9190612c50565b5090565b5b80821115612c69576000816000905550600101612c51565b5090565b6000612c80612c7b846138ac565b613887565b905082815260208101848484011115612c9c57612c9b613d18565b5b612ca7848285613ada565b509392505050565b6000612cc2612cbd846138dd565b613887565b905082815260208101848484011115612cde57612cdd613d18565b5b612ce9848285613ada565b509392505050565b600081359050612d00816143e5565b92915050565b600081359050612d15816143fc565b92915050565b600081359050612d2a81614413565b92915050565b600081519050612d3f81614413565b92915050565b600082601f830112612d5a57612d59613d13565b5b8135612d6a848260208601612c6d565b91505092915050565b600082601f830112612d8857612d87613d13565b5b8135612d98848260208601612caf565b91505092915050565b600081359050612db08161442a565b92915050565b600060208284031215612dcc57612dcb613d22565b5b6000612dda84828501612cf1565b91505092915050565b60008060408385031215612dfa57612df9613d22565b5b6000612e0885828601612cf1565b9250506020612e1985828601612cf1565b9150509250929050565b600080600060608486031215612e3c57612e3b613d22565b5b6000612e4a86828701612cf1565b9350506020612e5b86828701612cf1565b9250506040612e6c86828701612da1565b9150509250925092565b60008060008060808587031215612e9057612e8f613d22565b5b6000612e9e87828801612cf1565b9450506020612eaf87828801612cf1565b9350506040612ec087828801612da1565b925050606085013567ffffffffffffffff811115612ee157612ee0613d1d565b5b612eed87828801612d45565b91505092959194509250565b60008060408385031215612f1057612f0f613d22565b5b6000612f1e85828601612cf1565b9250506020612f2f85828601612d06565b9150509250929050565b60008060408385031215612f5057612f4f613d22565b5b6000612f5e85828601612cf1565b9250506020612f6f85828601612da1565b9150509250929050565b600060208284031215612f8f57612f8e613d22565b5b6000612f9d84828501612d1b565b91505092915050565b600060208284031215612fbc57612fbb613d22565b5b6000612fca84828501612d30565b91505092915050565b600060208284031215612fe957612fe8613d22565b5b600082013567ffffffffffffffff81111561300757613006613d1d565b5b61301384828501612d73565b91505092915050565b60006020828403121561303257613031613d22565b5b600061304084828501612da1565b91505092915050565b61305281613a66565b82525050565b61306181613a78565b82525050565b60006130728261390e565b61307c8185613924565b935061308c818560208601613ae9565b61309581613d27565b840191505092915050565b60006130ab82613919565b6130b58185613935565b93506130c5818560208601613ae9565b6130ce81613d27565b840191505092915050565b60006130e482613919565b6130ee8185613946565b93506130fe818560208601613ae9565b80840191505092915050565b6000613117602283613935565b915061312282613d38565b604082019050919050565b600061313a603383613935565b915061314582613d87565b604082019050919050565b600061315d602b83613935565b915061316882613dd6565b604082019050919050565b6000613180603283613935565b915061318b82613e25565b604082019050919050565b60006131a3602683613935565b91506131ae82613e74565b604082019050919050565b60006131c6601c83613935565b91506131d182613ec3565b602082019050919050565b60006131e9602483613935565b91506131f482613eec565b604082019050919050565b600061320c601983613935565b915061321782613f3b565b602082019050919050565b600061322f602c83613935565b915061323a82613f64565b604082019050919050565b6000613252602383613935565b915061325d82613fb3565b604082019050919050565b6000613275603883613935565b915061328082614002565b604082019050919050565b6000613298602a83613935565b91506132a382614051565b604082019050919050565b60006132bb602983613935565b91506132c6826140a0565b604082019050919050565b60006132de602a83613935565b91506132e9826140ef565b604082019050919050565b6000613301601d83613935565b915061330c8261413e565b602082019050919050565b6000613324602083613935565b915061332f82614167565b602082019050919050565b6000613347602c83613935565b915061335282614190565b604082019050919050565b600061336a602083613935565b9150613375826141df565b602082019050919050565b600061338d602983613935565b915061339882614208565b604082019050919050565b60006133b0602f83613935565b91506133bb82614257565b604082019050919050565b60006133d3602183613935565b91506133de826142a6565b604082019050919050565b60006133f6601283613935565b9150613401826142f5565b602082019050919050565b6000613419603183613935565b91506134248261431e565b604082019050919050565b600061343c602c83613935565b91506134478261436d565b604082019050919050565b600061345f602083613935565b915061346a826143bc565b602082019050919050565b61347e81613ad0565b82525050565b600061349082856130d9565b915061349c82846130d9565b91508190509392505050565b60006020820190506134bd6000830184613049565b92915050565b60006080820190506134d86000830187613049565b6134e56020830186613049565b6134f26040830185613475565b81810360608301526135048184613067565b905095945050505050565b60006020820190506135246000830184613058565b92915050565b6000602082019050818103600083015261354481846130a0565b905092915050565b600060208201905081810360008301526135658161310a565b9050919050565b600060208201905081810360008301526135858161312d565b9050919050565b600060208201905081810360008301526135a581613150565b9050919050565b600060208201905081810360008301526135c581613173565b9050919050565b600060208201905081810360008301526135e581613196565b9050919050565b60006020820190508181036000830152613605816131b9565b9050919050565b60006020820190508181036000830152613625816131dc565b9050919050565b60006020820190508181036000830152613645816131ff565b9050919050565b6000602082019050818103600083015261366581613222565b9050919050565b6000602082019050818103600083015261368581613245565b9050919050565b600060208201905081810360008301526136a581613268565b9050919050565b600060208201905081810360008301526136c58161328b565b9050919050565b600060208201905081810360008301526136e5816132ae565b9050919050565b60006020820190508181036000830152613705816132d1565b9050919050565b60006020820190508181036000830152613725816132f4565b9050919050565b6000602082019050818103600083015261374581613317565b9050919050565b600060208201905081810360008301526137658161333a565b9050919050565b600060208201905081810360008301526137858161335d565b9050919050565b600060208201905081810360008301526137a581613380565b9050919050565b600060208201905081810360008301526137c5816133a3565b9050919050565b600060208201905081810360008301526137e5816133c6565b9050919050565b60006020820190508181036000830152613805816133e9565b9050919050565b600060208201905081810360008301526138258161340c565b9050919050565b600060208201905081810360008301526138458161342f565b9050919050565b6000602082019050818103600083015261386581613452565b9050919050565b60006020820190506138816000830184613475565b92915050565b60006138916138a2565b905061389d8282613b4e565b919050565b6000604051905090565b600067ffffffffffffffff8211156138c7576138c6613ce4565b5b6138d082613d27565b9050602081019050919050565b600067ffffffffffffffff8211156138f8576138f7613ce4565b5b61390182613d27565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061395c82613ad0565b915061396783613ad0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561399c5761399b613bf9565b5b828201905092915050565b60006139b282613ad0565b91506139bd83613ad0565b9250826139cd576139cc613c28565b5b828204905092915050565b60006139e382613ad0565b91506139ee83613ad0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a2757613a26613bf9565b5b828202905092915050565b6000613a3d82613ad0565b9150613a4883613ad0565b925082821015613a5b57613a5a613bf9565b5b828203905092915050565b6000613a7182613ab0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b07578082015181840152602081019050613aec565b83811115613b16576000848401525b50505050565b60006002820490506001821680613b3457607f821691505b60208210811415613b4857613b47613c57565b5b50919050565b613b5782613d27565b810181811067ffffffffffffffff82111715613b7657613b75613ce4565b5b80604052505050565b6000613b8a82613ad0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bbd57613bbc613bf9565b5b600182019050919050565b6000613bd382613ad0565b9150613bde83613ad0565b925082613bee57613bed613c28565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e7420757020746f2032302070657220616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360008201527f207468616e206f7220657175616c20746f203000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420757020746f2032302070657220707572636860008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74206f6e63650000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74600082015250565b6143ee81613a66565b81146143f957600080fd5b50565b61440581613a78565b811461441057600080fd5b50565b61441c81613a84565b811461442757600080fd5b50565b61443381613ad0565b811461443e57600080fd5b5056fea26469706673582212209f0b1bbcd9520cbde7eb8780591eafa99cc34a27d79cee46897391528cfa28ec64736f6c63430008070033

Deployed Bytecode Sourcemap

49748:3424:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43573:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49977:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31551:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32999:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32522:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44213:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33889:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51847:200;;;;;;;;;;;;;:::i;:::-;;50732:832;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43881:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50026:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50482:89;;;;;;;;;;;;;:::i;:::-;;50579:143;;;;;;;;;;;;;:::i;:::-;;34299:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44403:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52259:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31245:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51572:269;;;;;;;;;;;;;:::i;:::-;;49905:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30975:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28798:148;;;;;;;;;;;;;:::i;:::-;;28147:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31720:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33292:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34555:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52376:793;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33658:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50066:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29101:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43573:224;43675:4;43714:35;43699:50;;;:11;:50;;;;:90;;;;43753:36;43777:11;43753:23;:36::i;:::-;43699:90;43692:97;;43573:224;;;:::o;49977:42::-;50017:2;49977:42;:::o;31551:100::-;31605:13;31638:5;31631:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31551:100;:::o;32999:221::-;33075:7;33103:16;33111:7;33103;:16::i;:::-;33095:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33188:15;:24;33204:7;33188:24;;;;;;;;;;;;;;;;;;;;;33181:31;;32999:221;;;:::o;32522:411::-;32603:13;32619:23;32634:7;32619:14;:23::i;:::-;32603:39;;32667:5;32661:11;;:2;:11;;;;32653:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32761:5;32745:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32770:37;32787:5;32794:12;:10;:12::i;:::-;32770:16;:37::i;:::-;32745:62;32723:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;32904:21;32913:2;32917:7;32904:8;:21::i;:::-;32592:341;32522:411;;:::o;44213:113::-;44274:7;44301:10;:17;;;;44294:24;;44213:113;:::o;33889:339::-;34084:41;34103:12;:10;:12::i;:::-;34117:7;34084:18;:41::i;:::-;34076:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34192:28;34202:4;34208:2;34212:7;34192:9;:28::i;:::-;33889:339;;;:::o;51847:200::-;28378:12;:10;:12::i;:::-;28367:23;;:7;:5;:7::i;:::-;:23;;;28359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51900:11:::1;51914:13;:11;:13::i;:::-;51900:27;;51938:6;51955:85;51971:2;51967:1;:6;51955:85;;;51995:33;52005:10;52026:1;52017:6;:10;;;;:::i;:::-;51995:9;:33::i;:::-;51975:3;;;;;:::i;:::-;;;;51955:85;;;51889:158;;51847:200::o:0;50732:832::-;50017:2;50804:41;50830:14;50804:9;:21;50814:10;50804:21;;;;;;;;;;;;;;;;:25;;:41;;;;:::i;:::-;:61;;50796:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;50923:12;;;;;;;;;;;50915:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;51008:1;50991:14;:18;50983:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;51121:10;;51084:33;51102:14;51084:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;51076:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;50017:2;51197:14;:34;;51189:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51322:9;51289:29;51303:14;49941:17;51289:13;;:29;;;;:::i;:::-;:42;51281:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;51400:41;51426:14;51400:9;:21;51410:10;51400:21;;;;;;;;;;;;;;;;:25;;:41;;;;:::i;:::-;51376:9;:21;51386:10;51376:21;;;;;;;;;;;;;;;:65;;;;51457:6;51452:105;51473:14;51469:1;:18;51452:105;;;51509:36;51519:10;51531:13;:11;:13::i;:::-;51509:9;:36::i;:::-;51489:3;;;;;:::i;:::-;;;;51452:105;;;;50732:832;:::o;43881:256::-;43978:7;44014:23;44031:5;44014:16;:23::i;:::-;44006:5;:31;43998:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;44103:12;:19;44116:5;44103:19;;;;;;;;;;;;;;;:26;44123:5;44103:26;;;;;;;;;;;;44096:33;;43881:256;;;;:::o;50026:33::-;;;;:::o;50482:89::-;28378:12;:10;:12::i;:::-;28367:23;;:7;:5;:7::i;:::-;:23;;;28359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50551:12:::1;;;;;;;;;;;50550:13;50535:12;;:28;;;;;;;;;;;;;;;;;;50482:89::o:0;50579:143::-;28378:12;:10;:12::i;:::-;28367:23;;:7;:5;:7::i;:::-;:23;;;28359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50627:15:::1;50645:21;50627:39;;50685:10;50677:28;;:37;50706:7;50677:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50616:106;50579:143::o:0;34299:185::-;34437:39;34454:4;34460:2;34464:7;34437:39;;;;;;;;;;;;:16;:39::i;:::-;34299:185;;;:::o;44403:233::-;44478:7;44514:30;:28;:30::i;:::-;44506:5;:38;44498:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;44611:10;44622:5;44611:17;;;;;;;;:::i;:::-;;;;;;;;;;44604:24;;44403:233;;;:::o;52259:109::-;28378:12;:10;:12::i;:::-;28367:23;;:7;:5;:7::i;:::-;:23;;;28359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52352:8:::1;52333:16;:27;;;;;;;;;;;;:::i;:::-;;52259:109:::0;:::o;31245:239::-;31317:7;31337:13;31353:7;:16;31361:7;31353:16;;;;;;;;;;;;;;;;;;;;;31337:32;;31405:1;31388:19;;:5;:19;;;;31380:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31471:5;31464:12;;;31245:239;;;:::o;51572:269::-;50317:6;:20;50324:12;:10;:12::i;:::-;50317:20;;;;;;;;;;;;;;;;;;;;;;;;;50316:21;50308:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;50394:4;50371:6;:20;50378:12;:10;:12::i;:::-;50371:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;51637:12:::1;;;;;;;;;;;51629:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;51729:10;;51705:20;51723:1;51705:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;:34;;51697:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;51797:36;51807:10;51819:13;:11;:13::i;:::-;51797:9;:36::i;:::-;51572:269::o:0;49905:53::-;49941:17;49905:53;:::o;30975:208::-;31047:7;31092:1;31075:19;;:5;:19;;;;31067:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31159:9;:16;31169:5;31159:16;;;;;;;;;;;;;;;;31152:23;;30975:208;;;:::o;28798:148::-;28378:12;:10;:12::i;:::-;28367:23;;:7;:5;:7::i;:::-;:23;;;28359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28905:1:::1;28868:40;;28889:6;;;;;;;;;;;28868:40;;;;;;;;;;;;28936:1;28919:6;;:19;;;;;;;;;;;;;;;;;;28798:148::o:0;28147:87::-;28193:7;28220:6;;;;;;;;;;;28213:13;;28147:87;:::o;31720:104::-;31776:13;31809:7;31802:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31720:104;:::o;33292:295::-;33407:12;:10;:12::i;:::-;33395:24;;:8;:24;;;;33387:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33507:8;33462:18;:32;33481:12;:10;:12::i;:::-;33462:32;;;;;;;;;;;;;;;:42;33495:8;33462:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33560:8;33531:48;;33546:12;:10;:12::i;:::-;33531:48;;;33570:8;33531:48;;;;;;:::i;:::-;;;;;;;;33292:295;;:::o;34555:328::-;34730:41;34749:12;:10;:12::i;:::-;34763:7;34730:18;:41::i;:::-;34722:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34836:39;34850:4;34856:2;34860:7;34869:5;34836:13;:39::i;:::-;34555:328;;;;:::o;52376:793::-;52449:13;52483:16;52491:7;52483;:16::i;:::-;52475:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52564:23;52590:10;:19;52601:7;52590:19;;;;;;;;;;;52564:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52620:18;52641:10;:8;:10::i;:::-;52620:31;;52749:1;52733:4;52727:18;:23;52723:72;;;52774:9;52767:16;;;;;;52723:72;52925:1;52905:9;52899:23;:27;52895:108;;;52974:4;52980:9;52957:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52943:48;;;;;;52895:108;53135:4;53141:18;:7;:16;:18::i;:::-;53118:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53104:57;;;;52376:793;;;;:::o;33658:164::-;33755:4;33779:18;:25;33798:5;33779:25;;;;;;;;;;;;;;;:35;33805:8;33779:35;;;;;;;;;;;;;;;;;;;;;;;;;33772:42;;33658:164;;;;:::o;50066:32::-;;;;;;;;;;;;;:::o;29101:244::-;28378:12;:10;:12::i;:::-;28367:23;;:7;:5;:7::i;:::-;:23;;;28359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29210:1:::1;29190:22;;:8;:22;;;;29182:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29300:8;29271:38;;29292:6;;;;;;;;;;;29271:38;;;;;;;;;;;;29329:8;29320:6;;:17;;;;;;;;;;;;;;;;;;29101:244:::0;:::o;30606:305::-;30708:4;30760:25;30745:40;;;:11;:40;;;;:105;;;;30817:33;30802:48;;;:11;:48;;;;30745:105;:158;;;;30867:36;30891:11;30867:23;:36::i;:::-;30745:158;30725:178;;30606:305;;;:::o;36393:127::-;36458:4;36510:1;36482:30;;:7;:16;36490:7;36482:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36475:37;;36393:127;;;:::o;26765:98::-;26818:7;26845:10;26838:17;;26765:98;:::o;40375:174::-;40477:2;40450:15;:24;40466:7;40450:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40533:7;40529:2;40495:46;;40504:23;40519:7;40504:14;:23::i;:::-;40495:46;;;;;;;;;;;;40375:174;;:::o;36687:348::-;36780:4;36805:16;36813:7;36805;:16::i;:::-;36797:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36881:13;36897:23;36912:7;36897:14;:23::i;:::-;36881:39;;36950:5;36939:16;;:7;:16;;;:51;;;;36983:7;36959:31;;:20;36971:7;36959:11;:20::i;:::-;:31;;;36939:51;:87;;;;36994:32;37011:5;37018:7;36994:16;:32::i;:::-;36939:87;36931:96;;;36687:348;;;;:::o;39679:578::-;39838:4;39811:31;;:23;39826:7;39811:14;:23::i;:::-;:31;;;39803:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39921:1;39907:16;;:2;:16;;;;39899:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39977:39;39998:4;40004:2;40008:7;39977:20;:39::i;:::-;40081:29;40098:1;40102:7;40081:8;:29::i;:::-;40142:1;40123:9;:15;40133:4;40123:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;40171:1;40154:9;:13;40164:2;40154:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40202:2;40183:7;:16;40191:7;40183:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40241:7;40237:2;40222:27;;40231:4;40222:27;;;;;;;;;;;;39679:578;;;:::o;37377:110::-;37453:26;37463:2;37467:7;37453:26;;;;;;;;;;;;:9;:26::i;:::-;37377:110;;:::o;2763:98::-;2821:7;2852:1;2848;:5;;;;:::i;:::-;2841:12;;2763:98;;;;:::o;3501:::-;3559:7;3590:1;3586;:5;;;;:::i;:::-;3579:12;;3501:98;;;;:::o;35765:315::-;35922:28;35932:4;35938:2;35942:7;35922:9;:28::i;:::-;35969:48;35992:4;35998:2;36002:7;36011:5;35969:22;:48::i;:::-;35961:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35765:315;;;;:::o;52055:117::-;52115:13;52148:16;52141:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52055:117;:::o;7404:723::-;7460:13;7690:1;7681:5;:10;7677:53;;;7708:10;;;;;;;;;;;;;;;;;;;;;7677:53;7740:12;7755:5;7740:20;;7771:14;7796:78;7811:1;7803:4;:9;7796:78;;7829:8;;;;;:::i;:::-;;;;7860:2;7852:10;;;;;:::i;:::-;;;7796:78;;;7884:19;7916:6;7906:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7884:39;;7934:154;7950:1;7941:5;:10;7934:154;;7978:1;7968:11;;;;;:::i;:::-;;;8045:2;8037:5;:10;;;;:::i;:::-;8024:2;:24;;;;:::i;:::-;8011:39;;7994:6;8001;7994:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8074:2;8065:11;;;;;:::i;:::-;;;7934:154;;;8112:6;8098:21;;;;;7404:723;;;;:::o;19751:157::-;19836:4;19875:25;19860:40;;;:11;:40;;;;19853:47;;19751:157;;;:::o;45249:589::-;45393:45;45420:4;45426:2;45430:7;45393:26;:45::i;:::-;45471:1;45455:18;;:4;:18;;;45451:187;;;45490:40;45522:7;45490:31;:40::i;:::-;45451:187;;;45560:2;45552:10;;:4;:10;;;45548:90;;45579:47;45612:4;45618:7;45579:32;:47::i;:::-;45548:90;45451:187;45666:1;45652:16;;:2;:16;;;45648:183;;;45685:45;45722:7;45685:36;:45::i;:::-;45648:183;;;45758:4;45752:10;;:2;:10;;;45748:83;;45779:40;45807:2;45811:7;45779:27;:40::i;:::-;45748:83;45648:183;45249:589;;;:::o;37714:321::-;37844:18;37850:2;37854:7;37844:5;:18::i;:::-;37895:54;37926:1;37930:2;37934:7;37943:5;37895:22;:54::i;:::-;37873:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;37714:321;;;:::o;41114:872::-;41269:4;41290:15;:2;:13;;;:15::i;:::-;41286:693;;;41342:2;41326:36;;;41363:12;:10;:12::i;:::-;41377:4;41383:7;41392:5;41326:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41322:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41589:1;41572:6;:13;:18;41568:341;;;41615:60;;;;;;;;;;:::i;:::-;;;;;;;;41568:341;41859:6;41853:13;41844:6;41840:2;41836:15;41829:38;41322:602;41459:45;;;41449:55;;;:6;:55;;;;41442:62;;;;;41286:693;41963:4;41956:11;;41114:872;;;;;;;:::o;42599:126::-;;;;:::o;46561:164::-;46665:10;:17;;;;46638:15;:24;46654:7;46638:24;;;;;;;;;;;:44;;;;46693:10;46709:7;46693:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46561:164;:::o;47352:988::-;47618:22;47668:1;47643:22;47660:4;47643:16;:22::i;:::-;:26;;;;:::i;:::-;47618:51;;47680:18;47701:17;:26;47719:7;47701:26;;;;;;;;;;;;47680:47;;47848:14;47834:10;:28;47830:328;;47879:19;47901:12;:18;47914:4;47901:18;;;;;;;;;;;;;;;:34;47920:14;47901:34;;;;;;;;;;;;47879:56;;47985:11;47952:12;:18;47965:4;47952:18;;;;;;;;;;;;;;;:30;47971:10;47952:30;;;;;;;;;;;:44;;;;48102:10;48069:17;:30;48087:11;48069:30;;;;;;;;;;;:43;;;;47864:294;47830:328;48254:17;:26;48272:7;48254:26;;;;;;;;;;;48247:33;;;48298:12;:18;48311:4;48298:18;;;;;;;;;;;;;;;:34;48317:14;48298:34;;;;;;;;;;;48291:41;;;47433:907;;47352:988;;:::o;48635:1079::-;48888:22;48933:1;48913:10;:17;;;;:21;;;;:::i;:::-;48888:46;;48945:18;48966:15;:24;48982:7;48966:24;;;;;;;;;;;;48945:45;;49317:19;49339:10;49350:14;49339:26;;;;;;;;:::i;:::-;;;;;;;;;;49317:48;;49403:11;49378:10;49389;49378:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;49514:10;49483:15;:28;49499:11;49483:28;;;;;;;;;;;:41;;;;49655:15;:24;49671:7;49655:24;;;;;;;;;;;49648:31;;;49690:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48706:1008;;;48635:1079;:::o;46139:221::-;46224:14;46241:20;46258:2;46241:16;:20::i;:::-;46224:37;;46299:7;46272:12;:16;46285:2;46272:16;;;;;;;;;;;;;;;:24;46289:6;46272:24;;;;;;;;;;;:34;;;;46346:6;46317:17;:26;46335:7;46317:26;;;;;;;;;;;:35;;;;46213:147;46139:221;;:::o;38371:382::-;38465:1;38451:16;;:2;:16;;;;38443:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38524:16;38532:7;38524;:16::i;:::-;38523:17;38515:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38586:45;38615:1;38619:2;38623:7;38586:20;:45::i;:::-;38661:1;38644:9;:13;38654:2;38644:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38692:2;38673:7;:16;38681:7;38673:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38737:7;38733:2;38712:33;;38729:1;38712:33;;;;;;;;;;;;38371:382;;:::o;9867:444::-;9927:4;10135:12;10259:7;10247:20;10239:28;;10302:1;10295:4;:8;10288:15;;;9867:444;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13724:366;;;:::o;14096:::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14096:366;;;:::o;14468:::-;14610:3;14631:67;14695:2;14690:3;14631:67;:::i;:::-;14624:74;;14707:93;14796:3;14707:93;:::i;:::-;14825:2;14820:3;14816:12;14809:19;;14468:366;;;:::o;14840:::-;14982:3;15003:67;15067:2;15062:3;15003:67;:::i;:::-;14996:74;;15079:93;15168:3;15079:93;:::i;:::-;15197:2;15192:3;15188:12;15181:19;;14840:366;;;:::o;15212:::-;15354:3;15375:67;15439:2;15434:3;15375:67;:::i;:::-;15368:74;;15451:93;15540:3;15451:93;:::i;:::-;15569:2;15564:3;15560:12;15553:19;;15212:366;;;:::o;15584:::-;15726:3;15747:67;15811:2;15806:3;15747:67;:::i;:::-;15740:74;;15823:93;15912:3;15823:93;:::i;:::-;15941:2;15936:3;15932:12;15925:19;;15584:366;;;:::o;15956:::-;16098:3;16119:67;16183:2;16178:3;16119:67;:::i;:::-;16112:74;;16195:93;16284:3;16195:93;:::i;:::-;16313:2;16308:3;16304:12;16297:19;;15956:366;;;:::o;16328:::-;16470:3;16491:67;16555:2;16550:3;16491:67;:::i;:::-;16484:74;;16567:93;16656:3;16567:93;:::i;:::-;16685:2;16680:3;16676:12;16669:19;;16328:366;;;:::o;16700:::-;16842:3;16863:67;16927:2;16922:3;16863:67;:::i;:::-;16856:74;;16939:93;17028:3;16939:93;:::i;:::-;17057:2;17052:3;17048:12;17041:19;;16700:366;;;:::o;17072:::-;17214:3;17235:67;17299:2;17294:3;17235:67;:::i;:::-;17228:74;;17311:93;17400:3;17311:93;:::i;:::-;17429:2;17424:3;17420:12;17413:19;;17072:366;;;:::o;17444:::-;17586:3;17607:67;17671:2;17666:3;17607:67;:::i;:::-;17600:74;;17683:93;17772:3;17683:93;:::i;:::-;17801:2;17796:3;17792:12;17785:19;;17444:366;;;:::o;17816:118::-;17903:24;17921:5;17903:24;:::i;:::-;17898:3;17891:37;17816:118;;:::o;17940:435::-;18120:3;18142:95;18233:3;18224:6;18142:95;:::i;:::-;18135:102;;18254:95;18345:3;18336:6;18254:95;:::i;:::-;18247:102;;18366:3;18359:10;;17940:435;;;;;:::o;18381:222::-;18474:4;18512:2;18501:9;18497:18;18489:26;;18525:71;18593:1;18582:9;18578:17;18569:6;18525:71;:::i;:::-;18381:222;;;;:::o;18609:640::-;18804:4;18842:3;18831:9;18827:19;18819:27;;18856:71;18924:1;18913:9;18909:17;18900:6;18856:71;:::i;:::-;18937:72;19005:2;18994:9;18990:18;18981:6;18937:72;:::i;:::-;19019;19087:2;19076:9;19072:18;19063:6;19019:72;:::i;:::-;19138:9;19132:4;19128:20;19123:2;19112:9;19108:18;19101:48;19166:76;19237:4;19228:6;19166:76;:::i;:::-;19158:84;;18609:640;;;;;;;:::o;19255:210::-;19342:4;19380:2;19369:9;19365:18;19357:26;;19393:65;19455:1;19444:9;19440:17;19431:6;19393:65;:::i;:::-;19255:210;;;;:::o;19471:313::-;19584:4;19622:2;19611:9;19607:18;19599:26;;19671:9;19665:4;19661:20;19657:1;19646:9;19642:17;19635:47;19699:78;19772:4;19763:6;19699:78;:::i;:::-;19691:86;;19471:313;;;;:::o;19790:419::-;19956:4;19994:2;19983:9;19979:18;19971:26;;20043:9;20037:4;20033:20;20029:1;20018:9;20014:17;20007:47;20071:131;20197:4;20071:131;:::i;:::-;20063:139;;19790:419;;;:::o;20215:::-;20381:4;20419:2;20408:9;20404:18;20396:26;;20468:9;20462:4;20458:20;20454:1;20443:9;20439:17;20432:47;20496:131;20622:4;20496:131;:::i;:::-;20488:139;;20215:419;;;:::o;20640:::-;20806:4;20844:2;20833:9;20829:18;20821:26;;20893:9;20887:4;20883:20;20879:1;20868:9;20864:17;20857:47;20921:131;21047:4;20921:131;:::i;:::-;20913:139;;20640:419;;;:::o;21065:::-;21231:4;21269:2;21258:9;21254:18;21246:26;;21318:9;21312:4;21308:20;21304:1;21293:9;21289:17;21282:47;21346:131;21472:4;21346:131;:::i;:::-;21338:139;;21065:419;;;:::o;21490:::-;21656:4;21694:2;21683:9;21679:18;21671:26;;21743:9;21737:4;21733:20;21729:1;21718:9;21714:17;21707:47;21771:131;21897:4;21771:131;:::i;:::-;21763:139;;21490:419;;;:::o;21915:::-;22081:4;22119:2;22108:9;22104:18;22096:26;;22168:9;22162:4;22158:20;22154:1;22143:9;22139:17;22132:47;22196:131;22322:4;22196:131;:::i;:::-;22188:139;;21915:419;;;:::o;22340:::-;22506:4;22544:2;22533:9;22529:18;22521:26;;22593:9;22587:4;22583:20;22579:1;22568:9;22564:17;22557:47;22621:131;22747:4;22621:131;:::i;:::-;22613:139;;22340:419;;;:::o;22765:::-;22931:4;22969:2;22958:9;22954:18;22946:26;;23018:9;23012:4;23008:20;23004:1;22993:9;22989:17;22982:47;23046:131;23172:4;23046:131;:::i;:::-;23038:139;;22765:419;;;:::o;23190:::-;23356:4;23394:2;23383:9;23379:18;23371:26;;23443:9;23437:4;23433:20;23429:1;23418:9;23414:17;23407:47;23471:131;23597:4;23471:131;:::i;:::-;23463:139;;23190:419;;;:::o;23615:::-;23781:4;23819:2;23808:9;23804:18;23796:26;;23868:9;23862:4;23858:20;23854:1;23843:9;23839:17;23832:47;23896:131;24022:4;23896:131;:::i;:::-;23888:139;;23615:419;;;:::o;24040:::-;24206:4;24244:2;24233:9;24229:18;24221:26;;24293:9;24287:4;24283:20;24279:1;24268:9;24264:17;24257:47;24321:131;24447:4;24321:131;:::i;:::-;24313:139;;24040:419;;;:::o;24465:::-;24631:4;24669:2;24658:9;24654:18;24646:26;;24718:9;24712:4;24708:20;24704:1;24693:9;24689:17;24682:47;24746:131;24872:4;24746:131;:::i;:::-;24738:139;;24465:419;;;:::o;24890:::-;25056:4;25094:2;25083:9;25079:18;25071:26;;25143:9;25137:4;25133:20;25129:1;25118:9;25114:17;25107:47;25171:131;25297:4;25171:131;:::i;:::-;25163:139;;24890:419;;;:::o;25315:::-;25481:4;25519:2;25508:9;25504:18;25496:26;;25568:9;25562:4;25558:20;25554:1;25543:9;25539:17;25532:47;25596:131;25722:4;25596:131;:::i;:::-;25588:139;;25315:419;;;:::o;25740:::-;25906:4;25944:2;25933:9;25929:18;25921:26;;25993:9;25987:4;25983:20;25979:1;25968:9;25964:17;25957:47;26021:131;26147:4;26021:131;:::i;:::-;26013:139;;25740:419;;;:::o;26165:::-;26331:4;26369:2;26358:9;26354:18;26346:26;;26418:9;26412:4;26408:20;26404:1;26393:9;26389:17;26382:47;26446:131;26572:4;26446:131;:::i;:::-;26438:139;;26165:419;;;:::o;26590:::-;26756:4;26794:2;26783:9;26779:18;26771:26;;26843:9;26837:4;26833:20;26829:1;26818:9;26814:17;26807:47;26871:131;26997:4;26871:131;:::i;:::-;26863:139;;26590:419;;;:::o;27015:::-;27181:4;27219:2;27208:9;27204:18;27196:26;;27268:9;27262:4;27258:20;27254:1;27243:9;27239:17;27232:47;27296:131;27422:4;27296:131;:::i;:::-;27288:139;;27015:419;;;:::o;27440:::-;27606:4;27644:2;27633:9;27629:18;27621:26;;27693:9;27687:4;27683:20;27679:1;27668:9;27664:17;27657:47;27721:131;27847:4;27721:131;:::i;:::-;27713:139;;27440:419;;;:::o;27865:::-;28031:4;28069:2;28058:9;28054:18;28046:26;;28118:9;28112:4;28108:20;28104:1;28093:9;28089:17;28082:47;28146:131;28272:4;28146:131;:::i;:::-;28138:139;;27865:419;;;:::o;28290:::-;28456:4;28494:2;28483:9;28479:18;28471:26;;28543:9;28537:4;28533:20;28529:1;28518:9;28514:17;28507:47;28571:131;28697:4;28571:131;:::i;:::-;28563:139;;28290:419;;;:::o;28715:::-;28881:4;28919:2;28908:9;28904:18;28896:26;;28968:9;28962:4;28958:20;28954:1;28943:9;28939:17;28932:47;28996:131;29122:4;28996:131;:::i;:::-;28988:139;;28715:419;;;:::o;29140:::-;29306:4;29344:2;29333:9;29329:18;29321:26;;29393:9;29387:4;29383:20;29379:1;29368:9;29364:17;29357:47;29421:131;29547:4;29421:131;:::i;:::-;29413:139;;29140:419;;;:::o;29565:::-;29731:4;29769:2;29758:9;29754:18;29746:26;;29818:9;29812:4;29808:20;29804:1;29793:9;29789:17;29782:47;29846:131;29972:4;29846:131;:::i;:::-;29838:139;;29565:419;;;:::o;29990:::-;30156:4;30194:2;30183:9;30179:18;30171:26;;30243:9;30237:4;30233:20;30229:1;30218:9;30214:17;30207:47;30271:131;30397:4;30271:131;:::i;:::-;30263:139;;29990:419;;;:::o;30415:222::-;30508:4;30546:2;30535:9;30531:18;30523:26;;30559:71;30627:1;30616:9;30612:17;30603:6;30559:71;:::i;:::-;30415:222;;;;:::o;30643:129::-;30677:6;30704:20;;:::i;:::-;30694:30;;30733:33;30761:4;30753:6;30733:33;:::i;:::-;30643:129;;;:::o;30778:75::-;30811:6;30844:2;30838:9;30828:19;;30778:75;:::o;30859:307::-;30920:4;31010:18;31002:6;30999:30;30996:56;;;31032:18;;:::i;:::-;30996:56;31070:29;31092:6;31070:29;:::i;:::-;31062:37;;31154:4;31148;31144:15;31136:23;;30859:307;;;:::o;31172:308::-;31234:4;31324:18;31316:6;31313:30;31310:56;;;31346:18;;:::i;:::-;31310:56;31384:29;31406:6;31384:29;:::i;:::-;31376:37;;31468:4;31462;31458:15;31450:23;;31172:308;;;:::o;31486:98::-;31537:6;31571:5;31565:12;31555:22;;31486:98;;;:::o;31590:99::-;31642:6;31676:5;31670:12;31660:22;;31590:99;;;:::o;31695:168::-;31778:11;31812:6;31807:3;31800:19;31852:4;31847:3;31843:14;31828:29;;31695:168;;;;:::o;31869:169::-;31953:11;31987:6;31982:3;31975:19;32027:4;32022:3;32018:14;32003:29;;31869:169;;;;:::o;32044:148::-;32146:11;32183:3;32168:18;;32044:148;;;;:::o;32198:305::-;32238:3;32257:20;32275:1;32257:20;:::i;:::-;32252:25;;32291:20;32309:1;32291:20;:::i;:::-;32286:25;;32445:1;32377:66;32373:74;32370:1;32367:81;32364:107;;;32451:18;;:::i;:::-;32364:107;32495:1;32492;32488:9;32481:16;;32198:305;;;;:::o;32509:185::-;32549:1;32566:20;32584:1;32566:20;:::i;:::-;32561:25;;32600:20;32618:1;32600:20;:::i;:::-;32595:25;;32639:1;32629:35;;32644:18;;:::i;:::-;32629:35;32686:1;32683;32679:9;32674:14;;32509:185;;;;:::o;32700:348::-;32740:7;32763:20;32781:1;32763:20;:::i;:::-;32758:25;;32797:20;32815:1;32797:20;:::i;:::-;32792:25;;32985:1;32917:66;32913:74;32910:1;32907:81;32902:1;32895:9;32888:17;32884:105;32881:131;;;32992:18;;:::i;:::-;32881:131;33040:1;33037;33033:9;33022:20;;32700:348;;;;:::o;33054:191::-;33094:4;33114:20;33132:1;33114:20;:::i;:::-;33109:25;;33148:20;33166:1;33148:20;:::i;:::-;33143:25;;33187:1;33184;33181:8;33178:34;;;33192:18;;:::i;:::-;33178:34;33237:1;33234;33230:9;33222:17;;33054:191;;;;:::o;33251:96::-;33288:7;33317:24;33335:5;33317:24;:::i;:::-;33306:35;;33251:96;;;:::o;33353:90::-;33387:7;33430:5;33423:13;33416:21;33405:32;;33353:90;;;:::o;33449:149::-;33485:7;33525:66;33518:5;33514:78;33503:89;;33449:149;;;:::o;33604:126::-;33641:7;33681:42;33674:5;33670:54;33659:65;;33604:126;;;:::o;33736:77::-;33773:7;33802:5;33791:16;;33736:77;;;:::o;33819:154::-;33903:6;33898:3;33893;33880:30;33965:1;33956:6;33951:3;33947:16;33940:27;33819:154;;;:::o;33979:307::-;34047:1;34057:113;34071:6;34068:1;34065:13;34057:113;;;34156:1;34151:3;34147:11;34141:18;34137:1;34132:3;34128:11;34121:39;34093:2;34090:1;34086:10;34081:15;;34057:113;;;34188:6;34185:1;34182:13;34179:101;;;34268:1;34259:6;34254:3;34250:16;34243:27;34179:101;34028:258;33979:307;;;:::o;34292:320::-;34336:6;34373:1;34367:4;34363:12;34353:22;;34420:1;34414:4;34410:12;34441:18;34431:81;;34497:4;34489:6;34485:17;34475:27;;34431:81;34559:2;34551:6;34548:14;34528:18;34525:38;34522:84;;;34578:18;;:::i;:::-;34522:84;34343:269;34292:320;;;:::o;34618:281::-;34701:27;34723:4;34701:27;:::i;:::-;34693:6;34689:40;34831:6;34819:10;34816:22;34795:18;34783:10;34780:34;34777:62;34774:88;;;34842:18;;:::i;:::-;34774:88;34882:10;34878:2;34871:22;34661:238;34618:281;;:::o;34905:233::-;34944:3;34967:24;34985:5;34967:24;:::i;:::-;34958:33;;35013:66;35006:5;35003:77;35000:103;;;35083:18;;:::i;:::-;35000:103;35130:1;35123:5;35119:13;35112:20;;34905:233;;;:::o;35144:176::-;35176:1;35193:20;35211:1;35193:20;:::i;:::-;35188:25;;35227:20;35245:1;35227:20;:::i;:::-;35222:25;;35266:1;35256:35;;35271:18;;:::i;:::-;35256:35;35312:1;35309;35305:9;35300:14;;35144:176;;;;:::o;35326:180::-;35374:77;35371:1;35364:88;35471:4;35468:1;35461:15;35495:4;35492:1;35485:15;35512:180;35560:77;35557:1;35550:88;35657:4;35654:1;35647:15;35681:4;35678:1;35671:15;35698:180;35746:77;35743:1;35736:88;35843:4;35840:1;35833:15;35867:4;35864:1;35857:15;35884:180;35932:77;35929:1;35922:88;36029:4;36026:1;36019:15;36053:4;36050:1;36043:15;36070:180;36118:77;36115:1;36108:88;36215:4;36212:1;36205:15;36239:4;36236:1;36229:15;36256:180;36304:77;36301:1;36294:88;36401:4;36398:1;36391:15;36425:4;36422:1;36415:15;36442:117;36551:1;36548;36541:12;36565:117;36674:1;36671;36664:12;36688:117;36797:1;36794;36787:12;36811:117;36920:1;36917;36910:12;36934:102;36975:6;37026:2;37022:7;37017:2;37010:5;37006:14;37002:28;36992:38;;36934:102;;;:::o;37042:221::-;37182:34;37178:1;37170:6;37166:14;37159:58;37251:4;37246:2;37238:6;37234:15;37227:29;37042:221;:::o;37269:238::-;37409:34;37405:1;37397:6;37393:14;37386:58;37478:21;37473:2;37465:6;37461:15;37454:46;37269:238;:::o;37513:230::-;37653:34;37649:1;37641:6;37637:14;37630:58;37722:13;37717:2;37709:6;37705:15;37698:38;37513:230;:::o;37749:237::-;37889:34;37885:1;37877:6;37873:14;37866:58;37958:20;37953:2;37945:6;37941:15;37934:45;37749:237;:::o;37992:225::-;38132:34;38128:1;38120:6;38116:14;38109:58;38201:8;38196:2;38188:6;38184:15;38177:33;37992:225;:::o;38223:178::-;38363:30;38359:1;38351:6;38347:14;38340:54;38223:178;:::o;38407:223::-;38547:34;38543:1;38535:6;38531:14;38524:58;38616:6;38611:2;38603:6;38599:15;38592:31;38407:223;:::o;38636:175::-;38776:27;38772:1;38764:6;38760:14;38753:51;38636:175;:::o;38817:231::-;38957:34;38953:1;38945:6;38941:14;38934:58;39026:14;39021:2;39013:6;39009:15;39002:39;38817:231;:::o;39054:222::-;39194:34;39190:1;39182:6;39178:14;39171:58;39263:5;39258:2;39250:6;39246:15;39239:30;39054:222;:::o;39282:243::-;39422:34;39418:1;39410:6;39406:14;39399:58;39491:26;39486:2;39478:6;39474:15;39467:51;39282:243;:::o;39531:229::-;39671:34;39667:1;39659:6;39655:14;39648:58;39740:12;39735:2;39727:6;39723:15;39716:37;39531:229;:::o;39766:228::-;39906:34;39902:1;39894:6;39890:14;39883:58;39975:11;39970:2;39962:6;39958:15;39951:36;39766:228;:::o;40000:229::-;40140:34;40136:1;40128:6;40124:14;40117:58;40209:12;40204:2;40196:6;40192:15;40185:37;40000:229;:::o;40235:179::-;40375:31;40371:1;40363:6;40359:14;40352:55;40235:179;:::o;40420:182::-;40560:34;40556:1;40548:6;40544:14;40537:58;40420:182;:::o;40608:231::-;40748:34;40744:1;40736:6;40732:14;40725:58;40817:14;40812:2;40804:6;40800:15;40793:39;40608:231;:::o;40845:182::-;40985:34;40981:1;40973:6;40969:14;40962:58;40845:182;:::o;41033:228::-;41173:34;41169:1;41161:6;41157:14;41150:58;41242:11;41237:2;41229:6;41225:15;41218:36;41033:228;:::o;41267:234::-;41407:34;41403:1;41395:6;41391:14;41384:58;41476:17;41471:2;41463:6;41459:15;41452:42;41267:234;:::o;41507:220::-;41647:34;41643:1;41635:6;41631:14;41624:58;41716:3;41711:2;41703:6;41699:15;41692:28;41507:220;:::o;41733:168::-;41873:20;41869:1;41861:6;41857:14;41850:44;41733:168;:::o;41907:236::-;42047:34;42043:1;42035:6;42031:14;42024:58;42116:19;42111:2;42103:6;42099:15;42092:44;41907:236;:::o;42149:231::-;42289:34;42285:1;42277:6;42273:14;42266:58;42358:14;42353:2;42345:6;42341:15;42334:39;42149:231;:::o;42386:182::-;42526:34;42522:1;42514:6;42510:14;42503:58;42386:182;:::o;42574:122::-;42647:24;42665:5;42647:24;:::i;:::-;42640:5;42637:35;42627:63;;42686:1;42683;42676:12;42627:63;42574:122;:::o;42702:116::-;42772:21;42787:5;42772:21;:::i;:::-;42765:5;42762:32;42752:60;;42808:1;42805;42798:12;42752:60;42702:116;:::o;42824:120::-;42896:23;42913:5;42896:23;:::i;:::-;42889:5;42886:34;42876:62;;42934:1;42931;42924:12;42876:62;42824:120;:::o;42950:122::-;43023:24;43041:5;43023:24;:::i;:::-;43016:5;43013:35;43003:63;;43062:1;43059;43052:12;43003:63;42950:122;:::o

Swarm Source

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