Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
374 HOGENFT
Holders
332
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HOGENFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HogeNFT
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-03-09 */ pragma solidity >=0.6.0 <0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } 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)))); } } 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); } } 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); } } } } library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } 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; } } 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)); } } abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } } 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); } abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } 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; } 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); } 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); } 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); } contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); // internal owner _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (!to.isContract()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } function _approve(address to, uint256 tokenId) private { _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 { } } abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } } contract HogeNFT is Context, AccessControl, ERC721Burnable, ERC721Pausable { using Counters for Counters.Counter; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); Counters.Counter private _tokenIdTracker; event Received(address, uint); receive() external payable { emit Received(msg.sender, msg.value); } /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the * account that deploys the contract. * * Token URIs will be autogenerated based on `baseURI` and their token IDs. * See {ERC721-tokenURI}. */ constructor(string memory name, string memory symbol, string memory baseURI) public ERC721(name, symbol) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); _setBaseURI(baseURI); } /** * @dev Creates a new token for `to`. Its token ID will be automatically * assigned (and available on the emitted {IERC721-Transfer} event), and the token * URI autogenerated based on the base URI passed at construction. * * See {ERC721-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint(address to, string memory uri) public returns (uint) { require(hasRole(MINTER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have minter role to mint"); // We cannot just use balanceOf to create the new tokenId because tokens // can be burned (destroyed), so we need a separate counter. _safeMint(to, _tokenIdTracker.current()); _setTokenURI(_tokenIdTracker.current(), uri); _tokenIdTracker.increment(); } function mintBatch(address[] memory recipients, bytes32[] memory uri_bytes) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint"); string[] storage uris; for (uint256 i = 0; i < uri_bytes.length; i++) { uris.push(bytes32ToString(uri_bytes[i])); } for (uint256 i = 0; i < recipients.length; i++) { _safeMint(recipients[i], _tokenIdTracker.current()); _setTokenURI(_tokenIdTracker.current(), uris[i]); _tokenIdTracker.increment(); } } function bytes32ToString(bytes32 x) public returns (string memory) { bytes memory bytesString = new bytes(32); uint charCount = 0; for (uint j = 0; j < 32; j++) { byte char = byte(bytes32(uint(x) * 2 ** (8 * j))); if (char != 0) { bytesString[charCount] = char; charCount++; } } bytes memory bytesStringTrimmed = new bytes(charCount); for (uint j = 0; j < charCount; j++) { bytesStringTrimmed[j] = bytesString[j]; } return string(bytesStringTrimmed); } /** * @dev Pauses all token transfers. * * See {ERC721Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC721Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to unpause"); _unpause(); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"x","type":"bytes32"}],"name":"bytes32ToString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"bytes32[]","name":"uri_bytes","type":"bytes32[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162004d0138038062004d01833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001d257600080fd5b83820191506020820185811115620001e957600080fd5b82518660018202830111640100000000821117156200020757600080fd5b8083526020830192505050908051906020019080838360005b838110156200023d57808201518184015260208101905062000220565b50505050905090810190601f1680156200026b5780820380516001836020036101000a031916815260200191505b5060405250505082826200028c6301ffc9a760e01b620003e360201b60201c565b8160079080519060200190620002a49291906200069e565b508060089080519060200190620002bd9291906200069e565b50620002d66380ac58cd60e01b620003e360201b60201c565b620002ee635b5e139f60e01b620003e360201b60201c565b6200030663780e9d6360e01b620003e360201b60201c565b50506000600b60006101000a81548160ff021916908315150217905550620003476000801b6200033b620004ec60201b60201c565b620004f460201b60201c565b620003887f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200037c620004ec60201b60201c565b620004f460201b60201c565b620003c97f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620003bd620004ec60201b60201c565b620004f460201b60201c565b620003da816200050a60201b60201c565b50505062000754565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b6200050682826200052660201b60201c565b5050565b80600a9080519060200190620005229291906200069e565b5050565b6200055481600080858152602001908152602001600020600001620005c960201b620025fc1790919060201c565b15620005c5576200056a620004ec60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620005f9836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200060160201b60201c565b905092915050565b60006200061583836200067b60201b60201c565b6200067057826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000675565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620006d6576000855562000722565b82601f10620006f157805160ff191683800117855562000722565b8280016001018555821562000722579182015b828111156200072157825182559160200191906001019062000704565b5b50905062000731919062000735565b5090565b5b808211156200075057600081600090555060010162000736565b5090565b61459d80620007646000396000f3fe6080604052600436106101fd5760003560e01c806370a082311161010d578063b88d4fde116100a0578063d53913931161006f578063d539139314610eaf578063d547741f14610eda578063e63ab1e914610f35578063e985e9c514610f60578063f0d3dcc514610fe757610259565b8063b88d4fde14610b9e578063c87b56dd14610cb0578063ca15c87314610d64578063d0def52114610db357610259565b80639201de55116100dc5780639201de55146109d257806395d89b4114610a86578063a217fddf14610b16578063a22cb46514610b4157610259565b806370a08231146108765780638456cb59146108db5780639010d07c146108f257806391d148541461096157610259565b80632f745c591161019057806342966c681161015f57806342966c68146106ca5780634f6ccce7146107055780635c975abb146107545780636352211e146107815780636c0360eb146107e657610259565b80632f745c591461056e57806336568abe146105dd5780633f4ba83a1461063857806342842e0e1461064f57610259565b806318160ddd116101cc57806318160ddd1461041e57806323b872dd14610449578063248a9ca3146104c45780632f2ff15d1461051357610259565b806301ffc9a71461025e57806306fdde03146102ce578063081812fc1461035e578063095ea7b3146103c357610259565b36610259577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1005b600080fd5b34801561026a57600080fd5b506102b66004803603602081101561028157600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611140565b60405180821515815260200191505060405180910390f35b3480156102da57600080fd5b506102e36111a8565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610323578082015181840152602081019050610308565b50505050905090810190601f1680156103505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036a57600080fd5b506103976004803603602081101561038157600080fd5b810190808035906020019092919050505061124a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103cf57600080fd5b5061041c600480360360408110156103e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112e5565b005b34801561042a57600080fd5b50610433611429565b6040518082815260200191505060405180910390f35b34801561045557600080fd5b506104c26004803603606081101561046c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061143a565b005b3480156104d057600080fd5b506104fd600480360360208110156104e757600080fd5b81019080803590602001909291905050506114b0565b6040518082815260200191505060405180910390f35b34801561051f57600080fd5b5061056c6004803603604081101561053657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114cf565b005b34801561057a57600080fd5b506105c76004803603604081101561059157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611558565b6040518082815260200191505060405180910390f35b3480156105e957600080fd5b506106366004803603604081101561060057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115b3565b005b34801561064457600080fd5b5061064d61164c565b005b34801561065b57600080fd5b506106c86004803603606081101561067257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116dc565b005b3480156106d657600080fd5b50610703600480360360208110156106ed57600080fd5b81019080803590602001909291905050506116fc565b005b34801561071157600080fd5b5061073e6004803603602081101561072857600080fd5b810190808035906020019092919050505061176e565b6040518082815260200191505060405180910390f35b34801561076057600080fd5b50610769611791565b60405180821515815260200191505060405180910390f35b34801561078d57600080fd5b506107ba600480360360208110156107a457600080fd5b81019080803590602001909291905050506117a8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107f257600080fd5b506107fb6117df565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561083b578082015181840152602081019050610820565b50505050905090810190601f1680156108685780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561088257600080fd5b506108c56004803603602081101561089957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611881565b6040518082815260200191505060405180910390f35b3480156108e757600080fd5b506108f0611956565b005b3480156108fe57600080fd5b506109356004803603604081101561091557600080fd5b8101908080359060200190929190803590602001909291905050506119e6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561096d57600080fd5b506109ba6004803603604081101561098457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a17565b60405180821515815260200191505060405180910390f35b3480156109de57600080fd5b50610a0b600480360360208110156109f557600080fd5b8101908080359060200190929190505050611a48565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a4b578082015181840152602081019050610a30565b50505050905090810190601f168015610a785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a9257600080fd5b50610a9b611c00565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610adb578082015181840152602081019050610ac0565b50505050905090810190601f168015610b085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b2257600080fd5b50610b2b611ca2565b6040518082815260200191505060405180910390f35b348015610b4d57600080fd5b50610b9c60048036036040811015610b6457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611ca9565b005b348015610baa57600080fd5b50610cae60048036036080811015610bc157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610c2857600080fd5b820183602082011115610c3a57600080fd5b80359060200191846001830284011164010000000083111715610c5c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e5f565b005b348015610cbc57600080fd5b50610ce960048036036020811015610cd357600080fd5b8101908080359060200190929190505050611ed7565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d29578082015181840152602081019050610d0e565b50505050905090810190601f168015610d565780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610d7057600080fd5b50610d9d60048036036020811015610d8757600080fd5b81019080803590602001909291905050506121a8565b6040518082815260200191505060405180910390f35b348015610dbf57600080fd5b50610e9960048036036040811015610dd657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610e1357600080fd5b820183602082011115610e2557600080fd5b80359060200191846001830284011164010000000083111715610e4757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506121ce565b6040518082815260200191505060405180910390f35b348015610ebb57600080fd5b50610ec461228c565b6040518082815260200191505060405180910390f35b348015610ee657600080fd5b50610f3360048036036040811015610efd57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122b0565b005b348015610f4157600080fd5b50610f4a612339565b6040518082815260200191505060405180910390f35b348015610f6c57600080fd5b50610fcf60048036036040811015610f8357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061235d565b60405180821515815260200191505060405180910390f35b348015610ff357600080fd5b5061113e6004803603604081101561100a57600080fd5b810190808035906020019064010000000081111561102757600080fd5b82018360208201111561103957600080fd5b8035906020019184602083028401116401000000008311171561105b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156110bb57600080fd5b8201836020820111156110cd57600080fd5b803590602001918460208302840111640100000000831117156110ef57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506123f1565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112405780601f1061121557610100808354040283529160200191611240565b820191906000526020600020905b81548152906001019060200180831161122357829003601f168201915b5050505050905090565b60006112558261262c565b6112aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061438a602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006112f0826117a8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061443a6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611396612649565b73ffffffffffffffffffffffffffffffffffffffff1614806113c557506113c4816113bf612649565b61235d565b5b61141a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806142a56038913960400191505060405180910390fd5b6114248383612651565b505050565b6000611435600361270a565b905090565b61144b611445612649565b8261271f565b6114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061445b6031913960400191505060405180910390fd5b6114ab838383612813565b505050565b6000806000838152602001908152602001600020600201549050919050565b6114f5600080848152602001908152602001600020600201546114f0612649565b611a17565b61154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614160602f913960400191505060405180910390fd5b6115548282612a56565b5050565b60006115ab82600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ae990919063ffffffff16565b905092915050565b6115bb612649565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461163e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614539602f913960400191505060405180910390fd5b6116488282612b03565b5050565b61167d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611678612649565b611a17565b6116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806144f96040913960400191505060405180910390fd5b6116da612b96565b565b6116f783838360405180602001604052806000815250611e5f565b505050565b61170d611707612649565b8261271f565b611762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806144c96030913960400191505060405180910390fd5b61176b81612c81565b50565b600080611785836003612dbb90919063ffffffff16565b50905080915050919050565b6000600b60009054906101000a900460ff16905090565b60006117d882604051806060016040528060298152602001614307602991396003612de79092919063ffffffff16565b9050919050565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118775780601f1061184c57610100808354040283529160200191611877565b820191906000526020600020905b81548152906001019060200180831161185a57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611908576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806142dd602a913960400191505060405180910390fd5b61194f600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e06565b9050919050565b6119877f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611982612649565b611a17565b6119dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806141c1603e913960400191505060405180910390fd5b6119e4612e1b565b565b6000611a0f82600080868152602001908152602001600020600001612f0790919063ffffffff16565b905092915050565b6000611a4082600080868152602001908152602001600020600001612f2190919063ffffffff16565b905092915050565b60606000602067ffffffffffffffff81118015611a6457600080fd5b506040519080825280601f01601f191660200182016040528015611a975781602001600182028036833780820191505090505b5090506000805b6020811015611b3a5760008160080260020a8660001c0260001b9050600060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611b2c5780848481518110611af457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082806001019350505b508080600101915050611a9e565b5060008167ffffffffffffffff81118015611b5457600080fd5b506040519080825280601f01601f191660200182016040528015611b875781602001600182028036833780820191505090505b50905060005b82811015611bf457838181518110611ba157fe5b602001015160f81c60f81b828281518110611bb857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050611b8d565b50809350505050919050565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c985780601f10611c6d57610100808354040283529160200191611c98565b820191906000526020600020905b815481529060010190602001808311611c7b57829003601f168201915b5050505050905090565b6000801b81565b611cb1612649565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d52576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060066000611d5f612649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e0c612649565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b611e70611e6a612649565b8361271f565b611ec5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061445b6031913960400191505060405180910390fd5b611ed184848484612f51565b50505050565b6060611ee28261262c565b611f37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061440b602f913960400191505060405180910390fd5b6000600960008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611fe05780601f10611fb557610100808354040283529160200191611fe0565b820191906000526020600020905b815481529060010190602001808311611fc357829003601f168201915b505050505090506000611ff16117df565b90506000815114156120075781925050506121a3565b6000825111156120d85780826040516020018083805190602001908083835b602083106120495780518252602082019150602081019050602083039250612026565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061209a5780518252602082019150602081019050602083039250612077565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050506121a3565b806120e285612fc3565b6040516020018083805190602001908083835b6020831061211857805182526020820191506020810190506020830392506120f5565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106121695780518252602082019150602081019050602083039250612146565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b60006121c760008084815260200190815260200160002060000161310a565b9050919050565b60006122017f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66121fc612649565b611a17565b612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d81526020018061448c603d913960400191505060405180910390fd5b61226983612264600c61311f565b61312d565b61227c612276600c61311f565b8361314b565b612286600c6131d5565b92915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6122d6600080848152602001908152602001600020600201546122d1612649565b611a17565b61232b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806142756030913960400191505060405180910390fd5b6123358282612b03565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124227f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661241d612649565b611a17565b612477576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806143526038913960400191505060405180910390fd5b600080600090505b82518110156124eb57816124a584838151811061249857fe5b6020026020010151611a48565b9080600181540180825580915050600190039060005260206000200160009091909190915090805190602001906124dd92919061401f565b50808060010191505061247f565b5060005b83518110156125f65761251e84828151811061250757fe5b6020026020010151612519600c61311f565b61312d565b6125df61252b600c61311f565b83838154811061253757fe5b906000526020600020018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125d55780601f106125aa576101008083540402835291602001916125d5565b820191906000526020600020905b8154815290600101906020018083116125b857829003601f168201915b505050505061314b565b6125e9600c6131d5565b80806001019150506124ef565b50505050565b6000612624836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6131eb565b905092915050565b600061264282600361325b90919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126c4836117a8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061271882600001613275565b9050919050565b600061272a8261262c565b61277f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614249602c913960400191505060405180910390fd5b600061278a836117a8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127f957508373ffffffffffffffffffffffffffffffffffffffff166127e18461124a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061280a5750612809818561235d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612833826117a8565b73ffffffffffffffffffffffffffffffffffffffff161461289f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806143e26029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612925576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806141ff6024913960400191505060405180910390fd5b612930838383613286565b61293b600082612651565b61298c81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061329690919063ffffffff16565b506129de81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206132b090919063ffffffff16565b506129f5818360036132ca9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612a7d816000808581526020019081526020016000206000016125fc90919063ffffffff16565b15612ae557612a8a612649565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612af883600001836132ff565b60001c905092915050565b612b2a8160008085815260200190815260200160002060000161338290919063ffffffff16565b15612b9257612b37612649565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b612b9e611791565b612c10576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612c54612649565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000612c8c826117a8565b9050612c9a81600084613286565b612ca5600083612651565b60006009600084815260200190815260200160002080546001816001161561010002031660029004905014612cf457600960008381526020019081526020016000206000612cf391906140ad565b5b612d4582600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061329690919063ffffffff16565b50612d5a8260036133b290919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080600080612dce86600001866133cc565b915091508160001c8160001c9350935050509250929050565b6000612dfa846000018460001b84613465565b60001c90509392505050565b6000612e148260000161355b565b9050919050565b612e23611791565b15612e96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612eda612649565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000612f1683600001836132ff565b60001c905092915050565b6000612f49836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61356c565b905092915050565b612f5c848484612813565b612f688484848461358f565b612fbd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061418f6032913960400191505060405180910390fd5b50505050565b6060600082141561300b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613105565b600082905060005b60008214613035578080600101915050600a828161302d57fe5b049150613013565b60008167ffffffffffffffff8111801561304e57600080fd5b506040519080825280601f01601f1916602001820160405280156130815781602001600182028036833780820191505090505b50905060006001830390508593505b600084146130fd57600a84816130a257fe5b0660300160f81b828280600190039350815181106130bc57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816130f557fe5b049350613090565b819450505050505b919050565b60006131188260000161355b565b9050919050565b600081600001549050919050565b6131478282604051806020016040528060008152506137a8565b5050565b6131548261262c565b6131a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806143b6602c913960400191505060405180910390fd5b806009600084815260200190815260200160002090805190602001906131d092919061401f565b505050565b6001816000016000828254019250508190555050565b60006131f7838361356c565b613250578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613255565b600090505b92915050565b600061326d836000018360001b613819565b905092915050565b600081600001805490509050919050565b61329183838361383c565b505050565b60006132a8836000018360001b6138aa565b905092915050565b60006132c2836000018360001b6131eb565b905092915050565b60006132f6846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613992565b90509392505050565b600081836000018054905011613360576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806141136022913960400191505060405180910390fd5b82600001828154811061336f57fe5b9060005260206000200154905092915050565b60006133aa836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6138aa565b905092915050565b60006133c4836000018360001b613a6e565b905092915050565b6000808284600001805490501161342e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143306022913960400191505060405180910390fd5b600084600001848154811061343f57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061352c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134f15780820151818401526020810190506134d6565b50505050905090810190601f16801561351e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061353f57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60006135b08473ffffffffffffffffffffffffffffffffffffffff16613b87565b6135bd57600190506137a0565b600061372763150b7a0260e01b6135d2612649565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561365657808201518184015260208101905061363b565b50505050905090810190601f1680156136835780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161418f603291398773ffffffffffffffffffffffffffffffffffffffff16613b9a9092919063ffffffff16565b9050600081806020019051602081101561374057600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b6137b28383613bb2565b6137bf600084848461358f565b613814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061418f6032913960400191505060405180910390fd5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b613847838383613da6565b61384f611791565b156138a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614135602b913960400191505060405180910390fd5b505050565b6000808360010160008481526020019081526020016000205490506000811461398657600060018203905060006001866000018054905003905060008660000182815481106138f557fe5b906000526020600020015490508087600001848154811061391257fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061394a57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061398c565b60009150505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613a3957846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613a67565b82856000016001830381548110613a4c57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b60008083600101600084815260200190815260200160002054905060008114613b7b5760006001820390506000600186600001805490500390506000866000018281548110613ab957fe5b9060005260206000209060020201905080876000018481548110613ad957fe5b9060005260206000209060020201600082015481600001556001820154816001015590505060018301876001016000836000015481526020019081526020016000208190555086600001805480613b2c57fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050613b81565b60009150505b92915050565b600080823b905060008111915050919050565b6060613ba98484600085613dab565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613c5e8161262c565b15613cd1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b613cdd60008383613286565b613d2e81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206132b090919063ffffffff16565b50613d45818360036132ca9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b606082471015613e06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142236026913960400191505060405180910390fd5b613e0f85613b87565b613e81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613ed05780518252602082019150602081019050602083039250613ead565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613f32576040519150601f19603f3d011682016040523d82523d6000602084013e613f37565b606091505b5091509150613f47828286613f53565b92505050949350505050565b60608315613f6357829050614018565b600083511115613f765782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613fdd578082015181840152602081019050613fc2565b50505050905090810190601f16801561400a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282614055576000855561409c565b82601f1061406e57805160ff191683800117855561409c565b8280016001018555821561409c579182015b8281111561409b578251825591602001919060010190614080565b5b5090506140a991906140f5565b5090565b50805460018160011615610100020316600290046000825580601f106140d357506140f2565b601f0160209004906000526020600020908101906140f191906140f5565b5b50565b5b8082111561410e5760008160009055506001016140f6565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732315061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732315072657365744d696e7465725061757365724175746f49643a206d75737420686176652070617573657220726f6c6520746f2070617573654552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473455243313135355072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e744552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732315072657365744d696e7465725061757365724175746f49643a206d7573742068617665206d696e74657220726f6c6520746f206d696e744552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732315072657365744d696e7465725061757365724175746f49643a206d75737420686176652070617573657220726f6c6520746f20756e7061757365416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212204b3ca2d2930bd5ae2fa05943f470b2e7bed7304cfdaed8d88e6e0075940474c064736f6c63430007060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000014486f676520466f756e646174696f6e204d696e740000000000000000000000000000000000000000000000000000000000000000000000000000000000000007484f47454e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f7777772e686f67656d696e742e636f6d2f7572692f000000
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c806370a082311161010d578063b88d4fde116100a0578063d53913931161006f578063d539139314610eaf578063d547741f14610eda578063e63ab1e914610f35578063e985e9c514610f60578063f0d3dcc514610fe757610259565b8063b88d4fde14610b9e578063c87b56dd14610cb0578063ca15c87314610d64578063d0def52114610db357610259565b80639201de55116100dc5780639201de55146109d257806395d89b4114610a86578063a217fddf14610b16578063a22cb46514610b4157610259565b806370a08231146108765780638456cb59146108db5780639010d07c146108f257806391d148541461096157610259565b80632f745c591161019057806342966c681161015f57806342966c68146106ca5780634f6ccce7146107055780635c975abb146107545780636352211e146107815780636c0360eb146107e657610259565b80632f745c591461056e57806336568abe146105dd5780633f4ba83a1461063857806342842e0e1461064f57610259565b806318160ddd116101cc57806318160ddd1461041e57806323b872dd14610449578063248a9ca3146104c45780632f2ff15d1461051357610259565b806301ffc9a71461025e57806306fdde03146102ce578063081812fc1461035e578063095ea7b3146103c357610259565b36610259577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1005b600080fd5b34801561026a57600080fd5b506102b66004803603602081101561028157600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611140565b60405180821515815260200191505060405180910390f35b3480156102da57600080fd5b506102e36111a8565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610323578082015181840152602081019050610308565b50505050905090810190601f1680156103505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036a57600080fd5b506103976004803603602081101561038157600080fd5b810190808035906020019092919050505061124a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103cf57600080fd5b5061041c600480360360408110156103e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112e5565b005b34801561042a57600080fd5b50610433611429565b6040518082815260200191505060405180910390f35b34801561045557600080fd5b506104c26004803603606081101561046c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061143a565b005b3480156104d057600080fd5b506104fd600480360360208110156104e757600080fd5b81019080803590602001909291905050506114b0565b6040518082815260200191505060405180910390f35b34801561051f57600080fd5b5061056c6004803603604081101561053657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114cf565b005b34801561057a57600080fd5b506105c76004803603604081101561059157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611558565b6040518082815260200191505060405180910390f35b3480156105e957600080fd5b506106366004803603604081101561060057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115b3565b005b34801561064457600080fd5b5061064d61164c565b005b34801561065b57600080fd5b506106c86004803603606081101561067257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116dc565b005b3480156106d657600080fd5b50610703600480360360208110156106ed57600080fd5b81019080803590602001909291905050506116fc565b005b34801561071157600080fd5b5061073e6004803603602081101561072857600080fd5b810190808035906020019092919050505061176e565b6040518082815260200191505060405180910390f35b34801561076057600080fd5b50610769611791565b60405180821515815260200191505060405180910390f35b34801561078d57600080fd5b506107ba600480360360208110156107a457600080fd5b81019080803590602001909291905050506117a8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107f257600080fd5b506107fb6117df565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561083b578082015181840152602081019050610820565b50505050905090810190601f1680156108685780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561088257600080fd5b506108c56004803603602081101561089957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611881565b6040518082815260200191505060405180910390f35b3480156108e757600080fd5b506108f0611956565b005b3480156108fe57600080fd5b506109356004803603604081101561091557600080fd5b8101908080359060200190929190803590602001909291905050506119e6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561096d57600080fd5b506109ba6004803603604081101561098457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a17565b60405180821515815260200191505060405180910390f35b3480156109de57600080fd5b50610a0b600480360360208110156109f557600080fd5b8101908080359060200190929190505050611a48565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a4b578082015181840152602081019050610a30565b50505050905090810190601f168015610a785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a9257600080fd5b50610a9b611c00565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610adb578082015181840152602081019050610ac0565b50505050905090810190601f168015610b085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b2257600080fd5b50610b2b611ca2565b6040518082815260200191505060405180910390f35b348015610b4d57600080fd5b50610b9c60048036036040811015610b6457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611ca9565b005b348015610baa57600080fd5b50610cae60048036036080811015610bc157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610c2857600080fd5b820183602082011115610c3a57600080fd5b80359060200191846001830284011164010000000083111715610c5c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e5f565b005b348015610cbc57600080fd5b50610ce960048036036020811015610cd357600080fd5b8101908080359060200190929190505050611ed7565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d29578082015181840152602081019050610d0e565b50505050905090810190601f168015610d565780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610d7057600080fd5b50610d9d60048036036020811015610d8757600080fd5b81019080803590602001909291905050506121a8565b6040518082815260200191505060405180910390f35b348015610dbf57600080fd5b50610e9960048036036040811015610dd657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610e1357600080fd5b820183602082011115610e2557600080fd5b80359060200191846001830284011164010000000083111715610e4757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506121ce565b6040518082815260200191505060405180910390f35b348015610ebb57600080fd5b50610ec461228c565b6040518082815260200191505060405180910390f35b348015610ee657600080fd5b50610f3360048036036040811015610efd57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122b0565b005b348015610f4157600080fd5b50610f4a612339565b6040518082815260200191505060405180910390f35b348015610f6c57600080fd5b50610fcf60048036036040811015610f8357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061235d565b60405180821515815260200191505060405180910390f35b348015610ff357600080fd5b5061113e6004803603604081101561100a57600080fd5b810190808035906020019064010000000081111561102757600080fd5b82018360208201111561103957600080fd5b8035906020019184602083028401116401000000008311171561105b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156110bb57600080fd5b8201836020820111156110cd57600080fd5b803590602001918460208302840111640100000000831117156110ef57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506123f1565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112405780601f1061121557610100808354040283529160200191611240565b820191906000526020600020905b81548152906001019060200180831161122357829003601f168201915b5050505050905090565b60006112558261262c565b6112aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061438a602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006112f0826117a8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061443a6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611396612649565b73ffffffffffffffffffffffffffffffffffffffff1614806113c557506113c4816113bf612649565b61235d565b5b61141a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806142a56038913960400191505060405180910390fd5b6114248383612651565b505050565b6000611435600361270a565b905090565b61144b611445612649565b8261271f565b6114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061445b6031913960400191505060405180910390fd5b6114ab838383612813565b505050565b6000806000838152602001908152602001600020600201549050919050565b6114f5600080848152602001908152602001600020600201546114f0612649565b611a17565b61154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614160602f913960400191505060405180910390fd5b6115548282612a56565b5050565b60006115ab82600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ae990919063ffffffff16565b905092915050565b6115bb612649565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461163e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614539602f913960400191505060405180910390fd5b6116488282612b03565b5050565b61167d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611678612649565b611a17565b6116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806144f96040913960400191505060405180910390fd5b6116da612b96565b565b6116f783838360405180602001604052806000815250611e5f565b505050565b61170d611707612649565b8261271f565b611762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806144c96030913960400191505060405180910390fd5b61176b81612c81565b50565b600080611785836003612dbb90919063ffffffff16565b50905080915050919050565b6000600b60009054906101000a900460ff16905090565b60006117d882604051806060016040528060298152602001614307602991396003612de79092919063ffffffff16565b9050919050565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118775780601f1061184c57610100808354040283529160200191611877565b820191906000526020600020905b81548152906001019060200180831161185a57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611908576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806142dd602a913960400191505060405180910390fd5b61194f600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e06565b9050919050565b6119877f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611982612649565b611a17565b6119dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806141c1603e913960400191505060405180910390fd5b6119e4612e1b565b565b6000611a0f82600080868152602001908152602001600020600001612f0790919063ffffffff16565b905092915050565b6000611a4082600080868152602001908152602001600020600001612f2190919063ffffffff16565b905092915050565b60606000602067ffffffffffffffff81118015611a6457600080fd5b506040519080825280601f01601f191660200182016040528015611a975781602001600182028036833780820191505090505b5090506000805b6020811015611b3a5760008160080260020a8660001c0260001b9050600060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611b2c5780848481518110611af457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082806001019350505b508080600101915050611a9e565b5060008167ffffffffffffffff81118015611b5457600080fd5b506040519080825280601f01601f191660200182016040528015611b875781602001600182028036833780820191505090505b50905060005b82811015611bf457838181518110611ba157fe5b602001015160f81c60f81b828281518110611bb857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050611b8d565b50809350505050919050565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c985780601f10611c6d57610100808354040283529160200191611c98565b820191906000526020600020905b815481529060010190602001808311611c7b57829003601f168201915b5050505050905090565b6000801b81565b611cb1612649565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d52576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060066000611d5f612649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e0c612649565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b611e70611e6a612649565b8361271f565b611ec5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061445b6031913960400191505060405180910390fd5b611ed184848484612f51565b50505050565b6060611ee28261262c565b611f37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061440b602f913960400191505060405180910390fd5b6000600960008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611fe05780601f10611fb557610100808354040283529160200191611fe0565b820191906000526020600020905b815481529060010190602001808311611fc357829003601f168201915b505050505090506000611ff16117df565b90506000815114156120075781925050506121a3565b6000825111156120d85780826040516020018083805190602001908083835b602083106120495780518252602082019150602081019050602083039250612026565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061209a5780518252602082019150602081019050602083039250612077565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050506121a3565b806120e285612fc3565b6040516020018083805190602001908083835b6020831061211857805182526020820191506020810190506020830392506120f5565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106121695780518252602082019150602081019050602083039250612146565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b60006121c760008084815260200190815260200160002060000161310a565b9050919050565b60006122017f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66121fc612649565b611a17565b612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d81526020018061448c603d913960400191505060405180910390fd5b61226983612264600c61311f565b61312d565b61227c612276600c61311f565b8361314b565b612286600c6131d5565b92915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6122d6600080848152602001908152602001600020600201546122d1612649565b611a17565b61232b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806142756030913960400191505060405180910390fd5b6123358282612b03565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124227f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661241d612649565b611a17565b612477576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806143526038913960400191505060405180910390fd5b600080600090505b82518110156124eb57816124a584838151811061249857fe5b6020026020010151611a48565b9080600181540180825580915050600190039060005260206000200160009091909190915090805190602001906124dd92919061401f565b50808060010191505061247f565b5060005b83518110156125f65761251e84828151811061250757fe5b6020026020010151612519600c61311f565b61312d565b6125df61252b600c61311f565b83838154811061253757fe5b906000526020600020018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125d55780601f106125aa576101008083540402835291602001916125d5565b820191906000526020600020905b8154815290600101906020018083116125b857829003601f168201915b505050505061314b565b6125e9600c6131d5565b80806001019150506124ef565b50505050565b6000612624836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6131eb565b905092915050565b600061264282600361325b90919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126c4836117a8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061271882600001613275565b9050919050565b600061272a8261262c565b61277f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614249602c913960400191505060405180910390fd5b600061278a836117a8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127f957508373ffffffffffffffffffffffffffffffffffffffff166127e18461124a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061280a5750612809818561235d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612833826117a8565b73ffffffffffffffffffffffffffffffffffffffff161461289f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806143e26029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612925576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806141ff6024913960400191505060405180910390fd5b612930838383613286565b61293b600082612651565b61298c81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061329690919063ffffffff16565b506129de81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206132b090919063ffffffff16565b506129f5818360036132ca9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612a7d816000808581526020019081526020016000206000016125fc90919063ffffffff16565b15612ae557612a8a612649565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612af883600001836132ff565b60001c905092915050565b612b2a8160008085815260200190815260200160002060000161338290919063ffffffff16565b15612b9257612b37612649565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b612b9e611791565b612c10576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612c54612649565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000612c8c826117a8565b9050612c9a81600084613286565b612ca5600083612651565b60006009600084815260200190815260200160002080546001816001161561010002031660029004905014612cf457600960008381526020019081526020016000206000612cf391906140ad565b5b612d4582600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061329690919063ffffffff16565b50612d5a8260036133b290919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080600080612dce86600001866133cc565b915091508160001c8160001c9350935050509250929050565b6000612dfa846000018460001b84613465565b60001c90509392505050565b6000612e148260000161355b565b9050919050565b612e23611791565b15612e96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612eda612649565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000612f1683600001836132ff565b60001c905092915050565b6000612f49836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61356c565b905092915050565b612f5c848484612813565b612f688484848461358f565b612fbd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061418f6032913960400191505060405180910390fd5b50505050565b6060600082141561300b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613105565b600082905060005b60008214613035578080600101915050600a828161302d57fe5b049150613013565b60008167ffffffffffffffff8111801561304e57600080fd5b506040519080825280601f01601f1916602001820160405280156130815781602001600182028036833780820191505090505b50905060006001830390508593505b600084146130fd57600a84816130a257fe5b0660300160f81b828280600190039350815181106130bc57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816130f557fe5b049350613090565b819450505050505b919050565b60006131188260000161355b565b9050919050565b600081600001549050919050565b6131478282604051806020016040528060008152506137a8565b5050565b6131548261262c565b6131a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806143b6602c913960400191505060405180910390fd5b806009600084815260200190815260200160002090805190602001906131d092919061401f565b505050565b6001816000016000828254019250508190555050565b60006131f7838361356c565b613250578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613255565b600090505b92915050565b600061326d836000018360001b613819565b905092915050565b600081600001805490509050919050565b61329183838361383c565b505050565b60006132a8836000018360001b6138aa565b905092915050565b60006132c2836000018360001b6131eb565b905092915050565b60006132f6846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613992565b90509392505050565b600081836000018054905011613360576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806141136022913960400191505060405180910390fd5b82600001828154811061336f57fe5b9060005260206000200154905092915050565b60006133aa836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6138aa565b905092915050565b60006133c4836000018360001b613a6e565b905092915050565b6000808284600001805490501161342e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143306022913960400191505060405180910390fd5b600084600001848154811061343f57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061352c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134f15780820151818401526020810190506134d6565b50505050905090810190601f16801561351e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061353f57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60006135b08473ffffffffffffffffffffffffffffffffffffffff16613b87565b6135bd57600190506137a0565b600061372763150b7a0260e01b6135d2612649565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561365657808201518184015260208101905061363b565b50505050905090810190601f1680156136835780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161418f603291398773ffffffffffffffffffffffffffffffffffffffff16613b9a9092919063ffffffff16565b9050600081806020019051602081101561374057600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b6137b28383613bb2565b6137bf600084848461358f565b613814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061418f6032913960400191505060405180910390fd5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b613847838383613da6565b61384f611791565b156138a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614135602b913960400191505060405180910390fd5b505050565b6000808360010160008481526020019081526020016000205490506000811461398657600060018203905060006001866000018054905003905060008660000182815481106138f557fe5b906000526020600020015490508087600001848154811061391257fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061394a57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061398c565b60009150505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613a3957846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613a67565b82856000016001830381548110613a4c57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b60008083600101600084815260200190815260200160002054905060008114613b7b5760006001820390506000600186600001805490500390506000866000018281548110613ab957fe5b9060005260206000209060020201905080876000018481548110613ad957fe5b9060005260206000209060020201600082015481600001556001820154816001015590505060018301876001016000836000015481526020019081526020016000208190555086600001805480613b2c57fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050613b81565b60009150505b92915050565b600080823b905060008111915050919050565b6060613ba98484600085613dab565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613c5e8161262c565b15613cd1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b613cdd60008383613286565b613d2e81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206132b090919063ffffffff16565b50613d45818360036132ca9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b606082471015613e06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142236026913960400191505060405180910390fd5b613e0f85613b87565b613e81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613ed05780518252602082019150602081019050602083039250613ead565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613f32576040519150601f19603f3d011682016040523d82523d6000602084013e613f37565b606091505b5091509150613f47828286613f53565b92505050949350505050565b60608315613f6357829050614018565b600083511115613f765782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613fdd578082015181840152602081019050613fc2565b50505050905090810190601f16801561400a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282614055576000855561409c565b82601f1061406e57805160ff191683800117855561409c565b8280016001018555821561409c579182015b8281111561409b578251825591602001919060010190614080565b5b5090506140a991906140f5565b5090565b50805460018160011615610100020316600290046000825580601f106140d357506140f2565b601f0160209004906000526020600020908101906140f191906140f5565b5b50565b5b8082111561410e5760008160009055506001016140f6565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732315061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732315072657365744d696e7465725061757365724175746f49643a206d75737420686176652070617573657220726f6c6520746f2070617573654552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473455243313135355072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e744552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732315072657365744d696e7465725061757365724175746f49643a206d7573742068617665206d696e74657220726f6c6520746f206d696e744552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732315072657365744d696e7465725061757365724175746f49643a206d75737420686176652070617573657220726f6c6520746f20756e7061757365416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212204b3ca2d2930bd5ae2fa05943f470b2e7bed7304cfdaed8d88e6e0075940474c064736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000014486f676520466f756e646174696f6e204d696e740000000000000000000000000000000000000000000000000000000000000000000000000000000000000007484f47454e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f7777772e686f67656d696e742e636f6d2f7572692f000000
-----Decoded View---------------
Arg [0] : name (string): Hoge Foundation Mint
Arg [1] : symbol (string): HOGENFT
Arg [2] : baseURI (string): https://www.hogemint.com/uri/
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 486f676520466f756e646174696f6e204d696e74000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 484f47454e465400000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [8] : 68747470733a2f2f7777772e686f67656d696e742e636f6d2f7572692f000000
Deployed Bytecode Sourcemap
69069:3563:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69465:31;69474:10;69486:9;69465:31;;;;;;;;;;;;;;;;;;;;;;;;;;69069:3563;;;;;42320:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53550:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56336:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55866:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55344:211;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57226:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37912:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38288:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55106:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39497:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72285:165;;;;;;;;;;;;;:::i;:::-;;57602:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66632:245;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55632:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67428:86;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53306:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54925:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53023:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;71947:159;;;;;;;;;;;;;:::i;:::-;;37585:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36546:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;71305:467;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53719:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35291:49;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56629:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57824:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53894:792;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36859:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;70341:440;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;69195:62;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38760:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69264:62;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56995:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;70785:516;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42320:150;42405:4;42429:20;:33;42450:11;42429:33;;;;;;;;;;;;;;;;;;;;;;;;;;;42422:40;;42320:150;;;:::o;53550:100::-;53604:13;53637:5;53630:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53550:100;:::o;56336:221::-;56412:7;56440:16;56448:7;56440;:16::i;:::-;56432:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56525:15;:24;56541:7;56525:24;;;;;;;;;;;;;;;;;;;;;56518:31;;56336:221;;;:::o;55866:404::-;55947:13;55963:23;55978:7;55963:14;:23::i;:::-;55947:39;;56011:5;56005:11;;:2;:11;;;;55997:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56091:5;56075:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;56100:44;56124:5;56131:12;:10;:12::i;:::-;56100:23;:44::i;:::-;56075:69;56067:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56241:21;56250:2;56254:7;56241:8;:21::i;:::-;55866:404;;;:::o;55344:211::-;55405:7;55526:21;:12;:19;:21::i;:::-;55519:28;;55344:211;:::o;57226:305::-;57387:41;57406:12;:10;:12::i;:::-;57420:7;57387:18;:41::i;:::-;57379:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57495:28;57505:4;57511:2;57515:7;57495:9;:28::i;:::-;57226:305;;;:::o;37912:114::-;37969:7;37996:6;:12;38003:4;37996:12;;;;;;;;;;;:22;;;37989:29;;37912:114;;;:::o;38288:227::-;38372:45;38380:6;:12;38387:4;38380:12;;;;;;;;;;;:22;;;38404:12;:10;:12::i;:::-;38372:7;:45::i;:::-;38364:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38482:25;38493:4;38499:7;38482:10;:25::i;:::-;38288:227;;:::o;55106:162::-;55203:7;55230:30;55254:5;55230:13;:20;55244:5;55230:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;55223:37;;55106:162;;;;:::o;39497:209::-;39595:12;:10;:12::i;:::-;39584:23;;:7;:23;;;39576:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39672:26;39684:4;39690:7;39672:11;:26::i;:::-;39497:209;;:::o;72285:165::-;72330:34;69302:24;72351:12;:10;:12::i;:::-;72330:7;:34::i;:::-;72322:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72436:10;:8;:10::i;:::-;72285:165::o;57602:151::-;57706:39;57723:4;57729:2;57733:7;57706:39;;;;;;;;;;;;:16;:39::i;:::-;57602:151;;;:::o;66632:245::-;66750:41;66769:12;:10;:12::i;:::-;66783:7;66750:18;:41::i;:::-;66742:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66855:14;66861:7;66855:5;:14::i;:::-;66632:245;:::o;55632:172::-;55707:7;55728:15;55749:22;55765:5;55749:12;:15;;:22;;;;:::i;:::-;55727:44;;;55789:7;55782:14;;;55632:172;;;:::o;67428:86::-;67475:4;67499:7;;;;;;;;;;;67492:14;;67428:86;:::o;53306:177::-;53378:7;53405:70;53422:7;53405:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;53398:77;;53306:177;;;:::o;54925:97::-;54973:13;55006:8;54999:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54925:97;:::o;53023:221::-;53095:7;53140:1;53123:19;;:5;:19;;;;53115:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53207:29;:13;:20;53221:5;53207:20;;;;;;;;;;;;;;;:27;:29::i;:::-;53200:36;;53023:221;;;:::o;71947:159::-;71990:34;69302:24;72011:12;:10;:12::i;:::-;71990:7;:34::i;:::-;71982:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72094:8;:6;:8::i;:::-;71947:159::o;37585:138::-;37658:7;37685:30;37709:5;37685:6;:12;37692:4;37685:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;37678:37;;37585:138;;;;:::o;36546:139::-;36615:4;36639:38;36669:7;36639:6;:12;36646:4;36639:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;36632:45;;36546:139;;;;:::o;71305:467::-;71357:13;71375:24;71412:2;71402:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71375:40;;71418:14;71444:6;71439:153;71460:2;71456:1;:6;71439:153;;;71472:9;71517:1;71513;:5;71507:1;:12;71502:1;71497:7;;:22;71489:31;;71472:49;;71536:1;71528:9;;:4;:9;;;;71524:65;;71567:4;71542:11;71554:9;71542:22;;;;;;;;;;;:29;;;;;;;;;;;71574:11;;;;;;;71524:65;71439:153;71464:3;;;;;;;71439:153;;;;71594:31;71638:9;71628:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71594:54;;71656:6;71651:82;71672:9;71668:1;:13;71651:82;;;71715:11;71727:1;71715:14;;;;;;;;;;;;;;;;71691:18;71710:1;71691:21;;;;;;;;;;;:38;;;;;;;;;;;71683:3;;;;;;;71651:82;;;;71749:18;71735:33;;;;;71305:467;;;:::o;53719:104::-;53775:13;53808:7;53801:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53719:104;:::o;35291:49::-;35336:4;35291:49;;;:::o;56629:295::-;56744:12;:10;:12::i;:::-;56732:24;;:8;:24;;;;56724:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56844:8;56799:18;:32;56818:12;:10;:12::i;:::-;56799:32;;;;;;;;;;;;;;;:42;56832:8;56799:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;56897:8;56868:48;;56883:12;:10;:12::i;:::-;56868:48;;;56907:8;56868:48;;;;;;;;;;;;;;;;;;;;56629:295;;:::o;57824:285::-;57956:41;57975:12;:10;:12::i;:::-;57989:7;57956:18;:41::i;:::-;57948:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58062:39;58076:4;58082:2;58086:7;58095:5;58062:13;:39::i;:::-;57824:285;;;;:::o;53894:792::-;53967:13;54001:16;54009:7;54001;:16::i;:::-;53993:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54082:23;54108:10;:19;54119:7;54108:19;;;;;;;;;;;54082:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54138:18;54159:9;:7;:9::i;:::-;54138:30;;54266:1;54250:4;54244:18;:23;54240:72;;;54291:9;54284:16;;;;;;54240:72;54442:1;54422:9;54416:23;:27;54412:108;;;54491:4;54497:9;54474:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54460:48;;;;;;54412:108;54652:4;54658:18;:7;:16;:18::i;:::-;54635:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54621:57;;;;53894:792;;;;:::o;36859:127::-;36922:7;36949:29;:6;:12;36956:4;36949:12;;;;;;;;;;;:20;;:27;:29::i;:::-;36942:36;;36859:127;;;:::o;70341:440::-;70402:4;70419:34;69233:24;70440:12;:10;:12::i;:::-;70419:7;:34::i;:::-;70411:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70660:40;70670:2;70674:25;:15;:23;:25::i;:::-;70660:9;:40::i;:::-;70703:44;70716:25;:15;:23;:25::i;:::-;70743:3;70703:12;:44::i;:::-;70750:27;:15;:25;:27::i;:::-;70341:440;;;;:::o;69195:62::-;69233:24;69195:62;:::o;38760:230::-;38845:45;38853:6;:12;38860:4;38853:12;;;;;;;;;;;:22;;;38877:12;:10;:12::i;:::-;38845:7;:45::i;:::-;38837:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38956:26;38968:4;38974:7;38956:11;:26::i;:::-;38760:230;;:::o;69264:62::-;69302:24;69264:62;:::o;56995:164::-;57092:4;57116:18;:25;57135:5;57116:25;;;;;;;;;;;;;;;:35;57142:8;57116:35;;;;;;;;;;;;;;;;;;;;;;;;;57109:42;;56995:164;;;;:::o;70785:516::-;70887:34;69233:24;70908:12;:10;:12::i;:::-;70887:7;:34::i;:::-;70879:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70987:21;71018:9;71030:1;71018:13;;71013:94;71037:9;:16;71033:1;:20;71013:94;;;71063:4;71073:29;71089:9;71099:1;71089:12;;;;;;;;;;;;;;71073:15;:29::i;:::-;71063:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71055:3;;;;;;;71013:94;;;;71116:9;71111:187;71135:10;:17;71131:1;:21;71111:187;;;71162:51;71172:10;71183:1;71172:13;;;;;;;;;;;;;;71187:25;:15;:23;:25::i;:::-;71162:9;:51::i;:::-;71216:48;71229:25;:15;:23;:25::i;:::-;71256:4;71261:1;71256:7;;;;;;;;;;;;;;;71216:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:48::i;:::-;71267:27;:15;:25;:27::i;:::-;71154:3;;;;;;;71111:187;;;;70785:516;;;:::o;31918:152::-;31988:4;32012:50;32017:3;:10;;32053:5;32037:23;;32029:32;;32012:4;:50::i;:::-;32005:57;;31918:152;;;;:::o;59576:127::-;59641:4;59665:30;59687:7;59665:12;:21;;:30;;;;:::i;:::-;59658:37;;59576:127;;;:::o;68:106::-;121:15;156:10;149:17;;68:106;:::o;65503:183::-;65596:2;65569:15;:24;65585:7;65569:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;65652:7;65648:2;65614:46;;65623:23;65638:7;65623:14;:23::i;:::-;65614:46;;;;;;;;;;;;65503:183;;:::o;7668:123::-;7737:7;7764:19;7772:3;:10;;7764:7;:19::i;:::-;7757:26;;7668:123;;;:::o;59870:355::-;59963:4;59988:16;59996:7;59988;:16::i;:::-;59980:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60064:13;60080:23;60095:7;60080:14;:23::i;:::-;60064:39;;60133:5;60122:16;;:7;:16;;;:51;;;;60166:7;60142:31;;:20;60154:7;60142:11;:20::i;:::-;:31;;;60122:51;:94;;;;60177:39;60201:5;60208:7;60177:23;:39::i;:::-;60122:94;60114:103;;;59870:355;;;;:::o;63006:599::-;63131:4;63104:31;;:23;63119:7;63104:14;:23::i;:::-;:31;;;63096:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63232:1;63218:16;;:2;:16;;;;63210:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63288:39;63309:4;63315:2;63319:7;63288:20;:39::i;:::-;63392:29;63409:1;63413:7;63392:8;:29::i;:::-;63434:35;63461:7;63434:13;:19;63448:4;63434:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;63480:30;63502:7;63480:13;:17;63494:2;63480:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;63523:29;63540:7;63549:2;63523:12;:16;;:29;;;;;:::i;:::-;;63589:7;63585:2;63570:27;;63579:4;63570:27;;;;;;;;;;;;63006:599;;;:::o;40740:188::-;40814:33;40839:7;40814:6;:12;40821:4;40814:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;40810:111;;;40896:12;:10;:12::i;:::-;40869:40;;40887:7;40869:40;;40881:4;40869:40;;;;;;;;;;40810:111;40740:188;;:::o;34852:137::-;34923:7;34958:22;34962:3;:10;;34974:5;34958:3;:22::i;:::-;34950:31;;34943:38;;34852:137;;;;:::o;40936:192::-;41011:36;41039:7;41011:6;:12;41018:4;41011:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;41007:114;;;41096:12;:10;:12::i;:::-;41069:40;;41087:7;41069:40;;41081:4;41069:40;;;;;;;;;;41007:114;40936:192;;:::o;68487:120::-;68031:8;:6;:8::i;:::-;68023:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68556:5:::1;68546:7;;:15;;;;;;;;;;;;;;;;;;68577:22;68586:12;:10;:12::i;:::-;68577:22;;;;;;;;;;;;;;;;;;;;68487:120::o:0;62124:545::-;62184:13;62200:23;62215:7;62200:14;:23::i;:::-;62184:39;;62254:48;62275:5;62290:1;62294:7;62254:20;:48::i;:::-;62343:29;62360:1;62364:7;62343:8;:29::i;:::-;62462:1;62431:10;:19;62442:7;62431:19;;;;;;;;;;;62425:33;;;;;;;;;;;;;;;;:38;62421:97;;62487:10;:19;62498:7;62487:19;;;;;;;;;;;;62480:26;;;;:::i;:::-;62421:97;62530:36;62558:7;62530:13;:20;62544:5;62530:20;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;;62579:28;62599:7;62579:12;:19;;:28;;;;:::i;:::-;;62653:7;62649:1;62625:36;;62634:5;62625:36;;;;;;;;;;;;62124:545;;:::o;8139:236::-;8219:7;8228;8249:11;8262:13;8279:22;8283:3;:10;;8295:5;8279:3;:22::i;:::-;8248:53;;;;8328:3;8320:12;;8358:5;8350:14;;8312:55;;;;;;8139:236;;;;;:::o;9425:213::-;9532:7;9583:44;9588:3;:10;;9608:3;9600:12;;9614;9583:4;:44::i;:::-;9575:53;;9552:78;;9425:213;;;;;:::o;34384:114::-;34444:7;34471:19;34479:3;:10;;34471:7;:19::i;:::-;34464:26;;34384:114;;;:::o;68228:118::-;67754:8;:6;:8::i;:::-;67753:9;67745:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68298:4:::1;68288:7;;:14;;;;;;;;;;;;;;;;;;68318:20;68325:12;:10;:12::i;:::-;68318:20;;;;;;;;;;;;;;;;;;;;68228:118::o:0;33214:158::-;33288:7;33339:22;33343:3;:10;;33355:5;33339:3;:22::i;:::-;33331:31;;33308:56;;33214:158;;;;:::o;32490:167::-;32570:4;32594:55;32604:3;:10;;32640:5;32624:23;;32616:32;;32594:9;:55::i;:::-;32587:62;;32490:167;;;;:::o;58991:272::-;59105:28;59115:4;59121:2;59125:7;59105:9;:28::i;:::-;59152:48;59175:4;59181:2;59185:7;59194:5;59152:22;:48::i;:::-;59144:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58991:272;;;;:::o;9758:746::-;9814:13;10044:1;10035:5;:10;10031:53;;;10062:10;;;;;;;;;;;;;;;;;;;;;10031:53;10094:12;10109:5;10094:20;;10125:14;10150:78;10165:1;10157:4;:9;10150:78;;10183:8;;;;;;;10214:2;10206:10;;;;;;;;;10150:78;;;10238:19;10270:6;10260:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10238:39;;10288:13;10313:1;10304:6;:10;10288:26;;10332:5;10325:12;;10348:117;10363:1;10355:4;:9;10348:117;;10424:2;10417:4;:9;;;;;;10412:2;:14;10399:29;;10381:6;10388:7;;;;;;;10381:15;;;;;;;;;;;:47;;;;;;;;;;;10451:2;10443:10;;;;;;;;;10348:117;;;10489:6;10475:21;;;;;;9758:746;;;;:::o;32743:117::-;32806:7;32833:19;32841:3;:10;;32833:7;:19::i;:::-;32826:26;;32743:117;;;:::o;18828:114::-;18893:7;18920;:14;;;18913:21;;18828:114;;;:::o;60568:110::-;60644:26;60654:2;60658:7;60644:26;;;;;;;;;;;;:9;:26::i;:::-;60568:110;;:::o;63761:215::-;63861:16;63869:7;63861;:16::i;:::-;63853:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63959:9;63937:10;:19;63948:7;63937:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;63761:215;;:::o;18950:181::-;19122:1;19104:7;:14;;;:19;;;;;;;;;;;18950:181;:::o;26962:414::-;27025:4;27047:21;27057:3;27062:5;27047:9;:21::i;:::-;27042:327;;27085:3;:11;;27102:5;27085:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27268:3;:11;;:18;;;;27246:3;:12;;:19;27259:5;27246:19;;;;;;;;;;;:40;;;;27308:4;27301:11;;;;27042:327;27352:5;27345:12;;26962:414;;;;;:::o;7429:151::-;7513:4;7537:35;7547:3;:10;;7567:3;7559:12;;7537:9;:35::i;:::-;7530:42;;7429:151;;;;:::o;4237:110::-;4293:7;4320:3;:12;;:19;;;;4313:26;;4237:110;;;:::o;72454:175::-;72580:45;72607:4;72613:2;72617:7;72580:26;:45::i;:::-;72454:175;;;:::o;33929:137::-;33999:4;34023:35;34031:3;:10;;34051:5;34043:14;;34023:7;:35::i;:::-;34016:42;;33929:137;;;;:::o;33622:131::-;33689:4;33713:32;33718:3;:10;;33738:5;33730:14;;33713:4;:32::i;:::-;33706:39;;33622:131;;;;:::o;6852:185::-;6941:4;6965:64;6970:3;:10;;6990:3;6982:12;;7020:5;7004:23;;6996:32;;6965:4;:64::i;:::-;6958:71;;6852:185;;;;;:::o;29860:204::-;29927:7;29976:5;29955:3;:11;;:18;;;;:26;29947:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30038:3;:11;;30050:5;30038:18;;;;;;;;;;;;;;;;30031:25;;29860:204;;;;:::o;32246:158::-;32319:4;32343:53;32351:3;:10;;32387:5;32371:23;;32363:32;;32343:7;:53::i;:::-;32336:60;;32246:158;;;;:::o;7203:142::-;7280:4;7304:33;7312:3;:10;;7332:3;7324:12;;7304:7;:33::i;:::-;7297:40;;7203:142;;;;:::o;4712:279::-;4779:7;4788;4838:5;4816:3;:12;;:19;;;;:27;4808:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4895:22;4920:3;:12;;4933:5;4920:19;;;;;;;;;;;;;;;;;;4895:44;;4958:5;:10;;;4970:5;:12;;;4950:33;;;;;4712:279;;;;;:::o;6209:319::-;6303:7;6323:16;6342:3;:12;;:17;6355:3;6342:17;;;;;;;;;;;;6323:36;;6390:1;6378:8;:13;;6393:12;6370:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6460:3;:12;;6484:1;6473:8;:12;6460:26;;;;;;;;;;;;;;;;;;:33;;;6453:40;;;6209:319;;;;;:::o;29397:109::-;29453:7;29480:3;:11;;:18;;;;29473:25;;29397:109;;;:::o;29182:129::-;29255:4;29302:1;29279:3;:12;;:19;29292:5;29279:19;;;;;;;;;;;;:24;;29272:31;;29182:129;;;;:::o;64871:624::-;64988:4;65015:15;:2;:13;;;:15::i;:::-;65010:60;;65054:4;65047:11;;;;65010:60;65080:23;65106:276;65163:45;;;65227:12;:10;:12::i;:::-;65258:4;65281:7;65307:5;65122:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65106:276;;;;;;;;;;;;;;;;;:2;:15;;;;:276;;;;;:::i;:::-;65080:302;;65393:13;65420:10;65409:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65393:48;;50020:10;65470:16;;65460:26;;;:6;:26;;;;65452:35;;;;64871:624;;;;;;;:::o;60905:250::-;61001:18;61007:2;61011:7;61001:5;:18::i;:::-;61038:54;61069:1;61073:2;61077:7;61086:5;61038:22;:54::i;:::-;61030:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60905:250;;;:::o;4017:125::-;4088:4;4133:1;4112:3;:12;;:17;4125:3;4112:17;;;;;;;;;;;;:22;;4105:29;;4017:125;;;;:::o;68821:241::-;68931:45;68958:4;68964:2;68968:7;68931:26;:45::i;:::-;68998:8;:6;:8::i;:::-;68997:9;68989:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68821:241;;;:::o;27552:1544::-;27618:4;27736:18;27757:3;:12;;:19;27770:5;27757:19;;;;;;;;;;;;27736:40;;27807:1;27793:10;:15;27789:1300;;28155:21;28192:1;28179:10;:14;28155:38;;28208:17;28249:1;28228:3;:11;;:18;;;;:22;28208:42;;28495:17;28515:3;:11;;28527:9;28515:22;;;;;;;;;;;;;;;;28495:42;;28661:9;28632:3;:11;;28644:13;28632:26;;;;;;;;;;;;;;;:38;;;;28780:1;28764:13;:17;28738:3;:12;;:23;28751:9;28738:23;;;;;;;;;;;:43;;;;28890:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;28985:3;:12;;:19;28998:5;28985:19;;;;;;;;;;;28978:26;;;29028:4;29021:11;;;;;;;;27789:1300;29072:5;29065:12;;;27552:1544;;;;;:::o;1517:692::-;1593:4;1709:16;1728:3;:12;;:17;1741:3;1728:17;;;;;;;;;;;;1709:36;;1774:1;1762:8;:13;1758:444;;;1829:3;:12;;1847:38;;;;;;;;1864:3;1847:38;;;;1877:5;1847:38;;;1829:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2044:3;:12;;:19;;;;2024:3;:12;;:17;2037:3;2024:17;;;;;;;;;;;:39;;;;2085:4;2078:11;;;;;1758:444;2158:5;2122:3;:12;;2146:1;2135:8;:12;2122:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;2185:5;2178:12;;;1517:692;;;;;;:::o;2384:1549::-;2448:4;2564:16;2583:3;:12;;:17;2596:3;2583:17;;;;;;;;;;;;2564:36;;2629:1;2617:8;:13;2613:1313;;2978:21;3013:1;3002:8;:12;2978:36;;3029:17;3071:1;3049:3;:12;;:19;;;;:23;3029:43;;3317:26;3346:3;:12;;3359:9;3346:23;;;;;;;;;;;;;;;;;;3317:52;;3494:9;3464:3;:12;;3477:13;3464:27;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;3618:1;3602:13;:17;3571:3;:12;;:28;3584:9;:14;;;3571:28;;;;;;;;;;;:48;;;;3728:3;:12;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3824:3;:12;;:17;3837:3;3824:17;;;;;;;;;;;3817:24;;;3865:4;3858:11;;;;;;;;2613:1313;3909:5;3902:12;;;2384:1549;;;;;:::o;11121:422::-;11181:4;11389:12;11500:7;11488:20;11480:28;;11534:1;11527:4;:8;11520:15;;;11121:422;;;:::o;14041:195::-;14144:12;14176:52;14198:6;14206:4;14212:1;14215:12;14176:21;:52::i;:::-;14169:59;;14041:195;;;;;:::o;61491:404::-;61585:1;61571:16;;:2;:16;;;;61563:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61644:16;61652:7;61644;:16::i;:::-;61643:17;61635:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61706:45;61735:1;61739:2;61743:7;61706:20;:45::i;:::-;61764:30;61786:7;61764:13;:17;61778:2;61764:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61807:29;61824:7;61833:2;61807:12;:16;;:29;;;;;:::i;:::-;;61879:7;61875:2;61854:33;;61871:1;61854:33;;;;;;;;;;;;61491:404;;:::o;66299:93::-;;;;:::o;15093:530::-;15220:12;15278:5;15253:21;:30;;15245:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15345:18;15356:6;15345:10;:18::i;:::-;15337:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15471:12;15485:23;15512:6;:11;;15532:5;15540:4;15512:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15470:75;;;;15563:52;15581:7;15590:10;15602:12;15563:17;:52::i;:::-;15556:59;;;;15093:530;;;;;;:::o;17633:742::-;17748:12;17777:7;17773:595;;;17808:10;17801:17;;;;17773:595;17942:1;17922:10;:17;:21;17918:439;;;18185:10;18179:17;18246:15;18233:10;18229:2;18225:19;18218:44;18133:148;18328:12;18321:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17633:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://4b3ca2d2930bd5ae2fa05943f470b2e7bed7304cfdaed8d88e6e0075940474c0
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.