ETH Price: $3,304.15 (-3.14%)
Gas: 12 Gwei

Token

nobraincells (NBC)
 

Overview

Max Total Supply

5,000 NBC

Holders

2,918

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 NBC
0xd50bf4669cea7e5605799ddb24b3c43b96411c7c
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:
nobraincells

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-04
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.12;

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


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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct StakingInfo {
        bool staked;
        bool usedForMint;
        uint duration;
    }

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 public currentIndex = 1;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    string internal uri;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    mapping(uint => StakingInfo) public _stakedTokens;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex && tokenId > 0;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract nobraincells is ERC721A, Ownable {

    constructor() ERC721A("nobraincells", "NBC") {}

    uint public maxSupply = 5000;
    bool public saleStatus;
    uint public price = 0.0069 ether;   
    uint public maxPerTx = 5;    
    uint public maxPerWallet = 5;
    uint public freeMintPrice = 0;
    uint public maxFreePerTx = 1;    
    uint public maxFreePerWallet = 1;  

 
    // ---------------------------------------------------------------------------------------------
    // MAPPINGS
    // ---------------------------------------------------------------------------------------------

    mapping(address => uint) public _minted; 

    mapping(address => uint) public _freeminted; 

    // ---------------------------------------------------------------------------------------------
    // OWNER SETTERS
    // ---------------------------------------------------------------------------------------------

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

    function setSaleStatus() external onlyOwner {
        saleStatus = !saleStatus;
    }

    function setMaxSupply(uint supply) external onlyOwner {
        maxSupply = supply;
    }

    function setPrice(uint amount) external onlyOwner {
        price = amount;
    }
    
    function setMaxPerTx(uint amount) external onlyOwner {
        maxPerTx = amount;
    }
    
    function setMaxPerWallet(uint amount) external onlyOwner {
        maxPerWallet = amount;
    }

    function setMaxFreePerTx(uint amount) external onlyOwner {
        maxFreePerTx = amount;
    }
    
    function setMaxFreePerWallet(uint amount) external onlyOwner {
        maxFreePerWallet = amount;
    }
    
    function setBaseURI(string calldata _uri) external onlyOwner {
        uri = _uri;
    }

    function getTotalSupply() public view returns(uint) {
        return currentIndex - 1;
    }

    function getMaxSupply() public view returns(uint) {
        return maxSupply;
    }

    // ---------------------------------------------------------------------------------------------
    // PUBLIC SETTERS
    // ---------------------------------------------------------------------------------------------

    function freemint(uint256 amount) external payable {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        require(amount * freeMintPrice == msg.value, "NOT_ENOUGH_MONEY!");
        require(amount <= maxFreePerTx, "EXCEEDS_MAX_PER_TX!");
        require(currentIndex <= maxSupply, "NOT_ENOUGH_TOKENS!");
        require(((currentIndex + amount)-1) <= maxSupply, "NOT_ENOUGH_TOKENS");
        require(_freeminted[msg.sender] + amount <= maxFreePerWallet, "EXCEEDS_MAX_PER_WALLET!");
        _safeMint(msg.sender, amount);
        _freeminted[msg.sender] += amount;
    }

    function paidmint(uint256 amount) external payable {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        require(amount * price == msg.value, "NOT_ENOUGH_MONEY!");
        require(amount <= maxPerTx, "EXCEEDS_MAX_PER_TX!");
        require(currentIndex <= maxSupply, "NOT_ENOUGH_TOKENS!");
        require(((currentIndex + amount)-1) <= maxSupply, "NOT_ENOUGH_TOKENS");
        require(_minted[msg.sender] + amount <= maxPerWallet, "EXCEEDS_MAX_PER_WALLET!");
        _safeMint(msg.sender, amount);
        _minted[msg.sender] += amount;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_freeminted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_stakedTokens","outputs":[{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"bool","name":"usedForMint","type":"bool"},{"internalType":"uint256","name":"duration","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"paidmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","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":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600055611388600a556618838370f34000600c556005600d556005600e556000600f55600160105560016011553480156200004057600080fd5b506040518060400160405280600c81526020017f6e6f627261696e63656c6c7300000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e424300000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000c5929190620001d5565b508060029080519060200190620000de929190620001d5565b50505062000101620000f56200010760201b60201c565b6200010f60201b60201c565b620002ea565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e390620002b4565b90600052602060002090601f01602090048101928262000207576000855562000253565b82601f106200022257805160ff191683800117855562000253565b8280016001018555821562000253579182015b828111156200025257825182559160200191906001019062000235565b5b50905062000262919062000266565b5090565b5b808211156200028157600081600090555060010162000267565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002cd57607f821691505b60208210811415620002e457620002e362000285565b5b50919050565b614c0b80620002fa6000396000f3fe6080604052600436106102675760003560e01c80636f8b44b011610144578063b88d4fde116100b6578063e268e4d31161007a578063e268e4d314610914578063e985e9c51461093d578063f2fde38b1461097a578063f737c47a146109a3578063f9020e33146109ce578063f968adbe146109f957610267565b8063b88d4fde1461082f578063c4e41b2214610858578063c6f6f21614610883578063c87b56dd146108ac578063d5abeb01146108e957610267565b80638da5cb5b116101085780638da5cb5b1461073157806391b7f5ed1461075c57806395d89b4114610785578063a035b1fe146107b0578063a22cb465146107db578063a70273571461080457610267565b80636f8b44b01461064c57806370a0823114610675578063715018a6146106b25780637dc949b2146106c95780637de77ecc146106f457610267565b80633ccfd60b116101dd5780634f6ccce7116101a15780634f6ccce71461054d578063502b33af1461058a57806355f804b3146105a15780636352211e146105ca5780636414044f146106075780636d7c4a4b1461062357610267565b80633ccfd60b1461048e57806340f070a8146104a557806342842e0e146104ce578063453c2310146104f75780634c0f38c21461052257610267565b80631491c2e51161022f5780631491c2e51461035657806318160ddd14610393578063204f490c146103be57806323b872dd146103fd57806326987b60146104265780632f745c591461045157610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630fbe4fe21461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613405565b610a24565b6040516102a0919061344d565b60405180910390f35b3480156102b557600080fd5b506102be610b6e565b6040516102cb9190613501565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613559565b610c00565b60405161030891906135c7565b60405180910390f35b34801561031d57600080fd5b506103386004803603810190610333919061360e565b610c85565b005b610354600480360381019061034f9190613559565b610d9e565b005b34801561036257600080fd5b5061037d6004803603810190610378919061364e565b611018565b60405161038a919061368a565b60405180910390f35b34801561039f57600080fd5b506103a8611030565b6040516103b5919061368a565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e09190613559565b611046565b6040516103f4939291906136a5565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f91906136dc565b61108a565b005b34801561043257600080fd5b5061043b6110fe565b604051610448919061368a565b60405180910390f35b34801561045d57600080fd5b506104786004803603810190610473919061360e565b611104565b604051610485919061368a565b60405180910390f35b34801561049a57600080fd5b506104a36112f6565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613559565b6113bb565b005b3480156104da57600080fd5b506104f560048036038101906104f091906136dc565b611441565b005b34801561050357600080fd5b5061050c6114c5565b604051610519919061368a565b60405180910390f35b34801561052e57600080fd5b506105376114cb565b604051610544919061368a565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190613559565b6114d5565b604051610581919061368a565b60405180910390f35b34801561059657600080fd5b5061059f611528565b005b3480156105ad57600080fd5b506105c860048036038101906105c39190613794565b6115d0565b005b3480156105d657600080fd5b506105f160048036038101906105ec9190613559565b611662565b6040516105fe91906135c7565b60405180910390f35b610621600480360381019061061c9190613559565b611678565b005b34801561062f57600080fd5b5061064a60048036038101906106459190613559565b6118f2565b005b34801561065857600080fd5b50610673600480360381019061066e9190613559565b611978565b005b34801561068157600080fd5b5061069c6004803603810190610697919061364e565b6119fe565b6040516106a9919061368a565b60405180910390f35b3480156106be57600080fd5b506106c7611ae7565b005b3480156106d557600080fd5b506106de611b6f565b6040516106eb919061368a565b60405180910390f35b34801561070057600080fd5b5061071b6004803603810190610716919061364e565b611b75565b604051610728919061368a565b60405180910390f35b34801561073d57600080fd5b50610746611b8d565b60405161075391906135c7565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613559565b611bb7565b005b34801561079157600080fd5b5061079a611c3d565b6040516107a79190613501565b60405180910390f35b3480156107bc57600080fd5b506107c5611ccf565b6040516107d2919061368a565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd919061380d565b611cd5565b005b34801561081057600080fd5b50610819611e56565b604051610826919061368a565b60405180910390f35b34801561083b57600080fd5b506108566004803603810190610851919061397d565b611e5c565b005b34801561086457600080fd5b5061086d611f1c565b60405161087a919061368a565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190613559565b611f32565b005b3480156108b857600080fd5b506108d360048036038101906108ce9190613559565b611fb8565b6040516108e09190613501565b60405180910390f35b3480156108f557600080fd5b506108fe612060565b60405161090b919061368a565b60405180910390f35b34801561092057600080fd5b5061093b60048036038101906109369190613559565b612066565b005b34801561094957600080fd5b50610964600480360381019061095f9190613a00565b6120ec565b604051610971919061344d565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c919061364e565b612180565b005b3480156109af57600080fd5b506109b8612278565b6040516109c5919061368a565b60405180910390f35b3480156109da57600080fd5b506109e361227e565b6040516109f0919061344d565b60405180910390f35b348015610a0557600080fd5b50610a0e612291565b604051610a1b919061368a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b675750610b6682612297565b5b9050919050565b606060018054610b7d90613a6f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba990613a6f565b8015610bf65780601f10610bcb57610100808354040283529160200191610bf6565b820191906000526020600020905b815481529060010190602001808311610bd957829003601f168201915b5050505050905090565b6000610c0b82612301565b610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190613b13565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c9082611662565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890613ba5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2061231a565b73ffffffffffffffffffffffffffffffffffffffff161480610d4f5750610d4e81610d4961231a565b6120ec565b5b610d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8590613c37565b60405180910390fd5b610d99838383612322565b505050565b600b60009054906101000a900460ff16610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490613ca3565b60405180910390fd5b34600f5482610dfc9190613cf2565b14610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390613d98565b60405180910390fd5b601054811115610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890613e04565b60405180910390fd5b600a546000541115610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613e70565b60405180910390fd5b600a54600182600054610edb9190613e90565b610ee59190613ee6565b1115610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90613f66565b60405180910390fd5b60115481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f749190613e90565b1115610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90613fd2565b60405180910390fd5b610fbf33826123d4565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100e9190613e90565b9250508190555050565b60136020528060005260406000206000915090505481565b600060016000546110419190613ee6565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff16156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e59061403e565b60405180910390fd5b6110f98383836123f2565b505050565b60005481565b600061110f836119fe565b8210611150576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611147906140d0565b60405180910390fd5b600061115a611030565b905060008060005b838110156112b4576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461125457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112a6578684141561129d5781955050505050506112f0565b83806001019450505b508080600101915050611162565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790614162565b60405180910390fd5b92915050565b6112fe61231a565b73ffffffffffffffffffffffffffffffffffffffff1661131c611b8d565b73ffffffffffffffffffffffffffffffffffffffff1614611372576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611369906141ce565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156113b8573d6000803e3d6000fd5b50565b6113c361231a565b73ffffffffffffffffffffffffffffffffffffffff166113e1611b8d565b73ffffffffffffffffffffffffffffffffffffffff1614611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e906141ce565b60405180910390fd5b8060108190555050565b6008600082815260200190815260200160002060000160009054906101000a900460ff16156114a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149c9061403e565b60405180910390fd5b6114c083838360405180602001604052806000815250611e5c565b505050565b600e5481565b6000600a54905090565b60006114df611030565b8210611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790614260565b60405180910390fd5b819050919050565b61153061231a565b73ffffffffffffffffffffffffffffffffffffffff1661154e611b8d565b73ffffffffffffffffffffffffffffffffffffffff16146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b906141ce565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6115d861231a565b73ffffffffffffffffffffffffffffffffffffffff166115f6611b8d565b73ffffffffffffffffffffffffffffffffffffffff161461164c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611643906141ce565b60405180910390fd5b81816003919061165d9291906132bc565b505050565b600061166d82612932565b600001519050919050565b600b60009054906101000a900460ff166116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90613ca3565b60405180910390fd5b34600c54826116d69190613cf2565b14611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90613d98565b60405180910390fd5b600d5481111561175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290613e04565b60405180910390fd5b600a5460005411156117a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179990613e70565b60405180910390fd5b600a546001826000546117b59190613e90565b6117bf9190613ee6565b1115611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613f66565b60405180910390fd5b600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184e9190613e90565b111561188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613fd2565b60405180910390fd5b61189933826123d4565b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118e89190613e90565b9250508190555050565b6118fa61231a565b73ffffffffffffffffffffffffffffffffffffffff16611918611b8d565b73ffffffffffffffffffffffffffffffffffffffff161461196e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611965906141ce565b60405180910390fd5b8060118190555050565b61198061231a565b73ffffffffffffffffffffffffffffffffffffffff1661199e611b8d565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb906141ce565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a66906142f2565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611aef61231a565b73ffffffffffffffffffffffffffffffffffffffff16611b0d611b8d565b73ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906141ce565b60405180910390fd5b611b6d6000612acc565b565b60105481565b60126020528060005260406000206000915090505481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bbf61231a565b73ffffffffffffffffffffffffffffffffffffffff16611bdd611b8d565b73ffffffffffffffffffffffffffffffffffffffff1614611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a906141ce565b60405180910390fd5b80600c8190555050565b606060028054611c4c90613a6f565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7890613a6f565b8015611cc55780601f10611c9a57610100808354040283529160200191611cc5565b820191906000526020600020905b815481529060010190602001808311611ca857829003601f168201915b5050505050905090565b600c5481565b611cdd61231a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d429061435e565b60405180910390fd5b8060076000611d5861231a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e0561231a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e4a919061344d565b60405180910390a35050565b60115481565b6008600083815260200190815260200160002060000160009054906101000a900460ff1615611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb79061403e565b60405180910390fd5b611ecb8484846123f2565b611ed784848484612b92565b611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d906143f0565b60405180910390fd5b50505050565b60006001600054611f2d9190613ee6565b905090565b611f3a61231a565b73ffffffffffffffffffffffffffffffffffffffff16611f58611b8d565b73ffffffffffffffffffffffffffffffffffffffff1614611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa5906141ce565b60405180910390fd5b80600d8190555050565b6060611fc382612301565b612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614482565b60405180910390fd5b600061200c612d1a565b905060008151141561202d5760405180602001604052806000815250612058565b8061203784612dac565b60405160200161204892919061452a565b6040516020818303038152906040525b915050919050565b600a5481565b61206e61231a565b73ffffffffffffffffffffffffffffffffffffffff1661208c611b8d565b73ffffffffffffffffffffffffffffffffffffffff16146120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d9906141ce565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61218861231a565b73ffffffffffffffffffffffffffffffffffffffff166121a6611b8d565b73ffffffffffffffffffffffffffffffffffffffff16146121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f3906141ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561226c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612263906145cb565b60405180910390fd5b61227581612acc565b50565b600f5481565b600b60009054906101000a900460ff1681565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156123135750600082115b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6123ee828260405180602001604052806000815250612f0d565b5050565b60006123fd82612932565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661242461231a565b73ffffffffffffffffffffffffffffffffffffffff161480612480575061244961231a565b73ffffffffffffffffffffffffffffffffffffffff1661246884610c00565b73ffffffffffffffffffffffffffffffffffffffff16145b8061249c575061249b826000015161249661231a565b6120ec565b5b9050806124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d59061465d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612550576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612547906146ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b790614781565b60405180910390fd5b6125cd8585856001612f1f565b6125dd6000848460000151612322565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128c25761282181612301565b156128c15782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461292b8585856001612f25565b5050505050565b61293a613342565b61294382612301565b612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297990614813565b60405180910390fd5b60008290505b60008110612a8b576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a7c578092505050612ac7565b50808060019003915050612988565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abe906148a5565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612bb38473ffffffffffffffffffffffffffffffffffffffff16612f2b565b15612d0d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bdc61231a565b8786866040518563ffffffff1660e01b8152600401612bfe949392919061491a565b6020604051808303816000875af1925050508015612c3a57506040513d601f19601f82011682018060405250810190612c37919061497b565b60015b612cbd573d8060008114612c6a576040519150601f19603f3d011682016040523d82523d6000602084013e612c6f565b606091505b50600081511415612cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac906143f0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d12565b600190505b949350505050565b606060038054612d2990613a6f565b80601f0160208091040260200160405190810160405280929190818152602001828054612d5590613a6f565b8015612da25780601f10612d7757610100808354040283529160200191612da2565b820191906000526020600020905b815481529060010190602001808311612d8557829003601f168201915b5050505050905090565b60606000821415612df4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f08565b600082905060005b60008214612e26578080612e0f906149a8565b915050600a82612e1f9190614a20565b9150612dfc565b60008167ffffffffffffffff811115612e4257612e41613852565b5b6040519080825280601f01601f191660200182016040528015612e745781602001600182028036833780820191505090505b5090505b60008514612f0157600182612e8d9190613ee6565b9150600a85612e9c9190614a51565b6030612ea89190613e90565b60f81b818381518110612ebe57612ebd614a82565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612efa9190614a20565b9450612e78565b8093505050505b919050565b612f1a8383836001612f3e565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fab90614b23565b60405180910390fd5b6000841415612ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fef90614bb5565b60405180910390fd5b6130056000868387612f1f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561329f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561328a5761324a6000888488612b92565b613289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613280906143f0565b60405180910390fd5b5b818060010192505080806001019150506131d3565b5080600081905550506132b56000868387612f25565b5050505050565b8280546132c890613a6f565b90600052602060002090601f0160209004810192826132ea5760008555613331565b82601f1061330357803560ff1916838001178555613331565b82800160010185558215613331579182015b82811115613330578235825591602001919060010190613315565b5b50905061333e919061337c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561339557600081600090555060010161337d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133e2816133ad565b81146133ed57600080fd5b50565b6000813590506133ff816133d9565b92915050565b60006020828403121561341b5761341a6133a3565b5b6000613429848285016133f0565b91505092915050565b60008115159050919050565b61344781613432565b82525050565b6000602082019050613462600083018461343e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134a2578082015181840152602081019050613487565b838111156134b1576000848401525b50505050565b6000601f19601f8301169050919050565b60006134d382613468565b6134dd8185613473565b93506134ed818560208601613484565b6134f6816134b7565b840191505092915050565b6000602082019050818103600083015261351b81846134c8565b905092915050565b6000819050919050565b61353681613523565b811461354157600080fd5b50565b6000813590506135538161352d565b92915050565b60006020828403121561356f5761356e6133a3565b5b600061357d84828501613544565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135b182613586565b9050919050565b6135c1816135a6565b82525050565b60006020820190506135dc60008301846135b8565b92915050565b6135eb816135a6565b81146135f657600080fd5b50565b600081359050613608816135e2565b92915050565b60008060408385031215613625576136246133a3565b5b6000613633858286016135f9565b925050602061364485828601613544565b9150509250929050565b600060208284031215613664576136636133a3565b5b6000613672848285016135f9565b91505092915050565b61368481613523565b82525050565b600060208201905061369f600083018461367b565b92915050565b60006060820190506136ba600083018661343e565b6136c7602083018561343e565b6136d4604083018461367b565b949350505050565b6000806000606084860312156136f5576136f46133a3565b5b6000613703868287016135f9565b9350506020613714868287016135f9565b925050604061372586828701613544565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126137545761375361372f565b5b8235905067ffffffffffffffff81111561377157613770613734565b5b60208301915083600182028301111561378d5761378c613739565b5b9250929050565b600080602083850312156137ab576137aa6133a3565b5b600083013567ffffffffffffffff8111156137c9576137c86133a8565b5b6137d58582860161373e565b92509250509250929050565b6137ea81613432565b81146137f557600080fd5b50565b600081359050613807816137e1565b92915050565b60008060408385031215613824576138236133a3565b5b6000613832858286016135f9565b9250506020613843858286016137f8565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61388a826134b7565b810181811067ffffffffffffffff821117156138a9576138a8613852565b5b80604052505050565b60006138bc613399565b90506138c88282613881565b919050565b600067ffffffffffffffff8211156138e8576138e7613852565b5b6138f1826134b7565b9050602081019050919050565b82818337600083830152505050565b600061392061391b846138cd565b6138b2565b90508281526020810184848401111561393c5761393b61384d565b5b6139478482856138fe565b509392505050565b600082601f8301126139645761396361372f565b5b813561397484826020860161390d565b91505092915050565b60008060008060808587031215613997576139966133a3565b5b60006139a5878288016135f9565b94505060206139b6878288016135f9565b93505060406139c787828801613544565b925050606085013567ffffffffffffffff8111156139e8576139e76133a8565b5b6139f48782880161394f565b91505092959194509250565b60008060408385031215613a1757613a166133a3565b5b6000613a25858286016135f9565b9250506020613a36858286016135f9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a8757607f821691505b60208210811415613a9b57613a9a613a40565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613afd602d83613473565b9150613b0882613aa1565b604082019050919050565b60006020820190508181036000830152613b2c81613af0565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b8f602283613473565b9150613b9a82613b33565b604082019050919050565b60006020820190508181036000830152613bbe81613b82565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613c21603983613473565b9150613c2c82613bc5565b604082019050919050565b60006020820190508181036000830152613c5081613c14565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000613c8d601083613473565b9150613c9882613c57565b602082019050919050565b60006020820190508181036000830152613cbc81613c80565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cfd82613523565b9150613d0883613523565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4157613d40613cc3565b5b828202905092915050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b6000613d82601183613473565b9150613d8d82613d4c565b602082019050919050565b60006020820190508181036000830152613db181613d75565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b6000613dee601383613473565b9150613df982613db8565b602082019050919050565b60006020820190508181036000830152613e1d81613de1565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b6000613e5a601283613473565b9150613e6582613e24565b602082019050919050565b60006020820190508181036000830152613e8981613e4d565b9050919050565b6000613e9b82613523565b9150613ea683613523565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613edb57613eda613cc3565b5b828201905092915050565b6000613ef182613523565b9150613efc83613523565b925082821015613f0f57613f0e613cc3565b5b828203905092915050565b7f4e4f545f454e4f5547485f544f4b454e53000000000000000000000000000000600082015250565b6000613f50601183613473565b9150613f5b82613f1a565b602082019050919050565b60006020820190508181036000830152613f7f81613f43565b9050919050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b6000613fbc601783613473565b9150613fc782613f86565b602082019050919050565b60006020820190508181036000830152613feb81613faf565b9050919050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b6000614028600d83613473565b915061403382613ff2565b602082019050919050565b600060208201905081810360008301526140578161401b565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006140ba602283613473565b91506140c58261405e565b604082019050919050565b600060208201905081810360008301526140e9816140ad565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061414c602e83613473565b9150614157826140f0565b604082019050919050565b6000602082019050818103600083015261417b8161413f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141b8602083613473565b91506141c382614182565b602082019050919050565b600060208201905081810360008301526141e7816141ab565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061424a602383613473565b9150614255826141ee565b604082019050919050565b600060208201905081810360008301526142798161423d565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006142dc602b83613473565b91506142e782614280565b604082019050919050565b6000602082019050818103600083015261430b816142cf565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614348601a83613473565b915061435382614312565b602082019050919050565b600060208201905081810360008301526143778161433b565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006143da603383613473565b91506143e58261437e565b604082019050919050565b60006020820190508181036000830152614409816143cd565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061446c602f83613473565b915061447782614410565b604082019050919050565b6000602082019050818103600083015261449b8161445f565b9050919050565b600081905092915050565b60006144b882613468565b6144c281856144a2565b93506144d2818560208601613484565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006145146005836144a2565b915061451f826144de565b600582019050919050565b600061453682856144ad565b915061454282846144ad565b915061454d82614507565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145b5602683613473565b91506145c082614559565b604082019050919050565b600060208201905081810360008301526145e4816145a8565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614647603283613473565b9150614652826145eb565b604082019050919050565b600060208201905081810360008301526146768161463a565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006146d9602683613473565b91506146e48261467d565b604082019050919050565b60006020820190508181036000830152614708816146cc565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061476b602583613473565b91506147768261470f565b604082019050919050565b6000602082019050818103600083015261479a8161475e565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006147fd602a83613473565b9150614808826147a1565b604082019050919050565b6000602082019050818103600083015261482c816147f0565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061488f602f83613473565b915061489a82614833565b604082019050919050565b600060208201905081810360008301526148be81614882565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148ec826148c5565b6148f681856148d0565b9350614906818560208601613484565b61490f816134b7565b840191505092915050565b600060808201905061492f60008301876135b8565b61493c60208301866135b8565b614949604083018561367b565b818103606083015261495b81846148e1565b905095945050505050565b600081519050614975816133d9565b92915050565b600060208284031215614991576149906133a3565b5b600061499f84828501614966565b91505092915050565b60006149b382613523565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149e6576149e5613cc3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a2b82613523565b9150614a3683613523565b925082614a4657614a456149f1565b5b828204905092915050565b6000614a5c82613523565b9150614a6783613523565b925082614a7757614a766149f1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b0d602183613473565b9150614b1882614ab1565b604082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614b9f602883613473565b9150614baa82614b43565b604082019050919050565b60006020820190508181036000830152614bce81614b92565b905091905056fea2646970667358221220ed69e1c812ec45cbccb2a8b6574d434eaf63c2b33cd1ad5c31ff5435e55d527a64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636f8b44b011610144578063b88d4fde116100b6578063e268e4d31161007a578063e268e4d314610914578063e985e9c51461093d578063f2fde38b1461097a578063f737c47a146109a3578063f9020e33146109ce578063f968adbe146109f957610267565b8063b88d4fde1461082f578063c4e41b2214610858578063c6f6f21614610883578063c87b56dd146108ac578063d5abeb01146108e957610267565b80638da5cb5b116101085780638da5cb5b1461073157806391b7f5ed1461075c57806395d89b4114610785578063a035b1fe146107b0578063a22cb465146107db578063a70273571461080457610267565b80636f8b44b01461064c57806370a0823114610675578063715018a6146106b25780637dc949b2146106c95780637de77ecc146106f457610267565b80633ccfd60b116101dd5780634f6ccce7116101a15780634f6ccce71461054d578063502b33af1461058a57806355f804b3146105a15780636352211e146105ca5780636414044f146106075780636d7c4a4b1461062357610267565b80633ccfd60b1461048e57806340f070a8146104a557806342842e0e146104ce578063453c2310146104f75780634c0f38c21461052257610267565b80631491c2e51161022f5780631491c2e51461035657806318160ddd14610393578063204f490c146103be57806323b872dd146103fd57806326987b60146104265780632f745c591461045157610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630fbe4fe21461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613405565b610a24565b6040516102a0919061344d565b60405180910390f35b3480156102b557600080fd5b506102be610b6e565b6040516102cb9190613501565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613559565b610c00565b60405161030891906135c7565b60405180910390f35b34801561031d57600080fd5b506103386004803603810190610333919061360e565b610c85565b005b610354600480360381019061034f9190613559565b610d9e565b005b34801561036257600080fd5b5061037d6004803603810190610378919061364e565b611018565b60405161038a919061368a565b60405180910390f35b34801561039f57600080fd5b506103a8611030565b6040516103b5919061368a565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e09190613559565b611046565b6040516103f4939291906136a5565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f91906136dc565b61108a565b005b34801561043257600080fd5b5061043b6110fe565b604051610448919061368a565b60405180910390f35b34801561045d57600080fd5b506104786004803603810190610473919061360e565b611104565b604051610485919061368a565b60405180910390f35b34801561049a57600080fd5b506104a36112f6565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613559565b6113bb565b005b3480156104da57600080fd5b506104f560048036038101906104f091906136dc565b611441565b005b34801561050357600080fd5b5061050c6114c5565b604051610519919061368a565b60405180910390f35b34801561052e57600080fd5b506105376114cb565b604051610544919061368a565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190613559565b6114d5565b604051610581919061368a565b60405180910390f35b34801561059657600080fd5b5061059f611528565b005b3480156105ad57600080fd5b506105c860048036038101906105c39190613794565b6115d0565b005b3480156105d657600080fd5b506105f160048036038101906105ec9190613559565b611662565b6040516105fe91906135c7565b60405180910390f35b610621600480360381019061061c9190613559565b611678565b005b34801561062f57600080fd5b5061064a60048036038101906106459190613559565b6118f2565b005b34801561065857600080fd5b50610673600480360381019061066e9190613559565b611978565b005b34801561068157600080fd5b5061069c6004803603810190610697919061364e565b6119fe565b6040516106a9919061368a565b60405180910390f35b3480156106be57600080fd5b506106c7611ae7565b005b3480156106d557600080fd5b506106de611b6f565b6040516106eb919061368a565b60405180910390f35b34801561070057600080fd5b5061071b6004803603810190610716919061364e565b611b75565b604051610728919061368a565b60405180910390f35b34801561073d57600080fd5b50610746611b8d565b60405161075391906135c7565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613559565b611bb7565b005b34801561079157600080fd5b5061079a611c3d565b6040516107a79190613501565b60405180910390f35b3480156107bc57600080fd5b506107c5611ccf565b6040516107d2919061368a565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd919061380d565b611cd5565b005b34801561081057600080fd5b50610819611e56565b604051610826919061368a565b60405180910390f35b34801561083b57600080fd5b506108566004803603810190610851919061397d565b611e5c565b005b34801561086457600080fd5b5061086d611f1c565b60405161087a919061368a565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190613559565b611f32565b005b3480156108b857600080fd5b506108d360048036038101906108ce9190613559565b611fb8565b6040516108e09190613501565b60405180910390f35b3480156108f557600080fd5b506108fe612060565b60405161090b919061368a565b60405180910390f35b34801561092057600080fd5b5061093b60048036038101906109369190613559565b612066565b005b34801561094957600080fd5b50610964600480360381019061095f9190613a00565b6120ec565b604051610971919061344d565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c919061364e565b612180565b005b3480156109af57600080fd5b506109b8612278565b6040516109c5919061368a565b60405180910390f35b3480156109da57600080fd5b506109e361227e565b6040516109f0919061344d565b60405180910390f35b348015610a0557600080fd5b50610a0e612291565b604051610a1b919061368a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b675750610b6682612297565b5b9050919050565b606060018054610b7d90613a6f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba990613a6f565b8015610bf65780601f10610bcb57610100808354040283529160200191610bf6565b820191906000526020600020905b815481529060010190602001808311610bd957829003601f168201915b5050505050905090565b6000610c0b82612301565b610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190613b13565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c9082611662565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890613ba5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2061231a565b73ffffffffffffffffffffffffffffffffffffffff161480610d4f5750610d4e81610d4961231a565b6120ec565b5b610d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8590613c37565b60405180910390fd5b610d99838383612322565b505050565b600b60009054906101000a900460ff16610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490613ca3565b60405180910390fd5b34600f5482610dfc9190613cf2565b14610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390613d98565b60405180910390fd5b601054811115610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890613e04565b60405180910390fd5b600a546000541115610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613e70565b60405180910390fd5b600a54600182600054610edb9190613e90565b610ee59190613ee6565b1115610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90613f66565b60405180910390fd5b60115481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f749190613e90565b1115610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90613fd2565b60405180910390fd5b610fbf33826123d4565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100e9190613e90565b9250508190555050565b60136020528060005260406000206000915090505481565b600060016000546110419190613ee6565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff16156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e59061403e565b60405180910390fd5b6110f98383836123f2565b505050565b60005481565b600061110f836119fe565b8210611150576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611147906140d0565b60405180910390fd5b600061115a611030565b905060008060005b838110156112b4576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461125457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112a6578684141561129d5781955050505050506112f0565b83806001019450505b508080600101915050611162565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790614162565b60405180910390fd5b92915050565b6112fe61231a565b73ffffffffffffffffffffffffffffffffffffffff1661131c611b8d565b73ffffffffffffffffffffffffffffffffffffffff1614611372576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611369906141ce565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156113b8573d6000803e3d6000fd5b50565b6113c361231a565b73ffffffffffffffffffffffffffffffffffffffff166113e1611b8d565b73ffffffffffffffffffffffffffffffffffffffff1614611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e906141ce565b60405180910390fd5b8060108190555050565b6008600082815260200190815260200160002060000160009054906101000a900460ff16156114a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149c9061403e565b60405180910390fd5b6114c083838360405180602001604052806000815250611e5c565b505050565b600e5481565b6000600a54905090565b60006114df611030565b8210611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790614260565b60405180910390fd5b819050919050565b61153061231a565b73ffffffffffffffffffffffffffffffffffffffff1661154e611b8d565b73ffffffffffffffffffffffffffffffffffffffff16146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b906141ce565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6115d861231a565b73ffffffffffffffffffffffffffffffffffffffff166115f6611b8d565b73ffffffffffffffffffffffffffffffffffffffff161461164c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611643906141ce565b60405180910390fd5b81816003919061165d9291906132bc565b505050565b600061166d82612932565b600001519050919050565b600b60009054906101000a900460ff166116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90613ca3565b60405180910390fd5b34600c54826116d69190613cf2565b14611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90613d98565b60405180910390fd5b600d5481111561175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290613e04565b60405180910390fd5b600a5460005411156117a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179990613e70565b60405180910390fd5b600a546001826000546117b59190613e90565b6117bf9190613ee6565b1115611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613f66565b60405180910390fd5b600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184e9190613e90565b111561188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613fd2565b60405180910390fd5b61189933826123d4565b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118e89190613e90565b9250508190555050565b6118fa61231a565b73ffffffffffffffffffffffffffffffffffffffff16611918611b8d565b73ffffffffffffffffffffffffffffffffffffffff161461196e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611965906141ce565b60405180910390fd5b8060118190555050565b61198061231a565b73ffffffffffffffffffffffffffffffffffffffff1661199e611b8d565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb906141ce565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a66906142f2565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611aef61231a565b73ffffffffffffffffffffffffffffffffffffffff16611b0d611b8d565b73ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906141ce565b60405180910390fd5b611b6d6000612acc565b565b60105481565b60126020528060005260406000206000915090505481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bbf61231a565b73ffffffffffffffffffffffffffffffffffffffff16611bdd611b8d565b73ffffffffffffffffffffffffffffffffffffffff1614611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a906141ce565b60405180910390fd5b80600c8190555050565b606060028054611c4c90613a6f565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7890613a6f565b8015611cc55780601f10611c9a57610100808354040283529160200191611cc5565b820191906000526020600020905b815481529060010190602001808311611ca857829003601f168201915b5050505050905090565b600c5481565b611cdd61231a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d429061435e565b60405180910390fd5b8060076000611d5861231a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e0561231a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e4a919061344d565b60405180910390a35050565b60115481565b6008600083815260200190815260200160002060000160009054906101000a900460ff1615611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb79061403e565b60405180910390fd5b611ecb8484846123f2565b611ed784848484612b92565b611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d906143f0565b60405180910390fd5b50505050565b60006001600054611f2d9190613ee6565b905090565b611f3a61231a565b73ffffffffffffffffffffffffffffffffffffffff16611f58611b8d565b73ffffffffffffffffffffffffffffffffffffffff1614611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa5906141ce565b60405180910390fd5b80600d8190555050565b6060611fc382612301565b612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614482565b60405180910390fd5b600061200c612d1a565b905060008151141561202d5760405180602001604052806000815250612058565b8061203784612dac565b60405160200161204892919061452a565b6040516020818303038152906040525b915050919050565b600a5481565b61206e61231a565b73ffffffffffffffffffffffffffffffffffffffff1661208c611b8d565b73ffffffffffffffffffffffffffffffffffffffff16146120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d9906141ce565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61218861231a565b73ffffffffffffffffffffffffffffffffffffffff166121a6611b8d565b73ffffffffffffffffffffffffffffffffffffffff16146121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f3906141ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561226c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612263906145cb565b60405180910390fd5b61227581612acc565b50565b600f5481565b600b60009054906101000a900460ff1681565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156123135750600082115b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6123ee828260405180602001604052806000815250612f0d565b5050565b60006123fd82612932565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661242461231a565b73ffffffffffffffffffffffffffffffffffffffff161480612480575061244961231a565b73ffffffffffffffffffffffffffffffffffffffff1661246884610c00565b73ffffffffffffffffffffffffffffffffffffffff16145b8061249c575061249b826000015161249661231a565b6120ec565b5b9050806124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d59061465d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612550576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612547906146ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b790614781565b60405180910390fd5b6125cd8585856001612f1f565b6125dd6000848460000151612322565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128c25761282181612301565b156128c15782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461292b8585856001612f25565b5050505050565b61293a613342565b61294382612301565b612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297990614813565b60405180910390fd5b60008290505b60008110612a8b576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a7c578092505050612ac7565b50808060019003915050612988565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abe906148a5565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612bb38473ffffffffffffffffffffffffffffffffffffffff16612f2b565b15612d0d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bdc61231a565b8786866040518563ffffffff1660e01b8152600401612bfe949392919061491a565b6020604051808303816000875af1925050508015612c3a57506040513d601f19601f82011682018060405250810190612c37919061497b565b60015b612cbd573d8060008114612c6a576040519150601f19603f3d011682016040523d82523d6000602084013e612c6f565b606091505b50600081511415612cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac906143f0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d12565b600190505b949350505050565b606060038054612d2990613a6f565b80601f0160208091040260200160405190810160405280929190818152602001828054612d5590613a6f565b8015612da25780601f10612d7757610100808354040283529160200191612da2565b820191906000526020600020905b815481529060010190602001808311612d8557829003601f168201915b5050505050905090565b60606000821415612df4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f08565b600082905060005b60008214612e26578080612e0f906149a8565b915050600a82612e1f9190614a20565b9150612dfc565b60008167ffffffffffffffff811115612e4257612e41613852565b5b6040519080825280601f01601f191660200182016040528015612e745781602001600182028036833780820191505090505b5090505b60008514612f0157600182612e8d9190613ee6565b9150600a85612e9c9190614a51565b6030612ea89190613e90565b60f81b818381518110612ebe57612ebd614a82565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612efa9190614a20565b9450612e78565b8093505050505b919050565b612f1a8383836001612f3e565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fab90614b23565b60405180910390fd5b6000841415612ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fef90614bb5565b60405180910390fd5b6130056000868387612f1f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561329f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561328a5761324a6000888488612b92565b613289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613280906143f0565b60405180910390fd5b5b818060010192505080806001019150506131d3565b5080600081905550506132b56000868387612f25565b5050505050565b8280546132c890613a6f565b90600052602060002090601f0160209004810192826132ea5760008555613331565b82601f1061330357803560ff1916838001178555613331565b82800160010185558215613331579182015b82811115613330578235825591602001919060010190613315565b5b50905061333e919061337c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561339557600081600090555060010161337d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133e2816133ad565b81146133ed57600080fd5b50565b6000813590506133ff816133d9565b92915050565b60006020828403121561341b5761341a6133a3565b5b6000613429848285016133f0565b91505092915050565b60008115159050919050565b61344781613432565b82525050565b6000602082019050613462600083018461343e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134a2578082015181840152602081019050613487565b838111156134b1576000848401525b50505050565b6000601f19601f8301169050919050565b60006134d382613468565b6134dd8185613473565b93506134ed818560208601613484565b6134f6816134b7565b840191505092915050565b6000602082019050818103600083015261351b81846134c8565b905092915050565b6000819050919050565b61353681613523565b811461354157600080fd5b50565b6000813590506135538161352d565b92915050565b60006020828403121561356f5761356e6133a3565b5b600061357d84828501613544565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135b182613586565b9050919050565b6135c1816135a6565b82525050565b60006020820190506135dc60008301846135b8565b92915050565b6135eb816135a6565b81146135f657600080fd5b50565b600081359050613608816135e2565b92915050565b60008060408385031215613625576136246133a3565b5b6000613633858286016135f9565b925050602061364485828601613544565b9150509250929050565b600060208284031215613664576136636133a3565b5b6000613672848285016135f9565b91505092915050565b61368481613523565b82525050565b600060208201905061369f600083018461367b565b92915050565b60006060820190506136ba600083018661343e565b6136c7602083018561343e565b6136d4604083018461367b565b949350505050565b6000806000606084860312156136f5576136f46133a3565b5b6000613703868287016135f9565b9350506020613714868287016135f9565b925050604061372586828701613544565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126137545761375361372f565b5b8235905067ffffffffffffffff81111561377157613770613734565b5b60208301915083600182028301111561378d5761378c613739565b5b9250929050565b600080602083850312156137ab576137aa6133a3565b5b600083013567ffffffffffffffff8111156137c9576137c86133a8565b5b6137d58582860161373e565b92509250509250929050565b6137ea81613432565b81146137f557600080fd5b50565b600081359050613807816137e1565b92915050565b60008060408385031215613824576138236133a3565b5b6000613832858286016135f9565b9250506020613843858286016137f8565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61388a826134b7565b810181811067ffffffffffffffff821117156138a9576138a8613852565b5b80604052505050565b60006138bc613399565b90506138c88282613881565b919050565b600067ffffffffffffffff8211156138e8576138e7613852565b5b6138f1826134b7565b9050602081019050919050565b82818337600083830152505050565b600061392061391b846138cd565b6138b2565b90508281526020810184848401111561393c5761393b61384d565b5b6139478482856138fe565b509392505050565b600082601f8301126139645761396361372f565b5b813561397484826020860161390d565b91505092915050565b60008060008060808587031215613997576139966133a3565b5b60006139a5878288016135f9565b94505060206139b6878288016135f9565b93505060406139c787828801613544565b925050606085013567ffffffffffffffff8111156139e8576139e76133a8565b5b6139f48782880161394f565b91505092959194509250565b60008060408385031215613a1757613a166133a3565b5b6000613a25858286016135f9565b9250506020613a36858286016135f9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a8757607f821691505b60208210811415613a9b57613a9a613a40565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613afd602d83613473565b9150613b0882613aa1565b604082019050919050565b60006020820190508181036000830152613b2c81613af0565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b8f602283613473565b9150613b9a82613b33565b604082019050919050565b60006020820190508181036000830152613bbe81613b82565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613c21603983613473565b9150613c2c82613bc5565b604082019050919050565b60006020820190508181036000830152613c5081613c14565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000613c8d601083613473565b9150613c9882613c57565b602082019050919050565b60006020820190508181036000830152613cbc81613c80565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cfd82613523565b9150613d0883613523565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4157613d40613cc3565b5b828202905092915050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b6000613d82601183613473565b9150613d8d82613d4c565b602082019050919050565b60006020820190508181036000830152613db181613d75565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b6000613dee601383613473565b9150613df982613db8565b602082019050919050565b60006020820190508181036000830152613e1d81613de1565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b6000613e5a601283613473565b9150613e6582613e24565b602082019050919050565b60006020820190508181036000830152613e8981613e4d565b9050919050565b6000613e9b82613523565b9150613ea683613523565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613edb57613eda613cc3565b5b828201905092915050565b6000613ef182613523565b9150613efc83613523565b925082821015613f0f57613f0e613cc3565b5b828203905092915050565b7f4e4f545f454e4f5547485f544f4b454e53000000000000000000000000000000600082015250565b6000613f50601183613473565b9150613f5b82613f1a565b602082019050919050565b60006020820190508181036000830152613f7f81613f43565b9050919050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b6000613fbc601783613473565b9150613fc782613f86565b602082019050919050565b60006020820190508181036000830152613feb81613faf565b9050919050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b6000614028600d83613473565b915061403382613ff2565b602082019050919050565b600060208201905081810360008301526140578161401b565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006140ba602283613473565b91506140c58261405e565b604082019050919050565b600060208201905081810360008301526140e9816140ad565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061414c602e83613473565b9150614157826140f0565b604082019050919050565b6000602082019050818103600083015261417b8161413f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141b8602083613473565b91506141c382614182565b602082019050919050565b600060208201905081810360008301526141e7816141ab565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061424a602383613473565b9150614255826141ee565b604082019050919050565b600060208201905081810360008301526142798161423d565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006142dc602b83613473565b91506142e782614280565b604082019050919050565b6000602082019050818103600083015261430b816142cf565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614348601a83613473565b915061435382614312565b602082019050919050565b600060208201905081810360008301526143778161433b565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006143da603383613473565b91506143e58261437e565b604082019050919050565b60006020820190508181036000830152614409816143cd565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061446c602f83613473565b915061447782614410565b604082019050919050565b6000602082019050818103600083015261449b8161445f565b9050919050565b600081905092915050565b60006144b882613468565b6144c281856144a2565b93506144d2818560208601613484565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006145146005836144a2565b915061451f826144de565b600582019050919050565b600061453682856144ad565b915061454282846144ad565b915061454d82614507565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145b5602683613473565b91506145c082614559565b604082019050919050565b600060208201905081810360008301526145e4816145a8565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614647603283613473565b9150614652826145eb565b604082019050919050565b600060208201905081810360008301526146768161463a565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006146d9602683613473565b91506146e48261467d565b604082019050919050565b60006020820190508181036000830152614708816146cc565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061476b602583613473565b91506147768261470f565b604082019050919050565b6000602082019050818103600083015261479a8161475e565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006147fd602a83613473565b9150614808826147a1565b604082019050919050565b6000602082019050818103600083015261482c816147f0565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061488f602f83613473565b915061489a82614833565b604082019050919050565b600060208201905081810360008301526148be81614882565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148ec826148c5565b6148f681856148d0565b9350614906818560208601613484565b61490f816134b7565b840191505092915050565b600060808201905061492f60008301876135b8565b61493c60208301866135b8565b614949604083018561367b565b818103606083015261495b81846148e1565b905095945050505050565b600081519050614975816133d9565b92915050565b600060208284031215614991576149906133a3565b5b600061499f84828501614966565b91505092915050565b60006149b382613523565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149e6576149e5613cc3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a2b82613523565b9150614a3683613523565b925082614a4657614a456149f1565b5b828204905092915050565b6000614a5c82613523565b9150614a6783613523565b925082614a7757614a766149f1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b0d602183613473565b9150614b1882614ab1565b604082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614b9f602883613473565b9150614baa82614b43565b604082019050919050565b60006020820190508181036000830152614bce81614b92565b905091905056fea2646970667358221220ed69e1c812ec45cbccb2a8b6574d434eaf63c2b33cd1ad5c31ff5435e55d527a64736f6c634300080c0033

Deployed Bytecode Sourcemap

38686:3465:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25336:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27222:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28794:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28315:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41002:581;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39361:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23589:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23339:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;29670:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22588:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24257:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39642:109;;;;;;;;;;;;;:::i;:::-;;40254:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29970:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38933:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40680:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23770:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39759:87;;;;;;;;;;;;;:::i;:::-;;40480:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27031:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41591:557;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40363:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39854:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25772:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4365:94;;;;;;;;;;;;;:::i;:::-;;39004:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39312:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3714:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39953:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27391:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38856:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29080:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39043:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30285:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40578:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40048:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27566:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38792:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40149:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29439:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4614:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38968:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38827:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38898:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25336:372;25438:4;25490:25;25475:40;;;:11;:40;;;;:105;;;;25547:33;25532:48;;;:11;:48;;;;25475:105;:172;;;;25612:35;25597:50;;;:11;:50;;;;25475:172;:225;;;;25664:36;25688:11;25664:23;:36::i;:::-;25475:225;25455:245;;25336:372;;;:::o;27222:100::-;27276:13;27309:5;27302:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27222:100;:::o;28794:214::-;28862:7;28890:16;28898:7;28890;:16::i;:::-;28882:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28976:15;:24;28992:7;28976:24;;;;;;;;;;;;;;;;;;;;;28969:31;;28794:214;;;:::o;28315:413::-;28388:13;28404:24;28420:7;28404:15;:24::i;:::-;28388:40;;28453:5;28447:11;;:2;:11;;;;28439:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28548:5;28532:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28557:37;28574:5;28581:12;:10;:12::i;:::-;28557:16;:37::i;:::-;28532:62;28510:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;28692:28;28701:2;28705:7;28714:5;28692:8;:28::i;:::-;28377:351;28315:413;;:::o;41002:581::-;41072:10;;;;;;;;;;;41064:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;41148:9;41131:13;;41122:6;:22;;;;:::i;:::-;:35;41114:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41208:12;;41198:6;:22;;41190:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;41279:9;;41263:12;;:25;;41255:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;41361:9;;41355:1;41347:6;41332:12;;:21;;;;:::i;:::-;41331:25;;;;:::i;:::-;41330:40;;41322:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;41447:16;;41437:6;41411:11;:23;41423:10;41411:23;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:52;;41403:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;41502:29;41512:10;41524:6;41502:9;:29::i;:::-;41569:6;41542:11;:23;41554:10;41542:23;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;41002:581;:::o;39361:43::-;;;;;;;;;;;;;;;;;:::o;23589:104::-;23642:7;23684:1;23669:12;;:16;;;;:::i;:::-;23662:23;;23589:104;:::o;23339:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29670:229::-;29805:13;:22;29819:7;29805:22;;;;;;;;;;;:29;;;;;;;;;;;;29804:30;29796:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;29863:28;29873:4;29879:2;29883:7;29863:9;:28::i;:::-;29670:229;;;:::o;22588:31::-;;;;:::o;24257:1007::-;24346:7;24382:16;24392:5;24382:9;:16::i;:::-;24374:5;:24;24366:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24448:22;24473:13;:11;:13::i;:::-;24448:38;;24497:19;24527:25;24716:9;24711:466;24731:14;24727:1;:18;24711:466;;;24771:31;24805:11;:14;24817:1;24805:14;;;;;;;;;;;24771:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24868:1;24842:28;;:9;:14;;;:28;;;24838:111;;24915:9;:14;;;24895:34;;24838:111;24992:5;24971:26;;:17;:26;;;24967:195;;;25041:5;25026:11;:20;25022:85;;;25082:1;25075:8;;;;;;;;;25022:85;25129:13;;;;;;;24967:195;24752:425;24747:3;;;;;;;24711:466;;;;25200:56;;;;;;;;;;:::i;:::-;;;;;;;;24257:1007;;;;;:::o;39642:109::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39700:10:::1;39692:28;;:51;39721:21;39692:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;39642:109::o:0;40254:97::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40337:6:::1;40322:12;:21;;;;40254:97:::0;:::o;29970:244::-;30109:13;:22;30123:7;30109:22;;;;;;;;;;;:29;;;;;;;;;;;;30108:30;30100:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30167:39;30184:4;30190:2;30194:7;30167:39;;;;;;;;;;;;:16;:39::i;:::-;29970:244;;;:::o;38933:28::-;;;;:::o;40680:85::-;40724:4;40748:9;;40741:16;;40680:85;:::o;23770:187::-;23837:7;23873:13;:11;:13::i;:::-;23865:5;:21;23857:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23944:5;23937:12;;23770:187;;;:::o;39759:87::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39828:10:::1;;;;;;;;;;;39827:11;39814:10;;:24;;;;;;;;;;;;;;;;;;39759:87::o:0;40480:90::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40558:4:::1;;40552:3;:10;;;;;;;:::i;:::-;;40480:90:::0;;:::o;27031:124::-;27095:7;27122:20;27134:7;27122:11;:20::i;:::-;:25;;;27115:32;;27031:124;;;:::o;41591:557::-;41661:10;;;;;;;;;;;41653:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;41729:9;41720:5;;41711:6;:14;;;;:::i;:::-;:27;41703:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41789:8;;41779:6;:18;;41771:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;41856:9;;41840:12;;:25;;41832:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;41938:9;;41932:1;41924:6;41909:12;;:21;;;;:::i;:::-;41908:25;;;;:::i;:::-;41907:40;;41899:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;42020:12;;42010:6;41988:7;:19;41996:10;41988:19;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:44;;41980:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;42071:29;42081:10;42093:6;42071:9;:29::i;:::-;42134:6;42111:7;:19;42119:10;42111:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;41591:557;:::o;40363:105::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40454:6:::1;40435:16;:25;;;;40363:105:::0;:::o;39854:91::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39931:6:::1;39919:9;:18;;;;39854:91:::0;:::o;25772:221::-;25836:7;25881:1;25864:19;;:5;:19;;;;25856:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25957:12;:19;25970:5;25957:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25949:36;;25942:43;;25772:221;;;:::o;4365:94::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4430:21:::1;4448:1;4430:9;:21::i;:::-;4365:94::o:0;39004:28::-;;;;:::o;39312:39::-;;;;;;;;;;;;;;;;;:::o;3714:87::-;3760:7;3787:6;;;;;;;;;;;3780:13;;3714:87;:::o;39953:83::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40022:6:::1;40014:5;:14;;;;39953:83:::0;:::o;27391:104::-;27447:13;27480:7;27473:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27391:104;:::o;38856:32::-;;;;:::o;29080:288::-;29187:12;:10;:12::i;:::-;29175:24;;:8;:24;;;;29167:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29288:8;29243:18;:32;29262:12;:10;:12::i;:::-;29243:32;;;;;;;;;;;;;;;:42;29276:8;29243:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29341:8;29312:48;;29327:12;:10;:12::i;:::-;29312:48;;;29351:8;29312:48;;;;;;:::i;:::-;;;;;;;;29080:288;;:::o;39043:32::-;;;;:::o;30285:422::-;30453:13;:22;30467:7;30453:22;;;;;;;;;;;:29;;;;;;;;;;;;30452:30;30444:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30511:28;30521:4;30527:2;30531:7;30511:9;:28::i;:::-;30572:48;30595:4;30601:2;30605:7;30614:5;30572:22;:48::i;:::-;30550:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;30285:422;;;;:::o;40578:94::-;40624:4;40663:1;40648:12;;:16;;;;:::i;:::-;40641:23;;40578:94;:::o;40048:89::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40123:6:::1;40112:8;:17;;;;40048:89:::0;:::o;27566:344::-;27639:13;27673:16;27681:7;27673;:16::i;:::-;27665:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27754:21;27778:10;:8;:10::i;:::-;27754:34;;27831:1;27812:7;27806:21;:26;;:96;;;;;;;;;;;;;;;;;27859:7;27868:18;:7;:16;:18::i;:::-;27842:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27806:96;27799:103;;;27566:344;;;:::o;38792:28::-;;;;:::o;40149:97::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40232:6:::1;40217:12;:21;;;;40149:97:::0;:::o;29439:164::-;29536:4;29560:18;:25;29579:5;29560:25;;;;;;;;;;;;;;;:35;29586:8;29560:35;;;;;;;;;;;;;;;;;;;;;;;;;29553:42;;29439:164;;;;:::o;4614:192::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4723:1:::1;4703:22;;:8;:22;;;;4695:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4779:19;4789:8;4779:9;:19::i;:::-;4614:192:::0;:::o;38968:29::-;;;;:::o;38827:22::-;;;;;;;;;;;;;:::o;38898:24::-;;;;:::o;15316:157::-;15401:4;15440:25;15425:40;;;:11;:40;;;;15418:47;;15316:157;;;:::o;30962:126::-;31019:4;31053:12;;31043:7;:22;:37;;;;;31079:1;31069:7;:11;31043:37;31036:44;;30962:126;;;:::o;2590:98::-;2643:7;2670:10;2663:17;;2590:98;:::o;35897:196::-;36039:2;36012:15;:24;36028:7;36012:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36077:7;36073:2;36057:28;;36066:5;36057:28;;;;;;;;;;;;35897:196;;;:::o;31096:104::-;31165:27;31175:2;31179:8;31165:27;;;;;;;;;;;;:9;:27::i;:::-;31096:104;;:::o;33777:2002::-;33892:35;33930:20;33942:7;33930:11;:20::i;:::-;33892:58;;33963:22;34005:13;:18;;;33989:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;34064:12;:10;:12::i;:::-;34040:36;;:20;34052:7;34040:11;:20::i;:::-;:36;;;33989:87;:154;;;;34093:50;34110:13;:18;;;34130:12;:10;:12::i;:::-;34093:16;:50::i;:::-;33989:154;33963:181;;34165:17;34157:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;34280:4;34258:26;;:13;:18;;;:26;;;34250:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;34360:1;34346:16;;:2;:16;;;;34338:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34417:43;34439:4;34445:2;34449:7;34458:1;34417:21;:43::i;:::-;34525:49;34542:1;34546:7;34555:13;:18;;;34525:8;:49::i;:::-;34900:1;34870:12;:18;34883:4;34870:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34944:1;34916:12;:16;34929:2;34916:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34990:2;34962:11;:20;34974:7;34962:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;35052:15;35007:11;:20;35019:7;35007:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;35320:19;35352:1;35342:7;:11;35320:33;;35413:1;35372:43;;:11;:24;35384:11;35372:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35368:295;;;35440:20;35448:11;35440:7;:20::i;:::-;35436:212;;;35517:13;:18;;;35485:11;:24;35497:11;35485:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;35600:13;:28;;;35558:11;:24;35570:11;35558:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;35436:212;35368:295;34845:829;35710:7;35706:2;35691:27;;35700:4;35691:27;;;;;;;;;;;;35729:42;35750:4;35756:2;35760:7;35769:1;35729:20;:42::i;:::-;33881:1898;;33777:2002;;;:::o;26432:537::-;26493:21;;:::i;:::-;26535:16;26543:7;26535;:16::i;:::-;26527:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26641:12;26656:7;26641:22;;26636:245;26673:1;26665:4;:9;26636:245;;26703:31;26737:11;:17;26749:4;26737:17;;;;;;;;;;;26703:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26803:1;26777:28;;:9;:14;;;:28;;;26773:93;;26837:9;26830:16;;;;;;26773:93;26684:197;26676:6;;;;;;;;26636:245;;;;26904:57;;;;;;;;;;:::i;:::-;;;;;;;;26432:537;;;;:::o;4814:173::-;4870:16;4889:6;;;;;;;;;;;4870:25;;4915:8;4906:6;;:17;;;;;;;;;;;;;;;;;;4970:8;4939:40;;4960:8;4939:40;;;;;;;;;;;;4859:128;4814:173;:::o;36658:804::-;36813:4;36834:15;:2;:13;;;:15::i;:::-;36830:625;;;36886:2;36870:36;;;36907:12;:10;:12::i;:::-;36921:4;36927:7;36936:5;36870:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36866:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37133:1;37116:6;:13;:18;37112:273;;;37159:61;;;;;;;;;;:::i;:::-;;;;;;;;37112:273;37335:6;37329:13;37320:6;37316:2;37312:15;37305:38;36866:534;37003:45;;;36993:55;;;:6;:55;;;;36986:62;;;;;36830:625;37439:4;37432:11;;36658:804;;;;;;;:::o;28158:95::-;28209:13;28242:3;28235:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28158:95;:::o;289:723::-;345:13;575:1;566:5;:10;562:53;;;593:10;;;;;;;;;;;;;;;;;;;;;562:53;625:12;640:5;625:20;;656:14;681:78;696:1;688:4;:9;681:78;;714:8;;;;;:::i;:::-;;;;745:2;737:10;;;;;:::i;:::-;;;681:78;;;769:19;801:6;791:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;769:39;;819:154;835:1;826:5;:10;819:154;;863:1;853:11;;;;;:::i;:::-;;;930:2;922:5;:10;;;;:::i;:::-;909:2;:24;;;;:::i;:::-;896:39;;879:6;886;879:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;959:2;950:11;;;;;:::i;:::-;;;819:154;;;997:6;983:21;;;;;289:723;;;;:::o;31563:163::-;31686:32;31692:2;31696:8;31706:5;31713:4;31686:5;:32::i;:::-;31563:163;;;:::o;37950:159::-;;;;;:::o;38521:158::-;;;;;:::o;5675:387::-;5735:4;5943:12;6010:7;5998:20;5990:28;;6053:1;6046:4;:8;6039:15;;;5675:387;;;:::o;31985:1538::-;32124:20;32147:12;;32124:35;;32192:1;32178:16;;:2;:16;;;;32170:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32263:1;32251:8;:13;;32243:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32322:61;32352:1;32356:2;32360:12;32374:8;32322:21;:61::i;:::-;32697:8;32661:12;:16;32674:2;32661:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32762:8;32721:12;:16;32734:2;32721:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32821:2;32788:11;:25;32800:12;32788:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32888:15;32838:11;:25;32850:12;32838:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32921:20;32944:12;32921:35;;32978:9;32973:415;32993:8;32989:1;:12;32973:415;;;33057:12;33053:2;33032:38;;33049:1;33032:38;;;;;;;;;;;;33093:4;33089:249;;;33156:59;33187:1;33191:2;33195:12;33209:5;33156:22;:59::i;:::-;33122:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;33089:249;33358:14;;;;;;;33003:3;;;;;;;32973:415;;;;33419:12;33404;:27;;;;32636:807;33455:60;33484:1;33488:2;33492:12;33506:8;33455:20;:60::i;:::-;32113:1410;31985:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:329::-;4997:6;5046:2;5034:9;5025:7;5021:23;5017:32;5014:119;;;5052:79;;:::i;:::-;5014:119;5172:1;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5143:117;4938:329;;;;:::o;5273:118::-;5360:24;5378:5;5360:24;:::i;:::-;5355:3;5348:37;5273:118;;:::o;5397:222::-;5490:4;5528:2;5517:9;5513:18;5505:26;;5541:71;5609:1;5598:9;5594:17;5585:6;5541:71;:::i;:::-;5397:222;;;;:::o;5625:418::-;5762:4;5800:2;5789:9;5785:18;5777:26;;5813:65;5875:1;5864:9;5860:17;5851:6;5813:65;:::i;:::-;5888:66;5950:2;5939:9;5935:18;5926:6;5888:66;:::i;:::-;5964:72;6032:2;6021:9;6017:18;6008:6;5964:72;:::i;:::-;5625:418;;;;;;:::o;6049:619::-;6126:6;6134;6142;6191:2;6179:9;6170:7;6166:23;6162:32;6159:119;;;6197:79;;:::i;:::-;6159:119;6317:1;6342:53;6387:7;6378:6;6367:9;6363:22;6342:53;:::i;:::-;6332:63;;6288:117;6444:2;6470:53;6515:7;6506:6;6495:9;6491:22;6470:53;:::i;:::-;6460:63;;6415:118;6572:2;6598:53;6643:7;6634:6;6623:9;6619:22;6598:53;:::i;:::-;6588:63;;6543:118;6049:619;;;;;:::o;6674:117::-;6783:1;6780;6773:12;6797:117;6906:1;6903;6896:12;6920:117;7029:1;7026;7019:12;7057:553;7115:8;7125:6;7175:3;7168:4;7160:6;7156:17;7152:27;7142:122;;7183:79;;:::i;:::-;7142:122;7296:6;7283:20;7273:30;;7326:18;7318:6;7315:30;7312:117;;;7348:79;;:::i;:::-;7312:117;7462:4;7454:6;7450:17;7438:29;;7516:3;7508:4;7500:6;7496:17;7486:8;7482:32;7479:41;7476:128;;;7523:79;;:::i;:::-;7476:128;7057:553;;;;;:::o;7616:529::-;7687:6;7695;7744:2;7732:9;7723:7;7719:23;7715:32;7712:119;;;7750:79;;:::i;:::-;7712:119;7898:1;7887:9;7883:17;7870:31;7928:18;7920:6;7917:30;7914:117;;;7950:79;;:::i;:::-;7914:117;8063:65;8120:7;8111:6;8100:9;8096:22;8063:65;:::i;:::-;8045:83;;;;7841:297;7616:529;;;;;:::o;8151:116::-;8221:21;8236:5;8221:21;:::i;:::-;8214:5;8211:32;8201:60;;8257:1;8254;8247:12;8201:60;8151:116;:::o;8273:133::-;8316:5;8354:6;8341:20;8332:29;;8370:30;8394:5;8370:30;:::i;:::-;8273:133;;;;:::o;8412:468::-;8477:6;8485;8534:2;8522:9;8513:7;8509:23;8505:32;8502:119;;;8540:79;;:::i;:::-;8502:119;8660:1;8685:53;8730:7;8721:6;8710:9;8706:22;8685:53;:::i;:::-;8675:63;;8631:117;8787:2;8813:50;8855:7;8846:6;8835:9;8831:22;8813:50;:::i;:::-;8803:60;;8758:115;8412:468;;;;;:::o;8886:117::-;8995:1;8992;8985:12;9009:180;9057:77;9054:1;9047:88;9154:4;9151:1;9144:15;9178:4;9175:1;9168:15;9195:281;9278:27;9300:4;9278:27;:::i;:::-;9270:6;9266:40;9408:6;9396:10;9393:22;9372:18;9360:10;9357:34;9354:62;9351:88;;;9419:18;;:::i;:::-;9351:88;9459:10;9455:2;9448:22;9238:238;9195:281;;:::o;9482:129::-;9516:6;9543:20;;:::i;:::-;9533:30;;9572:33;9600:4;9592:6;9572:33;:::i;:::-;9482:129;;;:::o;9617:307::-;9678:4;9768:18;9760:6;9757:30;9754:56;;;9790:18;;:::i;:::-;9754:56;9828:29;9850:6;9828:29;:::i;:::-;9820:37;;9912:4;9906;9902:15;9894:23;;9617:307;;;:::o;9930:154::-;10014:6;10009:3;10004;9991:30;10076:1;10067:6;10062:3;10058:16;10051:27;9930:154;;;:::o;10090:410::-;10167:5;10192:65;10208:48;10249:6;10208:48;:::i;:::-;10192:65;:::i;:::-;10183:74;;10280:6;10273:5;10266:21;10318:4;10311:5;10307:16;10356:3;10347:6;10342:3;10338:16;10335:25;10332:112;;;10363:79;;:::i;:::-;10332:112;10453:41;10487:6;10482:3;10477;10453:41;:::i;:::-;10173:327;10090:410;;;;;:::o;10519:338::-;10574:5;10623:3;10616:4;10608:6;10604:17;10600:27;10590:122;;10631:79;;:::i;:::-;10590:122;10748:6;10735:20;10773:78;10847:3;10839:6;10832:4;10824:6;10820:17;10773:78;:::i;:::-;10764:87;;10580:277;10519:338;;;;:::o;10863:943::-;10958:6;10966;10974;10982;11031:3;11019:9;11010:7;11006:23;11002:33;10999:120;;;11038:79;;:::i;:::-;10999:120;11158:1;11183:53;11228:7;11219:6;11208:9;11204:22;11183:53;:::i;:::-;11173:63;;11129:117;11285:2;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11256:118;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11569:2;11558:9;11554:18;11541:32;11600:18;11592:6;11589:30;11586:117;;;11622:79;;:::i;:::-;11586:117;11727:62;11781:7;11772:6;11761:9;11757:22;11727:62;:::i;:::-;11717:72;;11512:287;10863:943;;;;;;;:::o;11812:474::-;11880:6;11888;11937:2;11925:9;11916:7;11912:23;11908:32;11905:119;;;11943:79;;:::i;:::-;11905:119;12063:1;12088:53;12133:7;12124:6;12113:9;12109:22;12088:53;:::i;:::-;12078:63;;12034:117;12190:2;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12161:118;11812:474;;;;;:::o;12292:180::-;12340:77;12337:1;12330:88;12437:4;12434:1;12427:15;12461:4;12458:1;12451:15;12478:320;12522:6;12559:1;12553:4;12549:12;12539:22;;12606:1;12600:4;12596:12;12627:18;12617:81;;12683:4;12675:6;12671:17;12661:27;;12617:81;12745:2;12737:6;12734:14;12714:18;12711:38;12708:84;;;12764:18;;:::i;:::-;12708:84;12529:269;12478:320;;;:::o;12804:232::-;12944:34;12940:1;12932:6;12928:14;12921:58;13013:15;13008:2;13000:6;12996:15;12989:40;12804:232;:::o;13042:366::-;13184:3;13205:67;13269:2;13264:3;13205:67;:::i;:::-;13198:74;;13281:93;13370:3;13281:93;:::i;:::-;13399:2;13394:3;13390:12;13383:19;;13042:366;;;:::o;13414:419::-;13580:4;13618:2;13607:9;13603:18;13595:26;;13667:9;13661:4;13657:20;13653:1;13642:9;13638:17;13631:47;13695:131;13821:4;13695:131;:::i;:::-;13687:139;;13414:419;;;:::o;13839:221::-;13979:34;13975:1;13967:6;13963:14;13956:58;14048:4;14043:2;14035:6;14031:15;14024:29;13839:221;:::o;14066:366::-;14208:3;14229:67;14293:2;14288:3;14229:67;:::i;:::-;14222:74;;14305:93;14394:3;14305:93;:::i;:::-;14423:2;14418:3;14414:12;14407:19;;14066:366;;;:::o;14438:419::-;14604:4;14642:2;14631:9;14627:18;14619:26;;14691:9;14685:4;14681:20;14677:1;14666:9;14662:17;14655:47;14719:131;14845:4;14719:131;:::i;:::-;14711:139;;14438:419;;;:::o;14863:244::-;15003:34;14999:1;14991:6;14987:14;14980:58;15072:27;15067:2;15059:6;15055:15;15048:52;14863:244;:::o;15113:366::-;15255:3;15276:67;15340:2;15335:3;15276:67;:::i;:::-;15269:74;;15352:93;15441:3;15352:93;:::i;:::-;15470:2;15465:3;15461:12;15454:19;;15113:366;;;:::o;15485:419::-;15651:4;15689:2;15678:9;15674:18;15666:26;;15738:9;15732:4;15728:20;15724:1;15713:9;15709:17;15702:47;15766:131;15892:4;15766:131;:::i;:::-;15758:139;;15485:419;;;:::o;15910:166::-;16050:18;16046:1;16038:6;16034:14;16027:42;15910:166;:::o;16082:366::-;16224:3;16245:67;16309:2;16304:3;16245:67;:::i;:::-;16238:74;;16321:93;16410:3;16321:93;:::i;:::-;16439:2;16434:3;16430:12;16423:19;;16082:366;;;:::o;16454:419::-;16620:4;16658:2;16647:9;16643:18;16635:26;;16707:9;16701:4;16697:20;16693:1;16682:9;16678:17;16671:47;16735:131;16861:4;16735:131;:::i;:::-;16727:139;;16454:419;;;:::o;16879:180::-;16927:77;16924:1;16917:88;17024:4;17021:1;17014:15;17048:4;17045:1;17038:15;17065:348;17105:7;17128:20;17146:1;17128:20;:::i;:::-;17123:25;;17162:20;17180:1;17162:20;:::i;:::-;17157:25;;17350:1;17282:66;17278:74;17275:1;17272:81;17267:1;17260:9;17253:17;17249:105;17246:131;;;17357:18;;:::i;:::-;17246:131;17405:1;17402;17398:9;17387:20;;17065:348;;;;:::o;17419:167::-;17559:19;17555:1;17547:6;17543:14;17536:43;17419:167;:::o;17592:366::-;17734:3;17755:67;17819:2;17814:3;17755:67;:::i;:::-;17748:74;;17831:93;17920:3;17831:93;:::i;:::-;17949:2;17944:3;17940:12;17933:19;;17592:366;;;:::o;17964:419::-;18130:4;18168:2;18157:9;18153:18;18145:26;;18217:9;18211:4;18207:20;18203:1;18192:9;18188:17;18181:47;18245:131;18371:4;18245:131;:::i;:::-;18237:139;;17964:419;;;:::o;18389:169::-;18529:21;18525:1;18517:6;18513:14;18506:45;18389:169;:::o;18564:366::-;18706:3;18727:67;18791:2;18786:3;18727:67;:::i;:::-;18720:74;;18803:93;18892:3;18803:93;:::i;:::-;18921:2;18916:3;18912:12;18905:19;;18564:366;;;:::o;18936:419::-;19102:4;19140:2;19129:9;19125:18;19117:26;;19189:9;19183:4;19179:20;19175:1;19164:9;19160:17;19153:47;19217:131;19343:4;19217:131;:::i;:::-;19209:139;;18936:419;;;:::o;19361:168::-;19501:20;19497:1;19489:6;19485:14;19478:44;19361:168;:::o;19535:366::-;19677:3;19698:67;19762:2;19757:3;19698:67;:::i;:::-;19691:74;;19774:93;19863:3;19774:93;:::i;:::-;19892:2;19887:3;19883:12;19876:19;;19535:366;;;:::o;19907:419::-;20073:4;20111:2;20100:9;20096:18;20088:26;;20160:9;20154:4;20150:20;20146:1;20135:9;20131:17;20124:47;20188:131;20314:4;20188:131;:::i;:::-;20180:139;;19907:419;;;:::o;20332:305::-;20372:3;20391:20;20409:1;20391:20;:::i;:::-;20386:25;;20425:20;20443:1;20425:20;:::i;:::-;20420:25;;20579:1;20511:66;20507:74;20504:1;20501:81;20498:107;;;20585:18;;:::i;:::-;20498:107;20629:1;20626;20622:9;20615:16;;20332:305;;;;:::o;20643:191::-;20683:4;20703:20;20721:1;20703:20;:::i;:::-;20698:25;;20737:20;20755:1;20737:20;:::i;:::-;20732:25;;20776:1;20773;20770:8;20767:34;;;20781:18;;:::i;:::-;20767:34;20826:1;20823;20819:9;20811:17;;20643:191;;;;:::o;20840:167::-;20980:19;20976:1;20968:6;20964:14;20957:43;20840:167;:::o;21013:366::-;21155:3;21176:67;21240:2;21235:3;21176:67;:::i;:::-;21169:74;;21252:93;21341:3;21252:93;:::i;:::-;21370:2;21365:3;21361:12;21354:19;;21013:366;;;:::o;21385:419::-;21551:4;21589:2;21578:9;21574:18;21566:26;;21638:9;21632:4;21628:20;21624:1;21613:9;21609:17;21602:47;21666:131;21792:4;21666:131;:::i;:::-;21658:139;;21385:419;;;:::o;21810:173::-;21950:25;21946:1;21938:6;21934:14;21927:49;21810:173;:::o;21989:366::-;22131:3;22152:67;22216:2;22211:3;22152:67;:::i;:::-;22145:74;;22228:93;22317:3;22228:93;:::i;:::-;22346:2;22341:3;22337:12;22330:19;;21989:366;;;:::o;22361:419::-;22527:4;22565:2;22554:9;22550:18;22542:26;;22614:9;22608:4;22604:20;22600:1;22589:9;22585:17;22578:47;22642:131;22768:4;22642:131;:::i;:::-;22634:139;;22361:419;;;:::o;22786:163::-;22926:15;22922:1;22914:6;22910:14;22903:39;22786:163;:::o;22955:366::-;23097:3;23118:67;23182:2;23177:3;23118:67;:::i;:::-;23111:74;;23194:93;23283:3;23194:93;:::i;:::-;23312:2;23307:3;23303:12;23296:19;;22955:366;;;:::o;23327:419::-;23493:4;23531:2;23520:9;23516:18;23508:26;;23580:9;23574:4;23570:20;23566:1;23555:9;23551:17;23544:47;23608:131;23734:4;23608:131;:::i;:::-;23600:139;;23327:419;;;:::o;23752:221::-;23892:34;23888:1;23880:6;23876:14;23869:58;23961:4;23956:2;23948:6;23944:15;23937:29;23752:221;:::o;23979:366::-;24121:3;24142:67;24206:2;24201:3;24142:67;:::i;:::-;24135:74;;24218:93;24307:3;24218:93;:::i;:::-;24336:2;24331:3;24327:12;24320:19;;23979:366;;;:::o;24351:419::-;24517:4;24555:2;24544:9;24540:18;24532:26;;24604:9;24598:4;24594:20;24590:1;24579:9;24575:17;24568:47;24632:131;24758:4;24632:131;:::i;:::-;24624:139;;24351:419;;;:::o;24776:233::-;24916:34;24912:1;24904:6;24900:14;24893:58;24985:16;24980:2;24972:6;24968:15;24961:41;24776:233;:::o;25015:366::-;25157:3;25178:67;25242:2;25237:3;25178:67;:::i;:::-;25171:74;;25254:93;25343:3;25254:93;:::i;:::-;25372:2;25367:3;25363:12;25356:19;;25015:366;;;:::o;25387:419::-;25553:4;25591:2;25580:9;25576:18;25568:26;;25640:9;25634:4;25630:20;25626:1;25615:9;25611:17;25604:47;25668:131;25794:4;25668:131;:::i;:::-;25660:139;;25387:419;;;:::o;25812:182::-;25952:34;25948:1;25940:6;25936:14;25929:58;25812:182;:::o;26000:366::-;26142:3;26163:67;26227:2;26222:3;26163:67;:::i;:::-;26156:74;;26239:93;26328:3;26239:93;:::i;:::-;26357:2;26352:3;26348:12;26341:19;;26000:366;;;:::o;26372:419::-;26538:4;26576:2;26565:9;26561:18;26553:26;;26625:9;26619:4;26615:20;26611:1;26600:9;26596:17;26589:47;26653:131;26779:4;26653:131;:::i;:::-;26645:139;;26372:419;;;:::o;26797:222::-;26937:34;26933:1;26925:6;26921:14;26914:58;27006:5;27001:2;26993:6;26989:15;26982:30;26797:222;:::o;27025:366::-;27167:3;27188:67;27252:2;27247:3;27188:67;:::i;:::-;27181:74;;27264:93;27353:3;27264:93;:::i;:::-;27382:2;27377:3;27373:12;27366:19;;27025:366;;;:::o;27397:419::-;27563:4;27601:2;27590:9;27586:18;27578:26;;27650:9;27644:4;27640:20;27636:1;27625:9;27621:17;27614:47;27678:131;27804:4;27678:131;:::i;:::-;27670:139;;27397:419;;;:::o;27822:230::-;27962:34;27958:1;27950:6;27946:14;27939:58;28031:13;28026:2;28018:6;28014:15;28007:38;27822:230;:::o;28058:366::-;28200:3;28221:67;28285:2;28280:3;28221:67;:::i;:::-;28214:74;;28297:93;28386:3;28297:93;:::i;:::-;28415:2;28410:3;28406:12;28399:19;;28058:366;;;:::o;28430:419::-;28596:4;28634:2;28623:9;28619:18;28611:26;;28683:9;28677:4;28673:20;28669:1;28658:9;28654:17;28647:47;28711:131;28837:4;28711:131;:::i;:::-;28703:139;;28430:419;;;:::o;28855:176::-;28995:28;28991:1;28983:6;28979:14;28972:52;28855:176;:::o;29037:366::-;29179:3;29200:67;29264:2;29259:3;29200:67;:::i;:::-;29193:74;;29276:93;29365:3;29276:93;:::i;:::-;29394:2;29389:3;29385:12;29378:19;;29037:366;;;:::o;29409:419::-;29575:4;29613:2;29602:9;29598:18;29590:26;;29662:9;29656:4;29652:20;29648:1;29637:9;29633:17;29626:47;29690:131;29816:4;29690:131;:::i;:::-;29682:139;;29409:419;;;:::o;29834:238::-;29974:34;29970:1;29962:6;29958:14;29951:58;30043:21;30038:2;30030:6;30026:15;30019:46;29834:238;:::o;30078:366::-;30220:3;30241:67;30305:2;30300:3;30241:67;:::i;:::-;30234:74;;30317:93;30406:3;30317:93;:::i;:::-;30435:2;30430:3;30426:12;30419:19;;30078:366;;;:::o;30450:419::-;30616:4;30654:2;30643:9;30639:18;30631:26;;30703:9;30697:4;30693:20;30689:1;30678:9;30674:17;30667:47;30731:131;30857:4;30731:131;:::i;:::-;30723:139;;30450:419;;;:::o;30875:234::-;31015:34;31011:1;31003:6;30999:14;30992:58;31084:17;31079:2;31071:6;31067:15;31060:42;30875:234;:::o;31115:366::-;31257:3;31278:67;31342:2;31337:3;31278:67;:::i;:::-;31271:74;;31354:93;31443:3;31354:93;:::i;:::-;31472:2;31467:3;31463:12;31456:19;;31115:366;;;:::o;31487:419::-;31653:4;31691:2;31680:9;31676:18;31668:26;;31740:9;31734:4;31730:20;31726:1;31715:9;31711:17;31704:47;31768:131;31894:4;31768:131;:::i;:::-;31760:139;;31487:419;;;:::o;31912:148::-;32014:11;32051:3;32036:18;;31912:148;;;;:::o;32066:377::-;32172:3;32200:39;32233:5;32200:39;:::i;:::-;32255:89;32337:6;32332:3;32255:89;:::i;:::-;32248:96;;32353:52;32398:6;32393:3;32386:4;32379:5;32375:16;32353:52;:::i;:::-;32430:6;32425:3;32421:16;32414:23;;32176:267;32066:377;;;;:::o;32449:155::-;32589:7;32585:1;32577:6;32573:14;32566:31;32449:155;:::o;32610:400::-;32770:3;32791:84;32873:1;32868:3;32791:84;:::i;:::-;32784:91;;32884:93;32973:3;32884:93;:::i;:::-;33002:1;32997:3;32993:11;32986:18;;32610:400;;;:::o;33016:701::-;33297:3;33319:95;33410:3;33401:6;33319:95;:::i;:::-;33312:102;;33431:95;33522:3;33513:6;33431:95;:::i;:::-;33424:102;;33543:148;33687:3;33543:148;:::i;:::-;33536:155;;33708:3;33701:10;;33016:701;;;;;:::o;33723:225::-;33863:34;33859:1;33851:6;33847:14;33840:58;33932:8;33927:2;33919:6;33915:15;33908:33;33723:225;:::o;33954:366::-;34096:3;34117:67;34181:2;34176:3;34117:67;:::i;:::-;34110:74;;34193:93;34282:3;34193:93;:::i;:::-;34311:2;34306:3;34302:12;34295:19;;33954:366;;;:::o;34326:419::-;34492:4;34530:2;34519:9;34515:18;34507:26;;34579:9;34573:4;34569:20;34565:1;34554:9;34550:17;34543:47;34607:131;34733:4;34607:131;:::i;:::-;34599:139;;34326:419;;;:::o;34751:237::-;34891:34;34887:1;34879:6;34875:14;34868:58;34960:20;34955:2;34947:6;34943:15;34936:45;34751:237;:::o;34994:366::-;35136:3;35157:67;35221:2;35216:3;35157:67;:::i;:::-;35150:74;;35233:93;35322:3;35233:93;:::i;:::-;35351:2;35346:3;35342:12;35335:19;;34994:366;;;:::o;35366:419::-;35532:4;35570:2;35559:9;35555:18;35547:26;;35619:9;35613:4;35609:20;35605:1;35594:9;35590:17;35583:47;35647:131;35773:4;35647:131;:::i;:::-;35639:139;;35366:419;;;:::o;35791:225::-;35931:34;35927:1;35919:6;35915:14;35908:58;36000:8;35995:2;35987:6;35983:15;35976:33;35791:225;:::o;36022:366::-;36164:3;36185:67;36249:2;36244:3;36185:67;:::i;:::-;36178:74;;36261:93;36350:3;36261:93;:::i;:::-;36379:2;36374:3;36370:12;36363:19;;36022:366;;;:::o;36394:419::-;36560:4;36598:2;36587:9;36583:18;36575:26;;36647:9;36641:4;36637:20;36633:1;36622:9;36618:17;36611:47;36675:131;36801:4;36675:131;:::i;:::-;36667:139;;36394:419;;;:::o;36819:224::-;36959:34;36955:1;36947:6;36943:14;36936:58;37028:7;37023:2;37015:6;37011:15;37004:32;36819:224;:::o;37049:366::-;37191:3;37212:67;37276:2;37271:3;37212:67;:::i;:::-;37205:74;;37288:93;37377:3;37288:93;:::i;:::-;37406:2;37401:3;37397:12;37390:19;;37049:366;;;:::o;37421:419::-;37587:4;37625:2;37614:9;37610:18;37602:26;;37674:9;37668:4;37664:20;37660:1;37649:9;37645:17;37638:47;37702:131;37828:4;37702:131;:::i;:::-;37694:139;;37421:419;;;:::o;37846:229::-;37986:34;37982:1;37974:6;37970:14;37963:58;38055:12;38050:2;38042:6;38038:15;38031:37;37846:229;:::o;38081:366::-;38223:3;38244:67;38308:2;38303:3;38244:67;:::i;:::-;38237:74;;38320:93;38409:3;38320:93;:::i;:::-;38438:2;38433:3;38429:12;38422:19;;38081:366;;;:::o;38453:419::-;38619:4;38657:2;38646:9;38642:18;38634:26;;38706:9;38700:4;38696:20;38692:1;38681:9;38677:17;38670:47;38734:131;38860:4;38734:131;:::i;:::-;38726:139;;38453:419;;;:::o;38878:234::-;39018:34;39014:1;39006:6;39002:14;38995:58;39087:17;39082:2;39074:6;39070:15;39063:42;38878:234;:::o;39118:366::-;39260:3;39281:67;39345:2;39340:3;39281:67;:::i;:::-;39274:74;;39357:93;39446:3;39357:93;:::i;:::-;39475:2;39470:3;39466:12;39459:19;;39118:366;;;:::o;39490:419::-;39656:4;39694:2;39683:9;39679:18;39671:26;;39743:9;39737:4;39733:20;39729:1;39718:9;39714:17;39707:47;39771:131;39897:4;39771:131;:::i;:::-;39763:139;;39490:419;;;:::o;39915:98::-;39966:6;40000:5;39994:12;39984:22;;39915:98;;;:::o;40019:168::-;40102:11;40136:6;40131:3;40124:19;40176:4;40171:3;40167:14;40152:29;;40019:168;;;;:::o;40193:360::-;40279:3;40307:38;40339:5;40307:38;:::i;:::-;40361:70;40424:6;40419:3;40361:70;:::i;:::-;40354:77;;40440:52;40485:6;40480:3;40473:4;40466:5;40462:16;40440:52;:::i;:::-;40517:29;40539:6;40517:29;:::i;:::-;40512:3;40508:39;40501:46;;40283:270;40193:360;;;;:::o;40559:640::-;40754:4;40792:3;40781:9;40777:19;40769:27;;40806:71;40874:1;40863:9;40859:17;40850:6;40806:71;:::i;:::-;40887:72;40955:2;40944:9;40940:18;40931:6;40887:72;:::i;:::-;40969;41037:2;41026:9;41022:18;41013:6;40969:72;:::i;:::-;41088:9;41082:4;41078:20;41073:2;41062:9;41058:18;41051:48;41116:76;41187:4;41178:6;41116:76;:::i;:::-;41108:84;;40559:640;;;;;;;:::o;41205:141::-;41261:5;41292:6;41286:13;41277:22;;41308:32;41334:5;41308:32;:::i;:::-;41205:141;;;;:::o;41352:349::-;41421:6;41470:2;41458:9;41449:7;41445:23;41441:32;41438:119;;;41476:79;;:::i;:::-;41438:119;41596:1;41621:63;41676:7;41667:6;41656:9;41652:22;41621:63;:::i;:::-;41611:73;;41567:127;41352:349;;;;:::o;41707:233::-;41746:3;41769:24;41787:5;41769:24;:::i;:::-;41760:33;;41815:66;41808:5;41805:77;41802:103;;;41885:18;;:::i;:::-;41802:103;41932:1;41925:5;41921:13;41914:20;;41707:233;;;:::o;41946:180::-;41994:77;41991:1;41984:88;42091:4;42088:1;42081:15;42115:4;42112:1;42105:15;42132:185;42172:1;42189:20;42207:1;42189:20;:::i;:::-;42184:25;;42223:20;42241:1;42223:20;:::i;:::-;42218:25;;42262:1;42252:35;;42267:18;;:::i;:::-;42252:35;42309:1;42306;42302:9;42297:14;;42132:185;;;;:::o;42323:176::-;42355:1;42372:20;42390:1;42372:20;:::i;:::-;42367:25;;42406:20;42424:1;42406:20;:::i;:::-;42401:25;;42445:1;42435:35;;42450:18;;:::i;:::-;42435:35;42491:1;42488;42484:9;42479:14;;42323:176;;;;:::o;42505:180::-;42553:77;42550:1;42543:88;42650:4;42647:1;42640:15;42674:4;42671:1;42664:15;42691:220;42831:34;42827:1;42819:6;42815:14;42808:58;42900:3;42895:2;42887:6;42883:15;42876:28;42691:220;:::o;42917:366::-;43059:3;43080:67;43144:2;43139:3;43080:67;:::i;:::-;43073:74;;43156:93;43245:3;43156:93;:::i;:::-;43274:2;43269:3;43265:12;43258:19;;42917:366;;;:::o;43289:419::-;43455:4;43493:2;43482:9;43478:18;43470:26;;43542:9;43536:4;43532:20;43528:1;43517:9;43513:17;43506:47;43570:131;43696:4;43570:131;:::i;:::-;43562:139;;43289:419;;;:::o;43714:227::-;43854:34;43850:1;43842:6;43838:14;43831:58;43923:10;43918:2;43910:6;43906:15;43899:35;43714:227;:::o;43947:366::-;44089:3;44110:67;44174:2;44169:3;44110:67;:::i;:::-;44103:74;;44186:93;44275:3;44186:93;:::i;:::-;44304:2;44299:3;44295:12;44288:19;;43947:366;;;:::o;44319:419::-;44485:4;44523:2;44512:9;44508:18;44500:26;;44572:9;44566:4;44562:20;44558:1;44547:9;44543:17;44536:47;44600:131;44726:4;44600:131;:::i;:::-;44592:139;;44319:419;;;:::o

Swarm Source

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