ETH Price: $2,311.21 (-0.20%)

Token

BaldJesus (BJS)
 

Overview

Max Total Supply

152 BJS

Holders

89

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BJS
0x6900ba4928d0362fa316889ddda6226edbb57d2b
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:
BaldJesii

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-28
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/[email protected]/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


// File: @openzeppelin/[email protected]/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol



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

// File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol



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

// File: @openzeppelin/[email protected]/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}



// File: @openzeppelin/[email protected]/utils/Address.sol



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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/IERC721Receiver.sol



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




// File: @openzeppelin/[email protected]/token/ERC721/ERC721.sol



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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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` and `to` are never both zero.
     *
     * 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 {}
}

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol



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

// File: message2.sol


pragma solidity ^0.8.2;

contract BaldJesii is ERC721Enumerable, Ownable {

    uint256 public constant MAX_NFT_SUPPLY = 777;

    uint256 public constant maxPurchase = 20;

    uint256 public constant reserveJesii = 7;

    uint256 public constant _tokenPrice = 40000000000000000;

    // SHA256 of concatenated hash string containing all the hashes of all tokens
    string public FinalProofHash;
    
    string public METADATA_IPFS_HASH;

    string public baseURI;

    // ensures that we do not change the metadata multiple times
    bool public metadataRevealed = false;

    // Sale starts when the function "getReserves()" is called, which gives the owner 7 RANDOM tokens for the team and marketing purposes
    bool public saleIsActive = false;

    constructor() ERC721("BaldJesus", "BJS") {}

    function buyTokens(uint256 numberOfTokens) public payable {
      require(saleIsActive, "Sale must be active to mint Bald Jesii");
      require(numberOfTokens <= maxPurchase, "Can only mint 20 tokens at a time");
      uint256 ts = totalSupply();
      require((ts + numberOfTokens) <= MAX_NFT_SUPPLY, "Purchase would exceed max supply of Jesii");
      require(msg.value >= _tokenPrice * numberOfTokens, "Ether value sent is not correct");
      for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, ts+i);
        }
    }
    
    function _baseURI() internal view override returns (string memory) {
      return baseURI;
    }
    
    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked("ipfs://", METADATA_IPFS_HASH));
    }

    // OWNER ONLY FUNCTIONS

    // reveals the metadata and prohibits further changes
    function revealMetadata(string memory finalHash, string memory metadataHash) public onlyOwner {
        require(metadataRevealed != true, "BaldJesus: You've already revealed the metadata!");
        FinalProofHash = finalHash;
        METADATA_IPFS_HASH = metadataHash;
        metadataRevealed = true;
    }

    // withdraw all the Ether from the contract to the owner
    function withdrawAll() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    // set baseURI
    function setBaseURI(string memory uri) public onlyOwner {
      baseURI = uri;
    }

    /* receive 7 RANDOM Jesii for the team and marketing purposes, then start the sale */
    function getReserves() public onlyOwner {
        require(saleIsActive == false, "BaldJesus: Reserves taken and sale started already!");
        uint256 ts = totalSupply();
        for (uint256 x = 0; x < reserveJesii; x++) {
            _safeMint(msg.sender, ts+x);
        }
        saleIsActive = true;
    }
}

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":"FinalProofHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_IPFS_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenPrice","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"buyTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveJesii","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"finalHash","type":"string"},{"internalType":"string","name":"metadataHash","type":"string"}],"name":"revealMetadata","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":"uri","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280600981526020017f42616c644a6573757300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f424a5300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000cc929190620001dc565b508060019080519060200190620000e5929190620001dc565b50505062000108620000fc6200010e60201b60201c565b6200011660201b60201c565b620002f1565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ea906200028c565b90600052602060002090601f0160209004810192826200020e57600085556200025a565b82601f106200022957805160ff19168380011785556200025a565b828001600101855582156200025a579182015b82811115620002595782518255916020019190600101906200023c565b5b5090506200026991906200026d565b5090565b5b80821115620002885760008160009055506001016200026e565b5090565b60006002820490506001821680620002a557607f821691505b60208210811415620002bc57620002bb620002c2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6144f380620003016000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610702578063e985e9c51461072d578063eb8d24441461076a578063f2e94c9614610795578063f2fde38b146107c0576101f9565b8063b88d4fde14610648578063c87b56dd14610671578063d24f0757146106ae578063dcc7ba24146106d7576101f9565b806395d89b41116100dc57806395d89b411461059e578063977b055b146105c9578063a22cb465146105f4578063b5077f441461061d576101f9565b8063715018a61461051a5780637dd76f2914610531578063853828b61461055c5780638da5cb5b14610573576101f9565b80633610724e116101905780634f6ccce71161015f5780634f6ccce71461040f57806355f804b31461044c5780636352211e146104755780636c0360eb146104b257806370a08231146104dd576101f9565b80633610724e146103745780633b971f9f1461039057806342842e0e146103bb57806342cc5d25146103e4576101f9565b8063095ea7b3116101cc578063095ea7b3146102ba57806318160ddd146102e357806323b872dd1461030e5780632f745c5914610337576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc146102665780630902f1ac146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612ec1565b6107e9565b6040516102329190613570565b60405180910390f35b34801561024757600080fd5b50610250610863565b60405161025d919061358b565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612fdc565b6108f5565b60405161029a9190613509565b60405180910390f35b3480156102af57600080fd5b506102b861097a565b005b3480156102c657600080fd5b506102e160048036038101906102dc9190612e81565b610aab565b005b3480156102ef57600080fd5b506102f8610bc3565b60405161030591906138ad565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612d6b565b610bd0565b005b34801561034357600080fd5b5061035e60048036038101906103599190612e81565b610c30565b60405161036b91906138ad565b60405180910390f35b61038e60048036038101906103899190612fdc565b610cd5565b005b34801561039c57600080fd5b506103a5610e51565b6040516103b291906138ad565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612d6b565b610e5c565b005b3480156103f057600080fd5b506103f9610e7c565b604051610406919061358b565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612fdc565b610f0a565b60405161044391906138ad565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612f1b565b610f7b565b005b34801561048157600080fd5b5061049c60048036038101906104979190612fdc565b611011565b6040516104a99190613509565b60405180910390f35b3480156104be57600080fd5b506104c76110c3565b6040516104d4919061358b565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612cfe565b611151565b60405161051191906138ad565b60405180910390f35b34801561052657600080fd5b5061052f611209565b005b34801561053d57600080fd5b50610546611291565b60405161055391906138ad565b60405180910390f35b34801561056857600080fd5b50610571611296565b005b34801561057f57600080fd5b50610588611361565b6040516105959190613509565b60405180910390f35b3480156105aa57600080fd5b506105b361138b565b6040516105c0919061358b565b60405180910390f35b3480156105d557600080fd5b506105de61141d565b6040516105eb91906138ad565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190612e41565b611422565b005b34801561062957600080fd5b506106326115a3565b60405161063f91906138ad565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190612dbe565b6115a9565b005b34801561067d57600080fd5b5061069860048036038101906106939190612fdc565b61160b565b6040516106a5919061358b565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190612f64565b6116b2565b005b3480156106e357600080fd5b506106ec6117d2565b6040516106f99190613570565b60405180910390f35b34801561070e57600080fd5b506107176117e5565b604051610724919061358b565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612d2b565b61180d565b6040516107619190613570565b60405180910390f35b34801561077657600080fd5b5061077f6118a1565b60405161078c9190613570565b60405180910390f35b3480156107a157600080fd5b506107aa6118b4565b6040516107b7919061358b565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e29190612cfe565b611942565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c575061085b82611a3a565b5b9050919050565b60606000805461087290613b72565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90613b72565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b600061090082611b1c565b61093f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610936906137ad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610982611b88565b73ffffffffffffffffffffffffffffffffffffffff166109a0611361565b73ffffffffffffffffffffffffffffffffffffffff16146109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed906137ed565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a43906135cd565b60405180910390fd5b6000610a56610bc3565b905060005b6007811015610a8c57610a79338284610a7491906139a7565b611b90565b8080610a8490613bd5565b915050610a5b565b506001600e60016101000a81548160ff02191690831515021790555050565b6000610ab682611011565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e9061384d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b46611b88565b73ffffffffffffffffffffffffffffffffffffffff161480610b755750610b7481610b6f611b88565b61180d565b5b610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab9061372d565b60405180910390fd5b610bbe8383611bae565b505050565b6000600880549050905090565b610be1610bdb611b88565b82611c67565b610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c179061386d565b60405180910390fd5b610c2b838383611d45565b505050565b6000610c3b83611151565b8210610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c73906135ed565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e60019054906101000a900460ff16610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b906135ad565b60405180910390fd5b6014811115610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f9061370d565b60405180910390fd5b6000610d72610bc3565b90506103098282610d8391906139a7565b1115610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb906136cd565b60405180910390fd5b81668e1bc9bf040000610dd79190613a2e565b341015610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e10906136ad565b60405180910390fd5b60005b82811015610e4c57610e39338284610e3491906139a7565b611b90565b8080610e4490613bd5565b915050610e1c565b505050565b668e1bc9bf04000081565b610e77838383604051806020016040528060008152506115a9565b505050565b600b8054610e8990613b72565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb590613b72565b8015610f025780601f10610ed757610100808354040283529160200191610f02565b820191906000526020600020905b815481529060010190602001808311610ee557829003601f168201915b505050505081565b6000610f14610bc3565b8210610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c9061388d565b60405180910390fd5b60088281548110610f6957610f68613d0b565b5b90600052602060002001549050919050565b610f83611b88565b73ffffffffffffffffffffffffffffffffffffffff16610fa1611361565b73ffffffffffffffffffffffffffffffffffffffff1614610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906137ed565b60405180910390fd5b80600d908051906020019061100d929190612b12565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b19061376d565b60405180910390fd5b80915050919050565b600d80546110d090613b72565b80601f01602080910402602001604051908101604052809291908181526020018280546110fc90613b72565b80156111495780601f1061111e57610100808354040283529160200191611149565b820191906000526020600020905b81548152906001019060200180831161112c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b99061374d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611211611b88565b73ffffffffffffffffffffffffffffffffffffffff1661122f611361565b73ffffffffffffffffffffffffffffffffffffffff1614611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c906137ed565b60405180910390fd5b61128f6000611fa1565b565b600781565b61129e611b88565b73ffffffffffffffffffffffffffffffffffffffff166112bc611361565b73ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611309906137ed565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561135d573d6000803e3d6000fd5b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461139a90613b72565b80601f01602080910402602001604051908101604052809291908181526020018280546113c690613b72565b80156114135780601f106113e857610100808354040283529160200191611413565b820191906000526020600020905b8154815290600101906020018083116113f657829003601f168201915b5050505050905090565b601481565b61142a611b88565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f9061368d565b60405180910390fd5b80600560006114a5611b88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611552611b88565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115979190613570565b60405180910390a35050565b61030981565b6115ba6115b4611b88565b83611c67565b6115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f09061386d565b60405180910390fd5b61160584848484612067565b50505050565b606061161682611b1c565b611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c9061382d565b60405180910390fd5b600061165f6120c3565b9050600081511161167f57604051806020016040528060008152506116aa565b8061168984612155565b60405160200161169a9291906134c3565b6040516020818303038152906040525b915050919050565b6116ba611b88565b73ffffffffffffffffffffffffffffffffffffffff166116d8611361565b73ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906137ed565b60405180910390fd5b60011515600e60009054906101000a900460ff1615151415611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c906137cd565b60405180910390fd5b81600b908051906020019061179b929190612b12565b5080600c90805190602001906117b2929190612b12565b506001600e60006101000a81548160ff0219169083151502179055505050565b600e60009054906101000a900460ff1681565b6060600c6040516020016117f991906134e7565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60019054906101000a900460ff1681565b600c80546118c190613b72565b80601f01602080910402602001604051908101604052809291908181526020018280546118ed90613b72565b801561193a5780601f1061190f5761010080835404028352916020019161193a565b820191906000526020600020905b81548152906001019060200180831161191d57829003601f168201915b505050505081565b61194a611b88565b73ffffffffffffffffffffffffffffffffffffffff16611968611361565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906137ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a259061362d565b60405180910390fd5b611a3781611fa1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b0557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b155750611b14826122b6565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b611baa828260405180602001604052806000815250612320565b5050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c2183611011565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c7282611b1c565b611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca8906136ed565b60405180910390fd5b6000611cbc83611011565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d2b57508373ffffffffffffffffffffffffffffffffffffffff16611d13846108f5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d3c5750611d3b818561180d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d6582611011565b73ffffffffffffffffffffffffffffffffffffffff1614611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db29061380d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e229061366d565b60405180910390fd5b611e3683838361237b565b611e41600082611bae565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e919190613a88565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee891906139a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612072848484611d45565b61207e8484848461248f565b6120bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b49061360d565b60405180910390fd5b50505050565b6060600d80546120d290613b72565b80601f01602080910402602001604051908101604052809291908181526020018280546120fe90613b72565b801561214b5780601f106121205761010080835404028352916020019161214b565b820191906000526020600020905b81548152906001019060200180831161212e57829003601f168201915b5050505050905090565b6060600082141561219d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122b1565b600082905060005b600082146121cf5780806121b890613bd5565b915050600a826121c891906139fd565b91506121a5565b60008167ffffffffffffffff8111156121eb576121ea613d3a565b5b6040519080825280601f01601f19166020018201604052801561221d5781602001600182028036833780820191505090505b5090505b600085146122aa576001826122369190613a88565b9150600a856122459190613c1e565b603061225191906139a7565b60f81b81838151811061226757612266613d0b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122a391906139fd565b9450612221565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61232a8383612626565b612337600084848461248f565b612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d9061360d565b60405180910390fd5b505050565b6123868383836127f4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123c9576123c4816127f9565b612408565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612407576124068382612842565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561244b57612446816129af565b61248a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612489576124888282612a80565b5b5b505050565b60006124b08473ffffffffffffffffffffffffffffffffffffffff16612aff565b15612619578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124d9611b88565b8786866040518563ffffffff1660e01b81526004016124fb9493929190613524565b602060405180830381600087803b15801561251557600080fd5b505af192505050801561254657506040513d601f19601f820116820180604052508101906125439190612eee565b60015b6125c9573d8060008114612576576040519150601f19603f3d011682016040523d82523d6000602084013e61257b565b606091505b506000815114156125c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b89061360d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061261e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268d9061378d565b60405180910390fd5b61269f81611b1c565b156126df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d69061364d565b60405180910390fd5b6126eb6000838361237b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461273b91906139a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161284f84611151565b6128599190613a88565b905060006007600084815260200190815260200160002054905081811461293e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129c39190613a88565b90506000600960008481526020019081526020016000205490506000600883815481106129f3576129f2613d0b565b5b906000526020600020015490508060088381548110612a1557612a14613d0b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a6457612a63613cdc565b5b6001900381819060005260206000200160009055905550505050565b6000612a8b83611151565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612b1e90613b72565b90600052602060002090601f016020900481019282612b405760008555612b87565b82601f10612b5957805160ff1916838001178555612b87565b82800160010185558215612b87579182015b82811115612b86578251825591602001919060010190612b6b565b5b509050612b949190612b98565b5090565b5b80821115612bb1576000816000905550600101612b99565b5090565b6000612bc8612bc3846138ed565b6138c8565b905082815260208101848484011115612be457612be3613d6e565b5b612bef848285613b30565b509392505050565b6000612c0a612c058461391e565b6138c8565b905082815260208101848484011115612c2657612c25613d6e565b5b612c31848285613b30565b509392505050565b600081359050612c4881614461565b92915050565b600081359050612c5d81614478565b92915050565b600081359050612c728161448f565b92915050565b600081519050612c878161448f565b92915050565b600082601f830112612ca257612ca1613d69565b5b8135612cb2848260208601612bb5565b91505092915050565b600082601f830112612cd057612ccf613d69565b5b8135612ce0848260208601612bf7565b91505092915050565b600081359050612cf8816144a6565b92915050565b600060208284031215612d1457612d13613d78565b5b6000612d2284828501612c39565b91505092915050565b60008060408385031215612d4257612d41613d78565b5b6000612d5085828601612c39565b9250506020612d6185828601612c39565b9150509250929050565b600080600060608486031215612d8457612d83613d78565b5b6000612d9286828701612c39565b9350506020612da386828701612c39565b9250506040612db486828701612ce9565b9150509250925092565b60008060008060808587031215612dd857612dd7613d78565b5b6000612de687828801612c39565b9450506020612df787828801612c39565b9350506040612e0887828801612ce9565b925050606085013567ffffffffffffffff811115612e2957612e28613d73565b5b612e3587828801612c8d565b91505092959194509250565b60008060408385031215612e5857612e57613d78565b5b6000612e6685828601612c39565b9250506020612e7785828601612c4e565b9150509250929050565b60008060408385031215612e9857612e97613d78565b5b6000612ea685828601612c39565b9250506020612eb785828601612ce9565b9150509250929050565b600060208284031215612ed757612ed6613d78565b5b6000612ee584828501612c63565b91505092915050565b600060208284031215612f0457612f03613d78565b5b6000612f1284828501612c78565b91505092915050565b600060208284031215612f3157612f30613d78565b5b600082013567ffffffffffffffff811115612f4f57612f4e613d73565b5b612f5b84828501612cbb565b91505092915050565b60008060408385031215612f7b57612f7a613d78565b5b600083013567ffffffffffffffff811115612f9957612f98613d73565b5b612fa585828601612cbb565b925050602083013567ffffffffffffffff811115612fc657612fc5613d73565b5b612fd285828601612cbb565b9150509250929050565b600060208284031215612ff257612ff1613d78565b5b600061300084828501612ce9565b91505092915050565b61301281613abc565b82525050565b61302181613ace565b82525050565b600061303282613964565b61303c818561397a565b935061304c818560208601613b3f565b61305581613d7d565b840191505092915050565b600061306b8261396f565b613075818561398b565b9350613085818560208601613b3f565b61308e81613d7d565b840191505092915050565b60006130a48261396f565b6130ae818561399c565b93506130be818560208601613b3f565b80840191505092915050565b600081546130d781613b72565b6130e1818661399c565b945060018216600081146130fc576001811461310d57613140565b60ff19831686528186019350613140565b6131168561394f565b60005b8381101561313857815481890152600182019150602081019050613119565b838801955050505b50505092915050565b600061315660268361398b565b915061316182613d8e565b604082019050919050565b600061317960338361398b565b915061318482613ddd565b604082019050919050565b600061319c602b8361398b565b91506131a782613e2c565b604082019050919050565b60006131bf60328361398b565b91506131ca82613e7b565b604082019050919050565b60006131e260268361398b565b91506131ed82613eca565b604082019050919050565b6000613205601c8361398b565b915061321082613f19565b602082019050919050565b600061322860248361398b565b915061323382613f42565b604082019050919050565b600061324b60198361398b565b915061325682613f91565b602082019050919050565b600061326e601f8361398b565b915061327982613fba565b602082019050919050565b600061329160298361398b565b915061329c82613fe3565b604082019050919050565b60006132b4602c8361398b565b91506132bf82614032565b604082019050919050565b60006132d760218361398b565b91506132e282614081565b604082019050919050565b60006132fa60078361399c565b9150613305826140d0565b600782019050919050565b600061331d60388361398b565b9150613328826140f9565b604082019050919050565b6000613340602a8361398b565b915061334b82614148565b604082019050919050565b600061336360298361398b565b915061336e82614197565b604082019050919050565b600061338660208361398b565b9150613391826141e6565b602082019050919050565b60006133a9602c8361398b565b91506133b48261420f565b604082019050919050565b60006133cc60308361398b565b91506133d78261425e565b604082019050919050565b60006133ef60208361398b565b91506133fa826142ad565b602082019050919050565b600061341260298361398b565b915061341d826142d6565b604082019050919050565b6000613435602f8361398b565b915061344082614325565b604082019050919050565b600061345860218361398b565b915061346382614374565b604082019050919050565b600061347b60318361398b565b9150613486826143c3565b604082019050919050565b600061349e602c8361398b565b91506134a982614412565b604082019050919050565b6134bd81613b26565b82525050565b60006134cf8285613099565b91506134db8284613099565b91508190509392505050565b60006134f2826132ed565b91506134fe82846130ca565b915081905092915050565b600060208201905061351e6000830184613009565b92915050565b60006080820190506135396000830187613009565b6135466020830186613009565b61355360408301856134b4565b81810360608301526135658184613027565b905095945050505050565b60006020820190506135856000830184613018565b92915050565b600060208201905081810360008301526135a58184613060565b905092915050565b600060208201905081810360008301526135c681613149565b9050919050565b600060208201905081810360008301526135e68161316c565b9050919050565b600060208201905081810360008301526136068161318f565b9050919050565b60006020820190508181036000830152613626816131b2565b9050919050565b60006020820190508181036000830152613646816131d5565b9050919050565b60006020820190508181036000830152613666816131f8565b9050919050565b600060208201905081810360008301526136868161321b565b9050919050565b600060208201905081810360008301526136a68161323e565b9050919050565b600060208201905081810360008301526136c681613261565b9050919050565b600060208201905081810360008301526136e681613284565b9050919050565b60006020820190508181036000830152613706816132a7565b9050919050565b60006020820190508181036000830152613726816132ca565b9050919050565b6000602082019050818103600083015261374681613310565b9050919050565b6000602082019050818103600083015261376681613333565b9050919050565b6000602082019050818103600083015261378681613356565b9050919050565b600060208201905081810360008301526137a681613379565b9050919050565b600060208201905081810360008301526137c68161339c565b9050919050565b600060208201905081810360008301526137e6816133bf565b9050919050565b60006020820190508181036000830152613806816133e2565b9050919050565b6000602082019050818103600083015261382681613405565b9050919050565b6000602082019050818103600083015261384681613428565b9050919050565b600060208201905081810360008301526138668161344b565b9050919050565b600060208201905081810360008301526138868161346e565b9050919050565b600060208201905081810360008301526138a681613491565b9050919050565b60006020820190506138c260008301846134b4565b92915050565b60006138d26138e3565b90506138de8282613ba4565b919050565b6000604051905090565b600067ffffffffffffffff82111561390857613907613d3a565b5b61391182613d7d565b9050602081019050919050565b600067ffffffffffffffff82111561393957613938613d3a565b5b61394282613d7d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139b282613b26565b91506139bd83613b26565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139f2576139f1613c4f565b5b828201905092915050565b6000613a0882613b26565b9150613a1383613b26565b925082613a2357613a22613c7e565b5b828204905092915050565b6000613a3982613b26565b9150613a4483613b26565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a7d57613a7c613c4f565b5b828202905092915050565b6000613a9382613b26565b9150613a9e83613b26565b925082821015613ab157613ab0613c4f565b5b828203905092915050565b6000613ac782613b06565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b5d578082015181840152602081019050613b42565b83811115613b6c576000848401525b50505050565b60006002820490506001821680613b8a57607f821691505b60208210811415613b9e57613b9d613cad565b5b50919050565b613bad82613d7d565b810181811067ffffffffffffffff82111715613bcc57613bcb613d3a565b5b80604052505050565b6000613be082613b26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1357613c12613c4f565b5b600182019050919050565b6000613c2982613b26565b9150613c3483613b26565b925082613c4457613c43613c7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c65206d7573742062652061637469766520746f206d696e742042616c6460008201527f204a657369690000000000000000000000000000000000000000000000000000602082015250565b7f42616c644a657375733a2052657365727665732074616b656e20616e6420736160008201527f6c65207374617274656420616c72656164792100000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204a657369690000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f42616c644a657375733a20596f7527766520616c72656164792072657665616c60008201527f656420746865206d657461646174612100000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61446a81613abc565b811461447557600080fd5b50565b61448181613ace565b811461448c57600080fd5b50565b61449881613ada565b81146144a357600080fd5b50565b6144af81613b26565b81146144ba57600080fd5b5056fea2646970667358221220d7e3b413c3631d41ca6698df55a44b5004334b3a0f87b6cded75f3b444081dbd64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610702578063e985e9c51461072d578063eb8d24441461076a578063f2e94c9614610795578063f2fde38b146107c0576101f9565b8063b88d4fde14610648578063c87b56dd14610671578063d24f0757146106ae578063dcc7ba24146106d7576101f9565b806395d89b41116100dc57806395d89b411461059e578063977b055b146105c9578063a22cb465146105f4578063b5077f441461061d576101f9565b8063715018a61461051a5780637dd76f2914610531578063853828b61461055c5780638da5cb5b14610573576101f9565b80633610724e116101905780634f6ccce71161015f5780634f6ccce71461040f57806355f804b31461044c5780636352211e146104755780636c0360eb146104b257806370a08231146104dd576101f9565b80633610724e146103745780633b971f9f1461039057806342842e0e146103bb57806342cc5d25146103e4576101f9565b8063095ea7b3116101cc578063095ea7b3146102ba57806318160ddd146102e357806323b872dd1461030e5780632f745c5914610337576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc146102665780630902f1ac146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612ec1565b6107e9565b6040516102329190613570565b60405180910390f35b34801561024757600080fd5b50610250610863565b60405161025d919061358b565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612fdc565b6108f5565b60405161029a9190613509565b60405180910390f35b3480156102af57600080fd5b506102b861097a565b005b3480156102c657600080fd5b506102e160048036038101906102dc9190612e81565b610aab565b005b3480156102ef57600080fd5b506102f8610bc3565b60405161030591906138ad565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612d6b565b610bd0565b005b34801561034357600080fd5b5061035e60048036038101906103599190612e81565b610c30565b60405161036b91906138ad565b60405180910390f35b61038e60048036038101906103899190612fdc565b610cd5565b005b34801561039c57600080fd5b506103a5610e51565b6040516103b291906138ad565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612d6b565b610e5c565b005b3480156103f057600080fd5b506103f9610e7c565b604051610406919061358b565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612fdc565b610f0a565b60405161044391906138ad565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612f1b565b610f7b565b005b34801561048157600080fd5b5061049c60048036038101906104979190612fdc565b611011565b6040516104a99190613509565b60405180910390f35b3480156104be57600080fd5b506104c76110c3565b6040516104d4919061358b565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612cfe565b611151565b60405161051191906138ad565b60405180910390f35b34801561052657600080fd5b5061052f611209565b005b34801561053d57600080fd5b50610546611291565b60405161055391906138ad565b60405180910390f35b34801561056857600080fd5b50610571611296565b005b34801561057f57600080fd5b50610588611361565b6040516105959190613509565b60405180910390f35b3480156105aa57600080fd5b506105b361138b565b6040516105c0919061358b565b60405180910390f35b3480156105d557600080fd5b506105de61141d565b6040516105eb91906138ad565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190612e41565b611422565b005b34801561062957600080fd5b506106326115a3565b60405161063f91906138ad565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190612dbe565b6115a9565b005b34801561067d57600080fd5b5061069860048036038101906106939190612fdc565b61160b565b6040516106a5919061358b565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190612f64565b6116b2565b005b3480156106e357600080fd5b506106ec6117d2565b6040516106f99190613570565b60405180910390f35b34801561070e57600080fd5b506107176117e5565b604051610724919061358b565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612d2b565b61180d565b6040516107619190613570565b60405180910390f35b34801561077657600080fd5b5061077f6118a1565b60405161078c9190613570565b60405180910390f35b3480156107a157600080fd5b506107aa6118b4565b6040516107b7919061358b565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e29190612cfe565b611942565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c575061085b82611a3a565b5b9050919050565b60606000805461087290613b72565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90613b72565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b600061090082611b1c565b61093f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610936906137ad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610982611b88565b73ffffffffffffffffffffffffffffffffffffffff166109a0611361565b73ffffffffffffffffffffffffffffffffffffffff16146109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed906137ed565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a43906135cd565b60405180910390fd5b6000610a56610bc3565b905060005b6007811015610a8c57610a79338284610a7491906139a7565b611b90565b8080610a8490613bd5565b915050610a5b565b506001600e60016101000a81548160ff02191690831515021790555050565b6000610ab682611011565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e9061384d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b46611b88565b73ffffffffffffffffffffffffffffffffffffffff161480610b755750610b7481610b6f611b88565b61180d565b5b610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab9061372d565b60405180910390fd5b610bbe8383611bae565b505050565b6000600880549050905090565b610be1610bdb611b88565b82611c67565b610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c179061386d565b60405180910390fd5b610c2b838383611d45565b505050565b6000610c3b83611151565b8210610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c73906135ed565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e60019054906101000a900460ff16610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b906135ad565b60405180910390fd5b6014811115610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f9061370d565b60405180910390fd5b6000610d72610bc3565b90506103098282610d8391906139a7565b1115610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb906136cd565b60405180910390fd5b81668e1bc9bf040000610dd79190613a2e565b341015610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e10906136ad565b60405180910390fd5b60005b82811015610e4c57610e39338284610e3491906139a7565b611b90565b8080610e4490613bd5565b915050610e1c565b505050565b668e1bc9bf04000081565b610e77838383604051806020016040528060008152506115a9565b505050565b600b8054610e8990613b72565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb590613b72565b8015610f025780601f10610ed757610100808354040283529160200191610f02565b820191906000526020600020905b815481529060010190602001808311610ee557829003601f168201915b505050505081565b6000610f14610bc3565b8210610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c9061388d565b60405180910390fd5b60088281548110610f6957610f68613d0b565b5b90600052602060002001549050919050565b610f83611b88565b73ffffffffffffffffffffffffffffffffffffffff16610fa1611361565b73ffffffffffffffffffffffffffffffffffffffff1614610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906137ed565b60405180910390fd5b80600d908051906020019061100d929190612b12565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b19061376d565b60405180910390fd5b80915050919050565b600d80546110d090613b72565b80601f01602080910402602001604051908101604052809291908181526020018280546110fc90613b72565b80156111495780601f1061111e57610100808354040283529160200191611149565b820191906000526020600020905b81548152906001019060200180831161112c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b99061374d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611211611b88565b73ffffffffffffffffffffffffffffffffffffffff1661122f611361565b73ffffffffffffffffffffffffffffffffffffffff1614611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c906137ed565b60405180910390fd5b61128f6000611fa1565b565b600781565b61129e611b88565b73ffffffffffffffffffffffffffffffffffffffff166112bc611361565b73ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611309906137ed565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561135d573d6000803e3d6000fd5b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461139a90613b72565b80601f01602080910402602001604051908101604052809291908181526020018280546113c690613b72565b80156114135780601f106113e857610100808354040283529160200191611413565b820191906000526020600020905b8154815290600101906020018083116113f657829003601f168201915b5050505050905090565b601481565b61142a611b88565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f9061368d565b60405180910390fd5b80600560006114a5611b88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611552611b88565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115979190613570565b60405180910390a35050565b61030981565b6115ba6115b4611b88565b83611c67565b6115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f09061386d565b60405180910390fd5b61160584848484612067565b50505050565b606061161682611b1c565b611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c9061382d565b60405180910390fd5b600061165f6120c3565b9050600081511161167f57604051806020016040528060008152506116aa565b8061168984612155565b60405160200161169a9291906134c3565b6040516020818303038152906040525b915050919050565b6116ba611b88565b73ffffffffffffffffffffffffffffffffffffffff166116d8611361565b73ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906137ed565b60405180910390fd5b60011515600e60009054906101000a900460ff1615151415611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c906137cd565b60405180910390fd5b81600b908051906020019061179b929190612b12565b5080600c90805190602001906117b2929190612b12565b506001600e60006101000a81548160ff0219169083151502179055505050565b600e60009054906101000a900460ff1681565b6060600c6040516020016117f991906134e7565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60019054906101000a900460ff1681565b600c80546118c190613b72565b80601f01602080910402602001604051908101604052809291908181526020018280546118ed90613b72565b801561193a5780601f1061190f5761010080835404028352916020019161193a565b820191906000526020600020905b81548152906001019060200180831161191d57829003601f168201915b505050505081565b61194a611b88565b73ffffffffffffffffffffffffffffffffffffffff16611968611361565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906137ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a259061362d565b60405180910390fd5b611a3781611fa1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b0557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b155750611b14826122b6565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b611baa828260405180602001604052806000815250612320565b5050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c2183611011565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c7282611b1c565b611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca8906136ed565b60405180910390fd5b6000611cbc83611011565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d2b57508373ffffffffffffffffffffffffffffffffffffffff16611d13846108f5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d3c5750611d3b818561180d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d6582611011565b73ffffffffffffffffffffffffffffffffffffffff1614611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db29061380d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e229061366d565b60405180910390fd5b611e3683838361237b565b611e41600082611bae565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e919190613a88565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee891906139a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612072848484611d45565b61207e8484848461248f565b6120bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b49061360d565b60405180910390fd5b50505050565b6060600d80546120d290613b72565b80601f01602080910402602001604051908101604052809291908181526020018280546120fe90613b72565b801561214b5780601f106121205761010080835404028352916020019161214b565b820191906000526020600020905b81548152906001019060200180831161212e57829003601f168201915b5050505050905090565b6060600082141561219d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122b1565b600082905060005b600082146121cf5780806121b890613bd5565b915050600a826121c891906139fd565b91506121a5565b60008167ffffffffffffffff8111156121eb576121ea613d3a565b5b6040519080825280601f01601f19166020018201604052801561221d5781602001600182028036833780820191505090505b5090505b600085146122aa576001826122369190613a88565b9150600a856122459190613c1e565b603061225191906139a7565b60f81b81838151811061226757612266613d0b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122a391906139fd565b9450612221565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61232a8383612626565b612337600084848461248f565b612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d9061360d565b60405180910390fd5b505050565b6123868383836127f4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123c9576123c4816127f9565b612408565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612407576124068382612842565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561244b57612446816129af565b61248a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612489576124888282612a80565b5b5b505050565b60006124b08473ffffffffffffffffffffffffffffffffffffffff16612aff565b15612619578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124d9611b88565b8786866040518563ffffffff1660e01b81526004016124fb9493929190613524565b602060405180830381600087803b15801561251557600080fd5b505af192505050801561254657506040513d601f19601f820116820180604052508101906125439190612eee565b60015b6125c9573d8060008114612576576040519150601f19603f3d011682016040523d82523d6000602084013e61257b565b606091505b506000815114156125c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b89061360d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061261e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268d9061378d565b60405180910390fd5b61269f81611b1c565b156126df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d69061364d565b60405180910390fd5b6126eb6000838361237b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461273b91906139a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161284f84611151565b6128599190613a88565b905060006007600084815260200190815260200160002054905081811461293e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129c39190613a88565b90506000600960008481526020019081526020016000205490506000600883815481106129f3576129f2613d0b565b5b906000526020600020015490508060088381548110612a1557612a14613d0b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a6457612a63613cdc565b5b6001900381819060005260206000200160009055905550505050565b6000612a8b83611151565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612b1e90613b72565b90600052602060002090601f016020900481019282612b405760008555612b87565b82601f10612b5957805160ff1916838001178555612b87565b82800160010185558215612b87579182015b82811115612b86578251825591602001919060010190612b6b565b5b509050612b949190612b98565b5090565b5b80821115612bb1576000816000905550600101612b99565b5090565b6000612bc8612bc3846138ed565b6138c8565b905082815260208101848484011115612be457612be3613d6e565b5b612bef848285613b30565b509392505050565b6000612c0a612c058461391e565b6138c8565b905082815260208101848484011115612c2657612c25613d6e565b5b612c31848285613b30565b509392505050565b600081359050612c4881614461565b92915050565b600081359050612c5d81614478565b92915050565b600081359050612c728161448f565b92915050565b600081519050612c878161448f565b92915050565b600082601f830112612ca257612ca1613d69565b5b8135612cb2848260208601612bb5565b91505092915050565b600082601f830112612cd057612ccf613d69565b5b8135612ce0848260208601612bf7565b91505092915050565b600081359050612cf8816144a6565b92915050565b600060208284031215612d1457612d13613d78565b5b6000612d2284828501612c39565b91505092915050565b60008060408385031215612d4257612d41613d78565b5b6000612d5085828601612c39565b9250506020612d6185828601612c39565b9150509250929050565b600080600060608486031215612d8457612d83613d78565b5b6000612d9286828701612c39565b9350506020612da386828701612c39565b9250506040612db486828701612ce9565b9150509250925092565b60008060008060808587031215612dd857612dd7613d78565b5b6000612de687828801612c39565b9450506020612df787828801612c39565b9350506040612e0887828801612ce9565b925050606085013567ffffffffffffffff811115612e2957612e28613d73565b5b612e3587828801612c8d565b91505092959194509250565b60008060408385031215612e5857612e57613d78565b5b6000612e6685828601612c39565b9250506020612e7785828601612c4e565b9150509250929050565b60008060408385031215612e9857612e97613d78565b5b6000612ea685828601612c39565b9250506020612eb785828601612ce9565b9150509250929050565b600060208284031215612ed757612ed6613d78565b5b6000612ee584828501612c63565b91505092915050565b600060208284031215612f0457612f03613d78565b5b6000612f1284828501612c78565b91505092915050565b600060208284031215612f3157612f30613d78565b5b600082013567ffffffffffffffff811115612f4f57612f4e613d73565b5b612f5b84828501612cbb565b91505092915050565b60008060408385031215612f7b57612f7a613d78565b5b600083013567ffffffffffffffff811115612f9957612f98613d73565b5b612fa585828601612cbb565b925050602083013567ffffffffffffffff811115612fc657612fc5613d73565b5b612fd285828601612cbb565b9150509250929050565b600060208284031215612ff257612ff1613d78565b5b600061300084828501612ce9565b91505092915050565b61301281613abc565b82525050565b61302181613ace565b82525050565b600061303282613964565b61303c818561397a565b935061304c818560208601613b3f565b61305581613d7d565b840191505092915050565b600061306b8261396f565b613075818561398b565b9350613085818560208601613b3f565b61308e81613d7d565b840191505092915050565b60006130a48261396f565b6130ae818561399c565b93506130be818560208601613b3f565b80840191505092915050565b600081546130d781613b72565b6130e1818661399c565b945060018216600081146130fc576001811461310d57613140565b60ff19831686528186019350613140565b6131168561394f565b60005b8381101561313857815481890152600182019150602081019050613119565b838801955050505b50505092915050565b600061315660268361398b565b915061316182613d8e565b604082019050919050565b600061317960338361398b565b915061318482613ddd565b604082019050919050565b600061319c602b8361398b565b91506131a782613e2c565b604082019050919050565b60006131bf60328361398b565b91506131ca82613e7b565b604082019050919050565b60006131e260268361398b565b91506131ed82613eca565b604082019050919050565b6000613205601c8361398b565b915061321082613f19565b602082019050919050565b600061322860248361398b565b915061323382613f42565b604082019050919050565b600061324b60198361398b565b915061325682613f91565b602082019050919050565b600061326e601f8361398b565b915061327982613fba565b602082019050919050565b600061329160298361398b565b915061329c82613fe3565b604082019050919050565b60006132b4602c8361398b565b91506132bf82614032565b604082019050919050565b60006132d760218361398b565b91506132e282614081565b604082019050919050565b60006132fa60078361399c565b9150613305826140d0565b600782019050919050565b600061331d60388361398b565b9150613328826140f9565b604082019050919050565b6000613340602a8361398b565b915061334b82614148565b604082019050919050565b600061336360298361398b565b915061336e82614197565b604082019050919050565b600061338660208361398b565b9150613391826141e6565b602082019050919050565b60006133a9602c8361398b565b91506133b48261420f565b604082019050919050565b60006133cc60308361398b565b91506133d78261425e565b604082019050919050565b60006133ef60208361398b565b91506133fa826142ad565b602082019050919050565b600061341260298361398b565b915061341d826142d6565b604082019050919050565b6000613435602f8361398b565b915061344082614325565b604082019050919050565b600061345860218361398b565b915061346382614374565b604082019050919050565b600061347b60318361398b565b9150613486826143c3565b604082019050919050565b600061349e602c8361398b565b91506134a982614412565b604082019050919050565b6134bd81613b26565b82525050565b60006134cf8285613099565b91506134db8284613099565b91508190509392505050565b60006134f2826132ed565b91506134fe82846130ca565b915081905092915050565b600060208201905061351e6000830184613009565b92915050565b60006080820190506135396000830187613009565b6135466020830186613009565b61355360408301856134b4565b81810360608301526135658184613027565b905095945050505050565b60006020820190506135856000830184613018565b92915050565b600060208201905081810360008301526135a58184613060565b905092915050565b600060208201905081810360008301526135c681613149565b9050919050565b600060208201905081810360008301526135e68161316c565b9050919050565b600060208201905081810360008301526136068161318f565b9050919050565b60006020820190508181036000830152613626816131b2565b9050919050565b60006020820190508181036000830152613646816131d5565b9050919050565b60006020820190508181036000830152613666816131f8565b9050919050565b600060208201905081810360008301526136868161321b565b9050919050565b600060208201905081810360008301526136a68161323e565b9050919050565b600060208201905081810360008301526136c681613261565b9050919050565b600060208201905081810360008301526136e681613284565b9050919050565b60006020820190508181036000830152613706816132a7565b9050919050565b60006020820190508181036000830152613726816132ca565b9050919050565b6000602082019050818103600083015261374681613310565b9050919050565b6000602082019050818103600083015261376681613333565b9050919050565b6000602082019050818103600083015261378681613356565b9050919050565b600060208201905081810360008301526137a681613379565b9050919050565b600060208201905081810360008301526137c68161339c565b9050919050565b600060208201905081810360008301526137e6816133bf565b9050919050565b60006020820190508181036000830152613806816133e2565b9050919050565b6000602082019050818103600083015261382681613405565b9050919050565b6000602082019050818103600083015261384681613428565b9050919050565b600060208201905081810360008301526138668161344b565b9050919050565b600060208201905081810360008301526138868161346e565b9050919050565b600060208201905081810360008301526138a681613491565b9050919050565b60006020820190506138c260008301846134b4565b92915050565b60006138d26138e3565b90506138de8282613ba4565b919050565b6000604051905090565b600067ffffffffffffffff82111561390857613907613d3a565b5b61391182613d7d565b9050602081019050919050565b600067ffffffffffffffff82111561393957613938613d3a565b5b61394282613d7d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139b282613b26565b91506139bd83613b26565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139f2576139f1613c4f565b5b828201905092915050565b6000613a0882613b26565b9150613a1383613b26565b925082613a2357613a22613c7e565b5b828204905092915050565b6000613a3982613b26565b9150613a4483613b26565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a7d57613a7c613c4f565b5b828202905092915050565b6000613a9382613b26565b9150613a9e83613b26565b925082821015613ab157613ab0613c4f565b5b828203905092915050565b6000613ac782613b06565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b5d578082015181840152602081019050613b42565b83811115613b6c576000848401525b50505050565b60006002820490506001821680613b8a57607f821691505b60208210811415613b9e57613b9d613cad565b5b50919050565b613bad82613d7d565b810181811067ffffffffffffffff82111715613bcc57613bcb613d3a565b5b80604052505050565b6000613be082613b26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1357613c12613c4f565b5b600182019050919050565b6000613c2982613b26565b9150613c3483613b26565b925082613c4457613c43613c7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c65206d7573742062652061637469766520746f206d696e742042616c6460008201527f204a657369690000000000000000000000000000000000000000000000000000602082015250565b7f42616c644a657375733a2052657365727665732074616b656e20616e6420736160008201527f6c65207374617274656420616c72656164792100000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204a657369690000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f42616c644a657375733a20596f7527766520616c72656164792072657665616c60008201527f656420746865206d657461646174612100000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61446a81613abc565b811461447557600080fd5b50565b61448181613ace565b811461448c57600080fd5b50565b61449881613ada565b81146144a357600080fd5b50565b6144af81613b26565b81146144ba57600080fd5b5056fea2646970667358221220d7e3b413c3631d41ca6698df55a44b5004334b3a0f87b6cded75f3b444081dbd64736f6c63430008070033

Deployed Bytecode Sourcemap

43288:2794:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37086:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24972:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26531:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45761:318;;;;;;;;;;;;;:::i;:::-;;26054:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37726:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27421:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37394:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44097:560;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43496:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27831:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43643:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37916:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45576:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24666:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43725:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24396:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2535:94;;;;;;;;;;;;;:::i;:::-;;43447:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45400:148;;;;;;;;;;;;;:::i;:::-;;1884:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25141:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43398:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26824:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43345:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28087:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25316:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45017:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43821:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44779:140;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27190:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44005:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43684;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2784:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37086:224;37188:4;37227:35;37212:50;;;:11;:50;;;;:90;;;;37266:36;37290:11;37266:23;:36::i;:::-;37212:90;37205:97;;37086:224;;;:::o;24972:100::-;25026:13;25059:5;25052:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24972:100;:::o;26531:221::-;26607:7;26635:16;26643:7;26635;:16::i;:::-;26627:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26720:15;:24;26736:7;26720:24;;;;;;;;;;;;;;;;;;;;;26713:31;;26531:221;;;:::o;45761:318::-;2115:12;:10;:12::i;:::-;2104:23;;:7;:5;:7::i;:::-;:23;;;2096:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45836:5:::1;45820:21;;:12;;;;;;;;;;;:21;;;45812:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45908:10;45921:13;:11;:13::i;:::-;45908:26;;45950:9;45945:97;43486:1;45965;:16;45945:97;;;46003:27;46013:10;46028:1;46025:2;:4;;;;:::i;:::-;46003:9;:27::i;:::-;45983:3;;;;;:::i;:::-;;;;45945:97;;;;46067:4;46052:12;;:19;;;;;;;;;;;;;;;;;;45801:278;45761:318::o:0;26054:411::-;26135:13;26151:23;26166:7;26151:14;:23::i;:::-;26135:39;;26199:5;26193:11;;:2;:11;;;;26185:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26293:5;26277:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26302:37;26319:5;26326:12;:10;:12::i;:::-;26302:16;:37::i;:::-;26277:62;26255:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26436:21;26445:2;26449:7;26436:8;:21::i;:::-;26124:341;26054:411;;:::o;37726:113::-;37787:7;37814:10;:17;;;;37807:24;;37726:113;:::o;27421:339::-;27616:41;27635:12;:10;:12::i;:::-;27649:7;27616:18;:41::i;:::-;27608:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27724:28;27734:4;27740:2;27744:7;27724:9;:28::i;:::-;27421:339;;;:::o;37394:256::-;37491:7;37527:23;37544:5;37527:16;:23::i;:::-;37519:5;:31;37511:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37616:12;:19;37629:5;37616:19;;;;;;;;;;;;;;;:26;37636:5;37616:26;;;;;;;;;;;;37609:33;;37394:256;;;;:::o;44097:560::-;44172:12;;;;;;;;;;;44164:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43436:2;44244:14;:29;;44236:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;44320:10;44333:13;:11;:13::i;:::-;44320:26;;43386:3;44369:14;44364:2;:19;;;;:::i;:::-;44363:39;;44355:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;44492:14;43534:17;44478:28;;;;:::i;:::-;44465:9;:41;;44457:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;44556:9;44551:99;44575:14;44571:1;:18;44551:99;;;44611:27;44621:10;44636:1;44633:2;:4;;;;:::i;:::-;44611:9;:27::i;:::-;44591:3;;;;;:::i;:::-;;;;44551:99;;;;44155:502;44097:560;:::o;43496:55::-;43534:17;43496:55;:::o;27831:185::-;27969:39;27986:4;27992:2;27996:7;27969:39;;;;;;;;;;;;:16;:39::i;:::-;27831:185;;;:::o;43643:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37916:233::-;37991:7;38027:30;:28;:30::i;:::-;38019:5;:38;38011:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38124:10;38135:5;38124:17;;;;;;;;:::i;:::-;;;;;;;;;;38117:24;;37916:233;;;:::o;45576:86::-;2115:12;:10;:12::i;:::-;2104:23;;:7;:5;:7::i;:::-;:23;;;2096:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45651:3:::1;45641:7;:13;;;;;;;;;;;;:::i;:::-;;45576:86:::0;:::o;24666:239::-;24738:7;24758:13;24774:7;:16;24782:7;24774:16;;;;;;;;;;;;;;;;;;;;;24758:32;;24826:1;24809:19;;:5;:19;;;;24801:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24892:5;24885:12;;;24666:239;;;:::o;43725:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24396:208::-;24468:7;24513:1;24496:19;;:5;:19;;;;24488:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24580:9;:16;24590:5;24580:16;;;;;;;;;;;;;;;;24573:23;;24396:208;;;:::o;2535:94::-;2115:12;:10;:12::i;:::-;2104:23;;:7;:5;:7::i;:::-;:23;;;2096:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2600:21:::1;2618:1;2600:9;:21::i;:::-;2535:94::o:0;43447:40::-;43486:1;43447:40;:::o;45400:148::-;2115:12;:10;:12::i;:::-;2104:23;;:7;:5;:7::i;:::-;:23;;;2096:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45453:15:::1;45471:21;45453:39;;45511:10;45503:28;;:37;45532:7;45503:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45442:106;45400:148::o:0;1884:87::-;1930:7;1957:6;;;;;;;;;;;1950:13;;1884:87;:::o;25141:104::-;25197:13;25230:7;25223:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25141:104;:::o;43398:40::-;43436:2;43398:40;:::o;26824:295::-;26939:12;:10;:12::i;:::-;26927:24;;:8;:24;;;;26919:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;27039:8;26994:18;:32;27013:12;:10;:12::i;:::-;26994:32;;;;;;;;;;;;;;;:42;27027:8;26994:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27092:8;27063:48;;27078:12;:10;:12::i;:::-;27063:48;;;27102:8;27063:48;;;;;;:::i;:::-;;;;;;;;26824:295;;:::o;43345:44::-;43386:3;43345:44;:::o;28087:328::-;28262:41;28281:12;:10;:12::i;:::-;28295:7;28262:18;:41::i;:::-;28254:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28368:39;28382:4;28388:2;28392:7;28401:5;28368:13;:39::i;:::-;28087:328;;;;:::o;25316:334::-;25389:13;25423:16;25431:7;25423;:16::i;:::-;25415:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25504:21;25528:10;:8;:10::i;:::-;25504:34;;25580:1;25562:7;25556:21;:25;:86;;;;;;;;;;;;;;;;;25608:7;25617:18;:7;:16;:18::i;:::-;25591:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25556:86;25549:93;;;25316:334;;;:::o;45017:313::-;2115:12;:10;:12::i;:::-;2104:23;;:7;:5;:7::i;:::-;:23;;;2096:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45150:4:::1;45130:24;;:16;;;;;;;;;;;:24;;;;45122:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45235:9;45218:14;:26;;;;;;;;;;;;:::i;:::-;;45276:12;45255:18;:33;;;;;;;;;;;;:::i;:::-;;45318:4;45299:16;;:23;;;;;;;;;;;;;;;;;;45017:313:::0;;:::o;43821:36::-;;;;;;;;;;;;;:::o;44779:140::-;44823:13;44891:18;44863:47;;;;;;;;:::i;:::-;;;;;;;;;;;;;44849:62;;44779:140;:::o;27190:164::-;27287:4;27311:18;:25;27330:5;27311:25;;;;;;;;;;;;;;;:35;27337:8;27311:35;;;;;;;;;;;;;;;;;;;;;;;;;27304:42;;27190:164;;;;:::o;44005:32::-;;;;;;;;;;;;;:::o;43684:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2784:192::-;2115:12;:10;:12::i;:::-;2104:23;;:7;:5;:7::i;:::-;:23;;;2096:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2893:1:::1;2873:22;;:8;:22;;;;2865:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2949:19;2959:8;2949:9;:19::i;:::-;2784:192:::0;:::o;24027:305::-;24129:4;24181:25;24166:40;;;:11;:40;;;;:105;;;;24238:33;24223:48;;;:11;:48;;;;24166:105;:158;;;;24288:36;24312:11;24288:23;:36::i;:::-;24166:158;24146:178;;24027:305;;;:::o;29925:127::-;29990:4;30042:1;30014:30;;:7;:16;30022:7;30014:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30007:37;;29925:127;;;:::o;666:98::-;719:7;746:10;739:17;;666:98;:::o;30909:110::-;30985:26;30995:2;30999:7;30985:26;;;;;;;;;;;;:9;:26::i;:::-;30909:110;;:::o;33907:174::-;34009:2;33982:15;:24;33998:7;33982:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34065:7;34061:2;34027:46;;34036:23;34051:7;34036:14;:23::i;:::-;34027:46;;;;;;;;;;;;33907:174;;:::o;30219:348::-;30312:4;30337:16;30345:7;30337;:16::i;:::-;30329:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30413:13;30429:23;30444:7;30429:14;:23::i;:::-;30413:39;;30482:5;30471:16;;:7;:16;;;:51;;;;30515:7;30491:31;;:20;30503:7;30491:11;:20::i;:::-;:31;;;30471:51;:87;;;;30526:32;30543:5;30550:7;30526:16;:32::i;:::-;30471:87;30463:96;;;30219:348;;;;:::o;33211:578::-;33370:4;33343:31;;:23;33358:7;33343:14;:23::i;:::-;:31;;;33335:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33453:1;33439:16;;:2;:16;;;;33431:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33509:39;33530:4;33536:2;33540:7;33509:20;:39::i;:::-;33613:29;33630:1;33634:7;33613:8;:29::i;:::-;33674:1;33655:9;:15;33665:4;33655:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33703:1;33686:9;:13;33696:2;33686:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33734:2;33715:7;:16;33723:7;33715:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33773:7;33769:2;33754:27;;33763:4;33754:27;;;;;;;;;;;;33211:578;;;:::o;2984:173::-;3040:16;3059:6;;;;;;;;;;;3040:25;;3085:8;3076:6;;:17;;;;;;;;;;;;;;;;;;3140:8;3109:40;;3130:8;3109:40;;;;;;;;;;;;3029:128;2984:173;:::o;29297:315::-;29454:28;29464:4;29470:2;29474:7;29454:9;:28::i;:::-;29501:48;29524:4;29530:2;29534:7;29543:5;29501:22;:48::i;:::-;29493:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29297:315;;;;:::o;44669:98::-;44721:13;44752:7;44745:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44669:98;:::o;11110:723::-;11166:13;11396:1;11387:5;:10;11383:53;;;11414:10;;;;;;;;;;;;;;;;;;;;;11383:53;11446:12;11461:5;11446:20;;11477:14;11502:78;11517:1;11509:4;:9;11502:78;;11535:8;;;;;:::i;:::-;;;;11566:2;11558:10;;;;;:::i;:::-;;;11502:78;;;11590:19;11622:6;11612:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11590:39;;11640:154;11656:1;11647:5;:10;11640:154;;11684:1;11674:11;;;;;:::i;:::-;;;11751:2;11743:5;:10;;;;:::i;:::-;11730:2;:24;;;;:::i;:::-;11717:39;;11700:6;11707;11700:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;11780:2;11771:11;;;;;:::i;:::-;;;11640:154;;;11818:6;11804:21;;;;;11110:723;;;;:::o;10629:157::-;10714:4;10753:25;10738:40;;;:11;:40;;;;10731:47;;10629:157;;;:::o;31246:321::-;31376:18;31382:2;31386:7;31376:5;:18::i;:::-;31427:54;31458:1;31462:2;31466:7;31475:5;31427:22;:54::i;:::-;31405:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31246:321;;;:::o;38762:589::-;38906:45;38933:4;38939:2;38943:7;38906:26;:45::i;:::-;38984:1;38968:18;;:4;:18;;;38964:187;;;39003:40;39035:7;39003:31;:40::i;:::-;38964:187;;;39073:2;39065:10;;:4;:10;;;39061:90;;39092:47;39125:4;39131:7;39092:32;:47::i;:::-;39061:90;38964:187;39179:1;39165:16;;:2;:16;;;39161:183;;;39198:45;39235:7;39198:36;:45::i;:::-;39161:183;;;39271:4;39265:10;;:2;:10;;;39261:83;;39292:40;39320:2;39324:7;39292:27;:40::i;:::-;39261:83;39161:183;38762:589;;;:::o;34646:799::-;34801:4;34822:15;:2;:13;;;:15::i;:::-;34818:620;;;34874:2;34858:36;;;34895:12;:10;:12::i;:::-;34909:4;34915:7;34924:5;34858:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34854:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35117:1;35100:6;:13;:18;35096:272;;;35143:60;;;;;;;;;;:::i;:::-;;;;;;;;35096:272;35318:6;35312:13;35303:6;35299:2;35295:15;35288:38;34854:529;34991:41;;;34981:51;;;:6;:51;;;;34974:58;;;;;34818:620;35422:4;35415:11;;34646:799;;;;;;;:::o;31903:382::-;31997:1;31983:16;;:2;:16;;;;31975:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32056:16;32064:7;32056;:16::i;:::-;32055:17;32047:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32118:45;32147:1;32151:2;32155:7;32118:20;:45::i;:::-;32193:1;32176:9;:13;32186:2;32176:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32224:2;32205:7;:16;32213:7;32205:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32269:7;32265:2;32244:33;;32261:1;32244:33;;;;;;;;;;;;31903:382;;:::o;36017:126::-;;;;:::o;40074:164::-;40178:10;:17;;;;40151:15;:24;40167:7;40151:24;;;;;;;;;;;:44;;;;40206:10;40222:7;40206:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40074:164;:::o;40865:988::-;41131:22;41181:1;41156:22;41173:4;41156:16;:22::i;:::-;:26;;;;:::i;:::-;41131:51;;41193:18;41214:17;:26;41232:7;41214:26;;;;;;;;;;;;41193:47;;41361:14;41347:10;:28;41343:328;;41392:19;41414:12;:18;41427:4;41414:18;;;;;;;;;;;;;;;:34;41433:14;41414:34;;;;;;;;;;;;41392:56;;41498:11;41465:12;:18;41478:4;41465:18;;;;;;;;;;;;;;;:30;41484:10;41465:30;;;;;;;;;;;:44;;;;41615:10;41582:17;:30;41600:11;41582:30;;;;;;;;;;;:43;;;;41377:294;41343:328;41767:17;:26;41785:7;41767:26;;;;;;;;;;;41760:33;;;41811:12;:18;41824:4;41811:18;;;;;;;;;;;;;;;:34;41830:14;41811:34;;;;;;;;;;;41804:41;;;40946:907;;40865:988;;:::o;42148:1079::-;42401:22;42446:1;42426:10;:17;;;;:21;;;;:::i;:::-;42401:46;;42458:18;42479:15;:24;42495:7;42479:24;;;;;;;;;;;;42458:45;;42830:19;42852:10;42863:14;42852:26;;;;;;;;:::i;:::-;;;;;;;;;;42830:48;;42916:11;42891:10;42902;42891:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;43027:10;42996:15;:28;43012:11;42996:28;;;;;;;;;;;:41;;;;43168:15;:24;43184:7;43168:24;;;;;;;;;;;43161:31;;;43203:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42219:1008;;;42148:1079;:::o;39652:221::-;39737:14;39754:20;39771:2;39754:16;:20::i;:::-;39737:37;;39812:7;39785:12;:16;39798:2;39785:16;;;;;;;;;;;;;;;:24;39802:6;39785:24;;;;;;;;;;;:34;;;;39859:6;39830:17;:26;39848:7;39830:26;;;;;;;;;;;:35;;;;39726:147;39652:221;;:::o;13645:387::-;13705:4;13913:12;13980:7;13968:20;13960:28;;14023:1;14016:4;:8;14009:15;;;13645:387;;;:::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:834::-;6911:6;6919;6968:2;6956:9;6947:7;6943:23;6939:32;6936:119;;;6974:79;;:::i;:::-;6936:119;7122:1;7111:9;7107:17;7094:31;7152:18;7144:6;7141:30;7138:117;;;7174:79;;:::i;:::-;7138:117;7279:63;7334:7;7325:6;7314:9;7310:22;7279:63;:::i;:::-;7269:73;;7065:287;7419:2;7408:9;7404:18;7391:32;7450:18;7442:6;7439:30;7436:117;;;7472:79;;:::i;:::-;7436:117;7577:63;7632:7;7623:6;7612:9;7608:22;7577:63;:::i;:::-;7567:73;;7362:288;6823:834;;;;;:::o;7663:329::-;7722:6;7771:2;7759:9;7750:7;7746:23;7742:32;7739:119;;;7777:79;;:::i;:::-;7739:119;7897:1;7922:53;7967:7;7958:6;7947:9;7943:22;7922:53;:::i;:::-;7912:63;;7868:117;7663:329;;;;:::o;7998:118::-;8085:24;8103:5;8085:24;:::i;:::-;8080:3;8073:37;7998:118;;:::o;8122:109::-;8203:21;8218:5;8203:21;:::i;:::-;8198:3;8191:34;8122:109;;:::o;8237:360::-;8323:3;8351:38;8383:5;8351:38;:::i;:::-;8405:70;8468:6;8463:3;8405:70;:::i;:::-;8398:77;;8484:52;8529:6;8524:3;8517:4;8510:5;8506:16;8484:52;:::i;:::-;8561:29;8583:6;8561:29;:::i;:::-;8556:3;8552:39;8545:46;;8327:270;8237:360;;;;:::o;8603:364::-;8691:3;8719:39;8752:5;8719:39;:::i;:::-;8774:71;8838:6;8833:3;8774:71;:::i;:::-;8767:78;;8854:52;8899:6;8894:3;8887:4;8880:5;8876:16;8854:52;:::i;:::-;8931:29;8953:6;8931:29;:::i;:::-;8926:3;8922:39;8915:46;;8695:272;8603:364;;;;:::o;8973:377::-;9079:3;9107:39;9140:5;9107:39;:::i;:::-;9162:89;9244:6;9239:3;9162:89;:::i;:::-;9155:96;;9260:52;9305:6;9300:3;9293:4;9286:5;9282:16;9260:52;:::i;:::-;9337:6;9332:3;9328:16;9321:23;;9083:267;8973:377;;;;:::o;9380:845::-;9483:3;9520:5;9514:12;9549:36;9575:9;9549:36;:::i;:::-;9601:89;9683:6;9678:3;9601:89;:::i;:::-;9594:96;;9721:1;9710:9;9706:17;9737:1;9732:137;;;;9883:1;9878:341;;;;9699:520;;9732:137;9816:4;9812:9;9801;9797:25;9792:3;9785:38;9852:6;9847:3;9843:16;9836:23;;9732:137;;9878:341;9945:38;9977:5;9945:38;:::i;:::-;10005:1;10019:154;10033:6;10030:1;10027:13;10019:154;;;10107:7;10101:14;10097:1;10092:3;10088:11;10081:35;10157:1;10148:7;10144:15;10133:26;;10055:4;10052:1;10048:12;10043:17;;10019:154;;;10202:6;10197:3;10193:16;10186:23;;9885:334;;9699:520;;9487:738;;9380:845;;;;:::o;10231:366::-;10373:3;10394:67;10458:2;10453:3;10394:67;:::i;:::-;10387:74;;10470:93;10559:3;10470:93;:::i;:::-;10588:2;10583:3;10579:12;10572:19;;10231:366;;;:::o;10603:::-;10745:3;10766:67;10830:2;10825:3;10766:67;:::i;:::-;10759:74;;10842:93;10931:3;10842:93;:::i;:::-;10960:2;10955:3;10951:12;10944:19;;10603:366;;;:::o;10975:::-;11117:3;11138:67;11202:2;11197:3;11138:67;:::i;:::-;11131:74;;11214:93;11303:3;11214:93;:::i;:::-;11332:2;11327:3;11323:12;11316:19;;10975:366;;;:::o;11347:::-;11489:3;11510:67;11574:2;11569:3;11510:67;:::i;:::-;11503:74;;11586:93;11675:3;11586:93;:::i;:::-;11704:2;11699:3;11695:12;11688:19;;11347:366;;;:::o;11719:::-;11861:3;11882:67;11946:2;11941:3;11882:67;:::i;:::-;11875:74;;11958:93;12047:3;11958:93;:::i;:::-;12076:2;12071:3;12067:12;12060:19;;11719:366;;;:::o;12091:::-;12233:3;12254:67;12318:2;12313:3;12254:67;:::i;:::-;12247:74;;12330:93;12419:3;12330:93;:::i;:::-;12448:2;12443:3;12439:12;12432:19;;12091:366;;;:::o;12463:::-;12605:3;12626:67;12690:2;12685:3;12626:67;:::i;:::-;12619:74;;12702:93;12791:3;12702:93;:::i;:::-;12820:2;12815:3;12811:12;12804:19;;12463:366;;;:::o;12835:::-;12977:3;12998:67;13062:2;13057:3;12998:67;:::i;:::-;12991:74;;13074:93;13163:3;13074:93;:::i;:::-;13192:2;13187:3;13183:12;13176:19;;12835:366;;;:::o;13207:::-;13349:3;13370:67;13434:2;13429:3;13370:67;:::i;:::-;13363:74;;13446:93;13535:3;13446:93;:::i;:::-;13564:2;13559:3;13555:12;13548:19;;13207:366;;;:::o;13579:::-;13721:3;13742:67;13806:2;13801:3;13742:67;:::i;:::-;13735:74;;13818:93;13907:3;13818:93;:::i;:::-;13936:2;13931:3;13927:12;13920:19;;13579:366;;;:::o;13951:::-;14093:3;14114:67;14178:2;14173:3;14114:67;:::i;:::-;14107:74;;14190:93;14279:3;14190:93;:::i;:::-;14308:2;14303:3;14299:12;14292:19;;13951:366;;;:::o;14323:::-;14465:3;14486:67;14550:2;14545:3;14486:67;:::i;:::-;14479:74;;14562:93;14651:3;14562:93;:::i;:::-;14680:2;14675:3;14671:12;14664:19;;14323:366;;;:::o;14695:400::-;14855:3;14876:84;14958:1;14953:3;14876:84;:::i;:::-;14869:91;;14969:93;15058:3;14969:93;:::i;:::-;15087:1;15082:3;15078:11;15071:18;;14695:400;;;:::o;15101:366::-;15243:3;15264:67;15328:2;15323:3;15264:67;:::i;:::-;15257:74;;15340:93;15429:3;15340:93;:::i;:::-;15458:2;15453:3;15449:12;15442:19;;15101:366;;;:::o;15473:::-;15615:3;15636:67;15700:2;15695:3;15636:67;:::i;:::-;15629:74;;15712:93;15801:3;15712:93;:::i;:::-;15830:2;15825:3;15821:12;15814:19;;15473:366;;;:::o;15845:::-;15987:3;16008:67;16072:2;16067:3;16008:67;:::i;:::-;16001:74;;16084:93;16173:3;16084:93;:::i;:::-;16202:2;16197:3;16193:12;16186:19;;15845:366;;;:::o;16217:::-;16359:3;16380:67;16444:2;16439:3;16380:67;:::i;:::-;16373:74;;16456:93;16545:3;16456:93;:::i;:::-;16574:2;16569:3;16565:12;16558:19;;16217:366;;;:::o;16589:::-;16731:3;16752:67;16816:2;16811:3;16752:67;:::i;:::-;16745:74;;16828:93;16917:3;16828:93;:::i;:::-;16946:2;16941:3;16937:12;16930:19;;16589:366;;;:::o;16961:::-;17103:3;17124:67;17188:2;17183:3;17124:67;:::i;:::-;17117:74;;17200:93;17289:3;17200:93;:::i;:::-;17318:2;17313:3;17309:12;17302:19;;16961:366;;;:::o;17333:::-;17475:3;17496:67;17560:2;17555:3;17496:67;:::i;:::-;17489:74;;17572:93;17661:3;17572:93;:::i;:::-;17690:2;17685:3;17681:12;17674:19;;17333:366;;;:::o;17705:::-;17847:3;17868:67;17932:2;17927:3;17868:67;:::i;:::-;17861:74;;17944:93;18033:3;17944:93;:::i;:::-;18062:2;18057:3;18053:12;18046:19;;17705:366;;;:::o;18077:::-;18219:3;18240:67;18304:2;18299:3;18240:67;:::i;:::-;18233:74;;18316:93;18405:3;18316:93;:::i;:::-;18434:2;18429:3;18425:12;18418:19;;18077:366;;;:::o;18449:::-;18591:3;18612:67;18676:2;18671:3;18612:67;:::i;:::-;18605:74;;18688:93;18777:3;18688:93;:::i;:::-;18806:2;18801:3;18797:12;18790:19;;18449:366;;;:::o;18821:::-;18963:3;18984:67;19048:2;19043:3;18984:67;:::i;:::-;18977:74;;19060:93;19149:3;19060:93;:::i;:::-;19178:2;19173:3;19169:12;19162:19;;18821:366;;;:::o;19193:::-;19335:3;19356:67;19420:2;19415:3;19356:67;:::i;:::-;19349:74;;19432:93;19521:3;19432:93;:::i;:::-;19550:2;19545:3;19541:12;19534:19;;19193:366;;;:::o;19565:118::-;19652:24;19670:5;19652:24;:::i;:::-;19647:3;19640:37;19565:118;;:::o;19689:435::-;19869:3;19891:95;19982:3;19973:6;19891:95;:::i;:::-;19884:102;;20003:95;20094:3;20085:6;20003:95;:::i;:::-;19996:102;;20115:3;20108:10;;19689:435;;;;;:::o;20130:535::-;20360:3;20382:148;20526:3;20382:148;:::i;:::-;20375:155;;20547:92;20635:3;20626:6;20547:92;:::i;:::-;20540:99;;20656:3;20649:10;;20130:535;;;;:::o;20671:222::-;20764:4;20802:2;20791:9;20787:18;20779:26;;20815:71;20883:1;20872:9;20868:17;20859:6;20815:71;:::i;:::-;20671:222;;;;:::o;20899:640::-;21094:4;21132:3;21121:9;21117:19;21109:27;;21146:71;21214:1;21203:9;21199:17;21190:6;21146:71;:::i;:::-;21227:72;21295:2;21284:9;21280:18;21271:6;21227:72;:::i;:::-;21309;21377:2;21366:9;21362:18;21353:6;21309:72;:::i;:::-;21428:9;21422:4;21418:20;21413:2;21402:9;21398:18;21391:48;21456:76;21527:4;21518:6;21456:76;:::i;:::-;21448:84;;20899:640;;;;;;;:::o;21545:210::-;21632:4;21670:2;21659:9;21655:18;21647:26;;21683:65;21745:1;21734:9;21730:17;21721:6;21683:65;:::i;:::-;21545:210;;;;:::o;21761:313::-;21874:4;21912:2;21901:9;21897:18;21889:26;;21961:9;21955:4;21951:20;21947:1;21936:9;21932:17;21925:47;21989:78;22062:4;22053:6;21989:78;:::i;:::-;21981:86;;21761:313;;;;:::o;22080:419::-;22246:4;22284:2;22273:9;22269:18;22261:26;;22333:9;22327:4;22323:20;22319:1;22308:9;22304:17;22297:47;22361:131;22487:4;22361:131;:::i;:::-;22353:139;;22080:419;;;:::o;22505:::-;22671:4;22709:2;22698:9;22694:18;22686:26;;22758:9;22752:4;22748:20;22744:1;22733:9;22729:17;22722:47;22786:131;22912:4;22786:131;:::i;:::-;22778:139;;22505:419;;;:::o;22930:::-;23096:4;23134:2;23123:9;23119:18;23111:26;;23183:9;23177:4;23173:20;23169:1;23158:9;23154:17;23147:47;23211:131;23337:4;23211:131;:::i;:::-;23203:139;;22930:419;;;:::o;23355:::-;23521:4;23559:2;23548:9;23544:18;23536:26;;23608:9;23602:4;23598:20;23594:1;23583:9;23579:17;23572:47;23636:131;23762:4;23636:131;:::i;:::-;23628:139;;23355:419;;;:::o;23780:::-;23946:4;23984:2;23973:9;23969:18;23961:26;;24033:9;24027:4;24023:20;24019:1;24008:9;24004:17;23997:47;24061:131;24187:4;24061:131;:::i;:::-;24053:139;;23780:419;;;:::o;24205:::-;24371:4;24409:2;24398:9;24394:18;24386:26;;24458:9;24452:4;24448:20;24444:1;24433:9;24429:17;24422:47;24486:131;24612:4;24486:131;:::i;:::-;24478:139;;24205:419;;;:::o;24630:::-;24796:4;24834:2;24823:9;24819:18;24811:26;;24883:9;24877:4;24873:20;24869:1;24858:9;24854:17;24847:47;24911:131;25037:4;24911:131;:::i;:::-;24903:139;;24630:419;;;:::o;25055:::-;25221:4;25259:2;25248:9;25244:18;25236:26;;25308:9;25302:4;25298:20;25294:1;25283:9;25279:17;25272:47;25336:131;25462:4;25336:131;:::i;:::-;25328:139;;25055:419;;;:::o;25480:::-;25646:4;25684:2;25673:9;25669:18;25661:26;;25733:9;25727:4;25723:20;25719:1;25708:9;25704:17;25697:47;25761:131;25887:4;25761:131;:::i;:::-;25753:139;;25480:419;;;:::o;25905:::-;26071:4;26109:2;26098:9;26094:18;26086:26;;26158:9;26152:4;26148:20;26144:1;26133:9;26129:17;26122:47;26186:131;26312:4;26186:131;:::i;:::-;26178:139;;25905:419;;;:::o;26330:::-;26496:4;26534:2;26523:9;26519:18;26511:26;;26583:9;26577:4;26573:20;26569:1;26558:9;26554:17;26547:47;26611:131;26737:4;26611:131;:::i;:::-;26603:139;;26330:419;;;:::o;26755:::-;26921:4;26959:2;26948:9;26944:18;26936:26;;27008:9;27002:4;26998:20;26994:1;26983:9;26979:17;26972:47;27036:131;27162:4;27036:131;:::i;:::-;27028:139;;26755:419;;;:::o;27180:::-;27346:4;27384:2;27373:9;27369:18;27361:26;;27433:9;27427:4;27423:20;27419:1;27408:9;27404:17;27397:47;27461:131;27587:4;27461:131;:::i;:::-;27453:139;;27180:419;;;:::o;27605:::-;27771:4;27809:2;27798:9;27794:18;27786:26;;27858:9;27852:4;27848:20;27844:1;27833:9;27829:17;27822:47;27886:131;28012:4;27886:131;:::i;:::-;27878:139;;27605:419;;;:::o;28030:::-;28196:4;28234:2;28223:9;28219:18;28211:26;;28283:9;28277:4;28273:20;28269:1;28258:9;28254:17;28247:47;28311:131;28437:4;28311:131;:::i;:::-;28303:139;;28030:419;;;:::o;28455:::-;28621:4;28659:2;28648:9;28644:18;28636:26;;28708:9;28702:4;28698:20;28694:1;28683:9;28679:17;28672:47;28736:131;28862:4;28736:131;:::i;:::-;28728:139;;28455:419;;;:::o;28880:::-;29046:4;29084:2;29073:9;29069:18;29061:26;;29133:9;29127:4;29123:20;29119:1;29108:9;29104:17;29097:47;29161:131;29287:4;29161:131;:::i;:::-;29153:139;;28880:419;;;:::o;29305:::-;29471:4;29509:2;29498:9;29494:18;29486:26;;29558:9;29552:4;29548:20;29544:1;29533:9;29529:17;29522:47;29586:131;29712:4;29586:131;:::i;:::-;29578:139;;29305:419;;;:::o;29730:::-;29896:4;29934:2;29923:9;29919:18;29911:26;;29983:9;29977:4;29973:20;29969:1;29958:9;29954:17;29947:47;30011:131;30137:4;30011:131;:::i;:::-;30003:139;;29730:419;;;:::o;30155:::-;30321:4;30359:2;30348:9;30344:18;30336:26;;30408:9;30402:4;30398:20;30394:1;30383:9;30379:17;30372:47;30436:131;30562:4;30436:131;:::i;:::-;30428:139;;30155:419;;;:::o;30580:::-;30746:4;30784:2;30773:9;30769:18;30761:26;;30833:9;30827:4;30823:20;30819:1;30808:9;30804:17;30797:47;30861:131;30987:4;30861:131;:::i;:::-;30853:139;;30580:419;;;:::o;31005:::-;31171:4;31209:2;31198:9;31194:18;31186:26;;31258:9;31252:4;31248:20;31244:1;31233:9;31229:17;31222:47;31286:131;31412:4;31286:131;:::i;:::-;31278:139;;31005:419;;;:::o;31430:::-;31596:4;31634:2;31623:9;31619:18;31611:26;;31683:9;31677:4;31673:20;31669:1;31658:9;31654:17;31647:47;31711:131;31837:4;31711:131;:::i;:::-;31703:139;;31430:419;;;:::o;31855:::-;32021:4;32059:2;32048:9;32044:18;32036:26;;32108:9;32102:4;32098:20;32094:1;32083:9;32079:17;32072:47;32136:131;32262:4;32136:131;:::i;:::-;32128:139;;31855:419;;;:::o;32280:222::-;32373:4;32411:2;32400:9;32396:18;32388:26;;32424:71;32492:1;32481:9;32477:17;32468:6;32424:71;:::i;:::-;32280:222;;;;:::o;32508:129::-;32542:6;32569:20;;:::i;:::-;32559:30;;32598:33;32626:4;32618:6;32598:33;:::i;:::-;32508:129;;;:::o;32643:75::-;32676:6;32709:2;32703:9;32693:19;;32643:75;:::o;32724:307::-;32785:4;32875:18;32867:6;32864:30;32861:56;;;32897:18;;:::i;:::-;32861:56;32935:29;32957:6;32935:29;:::i;:::-;32927:37;;33019:4;33013;33009:15;33001:23;;32724:307;;;:::o;33037:308::-;33099:4;33189:18;33181:6;33178:30;33175:56;;;33211:18;;:::i;:::-;33175:56;33249:29;33271:6;33249:29;:::i;:::-;33241:37;;33333:4;33327;33323:15;33315:23;;33037:308;;;:::o;33351:141::-;33400:4;33423:3;33415:11;;33446:3;33443:1;33436:14;33480:4;33477:1;33467:18;33459:26;;33351:141;;;:::o;33498:98::-;33549:6;33583:5;33577:12;33567:22;;33498:98;;;:::o;33602:99::-;33654:6;33688:5;33682:12;33672:22;;33602:99;;;:::o;33707:168::-;33790:11;33824:6;33819:3;33812:19;33864:4;33859:3;33855:14;33840:29;;33707:168;;;;:::o;33881:169::-;33965:11;33999:6;33994:3;33987:19;34039:4;34034:3;34030:14;34015:29;;33881:169;;;;:::o;34056:148::-;34158:11;34195:3;34180:18;;34056:148;;;;:::o;34210:305::-;34250:3;34269:20;34287:1;34269:20;:::i;:::-;34264:25;;34303:20;34321:1;34303:20;:::i;:::-;34298:25;;34457:1;34389:66;34385:74;34382:1;34379:81;34376:107;;;34463:18;;:::i;:::-;34376:107;34507:1;34504;34500:9;34493:16;;34210:305;;;;:::o;34521:185::-;34561:1;34578:20;34596:1;34578:20;:::i;:::-;34573:25;;34612:20;34630:1;34612:20;:::i;:::-;34607:25;;34651:1;34641:35;;34656:18;;:::i;:::-;34641:35;34698:1;34695;34691:9;34686:14;;34521:185;;;;:::o;34712:348::-;34752:7;34775:20;34793:1;34775:20;:::i;:::-;34770:25;;34809:20;34827:1;34809:20;:::i;:::-;34804:25;;34997:1;34929:66;34925:74;34922:1;34919:81;34914:1;34907:9;34900:17;34896:105;34893:131;;;35004:18;;:::i;:::-;34893:131;35052:1;35049;35045:9;35034:20;;34712:348;;;;:::o;35066:191::-;35106:4;35126:20;35144:1;35126:20;:::i;:::-;35121:25;;35160:20;35178:1;35160:20;:::i;:::-;35155:25;;35199:1;35196;35193:8;35190:34;;;35204:18;;:::i;:::-;35190:34;35249:1;35246;35242:9;35234:17;;35066:191;;;;:::o;35263:96::-;35300:7;35329:24;35347:5;35329:24;:::i;:::-;35318:35;;35263:96;;;:::o;35365:90::-;35399:7;35442:5;35435:13;35428:21;35417:32;;35365:90;;;:::o;35461:149::-;35497:7;35537:66;35530:5;35526:78;35515:89;;35461:149;;;:::o;35616:126::-;35653:7;35693:42;35686:5;35682:54;35671:65;;35616:126;;;:::o;35748:77::-;35785:7;35814:5;35803:16;;35748:77;;;:::o;35831:154::-;35915:6;35910:3;35905;35892:30;35977:1;35968:6;35963:3;35959:16;35952:27;35831:154;;;:::o;35991:307::-;36059:1;36069:113;36083:6;36080:1;36077:13;36069:113;;;36168:1;36163:3;36159:11;36153:18;36149:1;36144:3;36140:11;36133:39;36105:2;36102:1;36098:10;36093:15;;36069:113;;;36200:6;36197:1;36194:13;36191:101;;;36280:1;36271:6;36266:3;36262:16;36255:27;36191:101;36040:258;35991:307;;;:::o;36304:320::-;36348:6;36385:1;36379:4;36375:12;36365:22;;36432:1;36426:4;36422:12;36453:18;36443:81;;36509:4;36501:6;36497:17;36487:27;;36443:81;36571:2;36563:6;36560:14;36540:18;36537:38;36534:84;;;36590:18;;:::i;:::-;36534:84;36355:269;36304:320;;;:::o;36630:281::-;36713:27;36735:4;36713:27;:::i;:::-;36705:6;36701:40;36843:6;36831:10;36828:22;36807:18;36795:10;36792:34;36789:62;36786:88;;;36854:18;;:::i;:::-;36786:88;36894:10;36890:2;36883:22;36673:238;36630:281;;:::o;36917:233::-;36956:3;36979:24;36997:5;36979:24;:::i;:::-;36970:33;;37025:66;37018:5;37015:77;37012:103;;;37095:18;;:::i;:::-;37012:103;37142:1;37135:5;37131:13;37124:20;;36917:233;;;:::o;37156:176::-;37188:1;37205:20;37223:1;37205:20;:::i;:::-;37200:25;;37239:20;37257:1;37239:20;:::i;:::-;37234:25;;37278:1;37268:35;;37283:18;;:::i;:::-;37268:35;37324:1;37321;37317:9;37312:14;;37156:176;;;;:::o;37338:180::-;37386:77;37383:1;37376:88;37483:4;37480:1;37473:15;37507:4;37504:1;37497:15;37524:180;37572:77;37569:1;37562:88;37669:4;37666:1;37659:15;37693:4;37690:1;37683:15;37710:180;37758:77;37755:1;37748:88;37855:4;37852:1;37845:15;37879:4;37876:1;37869:15;37896:180;37944:77;37941:1;37934:88;38041:4;38038:1;38031:15;38065:4;38062:1;38055:15;38082:180;38130:77;38127:1;38120:88;38227:4;38224:1;38217:15;38251:4;38248:1;38241:15;38268:180;38316:77;38313:1;38306:88;38413:4;38410:1;38403:15;38437:4;38434:1;38427:15;38454:117;38563:1;38560;38553:12;38577:117;38686:1;38683;38676:12;38700:117;38809:1;38806;38799:12;38823:117;38932:1;38929;38922:12;38946:102;38987:6;39038:2;39034:7;39029:2;39022:5;39018:14;39014:28;39004:38;;38946:102;;;:::o;39054:225::-;39194:34;39190:1;39182:6;39178:14;39171:58;39263:8;39258:2;39250:6;39246:15;39239:33;39054:225;:::o;39285:238::-;39425:34;39421:1;39413:6;39409:14;39402:58;39494:21;39489:2;39481:6;39477:15;39470:46;39285:238;:::o;39529:230::-;39669:34;39665:1;39657:6;39653:14;39646:58;39738:13;39733:2;39725:6;39721:15;39714:38;39529:230;:::o;39765:237::-;39905:34;39901:1;39893:6;39889:14;39882:58;39974:20;39969:2;39961:6;39957:15;39950:45;39765:237;:::o;40008:225::-;40148:34;40144:1;40136:6;40132:14;40125:58;40217:8;40212:2;40204:6;40200:15;40193:33;40008:225;:::o;40239:178::-;40379:30;40375:1;40367:6;40363:14;40356:54;40239:178;:::o;40423:223::-;40563:34;40559:1;40551:6;40547:14;40540:58;40632:6;40627:2;40619:6;40615:15;40608:31;40423:223;:::o;40652:175::-;40792:27;40788:1;40780:6;40776:14;40769:51;40652:175;:::o;40833:181::-;40973:33;40969:1;40961:6;40957:14;40950:57;40833:181;:::o;41020:228::-;41160:34;41156:1;41148:6;41144:14;41137:58;41229:11;41224:2;41216:6;41212:15;41205:36;41020:228;:::o;41254:231::-;41394:34;41390:1;41382:6;41378:14;41371:58;41463:14;41458:2;41450:6;41446:15;41439:39;41254:231;:::o;41491:220::-;41631:34;41627:1;41619:6;41615:14;41608:58;41700:3;41695:2;41687:6;41683:15;41676:28;41491:220;:::o;41717:161::-;41857:9;41853:1;41845:6;41841:14;41834:33;41717:161;:::o;41888:255::-;42032:34;42028:1;42020:6;42016:14;42009:58;42105:26;42100:2;42092:6;42088:15;42081:51;41888:255;:::o;42153:241::-;42297:34;42293:1;42285:6;42281:14;42274:58;42370:12;42365:2;42357:6;42353:15;42346:37;42153:241;:::o;42404:240::-;42548:34;42544:1;42536:6;42532:14;42525:58;42621:11;42616:2;42608:6;42604:15;42597:36;42404:240;:::o;42654:190::-;42798:34;42794:1;42786:6;42782:14;42775:58;42654:190;:::o;42854:243::-;42998:34;42994:1;42986:6;42982:14;42975:58;43071:14;43066:2;43058:6;43054:15;43047:39;42854:243;:::o;43107:247::-;43251:34;43247:1;43239:6;43235:14;43228:58;43324:18;43319:2;43311:6;43307:15;43300:43;43107:247;:::o;43364:190::-;43508:34;43504:1;43496:6;43492:14;43485:58;43364:190;:::o;43564:240::-;43708:34;43704:1;43696:6;43692:14;43685:58;43781:11;43776:2;43768:6;43764:15;43757:36;43564:240;:::o;43814:246::-;43958:34;43954:1;43946:6;43942:14;43935:58;44031:17;44026:2;44018:6;44014:15;44007:42;43814:246;:::o;44070:232::-;44214:34;44210:1;44202:6;44198:14;44191:58;44287:3;44282:2;44274:6;44270:15;44263:28;44070:232;:::o;44312:248::-;44456:34;44452:1;44444:6;44440:14;44433:58;44529:19;44524:2;44516:6;44512:15;44505:44;44312:248;:::o;44570:243::-;44714:34;44710:1;44702:6;44698:14;44691:58;44787:14;44782:2;44774:6;44770:15;44763:39;44570:243;:::o;44823:130::-;44900:24;44918:5;44900:24;:::i;:::-;44893:5;44890:35;44880:63;;44939:1;44936;44929:12;44880:63;44823:130;:::o;44963:124::-;45037:21;45052:5;45037:21;:::i;:::-;45030:5;45027:32;45017:60;;45073:1;45070;45063:12;45017:60;44963:124;:::o;45097:128::-;45173:23;45190:5;45173:23;:::i;:::-;45166:5;45163:34;45153:62;;45211:1;45208;45201:12;45153:62;45097:128;:::o;45235:130::-;45312:24;45330:5;45312:24;:::i;:::-;45305:5;45302:35;45292:63;;45351:1;45348;45341:12;45292:63;45235:130;:::o

Swarm Source

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