ERC-721
Overview
Max Total Supply
584 rX
Holders
100
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 rXLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
remoteXpedition
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-02 */ /** _ __ __ _ _ _ _ | | \ \ / / | (_) | (_) _ __ ___ _ __ ___ ___ | |_ ___ \ V / _ __ ___ __| |_| |_ _ ___ _ __ | '__/ _ \ '_ ` _ \ / _ \| __/ _ \ > < | '_ \ / _ \/ _` | | __| |/ _ \| '_ \ | | | __/ | | | | | (_) | || __// . \| |_) | __/ (_| | | |_| | (_) | | | | |_| \___|_| |_| |_|\___/ \__\___/_/ \_\ .__/ \___|\__,_|_|\__|_|\___/|_| |_| | | |_| */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (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() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/remoteXpedition.sol pragma solidity >=0.7.0 <0.9.0; contract remoteXpedition is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = "ipfs://QmdzHDS5zUfAroG1uJDUTZbEyEW5X1L8v62qpvkmDsargz/"; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.01 ether; uint256 public maxSupply = 5555; uint256 public maxMintAmountPerTx = 10; uint256 public nftPerAddressLimit = 10; mapping(address => uint256) public addressMintedBalance; bool public paused = false; bool public revealed = true; constructor() ERC721("remoteXpedition", "rX") { setHiddenMetadataUri("ipfs://__CID__/hidden.json"); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); _; } function totalSupply() public view returns (uint256) { return supply.current(); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); addressMintedBalance[msg.sender]++; _mintLoop(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280603681526020016200499060369139600890805190602001906200003592919062000392565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200008392919062000392565b50662386f26fc10000600b556115b3600c55600a600d55600a600e556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000e257600080fd5b506040518060400160405280600f81526020017f72656d6f7465587065646974696f6e00000000000000000000000000000000008152506040518060400160405280600281526020017f725800000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016792919062000392565b5080600190805190602001906200018092919062000392565b505050620001a362000197620001ef60201b60201c565b620001f760201b60201c565b620001e96040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e000000000000815250620002bd60201b60201c565b6200052a565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002cd620001ef60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f36200036860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200034c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034390620004a3565b60405180910390fd5b80600a90805190602001906200036492919062000392565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003a090620004f4565b90600052602060002090601f016020900481019282620003c4576000855562000410565b82601f10620003df57805160ff191683800117855562000410565b8280016001018555821562000410579182015b828111156200040f578251825591602001919060010190620003f2565b5b5090506200041f919062000423565b5090565b5b808211156200043e57600081600090555060010162000424565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200048b60208362000442565b9150620004988262000453565b602082019050919050565b60006020820190508181036000830152620004be816200047c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200050d57607f821691505b60208210811415620005245762000523620004c5565b5b50919050565b614456806200053a6000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a45ba8e7116100ab578063d5abeb011161006f578063d5abeb01146107e6578063e0a8085314610811578063e985e9c51461083a578063efbd73f414610877578063f2fde38b146108a057610225565b8063a45ba8e714610701578063b071401b1461072c578063b88d4fde14610755578063ba7d2c761461077e578063c87b56dd146107a957610225565b80638da5cb5b116100f25780638da5cb5b1461063b57806394354fd01461066657806395d89b4114610691578063a0712d68146106bc578063a22cb465146106d857610225565b80636352211e1461058157806370a08231146105be578063715018a6146105fb5780637ec4a6591461061257610225565b806323b872dd116101b15780634fdd43cb116101755780634fdd43cb146104ac57806351830227146104d55780635503a0e8146105005780635c975abb1461052b57806362b99ad41461055657610225565b806323b872dd146103dd5780633ccfd60b1461040657806342842e0e1461041d578063438b63001461044657806344a0d68a1461048357610225565b806313faede6116101f857806313faede6146102f857806316ba10e01461032357806316c38b3c1461034c57806318160ddd1461037557806318cae269146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612d47565b6108c9565b60405161025e9190612d8f565b60405180910390f35b34801561027357600080fd5b5061027c6109ab565b6040516102899190612e43565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612e9b565b610a3d565b6040516102c69190612f09565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612f50565b610ac2565b005b34801561030457600080fd5b5061030d610bda565b60405161031a9190612f9f565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906130ef565b610be0565b005b34801561035857600080fd5b50610373600480360381019061036e9190613164565b610c76565b005b34801561038157600080fd5b5061038a610d0f565b6040516103979190612f9f565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190613191565b610d20565b6040516103d49190612f9f565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906131be565b610d38565b005b34801561041257600080fd5b5061041b610d98565b005b34801561042957600080fd5b50610444600480360381019061043f91906131be565b610e94565b005b34801561045257600080fd5b5061046d60048036038101906104689190613191565b610eb4565b60405161047a91906132cf565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612e9b565b610fbf565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906130ef565b611045565b005b3480156104e157600080fd5b506104ea6110db565b6040516104f79190612d8f565b60405180910390f35b34801561050c57600080fd5b506105156110ee565b6040516105229190612e43565b60405180910390f35b34801561053757600080fd5b5061054061117c565b60405161054d9190612d8f565b60405180910390f35b34801561056257600080fd5b5061056b61118f565b6040516105789190612e43565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612e9b565b61121d565b6040516105b59190612f09565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190613191565b6112cf565b6040516105f29190612f9f565b60405180910390f35b34801561060757600080fd5b50610610611387565b005b34801561061e57600080fd5b50610639600480360381019061063491906130ef565b61140f565b005b34801561064757600080fd5b506106506114a5565b60405161065d9190612f09565b60405180910390f35b34801561067257600080fd5b5061067b6114cf565b6040516106889190612f9f565b60405180910390f35b34801561069d57600080fd5b506106a66114d5565b6040516106b39190612e43565b60405180910390f35b6106d660048036038101906106d19190612e9b565b611567565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906132f1565b6117aa565b005b34801561070d57600080fd5b506107166117c0565b6040516107239190612e43565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612e9b565b61184e565b005b34801561076157600080fd5b5061077c600480360381019061077791906133d2565b6118d4565b005b34801561078a57600080fd5b50610793611936565b6040516107a09190612f9f565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb9190612e9b565b61193c565b6040516107dd9190612e43565b60405180910390f35b3480156107f257600080fd5b506107fb611a95565b6040516108089190612f9f565b60405180910390f35b34801561081d57600080fd5b5061083860048036038101906108339190613164565b611a9b565b005b34801561084657600080fd5b50610861600480360381019061085c9190613455565b611b34565b60405161086e9190612d8f565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613495565b611bc8565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190613191565b611d93565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a457506109a382611e8b565b5b9050919050565b6060600080546109ba90613504565b80601f01602080910402602001604051908101604052809291908181526020018280546109e690613504565b8015610a335780601f10610a0857610100808354040283529160200191610a33565b820191906000526020600020905b815481529060010190602001808311610a1657829003601f168201915b5050505050905090565b6000610a4882611ef5565b610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e906135a8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acd8261121d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b359061363a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b5d611f61565b73ffffffffffffffffffffffffffffffffffffffff161480610b8c5750610b8b81610b86611f61565b611b34565b5b610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc2906136cc565b60405180910390fd5b610bd58383611f69565b505050565b600b5481565b610be8611f61565b73ffffffffffffffffffffffffffffffffffffffff16610c066114a5565b73ffffffffffffffffffffffffffffffffffffffff1614610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390613738565b60405180910390fd5b8060099080519060200190610c72929190612c38565b5050565b610c7e611f61565b73ffffffffffffffffffffffffffffffffffffffff16610c9c6114a5565b73ffffffffffffffffffffffffffffffffffffffff1614610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990613738565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610d1b6007612022565b905090565b600f6020528060005260406000206000915090505481565b610d49610d43611f61565b82612030565b610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f906137ca565b60405180910390fd5b610d9383838361210e565b505050565b610da0611f61565b73ffffffffffffffffffffffffffffffffffffffff16610dbe6114a5565b73ffffffffffffffffffffffffffffffffffffffff1614610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90613738565b60405180910390fd5b6000610e1e6114a5565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e419061381b565b60006040518083038185875af1925050503d8060008114610e7e576040519150601f19603f3d011682016040523d82523d6000602084013e610e83565b606091505b5050905080610e9157600080fd5b50565b610eaf838383604051806020016040528060008152506118d4565b505050565b60606000610ec1836112cf565b905060008167ffffffffffffffff811115610edf57610ede612fc4565b5b604051908082528060200260200182016040528015610f0d5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f2a5750600c548211155b15610fb3576000610f3a8361121d565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9f5782848381518110610f8457610f83613830565b5b6020026020010181815250508180610f9b9061388e565b9250505b8280610faa9061388e565b93505050610f19565b82945050505050919050565b610fc7611f61565b73ffffffffffffffffffffffffffffffffffffffff16610fe56114a5565b73ffffffffffffffffffffffffffffffffffffffff161461103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290613738565b60405180910390fd5b80600b8190555050565b61104d611f61565b73ffffffffffffffffffffffffffffffffffffffff1661106b6114a5565b73ffffffffffffffffffffffffffffffffffffffff16146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890613738565b60405180910390fd5b80600a90805190602001906110d7929190612c38565b5050565b601060019054906101000a900460ff1681565b600980546110fb90613504565b80601f016020809104026020016040519081016040528092919081815260200182805461112790613504565b80156111745780601f1061114957610100808354040283529160200191611174565b820191906000526020600020905b81548152906001019060200180831161115757829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b6008805461119c90613504565b80601f01602080910402602001604051908101604052809291908181526020018280546111c890613504565b80156112155780601f106111ea57610100808354040283529160200191611215565b820191906000526020600020905b8154815290600101906020018083116111f857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90613949565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611337906139db565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61138f611f61565b73ffffffffffffffffffffffffffffffffffffffff166113ad6114a5565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613738565b60405180910390fd5b61140d600061236a565b565b611417611f61565b73ffffffffffffffffffffffffffffffffffffffff166114356114a5565b73ffffffffffffffffffffffffffffffffffffffff161461148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613738565b60405180910390fd5b80600890805190602001906114a1929190612c38565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546114e490613504565b80601f016020809104026020016040519081016040528092919081815260200182805461151090613504565b801561155d5780601f106115325761010080835404028352916020019161155d565b820191906000526020600020905b81548152906001019060200180831161154057829003601f168201915b5050505050905090565b8060008111801561157a5750600d548111155b6115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090613a47565b60405180910390fd5b600c54816115c76007612022565b6115d19190613a67565b1115611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990613b09565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e5482826116659190613a67565b11156116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90613b75565b60405180910390fd5b601060009054906101000a900460ff16156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90613be1565b60405180910390fd5b82600b546117049190613c01565b341015611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613ca7565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906117969061388e565b91905055506117a53384612430565b505050565b6117bc6117b5611f61565b8383612470565b5050565b600a80546117cd90613504565b80601f01602080910402602001604051908101604052809291908181526020018280546117f990613504565b80156118465780601f1061181b57610100808354040283529160200191611846565b820191906000526020600020905b81548152906001019060200180831161182957829003601f168201915b505050505081565b611856611f61565b73ffffffffffffffffffffffffffffffffffffffff166118746114a5565b73ffffffffffffffffffffffffffffffffffffffff16146118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190613738565b60405180910390fd5b80600d8190555050565b6118e56118df611f61565b83612030565b611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b906137ca565b60405180910390fd5b611930848484846125dd565b50505050565b600e5481565b606061194782611ef5565b611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90613d39565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611a3457600a80546119af90613504565b80601f01602080910402602001604051908101604052809291908181526020018280546119db90613504565b8015611a285780601f106119fd57610100808354040283529160200191611a28565b820191906000526020600020905b815481529060010190602001808311611a0b57829003601f168201915b50505050509050611a90565b6000611a3e612639565b90506000815111611a5e5760405180602001604052806000815250611a8c565b80611a68846126cb565b6009604051602001611a7c93929190613e29565b6040516020818303038152906040525b9150505b919050565b600c5481565b611aa3611f61565b73ffffffffffffffffffffffffffffffffffffffff16611ac16114a5565b73ffffffffffffffffffffffffffffffffffffffff1614611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90613738565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611bdb5750600d548111155b611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190613a47565b60405180910390fd5b600c5481611c286007612022565b611c329190613a67565b1115611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a90613b09565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611cc69190613a67565b1115611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe90613b75565b60405180910390fd5b611d0f611f61565b73ffffffffffffffffffffffffffffffffffffffff16611d2d6114a5565b73ffffffffffffffffffffffffffffffffffffffff1614611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7a90613738565b60405180910390fd5b611d8d8385612430565b50505050565b611d9b611f61565b73ffffffffffffffffffffffffffffffffffffffff16611db96114a5565b73ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690613738565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690613ecc565b60405180910390fd5b611e888161236a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fdc8361121d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061203b82611ef5565b61207a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207190613f5e565b60405180910390fd5b60006120858361121d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120f457508373ffffffffffffffffffffffffffffffffffffffff166120dc84610a3d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061210557506121048185611b34565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661212e8261121d565b73ffffffffffffffffffffffffffffffffffffffff1614612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b90613ff0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121eb90614082565b60405180910390fd5b6121ff83838361282c565b61220a600082611f69565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225a91906140a2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b19190613a67565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561246b576124456007612831565b612458836124536007612022565b612847565b80806124639061388e565b915050612433565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d690614122565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125d09190612d8f565b60405180910390a3505050565b6125e884848461210e565b6125f484848484612865565b612633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262a906141b4565b60405180910390fd5b50505050565b60606008805461264890613504565b80601f016020809104026020016040519081016040528092919081815260200182805461267490613504565b80156126c15780601f10612696576101008083540402835291602001916126c1565b820191906000526020600020905b8154815290600101906020018083116126a457829003601f168201915b5050505050905090565b60606000821415612713576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612827565b600082905060005b6000821461274557808061272e9061388e565b915050600a8261273e9190614203565b915061271b565b60008167ffffffffffffffff81111561276157612760612fc4565b5b6040519080825280601f01601f1916602001820160405280156127935781602001600182028036833780820191505090505b5090505b60008514612820576001826127ac91906140a2565b9150600a856127bb9190614234565b60306127c79190613a67565b60f81b8183815181106127dd576127dc613830565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128199190614203565b9450612797565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b6128618282604051806020016040528060008152506129fc565b5050565b60006128868473ffffffffffffffffffffffffffffffffffffffff16612a57565b156129ef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128af611f61565b8786866040518563ffffffff1660e01b81526004016128d194939291906142ba565b602060405180830381600087803b1580156128eb57600080fd5b505af192505050801561291c57506040513d601f19601f82011682018060405250810190612919919061431b565b60015b61299f573d806000811461294c576040519150601f19603f3d011682016040523d82523d6000602084013e612951565b606091505b50600081511415612997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298e906141b4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129f4565b600190505b949350505050565b612a068383612a6a565b612a136000848484612865565b612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a49906141b4565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad190614394565b60405180910390fd5b612ae381611ef5565b15612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a90614400565b60405180910390fd5b612b2f6000838361282c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b7f9190613a67565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612c4490613504565b90600052602060002090601f016020900481019282612c665760008555612cad565b82601f10612c7f57805160ff1916838001178555612cad565b82800160010185558215612cad579182015b82811115612cac578251825591602001919060010190612c91565b5b509050612cba9190612cbe565b5090565b5b80821115612cd7576000816000905550600101612cbf565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d2481612cef565b8114612d2f57600080fd5b50565b600081359050612d4181612d1b565b92915050565b600060208284031215612d5d57612d5c612ce5565b5b6000612d6b84828501612d32565b91505092915050565b60008115159050919050565b612d8981612d74565b82525050565b6000602082019050612da46000830184612d80565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612de4578082015181840152602081019050612dc9565b83811115612df3576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e1582612daa565b612e1f8185612db5565b9350612e2f818560208601612dc6565b612e3881612df9565b840191505092915050565b60006020820190508181036000830152612e5d8184612e0a565b905092915050565b6000819050919050565b612e7881612e65565b8114612e8357600080fd5b50565b600081359050612e9581612e6f565b92915050565b600060208284031215612eb157612eb0612ce5565b5b6000612ebf84828501612e86565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ef382612ec8565b9050919050565b612f0381612ee8565b82525050565b6000602082019050612f1e6000830184612efa565b92915050565b612f2d81612ee8565b8114612f3857600080fd5b50565b600081359050612f4a81612f24565b92915050565b60008060408385031215612f6757612f66612ce5565b5b6000612f7585828601612f3b565b9250506020612f8685828601612e86565b9150509250929050565b612f9981612e65565b82525050565b6000602082019050612fb46000830184612f90565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ffc82612df9565b810181811067ffffffffffffffff8211171561301b5761301a612fc4565b5b80604052505050565b600061302e612cdb565b905061303a8282612ff3565b919050565b600067ffffffffffffffff82111561305a57613059612fc4565b5b61306382612df9565b9050602081019050919050565b82818337600083830152505050565b600061309261308d8461303f565b613024565b9050828152602081018484840111156130ae576130ad612fbf565b5b6130b9848285613070565b509392505050565b600082601f8301126130d6576130d5612fba565b5b81356130e684826020860161307f565b91505092915050565b60006020828403121561310557613104612ce5565b5b600082013567ffffffffffffffff81111561312357613122612cea565b5b61312f848285016130c1565b91505092915050565b61314181612d74565b811461314c57600080fd5b50565b60008135905061315e81613138565b92915050565b60006020828403121561317a57613179612ce5565b5b60006131888482850161314f565b91505092915050565b6000602082840312156131a7576131a6612ce5565b5b60006131b584828501612f3b565b91505092915050565b6000806000606084860312156131d7576131d6612ce5565b5b60006131e586828701612f3b565b93505060206131f686828701612f3b565b925050604061320786828701612e86565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61324681612e65565b82525050565b6000613258838361323d565b60208301905092915050565b6000602082019050919050565b600061327c82613211565b613286818561321c565b93506132918361322d565b8060005b838110156132c25781516132a9888261324c565b97506132b483613264565b925050600181019050613295565b5085935050505092915050565b600060208201905081810360008301526132e98184613271565b905092915050565b6000806040838503121561330857613307612ce5565b5b600061331685828601612f3b565b92505060206133278582860161314f565b9150509250929050565b600067ffffffffffffffff82111561334c5761334b612fc4565b5b61335582612df9565b9050602081019050919050565b600061337561337084613331565b613024565b90508281526020810184848401111561339157613390612fbf565b5b61339c848285613070565b509392505050565b600082601f8301126133b9576133b8612fba565b5b81356133c9848260208601613362565b91505092915050565b600080600080608085870312156133ec576133eb612ce5565b5b60006133fa87828801612f3b565b945050602061340b87828801612f3b565b935050604061341c87828801612e86565b925050606085013567ffffffffffffffff81111561343d5761343c612cea565b5b613449878288016133a4565b91505092959194509250565b6000806040838503121561346c5761346b612ce5565b5b600061347a85828601612f3b565b925050602061348b85828601612f3b565b9150509250929050565b600080604083850312156134ac576134ab612ce5565b5b60006134ba85828601612e86565b92505060206134cb85828601612f3b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061351c57607f821691505b602082108114156135305761352f6134d5565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613592602c83612db5565b915061359d82613536565b604082019050919050565b600060208201905081810360008301526135c181613585565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613624602183612db5565b915061362f826135c8565b604082019050919050565b6000602082019050818103600083015261365381613617565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006136b6603883612db5565b91506136c18261365a565b604082019050919050565b600060208201905081810360008301526136e5816136a9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613722602083612db5565b915061372d826136ec565b602082019050919050565b6000602082019050818103600083015261375181613715565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006137b4603183612db5565b91506137bf82613758565b604082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b600081905092915050565b50565b60006138056000836137ea565b9150613810826137f5565b600082019050919050565b6000613826826137f8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061389982612e65565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138cc576138cb61385f565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613933602983612db5565b915061393e826138d7565b604082019050919050565b6000602082019050818103600083015261396281613926565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006139c5602a83612db5565b91506139d082613969565b604082019050919050565b600060208201905081810360008301526139f4816139b8565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613a31601483612db5565b9150613a3c826139fb565b602082019050919050565b60006020820190508181036000830152613a6081613a24565b9050919050565b6000613a7282612e65565b9150613a7d83612e65565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ab257613ab161385f565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613af3601483612db5565b9150613afe82613abd565b602082019050919050565b60006020820190508181036000830152613b2281613ae6565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000613b5f601c83612db5565b9150613b6a82613b29565b602082019050919050565b60006020820190508181036000830152613b8e81613b52565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613bcb601783612db5565b9150613bd682613b95565b602082019050919050565b60006020820190508181036000830152613bfa81613bbe565b9050919050565b6000613c0c82612e65565b9150613c1783612e65565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c5057613c4f61385f565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613c91601383612db5565b9150613c9c82613c5b565b602082019050919050565b60006020820190508181036000830152613cc081613c84565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613d23602f83612db5565b9150613d2e82613cc7565b604082019050919050565b60006020820190508181036000830152613d5281613d16565b9050919050565b600081905092915050565b6000613d6f82612daa565b613d798185613d59565b9350613d89818560208601612dc6565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613db781613504565b613dc18186613d59565b94506001821660008114613ddc5760018114613ded57613e20565b60ff19831686528186019350613e20565b613df685613d95565b60005b83811015613e1857815481890152600182019150602081019050613df9565b838801955050505b50505092915050565b6000613e358286613d64565b9150613e418285613d64565b9150613e4d8284613daa565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613eb6602683612db5565b9150613ec182613e5a565b604082019050919050565b60006020820190508181036000830152613ee581613ea9565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613f48602c83612db5565b9150613f5382613eec565b604082019050919050565b60006020820190508181036000830152613f7781613f3b565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613fda602983612db5565b9150613fe582613f7e565b604082019050919050565b6000602082019050818103600083015261400981613fcd565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061406c602483612db5565b915061407782614010565b604082019050919050565b6000602082019050818103600083015261409b8161405f565b9050919050565b60006140ad82612e65565b91506140b883612e65565b9250828210156140cb576140ca61385f565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061410c601983612db5565b9150614117826140d6565b602082019050919050565b6000602082019050818103600083015261413b816140ff565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061419e603283612db5565b91506141a982614142565b604082019050919050565b600060208201905081810360008301526141cd81614191565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420e82612e65565b915061421983612e65565b925082614229576142286141d4565b5b828204905092915050565b600061423f82612e65565b915061424a83612e65565b92508261425a576142596141d4565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061428c82614265565b6142968185614270565b93506142a6818560208601612dc6565b6142af81612df9565b840191505092915050565b60006080820190506142cf6000830187612efa565b6142dc6020830186612efa565b6142e96040830185612f90565b81810360608301526142fb8184614281565b905095945050505050565b60008151905061431581612d1b565b92915050565b60006020828403121561433157614330612ce5565b5b600061433f84828501614306565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061437e602083612db5565b915061438982614348565b602082019050919050565b600060208201905081810360008301526143ad81614371565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006143ea601c83612db5565b91506143f5826143b4565b602082019050919050565b60006020820190508181036000830152614419816143dd565b905091905056fea264697066735822122061b07443075ab563c867b0be42759f9973a5d0066b9a054ac0db9aa2b963f7d464736f6c63430008090033697066733a2f2f516d647a484453357a556641726f4731754a4455545a62457945573558314c387636327170766b6d44736172677a2f
Deployed Bytecode
0x6080604052600436106102255760003560e01c80636352211e11610123578063a45ba8e7116100ab578063d5abeb011161006f578063d5abeb01146107e6578063e0a8085314610811578063e985e9c51461083a578063efbd73f414610877578063f2fde38b146108a057610225565b8063a45ba8e714610701578063b071401b1461072c578063b88d4fde14610755578063ba7d2c761461077e578063c87b56dd146107a957610225565b80638da5cb5b116100f25780638da5cb5b1461063b57806394354fd01461066657806395d89b4114610691578063a0712d68146106bc578063a22cb465146106d857610225565b80636352211e1461058157806370a08231146105be578063715018a6146105fb5780637ec4a6591461061257610225565b806323b872dd116101b15780634fdd43cb116101755780634fdd43cb146104ac57806351830227146104d55780635503a0e8146105005780635c975abb1461052b57806362b99ad41461055657610225565b806323b872dd146103dd5780633ccfd60b1461040657806342842e0e1461041d578063438b63001461044657806344a0d68a1461048357610225565b806313faede6116101f857806313faede6146102f857806316ba10e01461032357806316c38b3c1461034c57806318160ddd1461037557806318cae269146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612d47565b6108c9565b60405161025e9190612d8f565b60405180910390f35b34801561027357600080fd5b5061027c6109ab565b6040516102899190612e43565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612e9b565b610a3d565b6040516102c69190612f09565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612f50565b610ac2565b005b34801561030457600080fd5b5061030d610bda565b60405161031a9190612f9f565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906130ef565b610be0565b005b34801561035857600080fd5b50610373600480360381019061036e9190613164565b610c76565b005b34801561038157600080fd5b5061038a610d0f565b6040516103979190612f9f565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190613191565b610d20565b6040516103d49190612f9f565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906131be565b610d38565b005b34801561041257600080fd5b5061041b610d98565b005b34801561042957600080fd5b50610444600480360381019061043f91906131be565b610e94565b005b34801561045257600080fd5b5061046d60048036038101906104689190613191565b610eb4565b60405161047a91906132cf565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612e9b565b610fbf565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906130ef565b611045565b005b3480156104e157600080fd5b506104ea6110db565b6040516104f79190612d8f565b60405180910390f35b34801561050c57600080fd5b506105156110ee565b6040516105229190612e43565b60405180910390f35b34801561053757600080fd5b5061054061117c565b60405161054d9190612d8f565b60405180910390f35b34801561056257600080fd5b5061056b61118f565b6040516105789190612e43565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612e9b565b61121d565b6040516105b59190612f09565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190613191565b6112cf565b6040516105f29190612f9f565b60405180910390f35b34801561060757600080fd5b50610610611387565b005b34801561061e57600080fd5b50610639600480360381019061063491906130ef565b61140f565b005b34801561064757600080fd5b506106506114a5565b60405161065d9190612f09565b60405180910390f35b34801561067257600080fd5b5061067b6114cf565b6040516106889190612f9f565b60405180910390f35b34801561069d57600080fd5b506106a66114d5565b6040516106b39190612e43565b60405180910390f35b6106d660048036038101906106d19190612e9b565b611567565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906132f1565b6117aa565b005b34801561070d57600080fd5b506107166117c0565b6040516107239190612e43565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612e9b565b61184e565b005b34801561076157600080fd5b5061077c600480360381019061077791906133d2565b6118d4565b005b34801561078a57600080fd5b50610793611936565b6040516107a09190612f9f565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb9190612e9b565b61193c565b6040516107dd9190612e43565b60405180910390f35b3480156107f257600080fd5b506107fb611a95565b6040516108089190612f9f565b60405180910390f35b34801561081d57600080fd5b5061083860048036038101906108339190613164565b611a9b565b005b34801561084657600080fd5b50610861600480360381019061085c9190613455565b611b34565b60405161086e9190612d8f565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613495565b611bc8565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190613191565b611d93565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a457506109a382611e8b565b5b9050919050565b6060600080546109ba90613504565b80601f01602080910402602001604051908101604052809291908181526020018280546109e690613504565b8015610a335780601f10610a0857610100808354040283529160200191610a33565b820191906000526020600020905b815481529060010190602001808311610a1657829003601f168201915b5050505050905090565b6000610a4882611ef5565b610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e906135a8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acd8261121d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b359061363a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b5d611f61565b73ffffffffffffffffffffffffffffffffffffffff161480610b8c5750610b8b81610b86611f61565b611b34565b5b610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc2906136cc565b60405180910390fd5b610bd58383611f69565b505050565b600b5481565b610be8611f61565b73ffffffffffffffffffffffffffffffffffffffff16610c066114a5565b73ffffffffffffffffffffffffffffffffffffffff1614610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390613738565b60405180910390fd5b8060099080519060200190610c72929190612c38565b5050565b610c7e611f61565b73ffffffffffffffffffffffffffffffffffffffff16610c9c6114a5565b73ffffffffffffffffffffffffffffffffffffffff1614610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990613738565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610d1b6007612022565b905090565b600f6020528060005260406000206000915090505481565b610d49610d43611f61565b82612030565b610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f906137ca565b60405180910390fd5b610d9383838361210e565b505050565b610da0611f61565b73ffffffffffffffffffffffffffffffffffffffff16610dbe6114a5565b73ffffffffffffffffffffffffffffffffffffffff1614610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90613738565b60405180910390fd5b6000610e1e6114a5565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e419061381b565b60006040518083038185875af1925050503d8060008114610e7e576040519150601f19603f3d011682016040523d82523d6000602084013e610e83565b606091505b5050905080610e9157600080fd5b50565b610eaf838383604051806020016040528060008152506118d4565b505050565b60606000610ec1836112cf565b905060008167ffffffffffffffff811115610edf57610ede612fc4565b5b604051908082528060200260200182016040528015610f0d5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f2a5750600c548211155b15610fb3576000610f3a8361121d565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9f5782848381518110610f8457610f83613830565b5b6020026020010181815250508180610f9b9061388e565b9250505b8280610faa9061388e565b93505050610f19565b82945050505050919050565b610fc7611f61565b73ffffffffffffffffffffffffffffffffffffffff16610fe56114a5565b73ffffffffffffffffffffffffffffffffffffffff161461103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290613738565b60405180910390fd5b80600b8190555050565b61104d611f61565b73ffffffffffffffffffffffffffffffffffffffff1661106b6114a5565b73ffffffffffffffffffffffffffffffffffffffff16146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890613738565b60405180910390fd5b80600a90805190602001906110d7929190612c38565b5050565b601060019054906101000a900460ff1681565b600980546110fb90613504565b80601f016020809104026020016040519081016040528092919081815260200182805461112790613504565b80156111745780601f1061114957610100808354040283529160200191611174565b820191906000526020600020905b81548152906001019060200180831161115757829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b6008805461119c90613504565b80601f01602080910402602001604051908101604052809291908181526020018280546111c890613504565b80156112155780601f106111ea57610100808354040283529160200191611215565b820191906000526020600020905b8154815290600101906020018083116111f857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90613949565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611337906139db565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61138f611f61565b73ffffffffffffffffffffffffffffffffffffffff166113ad6114a5565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613738565b60405180910390fd5b61140d600061236a565b565b611417611f61565b73ffffffffffffffffffffffffffffffffffffffff166114356114a5565b73ffffffffffffffffffffffffffffffffffffffff161461148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613738565b60405180910390fd5b80600890805190602001906114a1929190612c38565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546114e490613504565b80601f016020809104026020016040519081016040528092919081815260200182805461151090613504565b801561155d5780601f106115325761010080835404028352916020019161155d565b820191906000526020600020905b81548152906001019060200180831161154057829003601f168201915b5050505050905090565b8060008111801561157a5750600d548111155b6115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090613a47565b60405180910390fd5b600c54816115c76007612022565b6115d19190613a67565b1115611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990613b09565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e5482826116659190613a67565b11156116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90613b75565b60405180910390fd5b601060009054906101000a900460ff16156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90613be1565b60405180910390fd5b82600b546117049190613c01565b341015611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613ca7565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906117969061388e565b91905055506117a53384612430565b505050565b6117bc6117b5611f61565b8383612470565b5050565b600a80546117cd90613504565b80601f01602080910402602001604051908101604052809291908181526020018280546117f990613504565b80156118465780601f1061181b57610100808354040283529160200191611846565b820191906000526020600020905b81548152906001019060200180831161182957829003601f168201915b505050505081565b611856611f61565b73ffffffffffffffffffffffffffffffffffffffff166118746114a5565b73ffffffffffffffffffffffffffffffffffffffff16146118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190613738565b60405180910390fd5b80600d8190555050565b6118e56118df611f61565b83612030565b611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b906137ca565b60405180910390fd5b611930848484846125dd565b50505050565b600e5481565b606061194782611ef5565b611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90613d39565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611a3457600a80546119af90613504565b80601f01602080910402602001604051908101604052809291908181526020018280546119db90613504565b8015611a285780601f106119fd57610100808354040283529160200191611a28565b820191906000526020600020905b815481529060010190602001808311611a0b57829003601f168201915b50505050509050611a90565b6000611a3e612639565b90506000815111611a5e5760405180602001604052806000815250611a8c565b80611a68846126cb565b6009604051602001611a7c93929190613e29565b6040516020818303038152906040525b9150505b919050565b600c5481565b611aa3611f61565b73ffffffffffffffffffffffffffffffffffffffff16611ac16114a5565b73ffffffffffffffffffffffffffffffffffffffff1614611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90613738565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611bdb5750600d548111155b611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190613a47565b60405180910390fd5b600c5481611c286007612022565b611c329190613a67565b1115611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a90613b09565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611cc69190613a67565b1115611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe90613b75565b60405180910390fd5b611d0f611f61565b73ffffffffffffffffffffffffffffffffffffffff16611d2d6114a5565b73ffffffffffffffffffffffffffffffffffffffff1614611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7a90613738565b60405180910390fd5b611d8d8385612430565b50505050565b611d9b611f61565b73ffffffffffffffffffffffffffffffffffffffff16611db96114a5565b73ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690613738565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690613ecc565b60405180910390fd5b611e888161236a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fdc8361121d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061203b82611ef5565b61207a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207190613f5e565b60405180910390fd5b60006120858361121d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120f457508373ffffffffffffffffffffffffffffffffffffffff166120dc84610a3d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061210557506121048185611b34565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661212e8261121d565b73ffffffffffffffffffffffffffffffffffffffff1614612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b90613ff0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121eb90614082565b60405180910390fd5b6121ff83838361282c565b61220a600082611f69565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225a91906140a2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b19190613a67565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561246b576124456007612831565b612458836124536007612022565b612847565b80806124639061388e565b915050612433565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d690614122565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125d09190612d8f565b60405180910390a3505050565b6125e884848461210e565b6125f484848484612865565b612633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262a906141b4565b60405180910390fd5b50505050565b60606008805461264890613504565b80601f016020809104026020016040519081016040528092919081815260200182805461267490613504565b80156126c15780601f10612696576101008083540402835291602001916126c1565b820191906000526020600020905b8154815290600101906020018083116126a457829003601f168201915b5050505050905090565b60606000821415612713576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612827565b600082905060005b6000821461274557808061272e9061388e565b915050600a8261273e9190614203565b915061271b565b60008167ffffffffffffffff81111561276157612760612fc4565b5b6040519080825280601f01601f1916602001820160405280156127935781602001600182028036833780820191505090505b5090505b60008514612820576001826127ac91906140a2565b9150600a856127bb9190614234565b60306127c79190613a67565b60f81b8183815181106127dd576127dc613830565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128199190614203565b9450612797565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b6128618282604051806020016040528060008152506129fc565b5050565b60006128868473ffffffffffffffffffffffffffffffffffffffff16612a57565b156129ef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128af611f61565b8786866040518563ffffffff1660e01b81526004016128d194939291906142ba565b602060405180830381600087803b1580156128eb57600080fd5b505af192505050801561291c57506040513d601f19601f82011682018060405250810190612919919061431b565b60015b61299f573d806000811461294c576040519150601f19603f3d011682016040523d82523d6000602084013e612951565b606091505b50600081511415612997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298e906141b4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129f4565b600190505b949350505050565b612a068383612a6a565b612a136000848484612865565b612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a49906141b4565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad190614394565b60405180910390fd5b612ae381611ef5565b15612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a90614400565b60405180910390fd5b612b2f6000838361282c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b7f9190613a67565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612c4490613504565b90600052602060002090601f016020900481019282612c665760008555612cad565b82601f10612c7f57805160ff1916838001178555612cad565b82800160010185558215612cad579182015b82811115612cac578251825591602001919060010190612c91565b5b509050612cba9190612cbe565b5090565b5b80821115612cd7576000816000905550600101612cbf565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d2481612cef565b8114612d2f57600080fd5b50565b600081359050612d4181612d1b565b92915050565b600060208284031215612d5d57612d5c612ce5565b5b6000612d6b84828501612d32565b91505092915050565b60008115159050919050565b612d8981612d74565b82525050565b6000602082019050612da46000830184612d80565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612de4578082015181840152602081019050612dc9565b83811115612df3576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e1582612daa565b612e1f8185612db5565b9350612e2f818560208601612dc6565b612e3881612df9565b840191505092915050565b60006020820190508181036000830152612e5d8184612e0a565b905092915050565b6000819050919050565b612e7881612e65565b8114612e8357600080fd5b50565b600081359050612e9581612e6f565b92915050565b600060208284031215612eb157612eb0612ce5565b5b6000612ebf84828501612e86565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ef382612ec8565b9050919050565b612f0381612ee8565b82525050565b6000602082019050612f1e6000830184612efa565b92915050565b612f2d81612ee8565b8114612f3857600080fd5b50565b600081359050612f4a81612f24565b92915050565b60008060408385031215612f6757612f66612ce5565b5b6000612f7585828601612f3b565b9250506020612f8685828601612e86565b9150509250929050565b612f9981612e65565b82525050565b6000602082019050612fb46000830184612f90565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ffc82612df9565b810181811067ffffffffffffffff8211171561301b5761301a612fc4565b5b80604052505050565b600061302e612cdb565b905061303a8282612ff3565b919050565b600067ffffffffffffffff82111561305a57613059612fc4565b5b61306382612df9565b9050602081019050919050565b82818337600083830152505050565b600061309261308d8461303f565b613024565b9050828152602081018484840111156130ae576130ad612fbf565b5b6130b9848285613070565b509392505050565b600082601f8301126130d6576130d5612fba565b5b81356130e684826020860161307f565b91505092915050565b60006020828403121561310557613104612ce5565b5b600082013567ffffffffffffffff81111561312357613122612cea565b5b61312f848285016130c1565b91505092915050565b61314181612d74565b811461314c57600080fd5b50565b60008135905061315e81613138565b92915050565b60006020828403121561317a57613179612ce5565b5b60006131888482850161314f565b91505092915050565b6000602082840312156131a7576131a6612ce5565b5b60006131b584828501612f3b565b91505092915050565b6000806000606084860312156131d7576131d6612ce5565b5b60006131e586828701612f3b565b93505060206131f686828701612f3b565b925050604061320786828701612e86565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61324681612e65565b82525050565b6000613258838361323d565b60208301905092915050565b6000602082019050919050565b600061327c82613211565b613286818561321c565b93506132918361322d565b8060005b838110156132c25781516132a9888261324c565b97506132b483613264565b925050600181019050613295565b5085935050505092915050565b600060208201905081810360008301526132e98184613271565b905092915050565b6000806040838503121561330857613307612ce5565b5b600061331685828601612f3b565b92505060206133278582860161314f565b9150509250929050565b600067ffffffffffffffff82111561334c5761334b612fc4565b5b61335582612df9565b9050602081019050919050565b600061337561337084613331565b613024565b90508281526020810184848401111561339157613390612fbf565b5b61339c848285613070565b509392505050565b600082601f8301126133b9576133b8612fba565b5b81356133c9848260208601613362565b91505092915050565b600080600080608085870312156133ec576133eb612ce5565b5b60006133fa87828801612f3b565b945050602061340b87828801612f3b565b935050604061341c87828801612e86565b925050606085013567ffffffffffffffff81111561343d5761343c612cea565b5b613449878288016133a4565b91505092959194509250565b6000806040838503121561346c5761346b612ce5565b5b600061347a85828601612f3b565b925050602061348b85828601612f3b565b9150509250929050565b600080604083850312156134ac576134ab612ce5565b5b60006134ba85828601612e86565b92505060206134cb85828601612f3b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061351c57607f821691505b602082108114156135305761352f6134d5565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613592602c83612db5565b915061359d82613536565b604082019050919050565b600060208201905081810360008301526135c181613585565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613624602183612db5565b915061362f826135c8565b604082019050919050565b6000602082019050818103600083015261365381613617565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006136b6603883612db5565b91506136c18261365a565b604082019050919050565b600060208201905081810360008301526136e5816136a9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613722602083612db5565b915061372d826136ec565b602082019050919050565b6000602082019050818103600083015261375181613715565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006137b4603183612db5565b91506137bf82613758565b604082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b600081905092915050565b50565b60006138056000836137ea565b9150613810826137f5565b600082019050919050565b6000613826826137f8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061389982612e65565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138cc576138cb61385f565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613933602983612db5565b915061393e826138d7565b604082019050919050565b6000602082019050818103600083015261396281613926565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006139c5602a83612db5565b91506139d082613969565b604082019050919050565b600060208201905081810360008301526139f4816139b8565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613a31601483612db5565b9150613a3c826139fb565b602082019050919050565b60006020820190508181036000830152613a6081613a24565b9050919050565b6000613a7282612e65565b9150613a7d83612e65565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ab257613ab161385f565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613af3601483612db5565b9150613afe82613abd565b602082019050919050565b60006020820190508181036000830152613b2281613ae6565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000613b5f601c83612db5565b9150613b6a82613b29565b602082019050919050565b60006020820190508181036000830152613b8e81613b52565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613bcb601783612db5565b9150613bd682613b95565b602082019050919050565b60006020820190508181036000830152613bfa81613bbe565b9050919050565b6000613c0c82612e65565b9150613c1783612e65565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c5057613c4f61385f565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613c91601383612db5565b9150613c9c82613c5b565b602082019050919050565b60006020820190508181036000830152613cc081613c84565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613d23602f83612db5565b9150613d2e82613cc7565b604082019050919050565b60006020820190508181036000830152613d5281613d16565b9050919050565b600081905092915050565b6000613d6f82612daa565b613d798185613d59565b9350613d89818560208601612dc6565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613db781613504565b613dc18186613d59565b94506001821660008114613ddc5760018114613ded57613e20565b60ff19831686528186019350613e20565b613df685613d95565b60005b83811015613e1857815481890152600182019150602081019050613df9565b838801955050505b50505092915050565b6000613e358286613d64565b9150613e418285613d64565b9150613e4d8284613daa565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613eb6602683612db5565b9150613ec182613e5a565b604082019050919050565b60006020820190508181036000830152613ee581613ea9565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613f48602c83612db5565b9150613f5382613eec565b604082019050919050565b60006020820190508181036000830152613f7781613f3b565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613fda602983612db5565b9150613fe582613f7e565b604082019050919050565b6000602082019050818103600083015261400981613fcd565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061406c602483612db5565b915061407782614010565b604082019050919050565b6000602082019050818103600083015261409b8161405f565b9050919050565b60006140ad82612e65565b91506140b883612e65565b9250828210156140cb576140ca61385f565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061410c601983612db5565b9150614117826140d6565b602082019050919050565b6000602082019050818103600083015261413b816140ff565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061419e603283612db5565b91506141a982614142565b604082019050919050565b600060208201905081810360008301526141cd81614191565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420e82612e65565b915061421983612e65565b925082614229576142286141d4565b5b828204905092915050565b600061423f82612e65565b915061424a83612e65565b92508261425a576142596141d4565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061428c82614265565b6142968185614270565b93506142a6818560208601612dc6565b6142af81612df9565b840191505092915050565b60006080820190506142cf6000830187612efa565b6142dc6020830186612efa565b6142e96040830185612f90565b81810360608301526142fb8184614281565b905095945050505050565b60008151905061431581612d1b565b92915050565b60006020828403121561433157614330612ce5565b5b600061433f84828501614306565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061437e602083612db5565b915061438982614348565b602082019050919050565b600060208201905081810360008301526143ad81614371565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006143ea601c83612db5565b91506143f5826143b4565b602082019050919050565b60006020820190508181036000830152614419816143dd565b905091905056fea264697066735822122061b07443075ab563c867b0be42759f9973a5d0066b9a054ac0db9aa2b963f7d464736f6c63430008090033
Deployed Bytecode Sourcemap
38106:4054:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25577:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26522:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28081:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27604:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38430:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41500:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41606:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39248:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38589:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28831:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41689:148;;;;;;;;;;;;;:::i;:::-;;29241:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39810:637;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41040:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41256:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38686:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38352:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38655:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38265:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26216:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25946:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6565:103;;;;;;;;;;;;;:::i;:::-;;41394:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5914:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38503:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26691:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39343:298;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28374:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38390:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41120:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29497:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38546:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40453:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38467:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40953:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28600:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39649:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6823:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25577:305;25679:4;25731:25;25716:40;;;:11;:40;;;;:105;;;;25788:33;25773:48;;;:11;:48;;;;25716:105;:158;;;;25838:36;25862:11;25838:23;:36::i;:::-;25716:158;25696:178;;25577:305;;;:::o;26522:100::-;26576:13;26609:5;26602:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26522:100;:::o;28081:221::-;28157:7;28185:16;28193:7;28185;:16::i;:::-;28177:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28270:15;:24;28286:7;28270:24;;;;;;;;;;;;;;;;;;;;;28263:31;;28081:221;;;:::o;27604:411::-;27685:13;27701:23;27716:7;27701:14;:23::i;:::-;27685:39;;27749:5;27743:11;;:2;:11;;;;27735:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27843:5;27827:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27852:37;27869:5;27876:12;:10;:12::i;:::-;27852:16;:37::i;:::-;27827:62;27805:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27986:21;27995:2;27999:7;27986:8;:21::i;:::-;27674:341;27604:411;;:::o;38430:32::-;;;;:::o;41500:100::-;6145:12;:10;:12::i;:::-;6134:23;;:7;:5;:7::i;:::-;:23;;;6126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41584:10:::1;41572:9;:22;;;;;;;;;;;;:::i;:::-;;41500:100:::0;:::o;41606:77::-;6145:12;:10;:12::i;:::-;6134:23;;:7;:5;:7::i;:::-;:23;;;6126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41671:6:::1;41662;;:15;;;;;;;;;;;;;;;;;;41606:77:::0;:::o;39248:89::-;39292:7;39315:16;:6;:14;:16::i;:::-;39308:23;;39248:89;:::o;38589:55::-;;;;;;;;;;;;;;;;;:::o;28831:339::-;29026:41;29045:12;:10;:12::i;:::-;29059:7;29026:18;:41::i;:::-;29018:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29134:28;29144:4;29150:2;29154:7;29134:9;:28::i;:::-;28831:339;;;:::o;41689:148::-;6145:12;:10;:12::i;:::-;6134:23;;:7;:5;:7::i;:::-;:23;;;6126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41739:7:::1;41760;:5;:7::i;:::-;41752:21;;41781;41752:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41738:69;;;41822:2;41814:11;;;::::0;::::1;;41726:111;41689:148::o:0;29241:185::-;29379:39;29396:4;29402:2;29406:7;29379:39;;;;;;;;;;;;:16;:39::i;:::-;29241:185;;;:::o;39810:637::-;39885:16;39913:23;39939:17;39949:6;39939:9;:17::i;:::-;39913:43;;39963:30;40010:15;39996:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39963:63;;40033:22;40058:1;40033:26;;40066:23;40104:309;40129:15;40111;:33;:64;;;;;40166:9;;40148:14;:27;;40111:64;40104:309;;;40186:25;40214:23;40222:14;40214:7;:23::i;:::-;40186:51;;40273:6;40252:27;;:17;:27;;;40248:131;;;40325:14;40292:13;40306:15;40292:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;40352:17;;;;;:::i;:::-;;;;40248:131;40389:16;;;;;:::i;:::-;;;;40177:236;40104:309;;;40428:13;40421:20;;;;;;39810:637;;;:::o;41040:74::-;6145:12;:10;:12::i;:::-;6134:23;;:7;:5;:7::i;:::-;:23;;;6126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41103:5:::1;41096:4;:12;;;;41040:74:::0;:::o;41256:132::-;6145:12;:10;:12::i;:::-;6134:23;;:7;:5;:7::i;:::-;:23;;;6126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41364:18:::1;41344:17;:38;;;;;;;;;;;;:::i;:::-;;41256:132:::0;:::o;38686:27::-;;;;;;;;;;;;;:::o;38352:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38655:26::-;;;;;;;;;;;;;:::o;38265:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26216:239::-;26288:7;26308:13;26324:7;:16;26332:7;26324:16;;;;;;;;;;;;;;;;;;;;;26308:32;;26376:1;26359:19;;:5;:19;;;;26351:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26442:5;26435:12;;;26216:239;;;:::o;25946:208::-;26018:7;26063:1;26046:19;;:5;:19;;;;26038:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26130:9;:16;26140:5;26130:16;;;;;;;;;;;;;;;;26123:23;;25946:208;;;:::o;6565:103::-;6145:12;:10;:12::i;:::-;6134:23;;:7;:5;:7::i;:::-;:23;;;6126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6630:30:::1;6657:1;6630:18;:30::i;:::-;6565:103::o:0;41394:100::-;6145:12;:10;:12::i;:::-;6134:23;;:7;:5;:7::i;:::-;:23;;;6126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41478:10:::1;41466:9;:22;;;;;;;;;;;;:::i;:::-;;41394:100:::0;:::o;5914:87::-;5960:7;5987:6;;;;;;;;;;;5980:13;;5914:87;:::o;38503:38::-;;;;:::o;26691:104::-;26747:13;26780:7;26773:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26691:104;:::o;39343:298::-;39408:11;38909:1;38895:11;:15;:52;;;;;38929:18;;38914:11;:33;;38895:52;38887:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39021:9;;39006:11;38987:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;38979:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39062:24;39089:20;:32;39110:10;39089:32;;;;;;;;;;;;;;;;39062:59;;39170:18;;39155:11;39136:16;:30;;;;:::i;:::-;:52;;39128:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;39437:6:::1;;;;;;;;;;;39436:7;39428:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;39506:11;39499:4;;:18;;;;:::i;:::-;39486:9;:31;;39478:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;39554:20;:32;39575:10;39554:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;39595;39605:10;39617:11;39595:9;:34::i;:::-;38880:362:::0;39343:298;;:::o;28374:155::-;28469:52;28488:12;:10;:12::i;:::-;28502:8;28512;28469:18;:52::i;:::-;28374:155;;:::o;38390:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41120:130::-;6145:12;:10;:12::i;:::-;6134:23;;:7;:5;:7::i;:::-;:23;;;6126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41225:19:::1;41204:18;:40;;;;41120:130:::0;:::o;29497:328::-;29672:41;29691:12;:10;:12::i;:::-;29705:7;29672:18;:41::i;:::-;29664:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29778:39;29792:4;29798:2;29802:7;29811:5;29778:13;:39::i;:::-;29497:328;;;;:::o;38546:38::-;;;;:::o;40453:494::-;40552:13;40593:17;40601:8;40593:7;:17::i;:::-;40577:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;40700:5;40688:17;;:8;;;;;;;;;;;:17;;;40684:64;;;40723:17;40716:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40684:64;40756:28;40787:10;:8;:10::i;:::-;40756:41;;40842:1;40817:14;40811:28;:32;:130;;;;;;;;;;;;;;;;;40879:14;40895:19;:8;:17;:19::i;:::-;40916:9;40862:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40811:130;40804:137;;;40453:494;;;;:::o;38467:31::-;;;;:::o;40953:81::-;6145:12;:10;:12::i;:::-;6134:23;;:7;:5;:7::i;:::-;:23;;;6126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41022:6:::1;41011:8;;:17;;;;;;;;;;;;;;;;;;40953:81:::0;:::o;28600:164::-;28697:4;28721:18;:25;28740:5;28721:25;;;;;;;;;;;;;;;:35;28747:8;28721:35;;;;;;;;;;;;;;;;;;;;;;;;;28714:42;;28600:164;;;;:::o;39649:155::-;39735:11;38909:1;38895:11;:15;:52;;;;;38929:18;;38914:11;:33;;38895:52;38887:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39021:9;;39006:11;38987:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;38979:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39062:24;39089:20;:32;39110:10;39089:32;;;;;;;;;;;;;;;;39062:59;;39170:18;;39155:11;39136:16;:30;;;;:::i;:::-;:52;;39128:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;6145:12:::1;:10;:12::i;:::-;6134:23;;:7;:5;:7::i;:::-;:23;;;6126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39765:33:::2;39775:9;39786:11;39765:9;:33::i;:::-;38880:362:::0;39649:155;;;:::o;6823:201::-;6145:12;:10;:12::i;:::-;6134:23;;:7;:5;:7::i;:::-;:23;;;6126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6932:1:::1;6912:22;;:8;:22;;;;6904:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6988:28;7007:8;6988:18;:28::i;:::-;6823:201:::0;:::o;18346:157::-;18431:4;18470:25;18455:40;;;:11;:40;;;;18448:47;;18346:157;;;:::o;31335:127::-;31400:4;31452:1;31424:30;;:7;:16;31432:7;31424:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31417:37;;31335:127;;;:::o;4638:98::-;4691:7;4718:10;4711:17;;4638:98;:::o;35317:174::-;35419:2;35392:15;:24;35408:7;35392:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35475:7;35471:2;35437:46;;35446:23;35461:7;35446:14;:23::i;:::-;35437:46;;;;;;;;;;;;35317:174;;:::o;1242:114::-;1307:7;1334;:14;;;1327:21;;1242:114;;;:::o;31629:348::-;31722:4;31747:16;31755:7;31747;:16::i;:::-;31739:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31823:13;31839:23;31854:7;31839:14;:23::i;:::-;31823:39;;31892:5;31881:16;;:7;:16;;;:51;;;;31925:7;31901:31;;:20;31913:7;31901:11;:20::i;:::-;:31;;;31881:51;:87;;;;31936:32;31953:5;31960:7;31936:16;:32::i;:::-;31881:87;31873:96;;;31629:348;;;;:::o;34621:578::-;34780:4;34753:31;;:23;34768:7;34753:14;:23::i;:::-;:31;;;34745:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34863:1;34849:16;;:2;:16;;;;34841:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34919:39;34940:4;34946:2;34950:7;34919:20;:39::i;:::-;35023:29;35040:1;35044:7;35023:8;:29::i;:::-;35084:1;35065:9;:15;35075:4;35065:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35113:1;35096:9;:13;35106:2;35096:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35144:2;35125:7;:16;35133:7;35125:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35183:7;35179:2;35164:27;;35173:4;35164:27;;;;;;;;;;;;34621:578;;;:::o;7184:191::-;7258:16;7277:6;;;;;;;;;;;7258:25;;7303:8;7294:6;;:17;;;;;;;;;;;;;;;;;;7358:8;7327:40;;7348:8;7327:40;;;;;;;;;;;;7247:128;7184:191;:::o;41843:204::-;41923:9;41918:124;41942:11;41938:1;:15;41918:124;;;41969:18;:6;:16;:18::i;:::-;41996:38;42006:9;42017:16;:6;:14;:16::i;:::-;41996:9;:38::i;:::-;41955:3;;;;;:::i;:::-;;;;41918:124;;;;41843:204;;:::o;35633:315::-;35788:8;35779:17;;:5;:17;;;;35771:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35875:8;35837:18;:25;35856:5;35837:25;;;;;;;;;;;;;;;:35;35863:8;35837:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35921:8;35899:41;;35914:5;35899:41;;;35931:8;35899:41;;;;;;:::i;:::-;;;;;;;;35633:315;;;:::o;30707:::-;30864:28;30874:4;30880:2;30884:7;30864:9;:28::i;:::-;30911:48;30934:4;30940:2;30944:7;30953:5;30911:22;:48::i;:::-;30903:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30707:315;;;;:::o;42053:104::-;42113:13;42142:9;42135:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42053:104;:::o;2200:723::-;2256:13;2486:1;2477:5;:10;2473:53;;;2504:10;;;;;;;;;;;;;;;;;;;;;2473:53;2536:12;2551:5;2536:20;;2567:14;2592:78;2607:1;2599:4;:9;2592:78;;2625:8;;;;;:::i;:::-;;;;2656:2;2648:10;;;;;:::i;:::-;;;2592:78;;;2680:19;2712:6;2702:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2680:39;;2730:154;2746:1;2737:5;:10;2730:154;;2774:1;2764:11;;;;;:::i;:::-;;;2841:2;2833:5;:10;;;;:::i;:::-;2820:2;:24;;;;:::i;:::-;2807:39;;2790:6;2797;2790:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2870:2;2861:11;;;;;:::i;:::-;;;2730:154;;;2908:6;2894:21;;;;;2200:723;;;;:::o;37884:126::-;;;;:::o;1364:127::-;1471:1;1453:7;:14;;;:19;;;;;;;;;;;1364:127;:::o;32319:110::-;32395:26;32405:2;32409:7;32395:26;;;;;;;;;;;;:9;:26::i;:::-;32319:110;;:::o;36513:799::-;36668:4;36689:15;:2;:13;;;:15::i;:::-;36685:620;;;36741:2;36725:36;;;36762:12;:10;:12::i;:::-;36776:4;36782:7;36791:5;36725:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36721:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36984:1;36967:6;:13;:18;36963:272;;;37010:60;;;;;;;;;;:::i;:::-;;;;;;;;36963:272;37185:6;37179:13;37170:6;37166:2;37162:15;37155:38;36721:529;36858:41;;;36848:51;;;:6;:51;;;;36841:58;;;;;36685:620;37289:4;37282:11;;36513:799;;;;;;;:::o;32656:321::-;32786:18;32792:2;32796:7;32786:5;:18::i;:::-;32837:54;32868:1;32872:2;32876:7;32885:5;32837:22;:54::i;:::-;32815:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32656:321;;;:::o;8202:387::-;8262:4;8470:12;8537:7;8525:20;8517:28;;8580:1;8573:4;:8;8566:15;;;8202:387;;;:::o;33313:382::-;33407:1;33393:16;;:2;:16;;;;33385:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33466:16;33474:7;33466;:16::i;:::-;33465:17;33457:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33528:45;33557:1;33561:2;33565:7;33528:20;:45::i;:::-;33603:1;33586:9;:13;33596:2;33586:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33634:2;33615:7;:16;33623:7;33615:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33679:7;33675:2;33654:33;;33671:1;33654:33;;;;;;;;;;;;33313:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:329::-;8560:6;8609:2;8597:9;8588:7;8584:23;8580:32;8577:119;;;8615:79;;:::i;:::-;8577:119;8735:1;8760:53;8805:7;8796:6;8785:9;8781:22;8760:53;:::i;:::-;8750:63;;8706:117;8501:329;;;;:::o;8836:619::-;8913:6;8921;8929;8978:2;8966:9;8957:7;8953:23;8949:32;8946:119;;;8984:79;;:::i;:::-;8946:119;9104:1;9129:53;9174:7;9165:6;9154:9;9150:22;9129:53;:::i;:::-;9119:63;;9075:117;9231:2;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9202:118;9359:2;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9330:118;8836:619;;;;;:::o;9461:114::-;9528:6;9562:5;9556:12;9546:22;;9461:114;;;:::o;9581:184::-;9680:11;9714:6;9709:3;9702:19;9754:4;9749:3;9745:14;9730:29;;9581:184;;;;:::o;9771:132::-;9838:4;9861:3;9853:11;;9891:4;9886:3;9882:14;9874:22;;9771:132;;;:::o;9909:108::-;9986:24;10004:5;9986:24;:::i;:::-;9981:3;9974:37;9909:108;;:::o;10023:179::-;10092:10;10113:46;10155:3;10147:6;10113:46;:::i;:::-;10191:4;10186:3;10182:14;10168:28;;10023:179;;;;:::o;10208:113::-;10278:4;10310;10305:3;10301:14;10293:22;;10208:113;;;:::o;10357:732::-;10476:3;10505:54;10553:5;10505:54;:::i;:::-;10575:86;10654:6;10649:3;10575:86;:::i;:::-;10568:93;;10685:56;10735:5;10685:56;:::i;:::-;10764:7;10795:1;10780:284;10805:6;10802:1;10799:13;10780:284;;;10881:6;10875:13;10908:63;10967:3;10952:13;10908:63;:::i;:::-;10901:70;;10994:60;11047:6;10994:60;:::i;:::-;10984:70;;10840:224;10827:1;10824;10820:9;10815:14;;10780:284;;;10784:14;11080:3;11073:10;;10481:608;;;10357:732;;;;:::o;11095:373::-;11238:4;11276:2;11265:9;11261:18;11253:26;;11325:9;11319:4;11315:20;11311:1;11300:9;11296:17;11289:47;11353:108;11456:4;11447:6;11353:108;:::i;:::-;11345:116;;11095:373;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:474::-;14051:6;14059;14108:2;14096:9;14087:7;14083:23;14079:32;14076:119;;;14114:79;;:::i;:::-;14076:119;14234:1;14259:53;14304:7;14295:6;14284:9;14280:22;14259:53;:::i;:::-;14249:63;;14205:117;14361:2;14387:53;14432:7;14423:6;14412:9;14408:22;14387:53;:::i;:::-;14377:63;;14332:118;13983:474;;;;;:::o;14463:::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:180::-;14991:77;14988:1;14981:88;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;15129:320;15173:6;15210:1;15204:4;15200:12;15190:22;;15257:1;15251:4;15247:12;15278:18;15268:81;;15334:4;15326:6;15322:17;15312:27;;15268:81;15396:2;15388:6;15385:14;15365:18;15362:38;15359:84;;;15415:18;;:::i;:::-;15359:84;15180:269;15129:320;;;:::o;15455:231::-;15595:34;15591:1;15583:6;15579:14;15572:58;15664:14;15659:2;15651:6;15647:15;15640:39;15455:231;:::o;15692:366::-;15834:3;15855:67;15919:2;15914:3;15855:67;:::i;:::-;15848:74;;15931:93;16020:3;15931:93;:::i;:::-;16049:2;16044:3;16040:12;16033:19;;15692:366;;;:::o;16064:419::-;16230:4;16268:2;16257:9;16253:18;16245:26;;16317:9;16311:4;16307:20;16303:1;16292:9;16288:17;16281:47;16345:131;16471:4;16345:131;:::i;:::-;16337:139;;16064:419;;;:::o;16489:220::-;16629:34;16625:1;16617:6;16613:14;16606:58;16698:3;16693:2;16685:6;16681:15;16674:28;16489:220;:::o;16715:366::-;16857:3;16878:67;16942:2;16937:3;16878:67;:::i;:::-;16871:74;;16954:93;17043:3;16954:93;:::i;:::-;17072:2;17067:3;17063:12;17056:19;;16715:366;;;:::o;17087:419::-;17253:4;17291:2;17280:9;17276:18;17268:26;;17340:9;17334:4;17330:20;17326:1;17315:9;17311:17;17304:47;17368:131;17494:4;17368:131;:::i;:::-;17360:139;;17087:419;;;:::o;17512:243::-;17652:34;17648:1;17640:6;17636:14;17629:58;17721:26;17716:2;17708:6;17704:15;17697:51;17512:243;:::o;17761:366::-;17903:3;17924:67;17988:2;17983:3;17924:67;:::i;:::-;17917:74;;18000:93;18089:3;18000:93;:::i;:::-;18118:2;18113:3;18109:12;18102:19;;17761:366;;;:::o;18133:419::-;18299:4;18337:2;18326:9;18322:18;18314:26;;18386:9;18380:4;18376:20;18372:1;18361:9;18357:17;18350:47;18414:131;18540:4;18414:131;:::i;:::-;18406:139;;18133:419;;;:::o;18558:182::-;18698:34;18694:1;18686:6;18682:14;18675:58;18558:182;:::o;18746:366::-;18888:3;18909:67;18973:2;18968:3;18909:67;:::i;:::-;18902:74;;18985:93;19074:3;18985:93;:::i;:::-;19103:2;19098:3;19094:12;19087:19;;18746:366;;;:::o;19118:419::-;19284:4;19322:2;19311:9;19307:18;19299:26;;19371:9;19365:4;19361:20;19357:1;19346:9;19342:17;19335:47;19399:131;19525:4;19399:131;:::i;:::-;19391:139;;19118:419;;;:::o;19543:236::-;19683:34;19679:1;19671:6;19667:14;19660:58;19752:19;19747:2;19739:6;19735:15;19728:44;19543:236;:::o;19785:366::-;19927:3;19948:67;20012:2;20007:3;19948:67;:::i;:::-;19941:74;;20024:93;20113:3;20024:93;:::i;:::-;20142:2;20137:3;20133:12;20126:19;;19785:366;;;:::o;20157:419::-;20323:4;20361:2;20350:9;20346:18;20338:26;;20410:9;20404:4;20400:20;20396:1;20385:9;20381:17;20374:47;20438:131;20564:4;20438:131;:::i;:::-;20430:139;;20157:419;;;:::o;20582:147::-;20683:11;20720:3;20705:18;;20582:147;;;;:::o;20735:114::-;;:::o;20855:398::-;21014:3;21035:83;21116:1;21111:3;21035:83;:::i;:::-;21028:90;;21127:93;21216:3;21127:93;:::i;:::-;21245:1;21240:3;21236:11;21229:18;;20855:398;;;:::o;21259:379::-;21443:3;21465:147;21608:3;21465:147;:::i;:::-;21458:154;;21629:3;21622:10;;21259:379;;;:::o;21644:180::-;21692:77;21689:1;21682:88;21789:4;21786:1;21779:15;21813:4;21810:1;21803:15;21830:180;21878:77;21875:1;21868:88;21975:4;21972:1;21965:15;21999:4;21996:1;21989:15;22016:233;22055:3;22078:24;22096:5;22078:24;:::i;:::-;22069:33;;22124:66;22117:5;22114:77;22111:103;;;22194:18;;:::i;:::-;22111:103;22241:1;22234:5;22230:13;22223:20;;22016:233;;;:::o;22255:228::-;22395:34;22391:1;22383:6;22379:14;22372:58;22464:11;22459:2;22451:6;22447:15;22440:36;22255:228;:::o;22489:366::-;22631:3;22652:67;22716:2;22711:3;22652:67;:::i;:::-;22645:74;;22728:93;22817:3;22728:93;:::i;:::-;22846:2;22841:3;22837:12;22830:19;;22489:366;;;:::o;22861:419::-;23027:4;23065:2;23054:9;23050:18;23042:26;;23114:9;23108:4;23104:20;23100:1;23089:9;23085:17;23078:47;23142:131;23268:4;23142:131;:::i;:::-;23134:139;;22861:419;;;:::o;23286:229::-;23426:34;23422:1;23414:6;23410:14;23403:58;23495:12;23490:2;23482:6;23478:15;23471:37;23286:229;:::o;23521:366::-;23663:3;23684:67;23748:2;23743:3;23684:67;:::i;:::-;23677:74;;23760:93;23849:3;23760:93;:::i;:::-;23878:2;23873:3;23869:12;23862:19;;23521:366;;;:::o;23893:419::-;24059:4;24097:2;24086:9;24082:18;24074:26;;24146:9;24140:4;24136:20;24132:1;24121:9;24117:17;24110:47;24174:131;24300:4;24174:131;:::i;:::-;24166:139;;23893:419;;;:::o;24318:170::-;24458:22;24454:1;24446:6;24442:14;24435:46;24318:170;:::o;24494:366::-;24636:3;24657:67;24721:2;24716:3;24657:67;:::i;:::-;24650:74;;24733:93;24822:3;24733:93;:::i;:::-;24851:2;24846:3;24842:12;24835:19;;24494:366;;;:::o;24866:419::-;25032:4;25070:2;25059:9;25055:18;25047:26;;25119:9;25113:4;25109:20;25105:1;25094:9;25090:17;25083:47;25147:131;25273:4;25147:131;:::i;:::-;25139:139;;24866:419;;;:::o;25291:305::-;25331:3;25350:20;25368:1;25350:20;:::i;:::-;25345:25;;25384:20;25402:1;25384:20;:::i;:::-;25379:25;;25538:1;25470:66;25466:74;25463:1;25460:81;25457:107;;;25544:18;;:::i;:::-;25457:107;25588:1;25585;25581:9;25574:16;;25291:305;;;;:::o;25602:170::-;25742:22;25738:1;25730:6;25726:14;25719:46;25602:170;:::o;25778:366::-;25920:3;25941:67;26005:2;26000:3;25941:67;:::i;:::-;25934:74;;26017:93;26106:3;26017:93;:::i;:::-;26135:2;26130:3;26126:12;26119:19;;25778:366;;;:::o;26150:419::-;26316:4;26354:2;26343:9;26339:18;26331:26;;26403:9;26397:4;26393:20;26389:1;26378:9;26374:17;26367:47;26431:131;26557:4;26431:131;:::i;:::-;26423:139;;26150:419;;;:::o;26575:178::-;26715:30;26711:1;26703:6;26699:14;26692:54;26575:178;:::o;26759:366::-;26901:3;26922:67;26986:2;26981:3;26922:67;:::i;:::-;26915:74;;26998:93;27087:3;26998:93;:::i;:::-;27116:2;27111:3;27107:12;27100:19;;26759:366;;;:::o;27131:419::-;27297:4;27335:2;27324:9;27320:18;27312:26;;27384:9;27378:4;27374:20;27370:1;27359:9;27355:17;27348:47;27412:131;27538:4;27412:131;:::i;:::-;27404:139;;27131:419;;;:::o;27556:173::-;27696:25;27692:1;27684:6;27680:14;27673:49;27556:173;:::o;27735:366::-;27877:3;27898:67;27962:2;27957:3;27898:67;:::i;:::-;27891:74;;27974:93;28063:3;27974:93;:::i;:::-;28092:2;28087:3;28083:12;28076:19;;27735:366;;;:::o;28107:419::-;28273:4;28311:2;28300:9;28296:18;28288:26;;28360:9;28354:4;28350:20;28346:1;28335:9;28331:17;28324:47;28388:131;28514:4;28388:131;:::i;:::-;28380:139;;28107:419;;;:::o;28532:348::-;28572:7;28595:20;28613:1;28595:20;:::i;:::-;28590:25;;28629:20;28647:1;28629:20;:::i;:::-;28624:25;;28817:1;28749:66;28745:74;28742:1;28739:81;28734:1;28727:9;28720:17;28716:105;28713:131;;;28824:18;;:::i;:::-;28713:131;28872:1;28869;28865:9;28854:20;;28532:348;;;;:::o;28886:169::-;29026:21;29022:1;29014:6;29010:14;29003:45;28886:169;:::o;29061:366::-;29203:3;29224:67;29288:2;29283:3;29224:67;:::i;:::-;29217:74;;29300:93;29389:3;29300:93;:::i;:::-;29418:2;29413:3;29409:12;29402:19;;29061:366;;;:::o;29433:419::-;29599:4;29637:2;29626:9;29622:18;29614:26;;29686:9;29680:4;29676:20;29672:1;29661:9;29657:17;29650:47;29714:131;29840:4;29714:131;:::i;:::-;29706:139;;29433:419;;;:::o;29858:234::-;29998:34;29994:1;29986:6;29982:14;29975:58;30067:17;30062:2;30054:6;30050:15;30043:42;29858:234;:::o;30098:366::-;30240:3;30261:67;30325:2;30320:3;30261:67;:::i;:::-;30254:74;;30337:93;30426:3;30337:93;:::i;:::-;30455:2;30450:3;30446:12;30439:19;;30098:366;;;:::o;30470:419::-;30636:4;30674:2;30663:9;30659:18;30651:26;;30723:9;30717:4;30713:20;30709:1;30698:9;30694:17;30687:47;30751:131;30877:4;30751:131;:::i;:::-;30743:139;;30470:419;;;:::o;30895:148::-;30997:11;31034:3;31019:18;;30895:148;;;;:::o;31049:377::-;31155:3;31183:39;31216:5;31183:39;:::i;:::-;31238:89;31320:6;31315:3;31238:89;:::i;:::-;31231:96;;31336:52;31381:6;31376:3;31369:4;31362:5;31358:16;31336:52;:::i;:::-;31413:6;31408:3;31404:16;31397:23;;31159:267;31049:377;;;;:::o;31432:141::-;31481:4;31504:3;31496:11;;31527:3;31524:1;31517:14;31561:4;31558:1;31548:18;31540:26;;31432:141;;;:::o;31603:845::-;31706:3;31743:5;31737:12;31772:36;31798:9;31772:36;:::i;:::-;31824:89;31906:6;31901:3;31824:89;:::i;:::-;31817:96;;31944:1;31933:9;31929:17;31960:1;31955:137;;;;32106:1;32101:341;;;;31922:520;;31955:137;32039:4;32035:9;32024;32020:25;32015:3;32008:38;32075:6;32070:3;32066:16;32059:23;;31955:137;;32101:341;32168:38;32200:5;32168:38;:::i;:::-;32228:1;32242:154;32256:6;32253:1;32250:13;32242:154;;;32330:7;32324:14;32320:1;32315:3;32311:11;32304:35;32380:1;32371:7;32367:15;32356:26;;32278:4;32275:1;32271:12;32266:17;;32242:154;;;32425:6;32420:3;32416:16;32409:23;;32108:334;;31922:520;;31710:738;;31603:845;;;;:::o;32454:589::-;32679:3;32701:95;32792:3;32783:6;32701:95;:::i;:::-;32694:102;;32813:95;32904:3;32895:6;32813:95;:::i;:::-;32806:102;;32925:92;33013:3;33004:6;32925:92;:::i;:::-;32918:99;;33034:3;33027:10;;32454:589;;;;;;:::o;33049:225::-;33189:34;33185:1;33177:6;33173:14;33166:58;33258:8;33253:2;33245:6;33241:15;33234:33;33049:225;:::o;33280:366::-;33422:3;33443:67;33507:2;33502:3;33443:67;:::i;:::-;33436:74;;33519:93;33608:3;33519:93;:::i;:::-;33637:2;33632:3;33628:12;33621:19;;33280:366;;;:::o;33652:419::-;33818:4;33856:2;33845:9;33841:18;33833:26;;33905:9;33899:4;33895:20;33891:1;33880:9;33876:17;33869:47;33933:131;34059:4;33933:131;:::i;:::-;33925:139;;33652:419;;;:::o;34077:231::-;34217:34;34213:1;34205:6;34201:14;34194:58;34286:14;34281:2;34273:6;34269:15;34262:39;34077:231;:::o;34314:366::-;34456:3;34477:67;34541:2;34536:3;34477:67;:::i;:::-;34470:74;;34553:93;34642:3;34553:93;:::i;:::-;34671:2;34666:3;34662:12;34655:19;;34314:366;;;:::o;34686:419::-;34852:4;34890:2;34879:9;34875:18;34867:26;;34939:9;34933:4;34929:20;34925:1;34914:9;34910:17;34903:47;34967:131;35093:4;34967:131;:::i;:::-;34959:139;;34686:419;;;:::o;35111:228::-;35251:34;35247:1;35239:6;35235:14;35228:58;35320:11;35315:2;35307:6;35303:15;35296:36;35111:228;:::o;35345:366::-;35487:3;35508:67;35572:2;35567:3;35508:67;:::i;:::-;35501:74;;35584:93;35673:3;35584:93;:::i;:::-;35702:2;35697:3;35693:12;35686:19;;35345:366;;;:::o;35717:419::-;35883:4;35921:2;35910:9;35906:18;35898:26;;35970:9;35964:4;35960:20;35956:1;35945:9;35941:17;35934:47;35998:131;36124:4;35998:131;:::i;:::-;35990:139;;35717:419;;;:::o;36142:223::-;36282:34;36278:1;36270:6;36266:14;36259:58;36351:6;36346:2;36338:6;36334:15;36327:31;36142:223;:::o;36371:366::-;36513:3;36534:67;36598:2;36593:3;36534:67;:::i;:::-;36527:74;;36610:93;36699:3;36610:93;:::i;:::-;36728:2;36723:3;36719:12;36712:19;;36371:366;;;:::o;36743:419::-;36909:4;36947:2;36936:9;36932:18;36924:26;;36996:9;36990:4;36986:20;36982:1;36971:9;36967:17;36960:47;37024:131;37150:4;37024:131;:::i;:::-;37016:139;;36743:419;;;:::o;37168:191::-;37208:4;37228:20;37246:1;37228:20;:::i;:::-;37223:25;;37262:20;37280:1;37262:20;:::i;:::-;37257:25;;37301:1;37298;37295:8;37292:34;;;37306:18;;:::i;:::-;37292:34;37351:1;37348;37344:9;37336:17;;37168:191;;;;:::o;37365:175::-;37505:27;37501:1;37493:6;37489:14;37482:51;37365:175;:::o;37546:366::-;37688:3;37709:67;37773:2;37768:3;37709:67;:::i;:::-;37702:74;;37785:93;37874:3;37785:93;:::i;:::-;37903:2;37898:3;37894:12;37887:19;;37546:366;;;:::o;37918:419::-;38084:4;38122:2;38111:9;38107:18;38099:26;;38171:9;38165:4;38161:20;38157:1;38146:9;38142:17;38135:47;38199:131;38325:4;38199:131;:::i;:::-;38191:139;;37918:419;;;:::o;38343:237::-;38483:34;38479:1;38471:6;38467:14;38460:58;38552:20;38547:2;38539:6;38535:15;38528:45;38343:237;:::o;38586:366::-;38728:3;38749:67;38813:2;38808:3;38749:67;:::i;:::-;38742:74;;38825:93;38914:3;38825:93;:::i;:::-;38943:2;38938:3;38934:12;38927:19;;38586:366;;;:::o;38958:419::-;39124:4;39162:2;39151:9;39147:18;39139:26;;39211:9;39205:4;39201:20;39197:1;39186:9;39182:17;39175:47;39239:131;39365:4;39239:131;:::i;:::-;39231:139;;38958:419;;;:::o;39383:180::-;39431:77;39428:1;39421:88;39528:4;39525:1;39518:15;39552:4;39549:1;39542:15;39569:185;39609:1;39626:20;39644:1;39626:20;:::i;:::-;39621:25;;39660:20;39678:1;39660:20;:::i;:::-;39655:25;;39699:1;39689:35;;39704:18;;:::i;:::-;39689:35;39746:1;39743;39739:9;39734:14;;39569:185;;;;:::o;39760:176::-;39792:1;39809:20;39827:1;39809:20;:::i;:::-;39804:25;;39843:20;39861:1;39843:20;:::i;:::-;39838:25;;39882:1;39872:35;;39887:18;;:::i;:::-;39872:35;39928:1;39925;39921:9;39916:14;;39760:176;;;;:::o;39942:98::-;39993:6;40027:5;40021:12;40011:22;;39942:98;;;:::o;40046:168::-;40129:11;40163:6;40158:3;40151:19;40203:4;40198:3;40194:14;40179:29;;40046:168;;;;:::o;40220:360::-;40306:3;40334:38;40366:5;40334:38;:::i;:::-;40388:70;40451:6;40446:3;40388:70;:::i;:::-;40381:77;;40467:52;40512:6;40507:3;40500:4;40493:5;40489:16;40467:52;:::i;:::-;40544:29;40566:6;40544:29;:::i;:::-;40539:3;40535:39;40528:46;;40310:270;40220:360;;;;:::o;40586:640::-;40781:4;40819:3;40808:9;40804:19;40796:27;;40833:71;40901:1;40890:9;40886:17;40877:6;40833:71;:::i;:::-;40914:72;40982:2;40971:9;40967:18;40958:6;40914:72;:::i;:::-;40996;41064:2;41053:9;41049:18;41040:6;40996:72;:::i;:::-;41115:9;41109:4;41105:20;41100:2;41089:9;41085:18;41078:48;41143:76;41214:4;41205:6;41143:76;:::i;:::-;41135:84;;40586:640;;;;;;;:::o;41232:141::-;41288:5;41319:6;41313:13;41304:22;;41335:32;41361:5;41335:32;:::i;:::-;41232:141;;;;:::o;41379:349::-;41448:6;41497:2;41485:9;41476:7;41472:23;41468:32;41465:119;;;41503:79;;:::i;:::-;41465:119;41623:1;41648:63;41703:7;41694:6;41683:9;41679:22;41648:63;:::i;:::-;41638:73;;41594:127;41379:349;;;;:::o;41734:182::-;41874:34;41870:1;41862:6;41858:14;41851:58;41734:182;:::o;41922:366::-;42064:3;42085:67;42149:2;42144:3;42085:67;:::i;:::-;42078:74;;42161:93;42250:3;42161:93;:::i;:::-;42279:2;42274:3;42270:12;42263:19;;41922:366;;;:::o;42294:419::-;42460:4;42498:2;42487:9;42483:18;42475:26;;42547:9;42541:4;42537:20;42533:1;42522:9;42518:17;42511:47;42575:131;42701:4;42575:131;:::i;:::-;42567:139;;42294:419;;;:::o;42719:178::-;42859:30;42855:1;42847:6;42843:14;42836:54;42719:178;:::o;42903:366::-;43045:3;43066:67;43130:2;43125:3;43066:67;:::i;:::-;43059:74;;43142:93;43231:3;43142:93;:::i;:::-;43260:2;43255:3;43251:12;43244:19;;42903:366;;;:::o;43275:419::-;43441:4;43479:2;43468:9;43464:18;43456:26;;43528:9;43522:4;43518:20;43514:1;43503:9;43499:17;43492:47;43556:131;43682:4;43556:131;:::i;:::-;43548:139;;43275:419;;;:::o
Swarm Source
ipfs://61b07443075ab563c867b0be42759f9973a5d0066b9a054ac0db9aa2b963f7d4
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.