ETH Price: $2,524.90 (+0.29%)

Token

The Loli Krew (TLK)
 

Overview

Max Total Supply

357 TLK

Holders

173

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
spaghetty.eth
Balance
2 TLK
0x5B5CCD33Def76122875B164D2AcD1D4e60dDF4Cd
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:
TLK

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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/contracts/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/contracts/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/contracts/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/contracts/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/contracts/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/contracts/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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/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/contracts/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/contracts/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(to).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/contracts/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();
    }
}

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

pragma solidity ^0.8.0;

contract TLK is ERC721Enumerable, Ownable, PaymentSplitter {
    using SafeMath for uint256;
    using Strings for uint256;

    string public TLK_PROVENANCE  = '';
    string public LICENSE_TEXT     = '';
    uint256 public MAX_SUPPLY      = 10000;
    uint256 public RESERVED_SUPPLY = 100;

    bool public paused             = true;
    uint public price              = 0.04 ether;

    uint public presale_mint_max   = 20;
    uint public presale_start      = 1632024000; //19 Sept, 16:00 UTC
    uint public presale_supply     = 500;
    uint public presale_wallet_max = 10000;

    uint public sale_mint_max      = 20;
    uint public sale_start         = 1632196800; //21 Sept, 16:00 UTC
    uint public sale_wallet_max    = 10000;

    string private _baseTokenURI = 'https://mint.thelolikrew.com/api/';
    bool private _licenseLocked = false;

    mapping(address => uint) private _presale;

    event LicenseLocked(string _licenseText);

    // Withdrawal addresses
    address t1 = 0x99808e8E983983d6B8B9c2A53Cce7D9f9840ff67;
    address t2 = 0x9AF5353493121f640acdf9469a36d61B2f808925;
    address[] addressList = [t1, t2];
    uint256[] shareList   = [90, 10];

    constructor()
    ERC721("The Loli Krew", "TLK")
    PaymentSplitter(addressList, shareList)  {
      //send reserves
      //gift( RESERVED_SUPPLY, owner() );
    }

    function mint(uint256 quantity) public payable {
        require( !paused, "Sale paused" );
        require( msg.value >= price * quantity, "Ether sent is not correct" );

        //regular sale
        uint256 balance = totalSupply();
        if( block.timestamp >= sale_start ){
            require( quantity           <= sale_mint_max, "Order too big" );
            require( balance + quantity <= MAX_SUPPLY,    "Exceeds supply" );
            require( balanceOf( msg.sender ) + quantity <= sale_wallet_max, "Don't be greedy" );
        }
        //presale
        else if( block.timestamp >= presale_start ){
            require( quantity           <= presale_mint_max, "Order too big" );
            require( balance + quantity <= presale_supply,   "Exceeds supply" );
            require( _presale[ msg.sender ] == 1,            "Wallet is not whitelisted" );
            require( balanceOf( msg.sender ) + quantity <= presale_wallet_max, "Don't be greedy" );
        }
        else{
            require( false, "Sale has not started yet" );
        }

        for( uint256 i; i < quantity; ++i ){
            _safeMint( msg.sender, balance + i );
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokenIDs = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokenIDs[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIDs;
    }

    //owner
    function gift(uint256 quantity, address recipient) public onlyOwner {
        uint256 balance = totalSupply();
        require( balance + quantity <= MAX_SUPPLY, "Exceeds supply" );

        for(uint256 i; i < quantity; ++i ){
            _safeMint( recipient, balance + i );
        }
    }

    //owner setters
    function changeLicense(string memory _license) public onlyOwner {
        require(_licenseLocked == false, "License already locked");
        LICENSE_TEXT = _license;
    }

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

    function lockLicense() public onlyOwner {
        _licenseLocked =  true;
        emit LicenseLocked(LICENSE_TEXT);
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setMaxSupply(uint maxSupply) public onlyOwner {
        require(maxSupply > totalSupply(), "Specified supply is lower than current balance" );
        MAX_SUPPLY = maxSupply;
    }

    // Just in case Eth does some crazy stuff
    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        TLK_PROVENANCE = provenanceHash;
    }

    function tokenLicense(uint _id) public view returns(string memory) {
        require(_id < totalSupply(), "Invalid ID");
        return LICENSE_TEXT;
    }

    function addPresaleAddresses( address[] memory wallets ) public onlyOwner {
        for( uint i; i < wallets.length; ++i ){
            _presale[ wallets[i] ] = 1;
        }
    }

    function setPresaleOptions( uint mint_max, uint start, uint wallet_max, uint supply ) public onlyOwner {
        require( supply >= totalSupply(),  "Specified supply is lower than current balance" );
        require( supply <= MAX_SUPPLY,     "Specified supply is greater than max supply" );

        if( presale_mint_max != mint_max )
            presale_mint_max = mint_max;

        if( presale_start != start )
            presale_start = start;

        if( presale_mint_max != wallet_max )
            presale_wallet_max = wallet_max;

        if( presale_supply != supply )
            presale_supply = supply;
    }

    function setSaleOptions(uint mint_max, uint start, uint wallet_max ) public onlyOwner {
        if( sale_mint_max != mint_max )
            sale_mint_max = mint_max;

        if( sale_start != start )
            sale_start = start;

        if( sale_wallet_max != wallet_max )
            sale_wallet_max = wallet_max;
    }

    //internal
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return bytes(_baseTokenURI).length > 0 ? string(abi.encodePacked(_baseTokenURI, tokenId.toString())) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"LicenseLocked","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TLK_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"}],"name":"addPresaleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"gift","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":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_mint_max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_wallet_max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale_mint_max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sale_start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sale_wallet_max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mint_max","type":"uint256"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"wallet_max","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setPresaleOptions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mint_max","type":"uint256"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"wallet_max","type":"uint256"}],"name":"setSaleOptions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405180602001604052806000815250601090805190602001906200002b92919062000854565b5060405180602001604052806000815250601190805190602001906200005392919062000854565b5061271060125560646013556001601460006101000a81548160ff021916908315150217905550668e1bc9bf0400006015556014601655636146b5c06017556101f46018556127106019556014601a5563614958c0601b55612710601c5560405180606001604052806021815260200162006c0d60219139601d9080519060200190620000e292919062000854565b506000601e60006101000a81548160ff0219169083151502179055507399808e8e983983d6b8b9c2a53cce7d9f9840ff67602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739af5353493121f640acdf9469a36d61b2f808925602160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525060229060026200026b929190620008e5565b506040518060400160405280605a60ff168152602001600a60ff1681525060239060026200029b92919062000974565b50348015620002a957600080fd5b5060228054806020026020016040519081016040528092919081815260200182805480156200032e57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311620002e3575b505050505060238054806020026020016040519081016040528092919081815260200182805480156200038157602002820191906000526020600020905b8154815260200190600101908083116200036c575b50505050506040518060400160405280600d81526020017f546865204c6f6c69204b726577000000000000000000000000000000000000008152506040518060400160405280600381526020017f544c4b000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200040a92919062000854565b5080600190805190602001906200042392919062000854565b505050620004466200043a6200054c60201b60201c565b6200055460201b60201c565b80518251146200048d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004849062000b1e565b60405180910390fd5b6000825111620004d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004cb9062000b62565b60405180910390fd5b60005b825181101562000543576200052d838281518110620004fb57620004fa62000d34565b5b602002602001015183838151811062000519576200051862000d34565b5b60200260200101516200061a60201b60201c565b80806200053a9062000c88565b915050620004d7565b50505062000ea2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200068d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006849062000afc565b60405180910390fd5b60008111620006d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ca9062000b84565b60405180910390fd5b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000758576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200074f9062000b40565b60405180910390fd5b600f829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b546200080f919062000bb7565b600b819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200084892919062000acf565b60405180910390a15050565b828054620008629062000c52565b90600052602060002090601f016020900481019282620008865760008555620008d2565b82601f10620008a157805160ff1916838001178555620008d2565b82800160010185558215620008d2579182015b82811115620008d1578251825591602001919060010190620008b4565b5b509050620008e19190620009cb565b5090565b82805482825590600052602060002090810192821562000961579160200282015b82811115620009605782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000906565b5b509050620009709190620009cb565b5090565b828054828255906000526020600020908101928215620009b8579160200282015b82811115620009b7578251829060ff1690559160200191906001019062000995565b5b509050620009c79190620009cb565b5090565b5b80821115620009e6576000816000905550600101620009cc565b5090565b620009f58162000c14565b82525050565b600062000a0a602c8362000ba6565b915062000a178262000d63565b604082019050919050565b600062000a3160328362000ba6565b915062000a3e8262000db2565b604082019050919050565b600062000a58602b8362000ba6565b915062000a658262000e01565b604082019050919050565b600062000a7f601a8362000ba6565b915062000a8c8262000e50565b602082019050919050565b600062000aa6601d8362000ba6565b915062000ab38262000e79565b602082019050919050565b62000ac98162000c48565b82525050565b600060408201905062000ae66000830185620009ea565b62000af5602083018462000abe565b9392505050565b6000602082019050818103600083015262000b1781620009fb565b9050919050565b6000602082019050818103600083015262000b398162000a22565b9050919050565b6000602082019050818103600083015262000b5b8162000a49565b9050919050565b6000602082019050818103600083015262000b7d8162000a70565b9050919050565b6000602082019050818103600083015262000b9f8162000a97565b9050919050565b600082825260208201905092915050565b600062000bc48262000c48565b915062000bd18362000c48565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000cd6565b5b828201905092915050565b600062000c218262000c28565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000c6b57607f821691505b6020821081141562000c825762000c8162000d05565b5b50919050565b600062000c958262000c48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000ccb5762000cca62000cd6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b615d5b8062000eb26000396000f3fe6080604052600436106103035760003560e01c806370a0823111610190578063a22cb465116100dc578063ce7c2ac211610095578063d9b137b21161006f578063d9b137b214610bbc578063e33b7de314610bf9578063e985e9c514610c24578063f2fde38b14610c615761034a565b8063ce7c2ac214610b2b578063d07b63c614610b68578063d3344ed314610b915761034a565b8063a22cb46514610a33578063b09904b514610a5c578063b88d4fde14610a85578063bc7a916314610aae578063bf4702fc14610ad7578063c87b56dd14610aee5761034a565b806391b7f5ed116101495780639c3e72bd116101235780639c3e72bd14610996578063a035b1fe146109c1578063a0712d68146109ec578063a0dfd81514610a085761034a565b806391b7f5ed1461090557806395d89b411461092e5780639852595c146109595761034a565b806370a08231146107f5578063715018a614610832578063833de1d51461084957806383a076be146108745780638b83209b1461089d5780638da5cb5b146108da5761034a565b806331a53e9a1161024f578063438b63001161020857806355f804b3116101e257806355f804b31461073b5780635c975abb146107645780636352211e1461078f5780636f8b44b0146107cc5761034a565b8063438b630014610696578063445a3771146106d35780634f6ccce7146106fe5761034a565b806331a53e9a146105ac57806332cb6b0c146105d757806334918dfd146106025780633819fc0f146106195780633a98ef391461064257806342842e0e1461066d5761034a565b806319165587116102bc5780632a146986116102965780632a146986146104ee5780632e5c0fe7146105195780632f745c5914610544578063319a3fbd146105815761034a565b8063191655871461047157806323b872dd1461049a57806324eedd4c146104c35761034a565b806301ffc9a71461034f57806306fdde031461038c578063081812fc146103b7578063095ea7b3146103f4578063109695231461041d57806318160ddd146104465761034a565b3661034a577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610331610c8a565b34604051610340929190614a2c565b60405180910390a1005b600080fd5b34801561035b57600080fd5b5061037660048036038101906103719190614090565b610c92565b6040516103839190614a77565b60405180910390f35b34801561039857600080fd5b506103a1610d0c565b6040516103ae9190614a92565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190614133565b610d9e565b6040516103eb919061499c565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190614007565b610e23565b005b34801561042957600080fd5b50610444600480360381019061043f91906140ea565b610f3b565b005b34801561045257600080fd5b5061045b610fd1565b6040516104689190614ef6565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613e84565b610fde565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190613ef1565b611246565b005b3480156104cf57600080fd5b506104d86112a6565b6040516104e59190614ef6565b60405180910390f35b3480156104fa57600080fd5b506105036112ac565b6040516105109190614ef6565b60405180910390f35b34801561052557600080fd5b5061052e6112b2565b60405161053b9190614ef6565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190614007565b6112b8565b6040516105789190614ef6565b60405180910390f35b34801561058d57600080fd5b5061059661135d565b6040516105a39190614ef6565b60405180910390f35b3480156105b857600080fd5b506105c1611363565b6040516105ce9190614ef6565b60405180910390f35b3480156105e357600080fd5b506105ec611369565b6040516105f99190614ef6565b60405180910390f35b34801561060e57600080fd5b5061061761136f565b005b34801561062557600080fd5b50610640600480360381019061063b9190614047565b611417565b005b34801561064e57600080fd5b50610657611513565b6040516106649190614ef6565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f9190613ef1565b61151d565b005b3480156106a257600080fd5b506106bd60048036038101906106b89190613e57565b61153d565b6040516106ca9190614a55565b60405180910390f35b3480156106df57600080fd5b506106e86115eb565b6040516106f59190614ef6565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190614133565b6115f1565b6040516107329190614ef6565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d91906140ea565b611662565b005b34801561077057600080fd5b506107796116f8565b6040516107869190614a77565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190614133565b61170b565b6040516107c3919061499c565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee9190614133565b6117bd565b005b34801561080157600080fd5b5061081c60048036038101906108179190613e57565b61188c565b6040516108299190614ef6565b60405180910390f35b34801561083e57600080fd5b50610847611944565b005b34801561085557600080fd5b5061085e6119cc565b60405161086b9190614ef6565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190614160565b6119d2565b005b3480156108a957600080fd5b506108c460048036038101906108bf9190614133565b611ae1565b6040516108d1919061499c565b60405180910390f35b3480156108e657600080fd5b506108ef611b29565b6040516108fc919061499c565b60405180910390f35b34801561091157600080fd5b5061092c60048036038101906109279190614133565b611b53565b005b34801561093a57600080fd5b50610943611bd9565b6040516109509190614a92565b60405180910390f35b34801561096557600080fd5b50610980600480360381019061097b9190613e57565b611c6b565b60405161098d9190614ef6565b60405180910390f35b3480156109a257600080fd5b506109ab611cb4565b6040516109b89190614a92565b60405180910390f35b3480156109cd57600080fd5b506109d6611d42565b6040516109e39190614ef6565b60405180910390f35b610a066004803603810190610a019190614133565b611d48565b005b348015610a1457600080fd5b50610a1d6120e5565b604051610a2a9190614a92565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a559190613fc7565b612173565b005b348015610a6857600080fd5b50610a836004803603810190610a7e91906140ea565b6122f4565b005b348015610a9157600080fd5b50610aac6004803603810190610aa79190613f44565b6123e0565b005b348015610aba57600080fd5b50610ad56004803603810190610ad091906141f3565b612442565b005b348015610ae357600080fd5b50610aec612597565b005b348015610afa57600080fd5b50610b156004803603810190610b109190614133565b612668565b604051610b229190614a92565b60405180910390f35b348015610b3757600080fd5b50610b526004803603810190610b4d9190613e57565b612710565b604051610b5f9190614ef6565b60405180910390f35b348015610b7457600080fd5b50610b8f6004803603810190610b8a91906141a0565b612759565b005b348015610b9d57600080fd5b50610ba661280d565b604051610bb39190614ef6565b60405180910390f35b348015610bc857600080fd5b50610be36004803603810190610bde9190614133565b612813565b604051610bf09190614a92565b60405180910390f35b348015610c0557600080fd5b50610c0e6128f0565b604051610c1b9190614ef6565b60405180910390f35b348015610c3057600080fd5b50610c4b6004803603810190610c469190613eb1565b6128fa565b604051610c589190614a77565b60405180910390f35b348015610c6d57600080fd5b50610c886004803603810190610c839190613e57565b61298e565b005b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d055750610d0482612a86565b5b9050919050565b606060008054610d1b90615273565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4790615273565b8015610d945780601f10610d6957610100808354040283529160200191610d94565b820191906000526020600020905b815481529060010190602001808311610d7757829003601f168201915b5050505050905090565b6000610da982612b68565b610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90614db6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e2e8261170b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690614e36565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ebe610c8a565b73ffffffffffffffffffffffffffffffffffffffff161480610eed5750610eec81610ee7610c8a565b6128fa565b5b610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390614cd6565b60405180910390fd5b610f368383612bd4565b505050565b610f43610c8a565b73ffffffffffffffffffffffffffffffffffffffff16610f61611b29565b73ffffffffffffffffffffffffffffffffffffffff1614610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90614dd6565b60405180910390fd5b8060109080519060200190610fcd929190613bb8565b5050565b6000600880549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614bb6565b60405180910390fd5b6000600c54476110709190615060565b90506000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b54600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461110291906150e7565b61110c91906150b6565b6111169190615141565b9050600081141561115c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115390614c96565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111a79190615060565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c546111f89190615060565b600c819055506112088382612c8d565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516112399291906149b7565b60405180910390a1505050565b611257611251610c8a565b82612d81565b611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90614eb6565b60405180910390fd5b6112a1838383612e5f565b505050565b60185481565b601a5481565b601b5481565b60006112c38361188c565b8210611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90614b36565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601c5481565b60135481565b60125481565b611377610c8a565b73ffffffffffffffffffffffffffffffffffffffff16611395611b29565b73ffffffffffffffffffffffffffffffffffffffff16146113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290614dd6565b60405180910390fd5b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b61141f610c8a565b73ffffffffffffffffffffffffffffffffffffffff1661143d611b29565b73ffffffffffffffffffffffffffffffffffffffff1614611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90614dd6565b60405180910390fd5b60005b815181101561150f576001601f60008484815181106114b8576114b761540c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080611508906152d6565b9050611496565b5050565b6000600b54905090565b611538838383604051806020016040528060008152506123e0565b505050565b6060600061154a8361188c565b905060008167ffffffffffffffff8111156115685761156761543b565b5b6040519080825280602002602001820160405280156115965781602001602082028036833780820191505090505b50905060005b828110156115e0576115ae85826112b8565b8282815181106115c1576115c061540c565b5b60200260200101818152505080806115d8906152d6565b91505061159c565b508092505050919050565b60175481565b60006115fb610fd1565b821061163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163390614ed6565b60405180910390fd5b600882815481106116505761164f61540c565b5b90600052602060002001549050919050565b61166a610c8a565b73ffffffffffffffffffffffffffffffffffffffff16611688611b29565b73ffffffffffffffffffffffffffffffffffffffff16146116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590614dd6565b60405180910390fd5b80601d90805190602001906116f4929190613bb8565b5050565b601460009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab90614d16565b60405180910390fd5b80915050919050565b6117c5610c8a565b73ffffffffffffffffffffffffffffffffffffffff166117e3611b29565b73ffffffffffffffffffffffffffffffffffffffff1614611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090614dd6565b60405180910390fd5b611841610fd1565b8111611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990614bd6565b60405180910390fd5b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490614cf6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61194c610c8a565b73ffffffffffffffffffffffffffffffffffffffff1661196a611b29565b73ffffffffffffffffffffffffffffffffffffffff16146119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b790614dd6565b60405180910390fd5b6119ca60006130bb565b565b60165481565b6119da610c8a565b73ffffffffffffffffffffffffffffffffffffffff166119f8611b29565b73ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4590614dd6565b60405180910390fd5b6000611a58610fd1565b90506012548382611a699190615060565b1115611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa190614ad6565b60405180910390fd5b60005b83811015611adb57611aca838284611ac59190615060565b613181565b80611ad4906152d6565b9050611aad565b50505050565b6000600f8281548110611af757611af661540c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b5b610c8a565b73ffffffffffffffffffffffffffffffffffffffff16611b79611b29565b73ffffffffffffffffffffffffffffffffffffffff1614611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690614dd6565b60405180910390fd5b8060158190555050565b606060018054611be890615273565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1490615273565b8015611c615780601f10611c3657610100808354040283529160200191611c61565b820191906000526020600020905b815481529060010190602001808311611c4457829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60118054611cc190615273565b80601f0160208091040260200160405190810160405280929190818152602001828054611ced90615273565b8015611d3a5780601f10611d0f57610100808354040283529160200191611d3a565b820191906000526020600020905b815481529060010190602001808311611d1d57829003601f168201915b505050505081565b60155481565b601460009054906101000a900460ff1615611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90614af6565b60405180910390fd5b80601554611da691906150e7565b341015611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf90614e76565b60405180910390fd5b6000611df2610fd1565b9050601b544210611eef57601a54821115611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3990614d36565b60405180910390fd5b6012548282611e519190615060565b1115611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990614ad6565b60405180910390fd5b601c5482611e9f3361188c565b611ea99190615060565b1115611eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee190614d56565b60405180910390fd5b6120af565b601754421061206c57601654821115611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3490614d36565b60405180910390fd5b6018548282611f4c9190615060565b1115611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8490614ad6565b60405180910390fd5b6001601f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614e56565b60405180910390fd5b6019548261201c3361188c565b6120269190615060565b1115612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90614d56565b60405180910390fd5b6120ae565b60006120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490614b16565b60405180910390fd5b5b5b60005b828110156120e0576120cf3382846120ca9190615060565b613181565b806120d9906152d6565b90506120b2565b505050565b601080546120f290615273565b80601f016020809104026020016040519081016040528092919081815260200182805461211e90615273565b801561216b5780601f106121405761010080835404028352916020019161216b565b820191906000526020600020905b81548152906001019060200180831161214e57829003601f168201915b505050505081565b61217b610c8a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e090614c16565b60405180910390fd5b80600560006121f6610c8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122a3610c8a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122e89190614a77565b60405180910390a35050565b6122fc610c8a565b73ffffffffffffffffffffffffffffffffffffffff1661231a611b29565b73ffffffffffffffffffffffffffffffffffffffff1614612370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236790614dd6565b60405180910390fd5b60001515601e60009054906101000a900460ff161515146123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd90614e96565b60405180910390fd5b80601190805190602001906123dc929190613bb8565b5050565b6123f16123eb610c8a565b83612d81565b612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790614eb6565b60405180910390fd5b61243c8484848461319f565b50505050565b61244a610c8a565b73ffffffffffffffffffffffffffffffffffffffff16612468611b29565b73ffffffffffffffffffffffffffffffffffffffff16146124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b590614dd6565b60405180910390fd5b6124c6610fd1565b811015612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90614bd6565b60405180910390fd5b60125481111561254d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254490614cb6565b60405180910390fd5b836016541461255e57836016819055505b826017541461256f57826017819055505b816016541461258057816019819055505b806018541461259157806018819055505b50505050565b61259f610c8a565b73ffffffffffffffffffffffffffffffffffffffff166125bd611b29565b73ffffffffffffffffffffffffffffffffffffffff1614612613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260a90614dd6565b60405180910390fd5b6001601e60006101000a81548160ff0219169083151502179055507fd0aa4d8e7b0215933778f41575f8ad2175172a023ede476fc2724a38357dc674601160405161265e9190614ab4565b60405180910390a1565b606061267382612b68565b6126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a990614e16565b60405180910390fd5b6000601d80546126c190615273565b9050116126dd5760405180602001604052806000815250612709565b601d6126e8836131fb565b6040516020016126f9929190614963565b6040516020818303038152906040525b9050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612761610c8a565b73ffffffffffffffffffffffffffffffffffffffff1661277f611b29565b73ffffffffffffffffffffffffffffffffffffffff16146127d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cc90614dd6565b60405180910390fd5b82601a54146127e65782601a819055505b81601b54146127f75781601b819055505b80601c54146128085780601c819055505b505050565b60195481565b606061281d610fd1565b821061285e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285590614d76565b60405180910390fd5b6011805461286b90615273565b80601f016020809104026020016040519081016040528092919081815260200182805461289790615273565b80156128e45780601f106128b9576101008083540402835291602001916128e4565b820191906000526020600020905b8154815290600101906020018083116128c757829003601f168201915b50505050509050919050565b6000600c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612996610c8a565b73ffffffffffffffffffffffffffffffffffffffff166129b4611b29565b73ffffffffffffffffffffffffffffffffffffffff1614612a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0190614dd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7190614b76565b60405180910390fd5b612a83816130bb565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b5157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b615750612b608261335c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c478361170b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc790614c56565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612cf690614987565b60006040518083038185875af1925050503d8060008114612d33576040519150601f19603f3d011682016040523d82523d6000602084013e612d38565b606091505b5050905080612d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7390614c36565b60405180910390fd5b505050565b6000612d8c82612b68565b612dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc290614c76565b60405180910390fd5b6000612dd68361170b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e4557508373ffffffffffffffffffffffffffffffffffffffff16612e2d84610d9e565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e565750612e5581856128fa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e7f8261170b565b73ffffffffffffffffffffffffffffffffffffffff1614612ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ecc90614df6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3c90614bf6565b60405180910390fd5b612f508383836133c6565b612f5b600082612bd4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fab9190615141565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130029190615060565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61319b8282604051806020016040528060008152506134da565b5050565b6131aa848484612e5f565b6131b684848484613535565b6131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec90614b56565b60405180910390fd5b50505050565b60606000821415613243576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613357565b600082905060005b6000821461327557808061325e906152d6565b915050600a8261326e91906150b6565b915061324b565b60008167ffffffffffffffff8111156132915761329061543b565b5b6040519080825280601f01601f1916602001820160405280156132c35781602001600182028036833780820191505090505b5090505b60008514613350576001826132dc9190615141565b9150600a856132eb919061531f565b60306132f79190615060565b60f81b81838151811061330d5761330c61540c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561334991906150b6565b94506132c7565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6133d18383836136cc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134145761340f816136d1565b613453565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461345257613451838261371a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134965761349181613887565b6134d5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146134d4576134d38282613958565b5b5b505050565b6134e483836139d7565b6134f16000848484613535565b613530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352790614b56565b60405180910390fd5b505050565b60006135568473ffffffffffffffffffffffffffffffffffffffff16613ba5565b156136bf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261357f610c8a565b8786866040518563ffffffff1660e01b81526004016135a194939291906149e0565b602060405180830381600087803b1580156135bb57600080fd5b505af19250505080156135ec57506040513d601f19601f820116820180604052508101906135e991906140bd565b60015b61366f573d806000811461361c576040519150601f19603f3d011682016040523d82523d6000602084013e613621565b606091505b50600081511415613667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365e90614b56565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136c4565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016137278461188c565b6137319190615141565b9050600060076000848152602001908152602001600020549050818114613816576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061389b9190615141565b90506000600960008481526020019081526020016000205490506000600883815481106138cb576138ca61540c565b5b9060005260206000200154905080600883815481106138ed576138ec61540c565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061393c5761393b6153dd565b5b6001900381819060005260206000200160009055905550505050565b60006139638361188c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a3e90614d96565b60405180910390fd5b613a5081612b68565b15613a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8790614b96565b60405180910390fd5b613a9c600083836133c6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613aec9190615060565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613bc490615273565b90600052602060002090601f016020900481019282613be65760008555613c2d565b82601f10613bff57805160ff1916838001178555613c2d565b82800160010185558215613c2d579182015b82811115613c2c578251825591602001919060010190613c11565b5b509050613c3a9190613c3e565b5090565b5b80821115613c57576000816000905550600101613c3f565b5090565b6000613c6e613c6984614f36565b614f11565b90508083825260208201905082856020860282011115613c9157613c9061546f565b5b60005b85811015613cc15781613ca78882613d4f565b845260208401935060208301925050600181019050613c94565b5050509392505050565b6000613cde613cd984614f62565b614f11565b905082815260208101848484011115613cfa57613cf9615474565b5b613d05848285615231565b509392505050565b6000613d20613d1b84614f93565b614f11565b905082815260208101848484011115613d3c57613d3b615474565b5b613d47848285615231565b509392505050565b600081359050613d5e81615cb2565b92915050565b600081359050613d7381615cc9565b92915050565b600082601f830112613d8e57613d8d61546a565b5b8135613d9e848260208601613c5b565b91505092915050565b600081359050613db681615ce0565b92915050565b600081359050613dcb81615cf7565b92915050565b600081519050613de081615cf7565b92915050565b600082601f830112613dfb57613dfa61546a565b5b8135613e0b848260208601613ccb565b91505092915050565b600082601f830112613e2957613e2861546a565b5b8135613e39848260208601613d0d565b91505092915050565b600081359050613e5181615d0e565b92915050565b600060208284031215613e6d57613e6c61547e565b5b6000613e7b84828501613d4f565b91505092915050565b600060208284031215613e9a57613e9961547e565b5b6000613ea884828501613d64565b91505092915050565b60008060408385031215613ec857613ec761547e565b5b6000613ed685828601613d4f565b9250506020613ee785828601613d4f565b9150509250929050565b600080600060608486031215613f0a57613f0961547e565b5b6000613f1886828701613d4f565b9350506020613f2986828701613d4f565b9250506040613f3a86828701613e42565b9150509250925092565b60008060008060808587031215613f5e57613f5d61547e565b5b6000613f6c87828801613d4f565b9450506020613f7d87828801613d4f565b9350506040613f8e87828801613e42565b925050606085013567ffffffffffffffff811115613faf57613fae615479565b5b613fbb87828801613de6565b91505092959194509250565b60008060408385031215613fde57613fdd61547e565b5b6000613fec85828601613d4f565b9250506020613ffd85828601613da7565b9150509250929050565b6000806040838503121561401e5761401d61547e565b5b600061402c85828601613d4f565b925050602061403d85828601613e42565b9150509250929050565b60006020828403121561405d5761405c61547e565b5b600082013567ffffffffffffffff81111561407b5761407a615479565b5b61408784828501613d79565b91505092915050565b6000602082840312156140a6576140a561547e565b5b60006140b484828501613dbc565b91505092915050565b6000602082840312156140d3576140d261547e565b5b60006140e184828501613dd1565b91505092915050565b600060208284031215614100576140ff61547e565b5b600082013567ffffffffffffffff81111561411e5761411d615479565b5b61412a84828501613e14565b91505092915050565b6000602082840312156141495761414861547e565b5b600061415784828501613e42565b91505092915050565b600080604083850312156141775761417661547e565b5b600061418585828601613e42565b925050602061419685828601613d4f565b9150509250929050565b6000806000606084860312156141b9576141b861547e565b5b60006141c786828701613e42565b93505060206141d886828701613e42565b92505060406141e986828701613e42565b9150509250925092565b6000806000806080858703121561420d5761420c61547e565b5b600061421b87828801613e42565b945050602061422c87828801613e42565b935050604061423d87828801613e42565b925050606061424e87828801613e42565b91505092959194509250565b60006142668383614945565b60208301905092915050565b61427b816151fb565b82525050565b61428a81615175565b82525050565b600061429b82614fe9565b6142a58185615017565b93506142b083614fc4565b8060005b838110156142e15781516142c8888261425a565b97506142d38361500a565b9250506001810190506142b4565b5085935050505092915050565b6142f781615199565b82525050565b600061430882614ff4565b6143128185615028565b9350614322818560208601615240565b61432b81615483565b840191505092915050565b600061434182614fff565b61434b8185615044565b935061435b818560208601615240565b61436481615483565b840191505092915050565b600061437a82614fff565b6143848185615055565b9350614394818560208601615240565b80840191505092915050565b600081546143ad81615273565b6143b78186615044565b945060018216600081146143d257600181146143e457614417565b60ff1983168652602086019350614417565b6143ed85614fd4565b60005b8381101561440f578154818901526001820191506020810190506143f0565b808801955050505b50505092915050565b6000815461442d81615273565b6144378186615055565b94506001821660008114614452576001811461446357614496565b60ff19831686528186019350614496565b61446c85614fd4565b60005b8381101561448e5781548189015260018201915060208101905061446f565b838801955050505b50505092915050565b60006144ac600e83615044565b91506144b782615494565b602082019050919050565b60006144cf600b83615044565b91506144da826154bd565b602082019050919050565b60006144f2601883615044565b91506144fd826154e6565b602082019050919050565b6000614515602b83615044565b91506145208261550f565b604082019050919050565b6000614538603283615044565b91506145438261555e565b604082019050919050565b600061455b602683615044565b9150614566826155ad565b604082019050919050565b600061457e601c83615044565b9150614589826155fc565b602082019050919050565b60006145a1602683615044565b91506145ac82615625565b604082019050919050565b60006145c4602e83615044565b91506145cf82615674565b604082019050919050565b60006145e7602483615044565b91506145f2826156c3565b604082019050919050565b600061460a601983615044565b915061461582615712565b602082019050919050565b600061462d603a83615044565b91506146388261573b565b604082019050919050565b6000614650601d83615044565b915061465b8261578a565b602082019050919050565b6000614673602c83615044565b915061467e826157b3565b604082019050919050565b6000614696602b83615044565b91506146a182615802565b604082019050919050565b60006146b9602b83615044565b91506146c482615851565b604082019050919050565b60006146dc603883615044565b91506146e7826158a0565b604082019050919050565b60006146ff602a83615044565b915061470a826158ef565b604082019050919050565b6000614722602983615044565b915061472d8261593e565b604082019050919050565b6000614745600d83615044565b91506147508261598d565b602082019050919050565b6000614768600f83615044565b9150614773826159b6565b602082019050919050565b600061478b600a83615044565b9150614796826159df565b602082019050919050565b60006147ae602083615044565b91506147b982615a08565b602082019050919050565b60006147d1602c83615044565b91506147dc82615a31565b604082019050919050565b60006147f4602083615044565b91506147ff82615a80565b602082019050919050565b6000614817602983615044565b915061482282615aa9565b604082019050919050565b600061483a602f83615044565b915061484582615af8565b604082019050919050565b600061485d602183615044565b915061486882615b47565b604082019050919050565b6000614880601983615044565b915061488b82615b96565b602082019050919050565b60006148a3601983615044565b91506148ae82615bbf565b602082019050919050565b60006148c6601683615044565b91506148d182615be8565b602082019050919050565b60006148e9600083615039565b91506148f482615c11565b600082019050919050565b600061490c603183615044565b915061491782615c14565b604082019050919050565b600061492f602c83615044565b915061493a82615c63565b604082019050919050565b61494e816151f1565b82525050565b61495d816151f1565b82525050565b600061496f8285614420565b915061497b828461436f565b91508190509392505050565b6000614992826148dc565b9150819050919050565b60006020820190506149b16000830184614281565b92915050565b60006040820190506149cc6000830185614272565b6149d96020830184614954565b9392505050565b60006080820190506149f56000830187614281565b614a026020830186614281565b614a0f6040830185614954565b8181036060830152614a2181846142fd565b905095945050505050565b6000604082019050614a416000830185614281565b614a4e6020830184614954565b9392505050565b60006020820190508181036000830152614a6f8184614290565b905092915050565b6000602082019050614a8c60008301846142ee565b92915050565b60006020820190508181036000830152614aac8184614336565b905092915050565b60006020820190508181036000830152614ace81846143a0565b905092915050565b60006020820190508181036000830152614aef8161449f565b9050919050565b60006020820190508181036000830152614b0f816144c2565b9050919050565b60006020820190508181036000830152614b2f816144e5565b9050919050565b60006020820190508181036000830152614b4f81614508565b9050919050565b60006020820190508181036000830152614b6f8161452b565b9050919050565b60006020820190508181036000830152614b8f8161454e565b9050919050565b60006020820190508181036000830152614baf81614571565b9050919050565b60006020820190508181036000830152614bcf81614594565b9050919050565b60006020820190508181036000830152614bef816145b7565b9050919050565b60006020820190508181036000830152614c0f816145da565b9050919050565b60006020820190508181036000830152614c2f816145fd565b9050919050565b60006020820190508181036000830152614c4f81614620565b9050919050565b60006020820190508181036000830152614c6f81614643565b9050919050565b60006020820190508181036000830152614c8f81614666565b9050919050565b60006020820190508181036000830152614caf81614689565b9050919050565b60006020820190508181036000830152614ccf816146ac565b9050919050565b60006020820190508181036000830152614cef816146cf565b9050919050565b60006020820190508181036000830152614d0f816146f2565b9050919050565b60006020820190508181036000830152614d2f81614715565b9050919050565b60006020820190508181036000830152614d4f81614738565b9050919050565b60006020820190508181036000830152614d6f8161475b565b9050919050565b60006020820190508181036000830152614d8f8161477e565b9050919050565b60006020820190508181036000830152614daf816147a1565b9050919050565b60006020820190508181036000830152614dcf816147c4565b9050919050565b60006020820190508181036000830152614def816147e7565b9050919050565b60006020820190508181036000830152614e0f8161480a565b9050919050565b60006020820190508181036000830152614e2f8161482d565b9050919050565b60006020820190508181036000830152614e4f81614850565b9050919050565b60006020820190508181036000830152614e6f81614873565b9050919050565b60006020820190508181036000830152614e8f81614896565b9050919050565b60006020820190508181036000830152614eaf816148b9565b9050919050565b60006020820190508181036000830152614ecf816148ff565b9050919050565b60006020820190508181036000830152614eef81614922565b9050919050565b6000602082019050614f0b6000830184614954565b92915050565b6000614f1b614f2c565b9050614f2782826152a5565b919050565b6000604051905090565b600067ffffffffffffffff821115614f5157614f5061543b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f7d57614f7c61543b565b5b614f8682615483565b9050602081019050919050565b600067ffffffffffffffff821115614fae57614fad61543b565b5b614fb782615483565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061506b826151f1565b9150615076836151f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150ab576150aa615350565b5b828201905092915050565b60006150c1826151f1565b91506150cc836151f1565b9250826150dc576150db61537f565b5b828204905092915050565b60006150f2826151f1565b91506150fd836151f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561513657615135615350565b5b828202905092915050565b600061514c826151f1565b9150615157836151f1565b92508282101561516a57615169615350565b5b828203905092915050565b6000615180826151d1565b9050919050565b6000615192826151d1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006152068261520d565b9050919050565b60006152188261521f565b9050919050565b600061522a826151d1565b9050919050565b82818337600083830152505050565b60005b8381101561525e578082015181840152602081019050615243565b8381111561526d576000848401525b50505050565b6000600282049050600182168061528b57607f821691505b6020821081141561529f5761529e6153ae565b5b50919050565b6152ae82615483565b810181811067ffffffffffffffff821117156152cd576152cc61543b565b5b80604052505050565b60006152e1826151f1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561531457615313615350565b5b600182019050919050565b600061532a826151f1565b9150615335836151f1565b9250826153455761534461537f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f53616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f53706563696669656420737570706c79206973206c6f776572207468616e206360008201527f757272656e742062616c616e6365000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f53706563696669656420737570706c792069732067726561746572207468616e60008201527f206d617820737570706c79000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f7264657220746f6f2062696700000000000000000000000000000000000000600082015250565b7f446f6e2774206265206772656564790000000000000000000000000000000000600082015250565b7f496e76616c696420494400000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f57616c6c6574206973206e6f742077686974656c697374656400000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4c6963656e736520616c7265616479206c6f636b656400000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b615cbb81615175565b8114615cc657600080fd5b50565b615cd281615187565b8114615cdd57600080fd5b50565b615ce981615199565b8114615cf457600080fd5b50565b615d00816151a5565b8114615d0b57600080fd5b50565b615d17816151f1565b8114615d2257600080fd5b5056fea2646970667358221220b865a42c6e085c91ef77c9a872f4f14ee63ffcbd8d41efb0354f53b1cfb63c4964736f6c6343000807003368747470733a2f2f6d696e742e7468656c6f6c696b7265772e636f6d2f6170692f

Deployed Bytecode

0x6080604052600436106103035760003560e01c806370a0823111610190578063a22cb465116100dc578063ce7c2ac211610095578063d9b137b21161006f578063d9b137b214610bbc578063e33b7de314610bf9578063e985e9c514610c24578063f2fde38b14610c615761034a565b8063ce7c2ac214610b2b578063d07b63c614610b68578063d3344ed314610b915761034a565b8063a22cb46514610a33578063b09904b514610a5c578063b88d4fde14610a85578063bc7a916314610aae578063bf4702fc14610ad7578063c87b56dd14610aee5761034a565b806391b7f5ed116101495780639c3e72bd116101235780639c3e72bd14610996578063a035b1fe146109c1578063a0712d68146109ec578063a0dfd81514610a085761034a565b806391b7f5ed1461090557806395d89b411461092e5780639852595c146109595761034a565b806370a08231146107f5578063715018a614610832578063833de1d51461084957806383a076be146108745780638b83209b1461089d5780638da5cb5b146108da5761034a565b806331a53e9a1161024f578063438b63001161020857806355f804b3116101e257806355f804b31461073b5780635c975abb146107645780636352211e1461078f5780636f8b44b0146107cc5761034a565b8063438b630014610696578063445a3771146106d35780634f6ccce7146106fe5761034a565b806331a53e9a146105ac57806332cb6b0c146105d757806334918dfd146106025780633819fc0f146106195780633a98ef391461064257806342842e0e1461066d5761034a565b806319165587116102bc5780632a146986116102965780632a146986146104ee5780632e5c0fe7146105195780632f745c5914610544578063319a3fbd146105815761034a565b8063191655871461047157806323b872dd1461049a57806324eedd4c146104c35761034a565b806301ffc9a71461034f57806306fdde031461038c578063081812fc146103b7578063095ea7b3146103f4578063109695231461041d57806318160ddd146104465761034a565b3661034a577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610331610c8a565b34604051610340929190614a2c565b60405180910390a1005b600080fd5b34801561035b57600080fd5b5061037660048036038101906103719190614090565b610c92565b6040516103839190614a77565b60405180910390f35b34801561039857600080fd5b506103a1610d0c565b6040516103ae9190614a92565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190614133565b610d9e565b6040516103eb919061499c565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190614007565b610e23565b005b34801561042957600080fd5b50610444600480360381019061043f91906140ea565b610f3b565b005b34801561045257600080fd5b5061045b610fd1565b6040516104689190614ef6565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613e84565b610fde565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190613ef1565b611246565b005b3480156104cf57600080fd5b506104d86112a6565b6040516104e59190614ef6565b60405180910390f35b3480156104fa57600080fd5b506105036112ac565b6040516105109190614ef6565b60405180910390f35b34801561052557600080fd5b5061052e6112b2565b60405161053b9190614ef6565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190614007565b6112b8565b6040516105789190614ef6565b60405180910390f35b34801561058d57600080fd5b5061059661135d565b6040516105a39190614ef6565b60405180910390f35b3480156105b857600080fd5b506105c1611363565b6040516105ce9190614ef6565b60405180910390f35b3480156105e357600080fd5b506105ec611369565b6040516105f99190614ef6565b60405180910390f35b34801561060e57600080fd5b5061061761136f565b005b34801561062557600080fd5b50610640600480360381019061063b9190614047565b611417565b005b34801561064e57600080fd5b50610657611513565b6040516106649190614ef6565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f9190613ef1565b61151d565b005b3480156106a257600080fd5b506106bd60048036038101906106b89190613e57565b61153d565b6040516106ca9190614a55565b60405180910390f35b3480156106df57600080fd5b506106e86115eb565b6040516106f59190614ef6565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190614133565b6115f1565b6040516107329190614ef6565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d91906140ea565b611662565b005b34801561077057600080fd5b506107796116f8565b6040516107869190614a77565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190614133565b61170b565b6040516107c3919061499c565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee9190614133565b6117bd565b005b34801561080157600080fd5b5061081c60048036038101906108179190613e57565b61188c565b6040516108299190614ef6565b60405180910390f35b34801561083e57600080fd5b50610847611944565b005b34801561085557600080fd5b5061085e6119cc565b60405161086b9190614ef6565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190614160565b6119d2565b005b3480156108a957600080fd5b506108c460048036038101906108bf9190614133565b611ae1565b6040516108d1919061499c565b60405180910390f35b3480156108e657600080fd5b506108ef611b29565b6040516108fc919061499c565b60405180910390f35b34801561091157600080fd5b5061092c60048036038101906109279190614133565b611b53565b005b34801561093a57600080fd5b50610943611bd9565b6040516109509190614a92565b60405180910390f35b34801561096557600080fd5b50610980600480360381019061097b9190613e57565b611c6b565b60405161098d9190614ef6565b60405180910390f35b3480156109a257600080fd5b506109ab611cb4565b6040516109b89190614a92565b60405180910390f35b3480156109cd57600080fd5b506109d6611d42565b6040516109e39190614ef6565b60405180910390f35b610a066004803603810190610a019190614133565b611d48565b005b348015610a1457600080fd5b50610a1d6120e5565b604051610a2a9190614a92565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a559190613fc7565b612173565b005b348015610a6857600080fd5b50610a836004803603810190610a7e91906140ea565b6122f4565b005b348015610a9157600080fd5b50610aac6004803603810190610aa79190613f44565b6123e0565b005b348015610aba57600080fd5b50610ad56004803603810190610ad091906141f3565b612442565b005b348015610ae357600080fd5b50610aec612597565b005b348015610afa57600080fd5b50610b156004803603810190610b109190614133565b612668565b604051610b229190614a92565b60405180910390f35b348015610b3757600080fd5b50610b526004803603810190610b4d9190613e57565b612710565b604051610b5f9190614ef6565b60405180910390f35b348015610b7457600080fd5b50610b8f6004803603810190610b8a91906141a0565b612759565b005b348015610b9d57600080fd5b50610ba661280d565b604051610bb39190614ef6565b60405180910390f35b348015610bc857600080fd5b50610be36004803603810190610bde9190614133565b612813565b604051610bf09190614a92565b60405180910390f35b348015610c0557600080fd5b50610c0e6128f0565b604051610c1b9190614ef6565b60405180910390f35b348015610c3057600080fd5b50610c4b6004803603810190610c469190613eb1565b6128fa565b604051610c589190614a77565b60405180910390f35b348015610c6d57600080fd5b50610c886004803603810190610c839190613e57565b61298e565b005b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d055750610d0482612a86565b5b9050919050565b606060008054610d1b90615273565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4790615273565b8015610d945780601f10610d6957610100808354040283529160200191610d94565b820191906000526020600020905b815481529060010190602001808311610d7757829003601f168201915b5050505050905090565b6000610da982612b68565b610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90614db6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e2e8261170b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690614e36565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ebe610c8a565b73ffffffffffffffffffffffffffffffffffffffff161480610eed5750610eec81610ee7610c8a565b6128fa565b5b610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390614cd6565b60405180910390fd5b610f368383612bd4565b505050565b610f43610c8a565b73ffffffffffffffffffffffffffffffffffffffff16610f61611b29565b73ffffffffffffffffffffffffffffffffffffffff1614610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90614dd6565b60405180910390fd5b8060109080519060200190610fcd929190613bb8565b5050565b6000600880549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614bb6565b60405180910390fd5b6000600c54476110709190615060565b90506000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b54600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461110291906150e7565b61110c91906150b6565b6111169190615141565b9050600081141561115c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115390614c96565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111a79190615060565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c546111f89190615060565b600c819055506112088382612c8d565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516112399291906149b7565b60405180910390a1505050565b611257611251610c8a565b82612d81565b611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90614eb6565b60405180910390fd5b6112a1838383612e5f565b505050565b60185481565b601a5481565b601b5481565b60006112c38361188c565b8210611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90614b36565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601c5481565b60135481565b60125481565b611377610c8a565b73ffffffffffffffffffffffffffffffffffffffff16611395611b29565b73ffffffffffffffffffffffffffffffffffffffff16146113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290614dd6565b60405180910390fd5b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b61141f610c8a565b73ffffffffffffffffffffffffffffffffffffffff1661143d611b29565b73ffffffffffffffffffffffffffffffffffffffff1614611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90614dd6565b60405180910390fd5b60005b815181101561150f576001601f60008484815181106114b8576114b761540c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080611508906152d6565b9050611496565b5050565b6000600b54905090565b611538838383604051806020016040528060008152506123e0565b505050565b6060600061154a8361188c565b905060008167ffffffffffffffff8111156115685761156761543b565b5b6040519080825280602002602001820160405280156115965781602001602082028036833780820191505090505b50905060005b828110156115e0576115ae85826112b8565b8282815181106115c1576115c061540c565b5b60200260200101818152505080806115d8906152d6565b91505061159c565b508092505050919050565b60175481565b60006115fb610fd1565b821061163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163390614ed6565b60405180910390fd5b600882815481106116505761164f61540c565b5b90600052602060002001549050919050565b61166a610c8a565b73ffffffffffffffffffffffffffffffffffffffff16611688611b29565b73ffffffffffffffffffffffffffffffffffffffff16146116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590614dd6565b60405180910390fd5b80601d90805190602001906116f4929190613bb8565b5050565b601460009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab90614d16565b60405180910390fd5b80915050919050565b6117c5610c8a565b73ffffffffffffffffffffffffffffffffffffffff166117e3611b29565b73ffffffffffffffffffffffffffffffffffffffff1614611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090614dd6565b60405180910390fd5b611841610fd1565b8111611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990614bd6565b60405180910390fd5b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490614cf6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61194c610c8a565b73ffffffffffffffffffffffffffffffffffffffff1661196a611b29565b73ffffffffffffffffffffffffffffffffffffffff16146119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b790614dd6565b60405180910390fd5b6119ca60006130bb565b565b60165481565b6119da610c8a565b73ffffffffffffffffffffffffffffffffffffffff166119f8611b29565b73ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4590614dd6565b60405180910390fd5b6000611a58610fd1565b90506012548382611a699190615060565b1115611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa190614ad6565b60405180910390fd5b60005b83811015611adb57611aca838284611ac59190615060565b613181565b80611ad4906152d6565b9050611aad565b50505050565b6000600f8281548110611af757611af661540c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b5b610c8a565b73ffffffffffffffffffffffffffffffffffffffff16611b79611b29565b73ffffffffffffffffffffffffffffffffffffffff1614611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690614dd6565b60405180910390fd5b8060158190555050565b606060018054611be890615273565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1490615273565b8015611c615780601f10611c3657610100808354040283529160200191611c61565b820191906000526020600020905b815481529060010190602001808311611c4457829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60118054611cc190615273565b80601f0160208091040260200160405190810160405280929190818152602001828054611ced90615273565b8015611d3a5780601f10611d0f57610100808354040283529160200191611d3a565b820191906000526020600020905b815481529060010190602001808311611d1d57829003601f168201915b505050505081565b60155481565b601460009054906101000a900460ff1615611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90614af6565b60405180910390fd5b80601554611da691906150e7565b341015611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf90614e76565b60405180910390fd5b6000611df2610fd1565b9050601b544210611eef57601a54821115611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3990614d36565b60405180910390fd5b6012548282611e519190615060565b1115611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990614ad6565b60405180910390fd5b601c5482611e9f3361188c565b611ea99190615060565b1115611eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee190614d56565b60405180910390fd5b6120af565b601754421061206c57601654821115611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3490614d36565b60405180910390fd5b6018548282611f4c9190615060565b1115611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8490614ad6565b60405180910390fd5b6001601f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614e56565b60405180910390fd5b6019548261201c3361188c565b6120269190615060565b1115612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90614d56565b60405180910390fd5b6120ae565b60006120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490614b16565b60405180910390fd5b5b5b60005b828110156120e0576120cf3382846120ca9190615060565b613181565b806120d9906152d6565b90506120b2565b505050565b601080546120f290615273565b80601f016020809104026020016040519081016040528092919081815260200182805461211e90615273565b801561216b5780601f106121405761010080835404028352916020019161216b565b820191906000526020600020905b81548152906001019060200180831161214e57829003601f168201915b505050505081565b61217b610c8a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e090614c16565b60405180910390fd5b80600560006121f6610c8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122a3610c8a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122e89190614a77565b60405180910390a35050565b6122fc610c8a565b73ffffffffffffffffffffffffffffffffffffffff1661231a611b29565b73ffffffffffffffffffffffffffffffffffffffff1614612370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236790614dd6565b60405180910390fd5b60001515601e60009054906101000a900460ff161515146123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd90614e96565b60405180910390fd5b80601190805190602001906123dc929190613bb8565b5050565b6123f16123eb610c8a565b83612d81565b612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790614eb6565b60405180910390fd5b61243c8484848461319f565b50505050565b61244a610c8a565b73ffffffffffffffffffffffffffffffffffffffff16612468611b29565b73ffffffffffffffffffffffffffffffffffffffff16146124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b590614dd6565b60405180910390fd5b6124c6610fd1565b811015612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90614bd6565b60405180910390fd5b60125481111561254d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254490614cb6565b60405180910390fd5b836016541461255e57836016819055505b826017541461256f57826017819055505b816016541461258057816019819055505b806018541461259157806018819055505b50505050565b61259f610c8a565b73ffffffffffffffffffffffffffffffffffffffff166125bd611b29565b73ffffffffffffffffffffffffffffffffffffffff1614612613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260a90614dd6565b60405180910390fd5b6001601e60006101000a81548160ff0219169083151502179055507fd0aa4d8e7b0215933778f41575f8ad2175172a023ede476fc2724a38357dc674601160405161265e9190614ab4565b60405180910390a1565b606061267382612b68565b6126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a990614e16565b60405180910390fd5b6000601d80546126c190615273565b9050116126dd5760405180602001604052806000815250612709565b601d6126e8836131fb565b6040516020016126f9929190614963565b6040516020818303038152906040525b9050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612761610c8a565b73ffffffffffffffffffffffffffffffffffffffff1661277f611b29565b73ffffffffffffffffffffffffffffffffffffffff16146127d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cc90614dd6565b60405180910390fd5b82601a54146127e65782601a819055505b81601b54146127f75781601b819055505b80601c54146128085780601c819055505b505050565b60195481565b606061281d610fd1565b821061285e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285590614d76565b60405180910390fd5b6011805461286b90615273565b80601f016020809104026020016040519081016040528092919081815260200182805461289790615273565b80156128e45780601f106128b9576101008083540402835291602001916128e4565b820191906000526020600020905b8154815290600101906020018083116128c757829003601f168201915b50505050509050919050565b6000600c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612996610c8a565b73ffffffffffffffffffffffffffffffffffffffff166129b4611b29565b73ffffffffffffffffffffffffffffffffffffffff1614612a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0190614dd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7190614b76565b60405180910390fd5b612a83816130bb565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b5157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b615750612b608261335c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c478361170b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc790614c56565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612cf690614987565b60006040518083038185875af1925050503d8060008114612d33576040519150601f19603f3d011682016040523d82523d6000602084013e612d38565b606091505b5050905080612d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7390614c36565b60405180910390fd5b505050565b6000612d8c82612b68565b612dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc290614c76565b60405180910390fd5b6000612dd68361170b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e4557508373ffffffffffffffffffffffffffffffffffffffff16612e2d84610d9e565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e565750612e5581856128fa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e7f8261170b565b73ffffffffffffffffffffffffffffffffffffffff1614612ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ecc90614df6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3c90614bf6565b60405180910390fd5b612f508383836133c6565b612f5b600082612bd4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fab9190615141565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130029190615060565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61319b8282604051806020016040528060008152506134da565b5050565b6131aa848484612e5f565b6131b684848484613535565b6131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec90614b56565b60405180910390fd5b50505050565b60606000821415613243576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613357565b600082905060005b6000821461327557808061325e906152d6565b915050600a8261326e91906150b6565b915061324b565b60008167ffffffffffffffff8111156132915761329061543b565b5b6040519080825280601f01601f1916602001820160405280156132c35781602001600182028036833780820191505090505b5090505b60008514613350576001826132dc9190615141565b9150600a856132eb919061531f565b60306132f79190615060565b60f81b81838151811061330d5761330c61540c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561334991906150b6565b94506132c7565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6133d18383836136cc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134145761340f816136d1565b613453565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461345257613451838261371a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134965761349181613887565b6134d5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146134d4576134d38282613958565b5b5b505050565b6134e483836139d7565b6134f16000848484613535565b613530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352790614b56565b60405180910390fd5b505050565b60006135568473ffffffffffffffffffffffffffffffffffffffff16613ba5565b156136bf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261357f610c8a565b8786866040518563ffffffff1660e01b81526004016135a194939291906149e0565b602060405180830381600087803b1580156135bb57600080fd5b505af19250505080156135ec57506040513d601f19601f820116820180604052508101906135e991906140bd565b60015b61366f573d806000811461361c576040519150601f19603f3d011682016040523d82523d6000602084013e613621565b606091505b50600081511415613667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365e90614b56565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136c4565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016137278461188c565b6137319190615141565b9050600060076000848152602001908152602001600020549050818114613816576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061389b9190615141565b90506000600960008481526020019081526020016000205490506000600883815481106138cb576138ca61540c565b5b9060005260206000200154905080600883815481106138ed576138ec61540c565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061393c5761393b6153dd565b5b6001900381819060005260206000200160009055905550505050565b60006139638361188c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a3e90614d96565b60405180910390fd5b613a5081612b68565b15613a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8790614b96565b60405180910390fd5b613a9c600083836133c6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613aec9190615060565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613bc490615273565b90600052602060002090601f016020900481019282613be65760008555613c2d565b82601f10613bff57805160ff1916838001178555613c2d565b82800160010185558215613c2d579182015b82811115613c2c578251825591602001919060010190613c11565b5b509050613c3a9190613c3e565b5090565b5b80821115613c57576000816000905550600101613c3f565b5090565b6000613c6e613c6984614f36565b614f11565b90508083825260208201905082856020860282011115613c9157613c9061546f565b5b60005b85811015613cc15781613ca78882613d4f565b845260208401935060208301925050600181019050613c94565b5050509392505050565b6000613cde613cd984614f62565b614f11565b905082815260208101848484011115613cfa57613cf9615474565b5b613d05848285615231565b509392505050565b6000613d20613d1b84614f93565b614f11565b905082815260208101848484011115613d3c57613d3b615474565b5b613d47848285615231565b509392505050565b600081359050613d5e81615cb2565b92915050565b600081359050613d7381615cc9565b92915050565b600082601f830112613d8e57613d8d61546a565b5b8135613d9e848260208601613c5b565b91505092915050565b600081359050613db681615ce0565b92915050565b600081359050613dcb81615cf7565b92915050565b600081519050613de081615cf7565b92915050565b600082601f830112613dfb57613dfa61546a565b5b8135613e0b848260208601613ccb565b91505092915050565b600082601f830112613e2957613e2861546a565b5b8135613e39848260208601613d0d565b91505092915050565b600081359050613e5181615d0e565b92915050565b600060208284031215613e6d57613e6c61547e565b5b6000613e7b84828501613d4f565b91505092915050565b600060208284031215613e9a57613e9961547e565b5b6000613ea884828501613d64565b91505092915050565b60008060408385031215613ec857613ec761547e565b5b6000613ed685828601613d4f565b9250506020613ee785828601613d4f565b9150509250929050565b600080600060608486031215613f0a57613f0961547e565b5b6000613f1886828701613d4f565b9350506020613f2986828701613d4f565b9250506040613f3a86828701613e42565b9150509250925092565b60008060008060808587031215613f5e57613f5d61547e565b5b6000613f6c87828801613d4f565b9450506020613f7d87828801613d4f565b9350506040613f8e87828801613e42565b925050606085013567ffffffffffffffff811115613faf57613fae615479565b5b613fbb87828801613de6565b91505092959194509250565b60008060408385031215613fde57613fdd61547e565b5b6000613fec85828601613d4f565b9250506020613ffd85828601613da7565b9150509250929050565b6000806040838503121561401e5761401d61547e565b5b600061402c85828601613d4f565b925050602061403d85828601613e42565b9150509250929050565b60006020828403121561405d5761405c61547e565b5b600082013567ffffffffffffffff81111561407b5761407a615479565b5b61408784828501613d79565b91505092915050565b6000602082840312156140a6576140a561547e565b5b60006140b484828501613dbc565b91505092915050565b6000602082840312156140d3576140d261547e565b5b60006140e184828501613dd1565b91505092915050565b600060208284031215614100576140ff61547e565b5b600082013567ffffffffffffffff81111561411e5761411d615479565b5b61412a84828501613e14565b91505092915050565b6000602082840312156141495761414861547e565b5b600061415784828501613e42565b91505092915050565b600080604083850312156141775761417661547e565b5b600061418585828601613e42565b925050602061419685828601613d4f565b9150509250929050565b6000806000606084860312156141b9576141b861547e565b5b60006141c786828701613e42565b93505060206141d886828701613e42565b92505060406141e986828701613e42565b9150509250925092565b6000806000806080858703121561420d5761420c61547e565b5b600061421b87828801613e42565b945050602061422c87828801613e42565b935050604061423d87828801613e42565b925050606061424e87828801613e42565b91505092959194509250565b60006142668383614945565b60208301905092915050565b61427b816151fb565b82525050565b61428a81615175565b82525050565b600061429b82614fe9565b6142a58185615017565b93506142b083614fc4565b8060005b838110156142e15781516142c8888261425a565b97506142d38361500a565b9250506001810190506142b4565b5085935050505092915050565b6142f781615199565b82525050565b600061430882614ff4565b6143128185615028565b9350614322818560208601615240565b61432b81615483565b840191505092915050565b600061434182614fff565b61434b8185615044565b935061435b818560208601615240565b61436481615483565b840191505092915050565b600061437a82614fff565b6143848185615055565b9350614394818560208601615240565b80840191505092915050565b600081546143ad81615273565b6143b78186615044565b945060018216600081146143d257600181146143e457614417565b60ff1983168652602086019350614417565b6143ed85614fd4565b60005b8381101561440f578154818901526001820191506020810190506143f0565b808801955050505b50505092915050565b6000815461442d81615273565b6144378186615055565b94506001821660008114614452576001811461446357614496565b60ff19831686528186019350614496565b61446c85614fd4565b60005b8381101561448e5781548189015260018201915060208101905061446f565b838801955050505b50505092915050565b60006144ac600e83615044565b91506144b782615494565b602082019050919050565b60006144cf600b83615044565b91506144da826154bd565b602082019050919050565b60006144f2601883615044565b91506144fd826154e6565b602082019050919050565b6000614515602b83615044565b91506145208261550f565b604082019050919050565b6000614538603283615044565b91506145438261555e565b604082019050919050565b600061455b602683615044565b9150614566826155ad565b604082019050919050565b600061457e601c83615044565b9150614589826155fc565b602082019050919050565b60006145a1602683615044565b91506145ac82615625565b604082019050919050565b60006145c4602e83615044565b91506145cf82615674565b604082019050919050565b60006145e7602483615044565b91506145f2826156c3565b604082019050919050565b600061460a601983615044565b915061461582615712565b602082019050919050565b600061462d603a83615044565b91506146388261573b565b604082019050919050565b6000614650601d83615044565b915061465b8261578a565b602082019050919050565b6000614673602c83615044565b915061467e826157b3565b604082019050919050565b6000614696602b83615044565b91506146a182615802565b604082019050919050565b60006146b9602b83615044565b91506146c482615851565b604082019050919050565b60006146dc603883615044565b91506146e7826158a0565b604082019050919050565b60006146ff602a83615044565b915061470a826158ef565b604082019050919050565b6000614722602983615044565b915061472d8261593e565b604082019050919050565b6000614745600d83615044565b91506147508261598d565b602082019050919050565b6000614768600f83615044565b9150614773826159b6565b602082019050919050565b600061478b600a83615044565b9150614796826159df565b602082019050919050565b60006147ae602083615044565b91506147b982615a08565b602082019050919050565b60006147d1602c83615044565b91506147dc82615a31565b604082019050919050565b60006147f4602083615044565b91506147ff82615a80565b602082019050919050565b6000614817602983615044565b915061482282615aa9565b604082019050919050565b600061483a602f83615044565b915061484582615af8565b604082019050919050565b600061485d602183615044565b915061486882615b47565b604082019050919050565b6000614880601983615044565b915061488b82615b96565b602082019050919050565b60006148a3601983615044565b91506148ae82615bbf565b602082019050919050565b60006148c6601683615044565b91506148d182615be8565b602082019050919050565b60006148e9600083615039565b91506148f482615c11565b600082019050919050565b600061490c603183615044565b915061491782615c14565b604082019050919050565b600061492f602c83615044565b915061493a82615c63565b604082019050919050565b61494e816151f1565b82525050565b61495d816151f1565b82525050565b600061496f8285614420565b915061497b828461436f565b91508190509392505050565b6000614992826148dc565b9150819050919050565b60006020820190506149b16000830184614281565b92915050565b60006040820190506149cc6000830185614272565b6149d96020830184614954565b9392505050565b60006080820190506149f56000830187614281565b614a026020830186614281565b614a0f6040830185614954565b8181036060830152614a2181846142fd565b905095945050505050565b6000604082019050614a416000830185614281565b614a4e6020830184614954565b9392505050565b60006020820190508181036000830152614a6f8184614290565b905092915050565b6000602082019050614a8c60008301846142ee565b92915050565b60006020820190508181036000830152614aac8184614336565b905092915050565b60006020820190508181036000830152614ace81846143a0565b905092915050565b60006020820190508181036000830152614aef8161449f565b9050919050565b60006020820190508181036000830152614b0f816144c2565b9050919050565b60006020820190508181036000830152614b2f816144e5565b9050919050565b60006020820190508181036000830152614b4f81614508565b9050919050565b60006020820190508181036000830152614b6f8161452b565b9050919050565b60006020820190508181036000830152614b8f8161454e565b9050919050565b60006020820190508181036000830152614baf81614571565b9050919050565b60006020820190508181036000830152614bcf81614594565b9050919050565b60006020820190508181036000830152614bef816145b7565b9050919050565b60006020820190508181036000830152614c0f816145da565b9050919050565b60006020820190508181036000830152614c2f816145fd565b9050919050565b60006020820190508181036000830152614c4f81614620565b9050919050565b60006020820190508181036000830152614c6f81614643565b9050919050565b60006020820190508181036000830152614c8f81614666565b9050919050565b60006020820190508181036000830152614caf81614689565b9050919050565b60006020820190508181036000830152614ccf816146ac565b9050919050565b60006020820190508181036000830152614cef816146cf565b9050919050565b60006020820190508181036000830152614d0f816146f2565b9050919050565b60006020820190508181036000830152614d2f81614715565b9050919050565b60006020820190508181036000830152614d4f81614738565b9050919050565b60006020820190508181036000830152614d6f8161475b565b9050919050565b60006020820190508181036000830152614d8f8161477e565b9050919050565b60006020820190508181036000830152614daf816147a1565b9050919050565b60006020820190508181036000830152614dcf816147c4565b9050919050565b60006020820190508181036000830152614def816147e7565b9050919050565b60006020820190508181036000830152614e0f8161480a565b9050919050565b60006020820190508181036000830152614e2f8161482d565b9050919050565b60006020820190508181036000830152614e4f81614850565b9050919050565b60006020820190508181036000830152614e6f81614873565b9050919050565b60006020820190508181036000830152614e8f81614896565b9050919050565b60006020820190508181036000830152614eaf816148b9565b9050919050565b60006020820190508181036000830152614ecf816148ff565b9050919050565b60006020820190508181036000830152614eef81614922565b9050919050565b6000602082019050614f0b6000830184614954565b92915050565b6000614f1b614f2c565b9050614f2782826152a5565b919050565b6000604051905090565b600067ffffffffffffffff821115614f5157614f5061543b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f7d57614f7c61543b565b5b614f8682615483565b9050602081019050919050565b600067ffffffffffffffff821115614fae57614fad61543b565b5b614fb782615483565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061506b826151f1565b9150615076836151f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150ab576150aa615350565b5b828201905092915050565b60006150c1826151f1565b91506150cc836151f1565b9250826150dc576150db61537f565b5b828204905092915050565b60006150f2826151f1565b91506150fd836151f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561513657615135615350565b5b828202905092915050565b600061514c826151f1565b9150615157836151f1565b92508282101561516a57615169615350565b5b828203905092915050565b6000615180826151d1565b9050919050565b6000615192826151d1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006152068261520d565b9050919050565b60006152188261521f565b9050919050565b600061522a826151d1565b9050919050565b82818337600083830152505050565b60005b8381101561525e578082015181840152602081019050615243565b8381111561526d576000848401525b50505050565b6000600282049050600182168061528b57607f821691505b6020821081141561529f5761529e6153ae565b5b50919050565b6152ae82615483565b810181811067ffffffffffffffff821117156152cd576152cc61543b565b5b80604052505050565b60006152e1826151f1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561531457615313615350565b5b600182019050919050565b600061532a826151f1565b9150615335836151f1565b9250826153455761534461537f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f53616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f53706563696669656420737570706c79206973206c6f776572207468616e206360008201527f757272656e742062616c616e6365000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f53706563696669656420737570706c792069732067726561746572207468616e60008201527f206d617820737570706c79000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f7264657220746f6f2062696700000000000000000000000000000000000000600082015250565b7f446f6e2774206265206772656564790000000000000000000000000000000000600082015250565b7f496e76616c696420494400000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f57616c6c6574206973206e6f742077686974656c697374656400000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4c6963656e736520616c7265616479206c6f636b656400000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b615cbb81615175565b8114615cc657600080fd5b50565b615cd281615187565b8114615cdd57600080fd5b50565b615ce981615199565b8114615cf457600080fd5b50565b615d00816151a5565b8114615d0b57600080fd5b50565b615d17816151f1565b8114615d2257600080fd5b5056fea2646970667358221220b865a42c6e085c91ef77c9a872f4f14ee63ffcbd8d41efb0354f53b1cfb63c4964736f6c63430008070033

Deployed Bytecode Sourcemap

58221:5933:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55703:40;55719:12;:10;:12::i;:::-;55733:9;55703:40;;;;;;;:::i;:::-;;;;;;;;58221:5933;;;;;39817:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26977:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28670:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28193:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62359:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40620:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56909:613;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29729:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58736:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58826:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58868:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40201:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58939:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58482:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58437:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61689:77;;;;;;;;;;;;;:::i;:::-;;62657:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55834:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30176:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60816:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58665:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40810:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61906:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58527:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26584:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62016:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26227:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9684:94;;;;;;;;;;;;;:::i;:::-;;58623:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61179:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56609:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9033:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62263:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27146:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56409:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58395:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58571:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59613:1195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58354:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29050:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61506:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30432:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62848:638;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61774:124;;;;;;;;;;;;;:::i;:::-;;63852:299;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56205:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63494:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58779:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62491:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56019:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29448:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9933:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2006:98;2059:7;2086:10;2079:17;;2006:98;:::o;39817:300::-;39964:4;40021:35;40006:50;;;:11;:50;;;;:103;;;;40073:36;40097:11;40073:23;:36::i;:::-;40006:103;39986:123;;39817:300;;;:::o;26977:100::-;27031:13;27064:5;27057:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26977:100;:::o;28670:308::-;28791:7;28838:16;28846:7;28838;:16::i;:::-;28816:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;28946:15;:24;28962:7;28946:24;;;;;;;;;;;;;;;;;;;;;28939:31;;28670:308;;;:::o;28193:411::-;28274:13;28290:23;28305:7;28290:14;:23::i;:::-;28274:39;;28338:5;28332:11;;:2;:11;;;;28324:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28432:5;28416:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28441:37;28458:5;28465:12;:10;:12::i;:::-;28441:16;:37::i;:::-;28416:62;28394:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28575:21;28584:2;28588:7;28575:8;:21::i;:::-;28263:341;28193:411;;:::o;62359:124::-;9264:12;:10;:12::i;:::-;9253:23;;:7;:5;:7::i;:::-;:23;;;9245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62461:14:::1;62444;:31;;;;;;;;;;;;:::i;:::-;;62359:124:::0;:::o;40620:113::-;40681:7;40708:10;:17;;;;40701:24;;40620:113;:::o;56909:613::-;57004:1;56985:7;:16;56993:7;56985:16;;;;;;;;;;;;;;;;:20;56977:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;57061:21;57109:14;;57085:21;:38;;;;:::i;:::-;57061:62;;57134:15;57204:9;:18;57214:7;57204:18;;;;;;;;;;;;;;;;57189:12;;57169:7;:16;57177:7;57169:16;;;;;;;;;;;;;;;;57153:13;:32;;;;:::i;:::-;57152:49;;;;:::i;:::-;:70;;;;:::i;:::-;57134:88;;57254:1;57243:7;:12;;57235:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57358:7;57337:9;:18;57347:7;57337:18;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;57316:9;:18;57326:7;57316:18;;;;;;;;;;;;;;;:49;;;;57410:7;57393:14;;:24;;;;:::i;:::-;57376:14;:41;;;;57430:35;57448:7;57457;57430:17;:35::i;:::-;57481:33;57497:7;57506;57481:33;;;;;;;:::i;:::-;;;;;;;;56966:556;;56909:613;:::o;29729:376::-;29938:41;29957:12;:10;:12::i;:::-;29971:7;29938:18;:41::i;:::-;29916:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30069:28;30079:4;30085:2;30089:7;30069:9;:28::i;:::-;29729:376;;;:::o;58736:36::-;;;;:::o;58826:35::-;;;;:::o;58868:43::-;;;;:::o;40201:343::-;40343:7;40398:23;40415:5;40398:16;:23::i;:::-;40390:5;:31;40368:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40510:12;:19;40523:5;40510:19;;;;;;;;;;;;;;;:26;40530:5;40510:26;;;;;;;;;;;;40503:33;;40201:343;;;;:::o;58939:38::-;;;;:::o;58482:36::-;;;;:::o;58437:38::-;;;;:::o;61689:77::-;9264:12;:10;:12::i;:::-;9253:23;;:7;:5;:7::i;:::-;:23;;;9245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61752:6:::1;;;;;;;;;;;61751:7;61742:6;;:16;;;;;;;;;;;;;;;;;;61689:77::o:0;62657:183::-;9264:12;:10;:12::i;:::-;9253:23;;:7;:5;:7::i;:::-;:23;;;9245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62747:6:::1;62742:91;62759:7;:14;62755:1;:18;62742:91;;;62820:1;62795:8;:22;62805:7;62813:1;62805:10;;;;;;;;:::i;:::-;;;;;;;;62795:22;;;;;;;;;;;;;;;:26;;;;62775:3;;;;:::i;:::-;;;62742:91;;;;62657:183:::0;:::o;55834:91::-;55878:7;55905:12;;55898:19;;55834:91;:::o;30176:185::-;30314:39;30331:4;30337:2;30341:7;30314:39;;;;;;;;;;;;:16;:39::i;:::-;30176:185;;;:::o;60816:342::-;60875:16;60904:18;60925:17;60935:6;60925:9;:17::i;:::-;60904:38;;60955:25;60997:10;60983:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60955:53;;61023:9;61019:106;61038:10;61034:1;:14;61019:106;;;61083:30;61103:6;61111:1;61083:19;:30::i;:::-;61069:8;61078:1;61069:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;61050:3;;;;;:::i;:::-;;;;61019:106;;;;61142:8;61135:15;;;;60816:342;;;:::o;58665:43::-;;;;:::o;40810:320::-;40930:7;40985:30;:28;:30::i;:::-;40977:5;:38;40955:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;41105:10;41116:5;41105:17;;;;;;;;:::i;:::-;;;;;;;;;;41098:24;;40810:320;;;:::o;61906:102::-;9264:12;:10;:12::i;:::-;9253:23;;:7;:5;:7::i;:::-;:23;;;9245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61993:7:::1;61977:13;:23;;;;;;;;;;;;:::i;:::-;;61906:102:::0;:::o;58527:37::-;;;;;;;;;;;;;:::o;26584:326::-;26701:7;26726:13;26742:7;:16;26750:7;26742:16;;;;;;;;;;;;;;;;;;;;;26726:32;;26808:1;26791:19;;:5;:19;;;;26769:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26897:5;26890:12;;;26584:326;;;:::o;62016:192::-;9264:12;:10;:12::i;:::-;9253:23;;:7;:5;:7::i;:::-;:23;;;9245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62102:13:::1;:11;:13::i;:::-;62090:9;:25;62082:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;62191:9;62178:10;:22;;;;62016:192:::0;:::o;26227:295::-;26344:7;26408:1;26391:19;;:5;:19;;;;26369:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26498:9;:16;26508:5;26498:16;;;;;;;;;;;;;;;;26491:23;;26227:295;;;:::o;9684:94::-;9264:12;:10;:12::i;:::-;9253:23;;:7;:5;:7::i;:::-;:23;;;9245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9749:21:::1;9767:1;9749:9;:21::i;:::-;9684:94::o:0;58623:35::-;;;;:::o;61179:298::-;9264:12;:10;:12::i;:::-;9253:23;;:7;:5;:7::i;:::-;:23;;;9245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61258:15:::1;61276:13;:11;:13::i;:::-;61258:31;;61331:10;;61319:8;61309:7;:18;;;;:::i;:::-;:32;;61300:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;61378:9;61374:96;61393:8;61389:1;:12;61374:96;;;61423:35;61434:9;61455:1;61445:7;:11;;;;:::i;:::-;61423:9;:35::i;:::-;61403:3;;;;:::i;:::-;;;61374:96;;;;61247:230;61179:298:::0;;:::o;56609:100::-;56660:7;56687;56695:5;56687:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56680:21;;56609:100;;;:::o;9033:87::-;9079:7;9106:6;;;;;;;;;;;9099:13;;9033:87;:::o;62263:88::-;9264:12;:10;:12::i;:::-;9253:23;;:7;:5;:7::i;:::-;:23;;;9245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62335:8:::1;62327:5;:16;;;;62263:88:::0;:::o;27146:104::-;27202:13;27235:7;27228:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27146:104;:::o;56409:109::-;56465:7;56492:9;:18;56502:7;56492:18;;;;;;;;;;;;;;;;56485:25;;56409:109;;;:::o;58395:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58571:43::-;;;;:::o;59613:1195::-;59681:6;;;;;;;;;;;59680:7;59671:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;59745:8;59737:5;;:16;;;;:::i;:::-;59724:9;:29;;59715:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;59821:15;59839:13;:11;:13::i;:::-;59821:31;;59886:10;;59867:15;:29;59863:828;;59944:13;;59922:8;:35;;59913:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;60022:10;;60010:8;60000:7;:18;;;;:::i;:::-;:32;;59991:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;60117:15;;60105:8;60079:23;60090:10;60079:9;:23::i;:::-;:34;;;;:::i;:::-;:53;;60070:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;59863:828;;;60222:13;;60203:15;:32;60199:492;;60283:16;;60261:8;:38;;60252:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;60364:14;;60352:8;60342:7;:18;;;;:::i;:::-;:36;;60333:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;60450:1;60424:8;:22;60434:10;60424:22;;;;;;;;;;;;;;;;:27;60415:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;60555:18;;60543:8;60517:23;60528:10;60517:9;:23::i;:::-;:34;;;;:::i;:::-;:56;;60508:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;60199:492;;;60644:5;60635:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;60199:492;59863:828;60708:9;60703:98;60723:8;60719:1;:12;60703:98;;;60753:36;60764:10;60786:1;60776:7;:11;;;;:::i;:::-;60753:9;:36::i;:::-;60733:3;;;;:::i;:::-;;;60703:98;;;;59660:1148;59613:1195;:::o;58354:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29050:327::-;29197:12;:10;:12::i;:::-;29185:24;;:8;:24;;;;29177:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29297:8;29252:18;:32;29271:12;:10;:12::i;:::-;29252:32;;;;;;;;;;;;;;;:42;29285:8;29252:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29350:8;29321:48;;29336:12;:10;:12::i;:::-;29321:48;;;29360:8;29321:48;;;;;;:::i;:::-;;;;;;;;29050:327;;:::o;61506:175::-;9264:12;:10;:12::i;:::-;9253:23;;:7;:5;:7::i;:::-;:23;;;9245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61607:5:::1;61589:23;;:14;;;;;;;;;;;:23;;;61581:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61665:8;61650:12;:23;;;;;;;;;;;;:::i;:::-;;61506:175:::0;:::o;30432:365::-;30621:41;30640:12;:10;:12::i;:::-;30654:7;30621:18;:41::i;:::-;30599:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30750:39;30764:4;30770:2;30774:7;30783:5;30750:13;:39::i;:::-;30432:365;;;;:::o;62848:638::-;9264:12;:10;:12::i;:::-;9253:23;;:7;:5;:7::i;:::-;:23;;;9245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62981:13:::1;:11;:13::i;:::-;62971:6;:23;;62962:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;63077:10;;63067:6;:20;;63058:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;63177:8;63157:16;;:28;63153:75;;63220:8;63201:16;:27;;;;63153:75;63262:5;63245:13;;:22;63241:63;;63299:5;63283:13;:21;;;;63241:63;63341:10;63321:16;;:30;63317:81;;63388:10;63367:18;:31;;;;63317:81;63433:6;63415:14;;:24;63411:67;;63472:6;63455:14;:23;;;;63411:67;62848:638:::0;;;;:::o;61774:124::-;9264:12;:10;:12::i;:::-;9253:23;;:7;:5;:7::i;:::-;:23;;;9245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61843:4:::1;61825:14;;:22;;;;;;;;;;;;;;;;;;61863:27;61877:12;61863:27;;;;;;:::i;:::-;;;;;;;;61774:124::o:0;63852:299::-;63925:13;63959:16;63967:7;63959;:16::i;:::-;63951:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;64075:1;64051:13;64045:27;;;;;:::i;:::-;;;:31;:98;;;;;;;;;;;;;;;;;64103:13;64118:18;:7;:16;:18::i;:::-;64086:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64045:98;64038:105;;63852:299;;;:::o;56205:105::-;56259:7;56286;:16;56294:7;56286:16;;;;;;;;;;;;;;;;56279:23;;56205:105;;;:::o;63494:334::-;9264:12;:10;:12::i;:::-;9253:23;;:7;:5;:7::i;:::-;:23;;;9245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63612:8:::1;63595:13;;:25;63591:69;;63652:8;63636:13;:24;;;;63591:69;63691:5;63677:10;;:19;63673:57;;63725:5;63712:10;:18;;;;63673:57;63766:10;63747:15;;:29;63743:77;;63810:10;63792:15;:28;;;;63743:77;63494:334:::0;;;:::o;58779:38::-;;;;:::o;62491:158::-;62543:13;62583;:11;:13::i;:::-;62577:3;:19;62569:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;62629:12;62622:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62491:158;;;:::o;56019:95::-;56065:7;56092:14;;56085:21;;56019:95;:::o;29448:214::-;29590:4;29619:18;:25;29638:5;29619:25;;;;;;;;;;;;;;;:35;29645:8;29619:35;;;;;;;;;;;;;;;;;;;;;;;;;29612:42;;29448:214;;;;:::o;9933:229::-;9264:12;:10;:12::i;:::-;9253:23;;:7;:5;:7::i;:::-;:23;;;9245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10056:1:::1;10036:22;;:8;:22;;;;10014:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10135:19;10145:8;10135:9;:19::i;:::-;9933:229:::0;:::o;25808:355::-;25955:4;26012:25;25997:40;;;:11;:40;;;;:105;;;;26069:33;26054:48;;;:11;:48;;;;25997:105;:158;;;;26119:36;26143:11;26119:23;:36::i;:::-;25997:158;25977:178;;25808:355;;;:::o;32344:127::-;32409:4;32461:1;32433:30;;:7;:16;32441:7;32433:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32426:37;;32344:127;;;:::o;36467:174::-;36569:2;36542:15;:24;36558:7;36542:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36625:7;36621:2;36587:46;;36596:23;36611:7;36596:14;:23::i;:::-;36587:46;;;;;;;;;;;;36467:174;;:::o;16550:391::-;16679:6;16654:21;:31;;16632:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;16756:12;16774:9;:14;;16796:6;16774:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16755:52;;;16840:7;16818:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;16621:320;16550:391;;:::o;32638:452::-;32767:4;32811:16;32819:7;32811;:16::i;:::-;32789:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32910:13;32926:23;32941:7;32926:14;:23::i;:::-;32910:39;;32979:5;32968:16;;:7;:16;;;:64;;;;33025:7;33001:31;;:20;33013:7;33001:11;:20::i;:::-;:31;;;32968:64;:113;;;;33049:32;33066:5;33073:7;33049:16;:32::i;:::-;32968:113;32960:122;;;32638:452;;;;:::o;35734:615::-;35907:4;35880:31;;:23;35895:7;35880:14;:23::i;:::-;:31;;;35858:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;36013:1;35999:16;;:2;:16;;;;35991:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36069:39;36090:4;36096:2;36100:7;36069:20;:39::i;:::-;36173:29;36190:1;36194:7;36173:8;:29::i;:::-;36234:1;36215:9;:15;36225:4;36215:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36263:1;36246:9;:13;36256:2;36246:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36294:2;36275:7;:16;36283:7;36275:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36333:7;36329:2;36314:27;;36323:4;36314:27;;;;;;;;;;;;35734:615;;;:::o;10170:173::-;10226:16;10245:6;;;;;;;;;;;10226:25;;10271:8;10262:6;;:17;;;;;;;;;;;;;;;;;;10326:8;10295:40;;10316:8;10295:40;;;;;;;;;;;;10215:128;10170:173;:::o;33432:110::-;33508:26;33518:2;33522:7;33508:26;;;;;;;;;;;;:9;:26::i;:::-;33432:110;;:::o;31679:352::-;31836:28;31846:4;31852:2;31856:7;31836:9;:28::i;:::-;31897:48;31920:4;31926:2;31930:7;31939:5;31897:22;:48::i;:::-;31875:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;31679:352;;;;:::o;12675:723::-;12731:13;12961:1;12952:5;:10;12948:53;;;12979:10;;;;;;;;;;;;;;;;;;;;;12948:53;13011:12;13026:5;13011:20;;13042:14;13067:78;13082:1;13074:4;:9;13067:78;;13100:8;;;;;:::i;:::-;;;;13131:2;13123:10;;;;;:::i;:::-;;;13067:78;;;13155:19;13187:6;13177:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13155:39;;13205:154;13221:1;13212:5;:10;13205:154;;13249:1;13239:11;;;;;:::i;:::-;;;13316:2;13308:5;:10;;;;:::i;:::-;13295:2;:24;;;;:::i;:::-;13282:39;;13265:6;13272;13265:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13345:2;13336:11;;;;;:::i;:::-;;;13205:154;;;13383:6;13369:21;;;;;12675:723;;;;:::o;12154:207::-;12284:4;12328:25;12313:40;;;:11;:40;;;;12306:47;;12154:207;;;:::o;41743:589::-;41887:45;41914:4;41920:2;41924:7;41887:26;:45::i;:::-;41965:1;41949:18;;:4;:18;;;41945:187;;;41984:40;42016:7;41984:31;:40::i;:::-;41945:187;;;42054:2;42046:10;;:4;:10;;;42042:90;;42073:47;42106:4;42112:7;42073:32;:47::i;:::-;42042:90;41945:187;42160:1;42146:16;;:2;:16;;;42142:183;;;42179:45;42216:7;42179:36;:45::i;:::-;42142:183;;;42252:4;42246:10;;:2;:10;;;42242:83;;42273:40;42301:2;42305:7;42273:27;:40::i;:::-;42242:83;42142:183;41743:589;;;:::o;33769:321::-;33899:18;33905:2;33909:7;33899:5;:18::i;:::-;33950:54;33981:1;33985:2;33989:7;33998:5;33950:22;:54::i;:::-;33928:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33769:321;;;:::o;37206:984::-;37361:4;37382:15;:2;:13;;;:15::i;:::-;37378:805;;;37451:2;37435:36;;;37494:12;:10;:12::i;:::-;37529:4;37556:7;37586:5;37435:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37414:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37814:1;37797:6;:13;:18;37793:320;;;37840:108;;;;;;;;;;:::i;:::-;;;;;;;;37793:320;38063:6;38057:13;38048:6;38044:2;38040:15;38033:38;37414:714;37684:45;;;37674:55;;;:6;:55;;;;37667:62;;;;;37378:805;38167:4;38160:11;;37206:984;;;;;;;:::o;38762:126::-;;;;:::o;43055:164::-;43159:10;:17;;;;43132:15;:24;43148:7;43132:24;;;;;;;;;;;:44;;;;43187:10;43203:7;43187:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43055:164;:::o;43846:1002::-;44126:22;44176:1;44151:22;44168:4;44151:16;:22::i;:::-;:26;;;;:::i;:::-;44126:51;;44188:18;44209:17;:26;44227:7;44209:26;;;;;;;;;;;;44188:47;;44356:14;44342:10;:28;44338:328;;44387:19;44409:12;:18;44422:4;44409:18;;;;;;;;;;;;;;;:34;44428:14;44409:34;;;;;;;;;;;;44387:56;;44493:11;44460:12;:18;44473:4;44460:18;;;;;;;;;;;;;;;:30;44479:10;44460:30;;;;;;;;;;;:44;;;;44610:10;44577:17;:30;44595:11;44577:30;;;;;;;;;;;:43;;;;44372:294;44338:328;44762:17;:26;44780:7;44762:26;;;;;;;;;;;44755:33;;;44806:12;:18;44819:4;44806:18;;;;;;;;;;;;;;;:34;44825:14;44806:34;;;;;;;;;;;44799:41;;;43941:907;;43846:1002;;:::o;45143:1079::-;45396:22;45441:1;45421:10;:17;;;;:21;;;;:::i;:::-;45396:46;;45453:18;45474:15;:24;45490:7;45474:24;;;;;;;;;;;;45453:45;;45825:19;45847:10;45858:14;45847:26;;;;;;;;:::i;:::-;;;;;;;;;;45825:48;;45911:11;45886:10;45897;45886:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46022:10;45991:15;:28;46007:11;45991:28;;;;;;;;;;;:41;;;;46163:15;:24;46179:7;46163:24;;;;;;;;;;;46156:31;;;46198:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45214:1008;;;45143:1079;:::o;42633:221::-;42718:14;42735:20;42752:2;42735:16;:20::i;:::-;42718:37;;42793:7;42766:12;:16;42779:2;42766:16;;;;;;;;;;;;;;;:24;42783:6;42766:24;;;;;;;;;;;:34;;;;42840:6;42811:17;:26;42829:7;42811:26;;;;;;;;;;;:35;;;;42707:147;42633:221;;:::o;34426:382::-;34520:1;34506:16;;:2;:16;;;;34498:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34579:16;34587:7;34579;:16::i;:::-;34578:17;34570:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34641:45;34670:1;34674:2;34678:7;34641:20;:45::i;:::-;34716:1;34699:9;:13;34709:2;34699:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34747:2;34728:7;:16;34736:7;34728:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34792:7;34788:2;34767:33;;34784:1;34767:33;;;;;;;;;;;;34426:382;;:::o;15228:387::-;15288:4;15496:12;15563:7;15551:20;15543:28;;15606:1;15599:4;:8;15592:15;;;15228:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1731:155::-;1785:5;1823:6;1810:20;1801:29;;1839:41;1874:5;1839:41;:::i;:::-;1731:155;;;;:::o;1909:370::-;1980:5;2029:3;2022:4;2014:6;2010:17;2006:27;1996:122;;2037:79;;:::i;:::-;1996:122;2154:6;2141:20;2179:94;2269:3;2261:6;2254:4;2246:6;2242:17;2179:94;:::i;:::-;2170:103;;1986:293;1909:370;;;;:::o;2285:133::-;2328:5;2366:6;2353:20;2344:29;;2382:30;2406:5;2382:30;:::i;:::-;2285:133;;;;:::o;2424:137::-;2469:5;2507:6;2494:20;2485:29;;2523:32;2549:5;2523:32;:::i;:::-;2424:137;;;;:::o;2567:141::-;2623:5;2654:6;2648:13;2639:22;;2670:32;2696:5;2670:32;:::i;:::-;2567:141;;;;:::o;2727:338::-;2782:5;2831:3;2824:4;2816:6;2812:17;2808:27;2798:122;;2839:79;;:::i;:::-;2798:122;2956:6;2943:20;2981:78;3055:3;3047:6;3040:4;3032:6;3028:17;2981:78;:::i;:::-;2972:87;;2788:277;2727:338;;;;:::o;3085:340::-;3141:5;3190:3;3183:4;3175:6;3171:17;3167:27;3157:122;;3198:79;;:::i;:::-;3157:122;3315:6;3302:20;3340:79;3415:3;3407:6;3400:4;3392:6;3388:17;3340:79;:::i;:::-;3331:88;;3147:278;3085:340;;;;:::o;3431:139::-;3477:5;3515:6;3502:20;3493:29;;3531:33;3558:5;3531:33;:::i;:::-;3431:139;;;;:::o;3576:329::-;3635:6;3684:2;3672:9;3663:7;3659:23;3655:32;3652:119;;;3690:79;;:::i;:::-;3652:119;3810:1;3835:53;3880:7;3871:6;3860:9;3856:22;3835:53;:::i;:::-;3825:63;;3781:117;3576:329;;;;:::o;3911:345::-;3978:6;4027:2;4015:9;4006:7;4002:23;3998:32;3995:119;;;4033:79;;:::i;:::-;3995:119;4153:1;4178:61;4231:7;4222:6;4211:9;4207:22;4178:61;:::i;:::-;4168:71;;4124:125;3911:345;;;;:::o;4262:474::-;4330:6;4338;4387:2;4375:9;4366:7;4362:23;4358:32;4355:119;;;4393:79;;:::i;:::-;4355:119;4513:1;4538:53;4583:7;4574:6;4563:9;4559:22;4538:53;:::i;:::-;4528:63;;4484:117;4640:2;4666:53;4711:7;4702:6;4691:9;4687:22;4666:53;:::i;:::-;4656:63;;4611:118;4262:474;;;;;:::o;4742:619::-;4819:6;4827;4835;4884:2;4872:9;4863:7;4859:23;4855:32;4852:119;;;4890:79;;:::i;:::-;4852:119;5010:1;5035:53;5080:7;5071:6;5060:9;5056:22;5035:53;:::i;:::-;5025:63;;4981:117;5137:2;5163:53;5208:7;5199:6;5188:9;5184:22;5163:53;:::i;:::-;5153:63;;5108:118;5265:2;5291:53;5336:7;5327:6;5316:9;5312:22;5291:53;:::i;:::-;5281:63;;5236:118;4742:619;;;;;:::o;5367:943::-;5462:6;5470;5478;5486;5535:3;5523:9;5514:7;5510:23;5506:33;5503:120;;;5542:79;;:::i;:::-;5503:120;5662:1;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5633:117;5789:2;5815:53;5860:7;5851:6;5840:9;5836:22;5815:53;:::i;:::-;5805:63;;5760:118;5917:2;5943:53;5988:7;5979:6;5968:9;5964:22;5943:53;:::i;:::-;5933:63;;5888:118;6073:2;6062:9;6058:18;6045:32;6104:18;6096:6;6093:30;6090:117;;;6126:79;;:::i;:::-;6090:117;6231:62;6285:7;6276:6;6265:9;6261:22;6231:62;:::i;:::-;6221:72;;6016:287;5367:943;;;;;;;:::o;6316:468::-;6381:6;6389;6438:2;6426:9;6417:7;6413:23;6409:32;6406:119;;;6444:79;;:::i;:::-;6406:119;6564:1;6589:53;6634:7;6625:6;6614:9;6610:22;6589:53;:::i;:::-;6579:63;;6535:117;6691:2;6717:50;6759:7;6750:6;6739:9;6735:22;6717:50;:::i;:::-;6707:60;;6662:115;6316:468;;;;;:::o;6790:474::-;6858:6;6866;6915:2;6903:9;6894:7;6890:23;6886:32;6883:119;;;6921:79;;:::i;:::-;6883:119;7041:1;7066:53;7111:7;7102:6;7091:9;7087:22;7066:53;:::i;:::-;7056:63;;7012:117;7168:2;7194:53;7239:7;7230:6;7219:9;7215:22;7194:53;:::i;:::-;7184:63;;7139:118;6790:474;;;;;:::o;7270:539::-;7354:6;7403:2;7391:9;7382:7;7378:23;7374:32;7371:119;;;7409:79;;:::i;:::-;7371:119;7557:1;7546:9;7542:17;7529:31;7587:18;7579:6;7576:30;7573:117;;;7609:79;;:::i;:::-;7573:117;7714:78;7784:7;7775:6;7764:9;7760:22;7714:78;:::i;:::-;7704:88;;7500:302;7270:539;;;;:::o;7815:327::-;7873:6;7922:2;7910:9;7901:7;7897:23;7893:32;7890:119;;;7928:79;;:::i;:::-;7890:119;8048:1;8073:52;8117:7;8108:6;8097:9;8093:22;8073:52;:::i;:::-;8063:62;;8019:116;7815:327;;;;:::o;8148:349::-;8217:6;8266:2;8254:9;8245:7;8241:23;8237:32;8234:119;;;8272:79;;:::i;:::-;8234:119;8392:1;8417:63;8472:7;8463:6;8452:9;8448:22;8417:63;:::i;:::-;8407:73;;8363:127;8148:349;;;;:::o;8503:509::-;8572:6;8621:2;8609:9;8600:7;8596:23;8592:32;8589:119;;;8627:79;;:::i;:::-;8589:119;8775:1;8764:9;8760:17;8747:31;8805:18;8797:6;8794:30;8791:117;;;8827:79;;:::i;:::-;8791:117;8932:63;8987:7;8978:6;8967:9;8963:22;8932:63;:::i;:::-;8922:73;;8718:287;8503:509;;;;:::o;9018:329::-;9077:6;9126:2;9114:9;9105:7;9101:23;9097:32;9094:119;;;9132:79;;:::i;:::-;9094:119;9252:1;9277:53;9322:7;9313:6;9302:9;9298:22;9277:53;:::i;:::-;9267:63;;9223:117;9018:329;;;;:::o;9353:474::-;9421:6;9429;9478:2;9466:9;9457:7;9453:23;9449:32;9446:119;;;9484:79;;:::i;:::-;9446:119;9604:1;9629:53;9674:7;9665:6;9654:9;9650:22;9629:53;:::i;:::-;9619:63;;9575:117;9731:2;9757:53;9802:7;9793:6;9782:9;9778:22;9757:53;:::i;:::-;9747:63;;9702:118;9353:474;;;;;:::o;9833:619::-;9910:6;9918;9926;9975:2;9963:9;9954:7;9950:23;9946:32;9943:119;;;9981:79;;:::i;:::-;9943:119;10101:1;10126:53;10171:7;10162:6;10151:9;10147:22;10126:53;:::i;:::-;10116:63;;10072:117;10228:2;10254:53;10299:7;10290:6;10279:9;10275:22;10254:53;:::i;:::-;10244:63;;10199:118;10356:2;10382:53;10427:7;10418:6;10407:9;10403:22;10382:53;:::i;:::-;10372:63;;10327:118;9833:619;;;;;:::o;10458:765::-;10544:6;10552;10560;10568;10617:3;10605:9;10596:7;10592:23;10588:33;10585:120;;;10624:79;;:::i;:::-;10585:120;10744:1;10769:53;10814:7;10805:6;10794:9;10790:22;10769:53;:::i;:::-;10759:63;;10715:117;10871:2;10897:53;10942:7;10933:6;10922:9;10918:22;10897:53;:::i;:::-;10887:63;;10842:118;10999:2;11025:53;11070:7;11061:6;11050:9;11046:22;11025:53;:::i;:::-;11015:63;;10970:118;11127:2;11153:53;11198:7;11189:6;11178:9;11174:22;11153:53;:::i;:::-;11143:63;;11098:118;10458:765;;;;;;;:::o;11229:179::-;11298:10;11319:46;11361:3;11353:6;11319:46;:::i;:::-;11397:4;11392:3;11388:14;11374:28;;11229:179;;;;:::o;11414:147::-;11509:45;11548:5;11509:45;:::i;:::-;11504:3;11497:58;11414:147;;:::o;11567:118::-;11654:24;11672:5;11654:24;:::i;:::-;11649:3;11642:37;11567:118;;:::o;11721:732::-;11840:3;11869:54;11917:5;11869:54;:::i;:::-;11939:86;12018:6;12013:3;11939:86;:::i;:::-;11932:93;;12049:56;12099:5;12049:56;:::i;:::-;12128:7;12159:1;12144:284;12169:6;12166:1;12163:13;12144:284;;;12245:6;12239:13;12272:63;12331:3;12316:13;12272:63;:::i;:::-;12265:70;;12358:60;12411:6;12358:60;:::i;:::-;12348:70;;12204:224;12191:1;12188;12184:9;12179:14;;12144:284;;;12148:14;12444:3;12437:10;;11845:608;;;11721:732;;;;:::o;12459:109::-;12540:21;12555:5;12540:21;:::i;:::-;12535:3;12528:34;12459:109;;:::o;12574:360::-;12660:3;12688:38;12720:5;12688:38;:::i;:::-;12742:70;12805:6;12800:3;12742:70;:::i;:::-;12735:77;;12821:52;12866:6;12861:3;12854:4;12847:5;12843:16;12821:52;:::i;:::-;12898:29;12920:6;12898:29;:::i;:::-;12893:3;12889:39;12882:46;;12664:270;12574:360;;;;:::o;12940:364::-;13028:3;13056:39;13089:5;13056:39;:::i;:::-;13111:71;13175:6;13170:3;13111:71;:::i;:::-;13104:78;;13191:52;13236:6;13231:3;13224:4;13217:5;13213:16;13191:52;:::i;:::-;13268:29;13290:6;13268:29;:::i;:::-;13263:3;13259:39;13252:46;;13032:272;12940:364;;;;:::o;13310:377::-;13416:3;13444:39;13477:5;13444:39;:::i;:::-;13499:89;13581:6;13576:3;13499:89;:::i;:::-;13492:96;;13597:52;13642:6;13637:3;13630:4;13623:5;13619:16;13597:52;:::i;:::-;13674:6;13669:3;13665:16;13658:23;;13420:267;13310:377;;;;:::o;13717:802::-;13802:3;13839:5;13833:12;13868:36;13894:9;13868:36;:::i;:::-;13920:71;13984:6;13979:3;13920:71;:::i;:::-;13913:78;;14022:1;14011:9;14007:17;14038:1;14033:135;;;;14182:1;14177:336;;;;14000:513;;14033:135;14117:4;14113:9;14102;14098:25;14093:3;14086:38;14153:4;14148:3;14144:14;14137:21;;14033:135;;14177:336;14244:38;14276:5;14244:38;:::i;:::-;14304:1;14318:154;14332:6;14329:1;14326:13;14318:154;;;14406:7;14400:14;14396:1;14391:3;14387:11;14380:35;14456:1;14447:7;14443:15;14432:26;;14354:4;14351:1;14347:12;14342:17;;14318:154;;;14501:1;14496:3;14492:11;14485:18;;14184:329;;14000:513;;13806:713;;13717:802;;;;:::o;14549:845::-;14652:3;14689:5;14683:12;14718:36;14744:9;14718:36;:::i;:::-;14770:89;14852:6;14847:3;14770:89;:::i;:::-;14763:96;;14890:1;14879:9;14875:17;14906:1;14901:137;;;;15052:1;15047:341;;;;14868:520;;14901:137;14985:4;14981:9;14970;14966:25;14961:3;14954:38;15021:6;15016:3;15012:16;15005:23;;14901:137;;15047:341;15114:38;15146:5;15114:38;:::i;:::-;15174:1;15188:154;15202:6;15199:1;15196:13;15188:154;;;15276:7;15270:14;15266:1;15261:3;15257:11;15250:35;15326:1;15317:7;15313:15;15302:26;;15224:4;15221:1;15217:12;15212:17;;15188:154;;;15371:6;15366:3;15362:16;15355:23;;15054:334;;14868:520;;14656:738;;14549:845;;;;:::o;15400:366::-;15542:3;15563:67;15627:2;15622:3;15563:67;:::i;:::-;15556:74;;15639:93;15728:3;15639:93;:::i;:::-;15757:2;15752:3;15748:12;15741:19;;15400:366;;;:::o;15772:::-;15914:3;15935:67;15999:2;15994:3;15935:67;:::i;:::-;15928:74;;16011:93;16100:3;16011:93;:::i;:::-;16129:2;16124:3;16120:12;16113:19;;15772:366;;;:::o;16144:::-;16286:3;16307:67;16371:2;16366:3;16307:67;:::i;:::-;16300:74;;16383:93;16472:3;16383:93;:::i;:::-;16501:2;16496:3;16492:12;16485:19;;16144:366;;;:::o;16516:::-;16658:3;16679:67;16743:2;16738:3;16679:67;:::i;:::-;16672:74;;16755:93;16844:3;16755:93;:::i;:::-;16873:2;16868:3;16864:12;16857:19;;16516:366;;;:::o;16888:::-;17030:3;17051:67;17115:2;17110:3;17051:67;:::i;:::-;17044:74;;17127:93;17216:3;17127:93;:::i;:::-;17245:2;17240:3;17236:12;17229:19;;16888:366;;;:::o;17260:::-;17402:3;17423:67;17487:2;17482:3;17423:67;:::i;:::-;17416:74;;17499:93;17588:3;17499:93;:::i;:::-;17617:2;17612:3;17608:12;17601:19;;17260:366;;;:::o;17632:::-;17774:3;17795:67;17859:2;17854:3;17795:67;:::i;:::-;17788:74;;17871:93;17960:3;17871:93;:::i;:::-;17989:2;17984:3;17980:12;17973:19;;17632:366;;;:::o;18004:::-;18146:3;18167:67;18231:2;18226:3;18167:67;:::i;:::-;18160:74;;18243:93;18332:3;18243:93;:::i;:::-;18361:2;18356:3;18352:12;18345:19;;18004:366;;;:::o;18376:::-;18518:3;18539:67;18603:2;18598:3;18539:67;:::i;:::-;18532:74;;18615:93;18704:3;18615:93;:::i;:::-;18733:2;18728:3;18724:12;18717:19;;18376:366;;;:::o;18748:::-;18890:3;18911:67;18975:2;18970:3;18911:67;:::i;:::-;18904:74;;18987:93;19076:3;18987:93;:::i;:::-;19105:2;19100:3;19096:12;19089:19;;18748:366;;;:::o;19120:::-;19262:3;19283:67;19347:2;19342:3;19283:67;:::i;:::-;19276:74;;19359:93;19448:3;19359:93;:::i;:::-;19477:2;19472:3;19468:12;19461:19;;19120:366;;;:::o;19492:::-;19634:3;19655:67;19719:2;19714:3;19655:67;:::i;:::-;19648:74;;19731:93;19820:3;19731:93;:::i;:::-;19849:2;19844:3;19840:12;19833:19;;19492:366;;;:::o;19864:::-;20006:3;20027:67;20091:2;20086:3;20027:67;:::i;:::-;20020:74;;20103:93;20192:3;20103:93;:::i;:::-;20221:2;20216:3;20212:12;20205:19;;19864:366;;;:::o;20236:::-;20378:3;20399:67;20463:2;20458:3;20399:67;:::i;:::-;20392:74;;20475:93;20564:3;20475:93;:::i;:::-;20593:2;20588:3;20584:12;20577:19;;20236:366;;;:::o;20608:::-;20750:3;20771:67;20835:2;20830:3;20771:67;:::i;:::-;20764:74;;20847:93;20936:3;20847:93;:::i;:::-;20965:2;20960:3;20956:12;20949:19;;20608:366;;;:::o;20980:::-;21122:3;21143:67;21207:2;21202:3;21143:67;:::i;:::-;21136:74;;21219:93;21308:3;21219:93;:::i;:::-;21337:2;21332:3;21328:12;21321:19;;20980:366;;;:::o;21352:::-;21494:3;21515:67;21579:2;21574:3;21515:67;:::i;:::-;21508:74;;21591:93;21680:3;21591:93;:::i;:::-;21709:2;21704:3;21700:12;21693:19;;21352:366;;;:::o;21724:::-;21866:3;21887:67;21951:2;21946:3;21887:67;:::i;:::-;21880:74;;21963:93;22052:3;21963:93;:::i;:::-;22081:2;22076:3;22072:12;22065:19;;21724:366;;;:::o;22096:::-;22238:3;22259:67;22323:2;22318:3;22259:67;:::i;:::-;22252:74;;22335:93;22424:3;22335:93;:::i;:::-;22453:2;22448:3;22444:12;22437:19;;22096:366;;;:::o;22468:::-;22610:3;22631:67;22695:2;22690:3;22631:67;:::i;:::-;22624:74;;22707:93;22796:3;22707:93;:::i;:::-;22825:2;22820:3;22816:12;22809:19;;22468:366;;;:::o;22840:::-;22982:3;23003:67;23067:2;23062:3;23003:67;:::i;:::-;22996:74;;23079:93;23168:3;23079:93;:::i;:::-;23197:2;23192:3;23188:12;23181:19;;22840:366;;;:::o;23212:::-;23354:3;23375:67;23439:2;23434:3;23375:67;:::i;:::-;23368:74;;23451:93;23540:3;23451:93;:::i;:::-;23569:2;23564:3;23560:12;23553:19;;23212:366;;;:::o;23584:::-;23726:3;23747:67;23811:2;23806:3;23747:67;:::i;:::-;23740:74;;23823:93;23912:3;23823:93;:::i;:::-;23941:2;23936:3;23932:12;23925:19;;23584:366;;;:::o;23956:::-;24098:3;24119:67;24183:2;24178:3;24119:67;:::i;:::-;24112:74;;24195:93;24284:3;24195:93;:::i;:::-;24313:2;24308:3;24304:12;24297:19;;23956:366;;;:::o;24328:::-;24470:3;24491:67;24555:2;24550:3;24491:67;:::i;:::-;24484:74;;24567:93;24656:3;24567:93;:::i;:::-;24685:2;24680:3;24676:12;24669:19;;24328:366;;;:::o;24700:::-;24842:3;24863:67;24927:2;24922:3;24863:67;:::i;:::-;24856:74;;24939:93;25028:3;24939:93;:::i;:::-;25057:2;25052:3;25048:12;25041:19;;24700:366;;;:::o;25072:::-;25214:3;25235:67;25299:2;25294:3;25235:67;:::i;:::-;25228:74;;25311:93;25400:3;25311:93;:::i;:::-;25429:2;25424:3;25420:12;25413:19;;25072:366;;;:::o;25444:::-;25586:3;25607:67;25671:2;25666:3;25607:67;:::i;:::-;25600:74;;25683:93;25772:3;25683:93;:::i;:::-;25801:2;25796:3;25792:12;25785:19;;25444:366;;;:::o;25816:::-;25958:3;25979:67;26043:2;26038:3;25979:67;:::i;:::-;25972:74;;26055:93;26144:3;26055:93;:::i;:::-;26173:2;26168:3;26164:12;26157:19;;25816:366;;;:::o;26188:::-;26330:3;26351:67;26415:2;26410:3;26351:67;:::i;:::-;26344:74;;26427:93;26516:3;26427:93;:::i;:::-;26545:2;26540:3;26536:12;26529:19;;26188:366;;;:::o;26560:::-;26702:3;26723:67;26787:2;26782:3;26723:67;:::i;:::-;26716:74;;26799:93;26888:3;26799:93;:::i;:::-;26917:2;26912:3;26908:12;26901:19;;26560:366;;;:::o;26932:398::-;27091:3;27112:83;27193:1;27188:3;27112:83;:::i;:::-;27105:90;;27204:93;27293:3;27204:93;:::i;:::-;27322:1;27317:3;27313:11;27306:18;;26932:398;;;:::o;27336:366::-;27478:3;27499:67;27563:2;27558:3;27499:67;:::i;:::-;27492:74;;27575:93;27664:3;27575:93;:::i;:::-;27693:2;27688:3;27684:12;27677:19;;27336:366;;;:::o;27708:::-;27850:3;27871:67;27935:2;27930:3;27871:67;:::i;:::-;27864:74;;27947:93;28036:3;27947:93;:::i;:::-;28065:2;28060:3;28056:12;28049:19;;27708:366;;;:::o;28080:108::-;28157:24;28175:5;28157:24;:::i;:::-;28152:3;28145:37;28080:108;;:::o;28194:118::-;28281:24;28299:5;28281:24;:::i;:::-;28276:3;28269:37;28194:118;;:::o;28318:429::-;28495:3;28517:92;28605:3;28596:6;28517:92;:::i;:::-;28510:99;;28626:95;28717:3;28708:6;28626:95;:::i;:::-;28619:102;;28738:3;28731:10;;28318:429;;;;;:::o;28753:379::-;28937:3;28959:147;29102:3;28959:147;:::i;:::-;28952:154;;29123:3;29116:10;;28753:379;;;:::o;29138:222::-;29231:4;29269:2;29258:9;29254:18;29246:26;;29282:71;29350:1;29339:9;29335:17;29326:6;29282:71;:::i;:::-;29138:222;;;;:::o;29366:348::-;29495:4;29533:2;29522:9;29518:18;29510:26;;29546:79;29622:1;29611:9;29607:17;29598:6;29546:79;:::i;:::-;29635:72;29703:2;29692:9;29688:18;29679:6;29635:72;:::i;:::-;29366:348;;;;;:::o;29720:640::-;29915:4;29953:3;29942:9;29938:19;29930:27;;29967:71;30035:1;30024:9;30020:17;30011:6;29967:71;:::i;:::-;30048:72;30116:2;30105:9;30101:18;30092:6;30048:72;:::i;:::-;30130;30198:2;30187:9;30183:18;30174:6;30130:72;:::i;:::-;30249:9;30243:4;30239:20;30234:2;30223:9;30219:18;30212:48;30277:76;30348:4;30339:6;30277:76;:::i;:::-;30269:84;;29720:640;;;;;;;:::o;30366:332::-;30487:4;30525:2;30514:9;30510:18;30502:26;;30538:71;30606:1;30595:9;30591:17;30582:6;30538:71;:::i;:::-;30619:72;30687:2;30676:9;30672:18;30663:6;30619:72;:::i;:::-;30366:332;;;;;:::o;30704:373::-;30847:4;30885:2;30874:9;30870:18;30862:26;;30934:9;30928:4;30924:20;30920:1;30909:9;30905:17;30898:47;30962:108;31065:4;31056:6;30962:108;:::i;:::-;30954:116;;30704:373;;;;:::o;31083:210::-;31170:4;31208:2;31197:9;31193:18;31185:26;;31221:65;31283:1;31272:9;31268:17;31259:6;31221:65;:::i;:::-;31083:210;;;;:::o;31299:313::-;31412:4;31450:2;31439:9;31435:18;31427:26;;31499:9;31493:4;31489:20;31485:1;31474:9;31470:17;31463:47;31527:78;31600:4;31591:6;31527:78;:::i;:::-;31519:86;;31299:313;;;;:::o;31618:307::-;31728:4;31766:2;31755:9;31751:18;31743:26;;31815:9;31809:4;31805:20;31801:1;31790:9;31786:17;31779:47;31843:75;31913:4;31904:6;31843:75;:::i;:::-;31835:83;;31618:307;;;;:::o;31931:419::-;32097:4;32135:2;32124:9;32120:18;32112:26;;32184:9;32178:4;32174:20;32170:1;32159:9;32155:17;32148:47;32212:131;32338:4;32212:131;:::i;:::-;32204:139;;31931:419;;;:::o;32356:::-;32522:4;32560:2;32549:9;32545:18;32537:26;;32609:9;32603:4;32599:20;32595:1;32584:9;32580:17;32573:47;32637:131;32763:4;32637:131;:::i;:::-;32629:139;;32356:419;;;:::o;32781:::-;32947:4;32985:2;32974:9;32970:18;32962:26;;33034:9;33028:4;33024:20;33020:1;33009:9;33005:17;32998:47;33062:131;33188:4;33062:131;:::i;:::-;33054:139;;32781:419;;;:::o;33206:::-;33372:4;33410:2;33399:9;33395:18;33387:26;;33459:9;33453:4;33449:20;33445:1;33434:9;33430:17;33423:47;33487:131;33613:4;33487:131;:::i;:::-;33479:139;;33206:419;;;:::o;33631:::-;33797:4;33835:2;33824:9;33820:18;33812:26;;33884:9;33878:4;33874:20;33870:1;33859:9;33855:17;33848:47;33912:131;34038:4;33912:131;:::i;:::-;33904:139;;33631:419;;;:::o;34056:::-;34222:4;34260:2;34249:9;34245:18;34237:26;;34309:9;34303:4;34299:20;34295:1;34284:9;34280:17;34273:47;34337:131;34463:4;34337:131;:::i;:::-;34329:139;;34056:419;;;:::o;34481:::-;34647:4;34685:2;34674:9;34670:18;34662:26;;34734:9;34728:4;34724:20;34720:1;34709:9;34705:17;34698:47;34762:131;34888:4;34762:131;:::i;:::-;34754:139;;34481:419;;;:::o;34906:::-;35072:4;35110:2;35099:9;35095:18;35087:26;;35159:9;35153:4;35149:20;35145:1;35134:9;35130:17;35123:47;35187:131;35313:4;35187:131;:::i;:::-;35179:139;;34906:419;;;:::o;35331:::-;35497:4;35535:2;35524:9;35520:18;35512:26;;35584:9;35578:4;35574:20;35570:1;35559:9;35555:17;35548:47;35612:131;35738:4;35612:131;:::i;:::-;35604:139;;35331:419;;;:::o;35756:::-;35922:4;35960:2;35949:9;35945:18;35937:26;;36009:9;36003:4;35999:20;35995:1;35984:9;35980:17;35973:47;36037:131;36163:4;36037:131;:::i;:::-;36029:139;;35756:419;;;:::o;36181:::-;36347:4;36385:2;36374:9;36370:18;36362:26;;36434:9;36428:4;36424:20;36420:1;36409:9;36405:17;36398:47;36462:131;36588:4;36462:131;:::i;:::-;36454:139;;36181:419;;;:::o;36606:::-;36772:4;36810:2;36799:9;36795:18;36787:26;;36859:9;36853:4;36849:20;36845:1;36834:9;36830:17;36823:47;36887:131;37013:4;36887:131;:::i;:::-;36879:139;;36606:419;;;:::o;37031:::-;37197:4;37235:2;37224:9;37220:18;37212:26;;37284:9;37278:4;37274:20;37270:1;37259:9;37255:17;37248:47;37312:131;37438:4;37312:131;:::i;:::-;37304:139;;37031:419;;;:::o;37456:::-;37622:4;37660:2;37649:9;37645:18;37637:26;;37709:9;37703:4;37699:20;37695:1;37684:9;37680:17;37673:47;37737:131;37863:4;37737:131;:::i;:::-;37729:139;;37456:419;;;:::o;37881:::-;38047:4;38085:2;38074:9;38070:18;38062:26;;38134:9;38128:4;38124:20;38120:1;38109:9;38105:17;38098:47;38162:131;38288:4;38162:131;:::i;:::-;38154:139;;37881:419;;;:::o;38306:::-;38472:4;38510:2;38499:9;38495:18;38487:26;;38559:9;38553:4;38549:20;38545:1;38534:9;38530:17;38523:47;38587:131;38713:4;38587:131;:::i;:::-;38579:139;;38306:419;;;:::o;38731:::-;38897:4;38935:2;38924:9;38920:18;38912:26;;38984:9;38978:4;38974:20;38970:1;38959:9;38955:17;38948:47;39012:131;39138:4;39012:131;:::i;:::-;39004:139;;38731:419;;;:::o;39156:::-;39322:4;39360:2;39349:9;39345:18;39337:26;;39409:9;39403:4;39399:20;39395:1;39384:9;39380:17;39373:47;39437:131;39563:4;39437:131;:::i;:::-;39429:139;;39156:419;;;:::o;39581:::-;39747:4;39785:2;39774:9;39770:18;39762:26;;39834:9;39828:4;39824:20;39820:1;39809:9;39805:17;39798:47;39862:131;39988:4;39862:131;:::i;:::-;39854:139;;39581:419;;;:::o;40006:::-;40172:4;40210:2;40199:9;40195:18;40187:26;;40259:9;40253:4;40249:20;40245:1;40234:9;40230:17;40223:47;40287:131;40413:4;40287:131;:::i;:::-;40279:139;;40006:419;;;:::o;40431:::-;40597:4;40635:2;40624:9;40620:18;40612:26;;40684:9;40678:4;40674:20;40670:1;40659:9;40655:17;40648:47;40712:131;40838:4;40712:131;:::i;:::-;40704:139;;40431:419;;;:::o;40856:::-;41022:4;41060:2;41049:9;41045:18;41037:26;;41109:9;41103:4;41099:20;41095:1;41084:9;41080:17;41073:47;41137:131;41263:4;41137:131;:::i;:::-;41129:139;;40856:419;;;:::o;41281:::-;41447:4;41485:2;41474:9;41470:18;41462:26;;41534:9;41528:4;41524:20;41520:1;41509:9;41505:17;41498:47;41562:131;41688:4;41562:131;:::i;:::-;41554:139;;41281:419;;;:::o;41706:::-;41872:4;41910:2;41899:9;41895:18;41887:26;;41959:9;41953:4;41949:20;41945:1;41934:9;41930:17;41923:47;41987:131;42113:4;41987:131;:::i;:::-;41979:139;;41706:419;;;:::o;42131:::-;42297:4;42335:2;42324:9;42320:18;42312:26;;42384:9;42378:4;42374:20;42370:1;42359:9;42355:17;42348:47;42412:131;42538:4;42412:131;:::i;:::-;42404:139;;42131:419;;;:::o;42556:::-;42722:4;42760:2;42749:9;42745:18;42737:26;;42809:9;42803:4;42799:20;42795:1;42784:9;42780:17;42773:47;42837:131;42963:4;42837:131;:::i;:::-;42829:139;;42556:419;;;:::o;42981:::-;43147:4;43185:2;43174:9;43170:18;43162:26;;43234:9;43228:4;43224:20;43220:1;43209:9;43205:17;43198:47;43262:131;43388:4;43262:131;:::i;:::-;43254:139;;42981:419;;;:::o;43406:::-;43572:4;43610:2;43599:9;43595:18;43587:26;;43659:9;43653:4;43649:20;43645:1;43634:9;43630:17;43623:47;43687:131;43813:4;43687:131;:::i;:::-;43679:139;;43406:419;;;:::o;43831:::-;43997:4;44035:2;44024:9;44020:18;44012:26;;44084:9;44078:4;44074:20;44070:1;44059:9;44055:17;44048:47;44112:131;44238:4;44112:131;:::i;:::-;44104:139;;43831:419;;;:::o;44256:::-;44422:4;44460:2;44449:9;44445:18;44437:26;;44509:9;44503:4;44499:20;44495:1;44484:9;44480:17;44473:47;44537:131;44663:4;44537:131;:::i;:::-;44529:139;;44256:419;;;:::o;44681:::-;44847:4;44885:2;44874:9;44870:18;44862:26;;44934:9;44928:4;44924:20;44920:1;44909:9;44905:17;44898:47;44962:131;45088:4;44962:131;:::i;:::-;44954:139;;44681:419;;;:::o;45106:::-;45272:4;45310:2;45299:9;45295:18;45287:26;;45359:9;45353:4;45349:20;45345:1;45334:9;45330:17;45323:47;45387:131;45513:4;45387:131;:::i;:::-;45379:139;;45106:419;;;:::o;45531:::-;45697:4;45735:2;45724:9;45720:18;45712:26;;45784:9;45778:4;45774:20;45770:1;45759:9;45755:17;45748:47;45812:131;45938:4;45812:131;:::i;:::-;45804:139;;45531:419;;;:::o;45956:222::-;46049:4;46087:2;46076:9;46072:18;46064:26;;46100:71;46168:1;46157:9;46153:17;46144:6;46100:71;:::i;:::-;45956:222;;;;:::o;46184:129::-;46218:6;46245:20;;:::i;:::-;46235:30;;46274:33;46302:4;46294:6;46274:33;:::i;:::-;46184:129;;;:::o;46319:75::-;46352:6;46385:2;46379:9;46369:19;;46319:75;:::o;46400:311::-;46477:4;46567:18;46559:6;46556:30;46553:56;;;46589:18;;:::i;:::-;46553:56;46639:4;46631:6;46627:17;46619:25;;46699:4;46693;46689:15;46681:23;;46400:311;;;:::o;46717:307::-;46778:4;46868:18;46860:6;46857:30;46854:56;;;46890:18;;:::i;:::-;46854:56;46928:29;46950:6;46928:29;:::i;:::-;46920:37;;47012:4;47006;47002:15;46994:23;;46717:307;;;:::o;47030:308::-;47092:4;47182:18;47174:6;47171:30;47168:56;;;47204:18;;:::i;:::-;47168:56;47242:29;47264:6;47242:29;:::i;:::-;47234:37;;47326:4;47320;47316:15;47308:23;;47030:308;;;:::o;47344:132::-;47411:4;47434:3;47426:11;;47464:4;47459:3;47455:14;47447:22;;47344:132;;;:::o;47482:141::-;47531:4;47554:3;47546:11;;47577:3;47574:1;47567:14;47611:4;47608:1;47598:18;47590:26;;47482:141;;;:::o;47629:114::-;47696:6;47730:5;47724:12;47714:22;;47629:114;;;:::o;47749:98::-;47800:6;47834:5;47828:12;47818:22;;47749:98;;;:::o;47853:99::-;47905:6;47939:5;47933:12;47923:22;;47853:99;;;:::o;47958:113::-;48028:4;48060;48055:3;48051:14;48043:22;;47958:113;;;:::o;48077:184::-;48176:11;48210:6;48205:3;48198:19;48250:4;48245:3;48241:14;48226:29;;48077:184;;;;:::o;48267:168::-;48350:11;48384:6;48379:3;48372:19;48424:4;48419:3;48415:14;48400:29;;48267:168;;;;:::o;48441:147::-;48542:11;48579:3;48564:18;;48441:147;;;;:::o;48594:169::-;48678:11;48712:6;48707:3;48700:19;48752:4;48747:3;48743:14;48728:29;;48594:169;;;;:::o;48769:148::-;48871:11;48908:3;48893:18;;48769:148;;;;:::o;48923:305::-;48963:3;48982:20;49000:1;48982:20;:::i;:::-;48977:25;;49016:20;49034:1;49016:20;:::i;:::-;49011:25;;49170:1;49102:66;49098:74;49095:1;49092:81;49089:107;;;49176:18;;:::i;:::-;49089:107;49220:1;49217;49213:9;49206:16;;48923:305;;;;:::o;49234:185::-;49274:1;49291:20;49309:1;49291:20;:::i;:::-;49286:25;;49325:20;49343:1;49325:20;:::i;:::-;49320:25;;49364:1;49354:35;;49369:18;;:::i;:::-;49354:35;49411:1;49408;49404:9;49399:14;;49234:185;;;;:::o;49425:348::-;49465:7;49488:20;49506:1;49488:20;:::i;:::-;49483:25;;49522:20;49540:1;49522:20;:::i;:::-;49517:25;;49710:1;49642:66;49638:74;49635:1;49632:81;49627:1;49620:9;49613:17;49609:105;49606:131;;;49717:18;;:::i;:::-;49606:131;49765:1;49762;49758:9;49747:20;;49425:348;;;;:::o;49779:191::-;49819:4;49839:20;49857:1;49839:20;:::i;:::-;49834:25;;49873:20;49891:1;49873:20;:::i;:::-;49868:25;;49912:1;49909;49906:8;49903:34;;;49917:18;;:::i;:::-;49903:34;49962:1;49959;49955:9;49947:17;;49779:191;;;;:::o;49976:96::-;50013:7;50042:24;50060:5;50042:24;:::i;:::-;50031:35;;49976:96;;;:::o;50078:104::-;50123:7;50152:24;50170:5;50152:24;:::i;:::-;50141:35;;50078:104;;;:::o;50188:90::-;50222:7;50265:5;50258:13;50251:21;50240:32;;50188:90;;;:::o;50284:149::-;50320:7;50360:66;50353:5;50349:78;50338:89;;50284:149;;;:::o;50439:126::-;50476:7;50516:42;50509:5;50505:54;50494:65;;50439:126;;;:::o;50571:77::-;50608:7;50637:5;50626:16;;50571:77;;;:::o;50654:134::-;50712:9;50745:37;50776:5;50745:37;:::i;:::-;50732:50;;50654:134;;;:::o;50794:126::-;50844:9;50877:37;50908:5;50877:37;:::i;:::-;50864:50;;50794:126;;;:::o;50926:113::-;50976:9;51009:24;51027:5;51009:24;:::i;:::-;50996:37;;50926:113;;;:::o;51045:154::-;51129:6;51124:3;51119;51106:30;51191:1;51182:6;51177:3;51173:16;51166:27;51045:154;;;:::o;51205:307::-;51273:1;51283:113;51297:6;51294:1;51291:13;51283:113;;;51382:1;51377:3;51373:11;51367:18;51363:1;51358:3;51354:11;51347:39;51319:2;51316:1;51312:10;51307:15;;51283:113;;;51414:6;51411:1;51408:13;51405:101;;;51494:1;51485:6;51480:3;51476:16;51469:27;51405:101;51254:258;51205:307;;;:::o;51518:320::-;51562:6;51599:1;51593:4;51589:12;51579:22;;51646:1;51640:4;51636:12;51667:18;51657:81;;51723:4;51715:6;51711:17;51701:27;;51657:81;51785:2;51777:6;51774:14;51754:18;51751:38;51748:84;;;51804:18;;:::i;:::-;51748:84;51569:269;51518:320;;;:::o;51844:281::-;51927:27;51949:4;51927:27;:::i;:::-;51919:6;51915:40;52057:6;52045:10;52042:22;52021:18;52009:10;52006:34;52003:62;52000:88;;;52068:18;;:::i;:::-;52000:88;52108:10;52104:2;52097:22;51887:238;51844:281;;:::o;52131:233::-;52170:3;52193:24;52211:5;52193:24;:::i;:::-;52184:33;;52239:66;52232:5;52229:77;52226:103;;;52309:18;;:::i;:::-;52226:103;52356:1;52349:5;52345:13;52338:20;;52131:233;;;:::o;52370:176::-;52402:1;52419:20;52437:1;52419:20;:::i;:::-;52414:25;;52453:20;52471:1;52453:20;:::i;:::-;52448:25;;52492:1;52482:35;;52497:18;;:::i;:::-;52482:35;52538:1;52535;52531:9;52526:14;;52370:176;;;;:::o;52552:180::-;52600:77;52597:1;52590:88;52697:4;52694:1;52687:15;52721:4;52718:1;52711:15;52738:180;52786:77;52783:1;52776:88;52883:4;52880:1;52873:15;52907:4;52904:1;52897:15;52924:180;52972:77;52969:1;52962:88;53069:4;53066:1;53059:15;53093:4;53090:1;53083:15;53110:180;53158:77;53155:1;53148:88;53255:4;53252:1;53245:15;53279:4;53276:1;53269:15;53296:180;53344:77;53341:1;53334:88;53441:4;53438:1;53431:15;53465:4;53462:1;53455:15;53482:180;53530:77;53527:1;53520:88;53627:4;53624:1;53617:15;53651:4;53648:1;53641:15;53668:117;53777:1;53774;53767:12;53791:117;53900:1;53897;53890:12;53914:117;54023:1;54020;54013:12;54037:117;54146:1;54143;54136:12;54160:117;54269:1;54266;54259:12;54283:102;54324:6;54375:2;54371:7;54366:2;54359:5;54355:14;54351:28;54341:38;;54283:102;;;:::o;54391:164::-;54531:16;54527:1;54519:6;54515:14;54508:40;54391:164;:::o;54561:161::-;54701:13;54697:1;54689:6;54685:14;54678:37;54561:161;:::o;54728:174::-;54868:26;54864:1;54856:6;54852:14;54845:50;54728:174;:::o;54908:230::-;55048:34;55044:1;55036:6;55032:14;55025:58;55117:13;55112:2;55104:6;55100:15;55093:38;54908:230;:::o;55144:237::-;55284:34;55280:1;55272:6;55268:14;55261:58;55353:20;55348:2;55340:6;55336:15;55329:45;55144:237;:::o;55387:225::-;55527:34;55523:1;55515:6;55511:14;55504:58;55596:8;55591:2;55583:6;55579:15;55572:33;55387:225;:::o;55618:178::-;55758:30;55754:1;55746:6;55742:14;55735:54;55618:178;:::o;55802:225::-;55942:34;55938:1;55930:6;55926:14;55919:58;56011:8;56006:2;55998:6;55994:15;55987:33;55802:225;:::o;56033:233::-;56173:34;56169:1;56161:6;56157:14;56150:58;56242:16;56237:2;56229:6;56225:15;56218:41;56033:233;:::o;56272:223::-;56412:34;56408:1;56400:6;56396:14;56389:58;56481:6;56476:2;56468:6;56464:15;56457:31;56272:223;:::o;56501:175::-;56641:27;56637:1;56629:6;56625:14;56618:51;56501:175;:::o;56682:245::-;56822:34;56818:1;56810:6;56806:14;56799:58;56891:28;56886:2;56878:6;56874:15;56867:53;56682:245;:::o;56933:179::-;57073:31;57069:1;57061:6;57057:14;57050:55;56933:179;:::o;57118:231::-;57258:34;57254:1;57246:6;57242:14;57235:58;57327:14;57322:2;57314:6;57310:15;57303:39;57118:231;:::o;57355:230::-;57495:34;57491:1;57483:6;57479:14;57472:58;57564:13;57559:2;57551:6;57547:15;57540:38;57355:230;:::o;57591:::-;57731:34;57727:1;57719:6;57715:14;57708:58;57800:13;57795:2;57787:6;57783:15;57776:38;57591:230;:::o;57827:243::-;57967:34;57963:1;57955:6;57951:14;57944:58;58036:26;58031:2;58023:6;58019:15;58012:51;57827:243;:::o;58076:229::-;58216:34;58212:1;58204:6;58200:14;58193:58;58285:12;58280:2;58272:6;58268:15;58261:37;58076:229;:::o;58311:228::-;58451:34;58447:1;58439:6;58435:14;58428:58;58520:11;58515:2;58507:6;58503:15;58496:36;58311:228;:::o;58545:163::-;58685:15;58681:1;58673:6;58669:14;58662:39;58545:163;:::o;58714:165::-;58854:17;58850:1;58842:6;58838:14;58831:41;58714:165;:::o;58885:160::-;59025:12;59021:1;59013:6;59009:14;59002:36;58885:160;:::o;59051:182::-;59191:34;59187:1;59179:6;59175:14;59168:58;59051:182;:::o;59239:231::-;59379:34;59375:1;59367:6;59363:14;59356:58;59448:14;59443:2;59435:6;59431:15;59424:39;59239:231;:::o;59476:182::-;59616:34;59612:1;59604:6;59600:14;59593:58;59476:182;:::o;59664:228::-;59804:34;59800:1;59792:6;59788:14;59781:58;59873:11;59868:2;59860:6;59856:15;59849:36;59664:228;:::o;59898:234::-;60038:34;60034:1;60026:6;60022:14;60015:58;60107:17;60102:2;60094:6;60090:15;60083:42;59898:234;:::o;60138:220::-;60278:34;60274:1;60266:6;60262:14;60255:58;60347:3;60342:2;60334:6;60330:15;60323:28;60138:220;:::o;60364:175::-;60504:27;60500:1;60492:6;60488:14;60481:51;60364:175;:::o;60545:::-;60685:27;60681:1;60673:6;60669:14;60662:51;60545:175;:::o;60726:172::-;60866:24;60862:1;60854:6;60850:14;60843:48;60726:172;:::o;60904:114::-;;:::o;61024:236::-;61164:34;61160:1;61152:6;61148:14;61141:58;61233:19;61228:2;61220:6;61216:15;61209:44;61024:236;:::o;61266:231::-;61406:34;61402:1;61394:6;61390:14;61383:58;61475:14;61470:2;61462:6;61458:15;61451:39;61266:231;:::o;61503:122::-;61576:24;61594:5;61576:24;:::i;:::-;61569:5;61566:35;61556:63;;61615:1;61612;61605:12;61556:63;61503:122;:::o;61631:138::-;61712:32;61738:5;61712:32;:::i;:::-;61705:5;61702:43;61692:71;;61759:1;61756;61749:12;61692:71;61631:138;:::o;61775:116::-;61845:21;61860:5;61845:21;:::i;:::-;61838:5;61835:32;61825:60;;61881:1;61878;61871:12;61825:60;61775:116;:::o;61897:120::-;61969:23;61986:5;61969:23;:::i;:::-;61962:5;61959:34;61949:62;;62007:1;62004;61997:12;61949:62;61897:120;:::o;62023:122::-;62096:24;62114:5;62096:24;:::i;:::-;62089:5;62086:35;62076:63;;62135:1;62132;62125:12;62076:63;62023:122;:::o

Swarm Source

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