ETH Price: $3,022.38 (+2.13%)
Gas: 2 Gwei

Token

The Companion (TC)
 

Overview

Max Total Supply

9,038 TC

Holders

4,945

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
auze.eth
Balance
1 TC
0xd887C683ae148B622c42235D7c2395F9b22c6777
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:
nft

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

// File: contracts/creepies.sol



pragma solidity >=0.8.2;
// to enable certain compiler features

//import '@openzeppelin/contracts/token/ERC721/ERC721.sol';



contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    
    //Mapping para atribuirle un URI para cada token
    mapping(uint256 => string) internal id_to_URI;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {  }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

contract nft is ERC721, Ownable {
    using Strings for uint256;

    //amount of tokens that have been minted so far, in total and in presale
    uint256 private numberOfTotalTokens;
    
    //declares the maximum amount of tokens that can be minted, total and in presale
    uint256 private maxTotalTokens;
    
    //initial part of the URI for the metadata
    string private _currentBaseURI;
        
    //cost of mints depending on state of sale    
    uint private mintCost_ = 0.15 ether;
    
    //maximum amount of mints per wallet
    uint public maxMint;
    
    //the amount of reserved mints that have currently been executed by creator and by marketing wallet
    uint private _reservedMints = 0;
    
    //the maximum amount of reserved mints allowed for creator and marketing wallet
    uint private maxReservedMints = 250;
    
    //dummy address that we use to sign the mint transaction to make sure it is valid
    address private dummy = 0x80E4929c869102140E69550BBECC20bEd61B080c;

    //developers wallet address
    address payable private dev = payable(0x318cBF186eB13C74533943b054959867eE44eFFE);

    //amount of mints that each address has executed
    mapping(address => uint256) public mintsPerAddress;
    
    //current state os sale
    enum State {NoSale, Presale, PublicSale}

    //defines the uri for when the NFTs have not been yet revealed
    string public unrevealedURI;
    
    //marks the timestamp of when the respective sales open
    uint256 public presaleLaunchTime;
    uint256 public publicSaleLaunchTime;
    uint256 public revealTime;
    
    //declaring initial values for variables
    constructor() ERC721('The Companion', 'TC'){
        numberOfTotalTokens = 0;
        
        maxTotalTokens = 8888;
        maxMint = 10;

        unrevealedURI = "ipfs://QmeiF5rT5mR8tQA9gHxcYHGoEUev7UnTgB3TWRRGkuE2Ca/";
    }
    
    //in case somebody accidentaly sends funds or transaction to contract
    receive() payable external {}
    fallback() payable external {
        revert();
    }
    
    //visualize baseURI
    function _baseURI() internal view virtual override returns (string memory) {
        return _currentBaseURI;
    }
    
    //change baseURI in case needed for IPFS
    function changeBaseURI(string memory baseURI_) public onlyOwner {
        _currentBaseURI = baseURI_;
    }
    
    function changeUnrevealedURI(string memory unrevealedURI_) public onlyOwner {
        unrevealedURI = unrevealedURI_;
    }
    
    //gets the tokenID of NFT to be minted
    function tokenId() internal view returns(uint256) {
        return numberOfTotalTokens + 1;
    }
    
    modifier onlyValidAccess(uint8 _v, bytes32 _r, bytes32 _s) {
        require( isValidAccessMessage(msg.sender,_v,_r,_s), 'Invalid Signature' );
        _;
    }
 
    /* 
    * @dev Verifies if message was signed by owner to give access to _add for this contract.
    *      Assumes Geth signature prefix.
    * @param _add Address of agent with access
    * @param _v ECDSA signature parameter v.
    * @param _r ECDSA signature parameters r.
    * @param _s ECDSA signature parameters s.
    * @return Validity of access message for a given address.
    */
    function isValidAccessMessage(address _add, uint8 _v, bytes32 _r, bytes32 _s) view public returns (bool) {
        bytes32 hash = keccak256(abi.encodePacked(address(this), _add));
        return dummy == ecrecover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)), _v, _r, _s);
    }
    
    //mint a @param number of NFTs in presale
    function presaleMint(uint256 number, uint8 _v, bytes32 _r, bytes32 _s) onlyValidAccess(_v,  _r, _s) public payable {
        State saleState_ = saleState();
        require(saleState_ != State.NoSale, "Sale in not open yet!");
        require(saleState_ != State.PublicSale, "Presale has closed, Check out Public Sale!");
        require(numberOfTotalTokens + number <= maxTotalTokens - (maxReservedMints  - _reservedMints), "Not enough NFTs left to mint..");
        require(mintsPerAddress[msg.sender] + number <= maxMint, "Maximum 10 Mints per Address allowed!");
        require(msg.value >= mintCost() * number, "Not sufficient Ether to mint this amount of NFTs (Cost = 0.15 ether each NFT)");
        
        for (uint256 i = 0; i < number; i++) {
            uint256 tid = tokenId();
            _safeMint(msg.sender, tid);
            mintsPerAddress[msg.sender] += 1;
            numberOfTotalTokens += 1;
        }

    }

    //mint a @param number of NFTs in public sale
    function publicSaleMint(uint256 number) public payable {
        State saleState_ = saleState();
        require(saleState_ == State.PublicSale, "Public Sale in not open yet!");
        require(numberOfTotalTokens + number <= maxTotalTokens - (maxReservedMints - _reservedMints), "Not enough NFTs left to mint..");
        require(mintsPerAddress[msg.sender] + number <= maxMint, "Maximum 10 Mints per Address allowed!");
        require(msg.value >= mintCost() * number, "Not sufficient Ether to mint this amount of NFTs (Cost = 0.15 ether for each NFT)");


        for (uint256 i = 0; i < number; i++) {
            uint256 tid = tokenId();
            _safeMint(msg.sender, tid);
            mintsPerAddress[msg.sender] += 1;
            numberOfTotalTokens += 1;
        }
    }
    
    //reserved NFTs for creator
    function reservedMints(uint256 number, address recipient) public onlyOwner {
        require(_reservedMints + number <= maxReservedMints, "Not enough Reserved NFTs for Creator left to mint..");
        for (uint256 i = 0; i < number; i++) {
            uint256 tid = tokenId();
            _safeMint(recipient, tid);
            mintsPerAddress[recipient] += 1;
            numberOfTotalTokens += 1;
        }
    }

    function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) {
        require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token");
        
        //check to see that 24 hours have passed since beginning of publicsale launch
        if (revealTime == 0) {
            return unrevealedURI;
        }
        
        else {
            string memory baseURI = _baseURI();
            return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId_.toString(), '.json')) : "";
        }    
    }
    
    //begins the minting of the NFTs
    function switchToPresale() public onlyOwner{
        State saleState_ = saleState();
        require(saleState_ == State.NoSale, "Presale has already opened!");
        presaleLaunchTime = block.timestamp;
    }
    
    //begins the public sale
    function switchToPublicSale() public onlyOwner {
        State saleState_ = saleState();
        require(saleState_ != State.PublicSale, "Public Sale is already live!");
        require(saleState_ != State.NoSale, "Cannot change to Public Sale if there has not been a Presale!");
        
        publicSaleLaunchTime = block.timestamp;
    }

    
    //burn the tokens that have not been sold yet
    function burnTokens() public onlyOwner {
        maxTotalTokens = numberOfTotalTokens;
    }
    
    //se the current account balance
    function accountBalance() public onlyOwner view returns(uint) {
        return address(this).balance;
    }
    
    //change the dummy account used for signing transactions
    function changeDummy(address _dummy) public onlyOwner {
        dummy = _dummy;
    }
    
    //see the total amount of tokens that have been minted
    function totalSupply() public view returns(uint) {
        return numberOfTotalTokens;
    }
    
    //see the total amount of reserved mints that are left creator
    function reservedMintsLeft() public onlyOwner view returns(uint) {
        return maxReservedMints - _reservedMints;
    }
    
    //get the funds from the minting of the NFTs
    function retrieveFunds() public onlyOwner {
        uint256 balance = accountBalance();
        require(balance > 0, "No funds to retrieve!");

        _withdraw(dev, (balance * 5)/1000);
        _withdraw(payable(msg.sender), accountBalance()); //to avoid dust eth
        
    }

    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }

    //see the current state of the sale
    function saleState() public view returns(State){
        if (presaleLaunchTime == 0) {
            return State.NoSale;
        }
        else if (publicSaleLaunchTime == 0) {
            return State.Presale;
        }
        else {
            return State.PublicSale;
        }
    }

    //get the current price to mint
    function mintCost() public view returns(uint256) {
        return mintCost_;
    }

    //change the current price to mint
    function changeMintCost(uint newCost) public onlyOwner {
        mintCost_ = newCost;
    }

    //reveal the NFTs
    function reveal() public onlyOwner {
        revealTime = block.timestamp;
    }

}

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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dummy","type":"address"}],"name":"changeDummy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCost","type":"uint256"}],"name":"changeMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealedURI_","type":"string"}],"name":"changeUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddress","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":[],"name":"presaleLaunchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleLaunchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintsLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"retrieveFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTime","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":"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":"saleState","outputs":[{"internalType":"enum nft.State","name":"","type":"uint8"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"switchToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchToPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052670214e8348c4f0000600b556000600d5560fa600e557380e4929c869102140e69550bbecc20bed61b080c600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073318cbf186eb13c74533943b054959867ee44effe601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000d157600080fd5b506040518060400160405280600d81526020017f54686520436f6d70616e696f6e000000000000000000000000000000000000008152506040518060400160405280600281526020017f5443000000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000156929190620002b1565b5080600190805190602001906200016f929190620002b1565b5050506200019262000186620001e360201b60201c565b620001eb60201b60201c565b60006008819055506122b8600981905550600a600c81905550604051806060016040528060368152602001620054736036913960129080519060200190620001dc929190620002b1565b50620003c6565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002bf9062000361565b90600052602060002090601f016020900481019282620002e357600085556200032f565b82601f10620002fe57805160ff19168380011785556200032f565b828001600101855582156200032f579182015b828111156200032e57825182559160200191906001019062000311565b5b5090506200033e919062000342565b5090565b5b808211156200035d57600081600090555060010162000343565b5090565b600060028204905060018216806200037a57607f821691505b6020821081141562000391576200039062000397565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61509d80620003d66000396000f3fe60806040526004361061023f5760003560e01c80637501f7411161012e578063ba829d71116100ab578063dcd4e7321161006f578063dcd4e73214610837578063e985e9c514610853578063eab4178214610890578063f2fde38b146108a7578063ff984994146108d057610246565b8063ba829d7114610750578063bdb4b8481461077b578063c4d8b9df146107a6578063c87b56dd146107cf578063cd5fe7251461080c57610246565b8063a475b5dd116100f2578063a475b5dd146106a0578063b0a1c1c4146106b7578063b3ab66b0146106e2578063b620e975146106fe578063b88d4fde1461072757610246565b80637501f741146105cd5780637f1921ef146105f85780638da5cb5b1461062157806395d89b411461064c578063a22cb4651461067757610246565b806332624114116101bc57806361b20d8c1161018057806361b20d8c146104fa5780636352211e146105115780637035bf181461054e57806370a0823114610579578063715018a6146105b657610246565b8063326241141461041557806339a0c6f91461045257806342842e0e1461047b5780634520e916146104a4578063603f4d52146104cf57610246565b8063095ea7b311610203578063095ea7b31461033057806318160ddd146103595780631a17fe5e1461038457806323b872dd146103af5780633023eba6146103d857610246565b80630191a6571461024b57806301ffc9a71461027457806306fdde03146102b157806308003f78146102dc578063081812fc146102f357610246565b3661024657005b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906133b7565b6108e7565b005b34801561028057600080fd5b5061029b600480360381019061029691906135e1565b6109a7565b6040516102a89190613e03565b60405180910390f35b3480156102bd57600080fd5b506102c6610a89565b6040516102d39190613e7e565b60405180910390f35b3480156102e857600080fd5b506102f1610b1b565b005b3480156102ff57600080fd5b5061031a60048036038101906103159190613684565b610ba2565b6040516103279190613d9c565b60405180910390f35b34801561033c57600080fd5b506103576004803603810190610352919061353a565b610c27565b005b34801561036557600080fd5b5061036e610d3f565b60405161037b9190614260565b60405180910390f35b34801561039057600080fd5b50610399610d49565b6040516103a69190614260565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613424565b610d4f565b005b3480156103e457600080fd5b506103ff60048036038101906103fa91906133b7565b610daf565b60405161040c9190614260565b60405180910390f35b34801561042157600080fd5b5061043c6004803603810190610437919061357a565b610dc7565b6040516104499190613e03565b60405180910390f35b34801561045e57600080fd5b506104796004803603810190610474919061363b565b610ec5565b005b34801561048757600080fd5b506104a2600480360381019061049d9190613424565b610f5b565b005b3480156104b057600080fd5b506104b9610f7b565b6040516104c69190614260565b60405180910390f35b3480156104db57600080fd5b506104e461100e565b6040516104f19190613e63565b60405180910390f35b34801561050657600080fd5b5061050f61103f565b005b34801561051d57600080fd5b5061053860048036038101906105339190613684565b611163565b6040516105459190613d9c565b60405180910390f35b34801561055a57600080fd5b50610563611215565b6040516105709190613e7e565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b91906133b7565b6112a3565b6040516105ad9190614260565b60405180910390f35b3480156105c257600080fd5b506105cb61135b565b005b3480156105d957600080fd5b506105e26113e3565b6040516105ef9190614260565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190613684565b6113e9565b005b34801561062d57600080fd5b5061063661146f565b6040516106439190613d9c565b60405180910390f35b34801561065857600080fd5b50610661611499565b60405161066e9190613e7e565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906134fa565b61152b565b005b3480156106ac57600080fd5b506106b56116ac565b005b3480156106c357600080fd5b506106cc611731565b6040516106d99190614260565b60405180910390f35b6106fc60048036038101906106f79190613684565b6117b5565b005b34801561070a57600080fd5b50610725600480360381019061072091906136b1565b611a22565b005b34801561073357600080fd5b5061074e60048036038101906107499190613477565b611b9b565b005b34801561075c57600080fd5b50610765611bfd565b6040516107729190614260565b60405180910390f35b34801561078757600080fd5b50610790611c03565b60405161079d9190614260565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c8919061363b565b611c0d565b005b3480156107db57600080fd5b506107f660048036038101906107f19190613684565b611ca3565b6040516108039190613e7e565b60405180910390f35b34801561081857600080fd5b50610821611de8565b60405161082e9190614260565b60405180910390f35b610851600480360381019061084c91906136f1565b611dee565b005b34801561085f57600080fd5b5061087a600480360381019061087591906133e4565b612118565b6040516108879190613e03565b60405180910390f35b34801561089c57600080fd5b506108a56121ac565b005b3480156108b357600080fd5b506108ce60048036038101906108c991906133b7565b6122a5565b005b3480156108dc57600080fd5b506108e561239d565b005b6108ef6124fe565b73ffffffffffffffffffffffffffffffffffffffff1661090d61146f565b73ffffffffffffffffffffffffffffffffffffffff1614610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90614120565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a825750610a8182612506565b5b9050919050565b606060008054610a9890614557565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac490614557565b8015610b115780601f10610ae657610100808354040283529160200191610b11565b820191906000526020600020905b815481529060010190602001808311610af457829003601f168201915b5050505050905090565b610b236124fe565b73ffffffffffffffffffffffffffffffffffffffff16610b4161146f565b73ffffffffffffffffffffffffffffffffffffffff1614610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90614120565b60405180910390fd5b600854600981905550565b6000610bad82612570565b610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be3906140e0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3282611163565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a906141c0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc26124fe565b73ffffffffffffffffffffffffffffffffffffffff161480610cf15750610cf081610ceb6124fe565b612118565b5b610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790614000565b60405180910390fd5b610d3a83836125dc565b505050565b6000600854905090565b60145481565b610d60610d5a6124fe565b82612695565b610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690614200565b60405180910390fd5b610daa838383612773565b505050565b60116020528060005260406000206000915090505481565b6000803086604051602001610ddd929190613d06565b604051602081830303815290604052805190602001209050600181604051602001610e089190613d61565b6040516020818303038152906040528051906020012086868660405160008152602001604052604051610e3e9493929190613e1e565b6020604051602081039080840390855afa158015610e60573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b610ecd6124fe565b73ffffffffffffffffffffffffffffffffffffffff16610eeb61146f565b73ffffffffffffffffffffffffffffffffffffffff1614610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890614120565b60405180910390fd5b80600a9080519060200190610f579291906131a1565b5050565b610f7683838360405180602001604052806000815250611b9b565b505050565b6000610f856124fe565b73ffffffffffffffffffffffffffffffffffffffff16610fa361146f565b73ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090614120565b60405180910390fd5b600d54600e546110099190614431565b905090565b6000806013541415611023576000905061103c565b60006014541415611037576001905061103c565b600290505b90565b6110476124fe565b73ffffffffffffffffffffffffffffffffffffffff1661106561146f565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290614120565b60405180910390fd5b60006110c5611731565b90506000811161110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190613ea0565b60405180910390fd5b61114f601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e860058461114091906143d7565b61114a91906143a6565b6129cf565b6111603361115b611731565b6129cf565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390614060565b60405180910390fd5b80915050919050565b6012805461122290614557565b80601f016020809104026020016040519081016040528092919081815260200182805461124e90614557565b801561129b5780601f106112705761010080835404028352916020019161129b565b820191906000526020600020905b81548152906001019060200180831161127e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90614040565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113636124fe565b73ffffffffffffffffffffffffffffffffffffffff1661138161146f565b73ffffffffffffffffffffffffffffffffffffffff16146113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90614120565b60405180910390fd5b6113e16000612a80565b565b600c5481565b6113f16124fe565b73ffffffffffffffffffffffffffffffffffffffff1661140f61146f565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90614120565b60405180910390fd5b80600b8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114a890614557565b80601f01602080910402602001604051908101604052809291908181526020018280546114d490614557565b80156115215780601f106114f657610100808354040283529160200191611521565b820191906000526020600020905b81548152906001019060200180831161150457829003601f168201915b5050505050905090565b6115336124fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613fa0565b60405180910390fd5b80600560006115ae6124fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661165b6124fe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116a09190613e03565b60405180910390a35050565b6116b46124fe565b73ffffffffffffffffffffffffffffffffffffffff166116d261146f565b73ffffffffffffffffffffffffffffffffffffffff1614611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90614120565b60405180910390fd5b42601581905550565b600061173b6124fe565b73ffffffffffffffffffffffffffffffffffffffff1661175961146f565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690614120565b60405180910390fd5b47905090565b60006117bf61100e565b90506002808111156117d4576117d36146c0565b5b8160028111156117e7576117e66146c0565b5b14611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e90614080565b60405180910390fd5b600d54600e546118379190614431565b6009546118449190614431565b826008546118529190614350565b1115611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a90613fc0565b60405180910390fd5b600c5482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e19190614350565b1115611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990614220565b60405180910390fd5b8161192b611c03565b61193591906143d7565b341015611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90614140565b60405180910390fd5b60005b82811015611a1d57600061198c612b46565b90506119983382612b5c565b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e89190614350565b92505081905550600160086000828254611a029190614350565b92505081905550508080611a15906145ba565b91505061197a565b505050565b611a2a6124fe565b73ffffffffffffffffffffffffffffffffffffffff16611a4861146f565b73ffffffffffffffffffffffffffffffffffffffff1614611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9590614120565b60405180910390fd5b600e5482600d54611aaf9190614350565b1115611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae790613f40565b60405180910390fd5b60005b82811015611b96576000611b05612b46565b9050611b118382612b5c565b6001601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b619190614350565b92505081905550600160086000828254611b7b9190614350565b92505081905550508080611b8e906145ba565b915050611af3565b505050565b611bac611ba66124fe565b83612695565b611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290614200565b60405180910390fd5b611bf784848484612b7a565b50505050565b60155481565b6000600b54905090565b611c156124fe565b73ffffffffffffffffffffffffffffffffffffffff16611c3361146f565b73ffffffffffffffffffffffffffffffffffffffff1614611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614120565b60405180910390fd5b8060129080519060200190611c9f9291906131a1565b5050565b6060611cae82612570565b611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490614180565b60405180910390fd5b60006015541415611d8a5760128054611d0590614557565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3190614557565b8015611d7e5780601f10611d5357610100808354040283529160200191611d7e565b820191906000526020600020905b815481529060010190602001808311611d6157829003601f168201915b50505050509050611de3565b6000611d94612bd6565b90506000815111611db45760405180602001604052806000815250611ddf565b80611dbe84612c68565b604051602001611dcf929190613d32565b6040516020818303038152906040525b9150505b919050565b60135481565b828282611dfd33848484610dc7565b611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3390614100565b60405180910390fd5b6000611e4661100e565b905060006002811115611e5c57611e5b6146c0565b5b816002811115611e6f57611e6e6146c0565b5b1415611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea790614240565b60405180910390fd5b600280811115611ec357611ec26146c0565b5b816002811115611ed657611ed56146c0565b5b1415611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90614020565b60405180910390fd5b600d54600e54611f279190614431565b600954611f349190614431565b88600854611f429190614350565b1115611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90613fc0565b60405180910390fd5b600c5488601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fd19190614350565b1115612012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200990614220565b60405180910390fd5b8761201b611c03565b61202591906143d7565b341015612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e906140c0565b60405180910390fd5b60005b8881101561210d57600061207c612b46565b90506120883382612b5c565b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d89190614350565b925050819055506001600860008282546120f29190614350565b92505081905550508080612105906145ba565b91505061206a565b505050505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121b46124fe565b73ffffffffffffffffffffffffffffffffffffffff166121d261146f565b73ffffffffffffffffffffffffffffffffffffffff1614612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f90614120565b60405180910390fd5b600061223261100e565b905060006002811115612248576122476146c0565b5b81600281111561225b5761225a6146c0565b5b1461229b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612292906141e0565b60405180910390fd5b4260138190555050565b6122ad6124fe565b73ffffffffffffffffffffffffffffffffffffffff166122cb61146f565b73ffffffffffffffffffffffffffffffffffffffff1614612321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231890614120565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238890613f00565b60405180910390fd5b61239a81612a80565b50565b6123a56124fe565b73ffffffffffffffffffffffffffffffffffffffff166123c361146f565b73ffffffffffffffffffffffffffffffffffffffff1614612419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241090614120565b60405180910390fd5b600061242361100e565b9050600280811115612438576124376146c0565b5b81600281111561244b5761244a6146c0565b5b141561248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390613ec0565b60405180910390fd5b600060028111156124a05761249f6146c0565b5b8160028111156124b3576124b26146c0565b5b14156124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb906141a0565b60405180910390fd5b4260148190555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661264f83611163565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126a082612570565b6126df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d690613fe0565b60405180910390fd5b60006126ea83611163565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061275957508373ffffffffffffffffffffffffffffffffffffffff1661274184610ba2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061276a57506127698185612118565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661279382611163565b73ffffffffffffffffffffffffffffffffffffffff16146127e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e090614160565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285090613f80565b60405180910390fd5b612864838383612dc9565b61286f6000826125dc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128bf9190614431565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129169190614350565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516129f590613d87565b60006040518083038185875af1925050503d8060008114612a32576040519150601f19603f3d011682016040523d82523d6000602084013e612a37565b606091505b5050905080612a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7290613f60565b60405180910390fd5b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001600854612b579190614350565b905090565b612b76828260405180602001604052806000815250612dce565b5050565b612b85848484612773565b612b9184848484612e29565b612bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc790613ee0565b60405180910390fd5b50505050565b6060600a8054612be590614557565b80601f0160208091040260200160405190810160405280929190818152602001828054612c1190614557565b8015612c5e5780601f10612c3357610100808354040283529160200191612c5e565b820191906000526020600020905b815481529060010190602001808311612c4157829003601f168201915b5050505050905090565b60606000821415612cb0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dc4565b600082905060005b60008214612ce2578080612ccb906145ba565b915050600a82612cdb91906143a6565b9150612cb8565b60008167ffffffffffffffff811115612cfe57612cfd61474d565b5b6040519080825280601f01601f191660200182016040528015612d305781602001600182028036833780820191505090505b5090505b60008514612dbd57600182612d499190614431565b9150600a85612d589190614631565b6030612d649190614350565b60f81b818381518110612d7a57612d7961471e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612db691906143a6565b9450612d34565b8093505050505b919050565b505050565b612dd88383612fc0565b612de56000848484612e29565b612e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1b90613ee0565b60405180910390fd5b505050565b6000612e4a8473ffffffffffffffffffffffffffffffffffffffff1661318e565b15612fb3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e736124fe565b8786866040518563ffffffff1660e01b8152600401612e959493929190613db7565b602060405180830381600087803b158015612eaf57600080fd5b505af1925050508015612ee057506040513d601f19601f82011682018060405250810190612edd919061360e565b60015b612f63573d8060008114612f10576040519150601f19603f3d011682016040523d82523d6000602084013e612f15565b606091505b50600081511415612f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5290613ee0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fb8565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613030576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613027906140a0565b60405180910390fd5b61303981612570565b15613079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307090613f20565b60405180910390fd5b61308560008383612dc9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130d59190614350565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131ad90614557565b90600052602060002090601f0160209004810192826131cf5760008555613216565b82601f106131e857805160ff1916838001178555613216565b82800160010185558215613216579182015b828111156132155782518255916020019190600101906131fa565b5b5090506132239190613227565b5090565b5b80821115613240576000816000905550600101613228565b5090565b6000613257613252846142a0565b61427b565b90508281526020810184848401111561327357613272614781565b5b61327e848285614515565b509392505050565b6000613299613294846142d1565b61427b565b9050828152602081018484840111156132b5576132b4614781565b5b6132c0848285614515565b509392505050565b6000813590506132d781614fdd565b92915050565b6000813590506132ec81614ff4565b92915050565b6000813590506133018161500b565b92915050565b60008135905061331681615022565b92915050565b60008151905061332b81615022565b92915050565b600082601f8301126133465761334561477c565b5b8135613356848260208601613244565b91505092915050565b600082601f8301126133745761337361477c565b5b8135613384848260208601613286565b91505092915050565b60008135905061339c81615039565b92915050565b6000813590506133b181615050565b92915050565b6000602082840312156133cd576133cc61478b565b5b60006133db848285016132c8565b91505092915050565b600080604083850312156133fb576133fa61478b565b5b6000613409858286016132c8565b925050602061341a858286016132c8565b9150509250929050565b60008060006060848603121561343d5761343c61478b565b5b600061344b868287016132c8565b935050602061345c868287016132c8565b925050604061346d8682870161338d565b9150509250925092565b600080600080608085870312156134915761349061478b565b5b600061349f878288016132c8565b94505060206134b0878288016132c8565b93505060406134c18782880161338d565b925050606085013567ffffffffffffffff8111156134e2576134e1614786565b5b6134ee87828801613331565b91505092959194509250565b600080604083850312156135115761351061478b565b5b600061351f858286016132c8565b9250506020613530858286016132dd565b9150509250929050565b600080604083850312156135515761355061478b565b5b600061355f858286016132c8565b92505060206135708582860161338d565b9150509250929050565b600080600080608085870312156135945761359361478b565b5b60006135a2878288016132c8565b94505060206135b3878288016133a2565b93505060406135c4878288016132f2565b92505060606135d5878288016132f2565b91505092959194509250565b6000602082840312156135f7576135f661478b565b5b600061360584828501613307565b91505092915050565b6000602082840312156136245761362361478b565b5b60006136328482850161331c565b91505092915050565b6000602082840312156136515761365061478b565b5b600082013567ffffffffffffffff81111561366f5761366e614786565b5b61367b8482850161335f565b91505092915050565b60006020828403121561369a5761369961478b565b5b60006136a88482850161338d565b91505092915050565b600080604083850312156136c8576136c761478b565b5b60006136d68582860161338d565b92505060206136e7858286016132c8565b9150509250929050565b6000806000806080858703121561370b5761370a61478b565b5b60006137198782880161338d565b945050602061372a878288016133a2565b935050604061373b878288016132f2565b925050606061374c878288016132f2565b91505092959194509250565b61376181614465565b82525050565b61377861377382614465565b614603565b82525050565b61378781614477565b82525050565b61379681614483565b82525050565b6137ad6137a882614483565b614615565b82525050565b60006137be82614302565b6137c88185614318565b93506137d8818560208601614524565b6137e181614790565b840191505092915050565b6137f581614503565b82525050565b60006138068261430d565b6138108185614334565b9350613820818560208601614524565b61382981614790565b840191505092915050565b600061383f8261430d565b6138498185614345565b9350613859818560208601614524565b80840191505092915050565b6000613872601583614334565b915061387d826147ae565b602082019050919050565b6000613895601c83614345565b91506138a0826147d7565b601c82019050919050565b60006138b8601c83614334565b91506138c382614800565b602082019050919050565b60006138db603283614334565b91506138e682614829565b604082019050919050565b60006138fe602683614334565b915061390982614878565b604082019050919050565b6000613921601c83614334565b915061392c826148c7565b602082019050919050565b6000613944603383614334565b915061394f826148f0565b604082019050919050565b6000613967601483614334565b91506139728261493f565b602082019050919050565b600061398a602483614334565b915061399582614968565b604082019050919050565b60006139ad601983614334565b91506139b8826149b7565b602082019050919050565b60006139d0601e83614334565b91506139db826149e0565b602082019050919050565b60006139f3602c83614334565b91506139fe82614a09565b604082019050919050565b6000613a16603883614334565b9150613a2182614a58565b604082019050919050565b6000613a39602a83614334565b9150613a4482614aa7565b604082019050919050565b6000613a5c602a83614334565b9150613a6782614af6565b604082019050919050565b6000613a7f602983614334565b9150613a8a82614b45565b604082019050919050565b6000613aa2601c83614334565b9150613aad82614b94565b602082019050919050565b6000613ac5602083614334565b9150613ad082614bbd565b602082019050919050565b6000613ae8604d83614334565b9150613af382614be6565b606082019050919050565b6000613b0b602c83614334565b9150613b1682614c5b565b604082019050919050565b6000613b2e600583614345565b9150613b3982614caa565b600582019050919050565b6000613b51601183614334565b9150613b5c82614cd3565b602082019050919050565b6000613b74602083614334565b9150613b7f82614cfc565b602082019050919050565b6000613b97605183614334565b9150613ba282614d25565b606082019050919050565b6000613bba602983614334565b9150613bc582614d9a565b604082019050919050565b6000613bdd602f83614334565b9150613be882614de9565b604082019050919050565b6000613c00603d83614334565b9150613c0b82614e38565b604082019050919050565b6000613c23602183614334565b9150613c2e82614e87565b604082019050919050565b6000613c46601b83614334565b9150613c5182614ed6565b602082019050919050565b6000613c69600083614329565b9150613c7482614eff565b600082019050919050565b6000613c8c603183614334565b9150613c9782614f02565b604082019050919050565b6000613caf602583614334565b9150613cba82614f51565b604082019050919050565b6000613cd2601583614334565b9150613cdd82614fa0565b602082019050919050565b613cf1816144ec565b82525050565b613d00816144f6565b82525050565b6000613d128285613767565b601482019150613d228284613767565b6014820191508190509392505050565b6000613d3e8285613834565b9150613d4a8284613834565b9150613d5582613b21565b91508190509392505050565b6000613d6c82613888565b9150613d78828461379c565b60208201915081905092915050565b6000613d9282613c5c565b9150819050919050565b6000602082019050613db16000830184613758565b92915050565b6000608082019050613dcc6000830187613758565b613dd96020830186613758565b613de66040830185613ce8565b8181036060830152613df881846137b3565b905095945050505050565b6000602082019050613e18600083018461377e565b92915050565b6000608082019050613e33600083018761378d565b613e406020830186613cf7565b613e4d604083018561378d565b613e5a606083018461378d565b95945050505050565b6000602082019050613e7860008301846137ec565b92915050565b60006020820190508181036000830152613e9881846137fb565b905092915050565b60006020820190508181036000830152613eb981613865565b9050919050565b60006020820190508181036000830152613ed9816138ab565b9050919050565b60006020820190508181036000830152613ef9816138ce565b9050919050565b60006020820190508181036000830152613f19816138f1565b9050919050565b60006020820190508181036000830152613f3981613914565b9050919050565b60006020820190508181036000830152613f5981613937565b9050919050565b60006020820190508181036000830152613f798161395a565b9050919050565b60006020820190508181036000830152613f998161397d565b9050919050565b60006020820190508181036000830152613fb9816139a0565b9050919050565b60006020820190508181036000830152613fd9816139c3565b9050919050565b60006020820190508181036000830152613ff9816139e6565b9050919050565b6000602082019050818103600083015261401981613a09565b9050919050565b6000602082019050818103600083015261403981613a2c565b9050919050565b6000602082019050818103600083015261405981613a4f565b9050919050565b6000602082019050818103600083015261407981613a72565b9050919050565b6000602082019050818103600083015261409981613a95565b9050919050565b600060208201905081810360008301526140b981613ab8565b9050919050565b600060208201905081810360008301526140d981613adb565b9050919050565b600060208201905081810360008301526140f981613afe565b9050919050565b6000602082019050818103600083015261411981613b44565b9050919050565b6000602082019050818103600083015261413981613b67565b9050919050565b6000602082019050818103600083015261415981613b8a565b9050919050565b6000602082019050818103600083015261417981613bad565b9050919050565b6000602082019050818103600083015261419981613bd0565b9050919050565b600060208201905081810360008301526141b981613bf3565b9050919050565b600060208201905081810360008301526141d981613c16565b9050919050565b600060208201905081810360008301526141f981613c39565b9050919050565b6000602082019050818103600083015261421981613c7f565b9050919050565b6000602082019050818103600083015261423981613ca2565b9050919050565b6000602082019050818103600083015261425981613cc5565b9050919050565b60006020820190506142756000830184613ce8565b92915050565b6000614285614296565b90506142918282614589565b919050565b6000604051905090565b600067ffffffffffffffff8211156142bb576142ba61474d565b5b6142c482614790565b9050602081019050919050565b600067ffffffffffffffff8211156142ec576142eb61474d565b5b6142f582614790565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061435b826144ec565b9150614366836144ec565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561439b5761439a614662565b5b828201905092915050565b60006143b1826144ec565b91506143bc836144ec565b9250826143cc576143cb614691565b5b828204905092915050565b60006143e2826144ec565b91506143ed836144ec565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561442657614425614662565b5b828202905092915050565b600061443c826144ec565b9150614447836144ec565b92508282101561445a57614459614662565b5b828203905092915050565b6000614470826144cc565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506144c782614fc9565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061450e826144b9565b9050919050565b82818337600083830152505050565b60005b83811015614542578082015181840152602081019050614527565b83811115614551576000848401525b50505050565b6000600282049050600182168061456f57607f821691505b60208210811415614583576145826146ef565b5b50919050565b61459282614790565b810181811067ffffffffffffffff821117156145b1576145b061474d565b5b80604052505050565b60006145c5826144ec565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145f8576145f7614662565b5b600182019050919050565b600061460e8261461f565b9050919050565b6000819050919050565b600061462a826147a1565b9050919050565b600061463c826144ec565b9150614647836144ec565b92508261465757614656614691565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f2066756e647320746f207265747269657665210000000000000000000000600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f5075626c69632053616c6520697320616c7265616479206c6976652100000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f756768205265736572766564204e46547320666f722043726560008201527f61746f72206c65667420746f206d696e742e2e00000000000000000000000000602082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f50726573616c652068617320636c6f7365642c20436865636b206f757420507560008201527f626c69632053616c652100000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e4654732028436f7374203d20302e313520657460208201527f6865722065616368204e46542900000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e4654732028436f7374203d20302e313520657460208201527f68657220666f722065616368204e465429000000000000000000000000000000604082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43616e6e6f74206368616e676520746f205075626c69632053616c652069662060008201527f746865726520686173206e6f74206265656e20612050726573616c6521000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c652068617320616c7265616479206f70656e6564210000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d6178696d756d203130204d696e747320706572204164647265737320616c6c60008201527f6f77656421000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520696e206e6f74206f70656e20796574210000000000000000000000600082015250565b60038110614fda57614fd96146c0565b5b50565b614fe681614465565b8114614ff157600080fd5b50565b614ffd81614477565b811461500857600080fd5b50565b61501481614483565b811461501f57600080fd5b50565b61502b8161448d565b811461503657600080fd5b50565b615042816144ec565b811461504d57600080fd5b50565b615059816144f6565b811461506457600080fd5b5056fea2646970667358221220ee7f0b942d38616ad1eaabe2a03e4ff11f94d280ee97e48dd3122594c65099f264736f6c63430008070033697066733a2f2f516d656946357254356d523874514139674878635948476f4555657637556e5467423354575252476b75453243612f

Deployed Bytecode

0x60806040526004361061023f5760003560e01c80637501f7411161012e578063ba829d71116100ab578063dcd4e7321161006f578063dcd4e73214610837578063e985e9c514610853578063eab4178214610890578063f2fde38b146108a7578063ff984994146108d057610246565b8063ba829d7114610750578063bdb4b8481461077b578063c4d8b9df146107a6578063c87b56dd146107cf578063cd5fe7251461080c57610246565b8063a475b5dd116100f2578063a475b5dd146106a0578063b0a1c1c4146106b7578063b3ab66b0146106e2578063b620e975146106fe578063b88d4fde1461072757610246565b80637501f741146105cd5780637f1921ef146105f85780638da5cb5b1461062157806395d89b411461064c578063a22cb4651461067757610246565b806332624114116101bc57806361b20d8c1161018057806361b20d8c146104fa5780636352211e146105115780637035bf181461054e57806370a0823114610579578063715018a6146105b657610246565b8063326241141461041557806339a0c6f91461045257806342842e0e1461047b5780634520e916146104a4578063603f4d52146104cf57610246565b8063095ea7b311610203578063095ea7b31461033057806318160ddd146103595780631a17fe5e1461038457806323b872dd146103af5780633023eba6146103d857610246565b80630191a6571461024b57806301ffc9a71461027457806306fdde03146102b157806308003f78146102dc578063081812fc146102f357610246565b3661024657005b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906133b7565b6108e7565b005b34801561028057600080fd5b5061029b600480360381019061029691906135e1565b6109a7565b6040516102a89190613e03565b60405180910390f35b3480156102bd57600080fd5b506102c6610a89565b6040516102d39190613e7e565b60405180910390f35b3480156102e857600080fd5b506102f1610b1b565b005b3480156102ff57600080fd5b5061031a60048036038101906103159190613684565b610ba2565b6040516103279190613d9c565b60405180910390f35b34801561033c57600080fd5b506103576004803603810190610352919061353a565b610c27565b005b34801561036557600080fd5b5061036e610d3f565b60405161037b9190614260565b60405180910390f35b34801561039057600080fd5b50610399610d49565b6040516103a69190614260565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613424565b610d4f565b005b3480156103e457600080fd5b506103ff60048036038101906103fa91906133b7565b610daf565b60405161040c9190614260565b60405180910390f35b34801561042157600080fd5b5061043c6004803603810190610437919061357a565b610dc7565b6040516104499190613e03565b60405180910390f35b34801561045e57600080fd5b506104796004803603810190610474919061363b565b610ec5565b005b34801561048757600080fd5b506104a2600480360381019061049d9190613424565b610f5b565b005b3480156104b057600080fd5b506104b9610f7b565b6040516104c69190614260565b60405180910390f35b3480156104db57600080fd5b506104e461100e565b6040516104f19190613e63565b60405180910390f35b34801561050657600080fd5b5061050f61103f565b005b34801561051d57600080fd5b5061053860048036038101906105339190613684565b611163565b6040516105459190613d9c565b60405180910390f35b34801561055a57600080fd5b50610563611215565b6040516105709190613e7e565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b91906133b7565b6112a3565b6040516105ad9190614260565b60405180910390f35b3480156105c257600080fd5b506105cb61135b565b005b3480156105d957600080fd5b506105e26113e3565b6040516105ef9190614260565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190613684565b6113e9565b005b34801561062d57600080fd5b5061063661146f565b6040516106439190613d9c565b60405180910390f35b34801561065857600080fd5b50610661611499565b60405161066e9190613e7e565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906134fa565b61152b565b005b3480156106ac57600080fd5b506106b56116ac565b005b3480156106c357600080fd5b506106cc611731565b6040516106d99190614260565b60405180910390f35b6106fc60048036038101906106f79190613684565b6117b5565b005b34801561070a57600080fd5b50610725600480360381019061072091906136b1565b611a22565b005b34801561073357600080fd5b5061074e60048036038101906107499190613477565b611b9b565b005b34801561075c57600080fd5b50610765611bfd565b6040516107729190614260565b60405180910390f35b34801561078757600080fd5b50610790611c03565b60405161079d9190614260565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c8919061363b565b611c0d565b005b3480156107db57600080fd5b506107f660048036038101906107f19190613684565b611ca3565b6040516108039190613e7e565b60405180910390f35b34801561081857600080fd5b50610821611de8565b60405161082e9190614260565b60405180910390f35b610851600480360381019061084c91906136f1565b611dee565b005b34801561085f57600080fd5b5061087a600480360381019061087591906133e4565b612118565b6040516108879190613e03565b60405180910390f35b34801561089c57600080fd5b506108a56121ac565b005b3480156108b357600080fd5b506108ce60048036038101906108c991906133b7565b6122a5565b005b3480156108dc57600080fd5b506108e561239d565b005b6108ef6124fe565b73ffffffffffffffffffffffffffffffffffffffff1661090d61146f565b73ffffffffffffffffffffffffffffffffffffffff1614610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90614120565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a825750610a8182612506565b5b9050919050565b606060008054610a9890614557565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac490614557565b8015610b115780601f10610ae657610100808354040283529160200191610b11565b820191906000526020600020905b815481529060010190602001808311610af457829003601f168201915b5050505050905090565b610b236124fe565b73ffffffffffffffffffffffffffffffffffffffff16610b4161146f565b73ffffffffffffffffffffffffffffffffffffffff1614610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90614120565b60405180910390fd5b600854600981905550565b6000610bad82612570565b610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be3906140e0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3282611163565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a906141c0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc26124fe565b73ffffffffffffffffffffffffffffffffffffffff161480610cf15750610cf081610ceb6124fe565b612118565b5b610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790614000565b60405180910390fd5b610d3a83836125dc565b505050565b6000600854905090565b60145481565b610d60610d5a6124fe565b82612695565b610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690614200565b60405180910390fd5b610daa838383612773565b505050565b60116020528060005260406000206000915090505481565b6000803086604051602001610ddd929190613d06565b604051602081830303815290604052805190602001209050600181604051602001610e089190613d61565b6040516020818303038152906040528051906020012086868660405160008152602001604052604051610e3e9493929190613e1e565b6020604051602081039080840390855afa158015610e60573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b610ecd6124fe565b73ffffffffffffffffffffffffffffffffffffffff16610eeb61146f565b73ffffffffffffffffffffffffffffffffffffffff1614610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890614120565b60405180910390fd5b80600a9080519060200190610f579291906131a1565b5050565b610f7683838360405180602001604052806000815250611b9b565b505050565b6000610f856124fe565b73ffffffffffffffffffffffffffffffffffffffff16610fa361146f565b73ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090614120565b60405180910390fd5b600d54600e546110099190614431565b905090565b6000806013541415611023576000905061103c565b60006014541415611037576001905061103c565b600290505b90565b6110476124fe565b73ffffffffffffffffffffffffffffffffffffffff1661106561146f565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290614120565b60405180910390fd5b60006110c5611731565b90506000811161110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190613ea0565b60405180910390fd5b61114f601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e860058461114091906143d7565b61114a91906143a6565b6129cf565b6111603361115b611731565b6129cf565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390614060565b60405180910390fd5b80915050919050565b6012805461122290614557565b80601f016020809104026020016040519081016040528092919081815260200182805461124e90614557565b801561129b5780601f106112705761010080835404028352916020019161129b565b820191906000526020600020905b81548152906001019060200180831161127e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90614040565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113636124fe565b73ffffffffffffffffffffffffffffffffffffffff1661138161146f565b73ffffffffffffffffffffffffffffffffffffffff16146113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90614120565b60405180910390fd5b6113e16000612a80565b565b600c5481565b6113f16124fe565b73ffffffffffffffffffffffffffffffffffffffff1661140f61146f565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90614120565b60405180910390fd5b80600b8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114a890614557565b80601f01602080910402602001604051908101604052809291908181526020018280546114d490614557565b80156115215780601f106114f657610100808354040283529160200191611521565b820191906000526020600020905b81548152906001019060200180831161150457829003601f168201915b5050505050905090565b6115336124fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613fa0565b60405180910390fd5b80600560006115ae6124fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661165b6124fe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116a09190613e03565b60405180910390a35050565b6116b46124fe565b73ffffffffffffffffffffffffffffffffffffffff166116d261146f565b73ffffffffffffffffffffffffffffffffffffffff1614611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90614120565b60405180910390fd5b42601581905550565b600061173b6124fe565b73ffffffffffffffffffffffffffffffffffffffff1661175961146f565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690614120565b60405180910390fd5b47905090565b60006117bf61100e565b90506002808111156117d4576117d36146c0565b5b8160028111156117e7576117e66146c0565b5b14611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e90614080565b60405180910390fd5b600d54600e546118379190614431565b6009546118449190614431565b826008546118529190614350565b1115611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a90613fc0565b60405180910390fd5b600c5482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e19190614350565b1115611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990614220565b60405180910390fd5b8161192b611c03565b61193591906143d7565b341015611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90614140565b60405180910390fd5b60005b82811015611a1d57600061198c612b46565b90506119983382612b5c565b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e89190614350565b92505081905550600160086000828254611a029190614350565b92505081905550508080611a15906145ba565b91505061197a565b505050565b611a2a6124fe565b73ffffffffffffffffffffffffffffffffffffffff16611a4861146f565b73ffffffffffffffffffffffffffffffffffffffff1614611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9590614120565b60405180910390fd5b600e5482600d54611aaf9190614350565b1115611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae790613f40565b60405180910390fd5b60005b82811015611b96576000611b05612b46565b9050611b118382612b5c565b6001601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b619190614350565b92505081905550600160086000828254611b7b9190614350565b92505081905550508080611b8e906145ba565b915050611af3565b505050565b611bac611ba66124fe565b83612695565b611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290614200565b60405180910390fd5b611bf784848484612b7a565b50505050565b60155481565b6000600b54905090565b611c156124fe565b73ffffffffffffffffffffffffffffffffffffffff16611c3361146f565b73ffffffffffffffffffffffffffffffffffffffff1614611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614120565b60405180910390fd5b8060129080519060200190611c9f9291906131a1565b5050565b6060611cae82612570565b611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490614180565b60405180910390fd5b60006015541415611d8a5760128054611d0590614557565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3190614557565b8015611d7e5780601f10611d5357610100808354040283529160200191611d7e565b820191906000526020600020905b815481529060010190602001808311611d6157829003601f168201915b50505050509050611de3565b6000611d94612bd6565b90506000815111611db45760405180602001604052806000815250611ddf565b80611dbe84612c68565b604051602001611dcf929190613d32565b6040516020818303038152906040525b9150505b919050565b60135481565b828282611dfd33848484610dc7565b611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3390614100565b60405180910390fd5b6000611e4661100e565b905060006002811115611e5c57611e5b6146c0565b5b816002811115611e6f57611e6e6146c0565b5b1415611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea790614240565b60405180910390fd5b600280811115611ec357611ec26146c0565b5b816002811115611ed657611ed56146c0565b5b1415611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90614020565b60405180910390fd5b600d54600e54611f279190614431565b600954611f349190614431565b88600854611f429190614350565b1115611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90613fc0565b60405180910390fd5b600c5488601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fd19190614350565b1115612012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200990614220565b60405180910390fd5b8761201b611c03565b61202591906143d7565b341015612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e906140c0565b60405180910390fd5b60005b8881101561210d57600061207c612b46565b90506120883382612b5c565b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d89190614350565b925050819055506001600860008282546120f29190614350565b92505081905550508080612105906145ba565b91505061206a565b505050505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121b46124fe565b73ffffffffffffffffffffffffffffffffffffffff166121d261146f565b73ffffffffffffffffffffffffffffffffffffffff1614612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f90614120565b60405180910390fd5b600061223261100e565b905060006002811115612248576122476146c0565b5b81600281111561225b5761225a6146c0565b5b1461229b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612292906141e0565b60405180910390fd5b4260138190555050565b6122ad6124fe565b73ffffffffffffffffffffffffffffffffffffffff166122cb61146f565b73ffffffffffffffffffffffffffffffffffffffff1614612321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231890614120565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238890613f00565b60405180910390fd5b61239a81612a80565b50565b6123a56124fe565b73ffffffffffffffffffffffffffffffffffffffff166123c361146f565b73ffffffffffffffffffffffffffffffffffffffff1614612419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241090614120565b60405180910390fd5b600061242361100e565b9050600280811115612438576124376146c0565b5b81600281111561244b5761244a6146c0565b5b141561248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390613ec0565b60405180910390fd5b600060028111156124a05761249f6146c0565b5b8160028111156124b3576124b26146c0565b5b14156124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb906141a0565b60405180910390fd5b4260148190555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661264f83611163565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126a082612570565b6126df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d690613fe0565b60405180910390fd5b60006126ea83611163565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061275957508373ffffffffffffffffffffffffffffffffffffffff1661274184610ba2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061276a57506127698185612118565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661279382611163565b73ffffffffffffffffffffffffffffffffffffffff16146127e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e090614160565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285090613f80565b60405180910390fd5b612864838383612dc9565b61286f6000826125dc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128bf9190614431565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129169190614350565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516129f590613d87565b60006040518083038185875af1925050503d8060008114612a32576040519150601f19603f3d011682016040523d82523d6000602084013e612a37565b606091505b5050905080612a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7290613f60565b60405180910390fd5b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001600854612b579190614350565b905090565b612b76828260405180602001604052806000815250612dce565b5050565b612b85848484612773565b612b9184848484612e29565b612bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc790613ee0565b60405180910390fd5b50505050565b6060600a8054612be590614557565b80601f0160208091040260200160405190810160405280929190818152602001828054612c1190614557565b8015612c5e5780601f10612c3357610100808354040283529160200191612c5e565b820191906000526020600020905b815481529060010190602001808311612c4157829003601f168201915b5050505050905090565b60606000821415612cb0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dc4565b600082905060005b60008214612ce2578080612ccb906145ba565b915050600a82612cdb91906143a6565b9150612cb8565b60008167ffffffffffffffff811115612cfe57612cfd61474d565b5b6040519080825280601f01601f191660200182016040528015612d305781602001600182028036833780820191505090505b5090505b60008514612dbd57600182612d499190614431565b9150600a85612d589190614631565b6030612d649190614350565b60f81b818381518110612d7a57612d7961471e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612db691906143a6565b9450612d34565b8093505050505b919050565b505050565b612dd88383612fc0565b612de56000848484612e29565b612e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1b90613ee0565b60405180910390fd5b505050565b6000612e4a8473ffffffffffffffffffffffffffffffffffffffff1661318e565b15612fb3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e736124fe565b8786866040518563ffffffff1660e01b8152600401612e959493929190613db7565b602060405180830381600087803b158015612eaf57600080fd5b505af1925050508015612ee057506040513d601f19601f82011682018060405250810190612edd919061360e565b60015b612f63573d8060008114612f10576040519150601f19603f3d011682016040523d82523d6000602084013e612f15565b606091505b50600081511415612f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5290613ee0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fb8565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613030576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613027906140a0565b60405180910390fd5b61303981612570565b15613079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307090613f20565b60405180910390fd5b61308560008383612dc9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130d59190614350565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131ad90614557565b90600052602060002090601f0160209004810192826131cf5760008555613216565b82601f106131e857805160ff1916838001178555613216565b82800160010185558215613216579182015b828111156132155782518255916020019190600101906131fa565b5b5090506132239190613227565b5090565b5b80821115613240576000816000905550600101613228565b5090565b6000613257613252846142a0565b61427b565b90508281526020810184848401111561327357613272614781565b5b61327e848285614515565b509392505050565b6000613299613294846142d1565b61427b565b9050828152602081018484840111156132b5576132b4614781565b5b6132c0848285614515565b509392505050565b6000813590506132d781614fdd565b92915050565b6000813590506132ec81614ff4565b92915050565b6000813590506133018161500b565b92915050565b60008135905061331681615022565b92915050565b60008151905061332b81615022565b92915050565b600082601f8301126133465761334561477c565b5b8135613356848260208601613244565b91505092915050565b600082601f8301126133745761337361477c565b5b8135613384848260208601613286565b91505092915050565b60008135905061339c81615039565b92915050565b6000813590506133b181615050565b92915050565b6000602082840312156133cd576133cc61478b565b5b60006133db848285016132c8565b91505092915050565b600080604083850312156133fb576133fa61478b565b5b6000613409858286016132c8565b925050602061341a858286016132c8565b9150509250929050565b60008060006060848603121561343d5761343c61478b565b5b600061344b868287016132c8565b935050602061345c868287016132c8565b925050604061346d8682870161338d565b9150509250925092565b600080600080608085870312156134915761349061478b565b5b600061349f878288016132c8565b94505060206134b0878288016132c8565b93505060406134c18782880161338d565b925050606085013567ffffffffffffffff8111156134e2576134e1614786565b5b6134ee87828801613331565b91505092959194509250565b600080604083850312156135115761351061478b565b5b600061351f858286016132c8565b9250506020613530858286016132dd565b9150509250929050565b600080604083850312156135515761355061478b565b5b600061355f858286016132c8565b92505060206135708582860161338d565b9150509250929050565b600080600080608085870312156135945761359361478b565b5b60006135a2878288016132c8565b94505060206135b3878288016133a2565b93505060406135c4878288016132f2565b92505060606135d5878288016132f2565b91505092959194509250565b6000602082840312156135f7576135f661478b565b5b600061360584828501613307565b91505092915050565b6000602082840312156136245761362361478b565b5b60006136328482850161331c565b91505092915050565b6000602082840312156136515761365061478b565b5b600082013567ffffffffffffffff81111561366f5761366e614786565b5b61367b8482850161335f565b91505092915050565b60006020828403121561369a5761369961478b565b5b60006136a88482850161338d565b91505092915050565b600080604083850312156136c8576136c761478b565b5b60006136d68582860161338d565b92505060206136e7858286016132c8565b9150509250929050565b6000806000806080858703121561370b5761370a61478b565b5b60006137198782880161338d565b945050602061372a878288016133a2565b935050604061373b878288016132f2565b925050606061374c878288016132f2565b91505092959194509250565b61376181614465565b82525050565b61377861377382614465565b614603565b82525050565b61378781614477565b82525050565b61379681614483565b82525050565b6137ad6137a882614483565b614615565b82525050565b60006137be82614302565b6137c88185614318565b93506137d8818560208601614524565b6137e181614790565b840191505092915050565b6137f581614503565b82525050565b60006138068261430d565b6138108185614334565b9350613820818560208601614524565b61382981614790565b840191505092915050565b600061383f8261430d565b6138498185614345565b9350613859818560208601614524565b80840191505092915050565b6000613872601583614334565b915061387d826147ae565b602082019050919050565b6000613895601c83614345565b91506138a0826147d7565b601c82019050919050565b60006138b8601c83614334565b91506138c382614800565b602082019050919050565b60006138db603283614334565b91506138e682614829565b604082019050919050565b60006138fe602683614334565b915061390982614878565b604082019050919050565b6000613921601c83614334565b915061392c826148c7565b602082019050919050565b6000613944603383614334565b915061394f826148f0565b604082019050919050565b6000613967601483614334565b91506139728261493f565b602082019050919050565b600061398a602483614334565b915061399582614968565b604082019050919050565b60006139ad601983614334565b91506139b8826149b7565b602082019050919050565b60006139d0601e83614334565b91506139db826149e0565b602082019050919050565b60006139f3602c83614334565b91506139fe82614a09565b604082019050919050565b6000613a16603883614334565b9150613a2182614a58565b604082019050919050565b6000613a39602a83614334565b9150613a4482614aa7565b604082019050919050565b6000613a5c602a83614334565b9150613a6782614af6565b604082019050919050565b6000613a7f602983614334565b9150613a8a82614b45565b604082019050919050565b6000613aa2601c83614334565b9150613aad82614b94565b602082019050919050565b6000613ac5602083614334565b9150613ad082614bbd565b602082019050919050565b6000613ae8604d83614334565b9150613af382614be6565b606082019050919050565b6000613b0b602c83614334565b9150613b1682614c5b565b604082019050919050565b6000613b2e600583614345565b9150613b3982614caa565b600582019050919050565b6000613b51601183614334565b9150613b5c82614cd3565b602082019050919050565b6000613b74602083614334565b9150613b7f82614cfc565b602082019050919050565b6000613b97605183614334565b9150613ba282614d25565b606082019050919050565b6000613bba602983614334565b9150613bc582614d9a565b604082019050919050565b6000613bdd602f83614334565b9150613be882614de9565b604082019050919050565b6000613c00603d83614334565b9150613c0b82614e38565b604082019050919050565b6000613c23602183614334565b9150613c2e82614e87565b604082019050919050565b6000613c46601b83614334565b9150613c5182614ed6565b602082019050919050565b6000613c69600083614329565b9150613c7482614eff565b600082019050919050565b6000613c8c603183614334565b9150613c9782614f02565b604082019050919050565b6000613caf602583614334565b9150613cba82614f51565b604082019050919050565b6000613cd2601583614334565b9150613cdd82614fa0565b602082019050919050565b613cf1816144ec565b82525050565b613d00816144f6565b82525050565b6000613d128285613767565b601482019150613d228284613767565b6014820191508190509392505050565b6000613d3e8285613834565b9150613d4a8284613834565b9150613d5582613b21565b91508190509392505050565b6000613d6c82613888565b9150613d78828461379c565b60208201915081905092915050565b6000613d9282613c5c565b9150819050919050565b6000602082019050613db16000830184613758565b92915050565b6000608082019050613dcc6000830187613758565b613dd96020830186613758565b613de66040830185613ce8565b8181036060830152613df881846137b3565b905095945050505050565b6000602082019050613e18600083018461377e565b92915050565b6000608082019050613e33600083018761378d565b613e406020830186613cf7565b613e4d604083018561378d565b613e5a606083018461378d565b95945050505050565b6000602082019050613e7860008301846137ec565b92915050565b60006020820190508181036000830152613e9881846137fb565b905092915050565b60006020820190508181036000830152613eb981613865565b9050919050565b60006020820190508181036000830152613ed9816138ab565b9050919050565b60006020820190508181036000830152613ef9816138ce565b9050919050565b60006020820190508181036000830152613f19816138f1565b9050919050565b60006020820190508181036000830152613f3981613914565b9050919050565b60006020820190508181036000830152613f5981613937565b9050919050565b60006020820190508181036000830152613f798161395a565b9050919050565b60006020820190508181036000830152613f998161397d565b9050919050565b60006020820190508181036000830152613fb9816139a0565b9050919050565b60006020820190508181036000830152613fd9816139c3565b9050919050565b60006020820190508181036000830152613ff9816139e6565b9050919050565b6000602082019050818103600083015261401981613a09565b9050919050565b6000602082019050818103600083015261403981613a2c565b9050919050565b6000602082019050818103600083015261405981613a4f565b9050919050565b6000602082019050818103600083015261407981613a72565b9050919050565b6000602082019050818103600083015261409981613a95565b9050919050565b600060208201905081810360008301526140b981613ab8565b9050919050565b600060208201905081810360008301526140d981613adb565b9050919050565b600060208201905081810360008301526140f981613afe565b9050919050565b6000602082019050818103600083015261411981613b44565b9050919050565b6000602082019050818103600083015261413981613b67565b9050919050565b6000602082019050818103600083015261415981613b8a565b9050919050565b6000602082019050818103600083015261417981613bad565b9050919050565b6000602082019050818103600083015261419981613bd0565b9050919050565b600060208201905081810360008301526141b981613bf3565b9050919050565b600060208201905081810360008301526141d981613c16565b9050919050565b600060208201905081810360008301526141f981613c39565b9050919050565b6000602082019050818103600083015261421981613c7f565b9050919050565b6000602082019050818103600083015261423981613ca2565b9050919050565b6000602082019050818103600083015261425981613cc5565b9050919050565b60006020820190506142756000830184613ce8565b92915050565b6000614285614296565b90506142918282614589565b919050565b6000604051905090565b600067ffffffffffffffff8211156142bb576142ba61474d565b5b6142c482614790565b9050602081019050919050565b600067ffffffffffffffff8211156142ec576142eb61474d565b5b6142f582614790565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061435b826144ec565b9150614366836144ec565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561439b5761439a614662565b5b828201905092915050565b60006143b1826144ec565b91506143bc836144ec565b9250826143cc576143cb614691565b5b828204905092915050565b60006143e2826144ec565b91506143ed836144ec565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561442657614425614662565b5b828202905092915050565b600061443c826144ec565b9150614447836144ec565b92508282101561445a57614459614662565b5b828203905092915050565b6000614470826144cc565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506144c782614fc9565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061450e826144b9565b9050919050565b82818337600083830152505050565b60005b83811015614542578082015181840152602081019050614527565b83811115614551576000848401525b50505050565b6000600282049050600182168061456f57607f821691505b60208210811415614583576145826146ef565b5b50919050565b61459282614790565b810181811067ffffffffffffffff821117156145b1576145b061474d565b5b80604052505050565b60006145c5826144ec565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145f8576145f7614662565b5b600182019050919050565b600061460e8261461f565b9050919050565b6000819050919050565b600061462a826147a1565b9050919050565b600061463c826144ec565b9150614647836144ec565b92508261465757614656614691565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f2066756e647320746f207265747269657665210000000000000000000000600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f5075626c69632053616c6520697320616c7265616479206c6976652100000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f756768205265736572766564204e46547320666f722043726560008201527f61746f72206c65667420746f206d696e742e2e00000000000000000000000000602082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f50726573616c652068617320636c6f7365642c20436865636b206f757420507560008201527f626c69632053616c652100000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e4654732028436f7374203d20302e313520657460208201527f6865722065616368204e46542900000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e4654732028436f7374203d20302e313520657460208201527f68657220666f722065616368204e465429000000000000000000000000000000604082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43616e6e6f74206368616e676520746f205075626c69632053616c652069662060008201527f746865726520686173206e6f74206265656e20612050726573616c6521000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c652068617320616c7265616479206f70656e6564210000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d6178696d756d203130204d696e747320706572204164647265737320616c6c60008201527f6f77656421000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520696e206e6f74206f70656e20796574210000000000000000000000600082015250565b60038110614fda57614fd96146c0565b5b50565b614fe681614465565b8114614ff157600080fd5b50565b614ffd81614477565b811461500857600080fd5b50565b61501481614483565b811461501f57600080fd5b50565b61502b8161448d565b811461503657600080fd5b50565b615042816144ec565b811461504d57600080fd5b50565b615059816144f6565b811461506457600080fd5b5056fea2646970667358221220ee7f0b942d38616ad1eaabe2a03e4ff11f94d280ee97e48dd3122594c65099f264736f6c63430008070033

Deployed Bytecode Sourcemap

34778:9295:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36866:8;;;42342:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22891:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23842:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42015:94;;;;;;;;;;;;;:::i;:::-;;25159:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24682:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42501:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36344:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26049:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35996:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38083:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37093:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26459:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42675:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43388:297;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42861:287;;;;;;;;;;;;;:::i;:::-;;23536:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36204:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23266:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4591:94;;;;;;;;;;;;;:::i;:::-;;35343:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43862:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3940:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24011:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25452:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43986:82;;;;;;;;;;;;;:::i;:::-;;42159:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39454:797;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40296:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26715:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36386:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43730:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37214:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40727:568;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36305:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38448:947;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25818:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41345:215;;;;;;;;;;;;;:::i;:::-;;4840:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41602:348;;;;;;;;;;;;;:::i;:::-;;42342:87;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42415:6:::1;42407:5;;:14;;;;;;;;;;;;;;;;;;42342:87:::0;:::o;22891:305::-;22993:4;23045:25;23030:40;;;:11;:40;;;;:105;;;;23102:33;23087:48;;;:11;:48;;;;23030:105;:158;;;;23152:36;23176:11;23152:23;:36::i;:::-;23030:158;23010:178;;22891:305;;;:::o;23842:100::-;23896:13;23929:5;23922:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23842:100;:::o;42015:94::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42082:19:::1;;42065:14;:36;;;;42015:94::o:0;25159:221::-;25235:7;25263:16;25271:7;25263;:16::i;:::-;25255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25348:15;:24;25364:7;25348:24;;;;;;;;;;;;;;;;;;;;;25341:31;;25159:221;;;:::o;24682:411::-;24763:13;24779:23;24794:7;24779:14;:23::i;:::-;24763:39;;24827:5;24821:11;;:2;:11;;;;24813:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24921:5;24905:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24930:37;24947:5;24954:12;:10;:12::i;:::-;24930:16;:37::i;:::-;24905:62;24883:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25064:21;25073:2;25077:7;25064:8;:21::i;:::-;24752:341;24682:411;;:::o;42501:94::-;42544:4;42568:19;;42561:26;;42501:94;:::o;36344:35::-;;;;:::o;26049:339::-;26244:41;26263:12;:10;:12::i;:::-;26277:7;26244:18;:41::i;:::-;26236:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26352:28;26362:4;26368:2;26372:7;26352:9;:28::i;:::-;26049:339;;;:::o;35996:50::-;;;;;;;;;;;;;;;;;:::o;38083:306::-;38182:4;38199:12;38249:4;38256;38224:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38214:48;;;;;;38199:63;;38289:92;38362:4;38309:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;38299:69;;;;;;38370:2;38374;38378;38289:92;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38280:101;;:5;;;;;;;;;;;:101;;;38273:108;;;38083:306;;;;;;:::o;37093:109::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37186:8:::1;37168:15;:26;;;;;;;;;;;;:::i;:::-;;37093:109:::0;:::o;26459:185::-;26597:39;26614:4;26620:2;26624:7;26597:39;;;;;;;;;;;;:16;:39::i;:::-;26459:185;;;:::o;42675:124::-;42734:4;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42777:14:::1;;42758:16;;:33;;;;:::i;:::-;42751:40;;42675:124:::0;:::o;43388:297::-;43429:5;43471:1;43450:17;;:22;43446:232;;;43496:12;43489:19;;;;43446:232;43563:1;43539:20;;:25;43535:143;;;43588:13;43581:20;;;;43535:143;43650:16;43643:23;;43388:297;;:::o;42861:287::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42914:15:::1;42932:16;:14;:16::i;:::-;42914:34;;42977:1;42967:7;:11;42959:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;43017:34;43027:3;;;;;;;;;;;43046:4;43043:1;43033:7;:11;;;;:::i;:::-;43032:18;;;;:::i;:::-;43017:9;:34::i;:::-;43062:48;43080:10;43093:16;:14;:16::i;:::-;43062:9;:48::i;:::-;42903:245;42861:287::o:0;23536:239::-;23608:7;23628:13;23644:7;:16;23652:7;23644:16;;;;;;;;;;;;;;;;;;;;;23628:32;;23696:1;23679:19;;:5;:19;;;;23671:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23762:5;23755:12;;;23536:239;;;:::o;36204:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23266:208::-;23338:7;23383:1;23366:19;;:5;:19;;;;23358:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23450:9;:16;23460:5;23450:16;;;;;;;;;;;;;;;;23443:23;;23266:208;;;:::o;4591:94::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4656:21:::1;4674:1;4656:9;:21::i;:::-;4591:94::o:0;35343:19::-;;;;:::o;43862:93::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43940:7:::1;43928:9;:19;;;;43862:93:::0;:::o;3940:87::-;3986:7;4013:6;;;;;;;;;;;4006:13;;3940:87;:::o;24011:104::-;24067:13;24100:7;24093:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24011:104;:::o;25452:295::-;25567:12;:10;:12::i;:::-;25555:24;;:8;:24;;;;25547:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25667:8;25622:18;:32;25641:12;:10;:12::i;:::-;25622:32;;;;;;;;;;;;;;;:42;25655:8;25622:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25720:8;25691:48;;25706:12;:10;:12::i;:::-;25691:48;;;25730:8;25691:48;;;;;;:::i;:::-;;;;;;;;25452:295;;:::o;43986:82::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44045:15:::1;44032:10;:28;;;;43986:82::o:0;42159:109::-;42215:4;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42239:21:::1;42232:28;;42159:109:::0;:::o;39454:797::-;39520:16;39539:11;:9;:11::i;:::-;39520:30;;39583:16;39569:30;;;;;;;;:::i;:::-;;:10;:30;;;;;;;;:::i;:::-;;;39561:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;39720:14;;39701:16;;:33;;;;:::i;:::-;39683:14;;:52;;;;:::i;:::-;39673:6;39651:19;;:28;;;;:::i;:::-;:84;;39643:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;39829:7;;39819:6;39789:15;:27;39805:10;39789:27;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:47;;39781:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39923:6;39910:10;:8;:10::i;:::-;:19;;;;:::i;:::-;39897:9;:32;;39889:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;40035:9;40030:214;40054:6;40050:1;:10;40030:214;;;40082:11;40096:9;:7;:9::i;:::-;40082:23;;40120:26;40130:10;40142:3;40120:9;:26::i;:::-;40192:1;40161:15;:27;40177:10;40161:27;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;40231:1;40208:19;;:24;;;;;;;:::i;:::-;;;;;;;;40067:177;40062:3;;;;;:::i;:::-;;;;40030:214;;;;39509:742;39454:797;:::o;40296:423::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40417:16:::1;;40407:6;40390:14;;:23;;;;:::i;:::-;:43;;40382:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;40505:9;40500:212;40524:6;40520:1;:10;40500:212;;;40552:11;40566:9;:7;:9::i;:::-;40552:23;;40590:25;40600:9;40611:3;40590:9;:25::i;:::-;40660:1;40630:15;:26;40646:9;40630:26;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;40699:1;40676:19;;:24;;;;;;;:::i;:::-;;;;;;;;40537:175;40532:3;;;;;:::i;:::-;;;;40500:212;;;;40296:423:::0;;:::o;26715:328::-;26890:41;26909:12;:10;:12::i;:::-;26923:7;26890:18;:41::i;:::-;26882:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26996:39;27010:4;27016:2;27020:7;27029:5;26996:13;:39::i;:::-;26715:328;;;;:::o;36386:25::-;;;;:::o;43730:84::-;43770:7;43797:9;;43790:16;;43730:84;:::o;37214:125::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37317:14:::1;37301:13;:30;;;;;;;;;;;;:::i;:::-;;37214:125:::0;:::o;40727:568::-;40801:13;40835:17;40843:8;40835:7;:17::i;:::-;40827:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;41030:1;41016:10;;:15;41012:272;;;41055:13;41048:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41012:272;41120:21;41144:10;:8;:10::i;:::-;41120:34;;41200:1;41182:7;41176:21;:25;:96;;;;;;;;;;;;;;;;;41228:7;41237:19;:8;:17;:19::i;:::-;41211:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41176:96;41169:103;;;40727:568;;;;:::o;36305:32::-;;;;:::o;38448:947::-;38535:2;38540;38544;37585:41;37606:10;37617:2;37620;37623;37585:20;:41::i;:::-;37576:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38574:16:::1;38593:11;:9;:11::i;:::-;38574:30;;38637:12;38623:26;;;;;;;;:::i;:::-;;:10;:26;;;;;;;;:::i;:::-;;;;38615:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;38708:16;38694:30:::0;::::1;;;;;;;:::i;:::-;;:10;:30;;;;;;;;:::i;:::-;;;;38686:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;38860:14;;38840:16;;:34;;;;:::i;:::-;38822:14;;:53;;;;:::i;:::-;38812:6;38790:19;;:28;;;;:::i;:::-;:85;;38782:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;38969:7;;38959:6;38929:15;:27;38945:10;38929:27;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:47;;38921:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39063:6;39050:10;:8;:10::i;:::-;:19;;;;:::i;:::-;39037:9;:32;;39029:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;39177:9;39172:214;39196:6;39192:1;:10;39172:214;;;39224:11;39238:9;:7;:9::i;:::-;39224:23;;39262:26;39272:10;39284:3;39262:9;:26::i;:::-;39334:1;39303:15;:27;39319:10;39303:27;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;39373:1;39350:19;;:24;;;;;;;:::i;:::-;;;;;;;;39209:177;39204:3;;;;;:::i;:::-;;;;39172:214;;;;38563:832;38448:947:::0;;;;;;;:::o;25818:164::-;25915:4;25939:18;:25;25958:5;25939:25;;;;;;;;;;;;;;;:35;25965:8;25939:35;;;;;;;;;;;;;;;;;;;;;;;;;25932:42;;25818:164;;;;:::o;41345:215::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41399:16:::1;41418:11;:9;:11::i;:::-;41399:30;;41462:12;41448:26;;;;;;;;:::i;:::-;;:10;:26;;;;;;;;:::i;:::-;;;41440:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41537:15;41517:17;:35;;;;41388:172;41345:215::o:0;4840:192::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4949:1:::1;4929:22;;:8;:22;;;;4921:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5005:19;5015:8;5005:9;:19::i;:::-;4840:192:::0;:::o;41602:348::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41660:16:::1;41679:11;:9;:11::i;:::-;41660:30;;41723:16;41709:30:::0;::::1;;;;;;;:::i;:::-;;:10;:30;;;;;;;;:::i;:::-;;;;41701:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41805:12;41791:26;;;;;;;;:::i;:::-;;:10;:26;;;;;;;;:::i;:::-;;;;41783:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;41927:15;41904:20;:38;;;;41649:301;41602:348::o:0;2728:98::-;2781:7;2808:10;2801:17;;2728:98;:::o;15926:157::-;16011:4;16050:25;16035:40;;;:11;:40;;;;16028:47;;15926:157;;;:::o;28553:127::-;28618:4;28670:1;28642:30;;:7;:16;28650:7;28642:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28635:37;;28553:127;;;:::o;32535:174::-;32637:2;32610:15;:24;32626:7;32610:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32693:7;32689:2;32655:46;;32664:23;32679:7;32664:14;:23::i;:::-;32655:46;;;;;;;;;;;;32535:174;;:::o;28847:348::-;28940:4;28965:16;28973:7;28965;:16::i;:::-;28957:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29041:13;29057:23;29072:7;29057:14;:23::i;:::-;29041:39;;29110:5;29099:16;;:7;:16;;;:51;;;;29143:7;29119:31;;:20;29131:7;29119:11;:20::i;:::-;:31;;;29099:51;:87;;;;29154:32;29171:5;29178:7;29154:16;:32::i;:::-;29099:87;29091:96;;;28847:348;;;;:::o;31839:578::-;31998:4;31971:31;;:23;31986:7;31971:14;:23::i;:::-;:31;;;31963:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32081:1;32067:16;;:2;:16;;;;32059:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32137:39;32158:4;32164:2;32168:7;32137:20;:39::i;:::-;32241:29;32258:1;32262:7;32241:8;:29::i;:::-;32302:1;32283:9;:15;32293:4;32283:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32331:1;32314:9;:13;32324:2;32314:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32362:2;32343:7;:16;32351:7;32343:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32401:7;32397:2;32382:27;;32391:4;32382:27;;;;;;;;;;;;31839:578;;;:::o;43156:183::-;43237:9;43252:7;:12;;43272:6;43252:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43236:47;;;43302:4;43294:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;43225:114;43156:183;;:::o;5040:173::-;5096:16;5115:6;;;;;;;;;;;5096:25;;5141:8;5132:6;;:17;;;;;;;;;;;;;;;;;;5196:8;5165:40;;5186:8;5165:40;;;;;;;;;;;;5085:128;5040:173;:::o;37395:99::-;37436:7;37485:1;37463:19;;:23;;;;:::i;:::-;37456:30;;37395:99;:::o;29537:110::-;29613:26;29623:2;29627:7;29613:26;;;;;;;;;;;;:9;:26::i;:::-;29537:110;;:::o;27925:315::-;28082:28;28092:4;28098:2;28102:7;28082:9;:28::i;:::-;28129:48;28152:4;28158:2;28162:7;28171:5;28129:22;:48::i;:::-;28121:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27925:315;;;;:::o;36919:116::-;36979:13;37012:15;37005:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36919:116;:::o;344:723::-;400:13;630:1;621:5;:10;617:53;;;648:10;;;;;;;;;;;;;;;;;;;;;617:53;680:12;695:5;680:20;;711:14;736:78;751:1;743:4;:9;736:78;;769:8;;;;;:::i;:::-;;;;800:2;792:10;;;;;:::i;:::-;;;736:78;;;824:19;856:6;846:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824:39;;874:154;890:1;881:5;:10;874:154;;918:1;908:11;;;;;:::i;:::-;;;985:2;977:5;:10;;;;:::i;:::-;964:2;:24;;;;:::i;:::-;951:39;;934:6;941;934:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1014:2;1005:11;;;;;:::i;:::-;;;874:154;;;1052:6;1038:21;;;;;344:723;;;;:::o;34645:126::-;;;;:::o;29874:321::-;30004:18;30010:2;30014:7;30004:5;:18::i;:::-;30055:54;30086:1;30090:2;30094:7;30103:5;30055:22;:54::i;:::-;30033:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29874:321;;;:::o;33274:799::-;33429:4;33450:15;:2;:13;;;:15::i;:::-;33446:620;;;33502:2;33486:36;;;33523:12;:10;:12::i;:::-;33537:4;33543:7;33552:5;33486:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33482:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33745:1;33728:6;:13;:18;33724:272;;;33771:60;;;;;;;;;;:::i;:::-;;;;;;;;33724:272;33946:6;33940:13;33931:6;33927:2;33923:15;33916:38;33482:529;33619:41;;;33609:51;;;:6;:51;;;;33602:58;;;;;33446:620;34050:4;34043:11;;33274:799;;;;;;;:::o;30531:382::-;30625:1;30611:16;;:2;:16;;;;30603:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30684:16;30692:7;30684;:16::i;:::-;30683:17;30675:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30746:45;30775:1;30779:2;30783:7;30746:20;:45::i;:::-;30821:1;30804:9;:13;30814:2;30804:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30852:2;30833:7;:16;30841:7;30833:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30897:7;30893:2;30872:33;;30889:1;30872:33;;;;;;;;;;;;30531:382;;:::o;5986:387::-;6046:4;6254:12;6321:7;6309:20;6301:28;;6364:1;6357:4;:8;6350:15;;;5986:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:139::-;1171:5;1209:6;1196:20;1187:29;;1225:33;1252:5;1225:33;:::i;:::-;1125:139;;;;:::o;1270:137::-;1315:5;1353:6;1340:20;1331:29;;1369:32;1395:5;1369:32;:::i;:::-;1270:137;;;;:::o;1413:141::-;1469:5;1500:6;1494:13;1485:22;;1516:32;1542:5;1516:32;:::i;:::-;1413:141;;;;:::o;1573:338::-;1628:5;1677:3;1670:4;1662:6;1658:17;1654:27;1644:122;;1685:79;;:::i;:::-;1644:122;1802:6;1789:20;1827:78;1901:3;1893:6;1886:4;1878:6;1874:17;1827:78;:::i;:::-;1818:87;;1634:277;1573:338;;;;:::o;1931:340::-;1987:5;2036:3;2029:4;2021:6;2017:17;2013:27;2003:122;;2044:79;;:::i;:::-;2003:122;2161:6;2148:20;2186:79;2261:3;2253:6;2246:4;2238:6;2234:17;2186:79;:::i;:::-;2177:88;;1993:278;1931:340;;;;:::o;2277:139::-;2323:5;2361:6;2348:20;2339:29;;2377:33;2404:5;2377:33;:::i;:::-;2277:139;;;;:::o;2422:135::-;2466:5;2504:6;2491:20;2482:29;;2520:31;2545:5;2520:31;:::i;:::-;2422:135;;;;:::o;2563:329::-;2622:6;2671:2;2659:9;2650:7;2646:23;2642:32;2639:119;;;2677:79;;:::i;:::-;2639:119;2797:1;2822:53;2867:7;2858:6;2847:9;2843:22;2822:53;:::i;:::-;2812:63;;2768:117;2563:329;;;;:::o;2898:474::-;2966:6;2974;3023:2;3011:9;3002:7;2998:23;2994:32;2991:119;;;3029:79;;:::i;:::-;2991:119;3149:1;3174:53;3219:7;3210:6;3199:9;3195:22;3174:53;:::i;:::-;3164:63;;3120:117;3276:2;3302:53;3347:7;3338:6;3327:9;3323:22;3302:53;:::i;:::-;3292:63;;3247:118;2898:474;;;;;:::o;3378:619::-;3455:6;3463;3471;3520:2;3508:9;3499:7;3495:23;3491:32;3488:119;;;3526:79;;:::i;:::-;3488:119;3646:1;3671:53;3716:7;3707:6;3696:9;3692:22;3671:53;:::i;:::-;3661:63;;3617:117;3773:2;3799:53;3844:7;3835:6;3824:9;3820:22;3799:53;:::i;:::-;3789:63;;3744:118;3901:2;3927:53;3972:7;3963:6;3952:9;3948:22;3927:53;:::i;:::-;3917:63;;3872:118;3378:619;;;;;:::o;4003:943::-;4098:6;4106;4114;4122;4171:3;4159:9;4150:7;4146:23;4142:33;4139:120;;;4178:79;;:::i;:::-;4139:120;4298:1;4323:53;4368:7;4359:6;4348:9;4344:22;4323:53;:::i;:::-;4313:63;;4269:117;4425:2;4451:53;4496:7;4487:6;4476:9;4472:22;4451:53;:::i;:::-;4441:63;;4396:118;4553:2;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4524:118;4709:2;4698:9;4694:18;4681:32;4740:18;4732:6;4729:30;4726:117;;;4762:79;;:::i;:::-;4726:117;4867:62;4921:7;4912:6;4901:9;4897:22;4867:62;:::i;:::-;4857:72;;4652:287;4003:943;;;;;;;:::o;4952:468::-;5017:6;5025;5074:2;5062:9;5053:7;5049:23;5045:32;5042:119;;;5080:79;;:::i;:::-;5042:119;5200:1;5225:53;5270:7;5261:6;5250:9;5246:22;5225:53;:::i;:::-;5215:63;;5171:117;5327:2;5353:50;5395:7;5386:6;5375:9;5371:22;5353:50;:::i;:::-;5343:60;;5298:115;4952:468;;;;;:::o;5426:474::-;5494:6;5502;5551:2;5539:9;5530:7;5526:23;5522:32;5519:119;;;5557:79;;:::i;:::-;5519:119;5677:1;5702:53;5747:7;5738:6;5727:9;5723:22;5702:53;:::i;:::-;5692:63;;5648:117;5804:2;5830:53;5875:7;5866:6;5855:9;5851:22;5830:53;:::i;:::-;5820:63;;5775:118;5426:474;;;;;:::o;5906:761::-;5990:6;5998;6006;6014;6063:3;6051:9;6042:7;6038:23;6034:33;6031:120;;;6070:79;;:::i;:::-;6031:120;6190:1;6215:53;6260:7;6251:6;6240:9;6236:22;6215:53;:::i;:::-;6205:63;;6161:117;6317:2;6343:51;6386:7;6377:6;6366:9;6362:22;6343:51;:::i;:::-;6333:61;;6288:116;6443:2;6469:53;6514:7;6505:6;6494:9;6490:22;6469:53;:::i;:::-;6459:63;;6414:118;6571:2;6597:53;6642:7;6633:6;6622:9;6618:22;6597:53;:::i;:::-;6587:63;;6542:118;5906:761;;;;;;;:::o;6673:327::-;6731:6;6780:2;6768:9;6759:7;6755:23;6751:32;6748:119;;;6786:79;;:::i;:::-;6748:119;6906:1;6931:52;6975:7;6966:6;6955:9;6951:22;6931:52;:::i;:::-;6921:62;;6877:116;6673:327;;;;:::o;7006:349::-;7075:6;7124:2;7112:9;7103:7;7099:23;7095:32;7092:119;;;7130:79;;:::i;:::-;7092:119;7250:1;7275:63;7330:7;7321:6;7310:9;7306:22;7275:63;:::i;:::-;7265:73;;7221:127;7006:349;;;;:::o;7361:509::-;7430:6;7479:2;7467:9;7458:7;7454:23;7450:32;7447:119;;;7485:79;;:::i;:::-;7447:119;7633:1;7622:9;7618:17;7605:31;7663:18;7655:6;7652:30;7649:117;;;7685:79;;:::i;:::-;7649:117;7790:63;7845:7;7836:6;7825:9;7821:22;7790:63;:::i;:::-;7780:73;;7576:287;7361:509;;;;:::o;7876:329::-;7935:6;7984:2;7972:9;7963:7;7959:23;7955:32;7952:119;;;7990:79;;:::i;:::-;7952:119;8110:1;8135:53;8180:7;8171:6;8160:9;8156:22;8135:53;:::i;:::-;8125:63;;8081:117;7876:329;;;;:::o;8211:474::-;8279:6;8287;8336:2;8324:9;8315:7;8311:23;8307:32;8304:119;;;8342:79;;:::i;:::-;8304:119;8462:1;8487:53;8532:7;8523:6;8512:9;8508:22;8487:53;:::i;:::-;8477:63;;8433:117;8589:2;8615:53;8660:7;8651:6;8640:9;8636:22;8615:53;:::i;:::-;8605:63;;8560:118;8211:474;;;;;:::o;8691:761::-;8775:6;8783;8791;8799;8848:3;8836:9;8827:7;8823:23;8819:33;8816:120;;;8855:79;;:::i;:::-;8816:120;8975:1;9000:53;9045:7;9036:6;9025:9;9021:22;9000:53;:::i;:::-;8990:63;;8946:117;9102:2;9128:51;9171:7;9162:6;9151:9;9147:22;9128:51;:::i;:::-;9118:61;;9073:116;9228:2;9254:53;9299:7;9290:6;9279:9;9275:22;9254:53;:::i;:::-;9244:63;;9199:118;9356:2;9382:53;9427:7;9418:6;9407:9;9403:22;9382:53;:::i;:::-;9372:63;;9327:118;8691:761;;;;;;;:::o;9458:118::-;9545:24;9563:5;9545:24;:::i;:::-;9540:3;9533:37;9458:118;;:::o;9582:157::-;9687:45;9707:24;9725:5;9707:24;:::i;:::-;9687:45;:::i;:::-;9682:3;9675:58;9582:157;;:::o;9745:109::-;9826:21;9841:5;9826:21;:::i;:::-;9821:3;9814:34;9745:109;;:::o;9860:118::-;9947:24;9965:5;9947:24;:::i;:::-;9942:3;9935:37;9860:118;;:::o;9984:157::-;10089:45;10109:24;10127:5;10109:24;:::i;:::-;10089:45;:::i;:::-;10084:3;10077:58;9984:157;;:::o;10147:360::-;10233:3;10261:38;10293:5;10261:38;:::i;:::-;10315:70;10378:6;10373:3;10315:70;:::i;:::-;10308:77;;10394:52;10439:6;10434:3;10427:4;10420:5;10416:16;10394:52;:::i;:::-;10471:29;10493:6;10471:29;:::i;:::-;10466:3;10462:39;10455:46;;10237:270;10147:360;;;;:::o;10513:147::-;10608:45;10647:5;10608:45;:::i;:::-;10603:3;10596:58;10513:147;;:::o;10666:364::-;10754:3;10782:39;10815:5;10782:39;:::i;:::-;10837:71;10901:6;10896:3;10837:71;:::i;:::-;10830:78;;10917:52;10962:6;10957:3;10950:4;10943:5;10939:16;10917:52;:::i;:::-;10994:29;11016:6;10994:29;:::i;:::-;10989:3;10985:39;10978:46;;10758:272;10666:364;;;;:::o;11036:377::-;11142:3;11170:39;11203:5;11170:39;:::i;:::-;11225:89;11307:6;11302:3;11225:89;:::i;:::-;11218:96;;11323:52;11368:6;11363:3;11356:4;11349:5;11345:16;11323:52;:::i;:::-;11400:6;11395:3;11391:16;11384:23;;11146:267;11036:377;;;;:::o;11419:366::-;11561:3;11582:67;11646:2;11641:3;11582:67;:::i;:::-;11575:74;;11658:93;11747:3;11658:93;:::i;:::-;11776:2;11771:3;11767:12;11760:19;;11419:366;;;:::o;11791:402::-;11951:3;11972:85;12054:2;12049:3;11972:85;:::i;:::-;11965:92;;12066:93;12155:3;12066:93;:::i;:::-;12184:2;12179:3;12175:12;12168:19;;11791:402;;;:::o;12199:366::-;12341:3;12362:67;12426:2;12421:3;12362:67;:::i;:::-;12355:74;;12438:93;12527:3;12438:93;:::i;:::-;12556:2;12551:3;12547:12;12540:19;;12199:366;;;:::o;12571:::-;12713:3;12734:67;12798:2;12793:3;12734:67;:::i;:::-;12727:74;;12810:93;12899:3;12810:93;:::i;:::-;12928:2;12923:3;12919:12;12912:19;;12571:366;;;:::o;12943:::-;13085:3;13106:67;13170:2;13165:3;13106:67;:::i;:::-;13099:74;;13182:93;13271:3;13182:93;:::i;:::-;13300:2;13295:3;13291:12;13284:19;;12943:366;;;:::o;13315:::-;13457:3;13478:67;13542:2;13537:3;13478:67;:::i;:::-;13471:74;;13554:93;13643:3;13554:93;:::i;:::-;13672:2;13667:3;13663:12;13656:19;;13315:366;;;:::o;13687:::-;13829:3;13850:67;13914:2;13909:3;13850:67;:::i;:::-;13843:74;;13926:93;14015:3;13926:93;:::i;:::-;14044:2;14039:3;14035:12;14028:19;;13687:366;;;:::o;14059:::-;14201:3;14222:67;14286:2;14281:3;14222:67;:::i;:::-;14215:74;;14298:93;14387:3;14298:93;:::i;:::-;14416:2;14411:3;14407:12;14400:19;;14059:366;;;:::o;14431:::-;14573:3;14594:67;14658:2;14653:3;14594:67;:::i;:::-;14587:74;;14670:93;14759:3;14670:93;:::i;:::-;14788:2;14783:3;14779:12;14772:19;;14431:366;;;:::o;14803:::-;14945:3;14966:67;15030:2;15025:3;14966:67;:::i;:::-;14959:74;;15042:93;15131:3;15042:93;:::i;:::-;15160:2;15155:3;15151:12;15144:19;;14803:366;;;:::o;15175:::-;15317:3;15338:67;15402:2;15397:3;15338:67;:::i;:::-;15331:74;;15414:93;15503:3;15414:93;:::i;:::-;15532:2;15527:3;15523:12;15516:19;;15175:366;;;:::o;15547:::-;15689:3;15710:67;15774:2;15769:3;15710:67;:::i;:::-;15703:74;;15786:93;15875:3;15786:93;:::i;:::-;15904:2;15899:3;15895:12;15888:19;;15547:366;;;:::o;15919:::-;16061:3;16082:67;16146:2;16141:3;16082:67;:::i;:::-;16075:74;;16158:93;16247:3;16158:93;:::i;:::-;16276:2;16271:3;16267:12;16260:19;;15919:366;;;:::o;16291:::-;16433:3;16454:67;16518:2;16513:3;16454:67;:::i;:::-;16447:74;;16530:93;16619:3;16530:93;:::i;:::-;16648:2;16643:3;16639:12;16632:19;;16291:366;;;:::o;16663:::-;16805:3;16826:67;16890:2;16885:3;16826:67;:::i;:::-;16819:74;;16902:93;16991:3;16902:93;:::i;:::-;17020:2;17015:3;17011:12;17004:19;;16663:366;;;:::o;17035:::-;17177:3;17198:67;17262:2;17257:3;17198:67;:::i;:::-;17191:74;;17274:93;17363:3;17274:93;:::i;:::-;17392:2;17387:3;17383:12;17376:19;;17035:366;;;:::o;17407:::-;17549:3;17570:67;17634:2;17629:3;17570:67;:::i;:::-;17563:74;;17646:93;17735:3;17646:93;:::i;:::-;17764:2;17759:3;17755:12;17748:19;;17407:366;;;:::o;17779:::-;17921:3;17942:67;18006:2;18001:3;17942:67;:::i;:::-;17935:74;;18018:93;18107:3;18018:93;:::i;:::-;18136:2;18131:3;18127:12;18120:19;;17779:366;;;:::o;18151:::-;18293:3;18314:67;18378:2;18373:3;18314:67;:::i;:::-;18307:74;;18390:93;18479:3;18390:93;:::i;:::-;18508:2;18503:3;18499:12;18492:19;;18151:366;;;:::o;18523:::-;18665:3;18686:67;18750:2;18745:3;18686:67;:::i;:::-;18679:74;;18762:93;18851:3;18762:93;:::i;:::-;18880:2;18875:3;18871:12;18864:19;;18523:366;;;:::o;18895:400::-;19055:3;19076:84;19158:1;19153:3;19076:84;:::i;:::-;19069:91;;19169:93;19258:3;19169:93;:::i;:::-;19287:1;19282:3;19278:11;19271:18;;18895:400;;;:::o;19301:366::-;19443:3;19464:67;19528:2;19523:3;19464:67;:::i;:::-;19457:74;;19540:93;19629:3;19540:93;:::i;:::-;19658:2;19653:3;19649:12;19642:19;;19301:366;;;:::o;19673:::-;19815:3;19836:67;19900:2;19895:3;19836:67;:::i;:::-;19829:74;;19912:93;20001:3;19912:93;:::i;:::-;20030:2;20025:3;20021:12;20014:19;;19673:366;;;:::o;20045:::-;20187:3;20208:67;20272:2;20267:3;20208:67;:::i;:::-;20201:74;;20284:93;20373:3;20284:93;:::i;:::-;20402:2;20397:3;20393:12;20386:19;;20045:366;;;:::o;20417:::-;20559:3;20580:67;20644:2;20639:3;20580:67;:::i;:::-;20573:74;;20656:93;20745:3;20656:93;:::i;:::-;20774:2;20769:3;20765:12;20758:19;;20417:366;;;:::o;20789:::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:::-;21303:3;21324:67;21388:2;21383:3;21324:67;:::i;:::-;21317:74;;21400:93;21489:3;21400:93;:::i;:::-;21518:2;21513:3;21509:12;21502:19;;21161:366;;;:::o;21533:::-;21675:3;21696:67;21760:2;21755:3;21696:67;:::i;:::-;21689:74;;21772:93;21861:3;21772:93;:::i;:::-;21890:2;21885:3;21881:12;21874:19;;21533:366;;;:::o;21905:::-;22047:3;22068:67;22132:2;22127:3;22068:67;:::i;:::-;22061:74;;22144:93;22233:3;22144:93;:::i;:::-;22262:2;22257:3;22253:12;22246:19;;21905:366;;;:::o;22277:398::-;22436:3;22457:83;22538:1;22533:3;22457:83;:::i;:::-;22450:90;;22549:93;22638:3;22549:93;:::i;:::-;22667:1;22662:3;22658:11;22651:18;;22277:398;;;:::o;22681:366::-;22823:3;22844:67;22908:2;22903:3;22844:67;:::i;:::-;22837:74;;22920:93;23009:3;22920:93;:::i;:::-;23038:2;23033:3;23029:12;23022:19;;22681:366;;;:::o;23053:::-;23195:3;23216:67;23280:2;23275:3;23216:67;:::i;:::-;23209:74;;23292:93;23381:3;23292:93;:::i;:::-;23410:2;23405:3;23401:12;23394:19;;23053:366;;;:::o;23425:::-;23567:3;23588:67;23652:2;23647:3;23588:67;:::i;:::-;23581:74;;23664:93;23753:3;23664:93;:::i;:::-;23782:2;23777:3;23773:12;23766:19;;23425:366;;;:::o;23797:118::-;23884:24;23902:5;23884:24;:::i;:::-;23879:3;23872:37;23797:118;;:::o;23921:112::-;24004:22;24020:5;24004:22;:::i;:::-;23999:3;23992:35;23921:112;;:::o;24039:397::-;24179:3;24194:75;24265:3;24256:6;24194:75;:::i;:::-;24294:2;24289:3;24285:12;24278:19;;24307:75;24378:3;24369:6;24307:75;:::i;:::-;24407:2;24402:3;24398:12;24391:19;;24427:3;24420:10;;24039:397;;;;;:::o;24442:701::-;24723:3;24745:95;24836:3;24827:6;24745:95;:::i;:::-;24738:102;;24857:95;24948:3;24939:6;24857:95;:::i;:::-;24850:102;;24969:148;25113:3;24969:148;:::i;:::-;24962:155;;25134:3;25127:10;;24442:701;;;;;:::o;25149:522::-;25362:3;25384:148;25528:3;25384:148;:::i;:::-;25377:155;;25542:75;25613:3;25604:6;25542:75;:::i;:::-;25642:2;25637:3;25633:12;25626:19;;25662:3;25655:10;;25149:522;;;;:::o;25677:379::-;25861:3;25883:147;26026:3;25883:147;:::i;:::-;25876:154;;26047:3;26040:10;;25677:379;;;:::o;26062:222::-;26155:4;26193:2;26182:9;26178:18;26170:26;;26206:71;26274:1;26263:9;26259:17;26250:6;26206:71;:::i;:::-;26062:222;;;;:::o;26290:640::-;26485:4;26523:3;26512:9;26508:19;26500:27;;26537:71;26605:1;26594:9;26590:17;26581:6;26537:71;:::i;:::-;26618:72;26686:2;26675:9;26671:18;26662:6;26618:72;:::i;:::-;26700;26768:2;26757:9;26753:18;26744:6;26700:72;:::i;:::-;26819:9;26813:4;26809:20;26804:2;26793:9;26789:18;26782:48;26847:76;26918:4;26909:6;26847:76;:::i;:::-;26839:84;;26290:640;;;;;;;:::o;26936:210::-;27023:4;27061:2;27050:9;27046:18;27038:26;;27074:65;27136:1;27125:9;27121:17;27112:6;27074:65;:::i;:::-;26936:210;;;;:::o;27152:545::-;27325:4;27363:3;27352:9;27348:19;27340:27;;27377:71;27445:1;27434:9;27430:17;27421:6;27377:71;:::i;:::-;27458:68;27522:2;27511:9;27507:18;27498:6;27458:68;:::i;:::-;27536:72;27604:2;27593:9;27589:18;27580:6;27536:72;:::i;:::-;27618;27686:2;27675:9;27671:18;27662:6;27618:72;:::i;:::-;27152:545;;;;;;;:::o;27703:238::-;27804:4;27842:2;27831:9;27827:18;27819:26;;27855:79;27931:1;27920:9;27916:17;27907:6;27855:79;:::i;:::-;27703:238;;;;:::o;27947:313::-;28060:4;28098:2;28087:9;28083:18;28075:26;;28147:9;28141:4;28137:20;28133:1;28122:9;28118:17;28111:47;28175:78;28248:4;28239:6;28175:78;:::i;:::-;28167:86;;27947:313;;;;:::o;28266:419::-;28432:4;28470:2;28459:9;28455:18;28447:26;;28519:9;28513:4;28509:20;28505:1;28494:9;28490:17;28483:47;28547:131;28673:4;28547:131;:::i;:::-;28539:139;;28266:419;;;:::o;28691:::-;28857:4;28895:2;28884:9;28880:18;28872:26;;28944:9;28938:4;28934:20;28930:1;28919:9;28915:17;28908:47;28972:131;29098:4;28972:131;:::i;:::-;28964:139;;28691:419;;;:::o;29116:::-;29282:4;29320:2;29309:9;29305:18;29297:26;;29369:9;29363:4;29359:20;29355:1;29344:9;29340:17;29333:47;29397:131;29523:4;29397:131;:::i;:::-;29389:139;;29116:419;;;:::o;29541:::-;29707:4;29745:2;29734:9;29730:18;29722:26;;29794:9;29788:4;29784:20;29780:1;29769:9;29765:17;29758:47;29822:131;29948:4;29822:131;:::i;:::-;29814:139;;29541:419;;;:::o;29966:::-;30132:4;30170:2;30159:9;30155:18;30147:26;;30219:9;30213:4;30209:20;30205:1;30194:9;30190:17;30183:47;30247:131;30373:4;30247:131;:::i;:::-;30239:139;;29966:419;;;:::o;30391:::-;30557:4;30595:2;30584:9;30580:18;30572:26;;30644:9;30638:4;30634:20;30630:1;30619:9;30615:17;30608:47;30672:131;30798:4;30672:131;:::i;:::-;30664:139;;30391:419;;;:::o;30816:::-;30982:4;31020:2;31009:9;31005:18;30997:26;;31069:9;31063:4;31059:20;31055:1;31044:9;31040:17;31033:47;31097:131;31223:4;31097:131;:::i;:::-;31089:139;;30816:419;;;:::o;31241:::-;31407:4;31445:2;31434:9;31430:18;31422:26;;31494:9;31488:4;31484:20;31480:1;31469:9;31465:17;31458:47;31522:131;31648:4;31522:131;:::i;:::-;31514:139;;31241:419;;;:::o;31666:::-;31832:4;31870:2;31859:9;31855:18;31847:26;;31919:9;31913:4;31909:20;31905:1;31894:9;31890:17;31883:47;31947:131;32073:4;31947:131;:::i;:::-;31939:139;;31666:419;;;:::o;32091:::-;32257:4;32295:2;32284:9;32280:18;32272:26;;32344:9;32338:4;32334:20;32330:1;32319:9;32315:17;32308:47;32372:131;32498:4;32372:131;:::i;:::-;32364:139;;32091:419;;;:::o;32516:::-;32682:4;32720:2;32709:9;32705:18;32697:26;;32769:9;32763:4;32759:20;32755:1;32744:9;32740:17;32733:47;32797:131;32923:4;32797:131;:::i;:::-;32789:139;;32516:419;;;:::o;32941:::-;33107:4;33145:2;33134:9;33130:18;33122:26;;33194:9;33188:4;33184:20;33180:1;33169:9;33165:17;33158:47;33222:131;33348:4;33222:131;:::i;:::-;33214:139;;32941:419;;;:::o;33366:::-;33532:4;33570:2;33559:9;33555:18;33547:26;;33619:9;33613:4;33609:20;33605:1;33594:9;33590:17;33583:47;33647:131;33773:4;33647:131;:::i;:::-;33639:139;;33366:419;;;:::o;33791:::-;33957:4;33995:2;33984:9;33980:18;33972:26;;34044:9;34038:4;34034:20;34030:1;34019:9;34015:17;34008:47;34072:131;34198:4;34072:131;:::i;:::-;34064:139;;33791:419;;;:::o;34216:::-;34382:4;34420:2;34409:9;34405:18;34397:26;;34469:9;34463:4;34459:20;34455:1;34444:9;34440:17;34433:47;34497:131;34623:4;34497:131;:::i;:::-;34489:139;;34216:419;;;:::o;34641:::-;34807:4;34845:2;34834:9;34830:18;34822:26;;34894:9;34888:4;34884:20;34880:1;34869:9;34865:17;34858:47;34922:131;35048:4;34922:131;:::i;:::-;34914:139;;34641:419;;;:::o;35066:::-;35232:4;35270:2;35259:9;35255:18;35247:26;;35319:9;35313:4;35309:20;35305:1;35294:9;35290:17;35283:47;35347:131;35473:4;35347:131;:::i;:::-;35339:139;;35066:419;;;:::o;35491:::-;35657:4;35695:2;35684:9;35680:18;35672:26;;35744:9;35738:4;35734:20;35730:1;35719:9;35715:17;35708:47;35772:131;35898:4;35772:131;:::i;:::-;35764:139;;35491:419;;;:::o;35916:::-;36082:4;36120:2;36109:9;36105:18;36097:26;;36169:9;36163:4;36159:20;36155:1;36144:9;36140:17;36133:47;36197:131;36323:4;36197:131;:::i;:::-;36189:139;;35916:419;;;:::o;36341:::-;36507:4;36545:2;36534:9;36530:18;36522:26;;36594:9;36588:4;36584:20;36580:1;36569:9;36565:17;36558:47;36622:131;36748:4;36622:131;:::i;:::-;36614:139;;36341:419;;;:::o;36766:::-;36932:4;36970:2;36959:9;36955:18;36947:26;;37019:9;37013:4;37009:20;37005:1;36994:9;36990:17;36983:47;37047:131;37173:4;37047:131;:::i;:::-;37039:139;;36766:419;;;:::o;37191:::-;37357:4;37395:2;37384:9;37380:18;37372:26;;37444:9;37438:4;37434:20;37430:1;37419:9;37415:17;37408:47;37472:131;37598:4;37472:131;:::i;:::-;37464:139;;37191:419;;;:::o;37616:::-;37782:4;37820:2;37809:9;37805:18;37797:26;;37869:9;37863:4;37859:20;37855:1;37844:9;37840:17;37833:47;37897:131;38023:4;37897:131;:::i;:::-;37889:139;;37616:419;;;:::o;38041:::-;38207:4;38245:2;38234:9;38230:18;38222:26;;38294:9;38288:4;38284:20;38280:1;38269:9;38265:17;38258:47;38322:131;38448:4;38322:131;:::i;:::-;38314:139;;38041:419;;;:::o;38466:::-;38632:4;38670:2;38659:9;38655:18;38647:26;;38719:9;38713:4;38709:20;38705:1;38694:9;38690:17;38683:47;38747:131;38873:4;38747:131;:::i;:::-;38739:139;;38466:419;;;:::o;38891:::-;39057:4;39095:2;39084:9;39080:18;39072:26;;39144:9;39138:4;39134:20;39130:1;39119:9;39115:17;39108:47;39172:131;39298:4;39172:131;:::i;:::-;39164:139;;38891:419;;;:::o;39316:::-;39482:4;39520:2;39509:9;39505:18;39497:26;;39569:9;39563:4;39559:20;39555:1;39544:9;39540:17;39533:47;39597:131;39723:4;39597:131;:::i;:::-;39589:139;;39316:419;;;:::o;39741:::-;39907:4;39945:2;39934:9;39930:18;39922:26;;39994:9;39988:4;39984:20;39980:1;39969:9;39965:17;39958:47;40022:131;40148:4;40022:131;:::i;:::-;40014:139;;39741:419;;;:::o;40166:::-;40332:4;40370:2;40359:9;40355:18;40347:26;;40419:9;40413:4;40409:20;40405:1;40394:9;40390:17;40383:47;40447:131;40573:4;40447:131;:::i;:::-;40439:139;;40166:419;;;:::o;40591:::-;40757:4;40795:2;40784:9;40780:18;40772:26;;40844:9;40838:4;40834:20;40830:1;40819:9;40815:17;40808:47;40872:131;40998:4;40872:131;:::i;:::-;40864:139;;40591:419;;;:::o;41016:222::-;41109:4;41147:2;41136:9;41132:18;41124:26;;41160:71;41228:1;41217:9;41213:17;41204:6;41160:71;:::i;:::-;41016:222;;;;:::o;41244:129::-;41278:6;41305:20;;:::i;:::-;41295:30;;41334:33;41362:4;41354:6;41334:33;:::i;:::-;41244:129;;;:::o;41379:75::-;41412:6;41445:2;41439:9;41429:19;;41379:75;:::o;41460:307::-;41521:4;41611:18;41603:6;41600:30;41597:56;;;41633:18;;:::i;:::-;41597:56;41671:29;41693:6;41671:29;:::i;:::-;41663:37;;41755:4;41749;41745:15;41737:23;;41460:307;;;:::o;41773:308::-;41835:4;41925:18;41917:6;41914:30;41911:56;;;41947:18;;:::i;:::-;41911:56;41985:29;42007:6;41985:29;:::i;:::-;41977:37;;42069:4;42063;42059:15;42051:23;;41773:308;;;:::o;42087:98::-;42138:6;42172:5;42166:12;42156:22;;42087:98;;;:::o;42191:99::-;42243:6;42277:5;42271:12;42261:22;;42191:99;;;:::o;42296:168::-;42379:11;42413:6;42408:3;42401:19;42453:4;42448:3;42444:14;42429:29;;42296:168;;;;:::o;42470:147::-;42571:11;42608:3;42593:18;;42470:147;;;;:::o;42623:169::-;42707:11;42741:6;42736:3;42729:19;42781:4;42776:3;42772:14;42757:29;;42623:169;;;;:::o;42798:148::-;42900:11;42937:3;42922:18;;42798:148;;;;:::o;42952:305::-;42992:3;43011:20;43029:1;43011:20;:::i;:::-;43006:25;;43045:20;43063:1;43045:20;:::i;:::-;43040:25;;43199:1;43131:66;43127:74;43124:1;43121:81;43118:107;;;43205:18;;:::i;:::-;43118:107;43249:1;43246;43242:9;43235:16;;42952:305;;;;:::o;43263:185::-;43303:1;43320:20;43338:1;43320:20;:::i;:::-;43315:25;;43354:20;43372:1;43354:20;:::i;:::-;43349:25;;43393:1;43383:35;;43398:18;;:::i;:::-;43383:35;43440:1;43437;43433:9;43428:14;;43263:185;;;;:::o;43454:348::-;43494:7;43517:20;43535:1;43517:20;:::i;:::-;43512:25;;43551:20;43569:1;43551:20;:::i;:::-;43546:25;;43739:1;43671:66;43667:74;43664:1;43661:81;43656:1;43649:9;43642:17;43638:105;43635:131;;;43746:18;;:::i;:::-;43635:131;43794:1;43791;43787:9;43776:20;;43454:348;;;;:::o;43808:191::-;43848:4;43868:20;43886:1;43868:20;:::i;:::-;43863:25;;43902:20;43920:1;43902:20;:::i;:::-;43897:25;;43941:1;43938;43935:8;43932:34;;;43946:18;;:::i;:::-;43932:34;43991:1;43988;43984:9;43976:17;;43808:191;;;;:::o;44005:96::-;44042:7;44071:24;44089:5;44071:24;:::i;:::-;44060:35;;44005:96;;;:::o;44107:90::-;44141:7;44184:5;44177:13;44170:21;44159:32;;44107:90;;;:::o;44203:77::-;44240:7;44269:5;44258:16;;44203:77;;;:::o;44286:149::-;44322:7;44362:66;44355:5;44351:78;44340:89;;44286:149;;;:::o;44441:131::-;44488:7;44517:5;44506:16;;44523:43;44560:5;44523:43;:::i;:::-;44441:131;;;:::o;44578:126::-;44615:7;44655:42;44648:5;44644:54;44633:65;;44578:126;;;:::o;44710:77::-;44747:7;44776:5;44765:16;;44710:77;;;:::o;44793:86::-;44828:7;44868:4;44861:5;44857:16;44846:27;;44793:86;;;:::o;44885:131::-;44943:9;44976:34;45004:5;44976:34;:::i;:::-;44963:47;;44885:131;;;:::o;45022:154::-;45106:6;45101:3;45096;45083:30;45168:1;45159:6;45154:3;45150:16;45143:27;45022:154;;;:::o;45182:307::-;45250:1;45260:113;45274:6;45271:1;45268:13;45260:113;;;45359:1;45354:3;45350:11;45344:18;45340:1;45335:3;45331:11;45324:39;45296:2;45293:1;45289:10;45284:15;;45260:113;;;45391:6;45388:1;45385:13;45382:101;;;45471:1;45462:6;45457:3;45453:16;45446:27;45382:101;45231:258;45182:307;;;:::o;45495:320::-;45539:6;45576:1;45570:4;45566:12;45556:22;;45623:1;45617:4;45613:12;45644:18;45634:81;;45700:4;45692:6;45688:17;45678:27;;45634:81;45762:2;45754:6;45751:14;45731:18;45728:38;45725:84;;;45781:18;;:::i;:::-;45725:84;45546:269;45495:320;;;:::o;45821:281::-;45904:27;45926:4;45904:27;:::i;:::-;45896:6;45892:40;46034:6;46022:10;46019:22;45998:18;45986:10;45983:34;45980:62;45977:88;;;46045:18;;:::i;:::-;45977:88;46085:10;46081:2;46074:22;45864:238;45821:281;;:::o;46108:233::-;46147:3;46170:24;46188:5;46170:24;:::i;:::-;46161:33;;46216:66;46209:5;46206:77;46203:103;;;46286:18;;:::i;:::-;46203:103;46333:1;46326:5;46322:13;46315:20;;46108:233;;;:::o;46347:100::-;46386:7;46415:26;46435:5;46415:26;:::i;:::-;46404:37;;46347:100;;;:::o;46453:79::-;46492:7;46521:5;46510:16;;46453:79;;;:::o;46538:94::-;46577:7;46606:20;46620:5;46606:20;:::i;:::-;46595:31;;46538:94;;;:::o;46638:176::-;46670:1;46687:20;46705:1;46687:20;:::i;:::-;46682:25;;46721:20;46739:1;46721:20;:::i;:::-;46716:25;;46760:1;46750:35;;46765:18;;:::i;:::-;46750:35;46806:1;46803;46799:9;46794:14;;46638:176;;;;:::o;46820:180::-;46868:77;46865:1;46858:88;46965:4;46962:1;46955:15;46989:4;46986:1;46979:15;47006:180;47054:77;47051:1;47044:88;47151:4;47148:1;47141:15;47175:4;47172:1;47165:15;47192:180;47240:77;47237:1;47230:88;47337:4;47334:1;47327:15;47361:4;47358:1;47351:15;47378:180;47426:77;47423:1;47416:88;47523:4;47520:1;47513:15;47547:4;47544:1;47537:15;47564:180;47612:77;47609:1;47602:88;47709:4;47706:1;47699:15;47733:4;47730:1;47723:15;47750:180;47798:77;47795:1;47788:88;47895:4;47892:1;47885:15;47919:4;47916:1;47909:15;47936:117;48045:1;48042;48035:12;48059:117;48168:1;48165;48158:12;48182:117;48291:1;48288;48281:12;48305:117;48414:1;48411;48404:12;48428:102;48469:6;48520:2;48516:7;48511:2;48504:5;48500:14;48496:28;48486:38;;48428:102;;;:::o;48536:94::-;48569:8;48617:5;48613:2;48609:14;48588:35;;48536:94;;;:::o;48636:171::-;48776:23;48772:1;48764:6;48760:14;48753:47;48636:171;:::o;48813:214::-;48953:66;48949:1;48941:6;48937:14;48930:90;48813:214;:::o;49033:178::-;49173:30;49169:1;49161:6;49157:14;49150:54;49033:178;:::o;49217:237::-;49357:34;49353:1;49345:6;49341:14;49334:58;49426:20;49421:2;49413:6;49409:15;49402:45;49217:237;:::o;49460:225::-;49600:34;49596:1;49588:6;49584:14;49577:58;49669:8;49664:2;49656:6;49652:15;49645:33;49460:225;:::o;49691:178::-;49831:30;49827:1;49819:6;49815:14;49808:54;49691:178;:::o;49875:238::-;50015:34;50011:1;50003:6;49999:14;49992:58;50084:21;50079:2;50071:6;50067:15;50060:46;49875:238;:::o;50119:170::-;50259:22;50255:1;50247:6;50243:14;50236:46;50119:170;:::o;50295:223::-;50435:34;50431:1;50423:6;50419:14;50412:58;50504:6;50499:2;50491:6;50487:15;50480:31;50295:223;:::o;50524:175::-;50664:27;50660:1;50652:6;50648:14;50641:51;50524:175;:::o;50705:180::-;50845:32;50841:1;50833:6;50829:14;50822:56;50705:180;:::o;50891:231::-;51031:34;51027:1;51019:6;51015:14;51008:58;51100:14;51095:2;51087:6;51083:15;51076:39;50891:231;:::o;51128:243::-;51268:34;51264:1;51256:6;51252:14;51245:58;51337:26;51332:2;51324:6;51320:15;51313:51;51128:243;:::o;51377:229::-;51517:34;51513:1;51505:6;51501:14;51494:58;51586:12;51581:2;51573:6;51569:15;51562:37;51377:229;:::o;51612:::-;51752:34;51748:1;51740:6;51736:14;51729:58;51821:12;51816:2;51808:6;51804:15;51797:37;51612:229;:::o;51847:228::-;51987:34;51983:1;51975:6;51971:14;51964:58;52056:11;52051:2;52043:6;52039:15;52032:36;51847:228;:::o;52081:178::-;52221:30;52217:1;52209:6;52205:14;52198:54;52081:178;:::o;52265:182::-;52405:34;52401:1;52393:6;52389:14;52382:58;52265:182;:::o;52453:301::-;52593:34;52589:1;52581:6;52577:14;52570:58;52662:34;52657:2;52649:6;52645:15;52638:59;52731:15;52726:2;52718:6;52714:15;52707:40;52453:301;:::o;52760:231::-;52900:34;52896:1;52888:6;52884:14;52877:58;52969:14;52964:2;52956:6;52952:15;52945:39;52760:231;:::o;52997:155::-;53137:7;53133:1;53125:6;53121:14;53114:31;52997:155;:::o;53158:167::-;53298:19;53294:1;53286:6;53282:14;53275:43;53158:167;:::o;53331:182::-;53471:34;53467:1;53459:6;53455:14;53448:58;53331:182;:::o;53519:305::-;53659:34;53655:1;53647:6;53643:14;53636:58;53728:34;53723:2;53715:6;53711:15;53704:59;53797:19;53792:2;53784:6;53780:15;53773:44;53519:305;:::o;53830:228::-;53970:34;53966:1;53958:6;53954:14;53947:58;54039:11;54034:2;54026:6;54022:15;54015:36;53830:228;:::o;54064:234::-;54204:34;54200:1;54192:6;54188:14;54181:58;54273:17;54268:2;54260:6;54256:15;54249:42;54064:234;:::o;54304:248::-;54444:34;54440:1;54432:6;54428:14;54421:58;54513:31;54508:2;54500:6;54496:15;54489:56;54304:248;:::o;54558:220::-;54698:34;54694:1;54686:6;54682:14;54675:58;54767:3;54762:2;54754:6;54750:15;54743:28;54558:220;:::o;54784:177::-;54924:29;54920:1;54912:6;54908:14;54901:53;54784:177;:::o;54967:114::-;;:::o;55087:236::-;55227:34;55223:1;55215:6;55211:14;55204:58;55296:19;55291:2;55283:6;55279:15;55272:44;55087:236;:::o;55329:224::-;55469:34;55465:1;55457:6;55453:14;55446:58;55538:7;55533:2;55525:6;55521:15;55514:32;55329:224;:::o;55559:171::-;55699:23;55695:1;55687:6;55683:14;55676:47;55559:171;:::o;55736:115::-;55819:1;55812:5;55809:12;55799:46;;55825:18;;:::i;:::-;55799:46;55736:115;:::o;55857:122::-;55930:24;55948:5;55930:24;:::i;:::-;55923:5;55920:35;55910:63;;55969:1;55966;55959:12;55910:63;55857:122;:::o;55985:116::-;56055:21;56070:5;56055:21;:::i;:::-;56048:5;56045:32;56035:60;;56091:1;56088;56081:12;56035:60;55985:116;:::o;56107:122::-;56180:24;56198:5;56180:24;:::i;:::-;56173:5;56170:35;56160:63;;56219:1;56216;56209:12;56160:63;56107:122;:::o;56235:120::-;56307:23;56324:5;56307:23;:::i;:::-;56300:5;56297:34;56287:62;;56345:1;56342;56335:12;56287:62;56235:120;:::o;56361:122::-;56434:24;56452:5;56434:24;:::i;:::-;56427:5;56424:35;56414:63;;56473:1;56470;56463:12;56414:63;56361:122;:::o;56489:118::-;56560:22;56576:5;56560:22;:::i;:::-;56553:5;56550:33;56540:61;;56597:1;56594;56587:12;56540:61;56489:118;:::o

Swarm Source

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