Overview
TokenID
1334
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Canine
Compiler Version
v0.7.3+commit.9bfce1f6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-20 */ // Sources flattened with hardhat v2.4.3 https://hardhat.org // File @openzeppelin/contracts/introspection/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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/introspection/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity >=0.6.2 <0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity >=0.6.2 <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/[email protected] pragma solidity >=0.6.2 <0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File @openzeppelin/contracts/math/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. */ function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) { uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key) return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {_tryGet}. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint160(uint256(value)))); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. * * _Available since v3.4._ */ function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) { (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key)); return (success, address(uint160(uint256(value)))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key))))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryGet}. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))); } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` 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); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = bytes1(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // 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; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @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 _tokenURI = _tokenURIs[tokenId]; string memory base = baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); // internal owner _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @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()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/access/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } // File contracts/Canine.sol pragma solidity ^0.7.3; contract Canine is Ownable, ERC165, ERC721 { // Libraries using Counters for Counters.Counter; using Strings for uint256; using SafeMath for uint256; // Private fields Counters.Counter private _tokenIds; string private ipfsUri = "https://ipfs.io/ipfs/"; // Public constants uint256 public constant MAX_SUPPLY = 10000; // Public fields bool public open = false; string public folder = ""; string public provenance = ""; string public provenanceURI = ""; bool public locked = false; bool public breedingEnabled = false; uint256 public mintPrice = 0.08 ether; uint256 public burnPrice = 0.02 ether; modifier notLocked() { require(!locked, "Contract has been locked"); _; } constructor() ERC721("Canine Country Club", "CANINE") { _setBaseURI( "https://us-central1-canine-country-club-5838e.cloudfunctions.net/app/v1/" ); } // Public methods function mint(uint256 quantity) public payable { require(open, "Drop not open yet"); require(quantity > 0, "Quantity must be at least 1"); // Limit buys if (quantity > 100) { quantity = 100; } // Limit buys that exceed MAX_SUPPLY if (quantity.add(totalSupply()) > MAX_SUPPLY) { quantity = MAX_SUPPLY.sub(totalSupply()); } uint256 price = getPrice(quantity); // Ensure enough ETH require(msg.value >= price, "Not enough ETH sent"); for (uint256 i = 0; i < quantity; i++) { _mintInternal(msg.sender); } // Return any remaining ether after the buy uint256 remaining = msg.value.sub(price); if (remaining > 0) { (bool success, ) = msg.sender.call{value: remaining}(""); require(success); } } function breed(uint256 id1, uint256 id2) public payable { require(breedingEnabled, "Breeding is not enabled yet."); require(msg.value >= burnPrice, "Not enough ETH to breed."); _burn(id1); _burn(id2); _mintInternal(msg.sender); } function getQuantityFromValue(uint256 value) public view returns (uint256) { return value.div(mintPrice); } function getPrice(uint256 quantity) public view returns (uint256) { require(quantity <= MAX_SUPPLY); return quantity.mul(mintPrice); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( tokenId > 0 && tokenId <= totalSupply(), "URI query for nonexistent token" ); if (bytes(folder).length > 0) { return string( abi.encodePacked(ipfsUri, folder, "/", tokenId.toString()) ); } return string(abi.encodePacked(baseURI(), tokenId.toString())); } // Admin methods function ownerMint(uint256 quantity) public onlyOwner { require(!open, "Owner cannot mint after sale opens"); for (uint256 i = 0; i < quantity; i++) { _mintInternal(msg.sender); } } function setOpen(bool shouldOpen) external onlyOwner { open = shouldOpen; } function setBaseURI(string memory newBaseURI) external onlyOwner notLocked { _setBaseURI(newBaseURI); } function setIpfsURI(string memory _ipfsUri) external onlyOwner notLocked { ipfsUri = _ipfsUri; } function setFolder(string memory _folder) external onlyOwner notLocked { folder = _folder; } function setProvenanceURI(string memory _provenanceURI) external onlyOwner notLocked { provenanceURI = _provenanceURI; } function setProvenance(string memory _provenance) external onlyOwner notLocked { provenance = _provenance; } function lock() external onlyOwner { locked = true; } function withdraw() external onlyOwner { (bool success, ) = payable(owner()).call{value: address(this).balance}(""); require(success); } function reserveTokens() public onlyOwner { for (uint256 i = 0; i < 50; i++) { _mintInternal(msg.sender); } } function setBreeding(bool breed) public onlyOwner { breedingEnabled = breed; } function setMintPrice(uint256 price) public onlyOwner { mintPrice = price; } function setBurnPrice(uint256 price) public onlyOwner { burnPrice = price; } // Private Methods function _mintInternal(address owner) private { _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _mint(owner, newItemId); } }
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":[],"name":"MAX_SUPPLY","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":[{"internalType":"uint256","name":"id1","type":"uint256"},{"internalType":"uint256","name":"id2","type":"uint256"}],"name":"breed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"breedingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"folder","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"getQuantityFromValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"breed","type":"bool"}],"name":"setBreeding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setBurnPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_folder","type":"string"}],"name":"setFolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_ipfsUri","type":"string"}],"name":"setIpfsURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"shouldOpen","type":"bool"}],"name":"setOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceURI","type":"string"}],"name":"setProvenanceURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280601581526020017f68747470733a2f2f697066732e696f2f697066732f0000000000000000000000815250600c9080519060200190620000519291906200044d565b506000600d60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600e9080519060200190620000949291906200044d565b5060405180602001604052806000815250600f9080519060200190620000bc9291906200044d565b506040518060200160405280600081525060109080519060200190620000e49291906200044d565b506000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff02191690831515021790555067011c37937e08000060125566470de4df8200006013553480156200013f57600080fd5b506040518060400160405280601381526020017f43616e696e6520436f756e74727920436c7562000000000000000000000000008152506040518060400160405280600681526020017f43414e494e4500000000000000000000000000000000000000000000000000008152506000620001be6200032060201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002746301ffc9a760e01b6200032860201b60201c565b81600790805190602001906200028c9291906200044d565b508060089080519060200190620002a59291906200044d565b50620002be6380ac58cd60e01b6200032860201b60201c565b620002d6635b5e139f60e01b6200032860201b60201c565b620002ee63780e9d6360e01b6200032860201b60201c565b50506200031a60405180608001604052806048815260200162005751604891396200043160201b60201c565b620004f3565b600033905090565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620003c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b80600a9080519060200190620004499291906200044d565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200049057805160ff1916838001178555620004c1565b82800160010185558215620004c1579182015b82811115620004c0578251825591602001919060010190620004a3565b5b509050620004d09190620004d4565b5090565b5b80821115620004ef576000816000905550600101620004d5565b5090565b61524e80620005036000396000f3fe60806040526004361061027d5760003560e01c80636fdca5e01161014f578063bde6a5a9116100c1578063f19e75d41161007a578063f19e75d41461129f578063f2fde38b146112da578063f4a0a5281461132b578063f83d08ba14611366578063fcfff16f1461137d578063ffe630b5146113aa5761027d565b8063bde6a5a914611085578063c87b56dd146110b0578063cf30901214611164578063d9ecad7b14611191578063e7572230146111c9578063e985e9c5146112185761027d565b806395d89b411161011357806395d89b4114610d00578063a00501a414610d90578063a0712d6814610e20578063a22cb46514610e4e578063a9373d9414610eab578063b88d4fde14610f735761027d565b80636fdca5e014610b3e57806370a0823114610b7b57806371356d4714610be0578063715018a614610ca85780638da5cb5b14610cbf5761027d565b80632f745c59116101f357806355f804b3116101ac57806355f804b3146108895780635e9de302146109515780636352211e1461098e57806365477dc0146109f35780636817c76c14610a835780636c0360eb14610aae5761027d565b80632f745c591461064657806331690734146106b557806332cb6b0c1461077d5780633ccfd60b146107a857806342842e0e146107bf5780634f6ccce71461083a5761027d565b806310e4b9b11161024557806310e4b9b1146104d257806318160ddd1461050d57806323b872dd1461053857806327ac36c4146105b357806329ed3f74146105ca5780632bba9fe6146106195761027d565b806301ffc9a71461028257806306fdde03146102f2578063081812fc14610382578063095ea7b3146103e75780630f7309e814610442575b600080fd5b34801561028e57600080fd5b506102da600480360360208110156102a557600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611472565b60405180821515815260200191505060405180910390f35b3480156102fe57600080fd5b506103076114da565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561034757808201518184015260208101905061032c565b50505050905090810190601f1680156103745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038e57600080fd5b506103bb600480360360208110156103a557600080fd5b810190808035906020019092919050505061157c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103f357600080fd5b506104406004803603604081101561040a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611617565b005b34801561044e57600080fd5b5061045761175b565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561049757808201518184015260208101905061047c565b50505050905090810190601f1680156104c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104de57600080fd5b5061050b600480360360208110156104f557600080fd5b81019080803590602001909291905050506117f9565b005b34801561051957600080fd5b506105226118b2565b6040518082815260200191505060405180910390f35b34801561054457600080fd5b506105b16004803603606081101561055b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118c3565b005b3480156105bf57600080fd5b506105c8611939565b005b3480156105d657600080fd5b50610603600480360360208110156105ed57600080fd5b8101908080359060200190929190505050611a0d565b6040518082815260200191505060405180910390f35b34801561062557600080fd5b5061062e611a2b565b60405180821515815260200191505060405180910390f35b34801561065257600080fd5b5061069f6004803603604081101561066957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a3e565b6040518082815260200191505060405180910390f35b3480156106c157600080fd5b5061077b600480360360208110156106d857600080fd5b81019080803590602001906401000000008111156106f557600080fd5b82018360208201111561070757600080fd5b8035906020019184600183028401116401000000008311171561072957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611a99565b005b34801561078957600080fd5b50610792611be5565b6040518082815260200191505060405180910390f35b3480156107b457600080fd5b506107bd611beb565b005b3480156107cb57600080fd5b50610838600480360360608110156107e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d17565b005b34801561084657600080fd5b506108736004803603602081101561085d57600080fd5b8101908080359060200190929190505050611d37565b6040518082815260200191505060405180910390f35b34801561089557600080fd5b5061094f600480360360208110156108ac57600080fd5b81019080803590602001906401000000008111156108c957600080fd5b8201836020820111156108db57600080fd5b803590602001918460018302840111640100000000831117156108fd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611d5a565b005b34801561095d57600080fd5b5061098c6004803603602081101561097457600080fd5b81019080803515159060200190929190505050611e98565b005b34801561099a57600080fd5b506109c7600480360360208110156109b157600080fd5b8101908080359060200190929190505050611f64565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109ff57600080fd5b50610a08611f9b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a48578082015181840152602081019050610a2d565b50505050905090810190601f168015610a755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a8f57600080fd5b50610a98612039565b6040518082815260200191505060405180910390f35b348015610aba57600080fd5b50610ac361203f565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b03578082015181840152602081019050610ae8565b50505050905090810190601f168015610b305780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b4a57600080fd5b50610b7960048036036020811015610b6157600080fd5b810190808035151590602001909291905050506120e1565b005b348015610b8757600080fd5b50610bca60048036036020811015610b9e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121ad565b6040518082815260200191505060405180910390f35b348015610bec57600080fd5b50610ca660048036036020811015610c0357600080fd5b8101908080359060200190640100000000811115610c2057600080fd5b820183602082011115610c3257600080fd5b80359060200191846001830284011164010000000083111715610c5457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612282565b005b348015610cb457600080fd5b50610cbd6123ce565b005b348015610ccb57600080fd5b50610cd461253b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d0c57600080fd5b50610d15612564565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d55578082015181840152602081019050610d3a565b50505050905090810190601f168015610d825780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610d9c57600080fd5b50610da5612606565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610de5578082015181840152602081019050610dca565b50505050905090810190601f168015610e125780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610e4c60048036036020811015610e3657600080fd5b81019080803590602001909291905050506126a4565b005b348015610e5a57600080fd5b50610ea960048036036040811015610e7157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061292b565b005b348015610eb757600080fd5b50610f7160048036036020811015610ece57600080fd5b8101908080359060200190640100000000811115610eeb57600080fd5b820183602082011115610efd57600080fd5b80359060200191846001830284011164010000000083111715610f1f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612ae1565b005b348015610f7f57600080fd5b5061108360048036036080811015610f9657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ffd57600080fd5b82018360208201111561100f57600080fd5b8035906020019184600183028401116401000000008311171561103157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612c2d565b005b34801561109157600080fd5b5061109a612ca5565b6040518082815260200191505060405180910390f35b3480156110bc57600080fd5b506110e9600480360360208110156110d357600080fd5b8101908080359060200190929190505050612cab565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561112957808201518184015260208101905061110e565b50505050905090810190601f1680156111565780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561117057600080fd5b50611179612f84565b60405180821515815260200191505060405180910390f35b6111c7600480360360408110156111a757600080fd5b810190808035906020019092919080359060200190929190505050612f97565b005b3480156111d557600080fd5b50611202600480360360208110156111ec57600080fd5b81019080803590602001909291905050506130b0565b6040518082815260200191505060405180910390f35b34801561122457600080fd5b506112876004803603604081101561123b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130dd565b60405180821515815260200191505060405180910390f35b3480156112ab57600080fd5b506112d8600480360360208110156112c257600080fd5b8101908080359060200190929190505050613171565b005b3480156112e657600080fd5b50611329600480360360208110156112fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506132ab565b005b34801561133757600080fd5b506113646004803603602081101561134e57600080fd5b810190808035906020019092919050505061349d565b005b34801561137257600080fd5b5061137b613556565b005b34801561138957600080fd5b50611392613622565b60405180821515815260200191505060405180910390f35b3480156113b657600080fd5b50611470600480360360208110156113cd57600080fd5b81019080803590602001906401000000008111156113ea57600080fd5b8201836020820111156113fc57600080fd5b8035906020019184600183028401116401000000008311171561141e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613635565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115725780601f1061154757610100808354040283529160200191611572565b820191906000526020600020905b81548152906001019060200180831161155557829003601f168201915b5050505050905090565b600061158782613781565b6115dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615150602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061162282611f64565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151a56021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166116c861379e565b73ffffffffffffffffffffffffffffffffffffffff1614806116f757506116f6816116f161379e565b6130dd565b5b61174c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806150826038913960400191505060405180910390fd5b61175683836137a6565b505050565b600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117f15780601f106117c6576101008083540402835291602001916117f1565b820191906000526020600020905b8154815290600101906020018083116117d457829003601f168201915b505050505081565b61180161379e565b73ffffffffffffffffffffffffffffffffffffffff1661181f61253b565b73ffffffffffffffffffffffffffffffffffffffff16146118a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b60006118be600361385f565b905090565b6118d46118ce61379e565b82613874565b611929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806151e86031913960400191505060405180910390fd5b611934838383613968565b505050565b61194161379e565b73ffffffffffffffffffffffffffffffffffffffff1661195f61253b565b73ffffffffffffffffffffffffffffffffffffffff16146119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b6032811015611a0a576119fd33613bab565b80806001019150506119eb565b50565b6000611a2460125483613bd190919063ffffffff16565b9050919050565b601160019054906101000a900460ff1681565b6000611a9182600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613c5a90919063ffffffff16565b905092915050565b611aa161379e565b73ffffffffffffffffffffffffffffffffffffffff16611abf61253b565b73ffffffffffffffffffffffffffffffffffffffff1614611b48576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615611bcb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b80600c9080519060200190611be1929190614eac565b5050565b61271081565b611bf361379e565b73ffffffffffffffffffffffffffffffffffffffff16611c1161253b565b73ffffffffffffffffffffffffffffffffffffffff1614611c9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611ca461253b565b73ffffffffffffffffffffffffffffffffffffffff164760405180600001905060006040518083038185875af1925050503d8060008114611d01576040519150601f19603f3d011682016040523d82523d6000602084013e611d06565b606091505b5050905080611d1457600080fd5b50565b611d3283838360405180602001604052806000815250612c2d565b505050565b600080611d4e836003613c7490919063ffffffff16565b50905080915050919050565b611d6261379e565b73ffffffffffffffffffffffffffffffffffffffff16611d8061253b565b73ffffffffffffffffffffffffffffffffffffffff1614611e09576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615611e8c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b611e9581613ca0565b50565b611ea061379e565b73ffffffffffffffffffffffffffffffffffffffff16611ebe61253b565b73ffffffffffffffffffffffffffffffffffffffff1614611f47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6000611f94826040518060600160405280602981526020016150e4602991396003613cba9092919063ffffffff16565b9050919050565b60108054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120315780601f1061200657610100808354040283529160200191612031565b820191906000526020600020905b81548152906001019060200180831161201457829003601f168201915b505050505081565b60125481565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120d75780601f106120ac576101008083540402835291602001916120d7565b820191906000526020600020905b8154815290600101906020018083116120ba57829003601f168201915b5050505050905090565b6120e961379e565b73ffffffffffffffffffffffffffffffffffffffff1661210761253b565b73ffffffffffffffffffffffffffffffffffffffff1614612190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806150ba602a913960400191505060405180910390fd5b61227b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613cd9565b9050919050565b61228a61379e565b73ffffffffffffffffffffffffffffffffffffffff166122a861253b565b73ffffffffffffffffffffffffffffffffffffffff1614612331576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff16156123b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b80600e90805190602001906123ca929190614eac565b5050565b6123d661379e565b73ffffffffffffffffffffffffffffffffffffffff166123f461253b565b73ffffffffffffffffffffffffffffffffffffffff161461247d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125fc5780601f106125d1576101008083540402835291602001916125fc565b820191906000526020600020905b8154815290600101906020018083116125df57829003601f168201915b5050505050905090565b600e8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561269c5780601f106126715761010080835404028352916020019161269c565b820191906000526020600020905b81548152906001019060200180831161267f57829003601f168201915b505050505081565b600d60009054906101000a900460ff16612726576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f44726f70206e6f74206f70656e2079657400000000000000000000000000000081525060200191505060405180910390fd5b6000811161279c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5175616e74697479206d757374206265206174206c656173742031000000000081525060200191505060405180910390fd5b60648111156127aa57606490505b6127106127c76127b86118b2565b83613cee90919063ffffffff16565b11156127ec576127e96127d86118b2565b612710613d7690919063ffffffff16565b90505b60006127f7826130b0565b90508034101561286f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4e6f7420656e6f756768204554482073656e740000000000000000000000000081525060200191505060405180910390fd5b60005b828110156128905761288333613bab565b8080600101915050612872565b5060006128a68234613d7690919063ffffffff16565b905060008111156129265760003373ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114612911576040519150601f19603f3d011682016040523d82523d6000602084013e612916565b606091505b505090508061292457600080fd5b505b505050565b61293361379e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600660006129e161379e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612a8e61379e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b612ae961379e565b73ffffffffffffffffffffffffffffffffffffffff16612b0761253b565b73ffffffffffffffffffffffffffffffffffffffff1614612b90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615612c13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b8060109080519060200190612c29929190614eac565b5050565b612c3e612c3861379e565b83613874565b612c93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806151e86031913960400191505060405180910390fd5b612c9f84848484613df9565b50505050565b60135481565b6060600082118015612cc45750612cc06118b2565b8211155b612d36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0081525060200191505060405180910390fd5b6000600e8054600181600116156101000203166002900490501115612eaf57600c600e612d6284613e6b565b6040516020018084805460018160011615610100020316600290048015612dc05780601f10612d9e576101008083540402835291820191612dc0565b820191906000526020600020905b815481529060010190602001808311612dac575b505083805460018160011615610100020316600290048015612e195780601f10612df7576101008083540402835291820191612e19565b820191906000526020600020905b815481529060010190602001808311612e05575b5050807f2f0000000000000000000000000000000000000000000000000000000000000081525060010182805190602001908083835b60208310612e725780518252602082019150602081019050602083039250612e4f565b6001836020036101000a03801982511681845116808217855250505050505090500193505050506040516020818303038152906040529050612f7f565b612eb761203f565b612ec083613e6b565b6040516020018083805190602001908083835b60208310612ef65780518252602082019150602081019050602083039250612ed3565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612f475780518252602082019150602081019050602083039250612f24565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b601160019054906101000a900460ff16613019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4272656564696e67206973206e6f7420656e61626c6564207965742e0000000081525060200191505060405180910390fd5b601354341015613091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4e6f7420656e6f7567682045544820746f2062726565642e000000000000000081525060200191505060405180910390fd5b61309a82613fb2565b6130a381613fb2565b6130ac33613bab565b5050565b60006127108211156130c157600080fd5b6130d6601254836140ec90919063ffffffff16565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61317961379e565b73ffffffffffffffffffffffffffffffffffffffff1661319761253b565b73ffffffffffffffffffffffffffffffffffffffff1614613220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600d60009054906101000a900460ff1615613286576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151c66022913960400191505060405180910390fd5b60005b818110156132a75761329a33613bab565b8080600101915050613289565b5050565b6132b361379e565b73ffffffffffffffffffffffffffffffffffffffff166132d161253b565b73ffffffffffffffffffffffffffffffffffffffff161461335a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156133e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614fe66026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6134a561379e565b73ffffffffffffffffffffffffffffffffffffffff166134c361253b565b73ffffffffffffffffffffffffffffffffffffffff161461354c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b61355e61379e565b73ffffffffffffffffffffffffffffffffffffffff1661357c61253b565b73ffffffffffffffffffffffffffffffffffffffff1614613605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff1681565b61363d61379e565b73ffffffffffffffffffffffffffffffffffffffff1661365b61253b565b73ffffffffffffffffffffffffffffffffffffffff16146136e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615613767576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b80600f908051906020019061377d929190614eac565b5050565b600061379782600361417290919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661381983611f64565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061386d8260000161418c565b9050919050565b600061387f82613781565b6138d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615056602c913960400191505060405180910390fd5b60006138df83611f64565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061394e57508373ffffffffffffffffffffffffffffffffffffffff166139368461157c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061395f575061395e81856130dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661398882611f64565b73ffffffffffffffffffffffffffffffffffffffff16146139f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061517c6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061500c6024913960400191505060405180910390fd5b613a8583838361419d565b613a906000826137a6565b613ae181600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206141a290919063ffffffff16565b50613b3381600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206141bc90919063ffffffff16565b50613b4a818360036141d69092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b613bb5600b61420b565b6000613bc1600b614221565b9050613bcd828261422f565b5050565b6000808211613c48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381613c5157fe5b04905092915050565b6000613c698360000183614423565b60001c905092915050565b600080600080613c8786600001866144a6565b915091508160001c8160001c9350935050509250929050565b80600a9080519060200190613cb6929190614eac565b5050565b6000613ccd846000018460001b8461453f565b60001c90509392505050565b6000613ce782600001614635565b9050919050565b600080828401905083811015613d6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600082821115613dee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b613e04848484613968565b613e1084848484614646565b613e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614fb46032913960400191505060405180910390fd5b50505050565b60606000821415613eb3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613fad565b600082905060005b60008214613edd578080600101915050600a8281613ed557fe5b049150613ebb565b60608167ffffffffffffffff81118015613ef657600080fd5b506040519080825280601f01601f191660200182016040528015613f295781602001600182028036833780820191505090505b50905060006001830390508593505b60008414613fa557600a8481613f4a57fe5b0660300160f81b82828060019003935081518110613f6457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481613f9d57fe5b049350613f38565b819450505050505b919050565b6000613fbd82611f64565b9050613fcb8160008461419d565b613fd66000836137a6565b60006009600084815260200190815260200160002080546001816001161561010002031660029004905014614025576009600083815260200190815260200160002060006140249190614f2c565b5b61407682600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206141a290919063ffffffff16565b5061408b82600361485f90919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000808314156140ff576000905061416c565b600082840290508284828161411057fe5b0414614167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061512f6021913960400191505060405180910390fd5b809150505b92915050565b6000614184836000018360001b614879565b905092915050565b600081600001805490509050919050565b505050565b60006141b4836000018360001b61489c565b905092915050565b60006141ce836000018360001b614984565b905092915050565b6000614202846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6149f4565b90509392505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156142d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6142db81613781565b1561434e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b61435a6000838361419d565b6143ab81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206141bc90919063ffffffff16565b506143c2818360036141d69092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600081836000018054905011614484576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f926022913960400191505060405180910390fd5b82600001828154811061449357fe5b9060005260206000200154905092915050565b60008082846000018054905011614508576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061510d6022913960400191505060405180910390fd5b600084600001848154811061451957fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156145cb5780820151818401526020810190506145b0565b50505050905090810190601f1680156145f85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061461957fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006146678473ffffffffffffffffffffffffffffffffffffffff16614ad0565b6146745760019050614857565b60606147de63150b7a0260e01b61468961379e565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561470d5780820151818401526020810190506146f2565b50505050905090810190601f16801561473a5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614fb4603291398773ffffffffffffffffffffffffffffffffffffffff16614ae39092919063ffffffff16565b905060008180602001905160208110156147f757600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b6000614871836000018360001b614afb565b905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461497857600060018203905060006001866000018054905003905060008660000182815481106148e757fe5b906000526020600020015490508087600001848154811061490457fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061493c57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061497e565b60009150505b92915050565b60006149908383614c14565b6149e95782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506149ee565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415614a9b57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614ac9565b82856000016001830381548110614aae57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b6060614af28484600085614c37565b90509392505050565b60008083600101600084815260200190815260200160002054905060008114614c085760006001820390506000600186600001805490500390506000866000018281548110614b4657fe5b9060005260206000209060020201905080876000018481548110614b6657fe5b9060005260206000209060020201600082015481600001556001820154816001015590505060018301876001016000836000015481526020019081526020016000208190555086600001805480614bb957fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050614c0e565b60009150505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015614c92576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150306026913960400191505060405180910390fd5b614c9b85614ad0565b614d0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614d5d5780518252602082019150602081019050602083039250614d3a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614dbf576040519150601f19603f3d011682016040523d82523d6000602084013e614dc4565b606091505b5091509150614dd4828286614de0565b92505050949350505050565b60608315614df057829050614ea5565b600083511115614e035782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614e6a578082015181840152602081019050614e4f565b50505050905090810190601f168015614e975780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614eed57805160ff1916838001178555614f1b565b82800160010185558215614f1b579182015b82811115614f1a578251825591602001919060010190614eff565b5b509050614f289190614f74565b5090565b50805460018160011615610100020316600290046000825580601f10614f525750614f71565b601f016020900490600052602060002090810190614f709190614f74565b5b50565b5b80821115614f8d576000816000905550600101614f75565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724f776e65722063616e6e6f74206d696e742061667465722073616c65206f70656e734552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220737bc45c6770d2da4eb0a1fb13d1327d2dd4edddecbe25010e90252748b86f5764736f6c6343000703003368747470733a2f2f75732d63656e7472616c312d63616e696e652d636f756e7472792d636c75622d35383338652e636c6f756466756e6374696f6e732e6e65742f6170702f76312f
Deployed Bytecode
0x60806040526004361061027d5760003560e01c80636fdca5e01161014f578063bde6a5a9116100c1578063f19e75d41161007a578063f19e75d41461129f578063f2fde38b146112da578063f4a0a5281461132b578063f83d08ba14611366578063fcfff16f1461137d578063ffe630b5146113aa5761027d565b8063bde6a5a914611085578063c87b56dd146110b0578063cf30901214611164578063d9ecad7b14611191578063e7572230146111c9578063e985e9c5146112185761027d565b806395d89b411161011357806395d89b4114610d00578063a00501a414610d90578063a0712d6814610e20578063a22cb46514610e4e578063a9373d9414610eab578063b88d4fde14610f735761027d565b80636fdca5e014610b3e57806370a0823114610b7b57806371356d4714610be0578063715018a614610ca85780638da5cb5b14610cbf5761027d565b80632f745c59116101f357806355f804b3116101ac57806355f804b3146108895780635e9de302146109515780636352211e1461098e57806365477dc0146109f35780636817c76c14610a835780636c0360eb14610aae5761027d565b80632f745c591461064657806331690734146106b557806332cb6b0c1461077d5780633ccfd60b146107a857806342842e0e146107bf5780634f6ccce71461083a5761027d565b806310e4b9b11161024557806310e4b9b1146104d257806318160ddd1461050d57806323b872dd1461053857806327ac36c4146105b357806329ed3f74146105ca5780632bba9fe6146106195761027d565b806301ffc9a71461028257806306fdde03146102f2578063081812fc14610382578063095ea7b3146103e75780630f7309e814610442575b600080fd5b34801561028e57600080fd5b506102da600480360360208110156102a557600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611472565b60405180821515815260200191505060405180910390f35b3480156102fe57600080fd5b506103076114da565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561034757808201518184015260208101905061032c565b50505050905090810190601f1680156103745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038e57600080fd5b506103bb600480360360208110156103a557600080fd5b810190808035906020019092919050505061157c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103f357600080fd5b506104406004803603604081101561040a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611617565b005b34801561044e57600080fd5b5061045761175b565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561049757808201518184015260208101905061047c565b50505050905090810190601f1680156104c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104de57600080fd5b5061050b600480360360208110156104f557600080fd5b81019080803590602001909291905050506117f9565b005b34801561051957600080fd5b506105226118b2565b6040518082815260200191505060405180910390f35b34801561054457600080fd5b506105b16004803603606081101561055b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118c3565b005b3480156105bf57600080fd5b506105c8611939565b005b3480156105d657600080fd5b50610603600480360360208110156105ed57600080fd5b8101908080359060200190929190505050611a0d565b6040518082815260200191505060405180910390f35b34801561062557600080fd5b5061062e611a2b565b60405180821515815260200191505060405180910390f35b34801561065257600080fd5b5061069f6004803603604081101561066957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a3e565b6040518082815260200191505060405180910390f35b3480156106c157600080fd5b5061077b600480360360208110156106d857600080fd5b81019080803590602001906401000000008111156106f557600080fd5b82018360208201111561070757600080fd5b8035906020019184600183028401116401000000008311171561072957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611a99565b005b34801561078957600080fd5b50610792611be5565b6040518082815260200191505060405180910390f35b3480156107b457600080fd5b506107bd611beb565b005b3480156107cb57600080fd5b50610838600480360360608110156107e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d17565b005b34801561084657600080fd5b506108736004803603602081101561085d57600080fd5b8101908080359060200190929190505050611d37565b6040518082815260200191505060405180910390f35b34801561089557600080fd5b5061094f600480360360208110156108ac57600080fd5b81019080803590602001906401000000008111156108c957600080fd5b8201836020820111156108db57600080fd5b803590602001918460018302840111640100000000831117156108fd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611d5a565b005b34801561095d57600080fd5b5061098c6004803603602081101561097457600080fd5b81019080803515159060200190929190505050611e98565b005b34801561099a57600080fd5b506109c7600480360360208110156109b157600080fd5b8101908080359060200190929190505050611f64565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109ff57600080fd5b50610a08611f9b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a48578082015181840152602081019050610a2d565b50505050905090810190601f168015610a755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a8f57600080fd5b50610a98612039565b6040518082815260200191505060405180910390f35b348015610aba57600080fd5b50610ac361203f565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b03578082015181840152602081019050610ae8565b50505050905090810190601f168015610b305780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b4a57600080fd5b50610b7960048036036020811015610b6157600080fd5b810190808035151590602001909291905050506120e1565b005b348015610b8757600080fd5b50610bca60048036036020811015610b9e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121ad565b6040518082815260200191505060405180910390f35b348015610bec57600080fd5b50610ca660048036036020811015610c0357600080fd5b8101908080359060200190640100000000811115610c2057600080fd5b820183602082011115610c3257600080fd5b80359060200191846001830284011164010000000083111715610c5457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612282565b005b348015610cb457600080fd5b50610cbd6123ce565b005b348015610ccb57600080fd5b50610cd461253b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d0c57600080fd5b50610d15612564565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d55578082015181840152602081019050610d3a565b50505050905090810190601f168015610d825780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610d9c57600080fd5b50610da5612606565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610de5578082015181840152602081019050610dca565b50505050905090810190601f168015610e125780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610e4c60048036036020811015610e3657600080fd5b81019080803590602001909291905050506126a4565b005b348015610e5a57600080fd5b50610ea960048036036040811015610e7157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061292b565b005b348015610eb757600080fd5b50610f7160048036036020811015610ece57600080fd5b8101908080359060200190640100000000811115610eeb57600080fd5b820183602082011115610efd57600080fd5b80359060200191846001830284011164010000000083111715610f1f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612ae1565b005b348015610f7f57600080fd5b5061108360048036036080811015610f9657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ffd57600080fd5b82018360208201111561100f57600080fd5b8035906020019184600183028401116401000000008311171561103157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612c2d565b005b34801561109157600080fd5b5061109a612ca5565b6040518082815260200191505060405180910390f35b3480156110bc57600080fd5b506110e9600480360360208110156110d357600080fd5b8101908080359060200190929190505050612cab565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561112957808201518184015260208101905061110e565b50505050905090810190601f1680156111565780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561117057600080fd5b50611179612f84565b60405180821515815260200191505060405180910390f35b6111c7600480360360408110156111a757600080fd5b810190808035906020019092919080359060200190929190505050612f97565b005b3480156111d557600080fd5b50611202600480360360208110156111ec57600080fd5b81019080803590602001909291905050506130b0565b6040518082815260200191505060405180910390f35b34801561122457600080fd5b506112876004803603604081101561123b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130dd565b60405180821515815260200191505060405180910390f35b3480156112ab57600080fd5b506112d8600480360360208110156112c257600080fd5b8101908080359060200190929190505050613171565b005b3480156112e657600080fd5b50611329600480360360208110156112fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506132ab565b005b34801561133757600080fd5b506113646004803603602081101561134e57600080fd5b810190808035906020019092919050505061349d565b005b34801561137257600080fd5b5061137b613556565b005b34801561138957600080fd5b50611392613622565b60405180821515815260200191505060405180910390f35b3480156113b657600080fd5b50611470600480360360208110156113cd57600080fd5b81019080803590602001906401000000008111156113ea57600080fd5b8201836020820111156113fc57600080fd5b8035906020019184600183028401116401000000008311171561141e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613635565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115725780601f1061154757610100808354040283529160200191611572565b820191906000526020600020905b81548152906001019060200180831161155557829003601f168201915b5050505050905090565b600061158782613781565b6115dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615150602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061162282611f64565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151a56021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166116c861379e565b73ffffffffffffffffffffffffffffffffffffffff1614806116f757506116f6816116f161379e565b6130dd565b5b61174c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806150826038913960400191505060405180910390fd5b61175683836137a6565b505050565b600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117f15780601f106117c6576101008083540402835291602001916117f1565b820191906000526020600020905b8154815290600101906020018083116117d457829003601f168201915b505050505081565b61180161379e565b73ffffffffffffffffffffffffffffffffffffffff1661181f61253b565b73ffffffffffffffffffffffffffffffffffffffff16146118a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b60006118be600361385f565b905090565b6118d46118ce61379e565b82613874565b611929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806151e86031913960400191505060405180910390fd5b611934838383613968565b505050565b61194161379e565b73ffffffffffffffffffffffffffffffffffffffff1661195f61253b565b73ffffffffffffffffffffffffffffffffffffffff16146119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b6032811015611a0a576119fd33613bab565b80806001019150506119eb565b50565b6000611a2460125483613bd190919063ffffffff16565b9050919050565b601160019054906101000a900460ff1681565b6000611a9182600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613c5a90919063ffffffff16565b905092915050565b611aa161379e565b73ffffffffffffffffffffffffffffffffffffffff16611abf61253b565b73ffffffffffffffffffffffffffffffffffffffff1614611b48576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615611bcb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b80600c9080519060200190611be1929190614eac565b5050565b61271081565b611bf361379e565b73ffffffffffffffffffffffffffffffffffffffff16611c1161253b565b73ffffffffffffffffffffffffffffffffffffffff1614611c9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611ca461253b565b73ffffffffffffffffffffffffffffffffffffffff164760405180600001905060006040518083038185875af1925050503d8060008114611d01576040519150601f19603f3d011682016040523d82523d6000602084013e611d06565b606091505b5050905080611d1457600080fd5b50565b611d3283838360405180602001604052806000815250612c2d565b505050565b600080611d4e836003613c7490919063ffffffff16565b50905080915050919050565b611d6261379e565b73ffffffffffffffffffffffffffffffffffffffff16611d8061253b565b73ffffffffffffffffffffffffffffffffffffffff1614611e09576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615611e8c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b611e9581613ca0565b50565b611ea061379e565b73ffffffffffffffffffffffffffffffffffffffff16611ebe61253b565b73ffffffffffffffffffffffffffffffffffffffff1614611f47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6000611f94826040518060600160405280602981526020016150e4602991396003613cba9092919063ffffffff16565b9050919050565b60108054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120315780601f1061200657610100808354040283529160200191612031565b820191906000526020600020905b81548152906001019060200180831161201457829003601f168201915b505050505081565b60125481565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120d75780601f106120ac576101008083540402835291602001916120d7565b820191906000526020600020905b8154815290600101906020018083116120ba57829003601f168201915b5050505050905090565b6120e961379e565b73ffffffffffffffffffffffffffffffffffffffff1661210761253b565b73ffffffffffffffffffffffffffffffffffffffff1614612190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806150ba602a913960400191505060405180910390fd5b61227b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613cd9565b9050919050565b61228a61379e565b73ffffffffffffffffffffffffffffffffffffffff166122a861253b565b73ffffffffffffffffffffffffffffffffffffffff1614612331576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff16156123b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b80600e90805190602001906123ca929190614eac565b5050565b6123d661379e565b73ffffffffffffffffffffffffffffffffffffffff166123f461253b565b73ffffffffffffffffffffffffffffffffffffffff161461247d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125fc5780601f106125d1576101008083540402835291602001916125fc565b820191906000526020600020905b8154815290600101906020018083116125df57829003601f168201915b5050505050905090565b600e8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561269c5780601f106126715761010080835404028352916020019161269c565b820191906000526020600020905b81548152906001019060200180831161267f57829003601f168201915b505050505081565b600d60009054906101000a900460ff16612726576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f44726f70206e6f74206f70656e2079657400000000000000000000000000000081525060200191505060405180910390fd5b6000811161279c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5175616e74697479206d757374206265206174206c656173742031000000000081525060200191505060405180910390fd5b60648111156127aa57606490505b6127106127c76127b86118b2565b83613cee90919063ffffffff16565b11156127ec576127e96127d86118b2565b612710613d7690919063ffffffff16565b90505b60006127f7826130b0565b90508034101561286f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4e6f7420656e6f756768204554482073656e740000000000000000000000000081525060200191505060405180910390fd5b60005b828110156128905761288333613bab565b8080600101915050612872565b5060006128a68234613d7690919063ffffffff16565b905060008111156129265760003373ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114612911576040519150601f19603f3d011682016040523d82523d6000602084013e612916565b606091505b505090508061292457600080fd5b505b505050565b61293361379e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600660006129e161379e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612a8e61379e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b612ae961379e565b73ffffffffffffffffffffffffffffffffffffffff16612b0761253b565b73ffffffffffffffffffffffffffffffffffffffff1614612b90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615612c13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b8060109080519060200190612c29929190614eac565b5050565b612c3e612c3861379e565b83613874565b612c93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806151e86031913960400191505060405180910390fd5b612c9f84848484613df9565b50505050565b60135481565b6060600082118015612cc45750612cc06118b2565b8211155b612d36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0081525060200191505060405180910390fd5b6000600e8054600181600116156101000203166002900490501115612eaf57600c600e612d6284613e6b565b6040516020018084805460018160011615610100020316600290048015612dc05780601f10612d9e576101008083540402835291820191612dc0565b820191906000526020600020905b815481529060010190602001808311612dac575b505083805460018160011615610100020316600290048015612e195780601f10612df7576101008083540402835291820191612e19565b820191906000526020600020905b815481529060010190602001808311612e05575b5050807f2f0000000000000000000000000000000000000000000000000000000000000081525060010182805190602001908083835b60208310612e725780518252602082019150602081019050602083039250612e4f565b6001836020036101000a03801982511681845116808217855250505050505090500193505050506040516020818303038152906040529050612f7f565b612eb761203f565b612ec083613e6b565b6040516020018083805190602001908083835b60208310612ef65780518252602082019150602081019050602083039250612ed3565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612f475780518252602082019150602081019050602083039250612f24565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b601160019054906101000a900460ff16613019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4272656564696e67206973206e6f7420656e61626c6564207965742e0000000081525060200191505060405180910390fd5b601354341015613091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4e6f7420656e6f7567682045544820746f2062726565642e000000000000000081525060200191505060405180910390fd5b61309a82613fb2565b6130a381613fb2565b6130ac33613bab565b5050565b60006127108211156130c157600080fd5b6130d6601254836140ec90919063ffffffff16565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61317961379e565b73ffffffffffffffffffffffffffffffffffffffff1661319761253b565b73ffffffffffffffffffffffffffffffffffffffff1614613220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600d60009054906101000a900460ff1615613286576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151c66022913960400191505060405180910390fd5b60005b818110156132a75761329a33613bab565b8080600101915050613289565b5050565b6132b361379e565b73ffffffffffffffffffffffffffffffffffffffff166132d161253b565b73ffffffffffffffffffffffffffffffffffffffff161461335a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156133e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614fe66026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6134a561379e565b73ffffffffffffffffffffffffffffffffffffffff166134c361253b565b73ffffffffffffffffffffffffffffffffffffffff161461354c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b61355e61379e565b73ffffffffffffffffffffffffffffffffffffffff1661357c61253b565b73ffffffffffffffffffffffffffffffffffffffff1614613605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff1681565b61363d61379e565b73ffffffffffffffffffffffffffffffffffffffff1661365b61253b565b73ffffffffffffffffffffffffffffffffffffffff16146136e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615613767576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b80600f908051906020019061377d929190614eac565b5050565b600061379782600361417290919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661381983611f64565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061386d8260000161418c565b9050919050565b600061387f82613781565b6138d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615056602c913960400191505060405180910390fd5b60006138df83611f64565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061394e57508373ffffffffffffffffffffffffffffffffffffffff166139368461157c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061395f575061395e81856130dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661398882611f64565b73ffffffffffffffffffffffffffffffffffffffff16146139f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061517c6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061500c6024913960400191505060405180910390fd5b613a8583838361419d565b613a906000826137a6565b613ae181600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206141a290919063ffffffff16565b50613b3381600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206141bc90919063ffffffff16565b50613b4a818360036141d69092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b613bb5600b61420b565b6000613bc1600b614221565b9050613bcd828261422f565b5050565b6000808211613c48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381613c5157fe5b04905092915050565b6000613c698360000183614423565b60001c905092915050565b600080600080613c8786600001866144a6565b915091508160001c8160001c9350935050509250929050565b80600a9080519060200190613cb6929190614eac565b5050565b6000613ccd846000018460001b8461453f565b60001c90509392505050565b6000613ce782600001614635565b9050919050565b600080828401905083811015613d6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600082821115613dee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b613e04848484613968565b613e1084848484614646565b613e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614fb46032913960400191505060405180910390fd5b50505050565b60606000821415613eb3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613fad565b600082905060005b60008214613edd578080600101915050600a8281613ed557fe5b049150613ebb565b60608167ffffffffffffffff81118015613ef657600080fd5b506040519080825280601f01601f191660200182016040528015613f295781602001600182028036833780820191505090505b50905060006001830390508593505b60008414613fa557600a8481613f4a57fe5b0660300160f81b82828060019003935081518110613f6457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481613f9d57fe5b049350613f38565b819450505050505b919050565b6000613fbd82611f64565b9050613fcb8160008461419d565b613fd66000836137a6565b60006009600084815260200190815260200160002080546001816001161561010002031660029004905014614025576009600083815260200190815260200160002060006140249190614f2c565b5b61407682600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206141a290919063ffffffff16565b5061408b82600361485f90919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000808314156140ff576000905061416c565b600082840290508284828161411057fe5b0414614167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061512f6021913960400191505060405180910390fd5b809150505b92915050565b6000614184836000018360001b614879565b905092915050565b600081600001805490509050919050565b505050565b60006141b4836000018360001b61489c565b905092915050565b60006141ce836000018360001b614984565b905092915050565b6000614202846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6149f4565b90509392505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156142d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6142db81613781565b1561434e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b61435a6000838361419d565b6143ab81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206141bc90919063ffffffff16565b506143c2818360036141d69092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600081836000018054905011614484576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f926022913960400191505060405180910390fd5b82600001828154811061449357fe5b9060005260206000200154905092915050565b60008082846000018054905011614508576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061510d6022913960400191505060405180910390fd5b600084600001848154811061451957fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156145cb5780820151818401526020810190506145b0565b50505050905090810190601f1680156145f85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061461957fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006146678473ffffffffffffffffffffffffffffffffffffffff16614ad0565b6146745760019050614857565b60606147de63150b7a0260e01b61468961379e565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561470d5780820151818401526020810190506146f2565b50505050905090810190601f16801561473a5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614fb4603291398773ffffffffffffffffffffffffffffffffffffffff16614ae39092919063ffffffff16565b905060008180602001905160208110156147f757600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b6000614871836000018360001b614afb565b905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461497857600060018203905060006001866000018054905003905060008660000182815481106148e757fe5b906000526020600020015490508087600001848154811061490457fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061493c57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061497e565b60009150505b92915050565b60006149908383614c14565b6149e95782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506149ee565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415614a9b57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614ac9565b82856000016001830381548110614aae57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b6060614af28484600085614c37565b90509392505050565b60008083600101600084815260200190815260200160002054905060008114614c085760006001820390506000600186600001805490500390506000866000018281548110614b4657fe5b9060005260206000209060020201905080876000018481548110614b6657fe5b9060005260206000209060020201600082015481600001556001820154816001015590505060018301876001016000836000015481526020019081526020016000208190555086600001805480614bb957fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050614c0e565b60009150505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015614c92576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150306026913960400191505060405180910390fd5b614c9b85614ad0565b614d0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614d5d5780518252602082019150602081019050602083039250614d3a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614dbf576040519150601f19603f3d011682016040523d82523d6000602084013e614dc4565b606091505b5091509150614dd4828286614de0565b92505050949350505050565b60608315614df057829050614ea5565b600083511115614e035782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614e6a578082015181840152602081019050614e4f565b50505050905090810190601f168015614e975780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614eed57805160ff1916838001178555614f1b565b82800160010185558215614f1b579182015b82811115614f1a578251825591602001919060010190614eff565b5b509050614f289190614f74565b5090565b50805460018160011615610100020316600290046000825580601f10614f525750614f71565b601f016020900490600052602060002090810190614f709190614f74565b5b50565b5b80821115614f8d576000816000905550600101614f75565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724f776e65722063616e6e6f74206d696e742061667465722073616c65206f70656e734552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220737bc45c6770d2da4eb0a1fb13d1327d2dd4edddecbe25010e90252748b86f5764736f6c63430007030033
Deployed Bytecode Sourcemap
71389:5041:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51671:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54457:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53987:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71852:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76137:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53465:211;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55347:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75782:145;;;;;;;;;;;;;:::i;:::-;;73630:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;71966:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53227:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74959:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71712:42;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;75602:172;;;;;;;;;;;;;:::i;:::-;;55723:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53753:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74834:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75935:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51427:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;71890:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72010:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53046:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74737:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51144:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;75077:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69205:148;;;;;;;;;;;;;:::i;:::-;;68554:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51840:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71818:25;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72421:924;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54750:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75191:166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55945:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72056:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;73924:547;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71931:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;73353:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;73759:157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55116:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;74501:228;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69508:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;76037:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75527:67;;;;;;;;;;;;;:::i;:::-;;71785:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;75365:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1960:150;2045:4;2069:20;:33;2090:11;2069:33;;;;;;;;;;;;;;;;;;;;;;;;;;;2062:40;;1960:150;;;:::o;51671:100::-;51725:13;51758:5;51751:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51671:100;:::o;54457:221::-;54533:7;54561:16;54569:7;54561;:16::i;:::-;54553:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54646:15;:24;54662:7;54646:24;;;;;;;;;;;;;;;;;;;;;54639:31;;54457:221;;;:::o;53987:404::-;54068:13;54084:23;54099:7;54084:14;:23::i;:::-;54068:39;;54132:5;54126:11;;:2;:11;;;;54118:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54212:5;54196:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54221:44;54245:5;54252:12;:10;:12::i;:::-;54221:23;:44::i;:::-;54196:69;54188:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54362:21;54371:2;54375:7;54362:8;:21::i;:::-;53987:404;;;:::o;71852:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76137:88::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76212:5:::1;76200:9;:17;;;;76137:88:::0;:::o;53465:211::-;53526:7;53647:21;:12;:19;:21::i;:::-;53640:28;;53465:211;:::o;55347:305::-;55508:41;55527:12;:10;:12::i;:::-;55541:7;55508:18;:41::i;:::-;55500:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55616:28;55626:4;55632:2;55636:7;55616:9;:28::i;:::-;55347:305;;;:::o;75782:145::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75840:9:::1;75835:85;75859:2;75855:1;:6;75835:85;;;75883:25;75897:10;75883:13;:25::i;:::-;75863:3;;;;;;;75835:85;;;;75782:145::o:0;73630:121::-;73696:7;73723:20;73733:9;;73723:5;:9;;:20;;;;:::i;:::-;73716:27;;73630:121;;;:::o;71966:35::-;;;;;;;;;;;;;:::o;53227:162::-;53324:7;53351:30;53375:5;53351:13;:20;53365:5;53351:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53344:37;;53227:162;;;;:::o;74959:110::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72143:6:::1;;;;;;;;;;;72142:7;72134:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;75053:8:::2;75043:7;:18;;;;;;;;;;;;:::i;:::-;;74959:110:::0;:::o;71712:42::-;71749:5;71712:42;:::o;75602:172::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75653:12:::1;75692:7;:5;:7::i;:::-;75684:21;;75713;75684:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75652:87;;;75758:7;75750:16;;;::::0;::::1;;68845:1;75602:172::o:0;55723:151::-;55827:39;55844:4;55850:2;55854:7;55827:39;;;;;;;;;;;;:16;:39::i;:::-;55723:151;;;:::o;53753:172::-;53828:7;53849:15;53870:22;53886:5;53870:12;:15;;:22;;;;:::i;:::-;53848:44;;;53910:7;53903:14;;;53753:172;;;:::o;74834:117::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72143:6:::1;;;;;;;;;;;72142:7;72134:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;74920:23:::2;74932:10;74920:11;:23::i;:::-;74834:117:::0;:::o;75935:90::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76012:5:::1;75994:15;;:23;;;;;;;;;;;;;;;;;;75935:90:::0;:::o;51427:177::-;51499:7;51526:70;51543:7;51526:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51519:77;;51427:177;;;:::o;71890:32::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72010:37::-;;;;:::o;53046:97::-;53094:13;53127:8;53120:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53046:97;:::o;74737:89::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74808:10:::1;74801:4;;:17;;;;;;;;;;;;;;;;;;74737:89:::0;:::o;51144:221::-;51216:7;51261:1;51244:19;;:5;:19;;;;51236:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51328:29;:13;:20;51342:5;51328:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51321:36;;51144:221;;;:::o;75077:106::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72143:6:::1;;;;;;;;;;;72142:7;72134:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;75168:7:::2;75159:6;:16;;;;;;;;;;;;:::i;:::-;;75077:106:::0;:::o;69205:148::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69312:1:::1;69275:40;;69296:6;::::0;::::1;;;;;;;;69275:40;;;;;;;;;;;;69343:1;69326:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;69205:148::o:0;68554:87::-;68600:7;68627:6;;;;;;;;;;;68620:13;;68554:87;:::o;51840:104::-;51896:13;51929:7;51922:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51840:104;:::o;71818:25::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72421:924::-;72487:4;;;;;;;;;;;72479:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72543:1;72532:8;:12;72524:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72627:3;72616:8;:14;72612:61;;;72658:3;72647:14;;72612:61;71749:5;72735:27;72748:13;:11;:13::i;:::-;72735:8;:12;;:27;;;;:::i;:::-;:40;72731:113;;;72803:29;72818:13;:11;:13::i;:::-;71749:5;72803:14;;:29;;;;:::i;:::-;72792:40;;72731:113;72856:13;72872:18;72881:8;72872;:18::i;:::-;72856:34;;72954:5;72941:9;:18;;72933:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73001:9;72996:91;73020:8;73016:1;:12;72996:91;;;73050:25;73064:10;73050:13;:25::i;:::-;73030:3;;;;;;;72996:91;;;;73152:17;73172:20;73186:5;73172:9;:13;;:20;;;;:::i;:::-;73152:40;;73221:1;73209:9;:13;73205:133;;;73240:12;73258:10;:15;;73281:9;73258:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73239:56;;;73318:7;73310:16;;;;;;73205:133;;72421:924;;;:::o;54750:295::-;54865:12;:10;:12::i;:::-;54853:24;;:8;:24;;;;54845:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54965:8;54920:18;:32;54939:12;:10;:12::i;:::-;54920:32;;;;;;;;;;;;;;;:42;54953:8;54920:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;55018:8;54989:48;;55004:12;:10;:12::i;:::-;54989:48;;;55028:8;54989:48;;;;;;;;;;;;;;;;;;;;54750:295;;:::o;75191:166::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72143:6:::1;;;;;;;;;;;72142:7;72134:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;75335:14:::2;75319:13;:30;;;;;;;;;;;;:::i;:::-;;75191:166:::0;:::o;55945:285::-;56077:41;56096:12;:10;:12::i;:::-;56110:7;56077:18;:41::i;:::-;56069:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56183:39;56197:4;56203:2;56207:7;56216:5;56183:13;:39::i;:::-;55945:285;;;;:::o;72056:37::-;;;;:::o;73924:547::-;74042:13;74105:1;74095:7;:11;:39;;;;;74121:13;:11;:13::i;:::-;74110:7;:24;;74095:39;74073:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74231:1;74214:6;74208:20;;;;;;;;;;;;;;;;:24;74204:187;;;74319:7;74328:6;74341:18;:7;:16;:18::i;:::-;74302:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74249:130;;;;74204:187;74432:9;:7;:9::i;:::-;74443:18;:7;:16;:18::i;:::-;74415:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74401:62;;73924:547;;;;:::o;71931:26::-;;;;;;;;;;;;;:::o;73353:269::-;73426:15;;;;;;;;;;;73418:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73504:9;;73491;:22;;73483:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73551:10;73557:3;73551:5;:10::i;:::-;73570;73576:3;73570:5;:10::i;:::-;73589:25;73603:10;73589:13;:25::i;:::-;73353:269;;:::o;73759:157::-;73816:7;71749:5;73844:8;:22;;73836:31;;;;;;73885:23;73898:9;;73885:8;:12;;:23;;;;:::i;:::-;73878:30;;73759:157;;;:::o;55116:164::-;55213:4;55237:18;:25;55256:5;55237:25;;;;;;;;;;;;;;;:35;55263:8;55237:35;;;;;;;;;;;;;;;;;;;;;;;;;55230:42;;55116:164;;;;:::o;74501:228::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74575:4:::1;;;;;;;;;;;74574:5;74566:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74636:9;74631:91;74655:8;74651:1;:12;74631:91;;;74685:25;74699:10;74685:13;:25::i;:::-;74665:3;;;;;;;74631:91;;;;74501:228:::0;:::o;69508:244::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69617:1:::1;69597:22;;:8;:22;;;;69589:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69707:8;69678:38;;69699:6;::::0;::::1;;;;;;;;69678:38;;;;;;;;;;;;69736:8;69727:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;69508:244:::0;:::o;76037:88::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76112:5:::1;76100:9;:17;;;;76037:88:::0;:::o;75527:67::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75582:4:::1;75573:6;;:13;;;;;;;;;;;;;;;;;;75527:67::o:0;71785:24::-;;;;;;;;;;;;;:::o;75365:154::-;68785:12;:10;:12::i;:::-;68774:23;;:7;:5;:7::i;:::-;:23;;;68766:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72143:6:::1;;;;;;;;;;;72142:7;72134:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;75500:11:::2;75487:10;:24;;;;;;;;;;;;:::i;:::-;;75365:154:::0;:::o;57697:127::-;57762:4;57786:30;57808:7;57786:12;:21;;:30;;;;:::i;:::-;57779:37;;57697:127;;;:::o;3367:106::-;3420:15;3455:10;3448:17;;3367:106;:::o;63715:192::-;63817:2;63790:15;:24;63806:7;63790:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63873:7;63869:2;63835:46;;63844:23;63859:7;63844:14;:23::i;:::-;63835:46;;;;;;;;;;;;63715:192;;:::o;44400:123::-;44469:7;44496:19;44504:3;:10;;44496:7;:19::i;:::-;44489:26;;44400:123;;;:::o;57991:355::-;58084:4;58109:16;58117:7;58109;:16::i;:::-;58101:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58185:13;58201:23;58216:7;58201:14;:23::i;:::-;58185:39;;58254:5;58243:16;;:7;:16;;;:51;;;;58287:7;58263:31;;:20;58275:7;58263:11;:20::i;:::-;:31;;;58243:51;:94;;;;58298:39;58322:5;58329:7;58298:23;:39::i;:::-;58243:94;58235:103;;;57991:355;;;;:::o;61127:599::-;61252:4;61225:31;;:23;61240:7;61225:14;:23::i;:::-;:31;;;61217:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61353:1;61339:16;;:2;:16;;;;61331:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61409:39;61430:4;61436:2;61440:7;61409:20;:39::i;:::-;61513:29;61530:1;61534:7;61513:8;:29::i;:::-;61555:35;61582:7;61555:13;:19;61569:4;61555:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61601:30;61623:7;61601:13;:17;61615:2;61601:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61644:29;61661:7;61670:2;61644:12;:16;;:29;;;;;:::i;:::-;;61710:7;61706:2;61691:27;;61700:4;61691:27;;;;;;;;;;;;61127:599;;;:::o;76257:170::-;76314:21;:9;:19;:21::i;:::-;76346:17;76366:19;:9;:17;:19::i;:::-;76346:39;;76396:23;76402:5;76409:9;76396:5;:23::i;:::-;76257:170;;:::o;15478:153::-;15536:7;15568:1;15564;:5;15556:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15622:1;15618;:5;;;;;;15611:12;;15478:153;;;;:::o;36185:137::-;36256:7;36291:22;36295:3;:10;;36307:5;36291:3;:22::i;:::-;36283:31;;36276:38;;36185:137;;;;:::o;44862:236::-;44942:7;44951;44972:11;44985:13;45002:22;45006:3;:10;;45018:5;45002:3;:22::i;:::-;44971:53;;;;45051:3;45043:12;;45081:5;45073:14;;45035:55;;;;;;44862:236;;;;;:::o;62327:100::-;62411:8;62400;:19;;;;;;;;;;;;:::i;:::-;;62327:100;:::o;46148:213::-;46255:7;46306:44;46311:3;:10;;46331:3;46323:12;;46337;46306:4;:44::i;:::-;46298:53;;46275:78;;46148:213;;;;;:::o;35727:114::-;35787:7;35814:19;35822:3;:10;;35814:7;:19::i;:::-;35807:26;;35727:114;;;:::o;13901:179::-;13959:7;13979:9;13995:1;13991;:5;13979:17;;14020:1;14015;:6;;14007:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14071:1;14064:8;;;13901:179;;;;:::o;14363:158::-;14421:7;14454:1;14449;:6;;14441:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14512:1;14508;:5;14501:12;;14363:158;;;;:::o;57112:272::-;57226:28;57236:4;57242:2;57246:7;57226:9;:28::i;:::-;57273:48;57296:4;57302:2;57306:7;57315:5;57273:22;:48::i;:::-;57265:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57112:272;;;;:::o;46618:746::-;46674:13;46904:1;46895:5;:10;46891:53;;;46922:10;;;;;;;;;;;;;;;;;;;;;46891:53;46954:12;46969:5;46954:20;;46985:14;47010:78;47025:1;47017:4;:9;47010:78;;47043:8;;;;;;;47074:2;47066:10;;;;;;;;;47010:78;;;47098:19;47130:6;47120:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47098:39;;47148:13;47173:1;47164:6;:10;47148:26;;47192:5;47185:12;;47208:117;47223:1;47215:4;:9;47208:117;;47284:2;47277:4;:9;;;;;;47272:2;:14;47259:29;;47241:6;47248:7;;;;;;;47241:15;;;;;;;;;;;:47;;;;;;;;;;;47311:2;47303:10;;;;;;;;;47208:117;;;47349:6;47335:21;;;;;;46618:746;;;;:::o;60245:545::-;60305:13;60321:23;60336:7;60321:14;:23::i;:::-;60305:39;;60375:48;60396:5;60411:1;60415:7;60375:20;:48::i;:::-;60464:29;60481:1;60485:7;60464:8;:29::i;:::-;60583:1;60552:10;:19;60563:7;60552:19;;;;;;;;;;;60546:33;;;;;;;;;;;;;;;;:38;60542:97;;60608:10;:19;60619:7;60608:19;;;;;;;;;;;;60601:26;;;;:::i;:::-;60542:97;60651:36;60679:7;60651:13;:20;60665:5;60651:20;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;;60700:28;60720:7;60700:12;:19;;:28;;;;:::i;:::-;;60774:7;60770:1;60746:36;;60755:5;60746:36;;;;;;;;;;;;60245:545;;:::o;14780:220::-;14838:7;14867:1;14862;:6;14858:20;;;14877:1;14870:8;;;;14858:20;14889:9;14905:1;14901;:5;14889:17;;14934:1;14929;14925;:5;;;;;;:10;14917:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14991:1;14984:8;;;14780:220;;;;;:::o;44161:151::-;44245:4;44269:35;44279:3;:10;;44299:3;44291:12;;44269:9;:35::i;:::-;44262:42;;44161:151;;;;:::o;40979:110::-;41035:7;41062:3;:12;;:19;;;;41055:26;;40979:110;;;:::o;64520:93::-;;;;:::o;35272:137::-;35342:4;35366:35;35374:3;:10;;35394:5;35386:14;;35366:7;:35::i;:::-;35359:42;;35272:137;;;;:::o;34965:131::-;35032:4;35056:32;35061:3;:10;;35081:5;35073:14;;35056:4;:32::i;:::-;35049:39;;34965:131;;;;:::o;43584:185::-;43673:4;43697:64;43702:3;:10;;43722:3;43714:12;;43752:5;43736:23;;43728:32;;43697:4;:64::i;:::-;43690:71;;43584:185;;;;;:::o;71010:181::-;71182:1;71164:7;:14;;;:19;;;;;;;;;;;71010:181;:::o;70888:114::-;70953:7;70980;:14;;;70973:21;;70888:114;;;:::o;59612:404::-;59706:1;59692:16;;:2;:16;;;;59684:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59765:16;59773:7;59765;:16::i;:::-;59764:17;59756:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59827:45;59856:1;59860:2;59864:7;59827:20;:45::i;:::-;59885:30;59907:7;59885:13;:17;59899:2;59885:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59928:29;59945:7;59954:2;59928:12;:16;;:29;;;;;:::i;:::-;;60000:7;59996:2;59975:33;;59992:1;59975:33;;;;;;;;;;;;59612:404;;:::o;31223:204::-;31290:7;31339:5;31318:3;:11;;:18;;;;:26;31310:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31401:3;:11;;31413:5;31401:18;;;;;;;;;;;;;;;;31394:25;;31223:204;;;;:::o;41444:279::-;41511:7;41520;41570:5;41548:3;:12;;:19;;;;:27;41540:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41627:22;41652:3;:12;;41665:5;41652:19;;;;;;;;;;;;;;;;;;41627:44;;41690:5;:10;;;41702:5;:12;;;41682:33;;;;;41444:279;;;;;:::o;42941:319::-;43035:7;43055:16;43074:3;:12;;:17;43087:3;43074:17;;;;;;;;;;;;43055:36;;43122:1;43110:8;:13;;43125:12;43102:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43192:3;:12;;43216:1;43205:8;:12;43192:26;;;;;;;;;;;;;;;;;;:33;;;43185:40;;;42941:319;;;;;:::o;30770:109::-;30826:7;30853:3;:11;;:18;;;;30846:25;;30770:109;;;:::o;62992:604::-;63113:4;63140:15;:2;:13;;;:15::i;:::-;63135:60;;63179:4;63172:11;;;;63135:60;63205:23;63231:252;63284:45;;;63344:12;:10;:12::i;:::-;63371:4;63390:7;63412:5;63247:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63231:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63205:278;;63494:13;63521:10;63510:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63494:48;;48141:10;63571:16;;63561:26;;;:6;:26;;;;63553:35;;;;62992:604;;;;;;;:::o;43935:142::-;44012:4;44036:33;44044:3;:10;;44064:3;44056:12;;44036:7;:33::i;:::-;44029:40;;43935:142;;;;:::o;40759:125::-;40830:4;40875:1;40854:3;:12;;:17;40867:3;40854:17;;;;;;;;;;;;:22;;40847:29;;40759:125;;;;:::o;28925:1544::-;28991:4;29109:18;29130:3;:12;;:19;29143:5;29130:19;;;;;;;;;;;;29109:40;;29180:1;29166:10;:15;29162:1300;;29528:21;29565:1;29552:10;:14;29528:38;;29581:17;29622:1;29601:3;:11;;:18;;;;:22;29581:42;;29868:17;29888:3;:11;;29900:9;29888:22;;;;;;;;;;;;;;;;29868:42;;30034:9;30005:3;:11;;30017:13;30005:26;;;;;;;;;;;;;;;:38;;;;30153:1;30137:13;:17;30111:3;:12;;:23;30124:9;30111:23;;;;;;;;;;;:43;;;;30263:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30358:3;:12;;:19;30371:5;30358:19;;;;;;;;;;;30351:26;;;30401:4;30394:11;;;;;;;;29162:1300;30445:5;30438:12;;;28925:1544;;;;;:::o;28335:414::-;28398:4;28420:21;28430:3;28435:5;28420:9;:21::i;:::-;28415:327;;28458:3;:11;;28475:5;28458:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28641:3;:11;;:18;;;;28619:3;:12;;:19;28632:5;28619:19;;;;;;;;;;;:40;;;;28681:4;28674:11;;;;28415:327;28725:5;28718:12;;28335:414;;;;;:::o;38259:692::-;38335:4;38451:16;38470:3;:12;;:17;38483:3;38470:17;;;;;;;;;;;;38451:36;;38516:1;38504:8;:13;38500:444;;;38571:3;:12;;38589:38;;;;;;;;38606:3;38589:38;;;;38619:5;38589:38;;;38571:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38786:3;:12;;:19;;;;38766:3;:12;;:17;38779:3;38766:17;;;;;;;;;;;:39;;;;38827:4;38820:11;;;;;38500:444;38900:5;38864:3;:12;;38888:1;38877:8;:12;38864:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38927:5;38920:12;;;38259:692;;;;;;:::o;19348:422::-;19408:4;19616:12;19727:7;19715:20;19707:28;;19761:1;19754:4;:8;19747:15;;;19348:422;;;:::o;22266:195::-;22369:12;22401:52;22423:6;22431:4;22437:1;22440:12;22401:21;:52::i;:::-;22394:59;;22266:195;;;;;:::o;39126:1549::-;39190:4;39306:16;39325:3;:12;;:17;39338:3;39325:17;;;;;;;;;;;;39306:36;;39371:1;39359:8;:13;39355:1313;;39720:21;39755:1;39744:8;:12;39720:36;;39771:17;39813:1;39791:3;:12;;:19;;;;:23;39771:43;;40059:26;40088:3;:12;;40101:9;40088:23;;;;;;;;;;;;;;;;;;40059:52;;40236:9;40206:3;:12;;40219:13;40206:27;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;40360:1;40344:13;:17;40313:3;:12;;:28;40326:9;:14;;;40313:28;;;;;;;;;;;:48;;;;40470:3;:12;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40566:3;:12;;:17;40579:3;40566:17;;;;;;;;;;;40559:24;;;40607:4;40600:11;;;;;;;;39355:1313;40651:5;40644:12;;;39126:1549;;;;;:::o;30555:129::-;30628:4;30675:1;30652:3;:12;;:19;30665:5;30652:19;;;;;;;;;;;;:24;;30645:31;;30555:129;;;;:::o;23318:530::-;23445:12;23503:5;23478:21;:30;;23470:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23570:18;23581:6;23570:10;:18::i;:::-;23562:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23696:12;23710:23;23737:6;:11;;23757:5;23765:4;23737:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23695:75;;;;23788:52;23806:7;23815:10;23827:12;23788:17;:52::i;:::-;23781:59;;;;23318:530;;;;;;:::o;25858:742::-;25973:12;26002:7;25998:595;;;26033:10;26026:17;;;;25998:595;26167:1;26147:10;:17;:21;26143:439;;;26410:10;26404:17;26471:15;26458:10;26454:2;26450:19;26443:44;26358:148;26553:12;26546:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25858:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://737bc45c6770d2da4eb0a1fb13d1327d2dd4edddecbe25010e90252748b86f57
Loading...
Loading
Loading...
Loading
[ 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.