ERC-721
Overview
Max Total Supply
379 CCCATS
Holders
127
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CryptoCopyCats
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-14 */ pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Context.sol /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/introspection/IERC165.sol /** * @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/token/ERC721/IERC721.sol /** * @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/IERC721Metadata.sol /** * @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/IERC721Enumerable.sol /** * @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/IERC721Receiver.sol /** * @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/introspection/ERC165.sol /** * @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 () { // 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/math/SafeMath.sol /** * @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/Address.sol /** * @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/EnumerableSet.sol /** * @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/EnumerableMap.sol /** * @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/Strings.sol /** * @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/ERC721.sol /** * @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_) { _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/access/Ownable.sol /** * @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 () { 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: contracts/CryptoCopyCats.sol /** * @title CryptoCopyCats contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract CryptoCopyCats is ERC721, Ownable { using SafeMath for uint256; uint256 public startingIndexBlock; uint256 public startingIndex; uint256 public maxToMint; uint256 public MAX_CRYPTO_COPY_CATS_SUPPLY; uint256 public REVEAL_TIMESTAMP; string private prerevealURI; string private specialTokenURI; string public PROVENANCE_HASH = ""; bool public saleIsActive; bool public whitelistActive; bytes32[] _rootHash; address wallet1; address wallet2; mapping(uint256 => uint256) private mintNumberToSpecialToken; mapping(uint256 => uint256) private replacedTokenNumber; mapping(address => uint256) public numberOfWhitelistMints; uint256 maxWhitelistMints; uint256 maxSpecialTokens; uint256 numberOfSpecialTokensMinted; uint256 public discountPrice; uint256 public fullPrice; constructor() ERC721("Crypto Copy Cats", "CCCATS") { MAX_CRYPTO_COPY_CATS_SUPPLY = 2510; REVEAL_TIMESTAMP = block.timestamp + 3 days; //block.timestamp + 3 days; specialTokenURI = "https://cryptocopycats.mypinata.cloud/ipfs/QmcP7jLdm6vEs5jFwvUkWUJRBwzcTW6wwtLtVCvvuS6uBT"; prerevealURI = "https://cryptocopycats.mypinata.cloud/ipfs/QmSe33Sr6E5oDoCLvzouaLzJ8y3wiFgevkRmTQnAnrwGcm"; discountPrice = 65000000000000000; // 0.065 Ether fullPrice = 75000000000000000; // 0.075 Ether numberOfSpecialTokensMinted = 0; maxSpecialTokens = 10; maxToMint = 4; maxWhitelistMints = 4; saleIsActive = false; whitelistActive = false; wallet1 = 0x6F10Cdb4901bA272dabbF7a6343A8FE43ec7d460; // ccc payout wallet wallet2 = 0xaf6e1747779744c1CE875A6463e28A5086084ae7; // byt payout wallet _rootHash = new bytes32[](2); _rootHash[0] = 0x435bffa06fdde9f30f2df9afc8937f180217f3a782ef6aa88f0c39326ed0f4b7; _rootHash[1] = 0x1736b74100da5d87fc309b6fb4e084dbd9d21a488951d37cab89c323ebbfb483; } function random(string memory input) internal pure returns (uint256) { return uint256(keccak256(abi.encodePacked(input))); } function isTokenEthRedeemable(uint256 tokenId) external view returns(bool) { require(startingIndex > 0, "Tokens have not revealed yet"); if(mintNumberToSpecialToken[tokenId] > 0) { return true; } return false; } function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len; while (_i != 0) { k = k-1; uint8 temp = (48 + uint8(_i - _i / 10 * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return string(bstr); } function updateRootHash(bytes32 rootHash) external onlyOwner { _rootHash[1] = rootHash; } /** * Set whitelist price to mint a Crypto Copy Cat. */ function setDiscountPrice(uint256 _price) external onlyOwner { discountPrice = _price; } /** * Set public price to mint a Crypto Copy Cat. */ function setFullPrice(uint256 _price) external onlyOwner { fullPrice = _price; } function getTotalWhitelistPrice(uint256 numberOfTokens) internal view returns(uint256) { uint256 ownedTokens = numberOfWhitelistMints[_msgSender()]; if (ownedTokens == 0) { return discountPrice.mul(numberOfTokens - 1); } else { return discountPrice.mul(numberOfTokens); } } /** * Set maximum count to mint per txn. */ function setMaxToMint(uint256 _maxValue) external onlyOwner { maxToMint = _maxValue; } /** * Mint Crypto Copy Cat by owner. */ function reserveCryptoCopyCat(address _to, uint256 _numberOfTokens) external onlyOwner { require(_to != address(0), "Invalid address to reserve."); uint256 supply = totalSupply(); uint256 i; //Mint address, 0 on first mint //Supply is 1 so mint tokenId = 1 (which is the 2nd token) for (i = 0; i < _numberOfTokens; i++) { _safeMint(_to, supply + i); } } /** * Set reveal timestamp when finished the sale. */ function setRevealTimestamp(uint256 _revealTimeStamp) external onlyOwner { REVEAL_TIMESTAMP = _revealTimeStamp; } function setBaseURI(string memory baseURI) external onlyOwner { _setBaseURI(baseURI); } /** * External function to set the prereveal URI for all token IDs. * This is the URI that is shown on each token until the REVEAL_TIMESTAMP * is surpassed. */ function setPrerevealURI(string memory prerevealURI_) external onlyOwner { prerevealURI = prerevealURI_; } /** * Returns the proper tokenURI only after the startingIndex is finalized. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(startingIndex != 0 && block.timestamp >= REVEAL_TIMESTAMP) { string memory base = baseURI(); if (mintNumberToSpecialToken[tokenId] != 0) { return specialTokenURI; } else if (replacedTokenNumber[tokenId] != 0){ return string(abi.encodePacked(base, uint2str(replacedTokenNumber[tokenId]))); } else { string memory tokenURIWithOffset = uint2str(((tokenId + startingIndex) % MAX_CRYPTO_COPY_CATS_SUPPLY)); return string(abi.encodePacked(base, tokenURIWithOffset)); } } else { return prerevealURI; } } /* * Pause sale if active, make active if paused */ function setSaleState() external onlyOwner { saleIsActive = !saleIsActive; } /* * Pause whitelist if active, make active if paused */ function setWhitelistState() external onlyOwner { whitelistActive = !whitelistActive; } function isSpecialToken(uint256 tokenId) internal view returns (bool) { if(numberOfSpecialTokensMinted == maxSpecialTokens){ return false; } else if((maxSpecialTokens - numberOfSpecialTokensMinted) == (MAX_CRYPTO_COPY_CATS_SUPPLY - totalSupply())) { return true; } uint256 rando = random(string(abi.encodePacked(block.number, block.timestamp, _msgSender(), tokenId))); if ((rando % 2510) > 2496) { return true; } else { return false; } } /** * Mints tokens */ function mintCryptoCopyCat(uint256 numberOfTokens) external payable { require(saleIsActive, "Sale must be active to mint"); require(numberOfTokens <= maxToMint, "Invalid amount to mint per once"); require(totalSupply().add(numberOfTokens) <= MAX_CRYPTO_COPY_CATS_SUPPLY, "Purchase would exceed max supply"); require(fullPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct"); if (numberOfTokens > 1) { for(uint256 i = 0; i < numberOfTokens; i++) { uint256 tokenId = totalSupply(); if (isSpecialToken(tokenId)){ setSpecialToken(tokenId); } _safeMint(_msgSender(), tokenId); } } else { uint256 tokenId = totalSupply(); if (isSpecialToken(tokenId)){ setSpecialToken(tokenId); } _safeMint(_msgSender(), tokenId); } // If we haven't set the starting index and this is either // 1) the last saleable token or 2) the first token to be sold after // the end of pre-sale, set the starting index block if (startingIndexBlock == 0 && (totalSupply() == MAX_CRYPTO_COPY_CATS_SUPPLY || block.timestamp >= REVEAL_TIMESTAMP)) { startingIndexBlock = block.number; } } /** * Mints whitelisted tokens */ function whitelistMintCryptoCopyCat(uint256 numberOfTokens, uint256 spotInWhitelist, bytes32[] memory proof) external payable { require(whitelistActive, "The whitelist is not active yet"); require(totalSupply().add(numberOfTokens) <= MAX_CRYPTO_COPY_CATS_SUPPLY, "Purchase would exceed max supply"); require(numberOfTokens <= maxToMint, "Invalid amount to mint per once"); require(whitelistValidated(_msgSender(), spotInWhitelist, proof), "You're not on the whitelist"); require((numberOfWhitelistMints[_msgSender()] + numberOfTokens) <= maxWhitelistMints, "This transaction exceeds the max whitelist mints"); require(getTotalWhitelistPrice(numberOfTokens) == msg.value, "Ether value sent is not correct"); //Update numberOfWhitelistMints for the wallet numberOfWhitelistMints[_msgSender()] += numberOfTokens; if (numberOfTokens > 1) { for(uint256 i = 0; i < numberOfTokens; i++) { uint256 tokenId = totalSupply(); if (isSpecialToken(tokenId)){ setSpecialToken(tokenId); } _safeMint(_msgSender(), tokenId); } } else { uint256 tokenId = totalSupply(); if (isSpecialToken(tokenId)){ setSpecialToken(tokenId); } _safeMint(_msgSender(), tokenId); } } function setSpecialToken(uint256 tokenId) internal { uint256 specialTokenNumber = SafeMath.add(2500, numberOfSpecialTokensMinted); mintNumberToSpecialToken[tokenId] = specialTokenNumber; replacedTokenNumber[specialTokenNumber] = tokenId; numberOfSpecialTokensMinted++; } function whitelistValidated(address wallet, uint256 index, bytes32[] memory proof) internal view returns (bool) { uint256 amount = 1; // Compute the merkle root bytes32 node = keccak256(abi.encodePacked(index, wallet, amount)); uint256 path = index; for (uint16 i = 0; i < proof.length; i++) { if ((path & 0x01) == 1) { node = keccak256(abi.encodePacked(proof[i], node)); } else { node = keccak256(abi.encodePacked(node, proof[i])); } path /= 2; } // Check the merkle proof against the root hash array for(uint i = 0; i < _rootHash.length; i++) { if (node == _rootHash[i]) { return true; } } return false; } /** * Set the starting index for the collection */ function setStartingIndex() external { require(startingIndex == 0, "Starting index is already set"); require(startingIndexBlock != 0, "Starting index block must be set"); startingIndex = uint256(blockhash(startingIndexBlock)) % MAX_CRYPTO_COPY_CATS_SUPPLY; // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes) if (block.number.sub(startingIndexBlock) > 255) { startingIndex = uint256(blockhash(block.number - 1)) % MAX_CRYPTO_COPY_CATS_SUPPLY; } // Prevent default sequence if (startingIndex == 0) { startingIndex = startingIndex.add(1); } } /** * Set the starting index block for the collection, essentially unblocking * setting starting index */ function emergencySetStartingIndexBlock() external onlyOwner { require(startingIndex == 0, "Starting index is already set"); startingIndexBlock = block.number; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; uint256 walletBalance = balance.mul(93).div(100); payable(wallet1).transfer(walletBalance); payable(wallet2).transfer(balance.sub(walletBalance)); } }
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_CRYPTO_COPY_CATS_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discountPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fullPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isTokenEthRedeemable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCryptoCopyCat","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numberOfWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"reserveCryptoCopyCat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setDiscountPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setFullPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxValue","type":"uint256"}],"name":"setMaxToMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"prerevealURI_","type":"string"}],"name":"setPrerevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelistState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"bytes32","name":"rootHash","type":"bytes32"}],"name":"updateRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"spotInWhitelist","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMintCryptoCopyCat","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b916012916200036b565b503480156200002957600080fd5b50604080518082018252601081526f43727970746f20436f7079204361747360801b6020808301919091528251808401909352600683526543434341545360d01b9083015290620000816301ffc9a760e01b620002e7565b8151620000969060069060208501906200036b565b508051620000ac9060079060208401906200036b565b50620000bf6380ac58cd60e01b620002e7565b620000d1635b5e139f60e01b620002e7565b620000e363780e9d6360e01b620002e7565b5050600a80546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506109ce600e556200013d426203f4806200044e565b600f556040805160808101909152605980825262003899602083013980516200016f916011916020909101906200036b565b50604051806080016040528060598152602001620038f2605991398051620001a0916010916020909101906200036b565b5066e6ed27d6668000601d5567010a741a46278000601e556000601c55600a601b556004600d819055601a556013805461ffff19169055601580546001600160a01b0319908116736f10cdb4901ba272dabbf7a6343a8fe43ec7d460179091556016805490911673af6e1747779744c1ce875a6463e28a5086084ae717905560408051600280825260608201835290916020830190803683375050815162000250926014925060200190620003fa565b507f435bffa06fdde9f30f2df9afc8937f180217f3a782ef6aa88f0c39326ed0f4b760001b60146000815481106200028c576200028c62000475565b90600052602060002001819055507f1736b74100da5d87fc309b6fb4e084dbd9d21a488951d37cab89c323ebbfb48360001b6014600181548110620002d557620002d562000475565b600091825260209091200155620004c8565b6001600160e01b03198082161415620003465760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b82805462000379906200048b565b90600052602060002090601f0160209004810192826200039d5760008555620003e8565b82601f10620003b857805160ff1916838001178555620003e8565b82800160010185558215620003e8579182015b82811115620003e8578251825591602001919060010190620003cb565b50620003f692915062000437565b5090565b828054828255906000526020600020908101928215620003e85791602002820182811115620003e8578251825591602001919060010190620003cb565b5b80821115620003f6576000815560010162000438565b600082198211156200047057634e487b7160e01b600052601160045260246000fd5b500190565b634e487b7160e01b600052603260045260246000fd5b600181811c90821680620004a057607f821691505b60208210811415620004c257634e487b7160e01b600052602260045260246000fd5b50919050565b6133c180620004d86000396000f3fe6080604052600436106102885760003560e01c8063708b2bee1161015a578063b88d4fde116100c1578063e98665501161007a578063e986655014610798578063eb8d2444146107ad578063edd634b8146107c7578063f2fde38b146107dd578063ff1b6556146107fd578063ff37e77d1461081257600080fd5b8063b88d4fde146106c3578063c87b56dd146106e3578063cb774d4714610703578063d10bd8a714610719578063e36d649814610739578063e985e9c51461074f57600080fd5b80638c9a3da6116101135780638c9a3da61461061a5780638da5cb5b1461063a57806395d89b4114610658578063a22cb4651461066d578063adc215161461068d578063adcb1e66146106a357600080fd5b8063708b2bee1461058757806370a082311461059a578063715018a6146105ba5780637d17fcbe146105cf57806384ad8e8f146105e45780638b78c116146105fa57600080fd5b806323b872dd116101fe57806355f804b3116101b757806355f804b3146104dd57806359ada08e146104fd5780636352211e1461051d5780636c0360eb1461053d5780637084b2b714610552578063708aa3dc1461057257600080fd5b806323b872dd1461041b5780632f745c591461043b5780633ccfd60b1461045b57806342842e0e146104705780634f6ccce714610490578063519679d1146104b057600080fd5b8063081812fc11610250578063081812fc1461035f578063095ea7b3146103975780630ba133c5146103b757806318160ddd146103db57806318e20a38146103f05780631ed405591461040657600080fd5b8063018a2c371461028d57806301ffc9a7146102af57806302ce5813146102fe57806306fdde031461031d578063078eef281461033f575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612c71565b610825565b005b3480156102bb57600080fd5b506102e96102ca366004612ca0565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561030a57600080fd5b506013546102e990610100900460ff1681565b34801561032957600080fd5b5061033261085d565b6040516102f59190612d15565b34801561034b57600080fd5b506102ad61035a366004612dc7565b6108ef565b34801561036b57600080fd5b5061037f61037a366004612c71565b610930565b6040516001600160a01b0390911681526020016102f5565b3480156103a357600080fd5b506102ad6103b2366004612e27565b6109b8565b3480156103c357600080fd5b506103cd600d5481565b6040519081526020016102f5565b3480156103e757600080fd5b506103cd610ace565b3480156103fc57600080fd5b506103cd600f5481565b34801561041257600080fd5b506102ad610adf565b34801561042757600080fd5b506102ad610436366004612e51565b610b1d565b34801561044757600080fd5b506103cd610456366004612e27565b610b4e565b34801561046757600080fd5b506102ad610b79565b34801561047c57600080fd5b506102ad61048b366004612e51565b610c39565b34801561049c57600080fd5b506103cd6104ab366004612c71565b610c54565b3480156104bc57600080fd5b506103cd6104cb366004612e8d565b60196020526000908152604090205481565b3480156104e957600080fd5b506102ad6104f8366004612dc7565b610c6a565b34801561050957600080fd5b506102ad610518366004612c71565b610ca0565b34801561052957600080fd5b5061037f610538366004612c71565b610cee565b34801561054957600080fd5b50610332610d16565b34801561055e57600080fd5b506102ad61056d366004612c71565b610d25565b34801561057e57600080fd5b506102ad610d54565b6102ad610595366004612c71565b610d9b565b3480156105a657600080fd5b506103cd6105b5366004612e8d565b610fb8565b3480156105c657600080fd5b506102ad611044565b3480156105db57600080fd5b506102ad6110b8565b3480156105f057600080fd5b506103cd601d5481565b34801561060657600080fd5b506102ad610615366004612c71565b611138565b34801561062657600080fd5b506102ad610635366004612e27565b611167565b34801561064657600080fd5b50600a546001600160a01b031661037f565b34801561066457600080fd5b50610332611229565b34801561067957600080fd5b506102ad610688366004612ea8565b611238565b34801561069957600080fd5b506103cd600e5481565b3480156106af57600080fd5b506102ad6106be366004612c71565b6112fd565b3480156106cf57600080fd5b506102ad6106de366004612ee4565b61132c565b3480156106ef57600080fd5b506103326106fe366004612c71565b61135e565b34801561070f57600080fd5b506103cd600c5481565b34801561072557600080fd5b506102e9610734366004612c71565b6115d8565b34801561074557600080fd5b506103cd600b5481565b34801561075b57600080fd5b506102e961076a366004612f60565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a457600080fd5b506102ad61164f565b3480156107b957600080fd5b506013546102e99060ff1681565b3480156107d357600080fd5b506103cd601e5481565b3480156107e957600080fd5b506102ad6107f8366004612e8d565b611751565b34801561080957600080fd5b5061033261183c565b6102ad610820366004612f93565b6118ca565b600a546001600160a01b031633146108585760405162461bcd60e51b815260040161084f9061304e565b60405180910390fd5b600f55565b60606006805461086c90613083565b80601f016020809104026020016040519081016040528092919081815260200182805461089890613083565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b600a546001600160a01b031633146109195760405162461bcd60e51b815260040161084f9061304e565b805161092c906010906020840190612bd8565b5050565b600061093b82611ba6565b61099c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084f565b506000908152600460205260409020546001600160a01b031690565b60006109c382610cee565b9050806001600160a01b0316836001600160a01b03161415610a315760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084f565b336001600160a01b0382161480610a4d5750610a4d813361076a565b610abf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084f565b610ac98383611bb3565b505050565b6000610ada6002611c21565b905090565b600a546001600160a01b03163314610b095760405162461bcd60e51b815260040161084f9061304e565b6013805460ff19811660ff90911615179055565b610b273382611c2b565b610b435760405162461bcd60e51b815260040161084f906130b8565b610ac9838383611d15565b6001600160a01b0382166000908152600160205260408120610b709083611e96565b90505b92915050565b600a546001600160a01b03163314610ba35760405162461bcd60e51b815260040161084f9061304e565b476000610bbc6064610bb684605d611ea2565b90611f21565b6015546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610bf7573d6000803e3d6000fd5b506016546001600160a01b03166108fc610c118484611f7c565b6040518115909202916000818181858888f19350505050158015610ac9573d6000803e3d6000fd5b610ac98383836040518060200160405280600081525061132c565b600080610c62600284611fd8565b509392505050565b600a546001600160a01b03163314610c945760405162461bcd60e51b815260040161084f9061304e565b610c9d81611ff4565b50565b600a546001600160a01b03163314610cca5760405162461bcd60e51b815260040161084f9061304e565b806014600181548110610cdf57610cdf613109565b60009182526020909120015550565b6000610b73826040518060600160405280602981526020016133636029913960029190612007565b60606009805461086c90613083565b600a546001600160a01b03163314610d4f5760405162461bcd60e51b815260040161084f9061304e565b600d55565b600a546001600160a01b03163314610d7e5760405162461bcd60e51b815260040161084f9061304e565b6013805461ff001981166101009182900460ff1615909102179055565b60135460ff16610ded5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161084f565b600d54811115610e3f5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420616d6f756e7420746f206d696e7420706572206f6e636500604482015260640161084f565b600e54610e5482610e4e610ace565b9061201e565b1115610ea25760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161084f565b601e543490610eb19083611ea2565b1115610eff5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161084f565b6001811115610f5a5760005b81811015610f54576000610f1d610ace565b9050610f288161207d565b15610f3657610f3681612145565b610f41335b82612190565b5080610f4c81613135565b915050610f0b565b50610f88565b6000610f64610ace565b9050610f6f8161207d565b15610f7d57610f7d81612145565b610f8633610f3b565b505b600b54158015610fac5750600e54610f9e610ace565b1480610fac5750600f544210155b15610c9d5743600b5550565b60006001600160a01b0382166110235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084f565b6001600160a01b0382166000908152600160205260409020610b7390611c21565b600a546001600160a01b0316331461106e5760405162461bcd60e51b815260040161084f9061304e565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146110e25760405162461bcd60e51b815260040161084f9061304e565b600c54156111325760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015260640161084f565b43600b55565b600a546001600160a01b031633146111625760405162461bcd60e51b815260040161084f9061304e565b601d55565b600a546001600160a01b031633146111915760405162461bcd60e51b815260040161084f9061304e565b6001600160a01b0382166111e75760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964206164647265737320746f20726573657276652e0000000000604482015260640161084f565b60006111f1610ace565b905060005b82811015611223576112118461120c8385613150565b612190565b8061121b81613135565b9150506111f6565b50505050565b60606007805461086c90613083565b6001600160a01b0382163314156112915760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113275760405162461bcd60e51b815260040161084f9061304e565b601e55565b6113363383611c2b565b6113525760405162461bcd60e51b815260040161084f906130b8565b611223848484846121aa565b606061136982611ba6565b6113cd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084f565b600c54158015906113e05750600f544210155b156115415760006113ef610d16565b60008481526017602052604090205490915015611499576011805461141390613083565b80601f016020809104026020016040519081016040528092919081815260200182805461143f90613083565b801561148c5780601f106114615761010080835404028352916020019161148c565b820191906000526020600020905b81548152906001019060200180831161146f57829003601f168201915b5050505050915050919050565b600083815260186020526040902054156114ef5760008381526018602052604090205481906114c7906121dd565b6040516020016114d8929190613168565b604051602081830303815290604052915050919050565b6000611514600e54600c54866115059190613150565b61150f91906131ad565b6121dd565b90508181604051602001611529929190613168565b60405160208183030381529060405292505050919050565b6010805461154e90613083565b80601f016020809104026020016040519081016040528092919081815260200182805461157a90613083565b80156115c75780601f1061159c576101008083540402835291602001916115c7565b820191906000526020600020905b8154815290600101906020018083116115aa57829003601f168201915b50505050509050919050565b919050565b600080600c541161162b5760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e732068617665206e6f742072657665616c65642079657400000000604482015260640161084f565b6000828152601760205260409020541561164757506001919050565b506000919050565b600c541561169f5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015260640161084f565b600b546116ee5760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604482015260640161084f565b600e54600b546116ff9190406131ad565b600c55600b5460ff90611713904390611f7c565b111561173657600e546117276001436131c1565b6117329190406131ad565b600c555b600c5461174f57600c5461174b90600161201e565b600c555b565b600a546001600160a01b0316331461177b5760405162461bcd60e51b815260040161084f9061304e565b6001600160a01b0381166117e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084f565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6012805461184990613083565b80601f016020809104026020016040519081016040528092919081815260200182805461187590613083565b80156118c25780601f10611897576101008083540402835291602001916118c2565b820191906000526020600020905b8154815290600101906020018083116118a557829003601f168201915b505050505081565b601354610100900460ff166119215760405162461bcd60e51b815260206004820152601f60248201527f5468652077686974656c697374206973206e6f74206163746976652079657400604482015260640161084f565b600e5461193084610e4e610ace565b111561197e5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161084f565b600d548311156119d05760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420616d6f756e7420746f206d696e7420706572206f6e636500604482015260640161084f565b6119db338383612306565b611a275760405162461bcd60e51b815260206004820152601b60248201527f596f75277265206e6f74206f6e207468652077686974656c6973740000000000604482015260640161084f565b601a5433600090815260196020526040902054611a45908590613150565b1115611aac5760405162461bcd60e51b815260206004820152603060248201527f54686973207472616e73616374696f6e206578636565647320746865206d617860448201526f2077686974656c697374206d696e747360801b606482015260840161084f565b34611ab684612492565b14611b035760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161084f565b3360009081526019602052604081208054859290611b22908490613150565b90915550506001831115611b7a5760005b83811015611223576000611b45610ace565b9050611b508161207d565b15611b5e57611b5e81612145565b611b6733610f3b565b5080611b7281613135565b915050611b33565b6000611b84610ace565b9050611b8f8161207d565b15611b9d57611b9d81612145565b61122333610f3b565b6000610b736002836124cb565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611be882610cee565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610b73825490565b6000611c3682611ba6565b611c975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084f565b6000611ca283610cee565b9050806001600160a01b0316846001600160a01b03161480611cdd5750836001600160a01b0316611cd284610930565b6001600160a01b0316145b80611d0d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d2882610cee565b6001600160a01b031614611d905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084f565b6001600160a01b038216611df25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084f565b611dfd600082611bb3565b6001600160a01b0383166000908152600160205260409020611e1f90826124e3565b506001600160a01b0382166000908152600160205260409020611e4290826124ef565b50611e4f600282846124fb565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610b708383612511565b600082611eb157506000610b73565b6000611ebd83856131d8565b905082611eca85836131f7565b14610b705760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084f565b6000808211611f725760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015260640161084f565b610b7082846131f7565b600082821115611fce5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015260640161084f565b610b7082846131c1565b6000808080611fe78686612597565b9097909650945050505050565b805161092c906009906020840190612bd8565b6000612014848484612634565b90505b9392505050565b60008061202b8385613150565b905083811015610b705760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084f565b6000601b54601c54141561209357506000919050565b61209b610ace565b600e546120a891906131c1565b601c54601b546120b891906131c1565b14156120c657506001919050565b60006121164342336040805160208101949094528301919091526bffffffffffffffffffffffff19606091821b16908201526074810185905260940160405160208183030381529060405261269d565b90506109c06121276109ce836131ad565b11156121365750600192915050565b50600092915050565b50919050565b60006121556109c4601c5461201e565b600083815260176020908152604080832084905583835260189091528120849055601c80549293509061218783613135565b91905055505050565b61092c8282604051806020016040528060008152506126ce565b6121b5848484611d15565b6121c184848484612701565b6112235760405162461bcd60e51b815260040161084f9061320b565b6060816122015750506040805180820190915260018152600360fc1b602082015290565b8160005b811561222b578061221581613135565b91506122249050600a836131f7565b9150612205565b60008167ffffffffffffffff81111561224657612246612d28565b6040519080825280601f01601f191660200182016040528015612270576020820181803683370190505b509050815b85156122fd576122866001826131c1565b90506000612295600a886131f7565b6122a090600a6131d8565b6122aa90886131c1565b6122b590603061325d565b905060008160f81b9050808484815181106122d2576122d2613109565b60200101906001600160f81b031916908160001a9053506122f4600a896131f7565b97505050612275565b50949350505050565b604080516020808201859052606086901b6bffffffffffffffffffffffff1916828401526001605480840182905284518085039091018152607490930190935281519101206000919084835b85518161ffff1610156124325781600116600114156123c157858161ffff168151811061238157612381613109565b6020026020010151836040516020016123a4929190918252602082015260400190565b604051602081830303815290604052805190602001209250612413565b82868261ffff16815181106123d8576123d8613109565b60200260200101516040516020016123fa929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b61241e6002836131f7565b91508061242a81613282565b915050612352565b5060005b601454811015612484576014818154811061245357612453613109565b9060005260206000200154831415612472576001945050505050612017565b8061247c81613135565b915050612436565b506000979650505050505050565b33600090815260196020526040812054806124be576120176124b56001856131c1565b601d5490611ea2565b601d546120179084611ea2565b60008181526001830160205260408120541515610b70565b6000610b7083836127d2565b6000610b7083836128c5565b600061201484846001600160a01b038516612914565b8154600090821061256f5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161084f565b82600001828154811061258457612584613109565b9060005260206000200154905092915050565b8154600090819083106125f75760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161084f565b600084600001848154811061260e5761260e613109565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816126645760405162461bcd60e51b815260040161084f9190612d15565b50846126716001836131c1565b8154811061268157612681613109565b9060005260206000209060020201600101549150509392505050565b6000816040516020016126b091906132a4565b60408051601f19818403018152919052805160209091012092915050565b6126d883836129b5565b6126e56000848484612701565b610ac95760405162461bcd60e51b815260040161084f9061320b565b60006001600160a01b0384163b61271a57506001611d0d565b600061279b630a85bd0160e11b3388878760405160240161273e94939291906132c0565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613331603291396001600160a01b0388169190612acd565b90506000818060200190518101906127b391906132fd565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b600081815260018301602052604081205480156128bb5760006127f66001836131c1565b855490915060009061280a906001906131c1565b9050600086600001828154811061282357612823613109565b906000526020600020015490508087600001848154811061284657612846613109565b60009182526020909120015561285d836001613150565b6000828152600189016020526040902055865487908061287f5761287f61331a565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610b73565b6000915050610b73565b600081815260018301602052604081205461290c57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b73565b506000610b73565b600082815260018401602052604081205480612979575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055612017565b82856129866001846131c1565b8154811061299657612996613109565b9060005260206000209060020201600101819055506000915050612017565b6001600160a01b038216612a0b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084f565b612a1481611ba6565b15612a615760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084f565b6001600160a01b0382166000908152600160205260409020612a8390826124ef565b50612a90600282846124fb565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060612014848460008585843b612b265760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161084f565b600080866001600160a01b03168587604051612b4291906132a4565b60006040518083038185875af1925050503d8060008114612b7f576040519150601f19603f3d011682016040523d82523d6000602084013e612b84565b606091505b5091509150612b94828286612b9f565b979650505050505050565b60608315612bae575081612017565b825115612bbe5782518084602001fd5b8160405162461bcd60e51b815260040161084f9190612d15565b828054612be490613083565b90600052602060002090601f016020900481019282612c065760008555612c4c565b82601f10612c1f57805160ff1916838001178555612c4c565b82800160010185558215612c4c579182015b82811115612c4c578251825591602001919060010190612c31565b50612c58929150612c5c565b5090565b5b80821115612c585760008155600101612c5d565b600060208284031215612c8357600080fd5b5035919050565b6001600160e01b031981168114610c9d57600080fd5b600060208284031215612cb257600080fd5b8135610b7081612c8a565b60005b83811015612cd8578181015183820152602001612cc0565b838111156112235750506000910152565b60008151808452612d01816020860160208601612cbd565b601f01601f19169290920160200192915050565b602081526000610b706020830184612ce9565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612d6757612d67612d28565b604052919050565b600067ffffffffffffffff831115612d8957612d89612d28565b612d9c601f8401601f1916602001612d3e565b9050828152838383011115612db057600080fd5b828260208301376000602084830101529392505050565b600060208284031215612dd957600080fd5b813567ffffffffffffffff811115612df057600080fd5b8201601f81018413612e0157600080fd5b611d0d84823560208401612d6f565b80356001600160a01b03811681146115d357600080fd5b60008060408385031215612e3a57600080fd5b612e4383612e10565b946020939093013593505050565b600080600060608486031215612e6657600080fd5b612e6f84612e10565b9250612e7d60208501612e10565b9150604084013590509250925092565b600060208284031215612e9f57600080fd5b610b7082612e10565b60008060408385031215612ebb57600080fd5b612ec483612e10565b915060208301358015158114612ed957600080fd5b809150509250929050565b60008060008060808587031215612efa57600080fd5b612f0385612e10565b9350612f1160208601612e10565b925060408501359150606085013567ffffffffffffffff811115612f3457600080fd5b8501601f81018713612f4557600080fd5b612f5487823560208401612d6f565b91505092959194509250565b60008060408385031215612f7357600080fd5b612f7c83612e10565b9150612f8a60208401612e10565b90509250929050565b600080600060608486031215612fa857600080fd5b833592506020808501359250604085013567ffffffffffffffff80821115612fcf57600080fd5b818701915087601f830112612fe357600080fd5b813581811115612ff557612ff5612d28565b8060051b9150613006848301612d3e565b818152918301840191848101908a84111561302057600080fd5b938501935b8385101561303e57843582529385019390850190613025565b8096505050505050509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061309757607f821691505b6020821081141561213f57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156131495761314961311f565b5060010190565b600082198211156131635761316361311f565b500190565b6000835161317a818460208801612cbd565b83519083019061318e818360208801612cbd565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826131bc576131bc613197565b500690565b6000828210156131d3576131d361311f565b500390565b60008160001904831182151516156131f2576131f261311f565b500290565b60008261320657613206613197565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060ff821660ff84168060ff0382111561327a5761327a61311f565b019392505050565b600061ffff8083168181141561329a5761329a61311f565b6001019392505050565b600082516132b6818460208701612cbd565b9190910192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132f390830184612ce9565b9695505050505050565b60006020828403121561330f57600080fd5b8151610b7081612c8a565b634e487b7160e01b600052603160045260246000fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e2148f4de9ccecd587dd8eae58772de38c6ce4915469ae5f06a93ec487b9d06264736f6c634300080a003368747470733a2f2f63727970746f636f7079636174732e6d7970696e6174612e636c6f75642f697066732f516d6350376a4c646d36764573356a467776556b57554a5242777a635457367777744c745643767675533675425468747470733a2f2f63727970746f636f7079636174732e6d7970696e6174612e636c6f75642f697066732f516d5365333353723645356f446f434c767a6f75614c7a4a3879337769466765766b526d54516e416e727747636d
Deployed Bytecode
0x6080604052600436106102885760003560e01c8063708b2bee1161015a578063b88d4fde116100c1578063e98665501161007a578063e986655014610798578063eb8d2444146107ad578063edd634b8146107c7578063f2fde38b146107dd578063ff1b6556146107fd578063ff37e77d1461081257600080fd5b8063b88d4fde146106c3578063c87b56dd146106e3578063cb774d4714610703578063d10bd8a714610719578063e36d649814610739578063e985e9c51461074f57600080fd5b80638c9a3da6116101135780638c9a3da61461061a5780638da5cb5b1461063a57806395d89b4114610658578063a22cb4651461066d578063adc215161461068d578063adcb1e66146106a357600080fd5b8063708b2bee1461058757806370a082311461059a578063715018a6146105ba5780637d17fcbe146105cf57806384ad8e8f146105e45780638b78c116146105fa57600080fd5b806323b872dd116101fe57806355f804b3116101b757806355f804b3146104dd57806359ada08e146104fd5780636352211e1461051d5780636c0360eb1461053d5780637084b2b714610552578063708aa3dc1461057257600080fd5b806323b872dd1461041b5780632f745c591461043b5780633ccfd60b1461045b57806342842e0e146104705780634f6ccce714610490578063519679d1146104b057600080fd5b8063081812fc11610250578063081812fc1461035f578063095ea7b3146103975780630ba133c5146103b757806318160ddd146103db57806318e20a38146103f05780631ed405591461040657600080fd5b8063018a2c371461028d57806301ffc9a7146102af57806302ce5813146102fe57806306fdde031461031d578063078eef281461033f575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612c71565b610825565b005b3480156102bb57600080fd5b506102e96102ca366004612ca0565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561030a57600080fd5b506013546102e990610100900460ff1681565b34801561032957600080fd5b5061033261085d565b6040516102f59190612d15565b34801561034b57600080fd5b506102ad61035a366004612dc7565b6108ef565b34801561036b57600080fd5b5061037f61037a366004612c71565b610930565b6040516001600160a01b0390911681526020016102f5565b3480156103a357600080fd5b506102ad6103b2366004612e27565b6109b8565b3480156103c357600080fd5b506103cd600d5481565b6040519081526020016102f5565b3480156103e757600080fd5b506103cd610ace565b3480156103fc57600080fd5b506103cd600f5481565b34801561041257600080fd5b506102ad610adf565b34801561042757600080fd5b506102ad610436366004612e51565b610b1d565b34801561044757600080fd5b506103cd610456366004612e27565b610b4e565b34801561046757600080fd5b506102ad610b79565b34801561047c57600080fd5b506102ad61048b366004612e51565b610c39565b34801561049c57600080fd5b506103cd6104ab366004612c71565b610c54565b3480156104bc57600080fd5b506103cd6104cb366004612e8d565b60196020526000908152604090205481565b3480156104e957600080fd5b506102ad6104f8366004612dc7565b610c6a565b34801561050957600080fd5b506102ad610518366004612c71565b610ca0565b34801561052957600080fd5b5061037f610538366004612c71565b610cee565b34801561054957600080fd5b50610332610d16565b34801561055e57600080fd5b506102ad61056d366004612c71565b610d25565b34801561057e57600080fd5b506102ad610d54565b6102ad610595366004612c71565b610d9b565b3480156105a657600080fd5b506103cd6105b5366004612e8d565b610fb8565b3480156105c657600080fd5b506102ad611044565b3480156105db57600080fd5b506102ad6110b8565b3480156105f057600080fd5b506103cd601d5481565b34801561060657600080fd5b506102ad610615366004612c71565b611138565b34801561062657600080fd5b506102ad610635366004612e27565b611167565b34801561064657600080fd5b50600a546001600160a01b031661037f565b34801561066457600080fd5b50610332611229565b34801561067957600080fd5b506102ad610688366004612ea8565b611238565b34801561069957600080fd5b506103cd600e5481565b3480156106af57600080fd5b506102ad6106be366004612c71565b6112fd565b3480156106cf57600080fd5b506102ad6106de366004612ee4565b61132c565b3480156106ef57600080fd5b506103326106fe366004612c71565b61135e565b34801561070f57600080fd5b506103cd600c5481565b34801561072557600080fd5b506102e9610734366004612c71565b6115d8565b34801561074557600080fd5b506103cd600b5481565b34801561075b57600080fd5b506102e961076a366004612f60565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a457600080fd5b506102ad61164f565b3480156107b957600080fd5b506013546102e99060ff1681565b3480156107d357600080fd5b506103cd601e5481565b3480156107e957600080fd5b506102ad6107f8366004612e8d565b611751565b34801561080957600080fd5b5061033261183c565b6102ad610820366004612f93565b6118ca565b600a546001600160a01b031633146108585760405162461bcd60e51b815260040161084f9061304e565b60405180910390fd5b600f55565b60606006805461086c90613083565b80601f016020809104026020016040519081016040528092919081815260200182805461089890613083565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b600a546001600160a01b031633146109195760405162461bcd60e51b815260040161084f9061304e565b805161092c906010906020840190612bd8565b5050565b600061093b82611ba6565b61099c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084f565b506000908152600460205260409020546001600160a01b031690565b60006109c382610cee565b9050806001600160a01b0316836001600160a01b03161415610a315760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084f565b336001600160a01b0382161480610a4d5750610a4d813361076a565b610abf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084f565b610ac98383611bb3565b505050565b6000610ada6002611c21565b905090565b600a546001600160a01b03163314610b095760405162461bcd60e51b815260040161084f9061304e565b6013805460ff19811660ff90911615179055565b610b273382611c2b565b610b435760405162461bcd60e51b815260040161084f906130b8565b610ac9838383611d15565b6001600160a01b0382166000908152600160205260408120610b709083611e96565b90505b92915050565b600a546001600160a01b03163314610ba35760405162461bcd60e51b815260040161084f9061304e565b476000610bbc6064610bb684605d611ea2565b90611f21565b6015546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610bf7573d6000803e3d6000fd5b506016546001600160a01b03166108fc610c118484611f7c565b6040518115909202916000818181858888f19350505050158015610ac9573d6000803e3d6000fd5b610ac98383836040518060200160405280600081525061132c565b600080610c62600284611fd8565b509392505050565b600a546001600160a01b03163314610c945760405162461bcd60e51b815260040161084f9061304e565b610c9d81611ff4565b50565b600a546001600160a01b03163314610cca5760405162461bcd60e51b815260040161084f9061304e565b806014600181548110610cdf57610cdf613109565b60009182526020909120015550565b6000610b73826040518060600160405280602981526020016133636029913960029190612007565b60606009805461086c90613083565b600a546001600160a01b03163314610d4f5760405162461bcd60e51b815260040161084f9061304e565b600d55565b600a546001600160a01b03163314610d7e5760405162461bcd60e51b815260040161084f9061304e565b6013805461ff001981166101009182900460ff1615909102179055565b60135460ff16610ded5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161084f565b600d54811115610e3f5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420616d6f756e7420746f206d696e7420706572206f6e636500604482015260640161084f565b600e54610e5482610e4e610ace565b9061201e565b1115610ea25760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161084f565b601e543490610eb19083611ea2565b1115610eff5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161084f565b6001811115610f5a5760005b81811015610f54576000610f1d610ace565b9050610f288161207d565b15610f3657610f3681612145565b610f41335b82612190565b5080610f4c81613135565b915050610f0b565b50610f88565b6000610f64610ace565b9050610f6f8161207d565b15610f7d57610f7d81612145565b610f8633610f3b565b505b600b54158015610fac5750600e54610f9e610ace565b1480610fac5750600f544210155b15610c9d5743600b5550565b60006001600160a01b0382166110235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084f565b6001600160a01b0382166000908152600160205260409020610b7390611c21565b600a546001600160a01b0316331461106e5760405162461bcd60e51b815260040161084f9061304e565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146110e25760405162461bcd60e51b815260040161084f9061304e565b600c54156111325760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015260640161084f565b43600b55565b600a546001600160a01b031633146111625760405162461bcd60e51b815260040161084f9061304e565b601d55565b600a546001600160a01b031633146111915760405162461bcd60e51b815260040161084f9061304e565b6001600160a01b0382166111e75760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964206164647265737320746f20726573657276652e0000000000604482015260640161084f565b60006111f1610ace565b905060005b82811015611223576112118461120c8385613150565b612190565b8061121b81613135565b9150506111f6565b50505050565b60606007805461086c90613083565b6001600160a01b0382163314156112915760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113275760405162461bcd60e51b815260040161084f9061304e565b601e55565b6113363383611c2b565b6113525760405162461bcd60e51b815260040161084f906130b8565b611223848484846121aa565b606061136982611ba6565b6113cd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084f565b600c54158015906113e05750600f544210155b156115415760006113ef610d16565b60008481526017602052604090205490915015611499576011805461141390613083565b80601f016020809104026020016040519081016040528092919081815260200182805461143f90613083565b801561148c5780601f106114615761010080835404028352916020019161148c565b820191906000526020600020905b81548152906001019060200180831161146f57829003601f168201915b5050505050915050919050565b600083815260186020526040902054156114ef5760008381526018602052604090205481906114c7906121dd565b6040516020016114d8929190613168565b604051602081830303815290604052915050919050565b6000611514600e54600c54866115059190613150565b61150f91906131ad565b6121dd565b90508181604051602001611529929190613168565b60405160208183030381529060405292505050919050565b6010805461154e90613083565b80601f016020809104026020016040519081016040528092919081815260200182805461157a90613083565b80156115c75780601f1061159c576101008083540402835291602001916115c7565b820191906000526020600020905b8154815290600101906020018083116115aa57829003601f168201915b50505050509050919050565b919050565b600080600c541161162b5760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e732068617665206e6f742072657665616c65642079657400000000604482015260640161084f565b6000828152601760205260409020541561164757506001919050565b506000919050565b600c541561169f5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015260640161084f565b600b546116ee5760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604482015260640161084f565b600e54600b546116ff9190406131ad565b600c55600b5460ff90611713904390611f7c565b111561173657600e546117276001436131c1565b6117329190406131ad565b600c555b600c5461174f57600c5461174b90600161201e565b600c555b565b600a546001600160a01b0316331461177b5760405162461bcd60e51b815260040161084f9061304e565b6001600160a01b0381166117e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084f565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6012805461184990613083565b80601f016020809104026020016040519081016040528092919081815260200182805461187590613083565b80156118c25780601f10611897576101008083540402835291602001916118c2565b820191906000526020600020905b8154815290600101906020018083116118a557829003601f168201915b505050505081565b601354610100900460ff166119215760405162461bcd60e51b815260206004820152601f60248201527f5468652077686974656c697374206973206e6f74206163746976652079657400604482015260640161084f565b600e5461193084610e4e610ace565b111561197e5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161084f565b600d548311156119d05760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420616d6f756e7420746f206d696e7420706572206f6e636500604482015260640161084f565b6119db338383612306565b611a275760405162461bcd60e51b815260206004820152601b60248201527f596f75277265206e6f74206f6e207468652077686974656c6973740000000000604482015260640161084f565b601a5433600090815260196020526040902054611a45908590613150565b1115611aac5760405162461bcd60e51b815260206004820152603060248201527f54686973207472616e73616374696f6e206578636565647320746865206d617860448201526f2077686974656c697374206d696e747360801b606482015260840161084f565b34611ab684612492565b14611b035760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161084f565b3360009081526019602052604081208054859290611b22908490613150565b90915550506001831115611b7a5760005b83811015611223576000611b45610ace565b9050611b508161207d565b15611b5e57611b5e81612145565b611b6733610f3b565b5080611b7281613135565b915050611b33565b6000611b84610ace565b9050611b8f8161207d565b15611b9d57611b9d81612145565b61122333610f3b565b6000610b736002836124cb565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611be882610cee565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610b73825490565b6000611c3682611ba6565b611c975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084f565b6000611ca283610cee565b9050806001600160a01b0316846001600160a01b03161480611cdd5750836001600160a01b0316611cd284610930565b6001600160a01b0316145b80611d0d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d2882610cee565b6001600160a01b031614611d905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084f565b6001600160a01b038216611df25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084f565b611dfd600082611bb3565b6001600160a01b0383166000908152600160205260409020611e1f90826124e3565b506001600160a01b0382166000908152600160205260409020611e4290826124ef565b50611e4f600282846124fb565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610b708383612511565b600082611eb157506000610b73565b6000611ebd83856131d8565b905082611eca85836131f7565b14610b705760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084f565b6000808211611f725760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015260640161084f565b610b7082846131f7565b600082821115611fce5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015260640161084f565b610b7082846131c1565b6000808080611fe78686612597565b9097909650945050505050565b805161092c906009906020840190612bd8565b6000612014848484612634565b90505b9392505050565b60008061202b8385613150565b905083811015610b705760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084f565b6000601b54601c54141561209357506000919050565b61209b610ace565b600e546120a891906131c1565b601c54601b546120b891906131c1565b14156120c657506001919050565b60006121164342336040805160208101949094528301919091526bffffffffffffffffffffffff19606091821b16908201526074810185905260940160405160208183030381529060405261269d565b90506109c06121276109ce836131ad565b11156121365750600192915050565b50600092915050565b50919050565b60006121556109c4601c5461201e565b600083815260176020908152604080832084905583835260189091528120849055601c80549293509061218783613135565b91905055505050565b61092c8282604051806020016040528060008152506126ce565b6121b5848484611d15565b6121c184848484612701565b6112235760405162461bcd60e51b815260040161084f9061320b565b6060816122015750506040805180820190915260018152600360fc1b602082015290565b8160005b811561222b578061221581613135565b91506122249050600a836131f7565b9150612205565b60008167ffffffffffffffff81111561224657612246612d28565b6040519080825280601f01601f191660200182016040528015612270576020820181803683370190505b509050815b85156122fd576122866001826131c1565b90506000612295600a886131f7565b6122a090600a6131d8565b6122aa90886131c1565b6122b590603061325d565b905060008160f81b9050808484815181106122d2576122d2613109565b60200101906001600160f81b031916908160001a9053506122f4600a896131f7565b97505050612275565b50949350505050565b604080516020808201859052606086901b6bffffffffffffffffffffffff1916828401526001605480840182905284518085039091018152607490930190935281519101206000919084835b85518161ffff1610156124325781600116600114156123c157858161ffff168151811061238157612381613109565b6020026020010151836040516020016123a4929190918252602082015260400190565b604051602081830303815290604052805190602001209250612413565b82868261ffff16815181106123d8576123d8613109565b60200260200101516040516020016123fa929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b61241e6002836131f7565b91508061242a81613282565b915050612352565b5060005b601454811015612484576014818154811061245357612453613109565b9060005260206000200154831415612472576001945050505050612017565b8061247c81613135565b915050612436565b506000979650505050505050565b33600090815260196020526040812054806124be576120176124b56001856131c1565b601d5490611ea2565b601d546120179084611ea2565b60008181526001830160205260408120541515610b70565b6000610b7083836127d2565b6000610b7083836128c5565b600061201484846001600160a01b038516612914565b8154600090821061256f5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161084f565b82600001828154811061258457612584613109565b9060005260206000200154905092915050565b8154600090819083106125f75760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161084f565b600084600001848154811061260e5761260e613109565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816126645760405162461bcd60e51b815260040161084f9190612d15565b50846126716001836131c1565b8154811061268157612681613109565b9060005260206000209060020201600101549150509392505050565b6000816040516020016126b091906132a4565b60408051601f19818403018152919052805160209091012092915050565b6126d883836129b5565b6126e56000848484612701565b610ac95760405162461bcd60e51b815260040161084f9061320b565b60006001600160a01b0384163b61271a57506001611d0d565b600061279b630a85bd0160e11b3388878760405160240161273e94939291906132c0565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613331603291396001600160a01b0388169190612acd565b90506000818060200190518101906127b391906132fd565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b600081815260018301602052604081205480156128bb5760006127f66001836131c1565b855490915060009061280a906001906131c1565b9050600086600001828154811061282357612823613109565b906000526020600020015490508087600001848154811061284657612846613109565b60009182526020909120015561285d836001613150565b6000828152600189016020526040902055865487908061287f5761287f61331a565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610b73565b6000915050610b73565b600081815260018301602052604081205461290c57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b73565b506000610b73565b600082815260018401602052604081205480612979575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055612017565b82856129866001846131c1565b8154811061299657612996613109565b9060005260206000209060020201600101819055506000915050612017565b6001600160a01b038216612a0b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084f565b612a1481611ba6565b15612a615760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084f565b6001600160a01b0382166000908152600160205260409020612a8390826124ef565b50612a90600282846124fb565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060612014848460008585843b612b265760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161084f565b600080866001600160a01b03168587604051612b4291906132a4565b60006040518083038185875af1925050503d8060008114612b7f576040519150601f19603f3d011682016040523d82523d6000602084013e612b84565b606091505b5091509150612b94828286612b9f565b979650505050505050565b60608315612bae575081612017565b825115612bbe5782518084602001fd5b8160405162461bcd60e51b815260040161084f9190612d15565b828054612be490613083565b90600052602060002090601f016020900481019282612c065760008555612c4c565b82601f10612c1f57805160ff1916838001178555612c4c565b82800160010185558215612c4c579182015b82811115612c4c578251825591602001919060010190612c31565b50612c58929150612c5c565b5090565b5b80821115612c585760008155600101612c5d565b600060208284031215612c8357600080fd5b5035919050565b6001600160e01b031981168114610c9d57600080fd5b600060208284031215612cb257600080fd5b8135610b7081612c8a565b60005b83811015612cd8578181015183820152602001612cc0565b838111156112235750506000910152565b60008151808452612d01816020860160208601612cbd565b601f01601f19169290920160200192915050565b602081526000610b706020830184612ce9565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612d6757612d67612d28565b604052919050565b600067ffffffffffffffff831115612d8957612d89612d28565b612d9c601f8401601f1916602001612d3e565b9050828152838383011115612db057600080fd5b828260208301376000602084830101529392505050565b600060208284031215612dd957600080fd5b813567ffffffffffffffff811115612df057600080fd5b8201601f81018413612e0157600080fd5b611d0d84823560208401612d6f565b80356001600160a01b03811681146115d357600080fd5b60008060408385031215612e3a57600080fd5b612e4383612e10565b946020939093013593505050565b600080600060608486031215612e6657600080fd5b612e6f84612e10565b9250612e7d60208501612e10565b9150604084013590509250925092565b600060208284031215612e9f57600080fd5b610b7082612e10565b60008060408385031215612ebb57600080fd5b612ec483612e10565b915060208301358015158114612ed957600080fd5b809150509250929050565b60008060008060808587031215612efa57600080fd5b612f0385612e10565b9350612f1160208601612e10565b925060408501359150606085013567ffffffffffffffff811115612f3457600080fd5b8501601f81018713612f4557600080fd5b612f5487823560208401612d6f565b91505092959194509250565b60008060408385031215612f7357600080fd5b612f7c83612e10565b9150612f8a60208401612e10565b90509250929050565b600080600060608486031215612fa857600080fd5b833592506020808501359250604085013567ffffffffffffffff80821115612fcf57600080fd5b818701915087601f830112612fe357600080fd5b813581811115612ff557612ff5612d28565b8060051b9150613006848301612d3e565b818152918301840191848101908a84111561302057600080fd5b938501935b8385101561303e57843582529385019390850190613025565b8096505050505050509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061309757607f821691505b6020821081141561213f57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156131495761314961311f565b5060010190565b600082198211156131635761316361311f565b500190565b6000835161317a818460208801612cbd565b83519083019061318e818360208801612cbd565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826131bc576131bc613197565b500690565b6000828210156131d3576131d361311f565b500390565b60008160001904831182151516156131f2576131f261311f565b500290565b60008261320657613206613197565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060ff821660ff84168060ff0382111561327a5761327a61311f565b019392505050565b600061ffff8083168181141561329a5761329a61311f565b6001019392505050565b600082516132b6818460208701612cbd565b9190910192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132f390830184612ce9565b9695505050505050565b60006020828403121561330f57600080fd5b8151610b7081612c8a565b634e487b7160e01b600052603160045260246000fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e2148f4de9ccecd587dd8eae58772de38c6ce4915469ae5f06a93ec487b9d06264736f6c634300080a0033
Deployed Bytecode Sourcemap
66378:12590:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70988:127;;;;;;;;;;-1:-1:-1;70988:127:0;;;;;:::i;:::-;;:::i;:::-;;9939:150;;;;;;;;;;-1:-1:-1;9939:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;;10048:33:0;10024:4;10048:33;;;;;;;;;;;;;;9939:150;;;;750:14:1;;743:22;725:41;;713:2;698:18;9939:150:0;;;;;;;;66801:27;;;;;;;;;;-1:-1:-1;66801:27:0;;;;;;;;;;;50998:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;71424:120::-;;;;;;;;;;-1:-1:-1;71424:120:0;;;;;:::i;:::-;;:::i;53784:221::-;;;;;;;;;;-1:-1:-1;53784:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2972:32:1;;;2954:51;;2942:2;2927:18;53784:221:0;2808:203:1;53314:404:0;;;;;;;;;;-1:-1:-1;53314:404:0;;;;;:::i;:::-;;:::i;66538:24::-;;;;;;;;;;;;;;;;;;;3599:25:1;;;3587:2;3572:18;66538:24:0;3453:177:1;52792:211:0;;;;;;;;;;;;;:::i;66618:31::-;;;;;;;;;;;;;;;;72607:90;;;;;;;;;;;;;:::i;54674:305::-;;;;;;;;;;-1:-1:-1;54674:305:0;;;;;:::i;:::-;;:::i;52554:162::-;;;;;;;;;;-1:-1:-1;52554:162:0;;;;;:::i;:::-;;:::i;78694:271::-;;;;;;;;;;;;;:::i;55050:151::-;;;;;;;;;;-1:-1:-1;55050:151:0;;;;;:::i;:::-;;:::i;53080:172::-;;;;;;;;;;-1:-1:-1;53080:172:0;;;;;:::i;:::-;;:::i;67038:57::-;;;;;;;;;;-1:-1:-1;67038:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;71124:101;;;;;;;;;;-1:-1:-1;71124:101:0;;;;;:::i;:::-;;:::i;69427:103::-;;;;;;;;;;-1:-1:-1;69427:103:0;;;;;:::i;:::-;;:::i;50754:177::-;;;;;;;;;;-1:-1:-1;50754:177:0;;;;;:::i;:::-;;:::i;52373:97::-;;;;;;;;;;;;;:::i;70306:100::-;;;;;;;;;;-1:-1:-1;70306:100:0;;;;;:::i;:::-;;:::i;72777:106::-;;;;;;;;;;;;;:::i;73495:1394::-;;;;;;:::i;:::-;;:::i;50471:221::-;;;;;;;;;;-1:-1:-1;50471:221:0;;;;;:::i;:::-;;:::i;65663:148::-;;;;;;;;;;;;;:::i;78502:184::-;;;;;;;;;;;;;:::i;67207:28::-;;;;;;;;;;;;;;;;69611:102;;;;;;;;;;-1:-1:-1;69611:102:0;;;;;:::i;:::-;;:::i;70471:438::-;;;;;;;;;;-1:-1:-1;70471:438:0;;;;;:::i;:::-;;:::i;65012:87::-;;;;;;;;;;-1:-1:-1;65085:6:0;;-1:-1:-1;;;;;65085:6:0;65012:87;;51167:104;;;;;;;;;;;;;:::i;54077:295::-;;;;;;;;;;-1:-1:-1;54077:295:0;;;;;:::i;:::-;;:::i;66569:42::-;;;;;;;;;;;;;;;;69795:94;;;;;;;;;;-1:-1:-1;69795:94:0;;;;;:::i;:::-;;:::i;55272:285::-;;;;;;;;;;-1:-1:-1;55272:285:0;;;;;:::i;:::-;;:::i;71647:885::-;;;;;;;;;;-1:-1:-1;71647:885:0;;;;;:::i;:::-;;:::i;66503:28::-;;;;;;;;;;;;;;;;68554:281;;;;;;;;;;-1:-1:-1;68554:281:0;;;;;:::i;:::-;;:::i;66463:33::-;;;;;;;;;;;;;;;;54443:164;;;;;;;;;;-1:-1:-1;54443:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;54564:25:0;;;54540:4;54564:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54443:164;77643:722;;;;;;;;;;;;;:::i;66770:24::-;;;;;;;;;;-1:-1:-1;66770:24:0;;;;;;;;67242;;;;;;;;;;;;;;;;65966:244;;;;;;;;;;-1:-1:-1;65966:244:0;;;;;:::i;:::-;;:::i;66729:34::-;;;;;;;;;;;;;:::i;74946:1435::-;;;;;;:::i;:::-;;:::i;70988:127::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;;;;;;;;;71072:16:::1;:35:::0;70988:127::o;50998:100::-;51052:13;51085:5;51078:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50998:100;:::o;71424:120::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;71508:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;71424:120:::0;:::o;53784:221::-;53860:7;53888:16;53896:7;53888;:16::i;:::-;53880:73;;;;-1:-1:-1;;;53880:73:0;;7668:2:1;53880:73:0;;;7650:21:1;7707:2;7687:18;;;7680:30;7746:34;7726:18;;;7719:62;-1:-1:-1;;;7797:18:1;;;7790:42;7849:19;;53880:73:0;7466:408:1;53880:73:0;-1:-1:-1;53973:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;53973:24:0;;53784:221::o;53314:404::-;53395:13;53411:23;53426:7;53411:14;:23::i;:::-;53395:39;;53459:5;-1:-1:-1;;;;;53453:11:0;:2;-1:-1:-1;;;;;53453:11:0;;;53445:57;;;;-1:-1:-1;;;53445:57:0;;8081:2:1;53445:57:0;;;8063:21:1;8120:2;8100:18;;;8093:30;8159:34;8139:18;;;8132:62;-1:-1:-1;;;8210:18:1;;;8203:31;8251:19;;53445:57:0;7879:397:1;53445:57:0;700:10;-1:-1:-1;;;;;53523:21:0;;;;:69;;-1:-1:-1;53548:44:0;53572:5;700:10;54443:164;:::i;53548:44::-;53515:161;;;;-1:-1:-1;;;53515:161:0;;8483:2:1;53515:161:0;;;8465:21:1;8522:2;8502:18;;;8495:30;8561:34;8541:18;;;8534:62;8632:26;8612:18;;;8605:54;8676:19;;53515:161:0;8281:420:1;53515:161:0;53689:21;53698:2;53702:7;53689:8;:21::i;:::-;53384:334;53314:404;;:::o;52792:211::-;52853:7;52974:21;:12;:19;:21::i;:::-;52967:28;;52792:211;:::o;72607:90::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;72677:12:::1;::::0;;-1:-1:-1;;72661:28:0;::::1;72677:12;::::0;;::::1;72676:13;72661:28;::::0;;72607:90::o;54674:305::-;54835:41;700:10;54868:7;54835:18;:41::i;:::-;54827:103;;;;-1:-1:-1;;;54827:103:0;;;;;;;:::i;:::-;54943:28;54953:4;54959:2;54963:7;54943:9;:28::i;52554:162::-;-1:-1:-1;;;;;52678:20:0;;52651:7;52678:20;;;:13;:20;;;;;:30;;52702:5;52678:23;:30::i;:::-;52671:37;;52554:162;;;;;:::o;78694:271::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;78762:21:::1;78744:15;78818:24;78838:3;78818:15;78762:21:::0;78830:2:::1;78818:11;:15::i;:::-;:19:::0;::::1;:24::i;:::-;78861:7;::::0;78853:40:::1;::::0;78794:48;;-1:-1:-1;;;;;;78861:7:0::1;::::0;78853:40;::::1;;;::::0;78794:48;;78861:7:::1;78853:40:::0;78861:7;78853:40;78794:48;78861:7;78853:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;78912:7:0::1;::::0;-1:-1:-1;;;;;78912:7:0::1;78904:53;78930:26;:7:::0;78942:13;78930:11:::1;:26::i;:::-;78904:53;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;55050:151:::0;55154:39;55171:4;55177:2;55181:7;55154:39;;;;;;;;;;;;:16;:39::i;53080:172::-;53155:7;;53197:22;:12;53213:5;53197:15;:22::i;:::-;-1:-1:-1;53175:44:0;53080:172;-1:-1:-1;;;53080:172:0:o;71124:101::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;71197:20:::1;71209:7;71197:11;:20::i;:::-;71124:101:::0;:::o;69427:103::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;69514:8:::1;69499:9;69509:1;69499:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;:23:::0;-1:-1:-1;69427:103:0:o;50754:177::-;50826:7;50853:70;50870:7;50853:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;52373:97::-;52421:13;52454:8;52447:15;;;;;:::i;70306:100::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;70377:9:::1;:21:::0;70306:100::o;72777:106::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;72860:15:::1;::::0;;-1:-1:-1;;72841:34:0;::::1;72860:15;::::0;;;::::1;;;72859:16;72841:34:::0;;::::1;;::::0;;72777:106::o;73495:1394::-;73582:12;;;;73574:52;;;;-1:-1:-1;;;73574:52:0;;9458:2:1;73574:52:0;;;9440:21:1;9497:2;9477:18;;;9470:30;9536:29;9516:18;;;9509:57;9583:18;;73574:52:0;9256:351:1;73574:52:0;73663:9;;73645:14;:27;;73637:71;;;;-1:-1:-1;;;73637:71:0;;9814:2:1;73637:71:0;;;9796:21:1;9853:2;9833:18;;;9826:30;9892:33;9872:18;;;9865:61;9943:18;;73637:71:0;9612:355:1;73637:71:0;73764:27;;73727:33;73745:14;73727:13;:11;:13::i;:::-;:17;;:33::i;:::-;:64;;73719:109;;;;-1:-1:-1;;;73719:109:0;;10174:2:1;73719:109:0;;;10156:21:1;;;10193:18;;;10186:30;10252:34;10232:18;;;10225:62;10304:18;;73719:109:0;9972:356:1;73719:109:0;73847:9;;73880;;73847:29;;73861:14;73847:13;:29::i;:::-;:42;;73839:86;;;;-1:-1:-1;;;73839:86:0;;10535:2:1;73839:86:0;;;10517:21:1;10574:2;10554:18;;;10547:30;10613:33;10593:18;;;10586:61;10664:18;;73839:86:0;10333:355:1;73839:86:0;73967:1;73950:14;:18;73946:537;;;73989:9;73985:274;74008:14;74004:1;:18;73985:274;;;74048:15;74066:13;:11;:13::i;:::-;74048:31;;74102:23;74117:7;74102:14;:23::i;:::-;74098:95;;;74149:24;74165:7;74149:15;:24::i;:::-;74211:32;700:10;74221:12;74235:7;74211:9;:32::i;:::-;-1:-1:-1;74024:3:0;;;;:::i;:::-;;;;73985:274;;;;73946:537;;;74291:15;74309:13;:11;:13::i;:::-;74291:31;;74341:23;74356:7;74341:14;:23::i;:::-;74337:87;;;74384:24;74400:7;74384:15;:24::i;:::-;74439:32;700:10;74449:12;620:98;74439:32;74276:207;73946:537;74707:18;;:23;:112;;;;;74752:27;;74735:13;:11;:13::i;:::-;:44;:83;;;;74802:16;;74783:15;:35;;74735:83;74703:178;;;74857:12;74836:18;:33;73495:1394;:::o;50471:221::-;50543:7;-1:-1:-1;;;;;50571:19:0;;50563:74;;;;-1:-1:-1;;;50563:74:0;;11167:2:1;50563:74:0;;;11149:21:1;11206:2;11186:18;;;11179:30;11245:34;11225:18;;;11218:62;-1:-1:-1;;;11296:18:1;;;11289:40;11346:19;;50563:74:0;10965:406:1;50563:74:0;-1:-1:-1;;;;;50655:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;65663:148::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;65754:6:::1;::::0;65733:40:::1;::::0;65770:1:::1;::::0;-1:-1:-1;;;;;65754:6:0::1;::::0;65733:40:::1;::::0;65770:1;;65733:40:::1;65784:6;:19:::0;;-1:-1:-1;;;;;;65784:19:0::1;::::0;;65663:148::o;78502:184::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;78582:13:::1;::::0;:18;78574:60:::1;;;::::0;-1:-1:-1;;;78574:60:0;;11578:2:1;78574:60:0::1;::::0;::::1;11560:21:1::0;11617:2;11597:18;;;11590:30;11656:31;11636:18;;;11629:59;11705:18;;78574:60:0::1;11376:353:1::0;78574:60:0::1;78666:12;78645:18;:33:::0;78502:184::o;69611:102::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;69683:13:::1;:22:::0;69611:102::o;70471:438::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;70577:17:0;::::1;70569:57;;;::::0;-1:-1:-1;;;70569:57:0;;11936:2:1;70569:57:0::1;::::0;::::1;11918:21:1::0;11975:2;11955:18;;;11948:30;12014:29;11994:18;;;11987:57;12061:18;;70569:57:0::1;11734:351:1::0;70569:57:0::1;70639:14;70656:13;:11;:13::i;:::-;70639:30;;70680:9;70811:91;70827:15;70823:1;:19;70811:91;;;70864:26;70874:3:::0;70879:10:::1;70888:1:::0;70879:6;:10:::1;:::i;:::-;70864:9;:26::i;:::-;70844:3:::0;::::1;::::0;::::1;:::i;:::-;;;;70811:91;;;70558:351;;70471:438:::0;;:::o;51167:104::-;51223:13;51256:7;51249:14;;;;;:::i;54077:295::-;-1:-1:-1;;;;;54180:24:0;;700:10;54180:24;;54172:62;;;;-1:-1:-1;;;54172:62:0;;12425:2:1;54172:62:0;;;12407:21:1;12464:2;12444:18;;;12437:30;12503:27;12483:18;;;12476:55;12548:18;;54172:62:0;12223:349:1;54172:62:0;700:10;54247:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;54247:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;54247:53:0;;;;;;;;;;54316:48;;725:41:1;;;54247:42:0;;700:10;54316:48;;698:18:1;54316:48:0;;;;;;;54077:295;;:::o;69795:94::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;69863:9:::1;:18:::0;69795:94::o;55272:285::-;55404:41;700:10;55437:7;55404:18;:41::i;:::-;55396:103;;;;-1:-1:-1;;;55396:103:0;;;;;;;:::i;:::-;55510:39;55524:4;55530:2;55534:7;55543:5;55510:13;:39::i;71647:885::-;71720:13;71754:16;71762:7;71754;:16::i;:::-;71746:76;;;;-1:-1:-1;;;71746:76:0;;12779:2:1;71746:76:0;;;12761:21:1;12818:2;12798:18;;;12791:30;12857:34;12837:18;;;12830:62;-1:-1:-1;;;12908:18:1;;;12901:45;12963:19;;71746:76:0;12577:411:1;71746:76:0;71838:13;;:18;;;;:57;;;71879:16;;71860:15;:35;;71838:57;71835:690;;;71921:18;71942:9;:7;:9::i;:::-;71972:33;;;;:24;:33;;;;;;71921:30;;-1:-1:-1;71972:38:0;71968:476;;72038:15;72031:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71647:885;;;:::o;71968:476::-;72079:28;;;;:19;:28;;;;;;:33;72075:369;;72178:28;;;;:19;:28;;;;;;72163:4;;72169:38;;:8;:38::i;:::-;72146:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72132:77;;;71647:885;;;:::o;72075:369::-;72250:32;72285:67;72323:27;;72306:13;;72296:7;:23;;;;:::i;:::-;72295:55;;;;:::i;:::-;72285:8;:67::i;:::-;72250:102;;72402:4;72408:18;72385:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72371:57;;;;71647:885;;;:::o;71835:690::-;72501:12;72494:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71647:885;;;:::o;71835:690::-;71647:885;;;:::o;68554:281::-;68623:4;68669:1;68653:13;;:17;68645:58;;;;-1:-1:-1;;;68645:58:0;;13919:2:1;68645:58:0;;;13901:21:1;13958:2;13938:18;;;13931:30;13997;13977:18;;;13970:58;14045:18;;68645:58:0;13717:352:1;68645:58:0;68753:1;68717:33;;;:24;:33;;;;;;:37;68714:89;;-1:-1:-1;68787:4:0;;68554:281;-1:-1:-1;68554:281:0:o;68714:89::-;-1:-1:-1;68822:5:0;;68554:281;-1:-1:-1;68554:281:0:o;77643:722::-;77699:13;;:18;77691:60;;;;-1:-1:-1;;;77691:60:0;;11578:2:1;77691:60:0;;;11560:21:1;11617:2;11597:18;;;11590:30;11656:31;11636:18;;;11629:59;11705:18;;77691:60:0;11376:353:1;77691:60:0;77770:18;;77762:68;;;;-1:-1:-1;;;77762:68:0;;14276:2:1;77762:68:0;;;14258:21:1;;;14295:18;;;14288:30;14354:34;14334:18;;;14327:62;14406:18;;77762:68:0;14074:356:1;77762:68:0;77908:27;;77885:18;;77867:68;;77908:27;77875:29;77867:68;:::i;:::-;77851:13;:84;78088:18;;78110:3;;78071:36;;:12;;:16;:36::i;:::-;:42;78067:157;;;78185:27;;78164:16;78179:1;78164:12;:16;:::i;:::-;78146:66;;;78154:27;78146:66;:::i;:::-;78130:13;:82;78067:157;78275:13;;78271:87;;78326:13;;:20;;78344:1;78326:17;:20::i;:::-;78310:13;:36;78271:87;77643:722::o;65966:244::-;65085:6;;-1:-1:-1;;;;;65085:6:0;700:10;65232:23;65224:68;;;;-1:-1:-1;;;65224:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66055:22:0;::::1;66047:73;;;::::0;-1:-1:-1;;;66047:73:0;;14767:2:1;66047:73:0::1;::::0;::::1;14749:21:1::0;14806:2;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;-1:-1:-1;;;14896:18:1;;;14889:36;14942:19;;66047:73:0::1;14565:402:1::0;66047:73:0::1;66157:6;::::0;66136:38:::1;::::0;-1:-1:-1;;;;;66136:38:0;;::::1;::::0;66157:6:::1;::::0;66136:38:::1;::::0;66157:6:::1;::::0;66136:38:::1;66185:6;:17:::0;;-1:-1:-1;;;;;;66185:17:0::1;-1:-1:-1::0;;;;;66185:17:0;;;::::1;::::0;;;::::1;::::0;;65966:244::o;66729:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;74946:1435::-;75091:15;;;;;;;75083:59;;;;-1:-1:-1;;;75083:59:0;;15174:2:1;75083:59:0;;;15156:21:1;15213:2;15193:18;;;15186:30;15252:33;15232:18;;;15225:61;15303:18;;75083:59:0;14972:355:1;75083:59:0;75198:27;;75161:33;75179:14;75161:13;:11;:13::i;:33::-;:64;;75153:109;;;;-1:-1:-1;;;75153:109:0;;10174:2:1;75153:109:0;;;10156:21:1;;;10193:18;;;10186:30;10252:34;10232:18;;;10225:62;10304:18;;75153:109:0;9972:356:1;75153:109:0;75299:9;;75281:14;:27;;75273:71;;;;-1:-1:-1;;;75273:71:0;;9814:2:1;75273:71:0;;;9796:21:1;9853:2;9833:18;;;9826:30;9892:33;9872:18;;;9865:61;9943:18;;75273:71:0;9612:355:1;75273:71:0;75363:56;700:10;75396:15;75413:5;75363:18;:56::i;:::-;75355:96;;;;-1:-1:-1;;;75355:96:0;;15534:2:1;75355:96:0;;;15516:21:1;15573:2;15553:18;;;15546:30;15612:29;15592:18;;;15585:57;15659:18;;75355:96:0;15332:351:1;75355:96:0;75529:17;;700:10;75471:36;;;;:22;:36;;;;;;:53;;75510:14;;75471:53;:::i;:::-;75470:76;;75462:137;;;;-1:-1:-1;;;75462:137:0;;15890:2:1;75462:137:0;;;15872:21:1;15929:2;15909:18;;;15902:30;15968:34;15948:18;;;15941:62;-1:-1:-1;;;16019:18:1;;;16012:46;16075:19;;75462:137:0;15688:412:1;75462:137:0;75660:9;75618:38;75641:14;75618:22;:38::i;:::-;:51;75610:95;;;;-1:-1:-1;;;75610:95:0;;10535:2:1;75610:95:0;;;10517:21:1;10574:2;10554:18;;;10547:30;10613:33;10593:18;;;10586:61;10664:18;;75610:95:0;10333:355:1;75610:95:0;700:10;75774:36;;;;:22;:36;;;;;:54;;75814:14;;75774:36;:54;;75814:14;;75774:54;:::i;:::-;;;;-1:-1:-1;;75862:1:0;75845:18;;75841:533;;;75884:9;75880:275;75903:14;75899:1;:18;75880:275;;;75943:15;75961:13;:11;:13::i;:::-;75943:31;;75997:23;76012:7;75997:14;:23::i;:::-;75993:95;;;76044:24;76060:7;76044:15;:24::i;:::-;76107:32;700:10;76117:12;620:98;76107:32;-1:-1:-1;75919:3:0;;;;:::i;:::-;;;;75880:275;;75841:533;76187:15;76205:13;:11;:13::i;:::-;76187:31;;76237:23;76252:7;76237:14;:23::i;:::-;76233:87;;;76280:24;76296:7;76280:15;:24::i;:::-;76330:32;700:10;76340:12;620:98;57024:127;57089:4;57113:30;:12;57135:7;57113:21;:30::i;63042:192::-;63117:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63117:29:0;-1:-1:-1;;;;;63117:29:0;;;;;;;;:24;;63171:23;63117:24;63171:14;:23::i;:::-;-1:-1:-1;;;;;63162:46:0;;;;;;;;;;;63042:192;;:::o;43832:123::-;43901:7;43928:19;43936:3;40494:19;;40411:110;57318:355;57411:4;57436:16;57444:7;57436;:16::i;:::-;57428:73;;;;-1:-1:-1;;;57428:73:0;;16307:2:1;57428:73:0;;;16289:21:1;16346:2;16326:18;;;16319:30;16385:34;16365:18;;;16358:62;-1:-1:-1;;;16436:18:1;;;16429:42;16488:19;;57428:73:0;16105:408:1;57428:73:0;57512:13;57528:23;57543:7;57528:14;:23::i;:::-;57512:39;;57581:5;-1:-1:-1;;;;;57570:16:0;:7;-1:-1:-1;;;;;57570:16:0;;:51;;;;57614:7;-1:-1:-1;;;;;57590:31:0;:20;57602:7;57590:11;:20::i;:::-;-1:-1:-1;;;;;57590:31:0;;57570:51;:94;;;-1:-1:-1;;;;;;54564:25:0;;;54540:4;54564:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;57625:39;57562:103;57318:355;-1:-1:-1;;;;57318:355:0:o;60454:599::-;60579:4;-1:-1:-1;;;;;60552:31:0;:23;60567:7;60552:14;:23::i;:::-;-1:-1:-1;;;;;60552:31:0;;60544:85;;;;-1:-1:-1;;;60544:85:0;;16720:2:1;60544:85:0;;;16702:21:1;16759:2;16739:18;;;16732:30;16798:34;16778:18;;;16771:62;-1:-1:-1;;;16849:18:1;;;16842:39;16898:19;;60544:85:0;16518:405:1;60544:85:0;-1:-1:-1;;;;;60666:16:0;;60658:65;;;;-1:-1:-1;;;60658:65:0;;17130:2:1;60658:65:0;;;17112:21:1;17169:2;17149:18;;;17142:30;17208:34;17188:18;;;17181:62;-1:-1:-1;;;17259:18:1;;;17252:34;17303:19;;60658:65:0;16928:400:1;60658:65:0;60840:29;60857:1;60861:7;60840:8;:29::i;:::-;-1:-1:-1;;;;;60882:19:0;;;;;;:13;:19;;;;;:35;;60909:7;60882:26;:35::i;:::-;-1:-1:-1;;;;;;60928:17:0;;;;;;:13;:17;;;;;:30;;60950:7;60928:21;:30::i;:::-;-1:-1:-1;60971:29:0;:12;60988:7;60997:2;60971:16;:29::i;:::-;;61037:7;61033:2;-1:-1:-1;;;;;61018:27:0;61027:4;-1:-1:-1;;;;;61018:27:0;;;;;;;;;;;60454:599;;;:::o;35660:137::-;35731:7;35766:22;35770:3;35782:5;35766:3;:22::i;14343:220::-;14401:7;14425:6;14421:20;;-1:-1:-1;14440:1:0;14433:8;;14421:20;14452:9;14464:5;14468:1;14464;:5;:::i;:::-;14452:17;-1:-1:-1;14497:1:0;14488:5;14492:1;14452:17;14488:5;:::i;:::-;:10;14480:56;;;;-1:-1:-1;;;14480:56:0;;17833:2:1;14480:56:0;;;17815:21:1;17872:2;17852:18;;;17845:30;17911:34;17891:18;;;17884:62;-1:-1:-1;;;17962:18:1;;;17955:31;18003:19;;14480:56:0;17631:397:1;15041:153:0;15099:7;15131:1;15127;:5;15119:44;;;;-1:-1:-1;;;15119:44:0;;18235:2:1;15119:44:0;;;18217:21:1;18274:2;18254:18;;;18247:30;18313:28;18293:18;;;18286:56;18359:18;;15119:44:0;18033:350:1;15119:44:0;15181:5;15185:1;15181;:5;:::i;13926:158::-;13984:7;14017:1;14012;:6;;14004:49;;;;-1:-1:-1;;;14004:49:0;;18590:2:1;14004:49:0;;;18572:21:1;18629:2;18609:18;;;18602:30;18668:32;18648:18;;;18641:60;18718:18;;14004:49:0;18388:354:1;14004:49:0;14071:5;14075:1;14071;:5;:::i;44294:236::-;44374:7;;;;44434:22;44438:3;44450:5;44434:3;:22::i;:::-;44403:53;;;;-1:-1:-1;44294:236:0;-1:-1:-1;;;;;44294:236:0:o;61654:100::-;61727:19;;;;:8;;:19;;;;;:::i;45580:213::-;45687:7;45738:44;45743:3;45763;45769:12;45738:4;:44::i;:::-;45730:53;-1:-1:-1;45580:213:0;;;;;;:::o;13464:179::-;13522:7;;13554:5;13558:1;13554;:5;:::i;:::-;13542:17;;13583:1;13578;:6;;13570:46;;;;-1:-1:-1;;;13570:46:0;;18949:2:1;13570:46:0;;;18931:21:1;18988:2;18968:18;;;18961:30;19027:29;19007:18;;;19000:57;19074:18;;13570:46:0;18747:351:1;72891:559:0;72955:4;73006:16;;72975:27;;:47;72972:236;;;-1:-1:-1;73045:5:0;;72891:559;-1:-1:-1;72891:559:0:o;72972:236::-;73154:13;:11;:13::i;:::-;73124:27;;:43;;;;:::i;:::-;73091:27;;73072:16;;:46;;;;:::i;:::-;73071:97;73068:140;;;-1:-1:-1;73192:4:0;;72891:559;-1:-1:-1;72891:559:0:o;73068:140::-;73220:13;73236:86;73267:12;73281:15;700:10;73250:70;;;;;;19316:19:1;;;;19351:12;;19344:28;;;;-1:-1:-1;;19410:2:1;19406:15;;;19402:53;19388:12;;;19381:75;19472:12;;;19465:28;;;19509:13;;73250:70:0;;;;;;;;;;;;73236:6;:86::i;:::-;73220:102;-1:-1:-1;73354:4:0;73338:12;73346:4;73220:102;73338:12;:::i;:::-;73337:21;73333:110;;;-1:-1:-1;73382:4:0;;72891:559;-1:-1:-1;;72891:559:0:o;73333:110::-;-1:-1:-1;73426:5:0;;72891:559;-1:-1:-1;;72891:559:0:o;73333:110::-;72961:489;72891:559;;;:::o;76389:311::-;76451:26;76480:47;76493:4;76499:27;;76480:12;:47::i;:::-;76538:33;;;;:24;:33;;;;;;;;:54;;;76603:39;;;:19;:39;;;;;:49;;;76663:27;:29;;76451:76;;-1:-1:-1;76663:27:0;:29;;;:::i;:::-;;;;;;76440:260;76389:311;:::o;58016:110::-;58092:26;58102:2;58106:7;58092:26;;;;;;;;;;;;:9;:26::i;56439:272::-;56553:28;56563:4;56569:2;56573:7;56553:9;:28::i;:::-;56600:48;56623:4;56629:2;56633:7;56642:5;56600:22;:48::i;:::-;56592:111;;;;-1:-1:-1;;;56592:111:0;;;;;;;:::i;68843:576::-;68896:27;68940:7;68936:50;;-1:-1:-1;;68964:10:0;;;;;;;;;;;;-1:-1:-1;;;68964:10:0;;;;;68843:576::o;68936:50::-;69005:2;68996:6;69037:69;69044:6;;69037:69;;69067:5;;;;:::i;:::-;;-1:-1:-1;69087:7:0;;-1:-1:-1;69092:2:0;69087:7;;:::i;:::-;;;69037:69;;;69116:17;69146:3;69136:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69136:14:0;-1:-1:-1;69116:34:0;-1:-1:-1;69170:3:0;69184:198;69191:7;;69184:198;;69219:3;69221:1;69219;:3;:::i;:::-;69215:7;-1:-1:-1;69237:10:0;69267:7;69272:2;69267;:7;:::i;:::-;:12;;69277:2;69267:12;:::i;:::-;69262:17;;:2;:17;:::i;:::-;69251:29;;:2;:29;:::i;:::-;69237:44;;69296:9;69315:4;69308:12;;69296:24;;69345:2;69335:4;69340:1;69335:7;;;;;;;;:::i;:::-;;;;:12;-1:-1:-1;;;;;69335:12:0;;;;;;;;-1:-1:-1;69362:8:0;69368:2;69362:8;;:::i;:::-;;;69200:182;;69184:198;;;-1:-1:-1;69406:4:0;68843:576;-1:-1:-1;;;;68843:576:0:o;76708:859::-;76923:39;;;;;;;20346:19:1;;;20403:2;20399:15;;;-1:-1:-1;;20395:53:1;20381:12;;;20374:75;76848:1:0;20465:12:1;;;;20458:28;;;76923:39:0;;;;;;;;;;20502:12:1;;;;76923:39:0;;;76913:50;;;;;-1:-1:-1;;76848:1:0;20346:19:1;-1:-1:-1;77005:292:0;77028:5;:12;77024:1;:16;;;77005:292;;;77067:4;77074;77067:11;77083:1;77066:18;77062:200;;;77139:5;77145:1;77139:8;;;;;;;;;;:::i;:::-;;;;;;;77149:4;77122:32;;;;;;;;20682:19:1;;;20726:2;20717:12;;20710:28;20763:2;20754:12;;20525:247;77122:32:0;;;;;;;;;;;;;77112:43;;;;;;77105:50;;77062:200;;;77230:4;77236:5;77242:1;77236:8;;;;;;;;;;:::i;:::-;;;;;;;77213:32;;;;;;;;20682:19:1;;;20726:2;20717:12;;20710:28;20763:2;20754:12;;20525:247;77213:32:0;;;;;;;;;;;;;77203:43;;;;;;77196:50;;77062:200;77276:9;77284:1;77276:9;;:::i;:::-;;-1:-1:-1;77042:3:0;;;;:::i;:::-;;;;77005:292;;;;77376:6;77372:163;77392:9;:16;77388:20;;77372:163;;;77451:9;77461:1;77451:12;;;;;;;;:::i;:::-;;;;;;;;;77443:4;:20;77439:85;;;77504:4;77497:11;;;;;;;;77439:85;77410:3;;;;:::i;:::-;;;;77372:163;;;-1:-1:-1;77554:5:0;;76708:859;-1:-1:-1;;;;;;;76708:859:0:o;69897:340::-;700:10;69975:7;70017:36;;;:22;:36;;;;;;;70064:166;;70108:37;70126:18;70143:1;70126:14;:18;:::i;:::-;70108:13;;;:17;:37::i;70064:166::-;70185:13;;:33;;70203:14;70185:17;:33::i;43593:151::-;43677:4;40286:17;;;:12;;;:17;;;;;;:22;;43701:35;40191:125;34747:137;34817:4;34841:35;34849:3;34869:5;34841:7;:35::i;34440:131::-;34507:4;34531:32;34536:3;34556:5;34531:4;:32::i;43016:185::-;43105:4;43129:64;43134:3;43154;-1:-1:-1;;;;;43168:23:0;;43129:4;:64::i;30700:204::-;30795:18;;30767:7;;30795:26;-1:-1:-1;30787:73:0;;;;-1:-1:-1;;;30787:73:0;;21181:2:1;30787:73:0;;;21163:21:1;21220:2;21200:18;;;21193:30;21259:34;21239:18;;;21232:62;-1:-1:-1;;;21310:18:1;;;21303:32;21352:19;;30787:73:0;20979:398:1;30787:73:0;30878:3;:11;;30890:5;30878:18;;;;;;;;:::i;:::-;;;;;;;;;30871:25;;30700:204;;;;:::o;40876:279::-;40980:19;;40943:7;;;;40980:27;-1:-1:-1;40972:74:0;;;;-1:-1:-1;;;40972:74:0;;21584:2:1;40972:74:0;;;21566:21:1;21623:2;21603:18;;;21596:30;21662:34;21642:18;;;21635:62;-1:-1:-1;;;21713:18:1;;;21706:32;21755:19;;40972:74:0;21382:398:1;40972:74:0;41059:22;41084:3;:12;;41097:5;41084:19;;;;;;;;:::i;:::-;;;;;;;;;;;41059:44;;41122:5;:10;;;41134:5;:12;;;41114:33;;;;;40876:279;;;;;:::o;42373:319::-;42467:7;42506:17;;;:12;;;:17;;;;;;42557:12;42542:13;42534:36;;;;-1:-1:-1;;;42534:36:0;;;;;;;;:::i;:::-;-1:-1:-1;42624:3:0;42637:12;42648:1;42637:8;:12;:::i;:::-;42624:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;42617:40;;;42373:319;;;;;:::o;68408:138::-;68468:7;68530:5;68513:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;68513:23:0;;;;;;;;;68503:34;;68513:23;68503:34;;;;;68408:138;-1:-1:-1;;68408:138:0:o;58353:250::-;58449:18;58455:2;58459:7;58449:5;:18::i;:::-;58486:54;58517:1;58521:2;58525:7;58534:5;58486:22;:54::i;:::-;58478:117;;;;-1:-1:-1;;;58478:117:0;;;;;;;:::i;62319:604::-;62440:4;-1:-1:-1;;;;;62467:13:0;;19235:20;62462:60;;-1:-1:-1;62506:4:0;62499:11;;62462:60;62532:23;62558:252;-1:-1:-1;;;700:10:0;62698:4;62717:7;62739:5;62574:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;62574:181:0;;;;;;;-1:-1:-1;;;;;62574:181:0;;;;;;;;;;;62558:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62558:15:0;;;:252;:15;:252::i;:::-;62532:278;;62821:13;62848:10;62837:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;62888:26:0;-1:-1:-1;;;62888:26:0;;-1:-1:-1;;;62319:604:0;;;;;;:::o;28402:1544::-;28468:4;28607:19;;;:12;;;:19;;;;;;28643:15;;28639:1300;;29005:21;29029:14;29042:1;29029:10;:14;:::i;:::-;29078:18;;29005:38;;-1:-1:-1;29058:17:0;;29078:22;;29099:1;;29078:22;:::i;:::-;29058:42;;29345:17;29365:3;:11;;29377:9;29365:22;;;;;;;;:::i;:::-;;;;;;;;;29345:42;;29511:9;29482:3;:11;;29494:13;29482:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;29614:17;:13;29630:1;29614:17;:::i;:::-;29588:23;;;;:12;;;:23;;;;;:43;29740:17;;29588:3;;29740:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29835:3;:12;;:19;29848:5;29835:19;;;;;;;;;;;29828:26;;;29878:4;29871:11;;;;;;;;28639:1300;29922:5;29915:12;;;;;27812:414;27875:4;40286:17;;;:12;;;:17;;;;;;27892:327;;-1:-1:-1;27935:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;28118:18;;28096:19;;;:12;;;:19;;;;;;:40;;;;28151:11;;27892:327;-1:-1:-1;28202:5:0;28195:12;;37691:692;37767:4;37902:17;;;:12;;;:17;;;;;;37936:13;37932:444;;-1:-1:-1;;38021:38:0;;;;;;;;;;;;;;;;;;38003:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;38218:19;;38198:17;;;:12;;;:17;;;;;;;:39;38252:11;;37932:444;38332:5;38296:3;38309:12;38320:1;38309:8;:12;:::i;:::-;38296:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;:41;;;;38359:5;38352:12;;;;;58939:404;-1:-1:-1;;;;;59019:16:0;;59011:61;;;;-1:-1:-1;;;59011:61:0;;23148:2:1;59011:61:0;;;23130:21:1;;;23167:18;;;23160:30;23226:34;23206:18;;;23199:62;23278:18;;59011:61:0;22946:356:1;59011:61:0;59092:16;59100:7;59092;:16::i;:::-;59091:17;59083:58;;;;-1:-1:-1;;;59083:58:0;;23509:2:1;59083:58:0;;;23491:21:1;23548:2;23528:18;;;23521:30;23587;23567:18;;;23560:58;23635:18;;59083:58:0;23307:352:1;59083:58:0;-1:-1:-1;;;;;59212:17:0;;;;;;:13;:17;;;;;:30;;59234:7;59212:21;:30::i;:::-;-1:-1:-1;59255:29:0;:12;59272:7;59281:2;59255:16;:29::i;:::-;-1:-1:-1;59302:33:0;;59327:7;;-1:-1:-1;;;;;59302:33:0;;;59319:1;;59302:33;;59319:1;;59302:33;58939:404;;:::o;21786:195::-;21889:12;21921:52;21943:6;21951:4;21957:1;21960:12;21889;19235:20;;23082:60;;;;-1:-1:-1;;;23082:60:0;;24273:2:1;23082:60:0;;;24255:21:1;24312:2;24292:18;;;24285:30;24351:31;24331:18;;;24324:59;24400:18;;23082:60:0;24071:353:1;23082:60:0;23216:12;23230:23;23257:6;-1:-1:-1;;;;;23257:11:0;23277:5;23285:4;23257:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23215:75;;;;23308:52;23326:7;23335:10;23347:12;23308:17;:52::i;:::-;23301:59;22838:530;-1:-1:-1;;;;;;;22838:530:0:o;25378:742::-;25493:12;25522:7;25518:595;;;-1:-1:-1;25553:10:0;25546:17;;25518:595;25667:17;;:21;25663:439;;25930:10;25924:17;25991:15;25978:10;25974:2;25970:19;25963:44;25663:439;26073:12;26066:20;;-1:-1:-1;;;26066:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:131::-;-1:-1:-1;;;;;;273:32:1;;263:43;;253:71;;320:1;317;310:12;335:245;393:6;446:2;434:9;425:7;421:23;417:32;414:52;;;462:1;459;452:12;414:52;501:9;488:23;520:30;544:5;520:30;:::i;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:1;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:1:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1528:127::-;1589:10;1584:3;1580:20;1577:1;1570:31;1620:4;1617:1;1610:15;1644:4;1641:1;1634:15;1660:275;1731:2;1725:9;1796:2;1777:13;;-1:-1:-1;;1773:27:1;1761:40;;1831:18;1816:34;;1852:22;;;1813:62;1810:88;;;1878:18;;:::i;:::-;1914:2;1907:22;1660:275;;-1:-1:-1;1660:275:1:o;1940:407::-;2005:5;2039:18;2031:6;2028:30;2025:56;;;2061:18;;:::i;:::-;2099:57;2144:2;2123:15;;-1:-1:-1;;2119:29:1;2150:4;2115:40;2099:57;:::i;:::-;2090:66;;2179:6;2172:5;2165:21;2219:3;2210:6;2205:3;2201:16;2198:25;2195:45;;;2236:1;2233;2226:12;2195:45;2285:6;2280:3;2273:4;2266:5;2262:16;2249:43;2339:1;2332:4;2323:6;2316:5;2312:18;2308:29;2301:40;1940:407;;;;;:::o;2352:451::-;2421:6;2474:2;2462:9;2453:7;2449:23;2445:32;2442:52;;;2490:1;2487;2480:12;2442:52;2530:9;2517:23;2563:18;2555:6;2552:30;2549:50;;;2595:1;2592;2585:12;2549:50;2618:22;;2671:4;2663:13;;2659:27;-1:-1:-1;2649:55:1;;2700:1;2697;2690:12;2649:55;2723:74;2789:7;2784:2;2771:16;2766:2;2762;2758:11;2723:74;:::i;3016:173::-;3084:20;;-1:-1:-1;;;;;3133:31:1;;3123:42;;3113:70;;3179:1;3176;3169:12;3194:254;3262:6;3270;3323:2;3311:9;3302:7;3298:23;3294:32;3291:52;;;3339:1;3336;3329:12;3291:52;3362:29;3381:9;3362:29;:::i;:::-;3352:39;3438:2;3423:18;;;;3410:32;;-1:-1:-1;;;3194:254:1:o;3635:328::-;3712:6;3720;3728;3781:2;3769:9;3760:7;3756:23;3752:32;3749:52;;;3797:1;3794;3787:12;3749:52;3820:29;3839:9;3820:29;:::i;:::-;3810:39;;3868:38;3902:2;3891:9;3887:18;3868:38;:::i;:::-;3858:48;;3953:2;3942:9;3938:18;3925:32;3915:42;;3635:328;;;;;:::o;3968:186::-;4027:6;4080:2;4068:9;4059:7;4055:23;4051:32;4048:52;;;4096:1;4093;4086:12;4048:52;4119:29;4138:9;4119:29;:::i;4344:347::-;4409:6;4417;4470:2;4458:9;4449:7;4445:23;4441:32;4438:52;;;4486:1;4483;4476:12;4438:52;4509:29;4528:9;4509:29;:::i;:::-;4499:39;;4588:2;4577:9;4573:18;4560:32;4635:5;4628:13;4621:21;4614:5;4611:32;4601:60;;4657:1;4654;4647:12;4601:60;4680:5;4670:15;;;4344:347;;;;;:::o;4696:667::-;4791:6;4799;4807;4815;4868:3;4856:9;4847:7;4843:23;4839:33;4836:53;;;4885:1;4882;4875:12;4836:53;4908:29;4927:9;4908:29;:::i;:::-;4898:39;;4956:38;4990:2;4979:9;4975:18;4956:38;:::i;:::-;4946:48;;5041:2;5030:9;5026:18;5013:32;5003:42;;5096:2;5085:9;5081:18;5068:32;5123:18;5115:6;5112:30;5109:50;;;5155:1;5152;5145:12;5109:50;5178:22;;5231:4;5223:13;;5219:27;-1:-1:-1;5209:55:1;;5260:1;5257;5250:12;5209:55;5283:74;5349:7;5344:2;5331:16;5326:2;5322;5318:11;5283:74;:::i;:::-;5273:84;;;4696:667;;;;;;;:::o;5368:260::-;5436:6;5444;5497:2;5485:9;5476:7;5472:23;5468:32;5465:52;;;5513:1;5510;5503:12;5465:52;5536:29;5555:9;5536:29;:::i;:::-;5526:39;;5584:38;5618:2;5607:9;5603:18;5584:38;:::i;:::-;5574:48;;5368:260;;;;;:::o;5633:1082::-;5735:6;5743;5751;5804:2;5792:9;5783:7;5779:23;5775:32;5772:52;;;5820:1;5817;5810:12;5772:52;5856:9;5843:23;5833:33;;5885:2;5934;5923:9;5919:18;5906:32;5896:42;;5989:2;5978:9;5974:18;5961:32;6012:18;6053:2;6045:6;6042:14;6039:34;;;6069:1;6066;6059:12;6039:34;6107:6;6096:9;6092:22;6082:32;;6152:7;6145:4;6141:2;6137:13;6133:27;6123:55;;6174:1;6171;6164:12;6123:55;6210:2;6197:16;6232:2;6228;6225:10;6222:36;;;6238:18;;:::i;:::-;6284:2;6281:1;6277:10;6267:20;;6307:28;6331:2;6327;6323:11;6307:28;:::i;:::-;6369:15;;;6439:11;;;6435:20;;;6400:12;;;;6467:19;;;6464:39;;;6499:1;6496;6489:12;6464:39;6523:11;;;;6543:142;6559:6;6554:3;6551:15;6543:142;;;6625:17;;6613:30;;6576:12;;;;6663;;;;6543:142;;;6704:5;6694:15;;;;;;;;5633:1082;;;;;:::o;6720:356::-;6922:2;6904:21;;;6941:18;;;6934:30;7000:34;6995:2;6980:18;;6973:62;7067:2;7052:18;;6720:356::o;7081:380::-;7160:1;7156:12;;;;7203;;;7224:61;;7278:4;7270:6;7266:17;7256:27;;7224:61;7331:2;7323:6;7320:14;7300:18;7297:38;7294:161;;;7377:10;7372:3;7368:20;7365:1;7358:31;7412:4;7409:1;7402:15;7440:4;7437:1;7430:15;8706:413;8908:2;8890:21;;;8947:2;8927:18;;;8920:30;8986:34;8981:2;8966:18;;8959:62;-1:-1:-1;;;9052:2:1;9037:18;;9030:47;9109:3;9094:19;;8706:413::o;9124:127::-;9185:10;9180:3;9176:20;9173:1;9166:31;9216:4;9213:1;9206:15;9240:4;9237:1;9230:15;10693:127;10754:10;10749:3;10745:20;10742:1;10735:31;10785:4;10782:1;10775:15;10809:4;10806:1;10799:15;10825:135;10864:3;-1:-1:-1;;10885:17:1;;10882:43;;;10905:18;;:::i;:::-;-1:-1:-1;10952:1:1;10941:13;;10825:135::o;12090:128::-;12130:3;12161:1;12157:6;12154:1;12151:13;12148:39;;;12167:18;;:::i;:::-;-1:-1:-1;12203:9:1;;12090:128::o;12993:470::-;13172:3;13210:6;13204:13;13226:53;13272:6;13267:3;13260:4;13252:6;13248:17;13226:53;:::i;:::-;13342:13;;13301:16;;;;13364:57;13342:13;13301:16;13398:4;13386:17;;13364:57;:::i;:::-;13437:20;;12993:470;-1:-1:-1;;;;12993:470:1:o;13468:127::-;13529:10;13524:3;13520:20;13517:1;13510:31;13560:4;13557:1;13550:15;13584:4;13581:1;13574:15;13600:112;13632:1;13658;13648:35;;13663:18;;:::i;:::-;-1:-1:-1;13697:9:1;;13600:112::o;14435:125::-;14475:4;14503:1;14500;14497:8;14494:34;;;14508:18;;:::i;:::-;-1:-1:-1;14545:9:1;;14435:125::o;17333:168::-;17373:7;17439:1;17435;17431:6;17427:14;17424:1;17421:21;17416:1;17409:9;17402:17;17398:45;17395:71;;;17446:18;;:::i;:::-;-1:-1:-1;17486:9:1;;17333:168::o;17506:120::-;17546:1;17572;17562:35;;17577:18;;:::i;:::-;-1:-1:-1;17611:9:1;;17506:120::o;19533:414::-;19735:2;19717:21;;;19774:2;19754:18;;;19747:30;19813:34;19808:2;19793:18;;19786:62;-1:-1:-1;;;19879:2:1;19864:18;;19857:48;19937:3;19922:19;;19533:414::o;19952:204::-;19990:3;20026:4;20023:1;20019:12;20058:4;20055:1;20051:12;20093:3;20087:4;20083:14;20078:3;20075:23;20072:49;;;20101:18;;:::i;:::-;20137:13;;19952:204;-1:-1:-1;;;19952:204:1:o;20777:197::-;20815:3;20843:6;20884:2;20877:5;20873:14;20911:2;20902:7;20899:15;20896:41;;;20917:18;;:::i;:::-;20966:1;20953:15;;20777:197;-1:-1:-1;;;20777:197:1:o;21785:276::-;21916:3;21954:6;21948:13;21970:53;22016:6;22011:3;22004:4;21996:6;21992:17;21970:53;:::i;:::-;22039:16;;;;;21785:276;-1:-1:-1;;21785:276:1:o;22066:489::-;-1:-1:-1;;;;;22335:15:1;;;22317:34;;22387:15;;22382:2;22367:18;;22360:43;22434:2;22419:18;;22412:34;;;22482:3;22477:2;22462:18;;22455:31;;;22260:4;;22503:46;;22529:19;;22521:6;22503:46;:::i;:::-;22495:54;22066:489;-1:-1:-1;;;;;;22066:489:1:o;22560:249::-;22629:6;22682:2;22670:9;22661:7;22657:23;22653:32;22650:52;;;22698:1;22695;22688:12;22650:52;22730:9;22724:16;22749:30;22773:5;22749:30;:::i;22814:127::-;22875:10;22870:3;22866:20;22863:1;22856:31;22906:4;22903:1;22896:15;22930:4;22927:1;22920:15
Swarm Source
ipfs://e2148f4de9ccecd587dd8eae58772de38c6ce4915469ae5f06a93ec487b9d062
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.